ua_server.c 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519
  1. #include "ua_server_internal.h"
  2. #include "ua_services_internal.h" // AddReferences
  3. #include "ua_namespace_0.h"
  4. #include "ua_securechannel_manager.h"
  5. #include "ua_namespace_manager.h"
  6. #include "ua_session_manager.h"
  7. #include "ua_util.h"
  8. #include "ua_services.h"
  9. void UA_Server_delete(UA_Server *server) {
  10. UA_ApplicationDescription_deleteMembers(&server->description);
  11. UA_SecureChannelManager_deleteMembers(&server->secureChannelManager);
  12. UA_SessionManager_deleteMembers(&server->sessionManager);
  13. //UA_NodeStore_delete(server->nodestore);
  14. UA_ByteString_deleteMembers(&server->serverCertificate);
  15. UA_Array_delete(server->endpointDescriptions, server->endpointDescriptionsSize, &UA_TYPES[UA_ENDPOINTDESCRIPTION]);
  16. UA_free(server);
  17. }
  18. void addSingleReference(UA_Namespace *namespace,
  19. UA_AddReferencesItem *addReferencesItem) {
  20. UA_UInt32 indices = 1;
  21. UA_UInt32 indicesSize = 1;
  22. UA_DiagnosticInfo diagnosticInfo;
  23. UA_StatusCode result;
  24. UA_RequestHeader tmpRequestHeader;
  25. namespace->nodeStore->addReferences(&tmpRequestHeader,addReferencesItem, &indices,
  26. indicesSize, &result, &diagnosticInfo);
  27. }
  28. void addSingleNode(UA_Namespace *namespace, UA_AddNodesItem *addNodesItem) {
  29. UA_UInt32 indices = 0;
  30. UA_UInt32 indicesSize = 1;
  31. UA_DiagnosticInfo diagnosticInfo;
  32. UA_AddNodesResult result;
  33. UA_RequestHeader tmpRequestHeader;
  34. namespace->nodeStore->addNodes(&tmpRequestHeader,addNodesItem, &indices, indicesSize, &result,
  35. &diagnosticInfo);
  36. }
  37. void ns0_addObjectNode(UA_Server *server, UA_NodeId REFTYPE_NODEID,
  38. UA_ExpandedNodeId REQ_NODEID, UA_ExpandedNodeId PARENTNODEID,
  39. char* BROWSENAME, char* DISPLAYNAME, char* DESCRIPTION) {
  40. UA_ObjectAttributes objAttr;
  41. UA_AddNodesItem addNodesItem;
  42. UA_Namespace *ns0 = UA_NULL;
  43. UA_NamespaceManager_getNamespace(server->namespaceManager, 0, &ns0);
  44. addNodesItem.parentNodeId = PARENTNODEID;
  45. addNodesItem.requestedNewNodeId = REQ_NODEID;
  46. addNodesItem.referenceTypeId = REFTYPE_NODEID;
  47. addNodesItem.nodeClass = UA_NODECLASS_OBJECT;\
  48. UA_QualifiedName_copycstring(BROWSENAME, &addNodesItem.browseName);
  49. UA_LocalizedText_copycstring(DISPLAYNAME, &objAttr.displayName);
  50. UA_LocalizedText_copycstring(DESCRIPTION, &objAttr.description);
  51. objAttr.userWriteMask = 0;
  52. objAttr.writeMask = 0;
  53. objAttr.specifiedAttributes |= UA_NODEATTRIBUTESMASK_BROWSENAME;
  54. objAttr.specifiedAttributes |= UA_NODEATTRIBUTESMASK_DISPLAYNAME;
  55. objAttr.specifiedAttributes |= UA_NODEATTRIBUTESMASK_DESCRIPTION;
  56. UA_UInt32 offset = 0;
  57. UA_ByteString_newMembers(&addNodesItem.nodeAttributes.body,
  58. UA_ObjectAttributes_calcSizeBinary(&objAttr));
  59. UA_ObjectAttributes_encodeBinary(&objAttr,
  60. &addNodesItem.nodeAttributes.body, &offset);
  61. addSingleNode(ns0, &addNodesItem);
  62. }
  63. void ns0_addVariableNode(UA_Server *server, UA_NodeId refTypeNodeId,
  64. UA_ExpandedNodeId requestedNodeId, UA_ExpandedNodeId parentNodeId,
  65. UA_QualifiedName browseName, UA_LocalizedText displayName, UA_LocalizedText description,
  66. UA_DataValue *dataValue, UA_Int32 valueRank) {
  67. UA_VariableAttributes varAttr;
  68. UA_AddNodesItem addNodesItem;
  69. UA_Namespace *ns0 = UA_NULL;
  70. UA_NamespaceManager_getNamespace(server->namespaceManager, 0, &ns0);
  71. addNodesItem.parentNodeId = parentNodeId;
  72. addNodesItem.requestedNewNodeId = requestedNodeId;
  73. addNodesItem.referenceTypeId = refTypeNodeId;
  74. addNodesItem.nodeClass = UA_NODECLASS_VARIABLE;
  75. addNodesItem.browseName = browseName;
  76. varAttr.displayName = displayName ;
  77. varAttr.description = description;
  78. varAttr.value = dataValue->value;
  79. varAttr.userWriteMask = 0;
  80. varAttr.writeMask = 0;
  81. varAttr.dataType = dataValue->value.vt->typeId;
  82. varAttr.valueRank = valueRank;
  83. varAttr.specifiedAttributes |= UA_NODEATTRIBUTESMASK_VALUERANK;
  84. varAttr.arrayDimensions = (UA_UInt32*)dataValue->value.storage.data.arrayDimensions;
  85. varAttr.arrayDimensionsSize = dataValue->value.storage.data.arrayDimensionsLength;
  86. varAttr.specifiedAttributes |= UA_NODEATTRIBUTESMASK_BROWSENAME;
  87. varAttr.specifiedAttributes |= UA_NODEATTRIBUTESMASK_DISPLAYNAME;
  88. varAttr.specifiedAttributes |= UA_NODEATTRIBUTESMASK_DESCRIPTION;
  89. varAttr.specifiedAttributes |= UA_NODEATTRIBUTESMASK_VALUE;
  90. varAttr.specifiedAttributes |= UA_NODEATTRIBUTESMASK_DATATYPE;
  91. varAttr.specifiedAttributes |= UA_NODEATTRIBUTESMASK_ARRAYDIMENSIONS;
  92. UA_UInt32 offset = 0;
  93. UA_ByteString_newMembers(&addNodesItem.nodeAttributes.body,
  94. UA_VariableAttributes_calcSizeBinary(&varAttr));
  95. UA_VariableAttributes_encodeBinary(&varAttr,
  96. &addNodesItem.nodeAttributes.body, &offset);
  97. addSingleNode(ns0, &addNodesItem);
  98. }
  99. void ADD_REFTYPENODE_NS0(UA_Server *server, UA_NodeId REFTYPE_NODEID,UA_ExpandedNodeId REQ_NODEID,UA_ExpandedNodeId PARENTNODEID,char* REFTYPE_BROWSENAME, char* REFTYPE_DISPLAYNAME, char*REFTYPE_DESCRIPTION,UA_Boolean IS_ABSTRACT,UA_Boolean IS_SYMMETRIC)
  100. {
  101. UA_AddNodesItem addNodesItem;
  102. UA_Namespace *ns0;
  103. UA_NamespaceManager_getNamespace(server->namespaceManager,0,&ns0);
  104. UA_ReferenceTypeAttributes refTypeAttr;
  105. addNodesItem.parentNodeId= PARENTNODEID;
  106. addNodesItem.requestedNewNodeId = REQ_NODEID;
  107. addNodesItem.referenceTypeId = REFTYPE_NODEID;
  108. addNodesItem.nodeClass = UA_NODECLASS_REFERENCETYPE;
  109. UA_QualifiedName_copycstring(REFTYPE_BROWSENAME, &addNodesItem.browseName);
  110. UA_LocalizedText_copycstring(REFTYPE_DISPLAYNAME, &refTypeAttr.displayName);
  111. UA_LocalizedText_copycstring(REFTYPE_DESCRIPTION, &refTypeAttr.description);
  112. refTypeAttr.isAbstract = IS_ABSTRACT;
  113. refTypeAttr.symmetric = IS_SYMMETRIC;
  114. refTypeAttr.userWriteMask = 0;
  115. refTypeAttr.writeMask = 0;
  116. refTypeAttr.inverseName.locale.length = 0;
  117. refTypeAttr.inverseName.text.length = 0;
  118. refTypeAttr.specifiedAttributes |= UA_NODEATTRIBUTESMASK_BROWSENAME;
  119. refTypeAttr.specifiedAttributes |= UA_NODEATTRIBUTESMASK_DISPLAYNAME;
  120. refTypeAttr.specifiedAttributes |= UA_NODEATTRIBUTESMASK_DESCRIPTION;
  121. refTypeAttr.specifiedAttributes |= UA_NODEATTRIBUTESMASK_ISABSTRACT;
  122. refTypeAttr.specifiedAttributes |= UA_NODEATTRIBUTESMASK_SYMMETRIC;
  123. UA_UInt32 offset = 0;
  124. UA_ByteString_newMembers(&addNodesItem.nodeAttributes.body,UA_ReferenceTypeAttributes_calcSizeBinary(&refTypeAttr));
  125. UA_ReferenceTypeAttributes_encodeBinary(&refTypeAttr,&addNodesItem.nodeAttributes.body,&offset);
  126. addSingleNode(ns0,&addNodesItem);
  127. }
  128. UA_Server * UA_Server_new(UA_String *endpointUrl, UA_ByteString *serverCertificate, UA_NodeStore *ns0Nodestore) {
  129. UA_Server *server = UA_alloc(sizeof(UA_Server));
  130. if(!server)
  131. return server;
  132. //add namespace zero
  133. UA_NamespaceManager_new(&server->namespaceManager);
  134. UA_NamespaceManager_addNamespace(server->namespaceManager,0,ns0Nodestore);
  135. // mockup application description
  136. UA_ApplicationDescription_init(&server->description);
  137. UA_String_copycstring("urn:servername:open62541:application", &server->description.productUri);
  138. UA_String_copycstring("http://open62541.info/applications/4711", &server->description.applicationUri);
  139. UA_LocalizedText_copycstring("The open62541 application", &server->description.applicationName);
  140. server->description.applicationType = UA_APPLICATIONTYPE_SERVER;
  141. UA_ByteString_init(&server->serverCertificate);
  142. if(serverCertificate)
  143. UA_ByteString_copy(serverCertificate, &server->serverCertificate);
  144. // mockup endpoint description
  145. server->endpointDescriptionsSize = 1;
  146. UA_EndpointDescription *endpoint = UA_alloc(sizeof(UA_EndpointDescription)); // todo: check return code
  147. endpoint->securityMode = UA_MESSAGESECURITYMODE_NONE;
  148. UA_String_copycstring("http://opcfoundation.org/UA/SecurityPolicy#None", &endpoint->securityPolicyUri);
  149. UA_String_copycstring("http://opcfoundation.org/UA-Profile/Transport/uatcp-uasc-uabinary", &endpoint->transportProfileUri);
  150. endpoint->userIdentityTokensSize = 1;
  151. endpoint->userIdentityTokens = UA_alloc(sizeof(UA_UserTokenPolicy));
  152. UA_UserTokenPolicy_init(endpoint->userIdentityTokens);
  153. UA_String_copycstring("my-anonymous-policy", &endpoint->userIdentityTokens->policyId); // defined per server
  154. endpoint->userIdentityTokens->tokenType = UA_USERTOKENTYPE_ANONYMOUS;
  155. UA_String_copy(endpointUrl, &endpoint->endpointUrl);
  156. /* The standard says "the HostName specified in the Server Certificate is the
  157. same as the HostName contained in the endpointUrl provided in the
  158. EndpointDescription */
  159. UA_String_copy(&server->serverCertificate, &endpoint->serverCertificate);
  160. UA_ApplicationDescription_copy(&server->description, &endpoint->server);
  161. server->endpointDescriptions = endpoint;
  162. #define MAXCHANNELCOUNT 100
  163. #define STARTCHANNELID 1
  164. #define TOKENLIFETIME 10000
  165. #define STARTTOKENID 1
  166. UA_SecureChannelManager_init(&server->secureChannelManager, MAXCHANNELCOUNT,
  167. TOKENLIFETIME, STARTCHANNELID, STARTTOKENID, endpointUrl);
  168. #define MAXSESSIONCOUNT 1000
  169. #define SESSIONLIFETIME 10000
  170. #define STARTSESSIONID 1
  171. UA_SessionManager_init(&server->sessionManager, MAXSESSIONCOUNT, SESSIONLIFETIME, STARTSESSIONID);
  172. //ns0: C2UA_STRING("http://opcfoundation.org/UA/"));
  173. //ns1: C2UA_STRING("http://localhost:16664/open62541/"));
  174. /**************/
  175. /* References */
  176. /**************/
  177. // ReferenceType Ids
  178. UA_ExpandedNodeId RefTypeId_References;
  179. NS0EXPANDEDNODEID(RefTypeId_References, 31);
  180. UA_ExpandedNodeId RefTypeId_NonHierarchicalReferences;
  181. NS0EXPANDEDNODEID(RefTypeId_NonHierarchicalReferences, 32);
  182. UA_ExpandedNodeId RefTypeId_HierarchicalReferences;
  183. NS0EXPANDEDNODEID(RefTypeId_HierarchicalReferences, 33);
  184. UA_ExpandedNodeId RefTypeId_HasChild;
  185. NS0EXPANDEDNODEID(RefTypeId_HasChild, 34);
  186. UA_ExpandedNodeId RefTypeId_Organizes;
  187. NS0EXPANDEDNODEID(RefTypeId_Organizes, 35);
  188. UA_ExpandedNodeId RefTypeId_HasEventSource;
  189. NS0EXPANDEDNODEID(RefTypeId_HasEventSource, 36);
  190. UA_ExpandedNodeId RefTypeId_HasModellingRule;
  191. NS0EXPANDEDNODEID(RefTypeId_HasModellingRule, 37);
  192. UA_ExpandedNodeId RefTypeId_HasEncoding;
  193. NS0EXPANDEDNODEID(RefTypeId_HasEncoding, 38);
  194. UA_ExpandedNodeId RefTypeId_HasDescription;
  195. NS0EXPANDEDNODEID(RefTypeId_HasDescription, 39);
  196. UA_ExpandedNodeId RefTypeId_HasTypeDefinition;
  197. NS0EXPANDEDNODEID(RefTypeId_HasTypeDefinition, 40);
  198. UA_ExpandedNodeId RefTypeId_GeneratesEvent;
  199. NS0EXPANDEDNODEID(RefTypeId_GeneratesEvent, 41);
  200. UA_ExpandedNodeId RefTypeId_Aggregates;
  201. NS0EXPANDEDNODEID(RefTypeId_Aggregates, 44);
  202. UA_ExpandedNodeId RefTypeId_HasSubtype;
  203. NS0EXPANDEDNODEID(RefTypeId_HasSubtype, 45);
  204. UA_ExpandedNodeId RefTypeId_HasProperty;
  205. NS0EXPANDEDNODEID(RefTypeId_HasProperty, 46);
  206. UA_ExpandedNodeId RefTypeId_HasComponent;
  207. NS0EXPANDEDNODEID(RefTypeId_HasComponent, 47);
  208. UA_ExpandedNodeId RefTypeId_HasNotifier;
  209. NS0EXPANDEDNODEID(RefTypeId_HasNotifier, 48);
  210. UA_ExpandedNodeId RefTypeId_HasOrderedComponent;
  211. NS0EXPANDEDNODEID(RefTypeId_HasOrderedComponent, 49);
  212. UA_ExpandedNodeId RefTypeId_HasModelParent;
  213. NS0EXPANDEDNODEID(RefTypeId_HasModelParent, 50);
  214. UA_ExpandedNodeId RefTypeId_FromState;
  215. NS0EXPANDEDNODEID(RefTypeId_FromState, 51);
  216. UA_ExpandedNodeId RefTypeId_ToState;
  217. NS0EXPANDEDNODEID(RefTypeId_ToState, 52);
  218. UA_ExpandedNodeId RefTypeId_HasCause;
  219. NS0EXPANDEDNODEID(RefTypeId_HasCause, 53);
  220. UA_ExpandedNodeId RefTypeId_HasEffect;
  221. NS0EXPANDEDNODEID(RefTypeId_HasEffect, 54);
  222. UA_ExpandedNodeId RefTypeId_HasHistoricalConfiguration;
  223. NS0EXPANDEDNODEID(RefTypeId_HasHistoricalConfiguration, 56);
  224. /*
  225. #define ADDREFERENCE(NODE, REFTYPE, INVERSE, TARGET_NODEID) do { \
  226. static struct UA_ReferenceNode NODE##REFTYPE##TARGET_NODEID; \
  227. UA_ReferenceNode_init(&NODE##REFTYPE##TARGET_NODEID); \
  228. NODE##REFTYPE##TARGET_NODEID.referenceTypeId = REFTYPE.nodeId; \
  229. NODE##REFTYPE##TARGET_NODEID.isInverse = INVERSE; \
  230. NODE##REFTYPE##TARGET_NODEID.targetId = TARGET_NODEID; \
  231. AddReference(server->nodestore, (UA_Node *)NODE, &NODE##REFTYPE##TARGET_NODEID); \
  232. } while(0)
  233. */
  234. // ObjectTypes (Ids only)
  235. // UA_ExpandedNodeId ObjTypeId_FolderType; NS0EXPANDEDNODEID(ObjTypeId_FolderType, 61);
  236. // Objects (Ids only)
  237. UA_ExpandedNodeId ObjId_Null;
  238. NS0EXPANDEDNODEID(ObjId_Null, 0);
  239. UA_ExpandedNodeId ObjId_Root;
  240. NS0EXPANDEDNODEID(ObjId_Root, 84);
  241. UA_ExpandedNodeId ObjId_ObjectsFolder;
  242. NS0EXPANDEDNODEID(ObjId_ObjectsFolder, 85);
  243. UA_ExpandedNodeId ObjId_TypesFolder;
  244. NS0EXPANDEDNODEID(ObjId_TypesFolder, 86);
  245. UA_ExpandedNodeId ObjId_ViewsFolder;
  246. NS0EXPANDEDNODEID(ObjId_ViewsFolder, 87);
  247. UA_ExpandedNodeId ObjId_ReferenceTypesFolder;
  248. NS0EXPANDEDNODEID(ObjId_ReferenceTypesFolder, 91);
  249. UA_ExpandedNodeId ObjId_Server;
  250. NS0EXPANDEDNODEID(ObjId_Server, 2253);
  251. //UA_ExpandedNodeId VarId_ServerArray;
  252. //NS0EXPANDEDNODEID(VarId_ServerArray, 2254);
  253. UA_ExpandedNodeId VarId_NamespaceArray; NS0EXPANDEDNODEID(VarId_NamespaceArray, 2255);
  254. UA_ExpandedNodeId VarId_ServerStatus; NS0EXPANDEDNODEID(VarId_ServerStatus, 2256);
  255. // UA_ExpandedNodeId ObjId_ServerCapabilities; NS0EXPANDEDNODEID(ObjId_ServerCapabilities, 2268);
  256. UA_ExpandedNodeId VarId_State; NS0EXPANDEDNODEID(VarId_State, 2259);
  257. ns0_addObjectNode(server,RefTypeId_Organizes.nodeId, ObjId_Root, ObjId_Null,
  258. "Root", "Root", "Root");
  259. ns0_addObjectNode(server,RefTypeId_Organizes.nodeId, ObjId_ObjectsFolder,
  260. ObjId_Root, "Objects", "Objects", "Objects");
  261. ns0_addObjectNode(server,RefTypeId_Organizes.nodeId, ObjId_Server,
  262. ObjId_ObjectsFolder, "Server", "Server", "Server");
  263. UA_DataValue *serverArrayValue;
  264. serverArrayValue = UA_DataValue_new();
  265. UA_UInt32 namespaceArraySize = 2;
  266. UA_Array_new((void**)&serverArrayValue->value.storage.data.dataPtr, namespaceArraySize, &UA_TYPES[UA_STRING]);
  267. UA_String_copycstring("http://opcfoundation.org/UA/", &((UA_String *)(serverArrayValue->value.storage.data.dataPtr))[0]);
  268. UA_Int32 *arrayDim;
  269. UA_UInt32 arrayDimSize = 1;
  270. UA_Array_new((void**)&arrayDim, arrayDimSize, &UA_TYPES[UA_INT32]);
  271. serverArrayValue->value.vt = &UA_TYPES[UA_STRING];
  272. serverArrayValue->value.storage.data.arrayDimensions = arrayDim;
  273. serverArrayValue->value.storage.data.arrayDimensionsLength = 1; // added to ensure encoding in readreponse
  274. serverArrayValue->value.storage.data.arrayLength = 1;
  275. serverArrayValue->value.storageType = UA_VARIANT_DATA;
  276. {
  277. UA_QualifiedName *browseName;
  278. browseName=UA_QualifiedName_new();
  279. UA_LocalizedText *description;
  280. description = UA_LocalizedText_new();
  281. UA_LocalizedText *displayName;
  282. displayName = UA_LocalizedText_new();
  283. UA_QualifiedName_copycstring("NamespaceArray",browseName);
  284. UA_LocalizedText_copycstring("NamespaceArray",description);
  285. UA_LocalizedText_copycstring("NamespaceArray",displayName);
  286. ns0_addVariableNode(server, RefTypeId_HasComponent.nodeId,
  287. VarId_NamespaceArray,
  288. ObjId_Server,
  289. *browseName,
  290. *description,
  291. *displayName,
  292. serverArrayValue,1);
  293. }
  294. // ServerStatus
  295. UA_DataValue *serverStatusValue;
  296. serverStatusValue = UA_DataValue_new();
  297. UA_ServerStatusDataType *status;
  298. status = UA_ServerStatusDataType_new();
  299. status->startTime = UA_DateTime_now();
  300. status->currentTime = UA_DateTime_now();
  301. status->state = UA_SERVERSTATE_RUNNING;
  302. UA_String_copycstring("open62541.org", &status->buildInfo.productUri);
  303. UA_String_copycstring("open62541", &status->buildInfo.manufacturerName);
  304. UA_String_copycstring("open62541", &status->buildInfo.productName);
  305. UA_String_copycstring("0.0", &status->buildInfo.softwareVersion);
  306. UA_String_copycstring("0.0", &status->buildInfo.buildNumber);
  307. status->buildInfo.buildDate = UA_DateTime_now();
  308. status->secondsTillShutdown = 99999999;
  309. UA_LocalizedText_copycstring("because", &status->shutdownReason);
  310. serverStatusValue->value.vt = &UA_TYPES[UA_SERVERSTATUSDATATYPE]; // gets encoded as an extensionobject
  311. serverStatusValue->value.storage.data.arrayLength = 0;
  312. serverStatusValue->value.storage.data.dataPtr = status;
  313. serverStatusValue->value.storage.data.arrayDimensionsLength = 0;
  314. {
  315. UA_QualifiedName *browseName = UA_QualifiedName_new();
  316. UA_LocalizedText *description = UA_LocalizedText_new();
  317. UA_LocalizedText *displayName = UA_LocalizedText_new();
  318. UA_QualifiedName_copycstring("ServerStatus",browseName);
  319. UA_LocalizedText_copycstring("ServerStatus",description);
  320. UA_LocalizedText_copycstring("ServerStatus",displayName);
  321. ns0_addVariableNode(server,RefTypeId_HasComponent.nodeId,VarId_ServerStatus,ObjId_Server, *browseName, *description, *displayName ,serverStatusValue,-1);
  322. }
  323. // State (Component of ServerStatus)
  324. UA_DataValue *sateValue = UA_DataValue_new();
  325. sateValue->value.vt = &UA_TYPES[UA_SERVERSTATE];
  326. sateValue->value.storage.data.arrayDimensionsLength = 0; // added to ensure encoding in readreponse
  327. sateValue->value.storage.data.arrayLength = 0;
  328. sateValue->value.storage.data.dataPtr = &status->state; // points into the other object.
  329. sateValue->value.storageType = UA_VARIANT_DATA;
  330. {
  331. UA_QualifiedName *browseName = UA_QualifiedName_new();
  332. UA_LocalizedText *description = UA_LocalizedText_new();
  333. UA_LocalizedText *displayName = UA_LocalizedText_new();
  334. UA_QualifiedName_copycstring("State",browseName);
  335. UA_LocalizedText_copycstring("State",description);
  336. UA_LocalizedText_copycstring("State",displayName);
  337. ns0_addVariableNode(server,RefTypeId_HasComponent.nodeId,VarId_State,ObjId_Server, *browseName, *description,*displayName ,sateValue,-1);
  338. }
  339. ns0_addObjectNode(server,RefTypeId_Organizes.nodeId, ObjId_TypesFolder, ObjId_Root,
  340. "Types", "Types", "Types");
  341. ns0_addObjectNode(server,RefTypeId_Organizes.nodeId, ObjId_TypesFolder, ObjId_Root,
  342. "Types", "Types", "Types");
  343. ns0_addObjectNode(server,RefTypeId_Organizes.nodeId, ObjId_ReferenceTypesFolder,
  344. ObjId_TypesFolder, "ReferenceTypes", "ReferenceTypes",
  345. "ReferenceTypes");
  346. ADD_REFTYPENODE_NS0(server,RefTypeId_Organizes.nodeId, RefTypeId_References,
  347. ObjId_ReferenceTypesFolder, "References", "References",
  348. "References", UA_TRUE, UA_TRUE);
  349. ns0_addObjectNode(server,RefTypeId_Organizes.nodeId, ObjId_ViewsFolder, ObjId_Root,
  350. "Views", "Views", "Views");
  351. ADD_REFTYPENODE_NS0(server,RefTypeId_HasSubtype.nodeId,
  352. RefTypeId_NonHierarchicalReferences, RefTypeId_References,
  353. "NonHierarchicalReferences", "NonHierarchicalReferences",
  354. "NonHierarchicalReferences", UA_TRUE, UA_FALSE);
  355. ADD_REFTYPENODE_NS0(server,RefTypeId_HasSubtype.nodeId, RefTypeId_HasModelParent,
  356. RefTypeId_NonHierarchicalReferences, "HasModelParent",
  357. "HasModelParent", "HasModelParent", UA_TRUE, UA_FALSE);
  358. ADD_REFTYPENODE_NS0(server,RefTypeId_HasSubtype.nodeId, RefTypeId_GeneratesEvent,
  359. RefTypeId_NonHierarchicalReferences, "GeneratesEvent",
  360. "GeneratesEvent", "GeneratesEvent", UA_TRUE, UA_FALSE);
  361. ADD_REFTYPENODE_NS0(server,RefTypeId_HasSubtype.nodeId, RefTypeId_HasEncoding,
  362. RefTypeId_NonHierarchicalReferences, "HasEncoding", "HasEncoding",
  363. "HasEncoding", UA_TRUE, UA_FALSE);
  364. ADD_REFTYPENODE_NS0(server,RefTypeId_HasSubtype.nodeId, RefTypeId_HasModellingRule,
  365. RefTypeId_NonHierarchicalReferences, "HasModellingRule",
  366. "HasModellingRule", "HasModellingRule", UA_TRUE, UA_FALSE);
  367. ADD_REFTYPENODE_NS0(server,RefTypeId_HasSubtype.nodeId, RefTypeId_HasDescription,
  368. RefTypeId_NonHierarchicalReferences, "HasDescription",
  369. "HasDescription", "HasDescription", UA_TRUE, UA_FALSE);
  370. ADD_REFTYPENODE_NS0(server,RefTypeId_HasSubtype.nodeId,
  371. RefTypeId_HasTypeDefinition, RefTypeId_NonHierarchicalReferences,
  372. "HasTypeDefinition", "HasTypeDefinition", "HasTypeDefinition",
  373. UA_TRUE, UA_FALSE);
  374. ADD_REFTYPENODE_NS0(server,RefTypeId_HasSubtype.nodeId, RefTypeId_FromState,
  375. RefTypeId_NonHierarchicalReferences, "FromState", "FromState",
  376. "FromState", UA_TRUE, UA_FALSE);
  377. ADD_REFTYPENODE_NS0(server,RefTypeId_HasSubtype.nodeId, RefTypeId_ToState,
  378. RefTypeId_NonHierarchicalReferences, "ToState", "ToState",
  379. "ToState", UA_TRUE, UA_FALSE);
  380. ADD_REFTYPENODE_NS0(server,RefTypeId_HasSubtype.nodeId, RefTypeId_HasCause,
  381. RefTypeId_NonHierarchicalReferences, "HasCause", "HasCause",
  382. "HasCause", UA_TRUE, UA_FALSE);
  383. ADD_REFTYPENODE_NS0(server,RefTypeId_HasSubtype.nodeId, RefTypeId_HasEffect,
  384. RefTypeId_NonHierarchicalReferences, "HasEffect", "HasEffect",
  385. "HasEffect", UA_TRUE, UA_FALSE);
  386. ADD_REFTYPENODE_NS0(server,RefTypeId_HasSubtype.nodeId,
  387. RefTypeId_HasHistoricalConfiguration,
  388. RefTypeId_NonHierarchicalReferences, "HasHistoricalConfiguration",
  389. "HasHistoricalConfiguration", "HasHistoricalConfiguration", UA_TRUE,
  390. UA_FALSE);
  391. ADD_REFTYPENODE_NS0(server,RefTypeId_HasSubtype.nodeId,
  392. RefTypeId_HierarchicalReferences, RefTypeId_References,
  393. "HierarchicalReferences", "HierarchicalReferences",
  394. "HierarchicalReferences", UA_TRUE, UA_FALSE);
  395. ADD_REFTYPENODE_NS0(server,RefTypeId_HasSubtype.nodeId, RefTypeId_HasEventSource,
  396. RefTypeId_HierarchicalReferences, "HasEventSource",
  397. "HasEventSource", "HasEventSource", UA_TRUE, UA_FALSE);
  398. ADD_REFTYPENODE_NS0(server,RefTypeId_HasSubtype.nodeId, RefTypeId_HasNotifier,
  399. RefTypeId_HasEventSource, "HasEventSource", "HasEventSource",
  400. "HasEventSource", UA_TRUE, UA_FALSE);
  401. ADD_REFTYPENODE_NS0(server,RefTypeId_HasSubtype.nodeId, RefTypeId_HasChild,
  402. RefTypeId_HierarchicalReferences, "HasChild", "HasChild",
  403. "HasChild", UA_TRUE, UA_FALSE);
  404. ADD_REFTYPENODE_NS0(server,RefTypeId_HasSubtype.nodeId, RefTypeId_Aggregates,
  405. RefTypeId_HasChild, "Aggregates", "Aggregates", "Aggregates",
  406. UA_TRUE, UA_FALSE);
  407. ADD_REFTYPENODE_NS0(server,RefTypeId_HasSubtype.nodeId, RefTypeId_HasProperty,
  408. RefTypeId_Aggregates, "HasProperty", "HasProperty", "HasProperty",
  409. UA_TRUE, UA_FALSE);
  410. ADD_REFTYPENODE_NS0(server,RefTypeId_HasSubtype.nodeId, RefTypeId_HasComponent,
  411. RefTypeId_Aggregates, "HasComponent", "HasComponent",
  412. "HasComponent", UA_TRUE, UA_FALSE);
  413. ADD_REFTYPENODE_NS0(server,RefTypeId_HasSubtype.nodeId,
  414. RefTypeId_HasOrderedComponent, RefTypeId_HasComponent,
  415. "HasOrderedComponent", "HasOrderedComponent", "HasOrderedComponent",
  416. UA_TRUE, UA_FALSE);
  417. ADD_REFTYPENODE_NS0(server,RefTypeId_HasSubtype.nodeId, RefTypeId_HasSubtype,
  418. RefTypeId_HasChild, "HasSubtype", "HasSubtype", "HasSubtype",
  419. UA_TRUE, UA_FALSE);
  420. ADD_REFTYPENODE_NS0(server,RefTypeId_HasSubtype.nodeId, RefTypeId_Organizes,
  421. RefTypeId_HierarchicalReferences, "Organizes", "Organizes",
  422. "Organizes", UA_TRUE, UA_FALSE);
  423. return server;
  424. }
  425. void UA_Server_addScalarVariableNode(UA_Server *server, UA_QualifiedName *browseName, void *value,
  426. const UA_VTable_Entry *vt, UA_ExpandedNodeId *parentNodeId,
  427. UA_NodeId *referenceTypeId ) {
  428. UA_DataValue *dataValue = UA_DataValue_new();
  429. /*UA_LocalizedText_copycstring("integer value", &tmpNode->description); */
  430. UA_LocalizedText *displayName = UA_LocalizedText_new();
  431. UA_LocalizedText *description = UA_LocalizedText_new();
  432. displayName->locale.length = 0;
  433. description->locale.length = 0;
  434. UA_String_copy(&browseName->name, &displayName->text);
  435. UA_String_copy(&browseName->name, &description->text);
  436. dataValue->value.vt = vt;
  437. dataValue->value.storage.data.dataPtr = value;
  438. dataValue->value.storageType = UA_VARIANT_DATA;
  439. dataValue->value.storage.data.arrayLength = 1;
  440. UA_ExpandedNodeId reqNodeId;
  441. reqNodeId.namespaceUri.length = 0;
  442. reqNodeId.nodeId.namespaceIndex = 0;
  443. UA_String_copy(&browseName->name,&reqNodeId.nodeId.identifier.string);
  444. reqNodeId.nodeId.identifierType = UA_NODEIDTYPE_STRING;
  445. ns0_addVariableNode(server,*referenceTypeId,reqNodeId, *parentNodeId,*browseName,*displayName,*description,dataValue,-1);
  446. }
  447. UA_Int32 UA_Server_addNamespace(UA_Server *server, UA_UInt16 namespaceIndex,
  448. UA_NodeStore *nodeStore) {
  449. return (UA_Int32)UA_NamespaceManager_addNamespace(server->namespaceManager,
  450. namespaceIndex, nodeStore);
  451. }