server_mainloop.c 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. #ifdef _WIN32
  7. # include <winsock2.h>
  8. #else
  9. # include <sys/select.h>
  10. #endif
  11. # include "open62541.h"
  12. UA_Boolean running = true;
  13. static void stopHandler(int sign) {
  14. UA_LOG_INFO(UA_Log_Stdout, UA_LOGCATEGORY_SERVER, "received ctrl-c");
  15. running = false;
  16. }
  17. /* In this example, we integrate the server into an external "mainloop". This
  18. can be for example the event-loop used in GUI toolkits, such as Qt or GTK. */
  19. int main(int argc, char** argv) {
  20. signal(SIGINT, stopHandler); /* catches ctrl-c */
  21. UA_ServerConfig config = UA_ServerConfig_standard;
  22. UA_ServerNetworkLayer nl = UA_ServerNetworkLayerTCP(UA_ConnectionConfig_standard, 16664);
  23. config.networkLayers = &nl;
  24. config.networkLayersSize = 1;
  25. UA_Server *server = UA_Server_new(config);
  26. /* Should the server networklayer block (with a timeout) until a message
  27. arrives or should it return immediately? */
  28. UA_Boolean waitInternal = false;
  29. UA_StatusCode retval = UA_Server_run_startup(server);
  30. if(retval != UA_STATUSCODE_GOOD)
  31. goto cleanup;
  32. while(running) {
  33. /* timeout is the maximum possible delay (in millisec) until the next
  34. _iterate call. Otherwise, the server might miss an internal timeout
  35. or cannot react to messages with the promised responsiveness. */
  36. /* If multicast discovery server is enabled, the timeout does not not consider new input data (requests) on the mDNS socket.
  37. * It will be handled on the next call, which may be too late for requesting clients.
  38. * if needed, the select with timeout on the multicast socket server->mdnsSocket (see example in mdnsd library)
  39. */
  40. UA_UInt16 timeout = UA_Server_run_iterate(server, waitInternal);
  41. /* Now we can use the max timeout to do something else. In this case, we
  42. just sleep. (select is used as a platform-independent sleep
  43. function.) */
  44. struct timeval tv;
  45. tv.tv_sec = 0;
  46. tv.tv_usec = timeout * 1000;
  47. select(0, NULL, NULL, NULL, &tv);
  48. }
  49. retval = UA_Server_run_shutdown(server);
  50. cleanup:
  51. UA_Server_delete(server);
  52. nl.deleteMembers(&nl);
  53. return (int)retval;
  54. }