forked from mediocregopher/radix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pubsub.go
464 lines (395 loc) · 11.5 KB
/
pubsub.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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
package radix
import (
"bufio"
"bytes"
"io"
"net"
"sync"
"time"
"errors"
"github.com/mediocregopher/radix/v3/resp"
"github.com/mediocregopher/radix/v3/resp/resp2"
)
// PubSubMessage describes a message being published to a subscribed channel.
type PubSubMessage struct {
Type string // "message" or "pmessage"
Pattern string // will be set if Type is "pmessage"
Channel string
Message []byte
}
// MarshalRESP implements the Marshaler interface.
func (m PubSubMessage) MarshalRESP(w io.Writer) error {
var err error
marshal := func(m resp.Marshaler) {
if err == nil {
err = m.MarshalRESP(w)
}
}
if m.Type == "message" {
marshal(resp2.ArrayHeader{N: 3})
marshal(resp2.BulkString{S: m.Type})
} else if m.Type == "pmessage" {
marshal(resp2.ArrayHeader{N: 4})
marshal(resp2.BulkString{S: m.Type})
marshal(resp2.BulkString{S: m.Pattern})
} else {
return errors.New("unknown message Type")
}
marshal(resp2.BulkString{S: m.Channel})
marshal(resp2.BulkStringBytes{B: m.Message})
return err
}
var errNotPubSubMessage = errors.New("message is not a PubSubMessage")
// UnmarshalRESP implements the Unmarshaler interface.
func (m *PubSubMessage) UnmarshalRESP(br *bufio.Reader) error {
// This method will fully consume the message on the wire, regardless of if
// it is a PubSubMessage or not. If it is not then errNotPubSubMessage is
// returned.
// When in subscribe mode redis only allows (P)(UN)SUBSCRIBE commands, which
// all return arrays, and PING, which returns an array when in subscribe
// mode. HOWEVER, when all channels have been unsubscribed from then the
// connection will be taken _out_ of subscribe mode. This is theoretically
// fine, since the driver will still only allow the 5 commands, except PING
// will return a simple string when in the non-subscribed state. So this
// needs to check for that.
if prefix, err := br.Peek(1); err != nil {
return err
} else if bytes.Equal(prefix, resp2.SimpleStringPrefix) {
// if it's a simple string, discard it (it's probably PONG) and error
if err := (resp2.Any{}).UnmarshalRESP(br); err != nil {
return err
}
return resp.ErrDiscarded{Err: errNotPubSubMessage}
}
var ah resp2.ArrayHeader
if err := ah.UnmarshalRESP(br); err != nil {
return err
} else if ah.N < 2 {
return errors.New("message has too few elements")
}
var msgType resp2.BulkStringBytes
if err := msgType.UnmarshalRESP(br); err != nil {
return err
}
switch string(msgType.B) {
case "message":
m.Type = "message"
if ah.N != 3 {
return errors.New("message has wrong number of elements")
}
case "pmessage":
m.Type = "pmessage"
if ah.N != 4 {
return errors.New("message has wrong number of elements")
}
var pattern resp2.BulkString
if err := pattern.UnmarshalRESP(br); err != nil {
return err
}
m.Pattern = pattern.S
default:
// if it's not a PubSubMessage then discard the rest of the array
for i := 1; i < ah.N; i++ {
if err := (resp2.Any{}).UnmarshalRESP(br); err != nil {
return err
}
}
return errNotPubSubMessage
}
var channel resp2.BulkString
if err := channel.UnmarshalRESP(br); err != nil {
return err
}
m.Channel = channel.S
var msg resp2.BulkStringBytes
if err := msg.UnmarshalRESP(br); err != nil {
return err
}
m.Message = msg.B
return nil
}
////////////////////////////////////////////////////////////////////////////////
type chanSet map[string]map[chan<- PubSubMessage]bool
func (cs chanSet) add(s string, ch chan<- PubSubMessage) {
m, ok := cs[s]
if !ok {
m = map[chan<- PubSubMessage]bool{}
cs[s] = m
}
m[ch] = true
}
func (cs chanSet) del(s string, ch chan<- PubSubMessage) bool {
m, ok := cs[s]
if !ok {
return true
}
delete(m, ch)
if len(m) == 0 {
delete(cs, s)
return true
}
return false
}
func (cs chanSet) missing(ss []string) []string {
out := make([]string, 0, len(ss))
for _, s := range ss {
if _, ok := cs[s]; !ok {
out = append(out, s)
}
}
return out
}
func (cs chanSet) inverse() map[chan<- PubSubMessage][]string {
inv := map[chan<- PubSubMessage][]string{}
for s, m := range cs {
for ch := range m {
inv[ch] = append(inv[ch], s)
}
}
return inv
}
////////////////////////////////////////////////////////////////////////////////
// PubSubConn wraps an existing Conn to support redis' pubsub system.
// User-created channels can be subscribed to redis channels to receive
// PubSubMessages which have been published.
//
// If any methods return an error it means the PubSubConn has been Close'd and
// subscribed msgCh's will no longer receive PubSubMessages from it. All methods
// are threadsafe, but should be called in a different go-routine than that
// which is reading from the PubSubMessage channels.
//
// NOTE the PubSubMessage channels should never block. If any channels block
// when being written to they will block all other channels from receiving a
// publish and block methods from returning.
type PubSubConn interface {
// Subscribe subscribes the PubSubConn to the given set of channels. msgCh
// will receieve a PubSubMessage for every publish written to any of the
// channels. This may be called multiple times for the same channels and
// different msgCh's, each msgCh will receieve a copy of the PubSubMessage
// for each publish.
Subscribe(msgCh chan<- PubSubMessage, channels ...string) error
// Unsubscribe unsubscribes the msgCh from the given set of channels, if it
// was subscribed at all.
//
// NOTE even if msgCh is not subscribed to any other redis channels, it
// should still be considered "active", and therefore still be having
// messages read from it, until Unsubscribe has returned
Unsubscribe(msgCh chan<- PubSubMessage, channels ...string) error
// PSubscribe is like Subscribe, but it subscribes msgCh to a set of
// patterns and not individual channels.
PSubscribe(msgCh chan<- PubSubMessage, patterns ...string) error
// PUnsubscribe is like Unsubscribe, but it unsubscribes msgCh from a set of
// patterns and not individual channels.
//
// NOTE even if msgCh is not subscribed to any other redis channels, it
// should still be considered "active", and therefore still be having
// messages read from it, until PUnsubscribe has returned
PUnsubscribe(msgCh chan<- PubSubMessage, patterns ...string) error
// Ping performs a simple Ping command on the PubSubConn, returning an error
// if it failed for some reason
Ping() error
// Close closes the PubSubConn so it can't be used anymore. All subscribed
// channels will stop receiving PubSubMessages from this Conn (but will not
// themselves be closed).
//
// NOTE all msgChs should be considered "active", and therefore still be
// having messages read from them, until Close has returned.
Close() error
}
type pubSubConn struct {
conn Conn
csL sync.RWMutex
subs chanSet
psubs chanSet
// These are used for writing commands and waiting for their response (e.g.
// SUBSCRIBE, PING). See the do method for how that works.
cmdL sync.Mutex
cmdResCh chan error
close sync.Once
closeErr error
// This one is optional, and kind of cheating. We use it in persistent to
// get on-the-fly updates of when the connection fails. Maybe one day this
// could be exposed if there's a clean way of doing so, or another way
// accomplishing the same thing could be done instead.
closeErrCh chan error
// only used during testing
testEventCh chan string
}
// PubSub wraps the given Conn so that it becomes a PubSubConn. The passed in
// Conn should not be used after this call.
func PubSub(rc Conn) PubSubConn {
return newPubSub(rc, nil)
}
func newPubSub(rc Conn, closeErrCh chan error) PubSubConn {
c := &pubSubConn{
conn: rc,
subs: chanSet{},
psubs: chanSet{},
cmdResCh: make(chan error, 1),
closeErrCh: closeErrCh,
}
go c.spin()
// Periodically call Ping so the connection has a keepalive on the
// application level. If the Conn is closed Ping will return an error and
// this will clean itself up.
go func() {
t := time.NewTicker(5 * time.Second)
defer t.Stop()
for range t.C {
if err := c.Ping(); err != nil {
return
}
}
}()
return c
}
func (c *pubSubConn) testEvent(str string) {
if c.testEventCh != nil {
c.testEventCh <- str
}
}
func (c *pubSubConn) publish(m PubSubMessage) {
c.csL.RLock()
defer c.csL.RUnlock()
var subs map[chan<- PubSubMessage]bool
if m.Type == "pmessage" {
subs = c.psubs[m.Pattern]
} else {
subs = c.subs[m.Channel]
}
for ch := range subs {
ch <- m
}
}
func (c *pubSubConn) spin() {
for {
var m PubSubMessage
err := c.conn.Decode(&m)
if nerr := net.Error(nil); errors.As(err, &nerr) && nerr.Timeout() {
c.testEvent("timeout")
continue
} else if errors.Is(err, errNotPubSubMessage) {
c.cmdResCh <- nil
continue
} else if err != nil {
// closeInner returns the error from closing the Conn, which doesn't
// really matter here.
_ = c.closeInner(err)
return
}
c.publish(m)
}
}
// NOTE cmdL _must_ be held to use do.
func (c *pubSubConn) do(exp int, cmd string, args ...string) error {
rcmd := Cmd(nil, cmd, args...)
if err := c.conn.Encode(rcmd); err != nil {
return err
}
for i := 0; i < exp; i++ {
err, ok := <-c.cmdResCh
if err != nil {
return err
} else if !ok {
return errors.New("connection closed")
}
}
return nil
}
func (c *pubSubConn) closeInner(cmdResErr error) error {
c.close.Do(func() {
c.csL.Lock()
defer c.csL.Unlock()
c.closeErr = c.conn.Close()
c.subs = chanSet{}
c.psubs = chanSet{}
if cmdResErr != nil {
select {
case c.cmdResCh <- cmdResErr:
default:
}
}
if c.closeErrCh != nil {
c.closeErrCh <- cmdResErr
close(c.closeErrCh)
}
close(c.cmdResCh)
})
return c.closeErr
}
func (c *pubSubConn) Close() error {
return c.closeInner(nil)
}
func (c *pubSubConn) Subscribe(msgCh chan<- PubSubMessage, channels ...string) error {
c.cmdL.Lock()
defer c.cmdL.Unlock()
c.csL.RLock()
missing := c.subs.missing(channels)
c.csL.RUnlock()
if len(missing) > 0 {
if err := c.do(len(missing), "SUBSCRIBE", missing...); err != nil {
return err
}
}
c.csL.Lock()
for _, channel := range channels {
c.subs.add(channel, msgCh)
}
c.csL.Unlock()
return nil
}
func (c *pubSubConn) Unsubscribe(msgCh chan<- PubSubMessage, channels ...string) error {
c.cmdL.Lock()
defer c.cmdL.Unlock()
c.csL.Lock()
emptyChannels := make([]string, 0, len(channels))
for _, channel := range channels {
if empty := c.subs.del(channel, msgCh); empty {
emptyChannels = append(emptyChannels, channel)
}
}
c.csL.Unlock()
if len(emptyChannels) == 0 {
return nil
}
return c.do(len(emptyChannels), "UNSUBSCRIBE", emptyChannels...)
}
func (c *pubSubConn) PSubscribe(msgCh chan<- PubSubMessage, patterns ...string) error {
c.cmdL.Lock()
defer c.cmdL.Unlock()
c.csL.RLock()
missing := c.psubs.missing(patterns)
c.csL.RUnlock()
if len(missing) > 0 {
if err := c.do(len(missing), "PSUBSCRIBE", missing...); err != nil {
return err
}
}
c.csL.Lock()
for _, pattern := range patterns {
c.psubs.add(pattern, msgCh)
}
c.csL.Unlock()
return nil
}
func (c *pubSubConn) PUnsubscribe(msgCh chan<- PubSubMessage, patterns ...string) error {
c.cmdL.Lock()
defer c.cmdL.Unlock()
c.csL.Lock()
emptyPatterns := make([]string, 0, len(patterns))
for _, pattern := range patterns {
if empty := c.psubs.del(pattern, msgCh); empty {
emptyPatterns = append(emptyPatterns, pattern)
}
}
c.csL.Unlock()
if len(emptyPatterns) == 0 {
return nil
}
return c.do(len(emptyPatterns), "PUNSUBSCRIBE", emptyPatterns...)
}
func (c *pubSubConn) Ping() error {
c.cmdL.Lock()
defer c.cmdL.Unlock()
return c.do(1, "PING")
}