opcuaServer.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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 <stdio.h>
  6. #include <stdlib.h>
  7. #include <signal.h>
  8. #include <errno.h> // errno, EINTR
  9. // provided by the open62541 lib
  10. #include "ua_server.h"
  11. #include "ua_namespace_0.h"
  12. // provided by the user, implementations available in the /examples folder
  13. #include "logger_stdout.h"
  14. #include "networklayer_tcp.h"
  15. #ifdef EXTENSION_UDP
  16. #include "networklayer_udp.h"
  17. #endif
  18. #include "ua_types.h"
  19. UA_Boolean running = 1;
  20. static void stopHandler(int sign) {
  21. printf("Received Ctrl-C\n");
  22. running = 0;
  23. }
  24. static UA_ByteString loadCertificate(void) {
  25. UA_ByteString certificate = UA_STRING_NULL;
  26. FILE *fp = NULL;
  27. //FIXME: a potiential bug of locating the certificate, we need to get the path from the server's config
  28. fp=fopen("localhost.der", "rb");
  29. if(!fp) {
  30. errno = 0; // we read errno also from the tcp layer...
  31. return certificate;
  32. }
  33. fseek(fp, 0, SEEK_END);
  34. certificate.length = ftell(fp);
  35. certificate.data = malloc(certificate.length*sizeof(UA_Byte));
  36. if(!certificate.data)
  37. return certificate;
  38. fseek(fp, 0, SEEK_SET);
  39. if(fread(certificate.data, sizeof(UA_Byte), certificate.length, fp) < (size_t)certificate.length)
  40. UA_ByteString_deleteMembers(&certificate); // error reading the cert
  41. fclose(fp);
  42. return certificate;
  43. }
  44. static void testCallback(UA_Server *server, void *data) {
  45. printf("testcallback\n");
  46. }
  47. int main(int argc, char** argv) {
  48. signal(SIGINT, stopHandler); /* catches ctrl-c */
  49. printf("--- %lu\n", sizeof(UA_DataTypeLayout));
  50. UA_Server *server = UA_Server_new();
  51. UA_Server_setServerCertificate(server, loadCertificate());
  52. #ifdef EXTENSION_UDP
  53. UA_Server_addNetworkLayer(server, NetworkLayerUDP_new(UA_ConnectionConfig_standard, 16664));
  54. #else
  55. UA_Server_addNetworkLayer(server, NetworkLayerTCP_new(UA_ConnectionConfig_standard, 16664));
  56. #endif
  57. UA_WorkItem work = {.type = UA_WORKITEMTYPE_METHODCALL, .work.methodCall = {.method = testCallback, .data = UA_NULL} };
  58. UA_Server_addRepeatedWorkItem(server, &work, 20000000, UA_NULL); // call every 2 sec
  59. //add a node to the adresspace
  60. UA_Int32 *myInteger = UA_Int32_new();
  61. *myInteger = 42;
  62. UA_QualifiedName myIntegerName;
  63. UA_QUALIFIEDNAME_STATIC(myIntegerName, "the answer");
  64. UA_Server_addScalarVariableNode(server, &myIntegerName,
  65. myInteger, &UA_TYPES[UA_INT32],
  66. &UA_EXPANDEDNODEIDS[UA_OBJECTSFOLDER],
  67. &UA_NODEIDS[UA_ORGANIZES]);
  68. #ifdef BENCHMARK
  69. UA_UInt32 nodeCount = 500;
  70. UA_Int32 data = 42;
  71. char str[15];
  72. for(UA_UInt32 i = 0;i<nodeCount;i++) {
  73. UA_VariableNode *tmpNode = UA_VariableNode_new();
  74. sprintf(str,"%d",i);
  75. UA_QualifiedName_copycstring(str,&tmpNode->browseName);
  76. UA_LocalizedText_copycstring(str,&tmpNode->displayName);
  77. UA_LocalizedText_copycstring("integer value", &tmpNode->description);
  78. tmpNode->nodeId.identifier.numeric = 19000+i;
  79. tmpNode->nodeClass = UA_NODECLASS_VARIABLE;
  80. //tmpNode->valueRank = -1;
  81. tmpNode->value.vt = &UA_TYPES[UA_INT32];
  82. tmpNode->value.storage.data.dataPtr = &data;
  83. tmpNode->value.storageType = UA_VARIANT_DATA_NODELETE;
  84. tmpNode->value.storage.data.arrayLength = 1;
  85. UA_Server_addNode(server, (const UA_Node**)&tmpNode,
  86. &UA_EXPANDEDNODEIDS[UA_OBJECTSFOLDER],
  87. &UA_NODEIDS[UA_HASCOMPONENT]);
  88. }
  89. #endif
  90. UA_StatusCode retval = UA_Server_run(server, 1, &running);
  91. UA_Server_delete(server);
  92. return retval;
  93. }