ua_server.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. /*
  2. * Copyright (C) 2014 the contributors as stated in the AUTHORS file
  3. *
  4. * This file is part of open62541. open62541 is free software: you can
  5. * redistribute it and/or modify it under the terms of the GNU Lesser General
  6. * Public License, version 3 (as published by the Free Software Foundation) with
  7. * a static linking exception as stated in the LICENSE file provided with
  8. * open62541.
  9. *
  10. * open62541 is distributed in the hope that it will be useful, but WITHOUT ANY
  11. * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  12. * A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
  13. * details.
  14. */
  15. #ifndef UA_SERVER_H_
  16. #define UA_SERVER_H_
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. #include "ua_types.h"
  21. #include "ua_types_generated.h"
  22. #include "ua_connection.h"
  23. #include "ua_log.h"
  24. /**
  25. * @defgroup server Server
  26. *
  27. * @brief This module describes the server object and functions to interact with * it.
  28. *
  29. * @{
  30. */
  31. struct UA_Server;
  32. typedef struct UA_Server UA_Server;
  33. UA_Server UA_EXPORT * UA_Server_new(UA_String *endpointUrl, UA_ByteString *serverCertificate);
  34. void UA_EXPORT UA_Server_delete(UA_Server *server);
  35. void UA_EXPORT UA_Server_processBinaryMessage(UA_Server *server, UA_Connection *connection,
  36. const UA_ByteString *msg);
  37. /**
  38. * @brief Adds a node to the server's address space
  39. *
  40. * If adding the node succeeds, the pointer to the node is set to null. If the
  41. * original nodeid is null (ns=0,i=0), a unique new nodeid is created for the
  42. * node and returned in the AddNodesResult struct. */
  43. UA_AddNodesResult UA_EXPORT
  44. UA_Server_addNode(UA_Server *server, const UA_Node **node, const UA_ExpandedNodeId *parentNodeId,
  45. const UA_NodeId *referenceTypeId);
  46. /** @brief Adds a reference to the server's address space */
  47. UA_StatusCode UA_EXPORT
  48. UA_Server_addReference(UA_Server *server, const UA_AddReferencesItem *item);
  49. /**
  50. * @brief Adds a VariableNode to the server's address space that points to a
  51. * scalar value. The value must lie on the heap and cannot be reused afterwards
  52. * as it becomes attached to the lifecycle of the VariableNode */
  53. void UA_EXPORT
  54. UA_Server_addScalarVariableNode(UA_Server *server, UA_QualifiedName *browseName, void *value,
  55. const UA_TypeVTable *vt, const UA_ExpandedNodeId *parentNodeId,
  56. const UA_NodeId *referenceTypeId );
  57. /** @} */
  58. /**
  59. * @ingroup server
  60. *
  61. * @defgroup external_nodestore External Nodestore
  62. *
  63. * @brief This modules describes the VTable and function signatures to add an
  64. * external nodestore to the server.
  65. *
  66. * To plug in outside data sources, one can use
  67. *
  68. * - VariableNodes with a data source (functions that are called for read and write access)
  69. * - An external nodestore that is mapped to specific namespaces
  70. *
  71. * If no external nodestore is defined for a nodeid, it is always looked up in
  72. * the "local" nodestore of open62541. Namespace Zero is always in the local
  73. * nodestore.
  74. *
  75. * @{
  76. */
  77. typedef UA_Int32 (*UA_ExternalNodeStore_addNodes)
  78. (void *ensHandle, const UA_RequestHeader *requestHeader, UA_AddNodesItem *nodesToAdd, UA_UInt32 *indices,
  79. UA_UInt32 indicesSize, UA_AddNodesResult* addNodesResults, UA_DiagnosticInfo *diagnosticInfos);
  80. typedef UA_Int32 (*UA_ExternalNodeStore_addReferences)
  81. (void *ensHandle, const UA_RequestHeader *requestHeader, UA_AddReferencesItem* referencesToAdd,
  82. UA_UInt32 *indices,UA_UInt32 indicesSize, UA_StatusCode *addReferencesResults,
  83. UA_DiagnosticInfo *diagnosticInfos);
  84. typedef UA_Int32 (*UA_ExternalNodeStore_deleteNodes)
  85. (void *ensHandle, const UA_RequestHeader *requestHeader, UA_DeleteNodesItem *nodesToDelete, UA_UInt32 *indices,
  86. UA_UInt32 indicesSize, UA_StatusCode *deleteNodesResults, UA_DiagnosticInfo *diagnosticInfos);
  87. typedef UA_Int32 (*UA_ExternalNodeStore_deleteReferences)
  88. (void *ensHandle, const UA_RequestHeader *requestHeader, UA_DeleteReferencesItem *referenceToDelete,
  89. UA_UInt32 *indices, UA_UInt32 indicesSize, UA_StatusCode deleteReferencesresults,
  90. UA_DiagnosticInfo *diagnosticInfos);
  91. typedef UA_Int32 (*UA_ExternalNodeStore_readNodes)
  92. (void *ensHandle, const UA_RequestHeader *requestHeader, UA_ReadValueId *readValueIds, UA_UInt32 *indices,
  93. UA_UInt32 indicesSize,UA_DataValue *readNodesResults, UA_Boolean timeStampToReturn,
  94. UA_DiagnosticInfo *diagnosticInfos);
  95. typedef UA_Int32 (*UA_ExternalNodeStore_writeNodes)
  96. (void *ensHandle, const UA_RequestHeader *requestHeader, UA_WriteValue *writeValues, UA_UInt32 *indices,
  97. UA_UInt32 indicesSize, UA_StatusCode *writeNodesResults, UA_DiagnosticInfo *diagnosticInfo);
  98. typedef UA_Int32 (*UA_ExternalNodeStore_browseNodes)
  99. (void *ensHandle, const UA_RequestHeader *requestHeader, UA_BrowseDescription *browseDescriptions,
  100. UA_UInt32 *indices, UA_UInt32 indicesSize, UA_UInt32 requestedMaxReferencesPerNode,
  101. UA_BrowseResult *browseResults, UA_DiagnosticInfo *diagnosticInfos);
  102. typedef UA_Int32 (*UA_ExternalNodeStore_delete)(void *ensHandle);
  103. typedef struct UA_ExternalNodeStore {
  104. void *ensHandle;
  105. UA_ExternalNodeStore_addNodes addNodes;
  106. UA_ExternalNodeStore_deleteNodes deleteNodes;
  107. UA_ExternalNodeStore_writeNodes writeNodes;
  108. UA_ExternalNodeStore_readNodes readNodes;
  109. UA_ExternalNodeStore_browseNodes browseNodes;
  110. UA_ExternalNodeStore_addReferences addReferences;
  111. UA_ExternalNodeStore_deleteReferences deleteReferences;
  112. UA_ExternalNodeStore_delete delete;
  113. } UA_ExternalNodeStore;
  114. UA_StatusCode UA_EXPORT
  115. UA_Server_addExternalNamespace(UA_Server *server, UA_UInt16 namespaceIndex, UA_ExternalNodeStore *nodeStore);
  116. /** @} */
  117. #ifdef __cplusplus
  118. } // extern "C"
  119. #endif
  120. #endif /* UA_SERVER_H_ */