-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathAzureServiceBusConsumerClient.cs
More file actions
308 lines (253 loc) · 12.1 KB
/
AzureServiceBusConsumerClient.cs
File metadata and controls
308 lines (253 loc) · 12.1 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
// Copyright (c) .NET Core Community. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Azure.Messaging.ServiceBus;
using Azure.Messaging.ServiceBus.Administration;
using DotNetCore.CAP.AzureServiceBus.Helpers;
using DotNetCore.CAP.Messages;
using DotNetCore.CAP.Transport;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
namespace DotNetCore.CAP.AzureServiceBus;
internal sealed class AzureServiceBusConsumerClient : IConsumerClient
{
private readonly AzureServiceBusOptions _asbOptions;
private readonly SemaphoreSlim _connectionLock = new(1, 1);
private readonly ILogger _logger;
private readonly IServiceProvider _serviceProvider;
private readonly string _subscriptionName;
private readonly byte _groupConcurrent;
private readonly SemaphoreSlim _semaphore;
private ServiceBusAdministrationClient? _administrationClient;
private ServiceBusClient? _serviceBusClient;
private ServiceBusProcessorFacade? _serviceBusProcessor;
public AzureServiceBusConsumerClient(
ILogger logger,
string subscriptionName,
byte groupConcurrent,
IOptions<AzureServiceBusOptions> options,
IServiceProvider serviceProvider)
{
_logger = logger;
_subscriptionName = subscriptionName;
_groupConcurrent = groupConcurrent;
_semaphore = new SemaphoreSlim(groupConcurrent);
_serviceProvider = serviceProvider;
_asbOptions = options.Value ?? throw new ArgumentNullException(nameof(options));
}
public Func<TransportMessage, object?, Task>? OnMessageCallback { get; set; }
public Action<LogMessageEventArgs>? OnLogCallback { get; set; }
public BrokerAddress BrokerAddress => ServiceBusHelpers.GetBrokerAddress(_asbOptions.ConnectionString, _asbOptions.Namespace);
public async Task SubscribeAsync(IEnumerable<string> topics)
{
if (topics == null) throw new ArgumentNullException(nameof(topics));
await ConnectAsync();
if (!_asbOptions.AutoProvision)
return;
topics = topics.Concat(_asbOptions!.SQLFilters?.Select(o => o.Key) ?? []);
var allRules = _administrationClient!.GetRulesAsync(_asbOptions!.TopicPath, _subscriptionName).ToBlockingEnumerable();
var allRuleNames = allRules.Select(o => o.Name);
foreach (var newRule in topics.Except(allRuleNames))
{
var isSqlRule = _asbOptions.SQLFilters?.FirstOrDefault(o => o.Key == newRule).Value is not null;
RuleFilter? currentRuleToAdd = default;
if (isSqlRule)
{
var sqlExpression = _asbOptions.SQLFilters?.FirstOrDefault(o => o.Key == newRule).Value;
currentRuleToAdd = new SqlRuleFilter(sqlExpression);
}
else
{
var correlationRule = new CorrelationRuleFilter
{
Subject = newRule
};
foreach (var correlationHeader in _asbOptions.DefaultCorrelationHeaders)
{
correlationRule.ApplicationProperties.Add(correlationHeader.Key, correlationHeader.Value);
}
currentRuleToAdd = correlationRule;
}
await _administrationClient.CreateRuleAsync(_asbOptions.TopicPath, _subscriptionName,
new CreateRuleOptions
{
Name = newRule,
Filter = currentRuleToAdd
});
_logger.LogInformation("Azure Service Bus add rule: {RuleName}", newRule);
}
foreach (var oldRule in allRuleNames.Except(topics))
{
await _administrationClient.DeleteRuleAsync(_asbOptions.TopicPath, _subscriptionName, oldRule);
_logger.LogInformation("Azure Service Bus remove rule: {RuleName}", oldRule);
}
}
public async Task ListeningAsync(TimeSpan timeout, CancellationToken cancellationToken)
{
await ConnectAsync();
if (_serviceBusProcessor!.IsSessionProcessor)
{
_serviceBusProcessor!.ProcessSessionMessageAsync += _serviceBusProcessor_ProcessSessionMessageAsync;
}
else
{
_serviceBusProcessor!.ProcessMessageAsync += _serviceBusProcessor_ProcessMessageAsync;
}
_serviceBusProcessor.ProcessErrorAsync += _serviceBusProcessor_ProcessErrorAsync;
await _serviceBusProcessor.StartProcessingAsync(cancellationToken);
}
public async Task CommitAsync(object? sender)
{
var commitInput = (AzureServiceBusConsumerCommitInput)sender!;
if (!_serviceBusProcessor!.AutoCompleteMessages)
await commitInput.CompleteMessageAsync();
_semaphore.Release();
}
public async Task RejectAsync(object? sender)
{
var commitInput = (AzureServiceBusConsumerCommitInput)sender!;
await commitInput.AbandonMessageAsync();
_semaphore.Release();
}
public async ValueTask DisposeAsync()
{
if (!_serviceBusProcessor!.IsProcessing)
await _serviceBusProcessor.DisposeAsync();
}
private Task _serviceBusProcessor_ProcessErrorAsync(ProcessErrorEventArgs args)
{
var exceptionMessage =
$"- Identifier: {args.Identifier}" + Environment.NewLine +
$"- Entity Path: {args.EntityPath}" + Environment.NewLine +
$"- Executing ErrorSource: {args.ErrorSource}" + Environment.NewLine +
$"- Exception: {args.Exception}";
var logArgs = new LogMessageEventArgs
{
LogType = MqLogType.ExceptionReceived,
Reason = exceptionMessage
};
OnLogCallback!(logArgs);
return Task.CompletedTask;
}
private async Task _serviceBusProcessor_ProcessMessageAsync(ProcessMessageEventArgs arg)
{
var context = ConvertMessage(arg.Message);
if (_groupConcurrent > 0)
{
await _semaphore.WaitAsync();
_ = Task.Run(() => OnMessageCallback!(context, new AzureServiceBusConsumerCommitInput(arg))).ConfigureAwait(false);
}
else
{
await OnMessageCallback!(context, new AzureServiceBusConsumerCommitInput(arg));
}
}
private async Task _serviceBusProcessor_ProcessSessionMessageAsync(ProcessSessionMessageEventArgs arg)
{
var context = ConvertMessage(arg.Message);
await OnMessageCallback!(context, new AzureServiceBusConsumerCommitInput(arg));
}
public async Task ConnectAsync()
{
if (_serviceBusProcessor != null) return;
await _connectionLock.WaitAsync();
try
{
if (_serviceBusProcessor == null)
{
_serviceBusClient = _asbOptions.TokenCredential is not null ?
new ServiceBusClient(_asbOptions.Namespace, _asbOptions.TokenCredential) :
new ServiceBusClient(_asbOptions.ConnectionString);
if (_asbOptions.AutoProvision)
{
if (_asbOptions.TokenCredential != null)
{
_administrationClient =
new ServiceBusAdministrationClient(_asbOptions.Namespace, _asbOptions.TokenCredential);
}
else
{
_administrationClient = new ServiceBusAdministrationClient(_asbOptions.ConnectionString);
}
var topicConfigs =
_asbOptions.CustomProducers.Select(producer =>
(topicPaths: producer.TopicPath, subscribe: producer.CreateSubscription))
.Append((topicPaths: _asbOptions.TopicPath, subscribe: true))
.GroupBy(n => n.topicPaths, StringComparer.OrdinalIgnoreCase)
.Select(n => (topicPaths: n.Key, subscribe: n.Max(o => o.subscribe)));
foreach (var (topicPath, subscribe) in topicConfigs)
{
if (!await _administrationClient.TopicExistsAsync(topicPath))
{
await _administrationClient.CreateTopicAsync(topicPath);
_logger.LogInformation("Azure Service Bus created topic: {TopicPath}", topicPath);
}
if (subscribe && !await _administrationClient.SubscriptionExistsAsync(topicPath, _subscriptionName))
{
var subscriptionDescription =
new CreateSubscriptionOptions(topicPath, _subscriptionName)
{
RequiresSession = _asbOptions.EnableSessions,
AutoDeleteOnIdle = _asbOptions.SubscriptionAutoDeleteOnIdle,
LockDuration = _asbOptions.SubscriptionMessageLockDuration,
DefaultMessageTimeToLive = _asbOptions.SubscriptionDefaultMessageTimeToLive,
MaxDeliveryCount = _asbOptions.SubscriptionMaxDeliveryCount,
};
await _administrationClient.CreateSubscriptionAsync(subscriptionDescription);
_logger.LogInformation(
$"Azure Service Bus topic {topicPath} created subscription: {_subscriptionName}");
}
}
}
_serviceBusProcessor = !_asbOptions.EnableSessions
? new ServiceBusProcessorFacade(
serviceBusProcessor: _serviceBusClient.CreateProcessor(_asbOptions.TopicPath,
_subscriptionName,
new ServiceBusProcessorOptions
{
AutoCompleteMessages = _asbOptions.AutoCompleteMessages,
MaxConcurrentCalls = _asbOptions.MaxConcurrentCalls,
MaxAutoLockRenewalDuration = _asbOptions.MaxAutoLockRenewalDuration,
}))
: new ServiceBusProcessorFacade(
serviceBusSessionProcessor: _serviceBusClient.CreateSessionProcessor(_asbOptions.TopicPath,
_subscriptionName,
new ServiceBusSessionProcessorOptions
{
AutoCompleteMessages = _asbOptions.AutoCompleteMessages,
MaxConcurrentCallsPerSession = _asbOptions.MaxConcurrentCalls,
MaxAutoLockRenewalDuration = _asbOptions.MaxAutoLockRenewalDuration,
MaxConcurrentSessions = _asbOptions.MaxConcurrentSessions,
SessionIdleTimeout = _asbOptions.SessionIdleTimeout,
}));
}
}
finally
{
_connectionLock.Release();
}
}
#region private methods
private TransportMessage ConvertMessage(ServiceBusReceivedMessage message)
{
var headers = message.ApplicationProperties
.ToDictionary(x => x.Key, y => y.Value?.ToString());
headers[Headers.Group] = _subscriptionName;
if (_asbOptions.CustomHeadersBuilder != null)
{
var customHeaders = _asbOptions.CustomHeadersBuilder(message, _serviceProvider);
foreach (var customHeader in customHeaders)
{
var added = headers.TryAdd(customHeader.Key, customHeader.Value);
if (!added)
_logger.LogWarning("Not possible to add the custom header {Header}. A value with the same key already exists in the Message headers.",customHeader.Key);
}
}
return new TransportMessage(headers, message.Body);
}
#endregion private methods
}