ua_subscription.c 18 KB

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