-
Notifications
You must be signed in to change notification settings - Fork 10
/
MessageProcessor.cs
406 lines (343 loc) · 16.2 KB
/
MessageProcessor.cs
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
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
namespace Opc.Ua.Cloud.Publisher
{
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Threading;
using Opc.Ua.Cloud.Publisher.Interfaces;
using Opc.Ua.Cloud.Publisher.Models;
using System.Linq;
public class MessageProcessor : IMessageProcessor
{
private static ulong _messageID = 0;
private bool _batchEmpty = true;
private bool _singleMessageSend = false;
private int _messageClosingParenthesisSize = 2;
DateTime _nextSendTime = DateTime.UtcNow;
private Queue<long> _lastNotificationInBatch = new Queue<long>();
private int _notificationsInBatch = 0;
MemoryStream _batchBuffer = new MemoryStream();
private static BlockingCollection<MessageProcessorModel> _monitoredItemsDataQueue;
private Dictionary<ushort, string> _metadataMessages = new Dictionary<ushort, string>();
private object _metadataMessagesLock = new object();
private Timer _metadataTimer;
private Timer _statusTimer;
private bool _isRunning = false;
private static ILogger _logger;
private readonly IMessageEncoder _encoder;
private readonly IMessagePublisher _sink;
public MessageProcessor(
IMessageEncoder encoder,
ILoggerFactory loggerFactory,
IMessagePublisher sink)
{
_logger = loggerFactory.CreateLogger("MessageProcessor");
_encoder = encoder;
_sink = sink;
}
public void ClearMetadataMessageCache()
{
lock (_metadataMessagesLock)
{
_metadataMessages.Clear();
}
}
public void Dispose()
{
_batchBuffer.Dispose();
if (_monitoredItemsDataQueue != null)
{
_monitoredItemsDataQueue.Dispose();
}
}
public static void Enqueue(MessageProcessorModel json)
{
if (_monitoredItemsDataQueue != null)
{
if (_monitoredItemsDataQueue.TryAdd(json) == false)
{
Diagnostics.Singleton.Info.EnqueueFailureCount++;
// log an error message for every 10K messages lost
if (Diagnostics.Singleton.Info.EnqueueFailureCount % 10000 == 0)
{
_logger.LogError($"The internal monitored item message queue is above its capacity of {_monitoredItemsDataQueue.BoundedCapacity}. We have lost {Diagnostics.Singleton.Info.EnqueueFailureCount} monitored item notifications so far.");
}
}
else
{
Diagnostics.Singleton.Info.EnqueueCount++;
Diagnostics.Singleton.Info.MonitoredItemsQueueCount = _monitoredItemsDataQueue.Count;
}
}
}
public void Run(CancellationToken cancellationToken = default)
{
if (_isRunning)
{
_logger.LogError("Message Processor is already running.");
return;
}
Init();
_isRunning = true;
while (true)
{
try
{
// read the next message from our queue
MessageProcessorModel messageData = new();
int timeout = CalculateBatchTimeout(cancellationToken);
bool gotItem = _monitoredItemsDataQueue.TryTake(out messageData, timeout, cancellationToken);
if (!gotItem)
{
// timeout or shutdown case (cancellation)
if (cancellationToken.IsCancellationRequested)
{
_logger.LogInformation($"Cancellation requested.");
_monitoredItemsDataQueue.CompleteAdding();
break;
}
else
{
// timeout (i.e. send interval reached). Check if there is something in the buffer and send it now
_logger.LogTrace($"Send interval reached at {_nextSendTime}");
if (!_batchEmpty)
{
// send what we have so far
SendBatch(FinishBatch());
continue;
}
else
{
// nothing to send, reset the clock and keep waiting
_logger.LogTrace("Adding {seconds} seconds to current nextSendTime {nextSendTime}...", Settings.Instance.DefaultSendIntervalSeconds, _nextSendTime);
_nextSendTime += TimeSpan.FromSeconds(Settings.Instance.DefaultSendIntervalSeconds);
continue;
}
}
}
else
{
Diagnostics.Singleton.Info.MonitoredItemsQueueCount = _monitoredItemsDataQueue.Count;
}
// check if we should send the new item straight away (single message send case or if there are events)
if (_singleMessageSend || (messageData.EventValues.Count > 0))
{
BatchMessage(JsonEncodeMessage(messageData));
SendBatch(FinishBatch());
}
else
{
// batch message instead
string jsonMessage = JsonEncodeMessage(messageData);
int jsonMessageSize = Encoding.UTF8.GetByteCount(jsonMessage);
uint hubMessageBufferSize = Settings.Instance.BrokerMessageSize > 0 ? Settings.Instance.BrokerMessageSize : Settings.HubMessageSizeMax;
int encodedMessagePropertiesLengthMax = 512;
// reduce the message payload by the space occupied by the message properties
hubMessageBufferSize -= (uint)encodedMessagePropertiesLengthMax;
// check if the message will fit into our batch in principle
if (jsonMessageSize > hubMessageBufferSize)
{
_logger.LogError($"Configured hub message size {hubMessageBufferSize} too small to even fit the generated telemetry message of {jsonMessageSize}. Please adjust. The telemetry message will be discarded!");
Diagnostics.Singleton.Info.TooLargeCount++;
continue;
}
// check if the message still fits into out batch, otherwise send what we have so far and start a new batch with the message
if ((_batchBuffer.Position + jsonMessageSize + _messageClosingParenthesisSize) < hubMessageBufferSize)
{
BatchMessage(jsonMessage);
}
else
{
SendBatch(FinishBatch());
BatchMessage(jsonMessage);
}
}
}
catch (Exception ex)
{
if (ex is OperationCanceledException)
{
throw;
}
else
{
_logger.LogError(ex, "Error while processing messages!");
}
}
}
}
private void Init()
{
_logger.LogInformation($"Message processing configured with a send interval of {Settings.Instance.DefaultSendIntervalSeconds} sec and a message buffer size of {Settings.Instance.BrokerMessageSize} bytes.");
// create the queue for monitored items
_monitoredItemsDataQueue = new BlockingCollection<MessageProcessorModel>((int)Settings.Instance.InternalQueueCapacity);
_singleMessageSend = Settings.Instance.DefaultSendIntervalSeconds == 0 && Settings.Instance.BrokerMessageSize == 0;
InitBatch();
// init our send time
_nextSendTime = DateTime.UtcNow + TimeSpan.FromSeconds(Settings.Instance.DefaultSendIntervalSeconds);
if (Settings.Instance.MetadataSendInterval != 0)
{
_metadataTimer = new Timer(SendMetadataOnTimer, null, (int)Settings.Instance.MetadataSendInterval * 1000, (int)Settings.Instance.MetadataSendInterval * 1000);
}
if (Settings.Instance.SendUAStatus)
{
_statusTimer = new Timer(SendStatusOnTimer, null, (int)Settings.Instance.DiagnosticsLoggingInterval * 1000, (int)Settings.Instance.DiagnosticsLoggingInterval * 1000);
}
}
private void BatchMessage(string jsonMessage)
{
_batchBuffer.Write(Encoding.UTF8.GetBytes(jsonMessage));
_batchBuffer.Write(Encoding.UTF8.GetBytes(","));
_logger.LogDebug($"Batching message with size {Encoding.UTF8.GetByteCount(jsonMessage)}, size is now {_batchBuffer.Position - 1}.");
_batchEmpty = false;
_notificationsInBatch++;
}
private byte[] FinishBatch()
{
// remove the trailing comma and finish the JSON message
_batchBuffer.Position -= 1;
_batchBuffer.Write(Encoding.UTF8.GetBytes("]}"));
_lastNotificationInBatch.Enqueue(_notificationsInBatch);
// calc the average for the last 100 batches
if (_lastNotificationInBatch.Count > 100)
{
_lastNotificationInBatch.Dequeue();
}
long sum = 0;
foreach (long notificationInBatch in _lastNotificationInBatch)
{
sum += notificationInBatch;
}
Diagnostics.Singleton.Info.AverageNotificationsInBrokerMessage = sum / _lastNotificationInBatch.Count;
return _batchBuffer.ToArray();
}
private void SendBatch(byte[] bytesToSend)
{
if (_sink.SendMessage(bytesToSend))
{
_logger.LogDebug($"Sent {bytesToSend.Length} bytes to broker!");
}
// reset our batch
InitBatch();
// reset our send time
_nextSendTime = DateTime.UtcNow + TimeSpan.FromSeconds(Settings.Instance.DefaultSendIntervalSeconds);
}
private void SendStatusOnTimer(object state)
{
// stop the timer while we're sending
_statusTimer.Change(Timeout.Infinite, Timeout.Infinite);
using (MemoryStream buffer = new MemoryStream())
{
buffer.Write(Encoding.UTF8.GetBytes(_encoder.EncodeStatus(_messageID++)));
if (_sink.SendMetadata(buffer.ToArray()))
{
_logger.LogDebug($"Sent status message to broker!");
}
}
// restart the timer
_statusTimer.Change((int)Settings.Instance.DiagnosticsLoggingInterval * 1000, (int)Settings.Instance.DiagnosticsLoggingInterval * 1000);
}
private void SendMetadataOnTimer(object state)
{
// stop the timer while we're sending
_metadataTimer.Change(Timeout.Infinite, Timeout.Infinite);
if (_metadataMessages.Count > 0)
{
KeyValuePair<ushort, string>[] currentMessages = null;
lock (_metadataMessagesLock)
{
currentMessages = _metadataMessages.ToArray();
}
if (currentMessages != null)
{
foreach (KeyValuePair<ushort, string> metadataMessage in currentMessages)
{
using (MemoryStream buffer = new MemoryStream())
{
buffer.Write(Encoding.UTF8.GetBytes(_encoder.EncodeHeader(_messageID++, true)));
buffer.Write(Encoding.UTF8.GetBytes(","));
buffer.Write(Encoding.UTF8.GetBytes(metadataMessage.Value));
if (_sink.SendMetadata(buffer.ToArray()))
{
_logger.LogDebug($"Sent {_batchBuffer.Length} metadata bytes to broker!");
}
}
}
}
}
// restart the timer
_metadataTimer.Change((int)Settings.Instance.MetadataSendInterval * 1000, (int)Settings.Instance.MetadataSendInterval * 1000);
}
private string JsonEncodeMessage(MessageProcessorModel messageData)
{
ushort hash;
string jsonMessage = _encoder.EncodePayload(messageData, out hash);
if (Settings.Instance.SendUAMetadata)
{
string metadataMessage = _encoder.EncodeMetadata(messageData);
if (!_metadataMessages.ContainsKey(hash))
{
lock (_metadataMessagesLock)
{
_metadataMessages.Add(hash, metadataMessage);
}
using (MemoryStream buffer = new MemoryStream())
{
buffer.Write(Encoding.UTF8.GetBytes(_encoder.EncodeHeader(_messageID++, true)));
buffer.Write(Encoding.UTF8.GetBytes(","));
buffer.Write(Encoding.UTF8.GetBytes(metadataMessage));
if (_sink.SendMetadata(buffer.ToArray()))
{
_logger.LogDebug($"Sent {_batchBuffer.Length} metadata bytes to broker!");
}
}
}
}
Diagnostics.Singleton.Info.NumberOfEvents++;
return jsonMessage;
}
private int CalculateBatchTimeout(CancellationToken cancellationToken = default)
{
int timeout;
// sanity check the send interval
if (Settings.Instance.DefaultSendIntervalSeconds > 0)
{
TimeSpan timeTillNextSend = _nextSendTime.Subtract(DateTime.UtcNow);
if (timeTillNextSend < TimeSpan.Zero)
{
Diagnostics.Singleton.Info.MissedSendIntervalCount++;
// no wait if the send interval was missed
timeTillNextSend = TimeSpan.Zero;
}
long millisLong = (long)timeTillNextSend.TotalMilliseconds;
if (millisLong < 0 || millisLong > int.MaxValue)
{
timeout = 0;
}
else
{
timeout = (int)millisLong;
}
}
else
{
// no wait if shutdown is requested, else infinite wait if send interval is not set
timeout = cancellationToken.IsCancellationRequested ? 0 : Timeout.Infinite;
}
return timeout;
}
private void InitBatch()
{
_batchEmpty = true;
_batchBuffer.Position = 0;
_batchBuffer.SetLength(0);
_notificationsInBatch = 0;
string pubSubJSONNetworkMessageHeader = _encoder.EncodeHeader(_messageID++);
_batchBuffer.Write(Encoding.UTF8.GetBytes(pubSubJSONNetworkMessageHeader));
}
}
}