This repository was archived by the owner on Jun 11, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathAmqpPartitionReceiver.cs
More file actions
381 lines (335 loc) · 16.3 KB
/
Copy pathAmqpPartitionReceiver.cs
File metadata and controls
381 lines (335 loc) · 16.3 KB
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
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace Microsoft.Azure.EventHubs.Amqp
{
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Azure.Amqp;
using Microsoft.Azure.Amqp.Framing;
class AmqpPartitionReceiver : PartitionReceiver
{
readonly object receivePumpLock;
readonly ActiveClientLinkManager clientLinkManager;
IPartitionReceiveHandler receiveHandler;
CancellationTokenSource receivePumpCancellationSource;
Task receivePumpTask;
public AmqpPartitionReceiver(
AmqpEventHubClient eventHubClient,
string consumerGroupName,
string partitionId,
string startOffset,
bool offsetInclusive,
DateTime? startTime,
long? epoch)
: base(eventHubClient, consumerGroupName, partitionId, startOffset, offsetInclusive, startTime, epoch)
{
string entityPath = eventHubClient.ConnectionStringBuilder.EntityPath;
this.Path = $"{entityPath}/ConsumerGroups/{consumerGroupName}/Partitions/{partitionId}";
this.ReceiveLinkManager = new FaultTolerantAmqpObject<ReceivingAmqpLink>(this.CreateLinkAsync, this.CloseSession);
this.receivePumpLock = new object();
this.clientLinkManager = new ActiveClientLinkManager((AmqpEventHubClient)this.EventHubClient);
}
string Path { get; }
FaultTolerantAmqpObject<ReceivingAmqpLink> ReceiveLinkManager { get; }
protected override Task OnCloseAsync()
{
// Close any ReceiveHandler (this is safe if there is none) and the ReceiveLinkManager in parallel.
this.ReceiveHandlerClose();
this.clientLinkManager.Close();
return this.ReceiveLinkManager.CloseAsync();
}
protected override async Task<IList<EventData>> OnReceiveAsync(int maxMessageCount, TimeSpan waitTime)
{
bool shouldRetry;
var timeoutHelper = new TimeoutHelper(waitTime, true);
do
{
shouldRetry = false;
try
{
try
{
ReceivingAmqpLink receiveLink = await this.ReceiveLinkManager.GetOrCreateAsync(timeoutHelper.RemainingTime()).ConfigureAwait(false);
IEnumerable<AmqpMessage> amqpMessages = null;
bool hasMessages = await Task.Factory.FromAsync(
(c, s) => receiveLink.BeginReceiveMessages(maxMessageCount, timeoutHelper.RemainingTime(), c, s),
a => receiveLink.EndReceiveMessages(a, out amqpMessages),
this).ConfigureAwait(false);
if (receiveLink.TerminalException != null)
{
throw receiveLink.TerminalException;
}
this.EventHubClient.RetryPolicy.ResetRetryCount(this.ClientId);
if (hasMessages && amqpMessages != null)
{
IList<EventData> eventDatas = null;
foreach (var amqpMessage in amqpMessages)
{
if (eventDatas == null)
{
eventDatas = new List<EventData>();
}
receiveLink.DisposeDelivery(amqpMessage, true, AmqpConstants.AcceptedOutcome);
eventDatas.Add(AmqpMessageConverter.AmqpMessageToEventData(amqpMessage));
}
return eventDatas;
}
}
catch (AmqpException amqpException)
{
throw AmqpExceptionHelper.ToMessagingContract(amqpException.Error);
}
}
catch (Exception ex)
{
// Evaluate retry condition?
this.EventHubClient.RetryPolicy.IncrementRetryCount(this.ClientId);
TimeSpan? retryInterval = this.EventHubClient.RetryPolicy.GetNextRetryInterval(this.ClientId, ex, timeoutHelper.RemainingTime());
if (retryInterval != null)
{
await Task.Delay(retryInterval.Value).ConfigureAwait(false);
shouldRetry = true;
}
else
{
// Handle System.TimeoutException explicitly.
// We don't really want to to throw TimeoutException on this call.
if (ex is TimeoutException)
{
break;
}
throw;
}
}
} while (shouldRetry);
// No messages to deliver.
return null;
}
protected override void OnSetReceiveHandler(IPartitionReceiveHandler newReceiveHandler)
{
lock (this.receivePumpLock)
{
if (newReceiveHandler != null && this.receiveHandler != null)
{
// Notify existing handler first (but don't wait).
this.receiveHandler.ProcessErrorAsync(new OperationCanceledException("New handler has registered for this receiver."));
}
this.receiveHandler = newReceiveHandler;
if (this.receiveHandler != null)
{
// We have a new receiveHandler, ensure pump is running.
if (this.receivePumpTask == null)
{
this.receivePumpCancellationSource = new CancellationTokenSource();
this.receivePumpTask = this.ReceivePumpAsync(this.receivePumpCancellationSource.Token);
}
}
else
{
// We have no receiveHandler, ensure pump is shut down.
if (this.receivePumpTask != null)
{
this.receivePumpCancellationSource.Cancel();
this.receivePumpCancellationSource.Dispose();
this.receivePumpCancellationSource = null;
this.receivePumpTask = null;
}
}
}
}
async Task<ReceivingAmqpLink> CreateLinkAsync(TimeSpan timeout)
{
var amqpEventHubClient = ((AmqpEventHubClient)this.EventHubClient);
var timeoutHelper = new TimeoutHelper(timeout);
AmqpConnection connection = await amqpEventHubClient.ConnectionManager.GetOrCreateAsync(timeoutHelper.RemainingTime()).ConfigureAwait(false);
// Authenticate over CBS
var cbsLink = connection.Extensions.Find<AmqpCbsLink>();
ICbsTokenProvider cbsTokenProvider = amqpEventHubClient.CbsTokenProvider;
Uri address = new Uri(amqpEventHubClient.ConnectionStringBuilder.Endpoint, this.Path);
string audience = address.AbsoluteUri;
string resource = address.AbsoluteUri;
var expiresAt = await cbsLink.SendTokenAsync(cbsTokenProvider, address, audience, resource, new[] { ClaimConstants.Listen }, timeoutHelper.RemainingTime()).ConfigureAwait(false);
AmqpSession session = null;
try
{
// Create our Session
var sessionSettings = new AmqpSessionSettings { Properties = new Fields() };
session = connection.CreateSession(sessionSettings);
await session.OpenAsync(timeoutHelper.RemainingTime()).ConfigureAwait(false);
FilterSet filterMap = null;
var filters = this.CreateFilters();
if (filters != null && filters.Count > 0)
{
filterMap = new FilterSet();
foreach (var filter in filters)
{
filterMap.Add(filter.DescriptorName, filter);
}
}
// Create our Link
var linkSettings = new AmqpLinkSettings();
linkSettings.Role = true;
linkSettings.TotalLinkCredit = (uint)this.PrefetchCount;
linkSettings.AutoSendFlow = this.PrefetchCount > 0;
linkSettings.AddProperty(AmqpClientConstants.EntityTypeName, (int)MessagingEntityType.ConsumerGroup);
linkSettings.Source = new Source { Address = address.AbsolutePath, FilterSet = filterMap };
linkSettings.Target = new Target { Address = this.ClientId };
linkSettings.SettleType = SettleMode.SettleOnSend;
if (this.Epoch.HasValue)
{
linkSettings.AddProperty(AmqpClientConstants.AttachEpoch, this.Epoch.Value);
}
var link = new ReceivingAmqpLink(linkSettings);
linkSettings.LinkName = $"{amqpEventHubClient.ContainerId};{connection.Identifier}:{session.Identifier}:{link.Identifier}";
link.AttachTo(session);
await link.OpenAsync(timeoutHelper.RemainingTime()).ConfigureAwait(false);
var activeClientLink = new ActiveClientLink(
link,
this.EventHubClient.ConnectionStringBuilder.Endpoint.AbsoluteUri, // audience
this.EventHubClient.ConnectionStringBuilder.Endpoint.AbsoluteUri, // endpointUri
new[] { ClaimConstants.Listen },
true,
expiresAt);
this.clientLinkManager.SetActiveLink(activeClientLink);
return link;
}
catch
{
// Cleanup any session (and thus link) in case of exception.
session?.Abort();
throw;
}
}
void CloseSession(ReceivingAmqpLink link)
{
link.Session.SafeClose();
}
IList<AmqpDescribed> CreateFilters()
{
if (string.IsNullOrWhiteSpace(this.StartOffset) && !this.StartTime.HasValue)
{
return null;
}
List<AmqpDescribed> filterMap = new List<AmqpDescribed>();
if (!string.IsNullOrWhiteSpace(this.StartOffset) || this.StartTime.HasValue)
{
// In the case of DateTime, we want to be amqp-compliant so
// we should transmit the DateTime in a amqp-timestamp format,
// which is defined as "64-bit two's-complement integer representing milliseconds since the unix epoch"
// ref: http://docs.oasis-open.org/amqp/core/v1.0/amqp-core-complete-v1.0.pdf
string sqlExpression = !string.IsNullOrWhiteSpace(this.StartOffset) ?
this.OffsetInclusive ?
string.Format(CultureInfo.InvariantCulture, AmqpClientConstants.FilterInclusiveOffsetFormatString, this.StartOffset) :
string.Format(CultureInfo.InvariantCulture, AmqpClientConstants.FilterOffsetFormatString, this.StartOffset) :
string.Format(CultureInfo.InvariantCulture, AmqpClientConstants.FilterReceivedAtFormatString, TimeStampEncodingGetMilliseconds(this.StartTime.Value));
filterMap.Add(new AmqpSelectorFilter(sqlExpression));
}
return filterMap;
}
// This is equivalent to Microsoft.Azure.Amqp's internal API TimeStampEncoding.GetMilliseconds
static long TimeStampEncodingGetMilliseconds(DateTime value)
{
DateTime utcValue = value.ToUniversalTime();
double milliseconds = (utcValue - AmqpConstants.StartOfEpoch).TotalMilliseconds;
return (long)milliseconds;
}
async Task ReceivePumpAsync(CancellationToken cancellationToken)
{
try
{
// Loop until pump is shutdown or an error is hit.
while (!cancellationToken.IsCancellationRequested)
{
IEnumerable<EventData> receivedEvents;
try
{
int batchSize;
lock (this.receivePumpLock)
{
if (this.receiveHandler == null)
{
// Pump has been shutdown, nothing more to do.
return;
}
batchSize = receiveHandler.MaxBatchSize;
}
receivedEvents = await this.ReceiveAsync(batchSize);
}
catch (Exception e)
{
EventHubsEventSource.Log.ReceiveHandlerExitingWithError(this.ClientId, this.PartitionId, e.Message);
await this.ReceiveHandlerProcessErrorAsync(e).ConfigureAwait(false);
break;
}
try
{
await this.ReceiveHandlerProcessEventsAsync(receivedEvents).ConfigureAwait(false);
}
catch (Exception userCodeError)
{
EventHubsEventSource.Log.ReceiveHandlerExitingWithError(this.ClientId, this.PartitionId, userCodeError.Message);
await this.ReceiveHandlerProcessErrorAsync(userCodeError).ConfigureAwait(false);
break;
}
}
}
catch (Exception ex)
{
// This should never throw
EventHubsEventSource.Log.ReceiveHandlerExitingWithError(this.ClientId, this.PartitionId, ex.Message);
Environment.FailFast(ex.ToString());
}
this.ReceiveHandlerClose();
}
// Encapsulates taking the receivePumpLock, checking this.receiveHandler for null,
// calls this.receiveHandler.CloseAsync (starting this operation inside the receivePumpLock).
void ReceiveHandlerClose()
{
lock (this.receivePumpLock)
{
if (this.receiveHandler != null)
{
if (this.receivePumpTask != null)
{
this.receivePumpCancellationSource.Cancel();
this.receivePumpCancellationSource.Dispose();
this.receivePumpCancellationSource = null;
this.receivePumpTask = null;
}
this.receiveHandler = null;
}
}
}
// Encapsulates taking the receivePumpLock, checking this.receiveHandler for null,
// calls this.receiveHandler.ProcessErrorAsync (starting this operation inside the receivePumpLock).
Task ReceiveHandlerProcessErrorAsync(Exception error)
{
Task processErrorTask = null;
lock (this.receivePumpLock)
{
if (this.receiveHandler != null)
{
processErrorTask = this.receiveHandler.ProcessErrorAsync(error);
}
}
return processErrorTask ?? Task.FromResult(0);
}
// Encapsulates taking the receivePumpLock, checking this.receiveHandler for null,
// calls this.receiveHandler.ProcessErrorAsync (starting this operation inside the receivePumpLock).
Task ReceiveHandlerProcessEventsAsync(IEnumerable<EventData> eventDatas)
{
Task processEventsTask = null;
lock (this.receivePumpLock)
{
if (this.receiveHandler != null)
{
processEventsTask = this.receiveHandler.ProcessEventsAsync(eventDatas);
}
}
return processEventsTask ?? Task.FromResult(0);
}
}
}