ua_client.h 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. #ifndef UA_CLIENT_H_
  2. #define UA_CLIENT_H_
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include "ua_util.h"
  7. #include "ua_types.h"
  8. #include "ua_connection.h"
  9. #include "ua_types_generated.h"
  10. /**
  11. * The client networklayer can handle only a single connection. The networklayer
  12. * is only concerned with getting messages to the client and receiving them.
  13. */
  14. typedef struct {
  15. void *nlHandle;
  16. UA_StatusCode (*connect)(const UA_String endpointUrl, void **resultHandle);
  17. void (*disconnect)(void *handle);
  18. void (*delete)(void *handle);
  19. UA_StatusCode (*send)(void *handle, UA_ByteStringArray gather_buf);
  20. // the response buffer exists on the heap. the size shall correspond the the connection settings
  21. UA_StatusCode (*awaitResponse)(void *handle, UA_ByteString *response, UA_UInt32 timeout);
  22. } UA_ClientNetworkLayer;
  23. struct UA_Client;
  24. typedef struct UA_Client UA_Client;
  25. UA_Client UA_EXPORT * UA_Client_new(void);
  26. void UA_Client_delete(UA_Client* client);
  27. UA_StatusCode UA_EXPORT UA_Client_connect(UA_Client *client, UA_ConnectionConfig conf,
  28. UA_ClientNetworkLayer networkLayer, char *endpointUrl);
  29. UA_StatusCode UA_EXPORT UA_Client_disconnect(UA_Client *client);
  30. typedef enum {
  31. UA_ATTRIBUTEID_NODEID = 1,
  32. UA_ATTRIBUTEID_NODECLASS = 2,
  33. UA_ATTRIBUTEID_BROWSENAME = 3,
  34. UA_ATTRIBUTEID_DISPLAYNAME = 4,
  35. UA_ATTRIBUTEID_DESCRIPTION = 5,
  36. UA_ATTRIBUTEID_WRITEMASK = 6,
  37. UA_ATTRIBUTEID_USERWRITEMASK = 7,
  38. UA_ATTRIBUTEID_ISABSTRACT = 8,
  39. UA_ATTRIBUTEID_SYMMETRIC = 9,
  40. UA_ATTRIBUTEID_INVERSENAME = 10,
  41. UA_ATTRIBUTEID_CONTAINSNOLOOPS = 11,
  42. UA_ATTRIBUTEID_EVENTNOTIFIER = 12,
  43. UA_ATTRIBUTEID_VALUE = 13,
  44. UA_ATTRIBUTEID_DATATYPE = 14,
  45. UA_ATTRIBUTEID_VALUERANK = 15,
  46. UA_ATTRIBUTEID_ARRAYDIMENSIONS = 16,
  47. UA_ATTRIBUTEID_ACCESSLEVEL = 17,
  48. UA_ATTRIBUTEID_USERACCESSLEVEL = 18,
  49. UA_ATTRIBUTEID_MINIMUMSAMPLINGINTERVAL = 19,
  50. UA_ATTRIBUTEID_HISTORIZING = 20,
  51. UA_ATTRIBUTEID_EXECUTABLE = 21,
  52. UA_ATTRIBUTEID_USEREXECUTABLE = 22
  53. } UA_AttributeId;
  54. /* Attribute Service Set */
  55. UA_ReadResponse UA_EXPORT UA_Client_read(UA_Client *client, const UA_ReadRequest *request);
  56. UA_WriteResponse UA_EXPORT UA_Client_write(UA_Client *client, const UA_WriteRequest *request);
  57. /* View Service Set */
  58. UA_BrowseResponse UA_EXPORT UA_Client_browse(UA_Client *client, const UA_BrowseRequest *request);
  59. UA_TranslateBrowsePathsToNodeIdsResponse UA_EXPORT UA_Client_translateBrowsePathsToNodeIds(UA_Client *client,
  60. const UA_TranslateBrowsePathsToNodeIdsRequest *request);
  61. /* NodeManagement Service Set */
  62. UA_AddNodesResponse UA_EXPORT UA_Client_addNodes(UA_Client *client, const UA_AddNodesRequest *request);
  63. UA_AddReferencesResponse UA_EXPORT
  64. UA_Client_addReferences(UA_Client *client, const UA_AddReferencesRequest *request);
  65. UA_DeleteNodesResponse UA_EXPORT UA_Client_deleteNodes(UA_Client *client, const UA_DeleteNodesRequest *request);
  66. UA_DeleteReferencesResponse UA_EXPORT
  67. UA_Client_deleteReferences(UA_Client *client, const UA_DeleteReferencesRequest *request);
  68. #ifdef __cplusplus
  69. } // extern "C"
  70. #endif
  71. #endif /* UA_CLIENT_H_ */