client_firstSteps.c 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. //This file contains source-code that is discussed in a tutorial located here:
  2. //http://open62541.org/doc/sphinx/tutorial_firstStepsClient.html
  3. #include <stdio.h>
  4. #include "ua_types.h"
  5. #include "ua_server.h"
  6. #include "logger_stdout.h"
  7. #include "networklayer_tcp.h"
  8. int main(void) {
  9. UA_Client *client = UA_Client_new(UA_ClientConfig_standard, Logger_Stdout_new());
  10. UA_StatusCode retval = UA_Client_connect(client, ClientNetworkLayerTCP_connect, "opc.tcp://localhost:16664");
  11. if(retval != UA_STATUSCODE_GOOD) {
  12. UA_Client_delete(client);
  13. return retval;
  14. }
  15. //variables to store data
  16. UA_DateTime raw_date = 0;
  17. UA_String* string_date = UA_String_new();
  18. UA_ReadRequest rReq;
  19. UA_ReadRequest_init(&rReq);
  20. rReq.nodesToRead = UA_Array_new(&UA_TYPES[UA_TYPES_READVALUEID], 1);
  21. rReq.nodesToReadSize = 1;
  22. rReq.nodesToRead[0].nodeId = UA_NODEID_NUMERIC(0, 2258);
  23. rReq.nodesToRead[0].attributeId = UA_ATTRIBUTEID_VALUE;
  24. UA_ReadResponse rResp = UA_Client_read(client, &rReq);
  25. if(rResp.responseHeader.serviceResult == UA_STATUSCODE_GOOD &&
  26. rResp.resultsSize > 0 && rResp.results[0].hasValue &&
  27. UA_Variant_isScalar(&rResp.results[0].value) &&
  28. rResp.results[0].value.type == &UA_TYPES[UA_TYPES_DATETIME]) {
  29. raw_date = *(UA_DateTime*)rResp.results[0].value.data;
  30. #ifdef _WIN32
  31. printf("raw date is: %I64u\n", raw_date);
  32. #else
  33. printf("raw date is: %llu\n", raw_date);
  34. #endif
  35. UA_DateTime_toString(raw_date, string_date);
  36. printf("string date is: %.*s\n", string_date->length, string_date->data);
  37. }
  38. UA_ReadRequest_deleteMembers(&rReq);
  39. UA_ReadResponse_deleteMembers(&rResp);
  40. UA_String_delete(string_date);
  41. UA_Client_disconnect(client);
  42. UA_Client_delete(client);
  43. return 0;
  44. }