-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrpc_client.go
419 lines (375 loc) · 8.87 KB
/
rpc_client.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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
package ksbus
import (
"errors"
"net/rpc"
"os"
"os/signal"
"time"
"encoding/gob"
"github.com/kamalshkeir/kmap"
"github.com/kamalshkeir/lg"
)
// RPCClient implements a client that connects to the bus system using RPC
type RPCClient struct {
Id string
ServerAddr string
conn *rpc.Client
topicHandlers *kmap.SafeMap[string, func(map[string]any, RPCSubscriber)]
onId func(data map[string]any, unsub RPCSubscriber)
onDataRPC func(data map[string]any) error
onClose func()
Autorestart bool
RestartEvery time.Duration
Done chan struct{}
}
// RPCSubscriber represents a subscription to a topic via RPC
type RPCSubscriber struct {
client *RPCClient
Id string
Topic string
}
func (s RPCSubscriber) Unsubscribe() {
s.client.Unsubscribe(s.Topic)
}
type RPCClientOptions struct {
Id string
Address string // RPC server address (e.g. "localhost:9314")
OnId func(data map[string]any, unsub RPCSubscriber)
OnDataRPC func(data map[string]any) error
OnClose func()
Autorestart bool
RestartEvery time.Duration
}
// RPCRequest represents the data structure for RPC calls
type RPCRequest struct {
Action string
Topic string
Data map[string]any
From string
Id string
}
// RPCResponse represents the response from RPC calls
type RPCResponse struct {
Data map[string]any
Error string
}
// NewRPCClient creates a new RPC client connection to the bus
func NewRPCClient(opts RPCClientOptions) (*RPCClient, error) {
// Register types for gob encoding
gob.Register(map[string]interface{}{})
if opts.Id == "" {
opts.Id = GenerateUUID()
}
if opts.Autorestart && opts.RestartEvery == 0 {
opts.RestartEvery = 10 * time.Second
}
if opts.OnDataRPC == nil {
opts.OnDataRPC = func(data map[string]any) error { return nil }
}
client := &RPCClient{
Id: opts.Id,
ServerAddr: opts.Address,
topicHandlers: kmap.New[string, func(map[string]any, RPCSubscriber)](20),
onId: opts.OnId,
onDataRPC: opts.OnDataRPC,
onClose: opts.OnClose,
Autorestart: opts.Autorestart,
RestartEvery: opts.RestartEvery,
Done: make(chan struct{}),
}
// Connect to RPC server
err := client.connect()
if err != nil {
return nil, err
}
// Start listening for messages
go client.listen()
return client, nil
}
func (c *RPCClient) connect() error {
conn, err := rpc.DialHTTP("tcp", c.ServerAddr)
if err != nil {
if c.Autorestart {
lg.Info("Connection failed, will retry in", "seconds", c.RestartEvery.Seconds())
time.Sleep(c.RestartEvery)
err := c.connect()
if err != nil {
lg.Error("Failed to reconnect", "err", err)
return err
}
lg.Info("Successfully reconnected")
return nil
}
return err
}
c.conn = conn
// Initial ping to register client
err = c.ping()
if err != nil {
if c.Autorestart {
lg.Info("Ping failed, will retry in", "seconds", c.RestartEvery.Seconds())
time.Sleep(c.RestartEvery)
err := c.connect()
if err != nil {
lg.Error("Failed to reconnect", "err", err)
return err
}
lg.Info("Successfully reconnected")
return nil
}
return err
}
return nil
}
func (c *RPCClient) ping() error {
req := RPCRequest{
Action: "ping",
From: c.Id,
}
var resp RPCResponse
err := c.conn.Call("BusRPC.Ping", req, &resp)
if err != nil {
return err
}
if resp.Error != "" {
return errors.New(resp.Error)
}
return nil
}
func (c *RPCClient) Subscribe(topic string, handler func(data map[string]any, unsub RPCSubscriber)) RPCSubscriber {
req := RPCRequest{
Action: "sub",
Topic: topic,
From: c.Id,
}
var resp RPCResponse
err := c.conn.Call("BusRPC.Subscribe", req, &resp)
if err != nil {
lg.Error("error subscribing", "topic", topic, "err", err)
return RPCSubscriber{
client: c,
Id: c.Id,
Topic: topic,
}
}
c.topicHandlers.Set(topic, handler)
return RPCSubscriber{
client: c,
Id: c.Id,
Topic: topic,
}
}
func (c *RPCClient) Unsubscribe(topic string) {
req := RPCRequest{
Action: "unsub",
Topic: topic,
From: c.Id,
}
var resp RPCResponse
err := c.conn.Call("BusRPC.Unsubscribe", req, &resp)
if err != nil {
lg.Error("error unsubscribing", "topic", topic, "err", err)
return
}
c.topicHandlers.Delete(topic)
}
func (c *RPCClient) Publish(topic string, data map[string]any) {
req := RPCRequest{
Action: "pub",
Topic: topic,
Data: data,
From: c.Id,
}
var resp RPCResponse
err := c.conn.Call("BusRPC.Publish", req, &resp)
if err != nil {
lg.Error("error publishing", "topic", topic, "err", err)
}
}
func (c *RPCClient) PublishToID(id string, data map[string]any) {
req := RPCRequest{
Action: "pub_id",
Id: id,
Data: data,
From: c.Id,
}
var resp RPCResponse
err := c.conn.Call("BusRPC.PublishToID", req, &resp)
if err != nil {
lg.Error("error publishing to ID", "id", id, "err", err)
}
}
func (c *RPCClient) PublishWaitRecv(topic string, data map[string]any, onRecv func(data map[string]any), onExpire func(eventId string, topic string)) {
eventId := GenerateUUID()
data["from"] = c.Id
data["event_id"] = eventId
data["topic"] = topic
done := make(chan struct{})
sub := c.Subscribe(eventId, func(data map[string]any, unsub RPCSubscriber) {
done <- struct{}{}
if onRecv != nil {
onRecv(data)
}
unsub.Unsubscribe()
})
c.Publish(topic, data)
free:
for {
select {
case <-done:
break free
case <-time.After(500 * time.Millisecond):
if onExpire != nil {
onExpire(eventId, topic)
}
sub.Unsubscribe()
break free
}
}
}
func (c *RPCClient) PublishToIDWaitRecv(id string, data map[string]any, onRecv func(data map[string]any), onExpire func(eventId string, id string)) {
eventId := GenerateUUID()
data["from"] = c.Id
data["event_id"] = eventId
data["id"] = id
done := make(chan struct{})
sub := c.Subscribe(eventId, func(data map[string]any, unsub RPCSubscriber) {
done <- struct{}{}
if onRecv != nil {
onRecv(data)
}
unsub.Unsubscribe()
})
c.PublishToID(id, data)
free:
for {
select {
case <-done:
break free
case <-time.After(500 * time.Millisecond):
if onExpire != nil {
onExpire(eventId, id)
}
sub.Unsubscribe()
break free
}
}
}
func (c *RPCClient) RemoveTopic(topic string) {
req := RPCRequest{
Action: "removeTopic",
Topic: topic,
From: c.Id,
}
var resp RPCResponse
err := c.conn.Call("BusRPC.RemoveTopic", req, &resp)
if err != nil {
lg.Error("error removing topic", "topic", topic, "err", err)
}
}
func (c *RPCClient) Close() error {
if c.onClose != nil {
c.onClose()
}
return c.conn.Close()
}
// OnClose sets the callback function to be called when the connection is closed
func (c *RPCClient) OnClose(fn func()) {
c.onClose = fn
}
// listen continuously polls for messages from the server
func (c *RPCClient) listen() {
ticker := time.NewTicker(100 * time.Millisecond)
defer ticker.Stop()
for {
select {
case <-c.Done:
return
case <-ticker.C:
req := RPCRequest{
Action: "poll",
From: c.Id,
}
var resp RPCResponse
err := c.conn.Call("BusRPC.Poll", req, &resp)
if err != nil {
if errors.Is(err, rpc.ErrShutdown) {
lg.ErrorC(err.Error())
if c.onClose != nil {
c.onClose()
}
if c.Autorestart {
lg.Info("Connection lost, attempting to reconnect in", "seconds", c.RestartEvery.Seconds())
time.Sleep(c.RestartEvery)
if err := c.connect(); err != nil {
lg.Error("Failed to reconnect", "err", err)
continue
}
lg.Info("Successfully reconnected")
continue
}
c.Close()
return
}
lg.Error("error polling messages", "err", err)
continue
}
if len(resp.Data) > 0 {
c.handleMessage(resp.Data)
}
}
}
}
func (c *RPCClient) handleMessage(data map[string]any) {
// Check if message is for a topic we're no longer subscribed to
if topic, ok := data["topic"].(string); ok {
if _, exists := c.topicHandlers.Get(topic); !exists {
// Skip processing messages for topics we're not subscribed to
return
}
}
// Call general handler first for all messages
if err := c.onDataRPC(data); err != nil {
lg.Error("error handling RPC data", "err", err)
}
if eventID, ok := data["event_id"]; ok {
c.Publish(eventID.(string), map[string]any{
"ok": "done",
"from": c.Id,
})
}
if toID, ok := data["to_id"]; ok && c.onId != nil && toID.(string) == c.Id {
delete(data, "to_id")
sub := RPCSubscriber{
client: c,
Id: c.Id,
}
c.onId(data, sub)
return
}
if topic, ok := data["topic"].(string); ok {
if handler, exists := c.topicHandlers.Get(topic); exists {
sub := RPCSubscriber{
client: c,
Id: c.Id,
Topic: topic,
}
handler(data, sub)
return
}
}
}
func (c *RPCClient) Run() {
interrupt := make(chan os.Signal, 1)
signal.Notify(interrupt, os.Interrupt)
for {
select {
case <-c.Done:
return
case <-interrupt:
lg.Info("RPC Closed")
c.Close()
return
}
}
}