ua_server.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  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_nodeids.h"
  23. #include "ua_connection.h"
  24. #include "ua_log.h"
  25. /**
  26. * @defgroup server Server
  27. *
  28. * @{
  29. */
  30. typedef struct UA_ServerConfig {
  31. UA_Boolean Login_enableAnonymous;
  32. UA_Boolean Login_enableUsernamePassword;
  33. char** Login_usernames;
  34. char** Login_passwords;
  35. UA_UInt32 Login_loginsCount;
  36. char* Application_applicationURI;
  37. char* Application_applicationName;
  38. } UA_ServerConfig;
  39. extern UA_EXPORT const UA_ServerConfig UA_ServerConfig_standard;
  40. struct UA_Server;
  41. typedef struct UA_Server UA_Server;
  42. UA_Server UA_EXPORT * UA_Server_new(UA_ServerConfig config);
  43. void UA_EXPORT UA_Server_setServerCertificate(UA_Server *server, UA_ByteString certificate);
  44. void UA_EXPORT UA_Server_delete(UA_Server *server);
  45. /** Sets the logger used by the server */
  46. void UA_EXPORT UA_Server_setLogger(UA_Server *server, UA_Logger logger);
  47. UA_Logger UA_EXPORT * UA_Server_getLogger(UA_Server *server);
  48. /**
  49. * Runs the main loop of the server. In each iteration, this calls into the
  50. * networklayers to see if work have arrived and checks if timed events need to
  51. * be triggered.
  52. *
  53. * @param server The server object
  54. * @param nThreads The number of worker threads. Is ignored if MULTITHREADING is
  55. * not activated.
  56. * @param running Points to a booloean value on the heap. When running is set to
  57. * false, the worker threads and the main loop close and the server is shut
  58. * down.
  59. * @return Indicates whether the server shut down cleanly
  60. *
  61. */
  62. UA_StatusCode UA_EXPORT UA_Server_run(UA_Server *server, UA_UInt16 nThreads, UA_Boolean *running);
  63. /** @brief A datasource is the interface to interact with a local data provider.
  64. *
  65. * Implementors of datasources need to provide functions for the callbacks in
  66. * this structure. After every read, the handle needs to be released to indicate
  67. * that the pointer is no longer accessed. As a rule, datasources are never
  68. * copied, but only their content. The only way to write into a datasource is
  69. * via the write-service.
  70. *
  71. * It is expected that the read and release callbacks are implemented. The write
  72. * callback can be set to null.
  73. **/
  74. typedef struct {
  75. void *handle;
  76. UA_StatusCode (*read)(void *handle, UA_Boolean sourceTimeStamp, UA_DataValue *value);
  77. void (*release)(void *handle, UA_DataValue *value);
  78. UA_StatusCode (*write)(void *handle, const UA_Variant *data);
  79. } UA_DataSource;
  80. /** @brief Add a new namespace to the server. Returns the index of the new namespace */
  81. UA_UInt16 UA_EXPORT UA_Server_addNamespace(UA_Server *server, const char* name);
  82. /** Add a reference to the server's address space */
  83. UA_StatusCode UA_EXPORT UA_Server_addReference(UA_Server *server, const UA_AddReferencesItem *item);
  84. UA_StatusCode UA_EXPORT
  85. UA_Server_addVariableNode(UA_Server *server, UA_Variant *value, const UA_QualifiedName browseName,
  86. UA_NodeId nodeId, const UA_NodeId parentNodeId, const UA_NodeId referenceTypeId);
  87. UA_StatusCode UA_EXPORT
  88. UA_Server_addObjectNode(UA_Server *server, const UA_QualifiedName browseName,
  89. UA_NodeId nodeId, const UA_NodeId parentNodeId, const UA_NodeId referenceTypeId, const UA_NodeId typeDefinition);
  90. UA_StatusCode UA_EXPORT
  91. UA_Server_addDataSourceVariableNode(UA_Server *server, UA_DataSource dataSource,
  92. const UA_QualifiedName browseName, UA_NodeId nodeId,
  93. const UA_NodeId parentNodeId, const UA_NodeId referenceTypeId);
  94. /** Work that is run in the main loop (singlethreaded) or dispatched to a worker
  95. thread. */
  96. typedef struct UA_WorkItem {
  97. enum {
  98. UA_WORKITEMTYPE_NOTHING,
  99. UA_WORKITEMTYPE_CLOSECONNECTION,
  100. UA_WORKITEMTYPE_BINARYMESSAGE,
  101. UA_WORKITEMTYPE_METHODCALL,
  102. UA_WORKITEMTYPE_DELAYEDMETHODCALL,
  103. } type;
  104. union {
  105. UA_Connection *closeConnection;
  106. struct {
  107. UA_Connection *connection;
  108. UA_ByteString message;
  109. } binaryMessage;
  110. struct {
  111. void *data;
  112. void (*method)(UA_Server *server, void *data);
  113. } methodCall;
  114. } work;
  115. } UA_WorkItem;
  116. /**
  117. * @param server The server object.
  118. *
  119. * @param work Pointer to the WorkItem that shall be added. The pointer is not
  120. * freed but copied to an internal representation.
  121. *
  122. * @param executionTime The time when the work shall be executed. If the time lies in the
  123. * past, the work will be executed in the next iteration of the server's
  124. * main loop
  125. *
  126. * @param resultWorkGuid Upon success, the pointed value is set to the guid of
  127. * the workitem in the server queue. This can be used to cancel the work
  128. * later on. If the pointer is null, the guid is not set.
  129. *
  130. * @return Upon sucess, UA_STATUSCODE_GOOD is returned. An error code otherwise.
  131. */
  132. UA_StatusCode UA_EXPORT
  133. UA_Server_addTimedWorkItem(UA_Server *server, const UA_WorkItem *work,
  134. UA_DateTime executionTime, UA_Guid *resultWorkGuid);
  135. /**
  136. * @param server The server object.
  137. *
  138. * @param work Pointer to the WorkItem that shall be added. The pointer is not
  139. * freed but copied to an internal representation.
  140. *
  141. * @param interval The work that is executed repeatedly with the given interval
  142. * (in ms). If work with the same repetition interval already exists,
  143. * the first execution might occur sooner.
  144. *
  145. * @param resultWorkGuid Upon success, the pointed value is set to the guid of
  146. * the workitem in the server queue. This can be used to cancel the work
  147. * later on. If the pointer is null, the guid is not set.
  148. *
  149. * @return Upon sucess, UA_STATUSCODE_GOOD is returned. An error code otherwise.
  150. */
  151. UA_StatusCode UA_EXPORT
  152. UA_Server_addRepeatedWorkItem(UA_Server *server, const UA_WorkItem *work,
  153. UA_UInt32 interval, UA_Guid *resultWorkGuid);
  154. /** Remove timed or repeated work */
  155. /* UA_Boolean UA_EXPORT UA_Server_removeWorkItem(UA_Server *server, UA_Guid workId); */
  156. /**
  157. * Interface to the binary network layers. This structure is returned from the
  158. * function that initializes the network layer. The layer is already bound to a
  159. * specific port and listening. The functions in the structure are never called
  160. * in parallel but only sequentially from the server's main loop. So the network
  161. * layer does not need to be thread-safe.
  162. */
  163. typedef struct {
  164. void *nlHandle;
  165. /**
  166. * Starts listening on the the networklayer.
  167. *
  168. * @return Returns UA_STATUSCODE_GOOD or an error code.
  169. */
  170. UA_StatusCode (*start)(void *nlHandle, UA_Logger *logger);
  171. /**
  172. * Gets called from the main server loop and returns the work that
  173. * accumulated (messages and close events) for dispatch. The networklayer
  174. * does not wait on connections but returns immediately the work that
  175. * accumulated.
  176. *
  177. * @param workItems When the returned integer is positive, *workItems points
  178. * to an array of WorkItems of the returned size.
  179. * @param timeout The timeout during which an event must arrive in microseconds
  180. * @return The size of the returned workItems array. If the result is
  181. * negative, an error has occured.
  182. */
  183. UA_Int32 (*getWork)(void *nlhandle, UA_WorkItem **workItems, UA_UInt16 timeout);
  184. /**
  185. * Closes the network connection and returns all the work that needs to
  186. * be finished before the network layer can be safely deleted.
  187. *
  188. * @param workItems When the returned integer is positive, *workItems points
  189. * to an array of WorkItems of the returned size.
  190. * @return The size of the returned workItems array. If the result is
  191. * negative, an error has occured.
  192. */
  193. UA_Int32 (*stop)(void *nlhandle, UA_WorkItem **workItems);
  194. /** Deletes the network layer. Call only after a successful shutdown. */
  195. void (*free)(void *nlhandle);
  196. /**
  197. * String containing the discovery URL that will be add to the server's list
  198. * contains the protocol the host and the port of the layer
  199. */
  200. UA_String* discoveryUrl;
  201. } UA_ServerNetworkLayer;
  202. /**
  203. * Adds a network layer to the server. The network layer is destroyed together
  204. * with the server. Do not use it after adding it as it might be moved around on
  205. * the heap.
  206. */
  207. void UA_EXPORT UA_Server_addNetworkLayer(UA_Server *server, UA_ServerNetworkLayer networkLayer);
  208. /** @} */
  209. #ifndef __cplusplus /* the external nodestore does not work with c++ so far */
  210. /**
  211. * @ingroup nodestore
  212. *
  213. * @defgroup external_nodestore External Nodestore
  214. *
  215. * @brief An external application that manages its own data and data model
  216. *
  217. * To plug in outside data sources, one can use
  218. *
  219. * - VariableNodes with a data source (functions that are called for read and write access)
  220. * - An external nodestore that is mapped to specific namespaces
  221. *
  222. * If no external nodestore is defined for a nodeid, it is always looked up in
  223. * the "local" nodestore of open62541. Namespace Zero is always in the local
  224. * nodestore.
  225. *
  226. * @{
  227. */
  228. typedef UA_Int32 (*UA_ExternalNodeStore_addNodes)
  229. (void *ensHandle, const UA_RequestHeader *requestHeader, UA_AddNodesItem *nodesToAdd, UA_UInt32 *indices,
  230. UA_UInt32 indicesSize, UA_AddNodesResult* addNodesResults, UA_DiagnosticInfo *diagnosticInfos);
  231. typedef UA_Int32 (*UA_ExternalNodeStore_addReferences)
  232. (void *ensHandle, const UA_RequestHeader *requestHeader, UA_AddReferencesItem* referencesToAdd,
  233. UA_UInt32 *indices,UA_UInt32 indicesSize, UA_StatusCode *addReferencesResults,
  234. UA_DiagnosticInfo *diagnosticInfos);
  235. typedef UA_Int32 (*UA_ExternalNodeStore_deleteNodes)
  236. (void *ensHandle, const UA_RequestHeader *requestHeader, UA_DeleteNodesItem *nodesToDelete, UA_UInt32 *indices,
  237. UA_UInt32 indicesSize, UA_StatusCode *deleteNodesResults, UA_DiagnosticInfo *diagnosticInfos);
  238. typedef UA_Int32 (*UA_ExternalNodeStore_deleteReferences)
  239. (void *ensHandle, const UA_RequestHeader *requestHeader, UA_DeleteReferencesItem *referenceToDelete,
  240. UA_UInt32 *indices, UA_UInt32 indicesSize, UA_StatusCode deleteReferencesresults,
  241. UA_DiagnosticInfo *diagnosticInfos);
  242. typedef UA_Int32 (*UA_ExternalNodeStore_readNodes)
  243. (void *ensHandle, const UA_RequestHeader *requestHeader, UA_ReadValueId *readValueIds, UA_UInt32 *indices,
  244. UA_UInt32 indicesSize,UA_DataValue *readNodesResults, UA_Boolean timeStampToReturn,
  245. UA_DiagnosticInfo *diagnosticInfos);
  246. typedef UA_Int32 (*UA_ExternalNodeStore_writeNodes)
  247. (void *ensHandle, const UA_RequestHeader *requestHeader, UA_WriteValue *writeValues, UA_UInt32 *indices,
  248. UA_UInt32 indicesSize, UA_StatusCode *writeNodesResults, UA_DiagnosticInfo *diagnosticInfo);
  249. typedef UA_Int32 (*UA_ExternalNodeStore_browseNodes)
  250. (void *ensHandle, const UA_RequestHeader *requestHeader, UA_BrowseDescription *browseDescriptions,
  251. UA_UInt32 *indices, UA_UInt32 indicesSize, UA_UInt32 requestedMaxReferencesPerNode,
  252. UA_BrowseResult *browseResults, UA_DiagnosticInfo *diagnosticInfos);
  253. typedef UA_Int32 (*UA_ExternalNodeStore_translateBrowsePathsToNodeIds)
  254. (void *ensHandle, const UA_RequestHeader *requestHeader, UA_BrowsePath *browsePath,
  255. UA_UInt32 *indices, UA_UInt32 indicesSize, UA_BrowsePathResult *browsePathResults, UA_DiagnosticInfo *diagnosticInfos);
  256. typedef UA_Int32 (*UA_ExternalNodeStore_delete)(void *ensHandle);
  257. typedef struct UA_ExternalNodeStore {
  258. void *ensHandle;
  259. UA_ExternalNodeStore_addNodes addNodes;
  260. UA_ExternalNodeStore_deleteNodes deleteNodes;
  261. UA_ExternalNodeStore_writeNodes writeNodes;
  262. UA_ExternalNodeStore_readNodes readNodes;
  263. UA_ExternalNodeStore_browseNodes browseNodes;
  264. UA_ExternalNodeStore_translateBrowsePathsToNodeIds translateBrowsePathsToNodeIds;
  265. UA_ExternalNodeStore_addReferences addReferences;
  266. UA_ExternalNodeStore_deleteReferences deleteReferences;
  267. UA_ExternalNodeStore_delete destroy;
  268. } UA_ExternalNodeStore;
  269. /* UA_StatusCode UA_EXPORT */
  270. /* UA_Server_addExternalNamespace(UA_Server *server, UA_UInt16 namespaceIndex, const UA_String *url, UA_ExternalNodeStore *nodeStore); */
  271. /** @} */
  272. #endif /* external nodestore */
  273. #ifdef __cplusplus
  274. } // extern "C"
  275. #endif
  276. #endif /* UA_SERVER_H_ */