ua_client.h 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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_log.h"
  10. #include "ua_types_generated.h"
  11. struct UA_Client;
  12. typedef struct UA_Client UA_Client;
  13. /**
  14. * The client networklayer is defined by a single function that fills a UA_Connection struct after
  15. * successfully connecting.
  16. */
  17. typedef UA_Connection (*UA_ConnectClientConnection)(UA_ConnectionConfig localConf, char *endpointUrl,
  18. UA_Logger *logger);
  19. typedef struct UA_ClientConfig {
  20. UA_Int32 timeout; //sync response timeout
  21. UA_Int32 secureChannelLifeTime; // lifetime in ms (then the channel needs to be renewed)
  22. UA_Int32 timeToRenewSecureChannel; //time in ms before expiration to renew the secure channel
  23. UA_ConnectionConfig localConnectionConfig;
  24. } UA_ClientConfig;
  25. extern UA_EXPORT const UA_ClientConfig UA_ClientConfig_standard;
  26. UA_Client UA_EXPORT * UA_Client_new(UA_ClientConfig config, UA_Logger logger);
  27. UA_EXPORT void UA_Client_delete(UA_Client* client);
  28. UA_StatusCode UA_EXPORT UA_Client_connect(UA_Client *client, UA_ConnectClientConnection connFunc, char *endpointUrl);
  29. UA_StatusCode UA_EXPORT UA_Client_disconnect(UA_Client *client);
  30. UA_StatusCode UA_EXPORT UA_Client_renewSecureChannel(UA_Client *client);
  31. /* Attribute Service Set */
  32. UA_ReadResponse UA_EXPORT UA_Client_read(UA_Client *client, UA_ReadRequest *request);
  33. UA_WriteResponse UA_EXPORT UA_Client_write(UA_Client *client, UA_WriteRequest *request);
  34. /* View Service Set */
  35. UA_BrowseResponse UA_EXPORT UA_Client_browse(UA_Client *client, UA_BrowseRequest *request);
  36. UA_BrowseNextResponse UA_EXPORT UA_Client_browseNext(UA_Client *client, UA_BrowseNextRequest *request);
  37. UA_TranslateBrowsePathsToNodeIdsResponse UA_EXPORT
  38. UA_Client_translateTranslateBrowsePathsToNodeIds(UA_Client *client,
  39. UA_TranslateBrowsePathsToNodeIdsRequest *request);
  40. /* NodeManagement Service Set */
  41. UA_AddNodesResponse UA_EXPORT UA_Client_addNodes(UA_Client *client, UA_AddNodesRequest *request);
  42. UA_AddReferencesResponse UA_EXPORT
  43. UA_Client_addReferences(UA_Client *client, UA_AddReferencesRequest *request);
  44. UA_DeleteNodesResponse UA_EXPORT UA_Client_deleteNodes(UA_Client *client, UA_DeleteNodesRequest *request);
  45. UA_DeleteReferencesResponse UA_EXPORT
  46. UA_Client_deleteReferences(UA_Client *client, UA_DeleteReferencesRequest *request);
  47. #ifdef __cplusplus
  48. } // extern "C"
  49. #endif
  50. #ifdef ENABLE_SUBSCRIPTIONS
  51. typedef struct UA_Client_NotificationsAckNumber_s {
  52. UA_SubscriptionAcknowledgement subAck;
  53. LIST_ENTRY(UA_Client_NotificationsAckNumber_s) listEntry;
  54. } UA_Client_NotificationsAckNumber;
  55. typedef struct UA_Client_MonitoredItem_s {
  56. UA_UInt32 MonitoredItemId;
  57. UA_UInt32 MonitoringMode;
  58. UA_NodeId monitoredNodeId;
  59. UA_UInt32 AttributeID;
  60. UA_UInt32 ClientHandle;
  61. UA_UInt32 SamplingInterval;
  62. UA_UInt32 QueueSize;
  63. UA_Boolean DiscardOldest;
  64. void (*handler)(UA_UInt32 handle, UA_DataValue *value);
  65. LIST_ENTRY(UA_Client_MonitoredItem_s) listEntry;
  66. } UA_Client_MonitoredItem;
  67. typedef struct UA_Client_Subscription_s {
  68. UA_UInt32 LifeTime;
  69. UA_Int32 KeepAliveCount;
  70. UA_DateTime PublishingInterval;
  71. UA_UInt32 SubscriptionID;
  72. UA_Int32 NotificationsPerPublish;
  73. UA_UInt32 Priority;
  74. LIST_ENTRY(UA_Client_Subscription_s) listEntry;
  75. LIST_HEAD(UA_ListOfUAMonitoredItems, UA_Client_MonitoredItem_s) MonitoredItems;
  76. } UA_Client_Subscription;
  77. UA_CreateSubscriptionResponse UA_EXPORT UA_Client_createSubscription(UA_Client *client, UA_CreateSubscriptionRequest *request);
  78. UA_ModifySubscriptionResponse UA_EXPORT UA_Client_modifySubscription(UA_Client *client, UA_ModifySubscriptionRequest *request);
  79. UA_DeleteSubscriptionsResponse UA_EXPORT UA_Client_deleteSubscriptions(UA_Client *client, UA_DeleteSubscriptionsRequest *request);
  80. UA_CreateMonitoredItemsResponse UA_EXPORT UA_Client_createMonitoredItems(UA_Client *client, UA_CreateMonitoredItemsRequest *request);
  81. UA_DeleteMonitoredItemsResponse UA_EXPORT UA_Client_deleteMonitoredItems(UA_Client *client, UA_DeleteMonitoredItemsRequest *request);
  82. UA_PublishResponse UA_EXPORT UA_Client_publish(UA_Client *client, UA_PublishRequest *request);
  83. UA_Int32 UA_EXPORT UA_Client_newSubscription(UA_Client *client, UA_Int32 publishInterval);
  84. UA_StatusCode UA_EXPORT UA_Client_removeSubscription(UA_Client *client, UA_UInt32 subscriptionId);
  85. //void UA_EXPORT UA_Client_modifySubscription(UA_Client *client);
  86. UA_UInt32 UA_EXPORT UA_Client_monitorItemChanges(UA_Client *client, UA_UInt32 subscriptionId,
  87. UA_NodeId nodeId, UA_UInt32 attributeID,
  88. void *handlingFunction);
  89. UA_StatusCode UA_EXPORT UA_Client_unMonitorItemChanges(UA_Client *client, UA_UInt32 subscriptionId,
  90. UA_UInt32 monitoredItemId );
  91. void UA_EXPORT UA_Client_doPublish(UA_Client *client);
  92. UA_Boolean UA_Client_processPublishRx(UA_Client *client, UA_PublishResponse response);
  93. #endif
  94. #endif /* UA_CLIENT_H_ */