This repository has been archived by the owner on Apr 28, 2020. It is now read-only.
forked from mediocregopher/radix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pubsub_persistent.go
257 lines (226 loc) · 6.33 KB
/
pubsub_persistent.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
package radix
import (
"fmt"
"sync"
"time"
)
type persistentPubSubOpts struct {
connFn ConnFunc
abortAfter int
}
// PersistentPubSubOpt is an optional parameter which can be passed into
// PersistentPubSub in order to affect its behavior.
type PersistentPubSubOpt func(*persistentPubSubOpts)
// PersistentPubSubConnFunc causes PersistentPubSub to use the given ConnFunc
// when connecting to its destination.
func PersistentPubSubConnFunc(connFn ConnFunc) PersistentPubSubOpt {
return func(opts *persistentPubSubOpts) {
opts.connFn = connFn
}
}
// PersistentPubSubAbortAfter changes PersistentPubSub's reconnect behavior.
// Usually PersistentPubSub will try to reconnect forever upon a disconnect,
// blocking any methods which have been called until reconnect is successful.
//
// When PersistentPubSubAbortAfter is used, it will give up after that many
// attempts and return the error to the method which has been blocked the
// longest. Another method will need to be called in order for PersistentPubSub
// to resume trying to reconnect.
func PersistentPubSubAbortAfter(attempts int) PersistentPubSubOpt {
return func(opts *persistentPubSubOpts) {
opts.abortAfter = attempts
}
}
type persistentPubSub struct {
dial func() (Conn, error)
opts persistentPubSubOpts
l sync.Mutex
curr PubSubConn
subs, psubs chanSet
closeCh chan struct{}
}
// PersistentPubSubWithOpts is like PubSub, but instead of taking in an existing Conn to
// wrap it will create one on the fly. If the connection is ever terminated then
// a new one will be created and will be reset to the previous connection's
// state.
//
// This is effectively a way to have a permanent PubSubConn established which
// supports subscribing/unsubscribing but without the hassle of implementing
// reconnect/re-subscribe logic.
//
// With default options, none of the methods on the returned PubSubConn will
// ever return an error, they will instead block until a connection can be
// successfully reinstated.
//
// PersistentPubSubWithOpts takes in a number of options which can overwrite its
// default behavior. The default options PersistentPubSubWithOpts uses are:
//
// PersistentPubSubConnFunc(DefaultConnFunc)
//
func PersistentPubSubWithOpts(
network, addr string, options ...PersistentPubSubOpt,
) (
PubSubConn, error,
) {
opts := persistentPubSubOpts{
connFn: DefaultConnFunc,
}
for _, opt := range options {
opt(&opts)
}
p := &persistentPubSub{
dial: func() (Conn, error) { return opts.connFn(network, addr) },
opts: opts,
subs: chanSet{},
psubs: chanSet{},
closeCh: make(chan struct{}),
}
err := p.refresh()
return p, err
}
// PersistentPubSub is deprecated in favor of PersistentPubSubWithOpts instead.
func PersistentPubSub(network, addr string, connFn ConnFunc) PubSubConn {
var opts []PersistentPubSubOpt
if connFn != nil {
opts = append(opts, PersistentPubSubConnFunc(connFn))
}
// since PersistentPubSubAbortAfter isn't used, this will never return an
// error, panic if it does
p, err := PersistentPubSubWithOpts(network, addr, opts...)
if err != nil {
panic(fmt.Sprintf("PersistentPubSubWithOpts impossibly returned an error: %v", err))
}
return p
}
func (p *persistentPubSub) refresh() error {
if p.curr != nil {
p.curr.Close()
}
attempt := func() (PubSubConn, error) {
c, err := p.dial()
if err != nil {
return nil, err
}
errCh := make(chan error, 1)
pc := newPubSub(c, errCh)
for msgCh, channels := range p.subs.inverse() {
if err := pc.Subscribe(msgCh, channels...); err != nil {
pc.Close()
return nil, err
}
}
for msgCh, patterns := range p.psubs.inverse() {
if err := pc.PSubscribe(msgCh, patterns...); err != nil {
pc.Close()
return nil, err
}
}
go func() {
select {
case <-errCh:
// temp fix: https://github.com/neffos-contrib/radix/issues/184
select {
case <-p.closeCh:
return
default:
}
p.l.Lock()
// It's possible that one of the methods (e.g. Subscribe)
// already had the lock, saw the error, and called refresh. This
// check prevents a double-refresh in that case.
if p.curr == pc {
p.refresh()
}
p.l.Unlock()
case <-p.closeCh:
}
}()
return pc, nil
}
var attempts int
for {
var err error
if p.curr, err = attempt(); err == nil {
return nil
}
attempts++
if p.opts.abortAfter > 0 && attempts >= p.opts.abortAfter {
return err
}
time.Sleep(200 * time.Millisecond)
}
}
func (p *persistentPubSub) Subscribe(msgCh chan<- PubSubMessage, channels ...string) error {
p.l.Lock()
defer p.l.Unlock()
// add first, so if the actual call fails then refresh will catch it
for _, channel := range channels {
p.subs.add(channel, msgCh)
}
if err := p.curr.Subscribe(msgCh, channels...); err != nil {
if err := p.refresh(); err != nil {
return err
}
}
return nil
}
func (p *persistentPubSub) Unsubscribe(msgCh chan<- PubSubMessage, channels ...string) error {
p.l.Lock()
defer p.l.Unlock()
// remove first, so if the actual call fails then refresh will catch it
for _, channel := range channels {
p.subs.del(channel, msgCh)
}
if err := p.curr.Unsubscribe(msgCh, channels...); err != nil {
if err := p.refresh(); err != nil {
return err
}
}
return nil
}
func (p *persistentPubSub) PSubscribe(msgCh chan<- PubSubMessage, channels ...string) error {
p.l.Lock()
defer p.l.Unlock()
// add first, so if the actual call fails then refresh will catch it
for _, channel := range channels {
p.psubs.add(channel, msgCh)
}
if err := p.curr.PSubscribe(msgCh, channels...); err != nil {
if err := p.refresh(); err != nil {
return err
}
}
return nil
}
func (p *persistentPubSub) PUnsubscribe(msgCh chan<- PubSubMessage, channels ...string) error {
p.l.Lock()
defer p.l.Unlock()
// remove first, so if the actual call fails then refresh will catch it
for _, channel := range channels {
p.psubs.del(channel, msgCh)
}
if err := p.curr.PUnsubscribe(msgCh, channels...); err != nil {
if err := p.refresh(); err != nil {
return err
}
}
return nil
}
func (p *persistentPubSub) Ping() error {
p.l.Lock()
defer p.l.Unlock()
for {
if err := p.curr.Ping(); err == nil {
break
} else if err := p.refresh(); err != nil {
return err
}
}
return nil
}
func (p *persistentPubSub) Close() error {
p.l.Lock()
defer p.l.Unlock()
close(p.closeCh)
return p.curr.Close()
}