forked from barnstee/UA-CloudPublisher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MonitoredItemNotification.cs
380 lines (323 loc) · 14.5 KB
/
MonitoredItemNotification.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
namespace Opc.Ua.Cloud.Publisher
{
using Microsoft.Extensions.Logging;
using Opc.Ua;
using Opc.Ua.Client;
using System;
using System.Collections.Generic;
using Opc.Ua.Cloud.Publisher.Interfaces;
using Opc.Ua.Cloud.Publisher.Models;
public class MonitoredItemNotification : IMessageSource
{
private readonly ILogger _logger;
public Dictionary<string, bool> SkipFirst { get; set; } = new Dictionary<string, bool>();
private NodeId[] KnownEventTypes = new NodeId[]
{
ObjectTypeIds.BaseEventType,
ObjectTypeIds.ConditionType,
ObjectTypeIds.DialogConditionType,
ObjectTypeIds.AlarmConditionType,
ObjectTypeIds.ExclusiveLimitAlarmType,
ObjectTypeIds.NonExclusiveLimitAlarmType,
ObjectTypeIds.AuditEventType,
ObjectTypeIds.AuditUpdateMethodEventType
};
public MonitoredItemNotification(ILoggerFactory loggerFactory)
{
_logger = loggerFactory.CreateLogger("MonitoredItemNotification");
}
public void EventNotificationHandler(MonitoredItem monitoredItem, MonitoredItemNotificationEventArgs e)
{
try
{
EventFieldList notification = e.NotificationValue as EventFieldList;
if (notification == null)
{
return;
}
NodeId eventTypeId = FindEventType(monitoredItem, notification);
if (NodeId.IsNull(eventTypeId))
{
return;
}
if (eventTypeId == ObjectTypeIds.RefreshStartEventType)
{
return;
}
if (eventTypeId == ObjectTypeIds.RefreshEndEventType)
{
return;
}
ConditionState condition = ConstructEvent(
(Session)monitoredItem.Subscription.Session,
monitoredItem,
notification,
new Dictionary<NodeId, NodeId>()) as ConditionState;
if (condition == null)
{
return;
}
MessageProcessorModel messageData = new()
{
ExpandedNodeId = NodeId.ToExpandedNodeId(monitoredItem.ResolvedNodeId, monitoredItem.Subscription.Session.NamespaceUris).ToString(),
ApplicationUri = monitoredItem.Subscription.Session.Endpoint.Server.ApplicationUri,
MessageContext = (ServiceMessageContext)monitoredItem.Subscription.Session.MessageContext
};
// Source
if (condition.SourceName != null)
{
EventValueModel eventValue = new EventValueModel()
{
Name = "Source",
Value = new DataValue(condition.SourceName.Value.ToString())
};
messageData.EventValues.Add(eventValue);
}
// Condition
if (condition.ConditionName != null)
{
EventValueModel eventValue = new EventValueModel()
{
Name = "Condition",
Value = new DataValue(condition.ConditionName.Value.ToString())
};
messageData.EventValues.Add(eventValue);
}
// Branch
if (condition.BranchId != null && !NodeId.IsNull(condition.BranchId.Value))
{
EventValueModel eventValue = new EventValueModel()
{
Name = "Branch",
Value = new DataValue(condition.BranchId.Value.ToString())
};
messageData.EventValues.Add(eventValue);
}
// Type
INode type = monitoredItem.Subscription.Session.NodeCache.Find(condition.TypeDefinitionId);
if (type != null)
{
EventValueModel eventValue = new EventValueModel()
{
Name = "Type",
Value = new DataValue(type.ToString() + " (" + NodeId.ToExpandedNodeId(new NodeId(type.NodeId.ToString()), monitoredItem.Subscription.Session.NamespaceUris).ToString() + ")")
};
messageData.EventValues.Add(eventValue);
}
// Severity
if (condition.Severity != null)
{
EventValueModel eventValue = new EventValueModel()
{
Name = "Severity",
Value = new DataValue(((EventSeverity)condition.Severity.Value).ToString())
};
messageData.EventValues.Add(eventValue);
}
// Time
if (condition.Time != null)
{
EventValueModel eventValue = new EventValueModel()
{
Name = "Time",
Value = new DataValue(condition.Time.Value.ToString())
};
messageData.EventValues.Add(eventValue);
}
// State
if (condition.EnabledState != null && condition.EnabledState.EffectiveDisplayName != null)
{
EventValueModel eventValue = new EventValueModel()
{
Name = "State",
Value = new DataValue(condition.EnabledState.EffectiveDisplayName.Value.ToString())
};
messageData.EventValues.Add(eventValue);
}
// Message
if (condition.Message != null)
{
EventValueModel eventValue = new EventValueModel()
{
Name = "Message",
Value = new DataValue(condition.Message.Value.ToString())
};
messageData.EventValues.Add(eventValue);
}
// Comment
if (condition.Comment != null)
{
EventValueModel eventValue = new EventValueModel()
{
Name = "Comment",
Value = new DataValue(condition.Comment.Value.ToString())
};
messageData.EventValues.Add(eventValue);
}
if (messageData.EventValues.Count > 0)
{
MessageProcessor.Enqueue(messageData);
}
}
catch (Exception ex)
{
_logger.LogError(ex, "Error processing monitored item notification");
}
}
private NodeId FindEventType(MonitoredItem monitoredItem, EventFieldList notification)
{
EventFilter filter = monitoredItem.Status.Filter as EventFilter;
if (filter != null)
{
for (int i = 0; i < filter.SelectClauses.Count; i++)
{
SimpleAttributeOperand clause = filter.SelectClauses[i];
if (clause.BrowsePath.Count == 1 && clause.BrowsePath[0] == BrowseNames.EventType)
{
return notification.EventFields[i].Value as NodeId;
}
}
}
return null;
}
private BaseEventState ConstructEvent(
Session session,
MonitoredItem monitoredItem,
EventFieldList notification,
Dictionary<NodeId, NodeId> eventTypeMappings)
{
// find the event type.
NodeId eventTypeId = FindEventType(monitoredItem, notification);
if (eventTypeId == null)
{
return null;
}
// look up the known event type.
NodeId knownTypeId = null;
if (!eventTypeMappings.TryGetValue(eventTypeId, out knownTypeId))
{
// check for a known type
for (int j = 0; j < KnownEventTypes.Length; j++)
{
if (KnownEventTypes[j] == eventTypeId)
{
knownTypeId = eventTypeId;
eventTypeMappings.Add(eventTypeId, eventTypeId);
break;
}
}
// browse for the supertypes of the event type.
if (knownTypeId == null)
{
ReferenceDescriptionCollection supertypes = UAClient.BrowseSuperTypes(session, eventTypeId, false);
// can't do anything with unknown types.
if (supertypes == null)
{
return null;
}
// find the first supertype that matches a known event type.
for (int i = 0; i < supertypes.Count; i++)
{
for (int j = 0; j < KnownEventTypes.Length; j++)
{
if (KnownEventTypes[j] == supertypes[i].NodeId)
{
knownTypeId = KnownEventTypes[j];
eventTypeMappings.Add(eventTypeId, knownTypeId);
break;
}
}
if (knownTypeId != null)
{
break;
}
}
}
}
if (knownTypeId == null)
{
return null;
}
// all of the known event types have a UInt32 as identifier.
uint? id = knownTypeId.Identifier as uint?;
if (id == null)
{
return null;
}
// construct the event based on the known event type.
BaseEventState e = null;
switch (id.Value)
{
case ObjectTypes.ConditionType: { e = new ConditionState(null); break; }
case ObjectTypes.DialogConditionType: { e = new DialogConditionState(null); break; }
case ObjectTypes.AlarmConditionType: { e = new AlarmConditionState(null); break; }
case ObjectTypes.ExclusiveLimitAlarmType: { e = new ExclusiveLimitAlarmState(null); break; }
case ObjectTypes.NonExclusiveLimitAlarmType: { e = new NonExclusiveLimitAlarmState(null); break; }
case ObjectTypes.AuditEventType: { e = new AuditEventState(null); break; }
case ObjectTypes.AuditUpdateMethodEventType: { e = new AuditUpdateMethodEventState(null); break; }
default: { e = new BaseEventState(null); break; }
}
// get the filter which defines the contents of the notification.
EventFilter filter = monitoredItem.Status.Filter as EventFilter;
// initialize the event with the values in the notification.
e.Update(session.SystemContext, filter.SelectClauses, notification);
// save the orginal notification.
e.Handle = notification;
return e;
}
public void DataChangedNotificationHandler(MonitoredItem monitoredItem, MonitoredItemNotificationEventArgs e)
{
try
{
if (e == null || e.NotificationValue == null || monitoredItem == null || monitoredItem.Subscription == null || monitoredItem.Subscription.Session == null)
{
return;
}
if (!(e.NotificationValue is Opc.Ua.MonitoredItemNotification notification))
{
return;
}
if (!(notification.Value is DataValue value))
{
return;
}
// filter out messages with bad status
if (StatusCode.IsBad(notification.Value.StatusCode.Code))
{
_logger.LogWarning($"Filtered notification with bad status code '{notification.Value.StatusCode.Code}'");
return;
}
string dataType = string.Empty;
VariableNode variable = (VariableNode)monitoredItem.Subscription.Session.NodeCache.Find(monitoredItem.StartNodeId);
if (variable != null)
{
dataType = NodeId.ToExpandedNodeId(variable.DataType, monitoredItem.Subscription.Session.NamespaceUris).ToString();
}
MessageProcessorModel messageData = new MessageProcessorModel
{
ExpandedNodeId = NodeId.ToExpandedNodeId(monitoredItem.ResolvedNodeId, monitoredItem.Subscription.Session.NamespaceUris).ToString(),
ApplicationUri = monitoredItem.Subscription.Session.Endpoint.Server.ApplicationUri,
MessageContext = (ServiceMessageContext)monitoredItem.Subscription.Session.MessageContext,
Name = monitoredItem.DisplayName,
Value = value,
DataType = dataType
};
// skip event if needed
if (SkipFirst.ContainsKey(messageData.ExpandedNodeId) && SkipFirst[messageData.ExpandedNodeId])
{
_logger.LogInformation($"Skipping first telemetry event for node '{messageData.ExpandedNodeId}'.");
SkipFirst[messageData.ExpandedNodeId] = false;
}
else
{
MessageProcessor.Enqueue(messageData);
}
}
catch (Exception ex)
{
_logger.LogError(ex, "Error processing monitored item notification");
}
}
}
}