forked from Azure/azure-service-bus-go
-
Notifications
You must be signed in to change notification settings - Fork 2
/
entity.go
258 lines (218 loc) · 9.28 KB
/
entity.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
package servicebus
import (
"context"
"sync"
"time"
"github.com/devigned/tab"
)
type (
entity struct {
Name string
managementPath string
namespace *Namespace
rpcClient *rpcClient
rpcClientMu sync.RWMutex
}
sendingEntity struct {
*entity
}
receivingEntity struct {
*entity
}
sendAndReceiveEntity struct {
*entity
*sendingEntity
*receivingEntity
}
)
func newEntity(name string, managementPath string, ns *Namespace) *entity {
return &entity{
Name: name,
managementPath: managementPath,
namespace: ns,
}
}
func newReceivingEntity(e *entity) *receivingEntity {
return &receivingEntity{
entity: e,
}
}
func newSendingEntity(e *entity) *sendingEntity {
return &sendingEntity{
entity: e,
}
}
func newSendAndReceiveEntity(entity *entity) *sendAndReceiveEntity {
return &sendAndReceiveEntity{
entity: entity,
receivingEntity: newReceivingEntity(entity),
sendingEntity: newSendingEntity(entity),
}
}
func (e *entity) GetRPCClient(ctx context.Context) (*rpcClient, error) {
if err := e.ensureRPCClient(ctx); err != nil {
tab.For(ctx).Error(err)
return nil, err
}
return e.rpcClient, nil
}
// ManagementPath is the relative uri to address the entity's management functionality
func (e *entity) ManagementPath() string {
return e.managementPath
}
func (e *entity) Namespace() *Namespace {
return e.namespace
}
func (e *entity) getEntity() *entity {
return e
}
// Peek fetches a list of Messages from the Service Bus broker without acquiring a lock or committing to a disposition.
// The messages are delivered as close to sequence order as possible.
//
// The MessageIterator that is returned has the following properties:
// - Messages are fetches from the server in pages. Page size is configurable with PeekOptions.
// - The MessageIterator will always return "false" for Done().
// - When Next() is called, it will return either: a slice of messages and no error, nil with an error related to being
// unable to complete the operation, or an empty slice of messages and an instance of "ErrNoMessages" signifying that
// there are currently no messages in the queue with a sequence ID larger than previously viewed ones.
func (re *receivingEntity) Peek(ctx context.Context, options ...PeekOption) (MessageIterator, error) {
_, span := re.entity.startSpanFromContext(ctx, "sb.entity.Peek")
defer span.End()
return newPeekIterator(re.entity, options...)
}
// PeekOne fetches a single Message from the Service Bus broker without acquiring a lock or committing to a disposition.
func (re *receivingEntity) PeekOne(ctx context.Context, options ...PeekOption) (*Message, error) {
ctx, span := re.entity.startSpanFromContext(ctx, "sb.receivingEntity.PeekOne")
defer span.End()
// Adding PeekWithPageSize(1) as the last option assures that either:
// - creating the iterator will fail because two of the same option will be applied.
// - PeekWithPageSize(1) will be applied after all others, so we will not wastefully pull down messages destined to
// be unread.
options = append(options, PeekWithPageSize(1))
it, err := newPeekIterator(re.entity, options...)
if err != nil {
return nil, err
}
return it.Next(ctx)
}
// ReceiveDeferred will receive and handle a set of deferred messages
//
// When a queue or subscription client receives a message that it is willing to process, but for which processing is
// not currently possible due to special circumstances inside of the application, it has the option of "deferring"
// retrieval of the message to a later point. The message remains in the queue or subscription, but it is set aside.
//
// Deferral is a feature specifically created for workflow processing scenarios. Workflow frameworks may require certain
// operations to be processed in a particular order, and may have to postpone processing of some received messages
// until prescribed prior work that is informed by other messages has been completed.
//
// A simple illustrative example is an order processing sequence in which a payment notification from an external
// payment provider appears in a system before the matching purchase order has been propagated from the store front
// to the fulfillment system. In that case, the fulfillment system might defer processing the payment notification
// until there is an order with which to associate it. In rendezvous scenarios, where messages from different sources
// drive a workflow forward, the real-time execution order may indeed be correct, but the messages reflecting the
// outcomes may arrive out of order.
//
// Ultimately, deferral aids in reordering messages from the arrival order into an order in which they can be
// processed, while leaving those messages safely in the message store for which processing needs to be postponed.
func (re *receivingEntity) ReceiveDeferred(ctx context.Context, handler Handler, sequenceNumbers ...int64) error {
ctx, span := re.startSpanFromContext(ctx, "sb.receivingEntity.ReceiveDeferred")
defer span.End()
return re.ReceiveDeferredWithMode(ctx, handler, PeekLockMode, sequenceNumbers...)
}
// ReceiveDeferredWithMode will receive and handle a set of deferred messages
//
// When a queue or subscription client receives a message that it is willing to process, but for which processing is
// not currently possible due to special circumstances inside of the application, it has the option of "deferring"
// retrieval of the message to a later point. The message remains in the queue or subscription, but it is set aside.
//
// Deferral is a feature specifically created for workflow processing scenarios. Workflow frameworks may require certain
// operations to be processed in a particular order, and may have to postpone processing of some received messages
// until prescribed prior work that is informed by other messages has been completed.
//
// A simple illustrative example is an order processing sequence in which a payment notification from an external
// payment provider appears in a system before the matching purchase order has been propagated from the store front
// to the fulfillment system. In that case, the fulfillment system might defer processing the payment notification
// until there is an order with which to associate it. In rendezvous scenarios, where messages from different sources
// drive a workflow forward, the real-time execution order may indeed be correct, but the messages reflecting the
// outcomes may arrive out of order.
//
// Ultimately, deferral aids in reordering messages from the arrival order into an order in which they can be
// processed, while leaving those messages safely in the message store for which processing needs to be postponed.
func (re *receivingEntity) ReceiveDeferredWithMode(ctx context.Context, handler Handler, mode ReceiveMode, sequenceNumbers ...int64) error {
ctx, span := re.startSpanFromContext(ctx, "sb.receivingEntity.ReceiveDeferred")
defer span.End()
rpcClient, err := re.entity.GetRPCClient(ctx)
if err != nil {
tab.For(ctx).Error(err)
return err
}
messages, err := rpcClient.ReceiveDeferred(ctx, mode, sequenceNumbers...)
if err != nil {
tab.For(ctx).Error(err)
return err
}
for _, msg := range messages {
if err := handler.Handle(ctx, msg); err != nil {
tab.For(ctx).Error(err)
return err
}
}
return nil
}
// RenewLocks renews the locks on messages provided
func (re *receivingEntity) RenewLocks(ctx context.Context, messages ...*Message) error {
ctx, span := re.startSpanFromContext(ctx, "sb.receivingEntity.RenewLocks")
defer span.End()
client, err := re.entity.GetRPCClient(ctx)
if err != nil {
tab.For(ctx).Error(err)
return err
}
return client.RenewLocks(ctx, messages...)
}
// SendBatchDisposition updates the LockTokenIDs to the disposition status.
func (re *receivingEntity) SendBatchDisposition(ctx context.Context, iterator BatchDispositionIterator) error {
ctx, span := re.startSpanFromContext(ctx, "sb.receivingEntity.SendBatchDisposition")
defer span.End()
return iterator.doUpdate(ctx, re)
}
// ScheduleAt will send a batch of messages to a Queue, schedule them to be enqueued, and return the sequence numbers
// that can be used to cancel each message.
func (se *sendingEntity) ScheduleAt(ctx context.Context, enqueueTime time.Time, messages ...*Message) ([]int64, error) {
ctx, span := se.startSpanFromContext(ctx, "sb.sendingEntity.ScheduleAt")
defer span.End()
client, err := se.entity.GetRPCClient(ctx)
if err != nil {
tab.For(ctx).Error(err)
return nil, err
}
return client.ScheduleAt(ctx, enqueueTime, messages...)
}
// CancelScheduled allows for removal of messages that have been handed to the Service Bus broker for later delivery,
// but have not yet ben enqueued.
func (se *sendingEntity) CancelScheduled(ctx context.Context, seq ...int64) error {
ctx, span := se.startSpanFromContext(ctx, "sb.sendingEntity.CancelScheduled")
defer span.End()
client, err := se.entity.GetRPCClient(ctx)
if err != nil {
tab.For(ctx).Error(err)
return err
}
return client.CancelScheduled(ctx, seq...)
}
func (e *entity) ensureRPCClient(ctx context.Context) error {
ctx, span := e.startSpanFromContext(ctx, "sb.entity.ensureRPCClient")
defer span.End()
e.rpcClientMu.Lock()
defer e.rpcClientMu.Unlock()
if e.rpcClient != nil {
return nil
}
client, err := newRPCClient(ctx, e)
if err != nil {
tab.For(ctx).Error(err)
return err
}
e.rpcClient = client
return nil
}