-
Notifications
You must be signed in to change notification settings - Fork 3
/
eventstore.go
144 lines (111 loc) · 2.5 KB
/
eventstore.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
package orbitdb
import (
"encoding/json"
"sync"
"github.com/keks/go-ipfs-colog"
"github.com/keks/go-orbitdb/handler"
)
type eventPayload struct {
handler.Op `json:"op"`
Data json.RawMessage `json:"data"`
}
func eventCast(e *colog.Entry) (eventPayload, error) {
var pl eventPayload
err := e.Get(&pl)
if err != nil {
return pl, err
}
if len(pl.Data) == 0 {
return pl, ErrMalformedEntry
}
return pl, nil
}
func (pl eventPayload) Event() Event {
return Event{data: pl.Data}
}
// Event is an event stored in an EventStore or FeedStore.
type Event struct {
data json.RawMessage
}
// GetString returns the string value of the contained data.
// If the contained data is not a string, it returns "".
func (e Event) GetString() string {
var s string
json.Unmarshal(e.data, &s)
return s
}
// Get parses the contained data into v. v Needs to be a pointer.
func (e Event) Get(v interface{}) error {
return json.Unmarshal(e.data, v)
}
// EventResult is the result of a query to an EventStore or FeedStore.
type EventResult func() (Event, error)
type eventIndex struct {
l sync.Mutex
added map[colog.Hash]struct{}
}
func (idx *eventIndex) handleAdd(e *colog.Entry) error {
_, err := eventCast(e)
if err != nil {
return err
}
idx.l.Lock()
idx.added[e.Hash] = struct{}{}
idx.l.Unlock()
return nil
}
func (idx *eventIndex) has(hash colog.Hash) bool {
idx.l.Lock()
defer idx.l.Unlock()
_, has := idx.added[hash]
return has
}
// EventStore stores events in an OrbitDB
type EventStore struct {
idx *eventIndex
db *OrbitDB
}
// NewEventStore returns an EventStore for the given OrbitDB.
func NewEventStore(db *OrbitDB) *EventStore {
evs := &EventStore{
db: db,
idx: &eventIndex{
added: make(map[colog.Hash]struct{}),
},
}
mux := handler.NewMux()
mux.AddHandler(OpAdd, evs.idx.handleAdd)
go db.Notify(mux)
return evs
}
// Add adds an event to the store.
func (evs *EventStore) Add(data interface{}) (*colog.Entry, error) {
jsonData, err := json.Marshal(data)
if err != nil {
return nil, err
}
payload := eventPayload{
Op: OpAdd,
Data: jsonData,
}
return evs.db.Add(&payload)
}
// Query queries the events using a given query qry.
func (evs *EventStore) Query(qry colog.Query) EventResult {
res := evs.db.colog.Query(qry)
return func() (Event, error) {
for {
e, err := res()
if err != nil {
return Event{}, err
}
if evs.idx.has(e.Hash) {
pl, err := eventCast(e)
if err != nil {
return Event{}, err
}
return pl.Event(), nil
}
}
}
}