ua_client.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395
  1. #ifndef UA_CLIENT_H_
  2. #define UA_CLIENT_H_
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include "ua_config.h"
  7. #include "ua_types.h"
  8. #include "ua_connection.h"
  9. #include "ua_log.h"
  10. #include "ua_types_generated.h"
  11. struct UA_Client;
  12. typedef struct UA_Client UA_Client;
  13. typedef struct UA_ClientConfig {
  14. UA_Int32 timeout; //sync response timeout
  15. UA_Int32 secureChannelLifeTime; // lifetime in ms (then the channel needs to be renewed)
  16. UA_ConnectionConfig localConnectionConfig;
  17. } UA_ClientConfig;
  18. extern UA_EXPORT const UA_ClientConfig UA_ClientConfig_standard;
  19. /**
  20. * Creates and initialize a Client object
  21. *
  22. * @param config for the new client. You can use UA_ClientConfig_standard which has sane defaults
  23. * @param logger function pointer to a logger function. See examples/logger_stdout.c for a simple implementation
  24. * @return return the new Client object
  25. */
  26. UA_Client UA_EXPORT * UA_Client_new(UA_ClientConfig config, UA_Logger logger);
  27. /**
  28. * resets a Client object
  29. *
  30. * @param client to reset
  31. * @return Void
  32. */
  33. void UA_EXPORT UA_Client_reset(UA_Client* client);
  34. /**
  35. * delete a Client object
  36. *
  37. * @param client to delete
  38. * @return Void
  39. */
  40. void UA_EXPORT UA_Client_delete(UA_Client* client);
  41. /*************************/
  42. /* Manage the Connection */
  43. /*************************/
  44. typedef UA_Connection (*UA_ConnectClientConnection)(UA_ConnectionConfig localConf, const char *endpointUrl,
  45. UA_Logger logger);
  46. /**
  47. * start a connection to the selected server
  48. *
  49. * @param client to use
  50. * @param connection function. You can use ClientNetworkLayerTCP_connect from examples/networklayer_tcp.h
  51. * @param endpointURL to connect (for example "opc.tcp://localhost:16664")
  52. * @return Indicates whether the operation succeeded or returns an error code
  53. */
  54. UA_StatusCode UA_EXPORT
  55. UA_Client_connect(UA_Client *client, UA_ConnectClientConnection connFunc, const char *endpointUrl);
  56. /**
  57. * close a connection to the selected server
  58. *
  59. * @param client to use
  60. * @return Indicates whether the operation succeeded or returns an error code
  61. */
  62. UA_StatusCode UA_EXPORT UA_Client_disconnect(UA_Client *client);
  63. /**
  64. * renew a secure channel if needed
  65. *
  66. * @param client to use
  67. * @return Indicates whether the operation succeeded or returns an error code
  68. */
  69. UA_StatusCode UA_EXPORT UA_Client_manuallyRenewSecureChannel(UA_Client *client);
  70. /****************/
  71. /* Raw Services */
  72. /****************/
  73. /* Don't use this function. There are typed versions. */
  74. void UA_EXPORT
  75. __UA_Client_Service(UA_Client *client, const void *request, const UA_DataType *requestType,
  76. void *response, const UA_DataType *responseType);
  77. /* NodeManagement Service Set */
  78. /**
  79. * performs a service
  80. *
  81. * @param client to use
  82. * @param request to use
  83. * @return returns the response which has the UA_StatusCode in a UA_ResponseHeader
  84. */
  85. static UA_INLINE UA_AddNodesResponse
  86. UA_Client_Service_addNodes(UA_Client *client, const UA_AddNodesRequest request) {
  87. UA_AddNodesResponse response;
  88. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_ADDNODESREQUEST],
  89. &response, &UA_TYPES[UA_TYPES_ADDNODESRESPONSE]);
  90. return response; }
  91. /**
  92. * performs a service
  93. *
  94. * @param client to use
  95. * @param request to use
  96. * @return returns the response which has the UA_StatusCode in a UA_ResponseHeader
  97. */
  98. static UA_INLINE UA_AddReferencesResponse
  99. UA_Client_Service_addReferences(UA_Client *client, const UA_AddReferencesRequest request) {
  100. UA_AddReferencesResponse response;
  101. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_ADDNODESREQUEST],
  102. &response, &UA_TYPES[UA_TYPES_ADDNODESRESPONSE]);
  103. return response; }
  104. /**
  105. * performs a service
  106. *
  107. * @param client to use
  108. * @param request to use
  109. * @return returns the response which has the UA_StatusCode in a UA_ResponseHeader
  110. */
  111. static UA_INLINE UA_DeleteNodesResponse
  112. UA_Client_Service_deleteNodes(UA_Client *client, const UA_DeleteNodesRequest request) {
  113. UA_DeleteNodesResponse response;
  114. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_DELETENODESREQUEST],
  115. &response, &UA_TYPES[UA_TYPES_DELETENODESRESPONSE]);
  116. return response; }
  117. /**
  118. * performs a service
  119. *
  120. * @param client to use
  121. * @param request to use
  122. * @return returns the response which has the UA_StatusCode in a UA_ResponseHeader
  123. */
  124. static UA_INLINE UA_DeleteReferencesResponse
  125. UA_Client_Service_deleteReferences(UA_Client *client, const UA_DeleteReferencesRequest request) {
  126. UA_DeleteReferencesResponse response;
  127. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_DELETENODESREQUEST],
  128. &response, &UA_TYPES[UA_TYPES_DELETENODESRESPONSE]);
  129. return response; }
  130. /* View Service Set */
  131. /**
  132. * performs a service
  133. *
  134. * @param client to use
  135. * @param request to use
  136. * @return returns the response which has the UA_StatusCode in a UA_ResponseHeader
  137. */
  138. static UA_INLINE UA_BrowseResponse
  139. UA_Client_Service_browse(UA_Client *client, const UA_BrowseRequest request) {
  140. UA_BrowseResponse response;
  141. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_BROWSEREQUEST],
  142. &response, &UA_TYPES[UA_TYPES_BROWSERESPONSE]);
  143. return response; }
  144. /**
  145. * performs a service
  146. *
  147. * @param client to use
  148. * @param request to use
  149. * @return returns the response which has the UA_StatusCode in a UA_ResponseHeader
  150. */
  151. static UA_INLINE UA_BrowseNextResponse
  152. UA_Client_Service_browseNext(UA_Client *client, const UA_BrowseNextRequest request) {
  153. UA_BrowseNextResponse response;
  154. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_BROWSENEXTREQUEST],
  155. &response, &UA_TYPES[UA_TYPES_BROWSENEXTRESPONSE]);
  156. return response; }
  157. /**
  158. * performs a service
  159. *
  160. * @param client to use
  161. * @param request to use
  162. * @return returns the response which has the UA_StatusCode in a UA_ResponseHeader
  163. */
  164. static UA_INLINE UA_TranslateBrowsePathsToNodeIdsResponse
  165. UA_Client_Service_translateBrowsePathsToNodeIds(UA_Client *client,
  166. const UA_TranslateBrowsePathsToNodeIdsRequest request) {
  167. UA_TranslateBrowsePathsToNodeIdsResponse response;
  168. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_TRANSLATEBROWSEPATHSTONODEIDSREQUEST],
  169. &response, &UA_TYPES[UA_TYPES_TRANSLATEBROWSEPATHSTONODEIDSRESPONSE]);
  170. return response; }
  171. /**
  172. * performs a service
  173. *
  174. * @param client to use
  175. * @param request to use
  176. * @return returns the response which has the UA_StatusCode in a UA_ResponseHeader
  177. */
  178. static UA_INLINE UA_RegisterNodesResponse
  179. UA_Client_Service_registerNodes(UA_Client *client, const UA_RegisterNodesRequest request) {
  180. UA_RegisterNodesResponse response;
  181. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_REGISTERNODESREQUEST],
  182. &response, &UA_TYPES[UA_TYPES_REGISTERNODESRESPONSE]);
  183. return response; }
  184. /**
  185. * performs a service
  186. *
  187. * @param client to use
  188. * @param request to use
  189. * @return returns the response which has the UA_StatusCode in a UA_ResponseHeader
  190. */
  191. static UA_INLINE UA_UnregisterNodesResponse
  192. UA_Client_Service_unregisterNodes(UA_Client *client, const UA_UnregisterNodesRequest request) {
  193. UA_UnregisterNodesResponse response;
  194. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_UNREGISTERNODESREQUEST],
  195. &response, &UA_TYPES[UA_TYPES_UNREGISTERNODESRESPONSE]);
  196. return response; }
  197. /* Query Service Set */
  198. /**
  199. * performs a service
  200. *
  201. * @param client to use
  202. * @param request to use
  203. * @return returns the response which has the UA_StatusCode in a UA_ResponseHeader
  204. */
  205. static UA_INLINE UA_QueryFirstResponse
  206. UA_Client_Service_queryFirst(UA_Client *client, const UA_QueryFirstRequest request) {
  207. UA_QueryFirstResponse response;
  208. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_QUERYFIRSTREQUEST],
  209. &response, &UA_TYPES[UA_TYPES_QUERYFIRSTRESPONSE]);
  210. return response; }
  211. /**
  212. * performs a service
  213. *
  214. * @param client to use
  215. * @param request to use
  216. * @return returns the response which has the UA_StatusCode in a UA_ResponseHeader
  217. */
  218. static UA_INLINE UA_QueryNextResponse
  219. UA_Client_Service_queryNext(UA_Client *client, const UA_QueryNextRequest request) {
  220. UA_QueryNextResponse response;
  221. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_QUERYFIRSTREQUEST],
  222. &response, &UA_TYPES[UA_TYPES_QUERYFIRSTRESPONSE]);
  223. return response; }
  224. /* Attribute Service Set */
  225. /**
  226. * performs a service
  227. *
  228. * @param client to use
  229. * @param request to use
  230. * @return returns the response which has the UA_StatusCode in a UA_ResponseHeader
  231. */
  232. static UA_INLINE UA_ReadResponse
  233. UA_Client_Service_read(UA_Client *client, const UA_ReadRequest request) {
  234. UA_ReadResponse response;
  235. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_READREQUEST],
  236. &response, &UA_TYPES[UA_TYPES_READRESPONSE]);
  237. return response; }
  238. /**
  239. * performs a service
  240. *
  241. * @param client to use
  242. * @param request to use
  243. * @return returns the response which has the UA_StatusCode in a UA_ResponseHeader
  244. */
  245. static UA_INLINE UA_WriteResponse
  246. UA_Client_Service_write(UA_Client *client, const UA_WriteRequest request) {
  247. UA_WriteResponse response;
  248. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_WRITEREQUEST],
  249. &response, &UA_TYPES[UA_TYPES_WRITERESPONSE]);
  250. return response; }
  251. /* Method Service Set */
  252. /**
  253. * performs a service
  254. *
  255. * @param client to use
  256. * @param request to use
  257. * @return returns the response which has the UA_StatusCode in a UA_ResponseHeader
  258. */
  259. static UA_INLINE UA_CallResponse
  260. UA_Client_Service_call(UA_Client *client, const UA_CallRequest request) {
  261. UA_CallResponse response;
  262. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_CALLREQUEST],
  263. &response, &UA_TYPES[UA_TYPES_CALLRESPONSE]);
  264. return response; }
  265. #ifdef UA_ENABLE_SUBSCRIPTIONS
  266. /* MonitoredItem Service Set */
  267. /**
  268. * performs a service
  269. *
  270. * @param client to use
  271. * @param request to use
  272. * @return returns the response which has the UA_StatusCode in a UA_ResponseHeader
  273. */
  274. static UA_INLINE UA_CreateMonitoredItemsResponse
  275. UA_Client_Service_createMonitoredItems(UA_Client *client, const UA_CreateMonitoredItemsRequest request) {
  276. UA_CreateMonitoredItemsResponse response;
  277. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_CREATEMONITOREDITEMSREQUEST],
  278. &response, &UA_TYPES[UA_TYPES_CREATEMONITOREDITEMSRESPONSE]);
  279. return response; }
  280. /**
  281. * performs a service
  282. *
  283. * @param client to use
  284. * @param request to use
  285. * @return returns the response which has the UA_StatusCode in a UA_ResponseHeader
  286. */
  287. static UA_INLINE UA_DeleteMonitoredItemsResponse
  288. UA_Client_Service_deleteMonitoredItems(UA_Client *client, const UA_DeleteMonitoredItemsRequest request) {
  289. UA_DeleteMonitoredItemsResponse response;
  290. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_DELETEMONITOREDITEMSREQUEST],
  291. &response, &UA_TYPES[UA_TYPES_DELETEMONITOREDITEMSRESPONSE]);
  292. return response; }
  293. /* Subscription Service Set */
  294. /**
  295. * performs a service
  296. *
  297. * @param client to use
  298. * @param request to use
  299. * @return returns the response which has the UA_StatusCode in a UA_ResponseHeader
  300. */
  301. static UA_INLINE UA_CreateSubscriptionResponse
  302. UA_Client_Service_createSubscription(UA_Client *client, const UA_CreateSubscriptionRequest request) {
  303. UA_CreateSubscriptionResponse response;
  304. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_CREATESUBSCRIPTIONREQUEST],
  305. &response, &UA_TYPES[UA_TYPES_CREATESUBSCRIPTIONRESPONSE]);
  306. return response; }
  307. /**
  308. * performs a service
  309. *
  310. * @param client to use
  311. * @param request to use
  312. * @return returns the response which has the UA_StatusCode in a UA_ResponseHeader
  313. */
  314. static UA_INLINE UA_ModifySubscriptionResponse
  315. UA_Client_Service_modifySubscription(UA_Client *client, const UA_ModifySubscriptionRequest request) {
  316. UA_ModifySubscriptionResponse response;
  317. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_MODIFYSUBSCRIPTIONREQUEST],
  318. &response, &UA_TYPES[UA_TYPES_MODIFYSUBSCRIPTIONRESPONSE]);
  319. return response; }
  320. /**
  321. * performs a service
  322. *
  323. * @param client to use
  324. * @param request to use
  325. * @return returns the response which has the UA_StatusCode in a UA_ResponseHeader
  326. */
  327. static UA_INLINE UA_DeleteSubscriptionsResponse
  328. UA_Client_Service_deleteSubscriptions(UA_Client *client, const UA_DeleteSubscriptionsRequest request) {
  329. UA_DeleteSubscriptionsResponse response;
  330. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_DELETESUBSCRIPTIONSREQUEST],
  331. &response, &UA_TYPES[UA_TYPES_DELETESUBSCRIPTIONSRESPONSE]);
  332. return response; }
  333. /**
  334. * performs a service
  335. *
  336. * @param client to use
  337. * @param request to use
  338. * @return returns the response which has the UA_StatusCode in a UA_ResponseHeader
  339. */
  340. static UA_INLINE UA_PublishResponse
  341. UA_Client_Service_publish(UA_Client *client, const UA_PublishRequest request) {
  342. UA_PublishResponse response;
  343. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_PUBLISHREQUEST],
  344. &response, &UA_TYPES[UA_TYPES_PUBLISHRESPONSE]);
  345. return response; }
  346. #endif
  347. #ifdef __cplusplus
  348. } // extern "C"
  349. #endif
  350. #endif /* UA_CLIENT_H_ */