-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDependencyInjectionQueueProcessor.cs
More file actions
233 lines (205 loc) · 7.93 KB
/
DependencyInjectionQueueProcessor.cs
File metadata and controls
233 lines (205 loc) · 7.93 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
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file, You can obtain one at https://opensource.org/licenses/MIT.
// Copyright (C) Leszek Pomianowski and ReflectionEventing Contributors.
// All Rights Reserved.
using ReflectionEventing.DependencyInjection.Configuration;
using ReflectionEventing.Queues;
namespace ReflectionEventing.DependencyInjection.Services;
public class DependencyInjectionQueueProcessor(
IEventsQueue queue,
IServiceScopeFactory scopeFactory,
QueueProcessorOptionsProvider options,
ILogger<DependencyInjectionQueueProcessor> logger
) : BackgroundService
{
private static readonly ActivitySource ActivitySource = new(
"ReflectionEventing.QueueProcessor"
);
private static readonly Meter Meter = new("ReflectionEventing.QueueProcessor");
private static readonly Counter<long> EventsProcessed = Meter.CreateCounter<long>(
"bus.processed"
);
private static readonly Counter<long> EventsFailed = Meter.CreateCounter<long>("bus.failed");
private readonly TimeSpan tickRate = options.Value.QueueTickRate;
private readonly TimeSpan errorTickRate = options.Value.ErrorTickRate;
private readonly SemaphoreSlim semaphore = new(options.Value.ConcurrentTaskLimit);
protected override async Task ExecuteAsync(CancellationToken cancellationToken)
{
await BackgroundProcessing(cancellationToken);
}
protected virtual async Task BackgroundProcessing(CancellationToken cancellationToken)
{
while (!cancellationToken.IsCancellationRequested)
{
try
{
await ProcessQueueAsync(cancellationToken);
await Task.Delay(tickRate, cancellationToken);
}
catch (Exception e)
{
logger.LogError(e, "Error occurred during queue processing");
await Task.Delay(errorTickRate, cancellationToken);
}
}
}
protected virtual async Task ProcessQueueAsync(CancellationToken cancellationToken)
{
using Activity? activity = ActivitySource.StartActivity(ActivityKind.Consumer);
#if NET8_0_OR_GREATER
await using AsyncServiceScope scope = scopeFactory.CreateAsyncScope();
#else
using IServiceScope? scope = scopeFactory.CreateScope();
#endif
#if NET8_0_OR_GREATER
IConsumerProvider consumerProvider = options.ServiceKey is null
? scope.ServiceProvider.GetRequiredService<IConsumerProvider>()
: scope.ServiceProvider.GetRequiredKeyedService<IConsumerProvider>(options.ServiceKey);
IConsumerTypesProvider consumerTypesProvider = options.ServiceKey is null
? scope.ServiceProvider.GetRequiredService<IConsumerTypesProvider>()
: scope.ServiceProvider.GetRequiredKeyedService<IConsumerTypesProvider>(
options.ServiceKey
);
#else
IConsumerProvider consumerProvider =
scope.ServiceProvider.GetRequiredService<IConsumerProvider>();
IConsumerTypesProvider consumerTypesProvider =
scope.ServiceProvider.GetRequiredService<IConsumerTypesProvider>();
#endif
await foreach (object @event in queue.ReadEventsAsync(cancellationToken))
{
await ProcessEventAsync(
@event,
consumerProvider,
consumerTypesProvider,
activity,
cancellationToken
);
}
}
private async Task ProcessEventAsync(
object @event,
IConsumerProvider consumerProvider,
IConsumerTypesProvider consumerTypesProvider,
Activity? activity,
CancellationToken cancellationToken
)
{
Type eventType = @event.GetType();
IEnumerable<Type> consumerTypes = consumerTypesProvider.GetConsumerTypes(eventType);
foreach (Type consumerType in consumerTypes)
{
foreach (object? consumer in consumerProvider.GetConsumers(consumerType))
{
if (consumer is null)
{
return;
}
if (options.Value.QueueMode == ProcessingMode.Sequential)
{
await ExecuteConsumerAsync(
@event,
consumerType,
eventType,
consumer,
activity,
cancellationToken
);
}
else if (options.Value.QueueMode == ProcessingMode.Parallel)
{
await semaphore.WaitAsync(cancellationToken);
_ = Task.Run(
async () =>
{
try
{
await ExecuteConsumerAsync(
@event,
consumerType,
eventType,
consumer,
activity,
cancellationToken
);
}
catch (Exception e)
{
logger.LogError(e, "Error occurred during consumer execution");
}
finally
{
semaphore.Release();
}
},
cancellationToken
);
}
else
{
throw new InvalidOperationException(
"Invalid queue processing mode. Must be either Sequential or Parallel."
);
}
}
}
EventsProcessed.Add(1, new KeyValuePair<string, object?>("message_type", eventType.Name));
}
private async Task ExecuteConsumerAsync(
object @event,
Type consumerType,
Type eventType,
object consumer,
Activity? activity,
CancellationToken cancellationToken
)
{
MethodInfo? consumeMethod = consumerType.GetMethod(
"ConsumeAsync",
[@event.GetType(), typeof(CancellationToken)]
);
if (consumeMethod != null)
{
try
{
await (Task)consumeMethod.Invoke(consumer, [@event, cancellationToken])!;
}
catch (Exception e)
{
//activity?.AddException(e);
activity?.SetStatus(ActivityStatusCode.Error);
logger.LogError(
new EventId(75001, "ReflectionEventingQueueProcessingFailed"),
e,
"Error processing event of type {EventName}",
@event.GetType().Name
);
if (options.Value.UseErrorQueue)
{
queue.EnqueueError(
new FailedEvent
{
Data = @event,
Exception = e,
Timestamp = DateTimeOffset.UtcNow,
FailedConsumer = consumerType,
}
);
}
EventsFailed.Add(
1,
new KeyValuePair<string, object?>("message_type", eventType.Name)
);
}
}
else
{
logger.LogError(
new EventId(75002, "ReflectionEventingConsumerMissing"),
"ConsumeAsync method not found on consumer {ConsumerType} for event type {EventName}",
consumerType.Name,
@event.GetType().Name
);
}
}
}