ua_subscription_manager.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. #include "ua_types.h"
  2. #include "ua_server_internal.h"
  3. #include "ua_nodestore.h"
  4. #include "ua_subscription_manager.h"
  5. void SubscriptionManager_init(UA_Session *session) {
  6. UA_SubscriptionManager *manager = &(session->subscriptionManager);
  7. /* FIXME: These init values are empirical. Maybe they should be part
  8. * of the server config? */
  9. manager->GlobalPublishingInterval = (UA_Int32_BoundedValue) { .maxValue = 100, .minValue = 0, .currentValue=0 };
  10. manager->GlobalLifeTimeCount = (UA_UInt32_BoundedValue) { .maxValue = 15000, .minValue = 0, .currentValue=0 };
  11. manager->GlobalKeepAliveCount = (UA_UInt32_BoundedValue) { .maxValue = 100, .minValue = 0, .currentValue=0 };
  12. manager->GlobalNotificationsPerPublish = (UA_Int32_BoundedValue) { .maxValue = 1000, .minValue = 1, .currentValue=0 };
  13. manager->GlobalSamplingInterval = (UA_UInt32_BoundedValue) { .maxValue = 100, .minValue = 0, .currentValue=0 };
  14. manager->GlobalQueueSize = (UA_UInt32_BoundedValue) { .maxValue = 100, .minValue = 0, .currentValue=0 };
  15. manager->ServerSubscriptions = (UA_ListOfUASubscriptions *) UA_malloc (sizeof(UA_ListOfUASubscriptions));
  16. LIST_INIT(manager->ServerSubscriptions);
  17. manager->LastSessionID = (UA_UInt32) UA_DateTime_now();
  18. }
  19. void SubscriptionManager_deleteMembers(UA_Session *session) {
  20. UA_SubscriptionManager *manager = &(session->subscriptionManager);
  21. UA_free(manager->ServerSubscriptions);
  22. }
  23. void SubscriptionManager_addSubscription(UA_SubscriptionManager *manager, UA_Subscription *newSubscription) {
  24. LIST_INSERT_HEAD(manager->ServerSubscriptions, newSubscription, listEntry);
  25. }
  26. UA_Subscription *SubscriptionManager_getSubscriptionByID(UA_SubscriptionManager *manager,
  27. UA_Int32 SubscriptionID) {
  28. UA_Subscription *retsub, *sub;
  29. retsub = UA_NULL;
  30. for (sub = (manager->ServerSubscriptions)->lh_first; sub != NULL; sub = sub->listEntry.le_next) {
  31. if (sub->SubscriptionID == SubscriptionID) {
  32. retsub = sub;
  33. break;
  34. }
  35. }
  36. return retsub;
  37. }
  38. UA_Int32 SubscriptionManager_deleteMonitoredItem(UA_SubscriptionManager *manager, UA_Int32 SubscriptionID,
  39. UA_UInt32 MonitoredItemID) {
  40. UA_Subscription *sub;
  41. UA_MonitoredItem *mon;
  42. if (manager == NULL) return UA_STATUSCODE_BADINTERNALERROR;
  43. sub = SubscriptionManager_getSubscriptionByID(manager, SubscriptionID);
  44. if (sub == NULL) return UA_STATUSCODE_BADSUBSCRIPTIONIDINVALID;
  45. for(mon=sub->MonitoredItems.lh_first; mon != NULL; mon=mon->listEntry.le_next) {
  46. if (mon->ItemId == MonitoredItemID) {
  47. MonitoredItem_delete(mon);
  48. return UA_STATUSCODE_GOOD;
  49. }
  50. }
  51. return UA_STATUSCODE_BADMONITOREDITEMIDINVALID;
  52. }
  53. UA_Int32 SubscriptionManager_deleteSubscription(UA_SubscriptionManager *manager, UA_Int32 SubscriptionID) {
  54. UA_Subscription *sub;
  55. UA_MonitoredItem *mon;
  56. UA_unpublishedNotification *notify;
  57. sub = SubscriptionManager_getSubscriptionByID(manager, SubscriptionID);
  58. if (sub != NULL) {
  59. // Delete registered subscriptions
  60. while (sub->MonitoredItems.lh_first != NULL) {
  61. mon = sub->MonitoredItems.lh_first;
  62. // Delete Sampled data
  63. MonitoredItem_delete(mon);
  64. }
  65. }
  66. else {
  67. return UA_STATUSCODE_BADSUBSCRIPTIONIDINVALID;
  68. }
  69. // Delete queued notification messages
  70. notify = LIST_FIRST(&sub->unpublishedNotifications);
  71. while(sub->unpublishedNotifications.lh_first != NULL) {
  72. notify = sub->unpublishedNotifications.lh_first;
  73. LIST_REMOVE(notify, listEntry);
  74. UA_free(notify);
  75. }
  76. LIST_REMOVE(sub, listEntry);
  77. UA_free(sub);
  78. return UA_STATUSCODE_GOOD;
  79. }