server.cpp 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 <iostream>
  6. // provided by the open62541 lib
  7. #include "ua_server.h"
  8. // provided by the user, implementations available in the /examples folder
  9. #include "logger_stdout.h"
  10. #include "networklayer_tcp.h"
  11. /**
  12. * Build Instructions (Linux)
  13. *
  14. * To build this C++ server, first compile the open62541 library. Then, compile the network layer and logging with a C compiler.
  15. * - gcc -std=c99 -c networklayer_tcp.c -I../include -I../build/src_generated
  16. * - gcc -std=c99 -c logger_stdout.c -I../include -I../build/src_generated
  17. * Lastly, compile and link the C++ server with
  18. * - g++ server.cpp networklayer_tcp.o logger_stdout.o ../build/libopen62541.a -I../include -I../build/src_generated -o server
  19. */
  20. using namespace std;
  21. int main()
  22. {
  23. UA_Server *server = UA_Server_new();
  24. UA_Server_addNetworkLayer(server, ServerNetworkLayerTCP_new(UA_ConnectionConfig_standard, 16664));
  25. // add a variable node to the adresspace
  26. UA_Variant *myIntegerVariant = UA_Variant_new();
  27. UA_Int32 myInteger = 42;
  28. UA_Variant_setScalarCopy(myIntegerVariant, &myInteger, &UA_TYPES[UA_TYPES_INT32]);
  29. UA_QualifiedName myIntegerName;
  30. UA_QUALIFIEDNAME_ASSIGN(myIntegerName, "the answer");
  31. UA_NodeId myIntegerNodeId = UA_NODEID_NULL; /* assign a random free nodeid */
  32. UA_NodeId parentNodeId = UA_NODEID_STATIC(0, UA_NS0ID_OBJECTSFOLDER);
  33. UA_NodeId parentReferenceNodeId = UA_NODEID_STATIC(0, UA_NS0ID_ORGANIZES);
  34. UA_Server_addVariableNode(server, myIntegerVariant, myIntegerName,
  35. myIntegerNodeId, parentNodeId, parentReferenceNodeId);
  36. UA_Boolean running = UA_TRUE;
  37. UA_StatusCode retval = UA_Server_run(server, 1, &running);
  38. UA_Server_delete(server);
  39. return retval;
  40. }