-
Notifications
You must be signed in to change notification settings - Fork 2
/
client.go
489 lines (401 loc) · 9.26 KB
/
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
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
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
package pulsar
import (
"context"
"crypto/tls"
"fmt"
"net"
"net/http"
"net/url"
"time"
"github.com/cenkalti/backoff"
"github.com/gorilla/websocket"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
)
func init() {
// Use timestamp rather than time string.
zerolog.TimeFieldFormat = ""
}
var (
DefaultLogger = log.Logger
DefaultLogLevel = zerolog.InfoLevel
pingInterval = 10 * time.Second
pingTimeout = 5 * time.Second
pongTimeout = 5 * time.Second
)
type Params map[string]string
func encodeParams(p Params) string {
if len(p) == 0 {
return ""
}
v := url.Values{}
for k, x := range p {
v.Add(k, x)
}
return v.Encode()
}
// PublishMsg is the message type for publishing a new message.
type PublishMsg struct {
Payload []byte `json:"payload"`
Properties map[string]string `json:"properties"`
Context string `json:"context"`
Key string `json:"key"`
ReplicationClusters []string `json:"replicationClusters"`
}
// PublishError is the error type used if the server responds with an error.
type PublishError struct {
Code string `json:"code"`
Msg string `json:"msg"`
Context string `json:"context"`
}
// Error implements the error interface.
func (e *PublishError) Error() string {
return e.Msg
}
type publishResult struct {
Result string `json:"result"`
MsgId string `json:"messageId"`
ErrorMsg string `json:"errorMsg"`
Context string `json:"context"`
}
// PublishResult is the result of a successful publish.
type PublishResult struct {
MsgId string `json:"messageId"`
Context string `json:"context"`
}
type Msg struct {
// MsgId is a base64-encoded value of the serializable MessageId proto.
MsgId string `json:"messageId"`
// Payload is the message payload.
Payload []byte `json:"payload"`
// PublishTime is the time the message was published.
PublishTime time.Time `json:"publishTime"`
// Properties are an arbitrary set of key-value properties.
Properties map[string]string `json:"properties"`
// Key is the partition key for this message.
Key string `json:"key"`
}
type ackMsg struct {
MsgId string `json:"messageId"`
}
type Producer interface {
Send(context.Context, *PublishMsg) (*PublishResult, error)
Close() error
}
type Consumer interface {
Receive(context.Context) (*Msg, error)
Ack(context.Context, *Msg) error
Close() error
}
type Reader interface {
Receive(context.Context) (*Msg, error)
Ack(context.Context, *Msg) error
Close() error
}
func closeConn(w *websocket.Conn) error {
err := w.WriteMessage(
websocket.CloseMessage,
websocket.FormatCloseMessage(websocket.CloseNormalClosure, ""),
)
if err != nil {
w.Close()
return err
}
return w.Close()
}
type producer struct {
topic string
params Params
c *Client
w *websocket.Conn
}
func (p *producer) dial(err error, max int) error {
url := fmt.Sprintf("%s/producer/%s?%s", p.c.URL, p.topic, encodeParams(p.params))
w, err := p.c.dial(err, url, max)
if err != nil {
return err
}
p.w = w
return nil
}
func (p *producer) Send(ctx context.Context, m *PublishMsg) (*PublishResult, error) {
t, _ := ctx.Deadline()
p.w.SetWriteDeadline(t)
p.w.SetReadDeadline(t)
for {
err := p.w.WriteJSON(m)
// All good.
if err == nil {
break
}
if err := p.dial(err, -1); err != nil {
return nil, err
}
}
// Read result.
var r publishResult
if err := p.w.ReadJSON(&r); err != nil {
return nil, err
}
if r.Result == "ok" {
return &PublishResult{
MsgId: r.MsgId,
Context: r.Context,
}, nil
}
return nil, &PublishError{
Code: r.Result,
Msg: r.ErrorMsg,
Context: r.Context,
}
}
func (p *producer) Close() error {
return closeConn(p.w)
}
type consumer struct {
topic string
name string
params Params
c *Client
w *websocket.Conn
}
func (c *consumer) dial(err error, max int) error {
url := fmt.Sprintf("%s/consumer/%s/%s?%s", c.c.URL, c.topic, c.name, encodeParams(c.params))
w, err := c.c.dial(err, url, max)
if err != nil {
return err
}
c.w = w
return nil
}
func (c *consumer) Receive(ctx context.Context) (*Msg, error) {
t, _ := ctx.Deadline()
c.w.SetReadDeadline(t)
var m Msg
for {
err := c.w.ReadJSON(&m)
if err == nil {
break
}
if err := c.dial(err, -1); err != nil {
return nil, err
}
}
return &m, nil
}
func (c *consumer) Ack(ctx context.Context, m *Msg) error {
t, _ := ctx.Deadline()
c.w.SetWriteDeadline(t)
for {
err := c.w.WriteJSON(&ackMsg{
MsgId: m.MsgId,
})
if err == nil {
break
}
if err := c.dial(err, -1); err != nil {
return err
}
}
return nil
}
func (c *consumer) Close() error {
return closeConn(c.w)
}
type reader struct {
topic string
params Params
c *Client
w *websocket.Conn
// In case a disconnect happens, this will be provided as the last message id
// to resume where the reader left off.
lastId string
}
func (r *reader) dial(err error, max int) error {
p := r.params
// Use the last ack'ed id as the starting point.
if r.lastId != "" {
p["messageId"] = r.lastId
}
url := fmt.Sprintf("%s/reader/%s?%s", r.c.URL, r.topic, encodeParams(p))
w, err := r.c.dial(err, url, max)
if err != nil {
return err
}
r.w = w
return nil
}
func (r *reader) Receive(ctx context.Context) (*Msg, error) {
t, _ := ctx.Deadline()
r.w.SetReadDeadline(t)
var m Msg
for {
err := r.w.ReadJSON(&m)
if err == nil {
break
}
if err := r.dial(err, -1); err != nil {
return nil, err
}
}
return &m, nil
}
func (r *reader) Ack(ctx context.Context, m *Msg) error {
t, _ := ctx.Deadline()
r.w.SetWriteDeadline(t)
for {
err := r.w.WriteJSON(&ackMsg{
MsgId: m.MsgId,
})
if err == nil {
break
}
if err := r.dial(err, -1); err != nil {
return err
}
}
// Track the last message id across reconnects.
r.lastId = m.MsgId
return nil
}
func (r *reader) Close() error {
return closeConn(r.w)
}
// Client is a client for Apache Pulsar Websocket API.
// Use New to initialize the client with the default configuration.
type Client struct {
URL string
Logger zerolog.Logger
dialer *websocket.Dialer
}
func (c *Client) isRetryableError(err error) bool {
c.Logger.Debug().Err(err).Msgf("%#T %#v", err, err)
// Websocket-specific.
if websocket.IsCloseError(err,
websocket.CloseGoingAway,
websocket.CloseAbnormalClosure,
) {
return true
}
// Network error.
if _, ok := err.(*net.OpError); ok {
return true
}
return false
}
// dial attempts to create a new websocket connection. If an error is passed
// it is checked for whether it was a connection error so it can reconnect.
func (c *Client) dial(err error, url string, max int) (*websocket.Conn, error) {
// Check if a reconnect is worth doing.. otherwise return the error.
if err != nil {
if !c.isRetryableError(err) {
return nil, err
}
c.Logger.Debug().Msg("reconnecting")
}
var w *websocket.Conn
b := backoff.NewExponentialBackOff()
// No longer than a minute interval.
b.MaxInterval = time.Minute
// Retry forever.
b.MaxElapsedTime = 0
var o backoff.BackOff = b
if max == 0 {
o = &backoff.StopBackOff{}
} else if max > 0 {
o = backoff.WithMaxRetries(o, uint64(max))
}
err = backoff.Retry(func() error {
w, _, err = c.dialer.Dial(url, nil)
if err != nil {
c.Logger.Error().Err(err).Msg("dial")
}
return err
}, o)
if err != nil {
return nil, err
}
// Setup a ping/pong routine to know when the connection has died.
/*
go func() {
lastResponse := time.Now()
w.SetPongHandler(func(_ string) error {
now := time.Now()
c.Logger.Debug().Dur("delay", now.Sub(lastResponse)).Msg("pong")
lastResponse = now
return nil
})
ticker := time.NewTicker(pingInterval)
for {
select {
case <-ticker.C:
c.Logger.Debug().Msg("ping")
err := w.WriteControl(websocket.PingMessage, nil, time.Now().Add(pingTimeout))
if err != nil {
c.Logger.Error().Err(err).Msg("ping")
}
// Sleep for partial time to be optimistic.
time.Sleep(pongTimeout / 2)
if time.Now().Sub(lastResponse) > pongTimeout {
c.Logger.Error().Msg("pong timeout")
w.Close()
return
}
}
}
}()
*/
c.Logger.Debug().Msg("connected")
return w, nil
}
// Producer initializes a new producer.
func (c *Client) Producer(topic string, params Params) (Producer, error) {
p := &producer{
topic: topic,
params: params,
c: c,
}
if err := p.dial(nil, 0); err != nil {
return nil, err
}
return p, nil
}
// Consumer initializes a new consumer.
func (c *Client) Consumer(topic string, name string, params Params) (Consumer, error) {
x := &consumer{
topic: topic,
name: name,
params: params,
c: c,
}
if err := x.dial(nil, 0); err != nil {
return nil, err
}
return x, nil
}
// Reader initializes a new reader.
func (c *Client) Reader(topic string, params Params) (Reader, error) {
r := &reader{
topic: topic,
params: params,
c: c,
}
if err := r.dial(nil, 0); err != nil {
return nil, err
}
return r, nil
}
// New initializes a new client.
func New(url string) *Client {
return &Client{
URL: url,
Logger: DefaultLogger.Level(DefaultLogLevel),
dialer: &websocket.Dialer{
Proxy: http.ProxyFromEnvironment,
HandshakeTimeout: 30 * time.Second,
TLSClientConfig: &tls.Config{
InsecureSkipVerify: true,
},
},
}
}