-
Notifications
You must be signed in to change notification settings - Fork 0
/
envelope.go
357 lines (281 loc) · 7.17 KB
/
envelope.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
package channel
import (
"context"
"github.com/michaelquigley/pfxlog"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
"time"
)
type priorityEnvelopeImpl struct {
msg *Message
p Priority
}
func (self *priorityEnvelopeImpl) SetSequence(seq int32) {
self.msg.SetSequence(seq)
}
func (self *priorityEnvelopeImpl) Sequence() int32 {
return self.msg.sequence
}
func (self *priorityEnvelopeImpl) Send(ch Channel) error {
return ch.Send(self)
}
func (self *priorityEnvelopeImpl) ReplyTo(msg *Message) Envelope {
self.msg.ReplyTo(msg)
return self
}
func (self *priorityEnvelopeImpl) Msg() *Message {
return self.msg
}
func (self *priorityEnvelopeImpl) Context() context.Context {
return self.msg.Context()
}
func (self *priorityEnvelopeImpl) SendListener() SendListener {
return self.msg.SendListener()
}
func (self *priorityEnvelopeImpl) ReplyReceiver() ReplyReceiver {
return nil
}
func (self *priorityEnvelopeImpl) ToSendable() Sendable {
return self
}
func (self *priorityEnvelopeImpl) Priority() Priority {
return self.p
}
func (self *priorityEnvelopeImpl) WithPriority(p Priority) Envelope {
self.p = p
return self
}
func (self *priorityEnvelopeImpl) WithTimeout(duration time.Duration) TimeoutEnvelope {
ctx, cancelF := context.WithTimeout(context.Background(), duration)
return &envelopeImpl{
msg: self.msg,
p: self.p,
context: ctx,
cancelF: cancelF,
}
}
type envelopeImpl struct {
msg *Message
p Priority
context context.Context
cancelF context.CancelFunc
}
func (self *envelopeImpl) SetSequence(seq int32) {
self.msg.SetSequence(seq)
}
func (self *envelopeImpl) Sequence() int32 {
return self.msg.sequence
}
func (self *envelopeImpl) Msg() *Message {
return self.msg
}
func (self *envelopeImpl) ReplyTo(msg *Message) Envelope {
self.msg.ReplyTo(msg)
return self
}
func (self *envelopeImpl) ReplyReceiver() ReplyReceiver {
return nil
}
func (self *envelopeImpl) ToSendable() Sendable {
return self
}
func (self *envelopeImpl) SendListener() SendListener {
return self
}
func (self *envelopeImpl) NotifyQueued() {}
func (self *envelopeImpl) NotifyBeforeWrite() {}
func (self *envelopeImpl) NotifyAfterWrite() {
if self.cancelF != nil {
self.cancelF()
}
}
func (self *envelopeImpl) NotifyErr(error) {}
func (self *envelopeImpl) Priority() Priority {
return self.p
}
func (self *envelopeImpl) WithPriority(p Priority) Envelope {
self.p = p
return self
}
func (self *envelopeImpl) Context() context.Context {
return self.context
}
func (self *envelopeImpl) WithTimeout(duration time.Duration) TimeoutEnvelope {
parent := self.context
if parent == nil {
parent = context.Background()
}
self.context, self.cancelF = context.WithTimeout(parent, duration)
return self
}
func (self *envelopeImpl) Send(ch Channel) error {
return ch.Send(self)
}
func (self *envelopeImpl) SendAndWaitForWire(ch Channel) error {
waitSendContext := &sendWaitEnvelope{envelopeImpl: self}
return waitSendContext.WaitForWire(ch)
}
func (self *envelopeImpl) SendForReply(ch Channel) (*Message, error) {
replyContext := &replyEnvelope{envelopeImpl: self}
return replyContext.WaitForReply(ch)
}
type sendWaitEnvelope struct {
*envelopeImpl
errC chan error
}
func (self *sendWaitEnvelope) ToSendable() Sendable {
return self
}
func (self *sendWaitEnvelope) SendListener() SendListener {
return self
}
func (self *sendWaitEnvelope) NotifyAfterWrite() {
close(self.errC)
}
func (self *sendWaitEnvelope) NotifyErr(err error) {
self.errC <- err
}
func (self *sendWaitEnvelope) WaitForWire(ch Channel) error {
if err := self.context.Err(); err != nil {
return err
}
defer self.cancelF()
self.errC = make(chan error, 1)
if err := ch.Send(self); err != nil {
return err
}
select {
case err := <-self.errC:
return err
case <-self.context.Done():
if err := self.context.Err(); err != nil {
return TimeoutError{errors.Wrap(err, "timeout waiting for message to be written to wire")}
}
return errors.New("timeout waiting for message to be written to wire")
}
}
type replyEnvelope struct {
*envelopeImpl
errC chan error
replyC chan *Message
}
func (self *replyEnvelope) ToSendable() Sendable {
return self
}
func (self *replyEnvelope) SendListener() SendListener {
return self
}
func (self *replyEnvelope) ReplyReceiver() ReplyReceiver {
return self
}
func (self *replyEnvelope) NotifyAfterWrite() {}
func (self *replyEnvelope) AcceptReply(message *Message) {
select {
case self.replyC <- message:
default:
logrus.
WithField("seq", message.Sequence()).
WithField("replyFor", message.ReplyFor()).
WithField("contentType", message.ContentType).
Error("could not send reply on reply channel, channel was busy")
}
}
func (self *replyEnvelope) NotifyErr(err error) {
self.errC <- err
}
func (self *replyEnvelope) WaitForReply(ch Channel) (*Message, error) {
if err := self.context.Err(); err != nil {
return nil, err
}
defer self.cancelF()
self.errC = make(chan error, 1)
self.replyC = make(chan *Message, 1)
if err := ch.Send(self); err != nil {
return nil, err
}
select {
case err := <-self.errC:
return nil, err
case <-self.context.Done():
if err := self.context.Err(); err != nil {
return nil, TimeoutError{errors.Wrap(err, "timeout waiting for message reply")}
}
return nil, errors.New("timeout waiting for message reply")
case reply := <-self.replyC:
return reply, nil
}
}
func NewErrorEnvelope(err error) Envelope {
return &errorEnvelope{
ctx: NewErrorContext(err),
}
}
type errorEnvelope struct {
ctx context.Context
}
func (self *errorEnvelope) SetSequence(seq int32) {}
func (self *errorEnvelope) Sequence() int32 {
return 0
}
func (self *errorEnvelope) Msg() *Message {
return nil
}
func (self *errorEnvelope) ReplyTo(msg *Message) Envelope {
return self
}
func (self *errorEnvelope) Priority() Priority {
return Standard
}
func (self *errorEnvelope) Context() context.Context {
return self.ctx
}
func (self *errorEnvelope) SendListener() SendListener {
return BaseSendListener{}
}
func (self *errorEnvelope) ReplyReceiver() ReplyReceiver {
return nil
}
func (self *errorEnvelope) ToSendable() Sendable {
return self
}
func (self *errorEnvelope) SendAndWaitForWire(Channel) error {
return self.ctx.Err()
}
func (self *errorEnvelope) SendForReply(Channel) (*Message, error) {
return nil, self.ctx.Err()
}
func (self *errorEnvelope) WithTimeout(time.Duration) TimeoutEnvelope {
return self
}
func (self *errorEnvelope) Send(Channel) error {
return self.ctx.Err()
}
func (self *errorEnvelope) WithPriority(Priority) Envelope {
return self
}
func NewErrorContext(err error) context.Context {
result := &errorContext{
err: err,
closedC: make(chan struct{}),
}
close(result.closedC)
return result
}
type errorContext struct {
err error
closedC chan struct{}
}
func (self *errorContext) Deadline() (deadline time.Time, ok bool) {
return time.Time{}, false
}
func (self *errorContext) Done() <-chan struct{} {
return self.closedC
}
func (self *errorContext) Err() error {
return self.err
}
func (self *errorContext) Value(interface{}) interface{} {
// ignore for now. may need an implementation at some point
pfxlog.Logger().Error("errorContext.Value called, but not implemented!!!")
return nil
}