server_datasource.c 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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 = 1;
  16. UA_Logger logger;
  17. static void stopHandler(int sign) {
  18. UA_LOG_INFO(logger, UA_LOGCATEGORY_SERVER, "received ctrl-c");
  19. running = 0;
  20. }
  21. static UA_StatusCode readInteger(void *handle, const UA_NodeId nodeid, UA_Boolean sourceTimeStamp, const UA_NumericRange *range, UA_DataValue *dataValue) {
  22. dataValue->hasValue = UA_TRUE;
  23. UA_Variant_setScalarCopy(&dataValue->value, (UA_UInt32*)handle, &UA_TYPES[UA_TYPES_INT32]);
  24. //note that this is only possible if the identifier is a string - but we are sure to have one here
  25. UA_LOG_INFO(logger, UA_LOGCATEGORY_USERLAND, "Node read %.*s",nodeid.identifier.string.length, nodeid.identifier.string.data);
  26. UA_LOG_INFO(logger, UA_LOGCATEGORY_USERLAND, "read value %i", *(UA_UInt32*)handle);
  27. return UA_STATUSCODE_GOOD;
  28. }
  29. static UA_StatusCode writeInteger(void *handle, const UA_NodeId nodeid, const UA_Variant *data, const UA_NumericRange *range){
  30. if(UA_Variant_isScalar(data) && data->type == &UA_TYPES[UA_TYPES_INT32] && data->data){
  31. *(UA_UInt32*)handle = *(UA_Int32*)data->data;
  32. }
  33. //note that this is only possible if the identifier is a string - but we are sure to have one here
  34. UA_LOG_INFO(logger, UA_LOGCATEGORY_USERLAND, "Node written %.*s",nodeid.identifier.string.length, nodeid.identifier.string.data);
  35. UA_LOG_INFO(logger, UA_LOGCATEGORY_USERLAND, "written value %i", *(UA_UInt32*)handle);
  36. return UA_STATUSCODE_GOOD;
  37. }
  38. int main(int argc, char** argv) {
  39. signal(SIGINT, stopHandler); /* catches ctrl-c */
  40. UA_Server *server = UA_Server_new(UA_ServerConfig_standard);
  41. logger = Logger_Stdout_new();
  42. UA_Server_setLogger(server, logger);
  43. UA_Server_addNetworkLayer(server, ServerNetworkLayerTCP_new(UA_ConnectionConfig_standard, 16664));
  44. UA_Int32 myInteger = 42;
  45. /* add a variable node to the address space */
  46. UA_NodeId myIntegerNodeId = UA_NODEID_STRING(1, "the.answer");
  47. UA_QualifiedName myIntegerName = UA_QUALIFIEDNAME(1, "the answer");
  48. UA_DataSource dateDataSource = (UA_DataSource) {
  49. .handle = &myInteger, .read = readInteger, .write = writeInteger};
  50. UA_VariableAttributes attr;
  51. UA_VariableAttributes_init(&attr);
  52. attr.description = UA_LOCALIZEDTEXT("en_US","the answer");
  53. attr.displayName = UA_LOCALIZEDTEXT("en_US","the answer");
  54. UA_Server_addDataSourceVariableNode(server, myIntegerNodeId,
  55. UA_NODEID_NUMERIC(0, UA_NS0ID_OBJECTSFOLDER),
  56. UA_NODEID_NUMERIC(0, UA_NS0ID_ORGANIZES),
  57. myIntegerName, UA_NODEID_NULL, attr, dateDataSource, NULL);
  58. UA_StatusCode retval = UA_Server_run(server, 1, &running);
  59. UA_Server_delete(server);
  60. return retval;
  61. }