server_datasource.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /*
  2. * This work is licensed under a Creative Commons CCZero 1.0 Universal License.
  3. * See http://creativecommons.org/publicdomain/zero/1.0/ for more information.
  4. */
  5. #include <signal.h>
  6. #include <stdio.h>
  7. #ifdef UA_NO_AMALGAMATION
  8. # include "ua_types.h"
  9. # include "ua_server.h"
  10. # include "logger_stdout.h"
  11. # include "networklayer_tcp.h"
  12. #else
  13. # include "open62541.h"
  14. #endif
  15. UA_Boolean running = true;
  16. UA_Logger logger = Logger_Stdout;
  17. static void stopHandler(int sign) {
  18. UA_LOG_INFO(logger, UA_LOGCATEGORY_SERVER, "received ctrl-c");
  19. running = false;
  20. }
  21. static UA_StatusCode
  22. readInteger(void *handle, const UA_NodeId nodeid, UA_Boolean sourceTimeStamp,
  23. const UA_NumericRange *range, UA_DataValue *dataValue) {
  24. dataValue->hasValue = true;
  25. UA_Variant_setScalarCopy(&dataValue->value, (UA_UInt32*)handle, &UA_TYPES[UA_TYPES_INT32]);
  26. // we know the nodeid is a string
  27. UA_LOG_INFO(logger, UA_LOGCATEGORY_USERLAND, "Node read %.*s",
  28. nodeid.identifier.string.length, nodeid.identifier.string.data);
  29. UA_LOG_INFO(logger, UA_LOGCATEGORY_USERLAND, "read value %i", *(UA_UInt32*)handle);
  30. return UA_STATUSCODE_GOOD;
  31. }
  32. static UA_StatusCode
  33. writeInteger(void *handle, const UA_NodeId nodeid,
  34. const UA_Variant *data, const UA_NumericRange *range) {
  35. if(UA_Variant_isScalar(data) && data->type == &UA_TYPES[UA_TYPES_INT32] && data->data){
  36. *(UA_UInt32*)handle = *(UA_UInt32*)data->data;
  37. }
  38. // we know the nodeid is a string
  39. UA_LOG_INFO(logger, UA_LOGCATEGORY_USERLAND, "Node written %.*s",
  40. nodeid.identifier.string.length, nodeid.identifier.string.data);
  41. UA_LOG_INFO(logger, UA_LOGCATEGORY_USERLAND, "written value %i", *(UA_UInt32*)handle);
  42. return UA_STATUSCODE_GOOD;
  43. }
  44. int main(int argc, char** argv) {
  45. signal(SIGINT, stopHandler); /* catches ctrl-c */
  46. UA_ServerConfig config = UA_ServerConfig_standard;
  47. UA_ServerNetworkLayer nl = UA_ServerNetworkLayerTCP(UA_ConnectionConfig_standard, 16664);
  48. config.logger = Logger_Stdout;
  49. config.networkLayers = &nl;
  50. config.networkLayersSize = 1;
  51. UA_Server *server = UA_Server_new(config);
  52. /* add a variable node to the address space */
  53. UA_Int32 myInteger = 42;
  54. UA_NodeId myIntegerNodeId = UA_NODEID_STRING(1, "the.answer");
  55. UA_QualifiedName myIntegerName = UA_QUALIFIEDNAME(1, "the answer");
  56. UA_DataSource dateDataSource = (UA_DataSource) {
  57. .handle = &myInteger, .read = readInteger, .write = writeInteger};
  58. UA_VariableAttributes attr;
  59. UA_VariableAttributes_init(&attr);
  60. attr.description = UA_LOCALIZEDTEXT("en_US","the answer");
  61. attr.displayName = UA_LOCALIZEDTEXT("en_US","the answer");
  62. UA_Server_addDataSourceVariableNode(server, myIntegerNodeId,
  63. UA_NODEID_NUMERIC(0, UA_NS0ID_OBJECTSFOLDER),
  64. UA_NODEID_NUMERIC(0, UA_NS0ID_ORGANIZES),
  65. myIntegerName, UA_NODEID_NULL, attr, dateDataSource, NULL);
  66. UA_StatusCode retval = UA_Server_run(server, &running);
  67. UA_Server_delete(server);
  68. nl.deleteMembers(&nl);
  69. return (int)retval;
  70. }