ua_client.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443
  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 2015-2017 (c) Fraunhofer IOSB (Author: Julius Pfrommer)
  6. * Copyright 2015-2016 (c) Sten Grüner
  7. * Copyright 2015-2016 (c) Chris Iatrou
  8. * Copyright 2015-2017 (c) Florian Palm
  9. * Copyright 2015 (c) Holger Jeromin
  10. * Copyright 2015 (c) Oleksiy Vasylyev
  11. * Copyright 2017 (c) Stefan Profanter, fortiss GmbH
  12. * Copyright 2017 (c) Mark Giraud, Fraunhofer IOSB
  13. * Copyright 2018 (c) Thomas Stalder
  14. * Copyright 2018 (c) Kalycito Infotech Private Limited
  15. */
  16. #ifndef UA_CLIENT_H_
  17. #define UA_CLIENT_H_
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21. #include "ua_types.h"
  22. #include "ua_types_generated.h"
  23. #include "ua_types_generated_handling.h"
  24. #include "ua_plugin_network.h"
  25. #include "ua_plugin_log.h"
  26. #include "ua_client_config.h"
  27. /**
  28. * .. _client:
  29. *
  30. * Client
  31. * ======
  32. *
  33. * The client implementation allows remote access to all OPC UA services. For
  34. * convenience, some functionality has been wrapped in :ref:`high-level
  35. * abstractions <client-highlevel>`.
  36. *
  37. * **However**: At this time, the client does not yet contain its own thread or
  38. * event-driven main-loop. So the client will not perform any actions
  39. * automatically in the background. This is especially relevant for
  40. * subscriptions. The user will have to periodically call
  41. * `UA_Client_Subscriptions_manuallySendPublishRequest`. See also :ref:`here
  42. * <client-subscriptions>`.
  43. *
  44. *
  45. * .. include:: client_config.rst
  46. *
  47. * Client Lifecycle
  48. * ---------------- */
  49. /* Create a new client */
  50. UA_Client UA_EXPORT *
  51. UA_Client_new(UA_ClientConfig config);
  52. /* Creates a new secure client with the required configuration, certificate
  53. * privatekey, trustlist and revocation list.
  54. *
  55. * @param config new secure configuration for client
  56. * @param certificate client certificate
  57. * @param privateKey client's private key
  58. * @param remoteCertificate server certificate form the endpoints
  59. * @param trustList list of trustable certificate
  60. * @param trustListSize count of trustList
  61. * @param revocationList list of revoked digital certificate
  62. * @param revocationListSize count of revocationList
  63. * @return Returns a client configuration for secure channel */
  64. UA_Client UA_EXPORT *
  65. UA_Client_secure_new(UA_ClientConfig config, UA_ByteString certificate,
  66. UA_ByteString privateKey, const UA_ByteString *remoteCertificate,
  67. const UA_ByteString *trustList, size_t trustListSize,
  68. const UA_ByteString *revocationList, size_t revocationListSize);
  69. /* Get the client connection status */
  70. UA_ClientState UA_EXPORT
  71. UA_Client_getState(UA_Client *client);
  72. /* Get the client context */
  73. void UA_EXPORT *
  74. UA_Client_getContext(UA_Client *client);
  75. /* Reset a client */
  76. void UA_EXPORT
  77. UA_Client_reset(UA_Client *client);
  78. /* Delete a client */
  79. void UA_EXPORT
  80. UA_Client_delete(UA_Client *client);
  81. /**
  82. * Connect to a Server
  83. * ------------------- */
  84. /* Connect to the server
  85. *
  86. * @param client to use
  87. * @param endpointURL to connect (for example "opc.tcp://localhost:4840")
  88. * @return Indicates whether the operation succeeded or returns an error code */
  89. UA_StatusCode UA_EXPORT
  90. UA_Client_connect(UA_Client *client, const char *endpointUrl);
  91. /* Connect to the selected server with the given username and password
  92. *
  93. * @param client to use
  94. * @param endpointURL to connect (for example "opc.tcp://localhost:4840")
  95. * @param username
  96. * @param password
  97. * @return Indicates whether the operation succeeded or returns an error code */
  98. UA_StatusCode UA_EXPORT
  99. UA_Client_connect_username(UA_Client *client, const char *endpointUrl,
  100. const char *username, const char *password);
  101. /* Disconnect and close a connection to the selected server */
  102. UA_StatusCode UA_EXPORT
  103. UA_Client_disconnect(UA_Client *client);
  104. /* Close a connection to the selected server */
  105. UA_StatusCode UA_EXPORT
  106. UA_Client_close(UA_Client *client);
  107. /* Renew the underlying secure channel */
  108. UA_StatusCode UA_EXPORT
  109. UA_Client_manuallyRenewSecureChannel(UA_Client *client);
  110. /**
  111. * Discovery
  112. * --------- */
  113. /* Gets a list of endpoints of a server
  114. *
  115. * @param client to use. Must be connected to the same endpoint given in
  116. * serverUrl or otherwise in disconnected state.
  117. * @param serverUrl url to connect (for example "opc.tcp://localhost:4840")
  118. * @param endpointDescriptionsSize size of the array of endpoint descriptions
  119. * @param endpointDescriptions array of endpoint descriptions that is allocated
  120. * by the function (you need to free manually)
  121. * @return Indicates whether the operation succeeded or returns an error code */
  122. UA_StatusCode UA_EXPORT
  123. UA_Client_getEndpoints(UA_Client *client, const char *serverUrl,
  124. size_t* endpointDescriptionsSize,
  125. UA_EndpointDescription** endpointDescriptions);
  126. /* Gets a list of all registered servers at the given server.
  127. *
  128. * You can pass an optional filter for serverUris. If the given server is not registered,
  129. * an empty array will be returned. If the server is registered, only that application
  130. * description will be returned.
  131. *
  132. * Additionally you can optionally indicate which locale you want for the server name
  133. * in the returned application description. The array indicates the order of preference.
  134. * A server may have localized names.
  135. *
  136. * @param client to use. Must be connected to the same endpoint given in
  137. * serverUrl or otherwise in disconnected state.
  138. * @param serverUrl url to connect (for example "opc.tcp://localhost:4840")
  139. * @param serverUrisSize Optional filter for specific server uris
  140. * @param serverUris Optional filter for specific server uris
  141. * @param localeIdsSize Optional indication which locale you prefer
  142. * @param localeIds Optional indication which locale you prefer
  143. * @param registeredServersSize size of returned array, i.e., number of found/registered servers
  144. * @param registeredServers array containing found/registered servers
  145. * @return Indicates whether the operation succeeded or returns an error code */
  146. UA_StatusCode UA_EXPORT
  147. UA_Client_findServers(UA_Client *client, const char *serverUrl,
  148. size_t serverUrisSize, UA_String *serverUris,
  149. size_t localeIdsSize, UA_String *localeIds,
  150. size_t *registeredServersSize,
  151. UA_ApplicationDescription **registeredServers);
  152. /* Get a list of all known server in the network. Only supported by LDS servers.
  153. *
  154. * @param client to use. Must be connected to the same endpoint given in
  155. * serverUrl or otherwise in disconnected state.
  156. * @param serverUrl url to connect (for example "opc.tcp://localhost:4840")
  157. * @param startingRecordId optional. Only return the records with an ID higher
  158. * or equal the given. Can be used for pagination to only get a subset of
  159. * the full list
  160. * @param maxRecordsToReturn optional. Only return this number of records
  161. * @param serverCapabilityFilterSize optional. Filter the returned list to only
  162. * get servers with given capabilities, e.g. "LDS"
  163. * @param serverCapabilityFilter optional. Filter the returned list to only get
  164. * servers with given capabilities, e.g. "LDS"
  165. * @param serverOnNetworkSize size of returned array, i.e., number of
  166. * known/registered servers
  167. * @param serverOnNetwork array containing known/registered servers
  168. * @return Indicates whether the operation succeeded or returns an error code */
  169. UA_StatusCode UA_EXPORT
  170. UA_Client_findServersOnNetwork(UA_Client *client, const char *serverUrl,
  171. UA_UInt32 startingRecordId, UA_UInt32 maxRecordsToReturn,
  172. size_t serverCapabilityFilterSize, UA_String *serverCapabilityFilter,
  173. size_t *serverOnNetworkSize, UA_ServerOnNetwork **serverOnNetwork);
  174. /**
  175. * .. _client-services:
  176. *
  177. * Services
  178. * --------
  179. *
  180. * The raw OPC UA services are exposed to the client. But most of them time, it
  181. * is better to use the convenience functions from ``ua_client_highlevel.h``
  182. * that wrap the raw services. */
  183. /* Don't use this function. Use the type versions below instead. */
  184. void UA_EXPORT
  185. __UA_Client_Service(UA_Client *client, const void *request,
  186. const UA_DataType *requestType, void *response,
  187. const UA_DataType *responseType);
  188. /*
  189. * Attribute Service Set
  190. * ^^^^^^^^^^^^^^^^^^^^^ */
  191. static UA_INLINE UA_ReadResponse
  192. UA_Client_Service_read(UA_Client *client, const UA_ReadRequest request) {
  193. UA_ReadResponse response;
  194. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_READREQUEST],
  195. &response, &UA_TYPES[UA_TYPES_READRESPONSE]);
  196. return response;
  197. }
  198. static UA_INLINE UA_WriteResponse
  199. UA_Client_Service_write(UA_Client *client, const UA_WriteRequest request) {
  200. UA_WriteResponse response;
  201. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_WRITEREQUEST],
  202. &response, &UA_TYPES[UA_TYPES_WRITERESPONSE]);
  203. return response;
  204. }
  205. /*
  206. * Method Service Set
  207. * ^^^^^^^^^^^^^^^^^^ */
  208. #ifdef UA_ENABLE_METHODCALLS
  209. static UA_INLINE UA_CallResponse
  210. UA_Client_Service_call(UA_Client *client, const UA_CallRequest request) {
  211. UA_CallResponse response;
  212. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_CALLREQUEST],
  213. &response, &UA_TYPES[UA_TYPES_CALLRESPONSE]);
  214. return response;
  215. }
  216. #endif
  217. /*
  218. * NodeManagement Service Set
  219. * ^^^^^^^^^^^^^^^^^^^^^^^^^^ */
  220. static UA_INLINE UA_AddNodesResponse
  221. UA_Client_Service_addNodes(UA_Client *client, const UA_AddNodesRequest request) {
  222. UA_AddNodesResponse response;
  223. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_ADDNODESREQUEST],
  224. &response, &UA_TYPES[UA_TYPES_ADDNODESRESPONSE]);
  225. return response;
  226. }
  227. static UA_INLINE UA_AddReferencesResponse
  228. UA_Client_Service_addReferences(UA_Client *client,
  229. const UA_AddReferencesRequest request) {
  230. UA_AddReferencesResponse response;
  231. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_ADDREFERENCESREQUEST],
  232. &response, &UA_TYPES[UA_TYPES_ADDREFERENCESRESPONSE]);
  233. return response;
  234. }
  235. static UA_INLINE UA_DeleteNodesResponse
  236. UA_Client_Service_deleteNodes(UA_Client *client,
  237. const UA_DeleteNodesRequest request) {
  238. UA_DeleteNodesResponse response;
  239. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_DELETENODESREQUEST],
  240. &response, &UA_TYPES[UA_TYPES_DELETENODESRESPONSE]);
  241. return response;
  242. }
  243. static UA_INLINE UA_DeleteReferencesResponse
  244. UA_Client_Service_deleteReferences(UA_Client *client,
  245. const UA_DeleteReferencesRequest request) {
  246. UA_DeleteReferencesResponse response;
  247. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_DELETEREFERENCESREQUEST],
  248. &response, &UA_TYPES[UA_TYPES_DELETEREFERENCESRESPONSE]);
  249. return response;
  250. }
  251. /*
  252. * View Service Set
  253. * ^^^^^^^^^^^^^^^^ */
  254. static UA_INLINE UA_BrowseResponse
  255. UA_Client_Service_browse(UA_Client *client, const UA_BrowseRequest request) {
  256. UA_BrowseResponse response;
  257. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_BROWSEREQUEST],
  258. &response, &UA_TYPES[UA_TYPES_BROWSERESPONSE]);
  259. return response;
  260. }
  261. static UA_INLINE UA_BrowseNextResponse
  262. UA_Client_Service_browseNext(UA_Client *client,
  263. const UA_BrowseNextRequest request) {
  264. UA_BrowseNextResponse response;
  265. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_BROWSENEXTREQUEST],
  266. &response, &UA_TYPES[UA_TYPES_BROWSENEXTRESPONSE]);
  267. return response;
  268. }
  269. static UA_INLINE UA_TranslateBrowsePathsToNodeIdsResponse
  270. UA_Client_Service_translateBrowsePathsToNodeIds(UA_Client *client,
  271. const UA_TranslateBrowsePathsToNodeIdsRequest request) {
  272. UA_TranslateBrowsePathsToNodeIdsResponse response;
  273. __UA_Client_Service(client, &request,
  274. &UA_TYPES[UA_TYPES_TRANSLATEBROWSEPATHSTONODEIDSREQUEST],
  275. &response,
  276. &UA_TYPES[UA_TYPES_TRANSLATEBROWSEPATHSTONODEIDSRESPONSE]);
  277. return response;
  278. }
  279. static UA_INLINE UA_RegisterNodesResponse
  280. UA_Client_Service_registerNodes(UA_Client *client,
  281. const UA_RegisterNodesRequest request) {
  282. UA_RegisterNodesResponse response;
  283. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_REGISTERNODESREQUEST],
  284. &response, &UA_TYPES[UA_TYPES_REGISTERNODESRESPONSE]);
  285. return response;
  286. }
  287. static UA_INLINE UA_UnregisterNodesResponse
  288. UA_Client_Service_unregisterNodes(UA_Client *client,
  289. const UA_UnregisterNodesRequest request) {
  290. UA_UnregisterNodesResponse response;
  291. __UA_Client_Service(client, &request,
  292. &UA_TYPES[UA_TYPES_UNREGISTERNODESREQUEST],
  293. &response, &UA_TYPES[UA_TYPES_UNREGISTERNODESRESPONSE]);
  294. return response;
  295. }
  296. /*
  297. * Query Service Set
  298. * ^^^^^^^^^^^^^^^^^ */
  299. static UA_INLINE UA_QueryFirstResponse
  300. UA_Client_Service_queryFirst(UA_Client *client,
  301. const UA_QueryFirstRequest request) {
  302. UA_QueryFirstResponse response;
  303. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_QUERYFIRSTREQUEST],
  304. &response, &UA_TYPES[UA_TYPES_QUERYFIRSTRESPONSE]);
  305. return response;
  306. }
  307. static UA_INLINE UA_QueryNextResponse
  308. UA_Client_Service_queryNext(UA_Client *client,
  309. const UA_QueryNextRequest request) {
  310. UA_QueryNextResponse response;
  311. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_QUERYFIRSTREQUEST],
  312. &response, &UA_TYPES[UA_TYPES_QUERYFIRSTRESPONSE]);
  313. return response;
  314. }
  315. /**
  316. * .. _client-async-services:
  317. *
  318. * Asynchronous Services
  319. * ---------------------
  320. * All OPC UA services are asynchronous in nature. So several service calls can
  321. * be made without waiting for a response first. Responess may come in a
  322. * different ordering. */
  323. /* Listen on the network and process arriving asynchronous responses in the
  324. * background. Internal housekeeping and subscription management is done as
  325. * well. */
  326. UA_StatusCode UA_EXPORT
  327. UA_Client_runAsync(UA_Client *client, UA_UInt16 timeout);
  328. typedef void
  329. (*UA_ClientAsyncServiceCallback)(UA_Client *client, void *userdata,
  330. UA_UInt32 requestId, void *response,
  331. const UA_DataType *responseType);
  332. /* Use the type versions of this method. See below. However, the general
  333. * mechanism of async service calls is explained here.
  334. *
  335. * We say that an async service call has been dispatched once this method
  336. * returns UA_STATUSCODE_GOOD. If there is an error after an async service has
  337. * been dispatched, the callback is called with an "empty" response where the
  338. * statusCode has been set accordingly. This is also done if the client is
  339. * shutting down and the list of dispatched async services is emptied.
  340. *
  341. * The statusCode received when the client is shutting down is
  342. * UA_STATUSCODE_BADSHUTDOWN.
  343. *
  344. * The userdata and requestId arguments can be NULL. */
  345. UA_StatusCode UA_EXPORT
  346. __UA_Client_AsyncService(UA_Client *client, const void *request,
  347. const UA_DataType *requestType,
  348. UA_ClientAsyncServiceCallback callback,
  349. const UA_DataType *responseType,
  350. void *userdata, UA_UInt32 *requestId);
  351. static UA_INLINE UA_StatusCode
  352. UA_Client_AsyncService_read(UA_Client *client, const UA_ReadRequest *request,
  353. UA_ClientAsyncServiceCallback callback,
  354. void *userdata, UA_UInt32 *requestId) {
  355. return __UA_Client_AsyncService(client, (const void*)request,
  356. &UA_TYPES[UA_TYPES_READREQUEST], callback,
  357. &UA_TYPES[UA_TYPES_READRESPONSE],
  358. userdata, requestId);
  359. }
  360. static UA_INLINE UA_StatusCode
  361. UA_Client_AsyncService_write(UA_Client *client, const UA_WriteRequest *request,
  362. UA_ClientAsyncServiceCallback callback,
  363. void *userdata, UA_UInt32 *requestId) {
  364. return __UA_Client_AsyncService(client, (const void*)request,
  365. &UA_TYPES[UA_TYPES_WRITEREQUEST], callback,
  366. &UA_TYPES[UA_TYPES_WRITERESPONSE],
  367. userdata, requestId);
  368. }
  369. static UA_INLINE UA_StatusCode
  370. UA_Client_AsyncService_call(UA_Client *client, const UA_CallRequest *request,
  371. UA_ClientAsyncServiceCallback callback,
  372. void *userdata, UA_UInt32 *requestId) {
  373. return __UA_Client_AsyncService(client, (const void*)request,
  374. &UA_TYPES[UA_TYPES_CALLREQUEST], callback,
  375. &UA_TYPES[UA_TYPES_CALLRESPONSE],
  376. userdata, requestId);
  377. }
  378. static UA_INLINE UA_StatusCode
  379. UA_Client_AsyncService_browse(UA_Client *client, const UA_BrowseRequest *request,
  380. UA_ClientAsyncServiceCallback callback,
  381. void *userdata, UA_UInt32 *requestId) {
  382. return __UA_Client_AsyncService(client, (const void*)request,
  383. &UA_TYPES[UA_TYPES_BROWSEREQUEST], callback,
  384. &UA_TYPES[UA_TYPES_BROWSERESPONSE],
  385. userdata, requestId);
  386. }
  387. /**
  388. * .. toctree::
  389. *
  390. * client_highlevel
  391. * client_subscriptions */
  392. #ifdef __cplusplus
  393. } // extern "C"
  394. #endif
  395. #endif /* UA_CLIENT_H_ */