forked from st3v/go-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stan.go
288 lines (240 loc) · 5.63 KB
/
stan.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
// Package stan provides a NATS Streaming broker
package stan
import (
"context"
"errors"
"strings"
"sync"
"github.com/google/uuid"
"github.com/micro/go-micro/broker"
"github.com/micro/go-micro/cmd"
"github.com/micro/go-micro/codec/json"
stan "github.com/nats-io/go-nats-streaming"
)
type stanBroker struct {
sync.RWMutex
addrs []string
conn stan.Conn
opts broker.Options
nopts stan.Options
}
type subscriber struct {
t string
s stan.Subscription
dq bool
opts broker.SubscribeOptions
}
type publication struct {
t string
msg *stan.Msg
m *broker.Message
}
func init() {
cmd.DefaultBrokers["stan"] = NewBroker
}
func (n *publication) Topic() string {
return n.t
}
func (n *publication) Message() *broker.Message {
return n.m
}
func (n *publication) Ack() error {
return n.msg.Ack()
}
func (n *subscriber) Options() broker.SubscribeOptions {
return n.opts
}
func (n *subscriber) Topic() string {
return n.t
}
func (n *subscriber) Unsubscribe() error {
if n.s == nil {
return nil
}
// go-micro server Unsubscribe can't handle durable queues, so close as stan suggested
// from nats streaming readme:
// When a client disconnects, the streaming server is not notified, hence the importance of calling Close()
if !n.dq {
err := n.s.Unsubscribe()
if err != nil {
return err
}
}
return n.Close()
}
func (n *subscriber) Close() error {
if n.s != nil {
return n.s.Close()
}
return nil
}
func (n *stanBroker) Address() string {
// stan does not support connected server info
if len(n.addrs) > 0 {
return n.addrs[0]
}
return ""
}
func setAddrs(addrs []string) []string {
var cAddrs []string
for _, addr := range addrs {
if len(addr) == 0 {
continue
}
if !strings.HasPrefix(addr, "nats://") {
addr = "nats://" + addr
}
cAddrs = append(cAddrs, addr)
}
if len(cAddrs) == 0 {
cAddrs = []string{stan.DefaultNatsURL}
}
return cAddrs
}
func (n *stanBroker) Connect() error {
n.RLock()
if n.conn != nil {
n.RUnlock()
return nil
}
n.RUnlock()
opts := n.nopts
opts.NatsURL = strings.Join(n.addrs, ",")
clusterID, ok := n.opts.Context.Value(clusterIDKey{}).(string)
if !ok || len(clusterID) == 0 {
return errors.New("must specify ClusterID Option")
}
clientID := uuid.New().String()
nopts := []stan.Option{
stan.NatsURL(opts.NatsURL),
stan.NatsConn(opts.NatsConn),
stan.ConnectWait(opts.ConnectTimeout),
stan.PubAckWait(opts.AckTimeout),
stan.MaxPubAcksInflight(opts.MaxPubAcksInflight),
stan.Pings(opts.PingIterval, opts.PingMaxOut),
stan.SetConnectionLostHandler(opts.ConnectionLostCB),
}
c, err := stan.Connect(clusterID, clientID, nopts...)
if err != nil {
return err
}
n.Lock()
n.conn = c
n.Unlock()
return nil
}
func (n *stanBroker) Disconnect() error {
n.RLock()
n.conn.Close()
n.RUnlock()
return nil
}
func (n *stanBroker) Init(opts ...broker.Option) error {
for _, o := range opts {
o(&n.opts)
}
n.addrs = setAddrs(n.opts.Addrs)
return nil
}
func (n *stanBroker) Options() broker.Options {
return n.opts
}
func (n *stanBroker) Publish(topic string, msg *broker.Message, opts ...broker.PublishOption) error {
b, err := n.opts.Codec.Marshal(msg)
if err != nil {
return err
}
n.RLock()
defer n.RUnlock()
return n.conn.Publish(topic, b)
}
func (n *stanBroker) Subscribe(topic string, handler broker.Handler, opts ...broker.SubscribeOption) (broker.Subscriber, error) {
if n.conn == nil {
return nil, errors.New("not connected")
}
var ackSuccess bool
opt := broker.SubscribeOptions{
AutoAck: true,
}
for _, o := range opts {
o(&opt)
}
// Make sure context is setup
if opt.Context == nil {
opt.Context = context.Background()
}
ctx := opt.Context
if subscribeContext, ok := ctx.Value(subscribeContextKey{}).(context.Context); ok && subscribeContext != nil {
ctx = subscribeContext
}
var stanOpts []stan.SubscriptionOption
if !opt.AutoAck {
stanOpts = append(stanOpts, stan.SetManualAckMode())
}
if subOpts, ok := ctx.Value(subscribeOptionKey{}).([]stan.SubscriptionOption); ok && len(subOpts) > 0 {
stanOpts = append(stanOpts, subOpts...)
}
if bval, ok := ctx.Value(ackSuccessKey{}).(bool); ok && bval {
stanOpts = append(stanOpts, stan.SetManualAckMode())
ackSuccess = true
}
bopts := stan.DefaultSubscriptionOptions
for _, bopt := range stanOpts {
if err := bopt(&bopts); err != nil {
return nil, err
}
}
opt.AutoAck = !bopts.ManualAcks
fn := func(msg *stan.Msg) {
var m broker.Message
// unmarshal message
if err := n.opts.Codec.Unmarshal(msg.Data, &m); err != nil {
return
}
// execute the handler
err := handler(&publication{m: &m, msg: msg, t: msg.Subject})
// if there's no error and success auto ack is enabled ack it
if err == nil && ackSuccess {
msg.Ack()
}
}
var sub stan.Subscription
var err error
n.RLock()
if len(opt.Queue) > 0 {
sub, err = n.conn.QueueSubscribe(topic, opt.Queue, fn, stanOpts...)
} else {
sub, err = n.conn.Subscribe(topic, fn, stanOpts...)
}
n.RUnlock()
if err != nil {
return nil, err
}
return &subscriber{dq: len(bopts.DurableName) > 0, s: sub, opts: opt, t: topic}, nil
}
func (n *stanBroker) String() string {
return "stan"
}
func NewBroker(opts ...broker.Option) broker.Broker {
options := broker.Options{
// Default codec
Codec: json.Marshaler{},
Context: context.Background(),
}
for _, o := range opts {
o(&options)
}
stanOpts := stan.DefaultOptions
if n, ok := options.Context.Value(optionsKey{}).(stan.Options); ok {
stanOpts = n
}
if len(options.Addrs) == 0 {
options.Addrs = strings.Split(stanOpts.NatsURL, ",")
}
nb := &stanBroker{
opts: options,
nopts: stanOpts,
addrs: setAddrs(options.Addrs),
}
return nb
}