-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsyncer_server.go
227 lines (201 loc) · 5.8 KB
/
syncer_server.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
package main
import (
"context"
"fmt"
"log"
"os"
"sync"
"github.com/breez/data-sync/config"
"github.com/breez/data-sync/middleware"
"github.com/breez/data-sync/proto"
"github.com/breez/data-sync/store"
"github.com/breez/data-sync/store/postgres"
"github.com/breez/data-sync/store/sqlite"
)
type PersistentSyncerServer struct {
proto.UnimplementedSyncerServer
sync.Mutex
config *config.Config
eventsManager *eventsManager
storage store.SyncStorage
}
func NewPersistentSyncerServer(config *config.Config) (*PersistentSyncerServer, error) {
var storage store.SyncStorage
var err error
if config.PgDatabaseUrl != "" {
log.Printf("creating postgres storage: %v\n", config.PgDatabaseUrl)
storage, err = postgres.NewPGSyncStorage(config.PgDatabaseUrl)
if err != nil {
return nil, err
}
} else {
log.Printf("creating sqlite storage: %v\n", config.SQLiteDirPath)
if err := os.MkdirAll(config.SQLiteDirPath, 0700); err != nil {
return nil, fmt.Errorf("failed to create databases directory %w", err)
}
file := fmt.Sprintf("%v/db.sqlite", config.SQLiteDirPath)
storage, err = sqlite.NewSQLiteSyncStorage(file)
if err != nil {
return nil, err
}
}
return &PersistentSyncerServer{
config: config,
eventsManager: newEventsManager(),
storage: storage,
}, nil
}
func (s *PersistentSyncerServer) Start(quitChan chan struct{}) {
s.eventsManager.start(quitChan)
}
func (s *PersistentSyncerServer) SetRecord(ctx context.Context, msg *proto.SetRecordRequest) (*proto.SetRecordReply, error) {
log.Println("SetRecord: started")
c, err := middleware.Authenticate(s.config, ctx, msg)
if err != nil {
log.Printf("SetRecord completed with auth error: %v\n", err)
return nil, err
}
pubkey := c.Value(middleware.USER_PUBKEY_CONTEXT_KEY).(string)
log.Printf("SetRecord: pubkey: %v\n", pubkey)
newRevision, err := s.storage.SetRecord(c, pubkey, msg.Record.Id, msg.Record.Data, msg.Record.Revision, msg.Record.SchemaVersion)
if err != nil {
if err == store.ErrSetConflict {
return &proto.SetRecordReply{
Status: proto.SetRecordStatus_CONFLICT,
}, nil
}
return nil, err
}
newRecord := msg.Record
newRecord.Revision = newRevision
s.eventsManager.notifyChange(c.Value(middleware.USER_PUBKEY_CONTEXT_KEY).(string))
log.Println("SetRecord: finished")
return &proto.SetRecordReply{
Status: proto.SetRecordStatus_SUCCESS,
NewRevision: newRevision,
}, nil
}
func (s *PersistentSyncerServer) ListChanges(ctx context.Context, msg *proto.ListChangesRequest) (*proto.ListChangesReply, error) {
log.Println("ListChanges: started")
c, err := middleware.Authenticate(s.config, ctx, msg)
if err != nil {
log.Printf("ListChanges completed with auth error: %v\n", err)
return nil, err
}
pubkey := c.Value(middleware.USER_PUBKEY_CONTEXT_KEY).(string)
log.Printf("ListChanges: pubkey: %v\n", pubkey)
changed, err := s.storage.ListChanges(c, pubkey, msg.SinceRevision)
if err != nil {
return nil, err
}
records := make([]*proto.Record, len(changed))
for i, r := range changed {
records[i] = &proto.Record{
Id: r.Id,
Data: r.Data,
Revision: r.Revision,
SchemaVersion: r.SchemaVersion,
}
}
log.Printf("ListChanges: finished with %v records\n", len(records))
return &proto.ListChangesReply{
Changes: records,
}, nil
}
func (s *PersistentSyncerServer) ListenChanges(request *proto.ListenChangesRequest, stream proto.Syncer_ListenChangesServer) error {
context, err := middleware.Authenticate(s.config, stream.Context(), request)
if err != nil {
return err
}
pubkey := context.Value(middleware.USER_PUBKEY_CONTEXT_KEY).(string)
subscription := s.eventsManager.subscribe(pubkey)
defer s.eventsManager.unsubscribe(pubkey, subscription.id)
for {
select {
case _, ok := <-subscription.eventsChan:
if !ok {
// No more payment updates.
return nil
}
// Send event to the client.
if err := stream.Send(&proto.Notification{}); err != nil {
return err
}
case <-context.Done():
return nil
}
}
}
type notifyChange struct {
pubkey string
}
type unsubscribe struct {
pubkey string
id int64
}
type subscription struct {
id int64
pubkey string
eventsChan chan struct{}
}
type eventsManager struct {
globalIDs int64
streams map[string][]*subscription
msgChan chan interface{}
}
func newEventsManager() *eventsManager {
return &eventsManager{
globalIDs: 0,
streams: make(map[string][]*subscription),
msgChan: make(chan interface{}),
}
}
func (c *eventsManager) start(quitChan chan struct{}) {
go func() {
for {
select {
case msg := <-c.msgChan:
if s, ok := msg.(*subscription); ok {
c.streams[s.pubkey] = append(c.streams[s.pubkey], s)
s.eventsChan <- struct{}{}
}
if s, ok := msg.(*unsubscribe); ok {
var newSubs []*subscription
for _, sub := range c.streams[s.pubkey] {
if sub.id != s.id {
newSubs = append(newSubs, sub)
continue
}
close(sub.eventsChan)
}
delete(c.streams, s.pubkey)
if len(newSubs) > 0 {
c.streams[s.pubkey] = newSubs
}
}
if s, ok := msg.(*notifyChange); ok {
for _, sub := range c.streams[s.pubkey] {
sub.eventsChan <- struct{}{}
}
}
case <-quitChan:
return
}
}
}()
}
func (c *eventsManager) notifyChange(pubkey string) {
c.msgChan <- ¬ifyChange{pubkey: pubkey}
}
func (c *eventsManager) subscribe(pubkey string) *subscription {
eventsChan := make(chan struct{})
c.globalIDs += 1
s := &subscription{pubkey: pubkey, eventsChan: eventsChan, id: c.globalIDs}
c.msgChan <- s
log.Printf("New connection for user %s: id - %d\n", pubkey, c.globalIDs)
return s
}
func (c *eventsManager) unsubscribe(pubkey string, id int64) {
c.msgChan <- &unsubscribe{pubkey: pubkey, id: id}
log.Printf("Removing connection for user %s - id %d\n", pubkey, id)
}