opcuaServer.c 3.4 KB

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