server_nodeset_plcopen.c 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* This work is licensed under a Creative Commons CCZero 1.0 Universal License.
  2. * See http://creativecommons.org/publicdomain/zero/1.0/ for more information. */
  3. #include <signal.h>
  4. #ifdef UA_NO_AMALGAMATION
  5. #include "ua_server.h"
  6. #include "ua_log_stdout.h"
  7. #include "ua_config_default.h"
  8. #else
  9. #include "open62541.h"
  10. #endif
  11. /* Files example_namespace.h and example_namespace.c are created from server_nodeset.xml in the
  12. * /src_generated directory by CMake */
  13. #include "ua_namespace_di.h"
  14. #include "ua_namespace_plc.h"
  15. UA_Boolean running = true;
  16. static void stopHandler(int sign) {
  17. UA_LOG_INFO(UA_Log_Stdout, UA_LOGCATEGORY_SERVER, "received ctrl-c");
  18. running = false;
  19. }
  20. int main(int argc, char** argv) {
  21. signal(SIGINT, stopHandler);
  22. signal(SIGTERM, stopHandler);
  23. UA_ServerConfig *config = UA_ServerConfig_new_default();
  24. UA_Server *server = UA_Server_new(config);
  25. /* create nodes from nodeset */
  26. UA_StatusCode retval = ua_namespace_di(server);
  27. retval |= ua_namespace_plc(server);
  28. if(retval != UA_STATUSCODE_GOOD) {
  29. UA_LOG_ERROR(UA_Log_Stdout, UA_LOGCATEGORY_SERVER, "Adding the DI namespace failed. Please check previous error output.");
  30. UA_Server_delete(server);
  31. UA_ServerConfig_delete(config);
  32. return (int)UA_STATUSCODE_BADUNEXPECTEDERROR;
  33. }
  34. retval = UA_Server_run(server, &running);
  35. UA_Server_delete(server);
  36. UA_ServerConfig_delete(config);
  37. return (int)retval;
  38. }