ua_subscription.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449
  1. #ifdef ENABLE_SUBSCRIPTIONS
  2. #include "ua_subscription.h"
  3. /****************/
  4. /* Subscription */
  5. /****************/
  6. UA_Subscription *UA_Subscription_new(UA_Int32 SubscriptionID) {
  7. UA_Subscription *new = (UA_Subscription *) UA_malloc(sizeof(UA_Subscription));
  8. new->SubscriptionID = SubscriptionID;
  9. new->LastPublished = 0;
  10. new->SequenceNumber = 0;
  11. LIST_INIT(&new->MonitoredItems);
  12. LIST_INITENTRY(new, listEntry);
  13. LIST_INIT(&new->unpublishedNotifications);
  14. return new;
  15. }
  16. UA_UInt32 Subscription_queuedNotifications(UA_Subscription *subscription) {
  17. if (!subscription)
  18. return 0;
  19. UA_UInt32 j = 0;
  20. UA_unpublishedNotification *i;
  21. LIST_FOREACH(i, &subscription->unpublishedNotifications, listEntry)
  22. j++;
  23. return j;
  24. }
  25. void Subscription_generateKeepAlive(UA_Subscription *subscription) {
  26. UA_unpublishedNotification *msg = NULL;
  27. if (subscription->KeepAliveCount.currentValue <= subscription->KeepAliveCount.minValue || subscription->KeepAliveCount.currentValue > subscription->KeepAliveCount.maxValue) {
  28. msg = (UA_unpublishedNotification *) UA_malloc(sizeof(UA_unpublishedNotification));
  29. LIST_INITENTRY(msg, listEntry);
  30. INITPOINTER(msg->notification);
  31. msg->notification = (UA_NotificationMessage *) UA_malloc(sizeof(UA_NotificationMessage));
  32. INITPOINTER(msg->notification->notificationData);
  33. msg->notification->sequenceNumber = (subscription->SequenceNumber)+1; // KeepAlive uses next message, but does not increment counter
  34. msg->notification->publishTime = UA_DateTime_now();
  35. msg->notification->notificationDataSize = 0;
  36. LIST_INSERT_HEAD(&subscription->unpublishedNotifications, msg, listEntry);
  37. subscription->KeepAliveCount.currentValue = subscription->KeepAliveCount.maxValue;
  38. }
  39. return;
  40. }
  41. void Subscription_updateNotifications(UA_Subscription *subscription) {
  42. UA_MonitoredItem *mon;
  43. //MonitoredItem_queuedValue *queuedValue;
  44. UA_unpublishedNotification *msg = NULL;
  45. UA_UInt32 monItemsChangeT = 0, monItemsStatusT = 0, monItemsEventT = 0;
  46. UA_DataChangeNotification *changeNotification;
  47. size_t notificationOffset;
  48. if(!subscription)
  49. return;
  50. if((subscription->LastPublished + subscription->PublishingInterval) > UA_DateTime_now())
  51. return;
  52. // Make sure there is data to be published and establish which message types
  53. // will need to be generated
  54. LIST_FOREACH(mon, &subscription->MonitoredItems, listEntry) {
  55. // Check if this MonitoredItems Queue holds data and how much data is held in total
  56. if (!mon->queue.lh_first)
  57. continue;
  58. if((mon->MonitoredItemType & MONITOREDITEM_TYPE_CHANGENOTIFY) != 0)
  59. monItemsChangeT+=mon->QueueSize.currentValue;
  60. else if((mon->MonitoredItemType & MONITOREDITEM_TYPE_STATUSNOTIFY) != 0)
  61. monItemsStatusT+=mon->QueueSize.currentValue;
  62. else if ((mon->MonitoredItemType & MONITOREDITEM_TYPE_EVENTNOTIFY) != 0)
  63. monItemsEventT+=mon->QueueSize.currentValue;
  64. }
  65. // FIXME: This is hardcoded to 100 because it is not covered by the spec but we need to protect the server!
  66. if (Subscription_queuedNotifications(subscription) >= 10) {
  67. // Remove last entry
  68. LIST_FOREACH(msg, &subscription->unpublishedNotifications, listEntry)
  69. LIST_REMOVE(msg, listEntry);
  70. UA_free(msg);
  71. }
  72. if (monItemsChangeT == 0 && monItemsEventT == 0 && monItemsStatusT == 0) {
  73. // Decrement KeepAlive
  74. subscription->KeepAliveCount.currentValue--;
  75. // +- Generate KeepAlive msg if counter overruns
  76. Subscription_generateKeepAlive(subscription);
  77. return;
  78. }
  79. msg = (UA_unpublishedNotification *) UA_malloc(sizeof(UA_unpublishedNotification));
  80. LIST_INITENTRY(msg, listEntry);
  81. msg->notification = UA_malloc(sizeof(UA_NotificationMessage));
  82. INITPOINTER(msg->notification->notificationData);
  83. msg->notification->sequenceNumber = subscription->SequenceNumber++;
  84. msg->notification->publishTime = UA_DateTime_now();
  85. // NotificationData is an array of Change, Status and Event messages, each containing the appropriate
  86. // list of Queued values from all monitoredItems of that type
  87. msg->notification->notificationDataSize = ISNOTZERO(monItemsChangeT);// + ISNOTZERO(monItemsEventT) + ISNOTZERO(monItemsStatusT);
  88. msg->notification->notificationData = (UA_ExtensionObject *) UA_malloc(sizeof(UA_ExtensionObject) * msg->notification->notificationDataSize);
  89. for(int notmsgn=0; notmsgn < msg->notification->notificationDataSize; notmsgn++) {
  90. // Set the notification message type and encoding for each of
  91. // the three possible NotificationData Types
  92. (msg->notification->notificationData)[notmsgn].encoding = 1; // Encoding is always binary
  93. (msg->notification->notificationData)[notmsgn].typeId = UA_NODEID_NUMERIC(0, 811);
  94. if(notmsgn == 0) {
  95. // Construct a DataChangeNotification
  96. changeNotification = (UA_DataChangeNotification *) UA_malloc(sizeof(UA_DataChangeNotification));
  97. // Create one DataChangeNotification for each queue item held in each monitoredItems queue:
  98. changeNotification->monitoredItems = (UA_MonitoredItemNotification *) UA_malloc(sizeof(UA_MonitoredItemNotification) * monItemsChangeT);
  99. // Scan all monitoredItems in this subscription and have their queue transformed into an Array of
  100. // the propper NotificationMessageType (Status, Change, Event)
  101. monItemsChangeT = 0;
  102. for(mon=subscription->MonitoredItems.lh_first; mon != NULL; mon=mon->listEntry.le_next) {
  103. if (mon->MonitoredItemType != MONITOREDITEM_TYPE_CHANGENOTIFY || mon->queue.lh_first == NULL ) continue;
  104. // Note: Monitored Items might not return a queuedValue if there is a problem encoding it.
  105. monItemsChangeT += MonitoredItem_QueueToDataChangeNotifications( &((changeNotification->monitoredItems)[monItemsChangeT]), mon);
  106. MonitoredItem_ClearQueue(mon);
  107. }
  108. changeNotification->monitoredItemsSize = monItemsChangeT;
  109. changeNotification->diagnosticInfosSize = 0;
  110. changeNotification->diagnosticInfos = NULL;
  111. (msg->notification->notificationData[notmsgn]).body.length = UA_calcSizeBinary(changeNotification, &UA_TYPES[UA_TYPES_DATACHANGENOTIFICATION]);
  112. (msg->notification->notificationData[notmsgn]).body.data = UA_malloc((msg->notification->notificationData[notmsgn]).body.length);
  113. notificationOffset = 0;
  114. UA_encodeBinary((const void *) changeNotification, &UA_TYPES[UA_TYPES_DATACHANGENOTIFICATION], &(msg->notification->notificationData[notmsgn].body), &notificationOffset);
  115. UA_free(changeNotification->monitoredItems);
  116. UA_free(changeNotification);
  117. }
  118. else if (notmsgn == 1) {
  119. // FIXME: Constructing a StatusChangeNotification is not implemented
  120. }
  121. else if (notmsgn == 2) {
  122. // FIXME: Constructing a EventListNotification is not implemented
  123. }
  124. }
  125. LIST_INSERT_HEAD(&subscription->unpublishedNotifications, msg, listEntry);
  126. }
  127. UA_UInt32 *Subscription_getAvailableSequenceNumbers(UA_Subscription *sub) {
  128. UA_UInt32 *seqArray;
  129. int i;
  130. UA_unpublishedNotification *not;
  131. if(!sub)
  132. return NULL;
  133. seqArray = (UA_UInt32 *) UA_malloc(sizeof(UA_UInt32) * Subscription_queuedNotifications(sub));
  134. if (seqArray == NULL ) return NULL;
  135. i = 0;
  136. for(not = sub->unpublishedNotifications.lh_first; not != NULL; not=(not->listEntry).le_next) {
  137. seqArray[i] = not->notification->sequenceNumber;
  138. i++;
  139. }
  140. return seqArray;
  141. }
  142. void Subscription_copyTopNotificationMessage(UA_NotificationMessage *dst, UA_Subscription *sub) {
  143. UA_NotificationMessage *latest;
  144. if (dst == NULL) return;
  145. if (Subscription_queuedNotifications(sub) == 0) {
  146. dst->notificationDataSize = 0;
  147. dst->publishTime = UA_DateTime_now();
  148. dst->sequenceNumber = 0;
  149. return;
  150. }
  151. latest = sub->unpublishedNotifications.lh_first->notification;
  152. dst->notificationDataSize = latest->notificationDataSize;
  153. dst->publishTime = latest->publishTime;
  154. dst->sequenceNumber = latest->sequenceNumber;
  155. if (latest->notificationDataSize == 0) return;
  156. dst->notificationData = (UA_ExtensionObject *) UA_malloc(sizeof(UA_ExtensionObject));
  157. dst->notificationData->encoding = latest->notificationData->encoding;
  158. dst->notificationData->typeId = latest->notificationData->typeId;
  159. dst->notificationData->body.length = latest->notificationData->body.length;
  160. dst->notificationData->body.data = UA_malloc(latest->notificationData->body.length);
  161. UA_ByteString_copy((UA_String *) &(latest->notificationData->body),
  162. (UA_String *) &(dst->notificationData->body));
  163. }
  164. UA_UInt32 Subscription_deleteUnpublishedNotification(UA_UInt32 seqNo, UA_Subscription *sub) {
  165. UA_unpublishedNotification *not;
  166. UA_UInt32 deletedItems = 0;
  167. for(not=sub->unpublishedNotifications.lh_first; not != NULL; not=not->listEntry.le_next) {
  168. if(not->notification->sequenceNumber != seqNo)
  169. continue;
  170. LIST_REMOVE(not, listEntry);
  171. if(not->notification != NULL) {
  172. if (not->notification->notificationData != NULL) {
  173. if (not->notification->notificationData->body.data != NULL)
  174. UA_free(not->notification->notificationData->body.data);
  175. UA_free(not->notification->notificationData);
  176. }
  177. UA_free(not->notification);
  178. }
  179. UA_free(not);
  180. deletedItems++;
  181. }
  182. return deletedItems;
  183. }
  184. /*****************/
  185. /* MonitoredItem */
  186. /*****************/
  187. UA_MonitoredItem *UA_MonitoredItem_new() {
  188. UA_MonitoredItem *new = (UA_MonitoredItem *) UA_malloc(sizeof(UA_MonitoredItem));
  189. new->QueueSize = (UA_UInt32_BoundedValue) { .minValue = 0, .maxValue = 0, .currentValue = 0};
  190. new->LastSampled = 0;
  191. // FIXME: This is currently hardcoded;
  192. new->MonitoredItemType = MONITOREDITEM_TYPE_CHANGENOTIFY;
  193. LIST_INIT(&new->queue);
  194. LIST_INITENTRY(new, listEntry);
  195. INITPOINTER(new->monitoredNode);
  196. INITPOINTER(new->LastSampledValue.data );
  197. return new;
  198. }
  199. void MonitoredItem_delete(UA_MonitoredItem *monitoredItem) {
  200. if (monitoredItem == NULL) return;
  201. // Delete Queued Data
  202. MonitoredItem_ClearQueue(monitoredItem);
  203. // Remove from subscription list
  204. LIST_REMOVE(monitoredItem, listEntry);
  205. // Release comparison sample
  206. if(monitoredItem->LastSampledValue.data != NULL) {
  207. UA_free(monitoredItem->LastSampledValue.data);
  208. }
  209. UA_free(monitoredItem);
  210. }
  211. int MonitoredItem_QueueToDataChangeNotifications(UA_MonitoredItemNotification *dst,
  212. UA_MonitoredItem *monitoredItem) {
  213. int queueSize = 0;
  214. MonitoredItem_queuedValue *queueItem;
  215. // Count instead of relying on the items currentValue
  216. LIST_FOREACH(queueItem, &monitoredItem->queue, listEntry) {
  217. dst[queueSize].clientHandle = monitoredItem->ClientHandle;
  218. dst[queueSize].value.hasServerPicoseconds = UA_FALSE;
  219. dst[queueSize].value.hasServerTimestamp = UA_FALSE;
  220. dst[queueSize].value.serverTimestamp = UA_FALSE;
  221. dst[queueSize].value.hasSourcePicoseconds = UA_FALSE;
  222. dst[queueSize].value.hasSourceTimestamp = UA_FALSE;
  223. dst[queueSize].value.hasValue = UA_TRUE;
  224. dst[queueSize].value.status = UA_STATUSCODE_GOOD;
  225. UA_Variant_copy(&(queueItem->value), &(dst[queueSize].value.value));
  226. // Do not create variants with no type -> will make calcSizeBinary() segfault.
  227. if(dst[queueSize].value.value.type)
  228. queueSize++;
  229. }
  230. return queueSize;
  231. }
  232. void MonitoredItem_ClearQueue(UA_MonitoredItem *monitoredItem) {
  233. MonitoredItem_queuedValue *val;
  234. if (monitoredItem == NULL)
  235. return;
  236. while(monitoredItem->queue.lh_first) {
  237. val = monitoredItem->queue.lh_first;
  238. LIST_REMOVE(val, listEntry);
  239. UA_free(val);
  240. }
  241. monitoredItem->QueueSize.currentValue = 0;
  242. }
  243. UA_Boolean MonitoredItem_CopyMonitoredValueToVariant(UA_UInt32 AttributeID, const UA_Node *src,
  244. UA_Variant *dst) {
  245. UA_Boolean samplingError = UA_TRUE;
  246. UA_DataValue sourceDataValue;
  247. const UA_VariableNode *srcAsVariableNode = (const UA_VariableNode *) src;
  248. // FIXME: Not all AttributeIDs can be monitored yet
  249. switch(AttributeID) {
  250. case UA_ATTRIBUTEID_NODEID:
  251. UA_Variant_setScalarCopy(dst, (const UA_NodeId *) &(src->nodeId), &UA_TYPES[UA_TYPES_NODEID]);
  252. samplingError = UA_FALSE;
  253. break;
  254. case UA_ATTRIBUTEID_NODECLASS:
  255. UA_Variant_setScalarCopy(dst, (const UA_Int32 *) &(src->nodeClass), &UA_TYPES[UA_TYPES_INT32]);
  256. samplingError = UA_FALSE;
  257. break;
  258. case UA_ATTRIBUTEID_BROWSENAME:
  259. UA_Variant_setScalarCopy(dst, (const UA_String *) &(src->browseName), &UA_TYPES[UA_TYPES_QUALIFIEDNAME]);
  260. samplingError = UA_FALSE;
  261. break;
  262. case UA_ATTRIBUTEID_DISPLAYNAME:
  263. UA_Variant_setScalarCopy(dst, (const UA_String *) &(src->displayName), &UA_TYPES[UA_TYPES_LOCALIZEDTEXT]);
  264. samplingError = UA_FALSE;
  265. break;
  266. case UA_ATTRIBUTEID_DESCRIPTION:
  267. UA_Variant_setScalarCopy(dst, (const UA_String *) &(src->displayName), &UA_TYPES[UA_TYPES_LOCALIZEDTEXT]);
  268. samplingError = UA_FALSE;
  269. break;
  270. case UA_ATTRIBUTEID_WRITEMASK:
  271. UA_Variant_setScalarCopy(dst, (const UA_String *) &(src->writeMask), &UA_TYPES[UA_TYPES_UINT32]);
  272. samplingError = UA_FALSE;
  273. break;
  274. case UA_ATTRIBUTEID_USERWRITEMASK:
  275. UA_Variant_setScalarCopy(dst, (const UA_String *) &(src->writeMask), &UA_TYPES[UA_TYPES_UINT32]);
  276. samplingError = UA_FALSE;
  277. break;
  278. case UA_ATTRIBUTEID_ISABSTRACT:
  279. break;
  280. case UA_ATTRIBUTEID_SYMMETRIC:
  281. break;
  282. case UA_ATTRIBUTEID_INVERSENAME:
  283. break;
  284. case UA_ATTRIBUTEID_CONTAINSNOLOOPS:
  285. break;
  286. case UA_ATTRIBUTEID_EVENTNOTIFIER:
  287. break;
  288. case UA_ATTRIBUTEID_VALUE:
  289. if (src->nodeClass == UA_NODECLASS_VARIABLE) {
  290. if ( srcAsVariableNode->valueSource == UA_VALUESOURCE_VARIANT) {
  291. UA_Variant_copy( (const UA_Variant *) &((const UA_VariableNode *) src)->value, dst);
  292. samplingError = UA_FALSE;
  293. }
  294. else if (srcAsVariableNode->valueSource == UA_VALUESOURCE_DATASOURCE) {
  295. // todo: handle numeric ranges
  296. if (srcAsVariableNode->value.dataSource.read(((const UA_VariableNode *) src)->value.dataSource.handle, (UA_Boolean) UA_TRUE, UA_NULL, &sourceDataValue) == UA_STATUSCODE_GOOD) {
  297. UA_Variant_copy( (const UA_Variant *) &(sourceDataValue.value), dst);
  298. samplingError = UA_FALSE;
  299. }
  300. }
  301. }
  302. break;
  303. case UA_ATTRIBUTEID_DATATYPE:
  304. break;
  305. case UA_ATTRIBUTEID_VALUERANK:
  306. break;
  307. case UA_ATTRIBUTEID_ARRAYDIMENSIONS:
  308. break;
  309. case UA_ATTRIBUTEID_ACCESSLEVEL:
  310. break;
  311. case UA_ATTRIBUTEID_USERACCESSLEVEL:
  312. break;
  313. case UA_ATTRIBUTEID_MINIMUMSAMPLINGINTERVAL:
  314. break;
  315. case UA_ATTRIBUTEID_HISTORIZING:
  316. break;
  317. case UA_ATTRIBUTEID_EXECUTABLE:
  318. break;
  319. case UA_ATTRIBUTEID_USEREXECUTABLE:
  320. break;
  321. default:
  322. break;
  323. }
  324. return samplingError;
  325. }
  326. void MonitoredItem_QueuePushDataValue(UA_MonitoredItem *monitoredItem) {
  327. MonitoredItem_queuedValue *newvalue = NULL, *queueItem = NULL;
  328. UA_Boolean samplingError = UA_TRUE;
  329. UA_ByteString newValueAsByteString = { .length=0, .data=NULL };
  330. size_t encodingOffset = 0;
  331. if(!monitoredItem || monitoredItem->LastSampled + monitoredItem->SamplingInterval > UA_DateTime_now())
  332. return;
  333. // FIXME: Actively suppress non change value based monitoring. There should be
  334. // another function to handle status and events.
  335. if (monitoredItem->MonitoredItemType != MONITOREDITEM_TYPE_CHANGENOTIFY)
  336. return;
  337. newvalue = (MonitoredItem_queuedValue *) UA_malloc(sizeof(MonitoredItem_queuedValue));
  338. LIST_INITENTRY(newvalue,listEntry);
  339. newvalue->value.arrayLength = 0;
  340. newvalue->value.arrayDimensionsSize = 0;
  341. newvalue->value.arrayDimensions = NULL;
  342. newvalue->value.data = NULL;
  343. newvalue->value.type = NULL;
  344. samplingError = MonitoredItem_CopyMonitoredValueToVariant(monitoredItem->AttributeID, monitoredItem->monitoredNode, &(newvalue->value));
  345. if ((monitoredItem->QueueSize).currentValue >= (monitoredItem->QueueSize).maxValue) {
  346. if (newvalue->value.type != NULL && monitoredItem->DiscardOldest == UA_TRUE && monitoredItem->queue.lh_first != NULL ) {
  347. for(queueItem = monitoredItem->queue.lh_first; queueItem->listEntry.le_next != NULL; queueItem = queueItem->listEntry.le_next) {}
  348. LIST_REMOVE(queueItem, listEntry);
  349. UA_free(queueItem);
  350. (monitoredItem->QueueSize).currentValue--;
  351. }
  352. else {
  353. // We cannot remove the oldest value and theres no queue space left. We're done here.
  354. UA_free(newvalue);
  355. return;
  356. }
  357. }
  358. // Only add a value if we have sampled it correctly and it fits into the queue;
  359. if ( samplingError != UA_FALSE || newvalue->value.type == NULL || (monitoredItem->QueueSize).currentValue >= (monitoredItem->QueueSize).maxValue) {
  360. UA_free(newvalue);
  361. return;
  362. }
  363. newValueAsByteString.length = UA_calcSizeBinary((const void *) &(newvalue->value), &UA_TYPES[UA_TYPES_VARIANT]);
  364. newValueAsByteString.data = UA_malloc(newValueAsByteString.length);
  365. UA_encodeBinary((const void *) &(newvalue->value), &UA_TYPES[UA_TYPES_VARIANT], &(newValueAsByteString), &encodingOffset );
  366. if(monitoredItem->LastSampledValue.data == NULL) {
  367. UA_ByteString_copy((UA_String *) &newValueAsByteString, (UA_String *) &(monitoredItem->LastSampledValue));
  368. LIST_INSERT_HEAD(&monitoredItem->queue, newvalue, listEntry);
  369. (monitoredItem->QueueSize).currentValue++;
  370. monitoredItem->LastSampled = UA_DateTime_now();
  371. }
  372. else {
  373. if (UA_String_equal((UA_String *) &newValueAsByteString, (UA_String *) &(monitoredItem->LastSampledValue)) == UA_TRUE) {
  374. UA_free(newValueAsByteString.data);
  375. return;
  376. }
  377. UA_ByteString_copy((UA_String *) &newValueAsByteString, (UA_String *) &(monitoredItem->LastSampledValue));
  378. LIST_INSERT_HEAD(&monitoredItem->queue, newvalue, listEntry);
  379. (monitoredItem->QueueSize).currentValue++;
  380. monitoredItem->LastSampled = UA_DateTime_now();
  381. }
  382. }
  383. #endif