forked from open62541/open62541
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient_json_config.c
More file actions
85 lines (73 loc) · 3.23 KB
/
client_json_config.c
File metadata and controls
85 lines (73 loc) · 3.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/* This work is licensed under a Creative Commons CCZero 1.0 Universal License.
* See http://creativecommons.org/publicdomain/zero/1.0/ for more information. */
#include <open62541/client.h>
#include <open62541/client_highlevel.h>
#include <open62541/client_config_default.h>
#include <open62541/plugin/log_stdout.h>
#include <stdlib.h>
#include "common.h"
int main(int argc, char** argv) {
UA_ByteString json_config = UA_BYTESTRING_NULL;
if(argc >= 2) {
/* Load client config */
json_config = loadFile(argv[1]);
if (UA_String_isEmpty(&json_config)) {
UA_LOG_FATAL(UA_Log_Stdout, UA_LOGCATEGORY_APPLICATION,
"Failed to load the client configuration from file '%s'.",
argv[1]);
return EXIT_FAILURE;
}
} else {
UA_LOG_FATAL(UA_Log_Stdout, UA_LOGCATEGORY_APPLICATION,
"Missing argument. Argument are "
"<client-config.json5>");
return EXIT_FAILURE;
}
/*
* Create the client directly from the JSON file. Alternatively, the configuration
* can be loaded into a UA_ClientConfig and then used to create the client. The
* following is identical to the line below:
*
* UA_ClientConfig clientConfig;
* UA_StatusCode res = UA_ClientConfig_loadFromFile(&clientConfig, json_config);
* UA_Client *client = UA_Client_new(&clientConfig);
*
*/
UA_Client *client = UA_Client_newFromFile(json_config);
/* identical to first steps example */
UA_StatusCode retval = UA_Client_connect(client, "opc.tcp://localhost:4840");
if(retval != UA_STATUSCODE_GOOD) {
UA_LOG_INFO(UA_Log_Stdout, UA_LOGCATEGORY_APPLICATION,
"The connection failed with status code %s",
UA_StatusCode_name(retval));
UA_Client_delete(client);
UA_ByteString_clear(&json_config);
return 0;
}
/* Read the value attribute of the node. UA_Client_readValueAttribute is a
* wrapper for the raw read service available as UA_Client_Service_read. */
UA_Variant value;
UA_Variant_init(&value);
/* NodeId of the variable holding the current time */
const UA_NodeId nodeId = UA_NS0ID(SERVER_SERVERSTATUS_CURRENTTIME);
retval = UA_Client_readValueAttribute(client, nodeId, &value);
if(retval == UA_STATUSCODE_GOOD &&
UA_Variant_hasScalarType(&value, &UA_TYPES[UA_TYPES_DATETIME])) {
UA_DateTime raw_date = *(UA_DateTime *) value.data;
UA_DateTimeStruct dts = UA_DateTime_toStruct(raw_date);
UA_LOG_INFO(UA_Log_Stdout, UA_LOGCATEGORY_APPLICATION,
"date is: %u-%u-%u %u:%u:%u.%03u",
dts.day, dts.month, dts.year, dts.hour,
dts.min, dts.sec, dts.milliSec);
} else {
UA_LOG_INFO(UA_Log_Stdout, UA_LOGCATEGORY_APPLICATION,
"Reading the value failed with status code %s",
UA_StatusCode_name(retval));
}
/* Clean up */
UA_Variant_clear(&value);
UA_Client_delete(client); /* Disconnects the client internally */
/* clean up */
UA_ByteString_clear(&json_config);
return retval == UA_STATUSCODE_GOOD ? EXIT_SUCCESS : EXIT_FAILURE;
}