ua_pubsub_manager.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  4. *
  5. * Copyright (c) 2017-2018 Fraunhofer IOSB (Author: Andreas Ebner)
  6. * Copyright (c) 2018 Fraunhofer IOSB (Author: Julius Pfrommer)
  7. */
  8. #include "server/ua_server_internal.h"
  9. #include "ua_pubsub_ns0.h"
  10. #ifdef UA_ENABLE_PUBSUB /* conditional compilation */
  11. #define UA_DATETIMESTAMP_2000 125911584000000000
  12. UA_StatusCode
  13. UA_Server_addPubSubConnection(UA_Server *server,
  14. const UA_PubSubConnectionConfig *connectionConfig,
  15. UA_NodeId *connectionIdentifier) {
  16. /* Find the matching UA_PubSubTransportLayers */
  17. UA_PubSubTransportLayer *tl = NULL;
  18. for(size_t i = 0; i < server->config.pubsubTransportLayersSize; i++) {
  19. if(connectionConfig &&
  20. UA_String_equal(&server->config.pubsubTransportLayers[i].transportProfileUri,
  21. &connectionConfig->transportProfileUri)) {
  22. tl = &server->config.pubsubTransportLayers[i];
  23. }
  24. }
  25. if(!tl) {
  26. UA_LOG_ERROR(&server->config.logger, UA_LOGCATEGORY_SERVER,
  27. "PubSub Connection creation failed. Requested transport layer not found.");
  28. return UA_STATUSCODE_BADNOTFOUND;
  29. }
  30. /* Create a copy of the connection config */
  31. UA_PubSubConnectionConfig *tmpConnectionConfig = (UA_PubSubConnectionConfig *)
  32. UA_calloc(1, sizeof(UA_PubSubConnectionConfig));
  33. if(!tmpConnectionConfig){
  34. UA_LOG_ERROR(&server->config.logger, UA_LOGCATEGORY_SERVER,
  35. "PubSub Connection creation failed. Out of Memory.");
  36. return UA_STATUSCODE_BADOUTOFMEMORY;
  37. }
  38. UA_StatusCode retval = UA_PubSubConnectionConfig_copy(connectionConfig, tmpConnectionConfig);
  39. if(retval != UA_STATUSCODE_GOOD){
  40. UA_LOG_ERROR(&server->config.logger, UA_LOGCATEGORY_SERVER,
  41. "PubSub Connection creation failed. Could not copy the config.");
  42. return retval;
  43. }
  44. /* Create new connection and add to UA_PubSubManager */
  45. UA_PubSubConnection *newConnectionsField = (UA_PubSubConnection *)
  46. UA_realloc(server->pubSubManager.connections,
  47. sizeof(UA_PubSubConnection) * (server->pubSubManager.connectionsSize + 1));
  48. if(!newConnectionsField) {
  49. UA_PubSubConnectionConfig_clear(tmpConnectionConfig);
  50. UA_free(tmpConnectionConfig);
  51. UA_LOG_ERROR(&server->config.logger, UA_LOGCATEGORY_SERVER,
  52. "PubSub Connection creation failed. Out of Memory.");
  53. return UA_STATUSCODE_BADOUTOFMEMORY;
  54. }
  55. server->pubSubManager.connections = newConnectionsField;
  56. server->pubSubManager.connectionsSize++;
  57. UA_PubSubConnection *newConnection =
  58. &server->pubSubManager.connections[server->pubSubManager.connectionsSize-1];
  59. /* Initialize the new connection */
  60. memset(newConnection, 0, sizeof(UA_PubSubConnection));
  61. LIST_INIT(&newConnection->writerGroups);
  62. //workaround - fixing issue with queue.h and realloc.
  63. for(size_t n = 0; n < server->pubSubManager.connectionsSize; n++){
  64. if(server->pubSubManager.connections[n].writerGroups.lh_first){
  65. server->pubSubManager.connections[n].writerGroups.lh_first->listEntry.le_prev = &server->pubSubManager.connections[n].writerGroups.lh_first;
  66. }
  67. }
  68. newConnection->config = tmpConnectionConfig;
  69. /* Open the channel */
  70. newConnection->channel = tl->createPubSubChannel(newConnection->config);
  71. if(!newConnection->channel) {
  72. UA_PubSubConnection_clear(server, newConnection);
  73. server->pubSubManager.connectionsSize--;
  74. /* Keep the realloced (longer) array if entries remain */
  75. if(server->pubSubManager.connectionsSize == 0) {
  76. UA_free(server->pubSubManager.connections);
  77. server->pubSubManager.connections = NULL;
  78. }
  79. UA_LOG_ERROR(&server->config.logger, UA_LOGCATEGORY_SERVER,
  80. "PubSub Connection creation failed. Transport layer creation problem.");
  81. return UA_STATUSCODE_BADINTERNALERROR;
  82. }
  83. UA_PubSubManager_generateUniqueNodeId(server, &newConnection->identifier);
  84. if(connectionIdentifier)
  85. UA_NodeId_copy(&newConnection->identifier, connectionIdentifier);
  86. #ifdef UA_ENABLE_PUBSUB_INFORMATIONMODEL
  87. addPubSubConnectionRepresentation(server, newConnection);
  88. #endif
  89. return UA_STATUSCODE_GOOD;
  90. }
  91. UA_StatusCode
  92. UA_Server_removePubSubConnection(UA_Server *server, const UA_NodeId connection) {
  93. //search the identified Connection and store the Connection index
  94. size_t connectionIndex;
  95. UA_PubSubConnection *currentConnection = NULL;
  96. for(connectionIndex = 0; connectionIndex < server->pubSubManager.connectionsSize; connectionIndex++){
  97. if(UA_NodeId_equal(&connection, &server->pubSubManager.connections[connectionIndex].identifier)){
  98. currentConnection = &server->pubSubManager.connections[connectionIndex];
  99. break;
  100. }
  101. }
  102. if(!currentConnection)
  103. return UA_STATUSCODE_BADNOTFOUND;
  104. #ifdef UA_ENABLE_PUBSUB_INFORMATIONMODEL
  105. removePubSubConnectionRepresentation(server, currentConnection);
  106. #endif
  107. UA_PubSubConnection_clear(server, currentConnection);
  108. server->pubSubManager.connectionsSize--;
  109. //remove the connection from the pubSubManager, move the last connection
  110. //into the allocated memory of the deleted connection
  111. if(server->pubSubManager.connectionsSize != connectionIndex){
  112. memcpy(&server->pubSubManager.connections[connectionIndex],
  113. &server->pubSubManager.connections[server->pubSubManager.connectionsSize],
  114. sizeof(UA_PubSubConnection));
  115. }
  116. if(server->pubSubManager.connectionsSize <= 0){
  117. UA_free(server->pubSubManager.connections);
  118. server->pubSubManager.connections = NULL;
  119. } else {
  120. server->pubSubManager.connections = (UA_PubSubConnection *)
  121. UA_realloc(server->pubSubManager.connections, sizeof(UA_PubSubConnection) * server->pubSubManager.connectionsSize);
  122. if(!server->pubSubManager.connections){
  123. return UA_STATUSCODE_BADINTERNALERROR;
  124. }
  125. //workaround - fixing issue with queue.h and realloc.
  126. for(size_t n = 0; n < server->pubSubManager.connectionsSize; n++){
  127. if(server->pubSubManager.connections[n].writerGroups.lh_first){
  128. server->pubSubManager.connections[n].writerGroups.lh_first->listEntry.le_prev = &server->pubSubManager.connections[n].writerGroups.lh_first;
  129. }
  130. }
  131. }
  132. return UA_STATUSCODE_GOOD;
  133. }
  134. UA_AddPublishedDataSetResult
  135. UA_Server_addPublishedDataSet(UA_Server *server, const UA_PublishedDataSetConfig *publishedDataSetConfig,
  136. UA_NodeId *pdsIdentifier) {
  137. UA_AddPublishedDataSetResult result = {UA_STATUSCODE_BADINVALIDARGUMENT, 0, NULL, {0, 0}};
  138. if(!publishedDataSetConfig){
  139. UA_LOG_ERROR(&server->config.logger, UA_LOGCATEGORY_SERVER,
  140. "PublishedDataSet creation failed. No config passed in.");
  141. return result;
  142. }
  143. if(publishedDataSetConfig->publishedDataSetType != UA_PUBSUB_DATASET_PUBLISHEDITEMS){
  144. UA_LOG_ERROR(&server->config.logger, UA_LOGCATEGORY_SERVER,
  145. "PublishedDataSet creation failed. Unsupported PublishedDataSet type.");
  146. return result;
  147. }
  148. //deep copy the given connection config
  149. UA_PublishedDataSetConfig tmpPublishedDataSetConfig;
  150. memset(&tmpPublishedDataSetConfig, 0, sizeof(UA_PublishedDataSetConfig));
  151. if(UA_PublishedDataSetConfig_copy(publishedDataSetConfig, &tmpPublishedDataSetConfig) != UA_STATUSCODE_GOOD){
  152. UA_LOG_ERROR(&server->config.logger, UA_LOGCATEGORY_SERVER,
  153. "PublishedDataSet creation failed. Configuration copy failed.");
  154. result.addResult = UA_STATUSCODE_BADINTERNALERROR;
  155. return result;
  156. }
  157. //create new PDS and add to UA_PubSubManager
  158. UA_PublishedDataSet *newPubSubDataSetField = (UA_PublishedDataSet *)
  159. UA_realloc(server->pubSubManager.publishedDataSets,
  160. sizeof(UA_PublishedDataSet) * (server->pubSubManager.publishedDataSetsSize + 1));
  161. if(!newPubSubDataSetField) {
  162. UA_PublishedDataSetConfig_clear(&tmpPublishedDataSetConfig);
  163. UA_LOG_ERROR(&server->config.logger, UA_LOGCATEGORY_SERVER,
  164. "PublishedDataSet creation failed. Out of Memory.");
  165. result.addResult = UA_STATUSCODE_BADOUTOFMEMORY;
  166. return result;
  167. }
  168. server->pubSubManager.publishedDataSets = newPubSubDataSetField;
  169. UA_PublishedDataSet *newPubSubDataSet = &server->pubSubManager.publishedDataSets[(server->pubSubManager.publishedDataSetsSize)];
  170. memset(newPubSubDataSet, 0, sizeof(UA_PublishedDataSet));
  171. TAILQ_INIT(&newPubSubDataSet->fields);
  172. //workaround - fixing issue with queue.h and realloc.
  173. for(size_t n = 0; n < server->pubSubManager.publishedDataSetsSize; n++){
  174. if(server->pubSubManager.publishedDataSets[n].fields.tqh_first){
  175. server->pubSubManager.publishedDataSets[n].fields.tqh_first->listEntry.tqe_prev = &server->pubSubManager.publishedDataSets[n].fields.tqh_first;
  176. }
  177. }
  178. newPubSubDataSet->config = tmpPublishedDataSetConfig;
  179. if(tmpPublishedDataSetConfig.publishedDataSetType == UA_PUBSUB_DATASET_PUBLISHEDITEMS_TEMPLATE){
  180. //parse template config and add fields (later PubSub batch)
  181. }
  182. //generate unique nodeId
  183. UA_PubSubManager_generateUniqueNodeId(server, &newPubSubDataSet->identifier);
  184. if(pdsIdentifier != NULL){
  185. UA_NodeId_copy(&newPubSubDataSet->identifier, pdsIdentifier);
  186. }
  187. result.addResult = UA_STATUSCODE_GOOD;
  188. result.fieldAddResults = NULL;
  189. result.fieldAddResultsSize = 0;
  190. //fill the DataSetMetaData
  191. switch(tmpPublishedDataSetConfig.publishedDataSetType){
  192. case UA_PUBSUB_DATASET_PUBLISHEDITEMS_TEMPLATE:
  193. if(UA_DataSetMetaDataType_copy(&tmpPublishedDataSetConfig.config.itemsTemplate.metaData,
  194. &newPubSubDataSet->dataSetMetaData) != UA_STATUSCODE_GOOD){
  195. UA_Server_removeDataSetField(server, newPubSubDataSet->identifier);
  196. result.addResult = UA_STATUSCODE_BADINTERNALERROR;
  197. }
  198. break;
  199. case UA_PUBSUB_DATASET_PUBLISHEDEVENTS_TEMPLATE:
  200. if(UA_DataSetMetaDataType_copy(&tmpPublishedDataSetConfig.config.eventTemplate.metaData,
  201. &newPubSubDataSet->dataSetMetaData) != UA_STATUSCODE_GOOD){
  202. UA_Server_removeDataSetField(server, newPubSubDataSet->identifier);
  203. result.addResult = UA_STATUSCODE_BADINTERNALERROR;
  204. }
  205. break;
  206. case UA_PUBSUB_DATASET_PUBLISHEDEVENTS:
  207. newPubSubDataSet->dataSetMetaData.configurationVersion.majorVersion = UA_PubSubConfigurationVersionTimeDifference();
  208. newPubSubDataSet->dataSetMetaData.configurationVersion.minorVersion = UA_PubSubConfigurationVersionTimeDifference();
  209. newPubSubDataSet->dataSetMetaData.dataSetClassId = UA_GUID_NULL;
  210. if(UA_String_copy(&tmpPublishedDataSetConfig.name, &newPubSubDataSet->dataSetMetaData.name) != UA_STATUSCODE_GOOD){
  211. UA_Server_removeDataSetField(server, newPubSubDataSet->identifier);
  212. result.addResult = UA_STATUSCODE_BADINTERNALERROR;
  213. }
  214. newPubSubDataSet->dataSetMetaData.description = UA_LOCALIZEDTEXT_ALLOC("", "");
  215. break;
  216. case UA_PUBSUB_DATASET_PUBLISHEDITEMS:
  217. newPubSubDataSet->dataSetMetaData.configurationVersion.majorVersion = UA_PubSubConfigurationVersionTimeDifference();
  218. newPubSubDataSet->dataSetMetaData.configurationVersion.minorVersion = UA_PubSubConfigurationVersionTimeDifference();
  219. if(UA_String_copy(&tmpPublishedDataSetConfig.name, &newPubSubDataSet->dataSetMetaData.name) != UA_STATUSCODE_GOOD){
  220. UA_Server_removeDataSetField(server, newPubSubDataSet->identifier);
  221. result.addResult = UA_STATUSCODE_BADINTERNALERROR;
  222. }
  223. newPubSubDataSet->dataSetMetaData.description = UA_LOCALIZEDTEXT_ALLOC("", "");
  224. newPubSubDataSet->dataSetMetaData.dataSetClassId = UA_GUID_NULL;
  225. break;
  226. }
  227. server->pubSubManager.publishedDataSetsSize++;
  228. result.configurationVersion.majorVersion = UA_PubSubConfigurationVersionTimeDifference();
  229. result.configurationVersion.minorVersion = UA_PubSubConfigurationVersionTimeDifference();
  230. #ifdef UA_ENABLE_PUBSUB_INFORMATIONMODEL
  231. addPublishedDataItemsRepresentation(server, newPubSubDataSet);
  232. #endif
  233. return result;
  234. }
  235. UA_StatusCode
  236. UA_Server_removePublishedDataSet(UA_Server *server, const UA_NodeId pds) {
  237. //search the identified PublishedDataSet and store the PDS index
  238. UA_PublishedDataSet *publishedDataSet = NULL;
  239. size_t publishedDataSetIndex;
  240. for(publishedDataSetIndex = 0; publishedDataSetIndex < server->pubSubManager.publishedDataSetsSize; publishedDataSetIndex++){
  241. if(UA_NodeId_equal(&server->pubSubManager.publishedDataSets[publishedDataSetIndex].identifier, &pds)){
  242. publishedDataSet = &server->pubSubManager.publishedDataSets[publishedDataSetIndex];
  243. break;
  244. }
  245. }
  246. if(!publishedDataSet){
  247. return UA_STATUSCODE_BADNOTFOUND;
  248. }
  249. if(publishedDataSet->config.configurationFrozen){
  250. UA_LOG_WARNING(&server->config.logger, UA_LOGCATEGORY_SERVER,
  251. "Remove PublishedDataSet failed. PublishedDataSet is frozen.");
  252. return UA_STATUSCODE_BADCONFIGURATIONERROR;
  253. }
  254. //search for referenced writers -> delete this writers. (Standard: writer must be connected with PDS)
  255. for(size_t i = 0; i < server->pubSubManager.connectionsSize; i++){
  256. UA_WriterGroup *writerGroup;
  257. LIST_FOREACH(writerGroup, &server->pubSubManager.connections[i].writerGroups, listEntry){
  258. UA_DataSetWriter *currentWriter, *tmpWriterGroup;
  259. LIST_FOREACH_SAFE(currentWriter, &writerGroup->writers, listEntry, tmpWriterGroup){
  260. if(UA_NodeId_equal(&currentWriter->connectedDataSet, &publishedDataSet->identifier)){
  261. UA_Server_removeDataSetWriter(server, currentWriter->identifier);
  262. }
  263. }
  264. }
  265. }
  266. #ifdef UA_ENABLE_PUBSUB_INFORMATIONMODEL
  267. removePublishedDataSetRepresentation(server, publishedDataSet);
  268. #endif
  269. UA_PublishedDataSet_clear(server, publishedDataSet);
  270. server->pubSubManager.publishedDataSetsSize--;
  271. //copy the last PDS to the removed PDS inside the allocated memory block
  272. if(server->pubSubManager.publishedDataSetsSize != publishedDataSetIndex){
  273. memcpy(&server->pubSubManager.publishedDataSets[publishedDataSetIndex],
  274. &server->pubSubManager.publishedDataSets[server->pubSubManager.publishedDataSetsSize],
  275. sizeof(UA_PublishedDataSet));
  276. }
  277. if(server->pubSubManager.publishedDataSetsSize <= 0){
  278. UA_free(server->pubSubManager.publishedDataSets);
  279. server->pubSubManager.publishedDataSets = NULL;
  280. } else {
  281. server->pubSubManager.publishedDataSets = (UA_PublishedDataSet *)
  282. UA_realloc(server->pubSubManager.publishedDataSets, sizeof(UA_PublishedDataSet) * server->pubSubManager.publishedDataSetsSize);
  283. if(!server->pubSubManager.publishedDataSets){
  284. return UA_STATUSCODE_BADINTERNALERROR;
  285. }
  286. //workaround - fixing issue with queue.h and realloc.
  287. for(size_t n = 0; n < server->pubSubManager.publishedDataSetsSize; n++){
  288. if(server->pubSubManager.publishedDataSets[n].fields.tqh_first){
  289. server->pubSubManager.publishedDataSets[n].fields.tqh_first->listEntry.tqe_prev = &server->pubSubManager.publishedDataSets[n].fields.tqh_first;
  290. }
  291. }
  292. }
  293. return UA_STATUSCODE_GOOD;
  294. }
  295. /* Calculate the time difference between current time and UTC (00:00) on January
  296. * 1, 2000. */
  297. UA_UInt32
  298. UA_PubSubConfigurationVersionTimeDifference() {
  299. UA_UInt32 timeDiffSince2000 = (UA_UInt32) (UA_DateTime_now() - UA_DATETIMESTAMP_2000);
  300. return timeDiffSince2000;
  301. }
  302. /* Generate a new unique NodeId. This NodeId will be used for the information
  303. * model representation of PubSub entities. */
  304. void
  305. UA_PubSubManager_generateUniqueNodeId(UA_Server *server, UA_NodeId *nodeId) {
  306. UA_NodeId newNodeId = UA_NODEID_NUMERIC(0, 0);
  307. UA_Node *newNode = UA_NODESTORE_NEW(server, UA_NODECLASS_OBJECT);
  308. UA_NODESTORE_INSERT(server, newNode, &newNodeId);
  309. UA_NodeId_copy(&newNodeId, nodeId);
  310. }
  311. /* Delete the current PubSub configuration including all nested members. This
  312. * action also delete the configured PubSub transport Layers. */
  313. void
  314. UA_PubSubManager_delete(UA_Server *server, UA_PubSubManager *pubSubManager) {
  315. UA_LOG_INFO(&server->config.logger, UA_LOGCATEGORY_SERVER, "PubSub cleanup was called.");
  316. /* Stop and unfreeze all WriterGroups */
  317. for(size_t i = 0; i < pubSubManager->connectionsSize; i++) {
  318. UA_WriterGroup *writerGroup;
  319. LIST_FOREACH(writerGroup, &pubSubManager->connections[i].writerGroups, listEntry) {
  320. UA_WriterGroup_setPubSubState(server, UA_PUBSUBSTATE_DISABLED, writerGroup);
  321. UA_Server_unfreezeWriterGroupConfiguration(server, writerGroup->identifier);
  322. }
  323. }
  324. //free the currently configured transport layers
  325. UA_free(server->config.pubsubTransportLayers);
  326. server->config.pubsubTransportLayersSize = 0;
  327. //remove Connections and WriterGroups
  328. while(pubSubManager->connectionsSize > 0){
  329. UA_Server_removePubSubConnection(server, pubSubManager->connections[pubSubManager->connectionsSize-1].identifier);
  330. }
  331. while(pubSubManager->publishedDataSetsSize > 0){
  332. UA_Server_removePublishedDataSet(server, pubSubManager->publishedDataSets[pubSubManager->publishedDataSetsSize-1].identifier);
  333. }
  334. }
  335. /***********************************/
  336. /* PubSub Jobs abstraction */
  337. /***********************************/
  338. #ifndef UA_ENABLE_PUBSUB_CUSTOM_PUBLISH_HANDLING
  339. /* If UA_ENABLE_PUBSUB_CUSTOM_PUBLISH_INTERRUPT is enabled, a custom callback
  340. * management must be linked to the application */
  341. UA_StatusCode
  342. UA_PubSubManager_addRepeatedCallback(UA_Server *server, UA_ServerCallback callback,
  343. void *data, UA_Double interval_ms, UA_UInt64 *callbackId) {
  344. return UA_Timer_addRepeatedCallback(&server->timer, (UA_ApplicationCallback)callback,
  345. server, data, interval_ms, callbackId);
  346. }
  347. UA_StatusCode
  348. UA_PubSubManager_changeRepeatedCallbackInterval(UA_Server *server, UA_UInt64 callbackId,
  349. UA_Double interval_ms) {
  350. return UA_Timer_changeRepeatedCallbackInterval(&server->timer, callbackId, interval_ms);
  351. }
  352. void
  353. UA_PubSubManager_removeRepeatedPubSubCallback(UA_Server *server, UA_UInt64 callbackId) {
  354. UA_Timer_removeCallback(&server->timer, callbackId);
  355. }
  356. #endif /* UA_ENABLE_PUBSUB_CUSTOM_PUBLISH_HANDLING */
  357. #endif /* UA_ENABLE_PUBSUB */