ua_client.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500
  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, Blue Time Concept SA
  14. * Copyright 2018 (c) Kalycito Infotech Private Limited
  15. */
  16. #ifndef UA_CLIENT_H_
  17. #define UA_CLIENT_H_
  18. #include "ua_types.h"
  19. #include "ua_types_generated.h"
  20. #include "ua_types_generated_handling.h"
  21. #include "ua_plugin_securitypolicy.h"
  22. #include "ua_plugin_network.h"
  23. #include "ua_plugin_log.h"
  24. #include "ua_client_config.h"
  25. #include "ua_nodeids.h"
  26. _UA_BEGIN_DECLS
  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. * @param securityPolicyFunction securityPolicy function
  64. * @return Returns a client configuration for secure channel */
  65. UA_Client UA_EXPORT *
  66. UA_Client_secure_new(UA_ClientConfig config, UA_ByteString certificate,
  67. UA_ByteString privateKey, const UA_ByteString *remoteCertificate,
  68. const UA_ByteString *trustList, size_t trustListSize,
  69. const UA_ByteString *revocationList, size_t revocationListSize,
  70. UA_SecurityPolicy_Func securityPolicyFunction);
  71. /* Get the client connection status */
  72. UA_ClientState UA_EXPORT
  73. UA_Client_getState(UA_Client *client);
  74. /* Get the client configuration */
  75. UA_EXPORT UA_ClientConfig *
  76. UA_Client_getConfig(UA_Client *client);
  77. /* Get the client context */
  78. static UA_INLINE void *
  79. UA_Client_getContext(UA_Client *client) {
  80. UA_ClientConfig *config = UA_Client_getConfig(client);
  81. if(!config)
  82. return NULL;
  83. return config->clientContext;
  84. }
  85. /* Reset a client */
  86. void UA_EXPORT
  87. UA_Client_reset(UA_Client *client);
  88. /* Delete a client */
  89. void UA_EXPORT
  90. UA_Client_delete(UA_Client *client);
  91. /**
  92. * Connect to a Server
  93. * ------------------- */
  94. typedef void (*UA_ClientAsyncServiceCallback)(UA_Client *client, void *userdata,
  95. UA_UInt32 requestId, void *response);
  96. /* Connect to the server
  97. *
  98. * @param client to use
  99. * @param endpointURL to connect (for example "opc.tcp://localhost:4840")
  100. * @return Indicates whether the operation succeeded or returns an error code */
  101. UA_StatusCode UA_EXPORT
  102. UA_Client_connect(UA_Client *client, const char *endpointUrl);
  103. UA_StatusCode UA_EXPORT
  104. UA_Client_connect_async (UA_Client *client, const char *endpointUrl,
  105. UA_ClientAsyncServiceCallback callback,
  106. void *connected);
  107. /* Connect to the server without creating a session
  108. *
  109. * @param client to use
  110. * @param endpointURL to connect (for example "opc.tcp://localhost:4840")
  111. * @return Indicates whether the operation succeeded or returns an error code */
  112. UA_StatusCode UA_EXPORT
  113. UA_Client_connect_noSession(UA_Client *client, const char *endpointUrl);
  114. /* Connect to the selected server with the given username and password
  115. *
  116. * @param client to use
  117. * @param endpointURL to connect (for example "opc.tcp://localhost:4840")
  118. * @param username
  119. * @param password
  120. * @return Indicates whether the operation succeeded or returns an error code */
  121. UA_StatusCode UA_EXPORT
  122. UA_Client_connect_username(UA_Client *client, const char *endpointUrl,
  123. const char *username, const char *password);
  124. /* Disconnect and close a connection to the selected server */
  125. UA_StatusCode UA_EXPORT
  126. UA_Client_disconnect(UA_Client *client);
  127. UA_StatusCode UA_EXPORT
  128. UA_Client_disconnect_async(UA_Client *client, UA_UInt32 *requestId);
  129. /* Close a connection to the selected server */
  130. UA_DEPRECATED static UA_INLINE UA_StatusCode
  131. UA_Client_close(UA_Client *client) {
  132. return UA_Client_disconnect(client);
  133. }
  134. /* Renew the underlying secure channel */
  135. UA_StatusCode UA_EXPORT
  136. UA_Client_manuallyRenewSecureChannel(UA_Client *client);
  137. /**
  138. * Discovery
  139. * --------- */
  140. /* Gets a list of endpoints of a server
  141. *
  142. * @param client to use. Must be connected to the same endpoint given in
  143. * serverUrl or otherwise in disconnected state.
  144. * @param serverUrl url to connect (for example "opc.tcp://localhost:4840")
  145. * @param endpointDescriptionsSize size of the array of endpoint descriptions
  146. * @param endpointDescriptions array of endpoint descriptions that is allocated
  147. * by the function (you need to free manually)
  148. * @return Indicates whether the operation succeeded or returns an error code */
  149. UA_StatusCode UA_EXPORT
  150. UA_Client_getEndpoints(UA_Client *client, const char *serverUrl,
  151. size_t* endpointDescriptionsSize,
  152. UA_EndpointDescription** endpointDescriptions);
  153. /* Gets a list of all registered servers at the given server.
  154. *
  155. * You can pass an optional filter for serverUris. If the given server is not registered,
  156. * an empty array will be returned. If the server is registered, only that application
  157. * description will be returned.
  158. *
  159. * Additionally you can optionally indicate which locale you want for the server name
  160. * in the returned application description. The array indicates the order of preference.
  161. * A server may have localized names.
  162. *
  163. * @param client to use. Must be connected to the same endpoint given in
  164. * serverUrl or otherwise in disconnected state.
  165. * @param serverUrl url to connect (for example "opc.tcp://localhost:4840")
  166. * @param serverUrisSize Optional filter for specific server uris
  167. * @param serverUris Optional filter for specific server uris
  168. * @param localeIdsSize Optional indication which locale you prefer
  169. * @param localeIds Optional indication which locale you prefer
  170. * @param registeredServersSize size of returned array, i.e., number of found/registered servers
  171. * @param registeredServers array containing found/registered servers
  172. * @return Indicates whether the operation succeeded or returns an error code */
  173. UA_StatusCode UA_EXPORT
  174. UA_Client_findServers(UA_Client *client, const char *serverUrl,
  175. size_t serverUrisSize, UA_String *serverUris,
  176. size_t localeIdsSize, UA_String *localeIds,
  177. size_t *registeredServersSize,
  178. UA_ApplicationDescription **registeredServers);
  179. #ifdef UA_ENABLE_DISCOVERY
  180. /* Get a list of all known server in the network. Only supported by LDS servers.
  181. *
  182. * @param client to use. Must be connected to the same endpoint given in
  183. * serverUrl or otherwise in disconnected state.
  184. * @param serverUrl url to connect (for example "opc.tcp://localhost:4840")
  185. * @param startingRecordId optional. Only return the records with an ID higher
  186. * or equal the given. Can be used for pagination to only get a subset of
  187. * the full list
  188. * @param maxRecordsToReturn optional. Only return this number of records
  189. * @param serverCapabilityFilterSize optional. Filter the returned list to only
  190. * get servers with given capabilities, e.g. "LDS"
  191. * @param serverCapabilityFilter optional. Filter the returned list to only get
  192. * servers with given capabilities, e.g. "LDS"
  193. * @param serverOnNetworkSize size of returned array, i.e., number of
  194. * known/registered servers
  195. * @param serverOnNetwork array containing known/registered servers
  196. * @return Indicates whether the operation succeeded or returns an error code */
  197. UA_StatusCode UA_EXPORT
  198. UA_Client_findServersOnNetwork(UA_Client *client, const char *serverUrl,
  199. UA_UInt32 startingRecordId, UA_UInt32 maxRecordsToReturn,
  200. size_t serverCapabilityFilterSize, UA_String *serverCapabilityFilter,
  201. size_t *serverOnNetworkSize, UA_ServerOnNetwork **serverOnNetwork);
  202. #endif
  203. /**
  204. * .. _client-services:
  205. *
  206. * Services
  207. * --------
  208. *
  209. * The raw OPC UA services are exposed to the client. But most of them time, it
  210. * is better to use the convenience functions from ``ua_client_highlevel.h``
  211. * that wrap the raw services. */
  212. /* Don't use this function. Use the type versions below instead. */
  213. void UA_EXPORT
  214. __UA_Client_Service(UA_Client *client, const void *request,
  215. const UA_DataType *requestType, void *response,
  216. const UA_DataType *responseType);
  217. /*
  218. * Attribute Service Set
  219. * ^^^^^^^^^^^^^^^^^^^^^ */
  220. static UA_INLINE UA_ReadResponse
  221. UA_Client_Service_read(UA_Client *client, const UA_ReadRequest request) {
  222. UA_ReadResponse response;
  223. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_READREQUEST],
  224. &response, &UA_TYPES[UA_TYPES_READRESPONSE]);
  225. return response;
  226. }
  227. static UA_INLINE UA_WriteResponse
  228. UA_Client_Service_write(UA_Client *client, const UA_WriteRequest request) {
  229. UA_WriteResponse response;
  230. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_WRITEREQUEST],
  231. &response, &UA_TYPES[UA_TYPES_WRITERESPONSE]);
  232. return response;
  233. }
  234. /*
  235. * Method Service Set
  236. * ^^^^^^^^^^^^^^^^^^ */
  237. #ifdef UA_ENABLE_METHODCALLS
  238. static UA_INLINE UA_CallResponse
  239. UA_Client_Service_call(UA_Client *client, const UA_CallRequest request) {
  240. UA_CallResponse response;
  241. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_CALLREQUEST],
  242. &response, &UA_TYPES[UA_TYPES_CALLRESPONSE]);
  243. return response;
  244. }
  245. #endif
  246. /*
  247. * NodeManagement Service Set
  248. * ^^^^^^^^^^^^^^^^^^^^^^^^^^ */
  249. static UA_INLINE UA_AddNodesResponse
  250. UA_Client_Service_addNodes(UA_Client *client, const UA_AddNodesRequest request) {
  251. UA_AddNodesResponse response;
  252. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_ADDNODESREQUEST],
  253. &response, &UA_TYPES[UA_TYPES_ADDNODESRESPONSE]);
  254. return response;
  255. }
  256. static UA_INLINE UA_AddReferencesResponse
  257. UA_Client_Service_addReferences(UA_Client *client,
  258. const UA_AddReferencesRequest request) {
  259. UA_AddReferencesResponse response;
  260. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_ADDREFERENCESREQUEST],
  261. &response, &UA_TYPES[UA_TYPES_ADDREFERENCESRESPONSE]);
  262. return response;
  263. }
  264. static UA_INLINE UA_DeleteNodesResponse
  265. UA_Client_Service_deleteNodes(UA_Client *client,
  266. const UA_DeleteNodesRequest request) {
  267. UA_DeleteNodesResponse response;
  268. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_DELETENODESREQUEST],
  269. &response, &UA_TYPES[UA_TYPES_DELETENODESRESPONSE]);
  270. return response;
  271. }
  272. static UA_INLINE UA_DeleteReferencesResponse
  273. UA_Client_Service_deleteReferences(UA_Client *client,
  274. const UA_DeleteReferencesRequest request) {
  275. UA_DeleteReferencesResponse response;
  276. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_DELETEREFERENCESREQUEST],
  277. &response, &UA_TYPES[UA_TYPES_DELETEREFERENCESRESPONSE]);
  278. return response;
  279. }
  280. /*
  281. * View Service Set
  282. * ^^^^^^^^^^^^^^^^ */
  283. static UA_INLINE UA_BrowseResponse
  284. UA_Client_Service_browse(UA_Client *client, const UA_BrowseRequest request) {
  285. UA_BrowseResponse response;
  286. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_BROWSEREQUEST],
  287. &response, &UA_TYPES[UA_TYPES_BROWSERESPONSE]);
  288. return response;
  289. }
  290. static UA_INLINE UA_BrowseNextResponse
  291. UA_Client_Service_browseNext(UA_Client *client,
  292. const UA_BrowseNextRequest request) {
  293. UA_BrowseNextResponse response;
  294. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_BROWSENEXTREQUEST],
  295. &response, &UA_TYPES[UA_TYPES_BROWSENEXTRESPONSE]);
  296. return response;
  297. }
  298. static UA_INLINE UA_TranslateBrowsePathsToNodeIdsResponse
  299. UA_Client_Service_translateBrowsePathsToNodeIds(UA_Client *client,
  300. const UA_TranslateBrowsePathsToNodeIdsRequest request) {
  301. UA_TranslateBrowsePathsToNodeIdsResponse response;
  302. __UA_Client_Service(client, &request,
  303. &UA_TYPES[UA_TYPES_TRANSLATEBROWSEPATHSTONODEIDSREQUEST],
  304. &response,
  305. &UA_TYPES[UA_TYPES_TRANSLATEBROWSEPATHSTONODEIDSRESPONSE]);
  306. return response;
  307. }
  308. static UA_INLINE UA_RegisterNodesResponse
  309. UA_Client_Service_registerNodes(UA_Client *client,
  310. const UA_RegisterNodesRequest request) {
  311. UA_RegisterNodesResponse response;
  312. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_REGISTERNODESREQUEST],
  313. &response, &UA_TYPES[UA_TYPES_REGISTERNODESRESPONSE]);
  314. return response;
  315. }
  316. static UA_INLINE UA_UnregisterNodesResponse
  317. UA_Client_Service_unregisterNodes(UA_Client *client,
  318. const UA_UnregisterNodesRequest request) {
  319. UA_UnregisterNodesResponse response;
  320. __UA_Client_Service(client, &request,
  321. &UA_TYPES[UA_TYPES_UNREGISTERNODESREQUEST],
  322. &response, &UA_TYPES[UA_TYPES_UNREGISTERNODESRESPONSE]);
  323. return response;
  324. }
  325. /*
  326. * Query Service Set
  327. * ^^^^^^^^^^^^^^^^^ */
  328. #ifdef UA_ENABLE_QUERY
  329. static UA_INLINE UA_QueryFirstResponse
  330. UA_Client_Service_queryFirst(UA_Client *client,
  331. const UA_QueryFirstRequest request) {
  332. UA_QueryFirstResponse response;
  333. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_QUERYFIRSTREQUEST],
  334. &response, &UA_TYPES[UA_TYPES_QUERYFIRSTRESPONSE]);
  335. return response;
  336. }
  337. static UA_INLINE UA_QueryNextResponse
  338. UA_Client_Service_queryNext(UA_Client *client,
  339. const UA_QueryNextRequest request) {
  340. UA_QueryNextResponse response;
  341. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_QUERYFIRSTREQUEST],
  342. &response, &UA_TYPES[UA_TYPES_QUERYFIRSTRESPONSE]);
  343. return response;
  344. }
  345. #endif
  346. /**
  347. * .. _client-async-services:
  348. *
  349. * Asynchronous Services
  350. * ---------------------
  351. * All OPC UA services are asynchronous in nature. So several service calls can
  352. * be made without waiting for a response first. Responess may come in a
  353. * different ordering. */
  354. /* Use the type versions of this method. See below. However, the general
  355. * mechanism of async service calls is explained here.
  356. *
  357. * We say that an async service call has been dispatched once this method
  358. * returns UA_STATUSCODE_GOOD. If there is an error after an async service has
  359. * been dispatched, the callback is called with an "empty" response where the
  360. * statusCode has been set accordingly. This is also done if the client is
  361. * shutting down and the list of dispatched async services is emptied.
  362. *
  363. * The statusCode received when the client is shutting down is
  364. * UA_STATUSCODE_BADSHUTDOWN.
  365. *
  366. * The statusCode received when the client don't receive response
  367. * after specified config->timeout (in ms) is
  368. * UA_STATUSCODE_BADTIMEOUT.
  369. *
  370. * Instead, you can use __UA_Client_AsyncServiceEx to specify
  371. * a custom timeout
  372. *
  373. * The userdata and requestId arguments can be NULL. */
  374. UA_StatusCode UA_EXPORT
  375. __UA_Client_AsyncService(UA_Client *client, const void *request,
  376. const UA_DataType *requestType,
  377. UA_ClientAsyncServiceCallback callback,
  378. const UA_DataType *responseType,
  379. void *userdata, UA_UInt32 *requestId);
  380. UA_StatusCode UA_EXPORT
  381. UA_Client_sendAsyncRequest(UA_Client *client, const void *request,
  382. const UA_DataType *requestType, UA_ClientAsyncServiceCallback callback,
  383. const UA_DataType *responseType, void *userdata, UA_UInt32 *requestId);
  384. /* Listen on the network and process arriving asynchronous responses in the
  385. * background. Internal housekeeping and subscription management is done as
  386. * well. */
  387. UA_StatusCode UA_EXPORT
  388. UA_Client_run_iterate(UA_Client *client, UA_UInt16 timeout);
  389. UA_DEPRECATED static UA_INLINE UA_StatusCode
  390. UA_Client_runAsync(UA_Client *client, UA_UInt16 timeout) {
  391. return UA_Client_run_iterate(client, timeout);
  392. }
  393. /* Use the type versions of this method. See below. However, the general
  394. * mechanism of async service calls is explained here.
  395. *
  396. * We say that an async service call has been dispatched once this method
  397. * returns UA_STATUSCODE_GOOD. If there is an error after an async service has
  398. * been dispatched, the callback is called with an "empty" response where the
  399. * statusCode has been set accordingly. This is also done if the client is
  400. * shutting down and the list of dispatched async services is emptied.
  401. *
  402. * The statusCode received when the client is shutting down is
  403. * UA_STATUSCODE_BADSHUTDOWN.
  404. *
  405. * The statusCode received when the client don't receive response
  406. * after specified timeout (in ms) is
  407. * UA_STATUSCODE_BADTIMEOUT.
  408. *
  409. * The timeout can be disabled by setting timeout to 0
  410. *
  411. * The userdata and requestId arguments can be NULL. */
  412. UA_StatusCode UA_EXPORT
  413. __UA_Client_AsyncServiceEx(UA_Client *client, const void *request,
  414. const UA_DataType *requestType,
  415. UA_ClientAsyncServiceCallback callback,
  416. const UA_DataType *responseType,
  417. void *userdata, UA_UInt32 *requestId,
  418. UA_UInt32 timeout);
  419. /**
  420. * Repeated Callbacks
  421. * ------------------
  422. * Repeated callbacks can be attached to a client and will be executed in the
  423. * defined interval. */
  424. typedef void (*UA_ClientCallback)(UA_Client *client, void *data);
  425. UA_StatusCode
  426. UA_Client_addRepeatedCallback(UA_Client *client,
  427. UA_ClientCallback callback,
  428. void *data, UA_UInt32 interval,
  429. UA_UInt64 *callbackId);
  430. UA_StatusCode
  431. UA_Client_changeRepeatedCallbackInterval(UA_Client *client,
  432. UA_UInt64 callbackId,
  433. UA_UInt32 interval);
  434. UA_StatusCode UA_Client_removeRepeatedCallback(UA_Client *client,
  435. UA_UInt64 callbackId);
  436. /**
  437. * .. toctree::
  438. *
  439. * client_highlevel
  440. * client_subscriptions */
  441. _UA_END_DECLS
  442. #endif /* UA_CLIENT_H_ */