ua_server.h 47 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  4. *
  5. * Copyright 2014-2017 (c) Fraunhofer IOSB (Author: Julius Pfrommer)
  6. * Copyright 2015-2016 (c) Sten Grüner
  7. * Copyright 2014-2015, 2017 (c) Florian Palm
  8. * Copyright 2015-2016 (c) Chris Iatrou
  9. * Copyright 2015-2016 (c) Oleksiy Vasylyev
  10. * Copyright 2016-2017 (c) Stefan Profanter, fortiss GmbH
  11. */
  12. #ifndef UA_SERVER_H_
  13. #define UA_SERVER_H_
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. #include "ua_types.h"
  18. #include "ua_types_generated.h"
  19. #include "ua_types_generated_handling.h"
  20. #include "ua_nodeids.h"
  21. struct UA_ServerConfig;
  22. typedef struct UA_ServerConfig UA_ServerConfig;
  23. struct UA_Server;
  24. typedef struct UA_Server UA_Server;
  25. struct UA_ClientConfig;
  26. struct UA_Client;
  27. /**
  28. * .. _server:
  29. *
  30. * Server
  31. * ======
  32. *
  33. * .. include:: server_config.rst
  34. *
  35. * .. _server-lifecycle:
  36. *
  37. * Server Lifecycle
  38. * ---------------- */
  39. UA_Server UA_EXPORT * UA_Server_new(const UA_ServerConfig *config);
  40. void UA_EXPORT UA_Server_delete(UA_Server *server);
  41. /* Runs the main loop of the server. In each iteration, this calls into the
  42. * networklayers to see if messages have arrived.
  43. *
  44. * @param server The server object.
  45. * @param running The loop is run as long as *running is true.
  46. * Otherwise, the server shuts down.
  47. * @return Returns the statuscode of the UA_Server_run_shutdown method */
  48. UA_StatusCode UA_EXPORT
  49. UA_Server_run(UA_Server *server, volatile UA_Boolean *running);
  50. /* The prologue part of UA_Server_run (no need to use if you call
  51. * UA_Server_run) */
  52. UA_StatusCode UA_EXPORT
  53. UA_Server_run_startup(UA_Server *server);
  54. /* Executes a single iteration of the server's main loop.
  55. *
  56. * @param server The server object.
  57. * @param waitInternal Should we wait for messages in the networklayer?
  58. * Otherwise, the timouts for the networklayers are set to zero.
  59. * The default max wait time is 50millisec.
  60. * @return Returns how long we can wait until the next scheduled
  61. * callback (in ms) */
  62. UA_UInt16 UA_EXPORT
  63. UA_Server_run_iterate(UA_Server *server, UA_Boolean waitInternal);
  64. /* The epilogue part of UA_Server_run (no need to use if you call
  65. * UA_Server_run) */
  66. UA_StatusCode UA_EXPORT
  67. UA_Server_run_shutdown(UA_Server *server);
  68. /**
  69. * Repeated Callbacks
  70. * ------------------ */
  71. typedef void (*UA_ServerCallback)(UA_Server *server, void *data);
  72. /* Add a callback for cyclic repetition to the server.
  73. *
  74. * @param server The server object.
  75. * @param callback The callback that shall be added.
  76. * @param interval The callback shall be repeatedly executed with the given interval
  77. * (in ms). The interval must be larger than 5ms. The first execution
  78. * occurs at now() + interval at the latest.
  79. * @param callbackId Set to the identifier of the repeated callback . This can be used to cancel
  80. * the callback later on. If the pointer is null, the identifier is not set.
  81. * @return Upon success, UA_STATUSCODE_GOOD is returned.
  82. * An error code otherwise. */
  83. UA_StatusCode UA_EXPORT
  84. UA_Server_addRepeatedCallback(UA_Server *server, UA_ServerCallback callback,
  85. void *data, UA_UInt32 interval, UA_UInt64 *callbackId);
  86. UA_StatusCode UA_EXPORT
  87. UA_Server_changeRepeatedCallbackInterval(UA_Server *server, UA_UInt64 callbackId,
  88. UA_UInt32 interval);
  89. /* Remove a repeated callback.
  90. *
  91. * @param server The server object.
  92. * @param callbackId The id of the callback that shall be removed.
  93. * @return Upon success, UA_STATUSCODE_GOOD is returned.
  94. * An error code otherwise. */
  95. UA_StatusCode UA_EXPORT
  96. UA_Server_removeRepeatedCallback(UA_Server *server, UA_UInt64 callbackId);
  97. /**
  98. * Reading and Writing Node Attributes
  99. * -----------------------------------
  100. * The functions for reading and writing node attributes call the regular read
  101. * and write service in the background that are also used over the network.
  102. *
  103. * The following attributes cannot be read, since the local "admin" user always
  104. * has full rights.
  105. *
  106. * - UserWriteMask
  107. * - UserAccessLevel
  108. * - UserExecutable */
  109. /* Read an attribute of a node. The specialized functions below provide a more
  110. * concise syntax.
  111. *
  112. * @param server The server object.
  113. * @param item ReadValueIds contain the NodeId of the target node, the id of the
  114. * attribute to read and (optionally) an index range to read parts
  115. * of an array only. See the section on NumericRange for the format
  116. * used for array ranges.
  117. * @param timestamps Which timestamps to return for the attribute.
  118. * @return Returns a DataValue that contains either an error code, or a variant
  119. * with the attribute value and the timestamps. */
  120. UA_DataValue UA_EXPORT
  121. UA_Server_read(UA_Server *server, const UA_ReadValueId *item,
  122. UA_TimestampsToReturn timestamps);
  123. /* Don't use this function. There are typed versions for every supported
  124. * attribute. */
  125. UA_StatusCode UA_EXPORT
  126. __UA_Server_read(UA_Server *server, const UA_NodeId *nodeId,
  127. UA_AttributeId attributeId, void *v);
  128. static UA_INLINE UA_StatusCode
  129. UA_Server_readNodeId(UA_Server *server, const UA_NodeId nodeId,
  130. UA_NodeId *outNodeId) {
  131. return __UA_Server_read(server, &nodeId, UA_ATTRIBUTEID_NODEID, outNodeId);
  132. }
  133. static UA_INLINE UA_StatusCode
  134. UA_Server_readNodeClass(UA_Server *server, const UA_NodeId nodeId,
  135. UA_NodeClass *outNodeClass) {
  136. return __UA_Server_read(server, &nodeId, UA_ATTRIBUTEID_NODECLASS,
  137. outNodeClass);
  138. }
  139. static UA_INLINE UA_StatusCode
  140. UA_Server_readBrowseName(UA_Server *server, const UA_NodeId nodeId,
  141. UA_QualifiedName *outBrowseName) {
  142. return __UA_Server_read(server, &nodeId, UA_ATTRIBUTEID_BROWSENAME,
  143. outBrowseName);
  144. }
  145. static UA_INLINE UA_StatusCode
  146. UA_Server_readDisplayName(UA_Server *server, const UA_NodeId nodeId,
  147. UA_LocalizedText *outDisplayName) {
  148. return __UA_Server_read(server, &nodeId, UA_ATTRIBUTEID_DISPLAYNAME,
  149. outDisplayName);
  150. }
  151. static UA_INLINE UA_StatusCode
  152. UA_Server_readDescription(UA_Server *server, const UA_NodeId nodeId,
  153. UA_LocalizedText *outDescription) {
  154. return __UA_Server_read(server, &nodeId, UA_ATTRIBUTEID_DESCRIPTION,
  155. outDescription);
  156. }
  157. static UA_INLINE UA_StatusCode
  158. UA_Server_readWriteMask(UA_Server *server, const UA_NodeId nodeId,
  159. UA_UInt32 *outWriteMask) {
  160. return __UA_Server_read(server, &nodeId, UA_ATTRIBUTEID_WRITEMASK,
  161. outWriteMask);
  162. }
  163. static UA_INLINE UA_StatusCode
  164. UA_Server_readIsAbstract(UA_Server *server, const UA_NodeId nodeId,
  165. UA_Boolean *outIsAbstract) {
  166. return __UA_Server_read(server, &nodeId, UA_ATTRIBUTEID_ISABSTRACT,
  167. outIsAbstract);
  168. }
  169. static UA_INLINE UA_StatusCode
  170. UA_Server_readSymmetric(UA_Server *server, const UA_NodeId nodeId,
  171. UA_Boolean *outSymmetric) {
  172. return __UA_Server_read(server, &nodeId, UA_ATTRIBUTEID_SYMMETRIC,
  173. outSymmetric);
  174. }
  175. static UA_INLINE UA_StatusCode
  176. UA_Server_readInverseName(UA_Server *server, const UA_NodeId nodeId,
  177. UA_LocalizedText *outInverseName) {
  178. return __UA_Server_read(server, &nodeId, UA_ATTRIBUTEID_INVERSENAME,
  179. outInverseName);
  180. }
  181. static UA_INLINE UA_StatusCode
  182. UA_Server_readContainsNoLoop(UA_Server *server, const UA_NodeId nodeId,
  183. UA_Boolean *outContainsNoLoops) {
  184. return __UA_Server_read(server, &nodeId, UA_ATTRIBUTEID_CONTAINSNOLOOPS,
  185. outContainsNoLoops);
  186. }
  187. static UA_INLINE UA_StatusCode
  188. UA_Server_readEventNotifier(UA_Server *server, const UA_NodeId nodeId,
  189. UA_Byte *outEventNotifier) {
  190. return __UA_Server_read(server, &nodeId, UA_ATTRIBUTEID_EVENTNOTIFIER,
  191. outEventNotifier);
  192. }
  193. static UA_INLINE UA_StatusCode
  194. UA_Server_readValue(UA_Server *server, const UA_NodeId nodeId,
  195. UA_Variant *outValue) {
  196. return __UA_Server_read(server, &nodeId, UA_ATTRIBUTEID_VALUE, outValue);
  197. }
  198. static UA_INLINE UA_StatusCode
  199. UA_Server_readDataType(UA_Server *server, const UA_NodeId nodeId,
  200. UA_NodeId *outDataType) {
  201. return __UA_Server_read(server, &nodeId, UA_ATTRIBUTEID_DATATYPE,
  202. outDataType);
  203. }
  204. static UA_INLINE UA_StatusCode
  205. UA_Server_readValueRank(UA_Server *server, const UA_NodeId nodeId,
  206. UA_Int32 *outValueRank) {
  207. return __UA_Server_read(server, &nodeId, UA_ATTRIBUTEID_VALUERANK,
  208. outValueRank);
  209. }
  210. /* Returns a variant with an int32 array */
  211. static UA_INLINE UA_StatusCode
  212. UA_Server_readArrayDimensions(UA_Server *server, const UA_NodeId nodeId,
  213. UA_Variant *outArrayDimensions) {
  214. return __UA_Server_read(server, &nodeId, UA_ATTRIBUTEID_ARRAYDIMENSIONS,
  215. outArrayDimensions);
  216. }
  217. static UA_INLINE UA_StatusCode
  218. UA_Server_readAccessLevel(UA_Server *server, const UA_NodeId nodeId,
  219. UA_Byte *outAccessLevel) {
  220. return __UA_Server_read(server, &nodeId, UA_ATTRIBUTEID_ACCESSLEVEL,
  221. outAccessLevel);
  222. }
  223. static UA_INLINE UA_StatusCode
  224. UA_Server_readMinimumSamplingInterval(UA_Server *server, const UA_NodeId nodeId,
  225. UA_Double *outMinimumSamplingInterval) {
  226. return __UA_Server_read(server, &nodeId,
  227. UA_ATTRIBUTEID_MINIMUMSAMPLINGINTERVAL,
  228. outMinimumSamplingInterval);
  229. }
  230. static UA_INLINE UA_StatusCode
  231. UA_Server_readHistorizing(UA_Server *server, const UA_NodeId nodeId,
  232. UA_Boolean *outHistorizing) {
  233. return __UA_Server_read(server, &nodeId, UA_ATTRIBUTEID_HISTORIZING,
  234. outHistorizing);
  235. }
  236. static UA_INLINE UA_StatusCode
  237. UA_Server_readExecutable(UA_Server *server, const UA_NodeId nodeId,
  238. UA_Boolean *outExecutable) {
  239. return __UA_Server_read(server, &nodeId, UA_ATTRIBUTEID_EXECUTABLE,
  240. outExecutable);
  241. }
  242. /**
  243. * The following node attributes cannot be changed once a node has been created:
  244. *
  245. * - NodeClass
  246. * - NodeId
  247. * - Symmetric
  248. * - ContainsNoLoop
  249. *
  250. * The following attributes cannot be written from the server, as they are
  251. * specific to the different users and set by the access control callback:
  252. *
  253. * - UserWriteMask
  254. * - UserAccessLevel
  255. * - UserExecutable
  256. *
  257. * Historizing is currently unsupported */
  258. /* Overwrite an attribute of a node. The specialized functions below provide a
  259. * more concise syntax.
  260. *
  261. * @param server The server object.
  262. * @param value WriteValues contain the NodeId of the target node, the id of the
  263. * attribute to overwritten, the actual value and (optionally) an
  264. * index range to replace parts of an array only. of an array only.
  265. * See the section on NumericRange for the format used for array
  266. * ranges.
  267. * @return Returns a status code. */
  268. UA_StatusCode UA_EXPORT
  269. UA_Server_write(UA_Server *server, const UA_WriteValue *value);
  270. /* Don't use this function. There are typed versions with no additional
  271. * overhead. */
  272. UA_StatusCode UA_EXPORT
  273. __UA_Server_write(UA_Server *server, const UA_NodeId *nodeId,
  274. const UA_AttributeId attributeId,
  275. const UA_DataType *attr_type, const void *attr);
  276. static UA_INLINE UA_StatusCode
  277. UA_Server_writeBrowseName(UA_Server *server, const UA_NodeId nodeId,
  278. const UA_QualifiedName browseName) {
  279. return __UA_Server_write(server, &nodeId, UA_ATTRIBUTEID_BROWSENAME,
  280. &UA_TYPES[UA_TYPES_QUALIFIEDNAME], &browseName);
  281. }
  282. static UA_INLINE UA_StatusCode
  283. UA_Server_writeDisplayName(UA_Server *server, const UA_NodeId nodeId,
  284. const UA_LocalizedText displayName) {
  285. return __UA_Server_write(server, &nodeId, UA_ATTRIBUTEID_DISPLAYNAME,
  286. &UA_TYPES[UA_TYPES_LOCALIZEDTEXT], &displayName);
  287. }
  288. static UA_INLINE UA_StatusCode
  289. UA_Server_writeDescription(UA_Server *server, const UA_NodeId nodeId,
  290. const UA_LocalizedText description) {
  291. return __UA_Server_write(server, &nodeId, UA_ATTRIBUTEID_DESCRIPTION,
  292. &UA_TYPES[UA_TYPES_LOCALIZEDTEXT], &description);
  293. }
  294. static UA_INLINE UA_StatusCode
  295. UA_Server_writeWriteMask(UA_Server *server, const UA_NodeId nodeId,
  296. const UA_UInt32 writeMask) {
  297. return __UA_Server_write(server, &nodeId, UA_ATTRIBUTEID_WRITEMASK,
  298. &UA_TYPES[UA_TYPES_UINT32], &writeMask);
  299. }
  300. static UA_INLINE UA_StatusCode
  301. UA_Server_writeIsAbstract(UA_Server *server, const UA_NodeId nodeId,
  302. const UA_Boolean isAbstract) {
  303. return __UA_Server_write(server, &nodeId, UA_ATTRIBUTEID_ISABSTRACT,
  304. &UA_TYPES[UA_TYPES_BOOLEAN], &isAbstract);
  305. }
  306. static UA_INLINE UA_StatusCode
  307. UA_Server_writeInverseName(UA_Server *server, const UA_NodeId nodeId,
  308. const UA_LocalizedText inverseName) {
  309. return __UA_Server_write(server, &nodeId, UA_ATTRIBUTEID_INVERSENAME,
  310. &UA_TYPES[UA_TYPES_LOCALIZEDTEXT], &inverseName);
  311. }
  312. static UA_INLINE UA_StatusCode
  313. UA_Server_writeEventNotifier(UA_Server *server, const UA_NodeId nodeId,
  314. const UA_Byte eventNotifier) {
  315. return __UA_Server_write(server, &nodeId, UA_ATTRIBUTEID_EVENTNOTIFIER,
  316. &UA_TYPES[UA_TYPES_BYTE], &eventNotifier);
  317. }
  318. static UA_INLINE UA_StatusCode
  319. UA_Server_writeValue(UA_Server *server, const UA_NodeId nodeId,
  320. const UA_Variant value) {
  321. return __UA_Server_write(server, &nodeId, UA_ATTRIBUTEID_VALUE,
  322. &UA_TYPES[UA_TYPES_VARIANT], &value);
  323. }
  324. static UA_INLINE UA_StatusCode
  325. UA_Server_writeDataType(UA_Server *server, const UA_NodeId nodeId,
  326. const UA_NodeId dataType) {
  327. return __UA_Server_write(server, &nodeId, UA_ATTRIBUTEID_DATATYPE,
  328. &UA_TYPES[UA_TYPES_NODEID], &dataType);
  329. }
  330. static UA_INLINE UA_StatusCode
  331. UA_Server_writeValueRank(UA_Server *server, const UA_NodeId nodeId,
  332. const UA_Int32 valueRank) {
  333. return __UA_Server_write(server, &nodeId, UA_ATTRIBUTEID_VALUERANK,
  334. &UA_TYPES[UA_TYPES_INT32], &valueRank);
  335. }
  336. static UA_INLINE UA_StatusCode
  337. UA_Server_writeArrayDimensions(UA_Server *server, const UA_NodeId nodeId,
  338. const UA_Variant arrayDimensions) {
  339. return __UA_Server_write(server, &nodeId, UA_ATTRIBUTEID_VALUE,
  340. &UA_TYPES[UA_TYPES_VARIANT], &arrayDimensions);
  341. }
  342. static UA_INLINE UA_StatusCode
  343. UA_Server_writeAccessLevel(UA_Server *server, const UA_NodeId nodeId,
  344. const UA_Byte accessLevel) {
  345. return __UA_Server_write(server, &nodeId, UA_ATTRIBUTEID_ACCESSLEVEL,
  346. &UA_TYPES[UA_TYPES_BYTE], &accessLevel);
  347. }
  348. static UA_INLINE UA_StatusCode
  349. UA_Server_writeMinimumSamplingInterval(UA_Server *server, const UA_NodeId nodeId,
  350. const UA_Double miniumSamplingInterval) {
  351. return __UA_Server_write(server, &nodeId,
  352. UA_ATTRIBUTEID_MINIMUMSAMPLINGINTERVAL,
  353. &UA_TYPES[UA_TYPES_DOUBLE],
  354. &miniumSamplingInterval);
  355. }
  356. static UA_INLINE UA_StatusCode
  357. UA_Server_writeExecutable(UA_Server *server, const UA_NodeId nodeId,
  358. const UA_Boolean executable) {
  359. return __UA_Server_write(server, &nodeId, UA_ATTRIBUTEID_EXECUTABLE,
  360. &UA_TYPES[UA_TYPES_BOOLEAN], &executable); }
  361. /**
  362. * Browsing
  363. * -------- */
  364. UA_BrowseResult UA_EXPORT
  365. UA_Server_browse(UA_Server *server, UA_UInt32 maxrefs,
  366. const UA_BrowseDescription *descr);
  367. UA_BrowseResult UA_EXPORT
  368. UA_Server_browseNext(UA_Server *server, UA_Boolean releaseContinuationPoint,
  369. const UA_ByteString *continuationPoint);
  370. UA_BrowsePathResult UA_EXPORT
  371. UA_Server_translateBrowsePathToNodeIds(UA_Server *server,
  372. const UA_BrowsePath *browsePath);
  373. #ifndef HAVE_NODEITER_CALLBACK
  374. #define HAVE_NODEITER_CALLBACK
  375. /* Iterate over all nodes referenced by parentNodeId by calling the callback
  376. * function for each child node (in ifdef because GCC/CLANG handle include order
  377. * differently) */
  378. typedef UA_StatusCode
  379. (*UA_NodeIteratorCallback)(UA_NodeId childId, UA_Boolean isInverse,
  380. UA_NodeId referenceTypeId, void *handle);
  381. #endif
  382. UA_StatusCode UA_EXPORT
  383. UA_Server_forEachChildNodeCall(UA_Server *server, UA_NodeId parentNodeId,
  384. UA_NodeIteratorCallback callback, void *handle);
  385. #ifdef UA_ENABLE_DISCOVERY
  386. /**
  387. * Discovery
  388. * --------- */
  389. /* Register the given server instance at the discovery server.
  390. * This should be called periodically.
  391. * The semaphoreFilePath is optional. If the given file is deleted,
  392. * the server will automatically be unregistered. This could be
  393. * for example a pid file which is deleted if the server crashes.
  394. *
  395. * When the server shuts down you need to call unregister.
  396. *
  397. * @param server
  398. * @param client the client which is used to call the RegisterServer. It must
  399. * already be connected to the correct endpoint
  400. * @param semaphoreFilePath optional parameter pointing to semaphore file. */
  401. UA_StatusCode UA_EXPORT
  402. UA_Server_register_discovery(UA_Server *server, struct UA_Client *client,
  403. const char* semaphoreFilePath);
  404. /* Unregister the given server instance from the discovery server.
  405. * This should only be called when the server is shutting down.
  406. * @param server
  407. * @param client the client which is used to call the RegisterServer. It must
  408. * already be connected to the correct endpoint */
  409. UA_StatusCode UA_EXPORT
  410. UA_Server_unregister_discovery(UA_Server *server, struct UA_Client *client);
  411. /* Adds a periodic callback to register the server with the LDS (local discovery server)
  412. * periodically. The interval between each register call is given as second parameter.
  413. * It should be 10 minutes by default (= 10*60*1000).
  414. *
  415. * The delayFirstRegisterMs parameter indicates the delay for the first register call.
  416. * If it is 0, the first register call will be after intervalMs milliseconds,
  417. * otherwise the server's first register will be after delayFirstRegisterMs.
  418. *
  419. * When you manually unregister the server, you also need to cancel the
  420. * periodic callback, otherwise it will be automatically be registered again.
  421. *
  422. * If you call this method multiple times for the same discoveryServerUrl, the older
  423. * periodic callback will be removed.
  424. *
  425. * @param server
  426. * @param client the client which is used to call the RegisterServer.
  427. * It must not yet be connected and will be connected for every register call
  428. * to the given discoveryServerUrl.
  429. * @param discoveryServerUrl if set to NULL, the default value
  430. * 'opc.tcp://localhost:4840' will be used
  431. * @param intervalMs
  432. * @param delayFirstRegisterMs
  433. * @param periodicCallbackId */
  434. UA_StatusCode UA_EXPORT
  435. UA_Server_addPeriodicServerRegisterCallback(UA_Server *server, struct UA_Client *client,
  436. const char* discoveryServerUrl,
  437. UA_UInt32 intervalMs,
  438. UA_UInt32 delayFirstRegisterMs,
  439. UA_UInt64 *periodicCallbackId);
  440. /* Callback for RegisterServer. Data is passed from the register call */
  441. typedef void (*UA_Server_registerServerCallback)(const UA_RegisteredServer *registeredServer,
  442. void* data);
  443. /* Set the callback which is called if another server registeres or unregisters
  444. * with this instance. If called multiple times, previous data will be
  445. * overwritten.
  446. *
  447. * @param server
  448. * @param cb the callback
  449. * @param data data passed to the callback
  450. * @return UA_STATUSCODE_SUCCESS on success */
  451. void UA_EXPORT
  452. UA_Server_setRegisterServerCallback(UA_Server *server, UA_Server_registerServerCallback cb,
  453. void* data);
  454. #ifdef UA_ENABLE_DISCOVERY_MULTICAST
  455. /* Callback for server detected through mDNS. Data is passed from the register
  456. * call
  457. *
  458. * @param isServerAnnounce indicates if the server has just been detected. If
  459. * set to false, this means the server is shutting down.
  460. * @param isTxtReceived indicates if we already received the corresponding TXT
  461. * record with the path and caps data */
  462. typedef void (*UA_Server_serverOnNetworkCallback)(const UA_ServerOnNetwork *serverOnNetwork,
  463. UA_Boolean isServerAnnounce,
  464. UA_Boolean isTxtReceived, void* data);
  465. /* Set the callback which is called if another server is found through mDNS or
  466. * deleted. It will be called for any mDNS message from the remote server, thus
  467. * it may be called multiple times for the same instance. Also the SRV and TXT
  468. * records may arrive later, therefore for the first call the server
  469. * capabilities may not be set yet. If called multiple times, previous data will
  470. * be overwritten.
  471. *
  472. * @param server
  473. * @param cb the callback
  474. * @param data data passed to the callback
  475. * @return UA_STATUSCODE_SUCCESS on success */
  476. void UA_EXPORT
  477. UA_Server_setServerOnNetworkCallback(UA_Server *server,
  478. UA_Server_serverOnNetworkCallback cb,
  479. void* data);
  480. #endif /* UA_ENABLE_DISCOVERY_MULTICAST */
  481. #endif /* UA_ENABLE_DISCOVERY */
  482. /**
  483. * Information Model Callbacks
  484. * ---------------------------
  485. *
  486. * There are three places where a callback from an information model to
  487. * user-defined code can happen.
  488. *
  489. * - Custom node constructors and destructors
  490. * - Linking VariableNodes with an external data source
  491. * - MethodNode callbacks
  492. *
  493. * .. _node-lifecycle:
  494. *
  495. * Node Lifecycle: Constructors, Destructors and Node Contexts
  496. * ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  497. *
  498. * To finalize the instantiation of a node, a (user-defined) constructor
  499. * callback is executed. There can be both a global constructor for all nodes
  500. * and node-type constructor specific to the TypeDefinition of the new node
  501. * (attached to an ObjectTypeNode or VariableTypeNode).
  502. *
  503. * In the hierarchy of ObjectTypes and VariableTypes, only the constructor of
  504. * the (lowest) type defined for the new node is executed. Note that every
  505. * Object and Variable can have only one ``isTypeOf`` reference. But type-nodes
  506. * can technically have several ``hasSubType`` references to implement multiple
  507. * inheritance. Issues of (multiple) inheritance in the constructor need to be
  508. * solved by the user.
  509. *
  510. * When a node is destroyed, the node-type destructor is called before the
  511. * global destructor. So the overall node lifecycle is as follows:
  512. *
  513. * 1. Global Constructor (set in the server config)
  514. * 2. Node-Type Constructor (for VariableType or ObjectTypes)
  515. * 3. (Usage-period of the Node)
  516. * 4. Node-Type Destructor
  517. * 5. Global Destructor
  518. *
  519. * The constructor and destructor callbacks can be set to ``NULL`` and are not
  520. * used in that case. If the node-type constructor fails, the global destructor
  521. * will be called before removing the node. The destructors are assumed to never
  522. * fail.
  523. *
  524. * Every node carries a user-context and a constructor-context pointer. The
  525. * user-context is used to attach custom data to a node. But the (user-defined)
  526. * constructors and destructors may replace the user-context pointer if they
  527. * wish to do so. The initial value for the constructor-context is ``NULL``.
  528. * When the ``AddNodes`` service is used over the network, the user-context
  529. * pointer of the new node is also initially set to ``NULL``. */
  530. /* To be set in the server config. */
  531. typedef struct {
  532. /* Can be NULL. May replace the nodeContext */
  533. UA_StatusCode (*constructor)(UA_Server *server,
  534. const UA_NodeId *sessionId, void *sessionContext,
  535. const UA_NodeId *nodeId, void **nodeContext);
  536. /* Can be NULL. The context cannot be replaced since the node is destroyed
  537. * immediately afterwards anyway. */
  538. void (*destructor)(UA_Server *server,
  539. const UA_NodeId *sessionId, void *sessionContext,
  540. const UA_NodeId *nodeId, void *nodeContext);
  541. } UA_GlobalNodeLifecycle;
  542. typedef struct {
  543. /* Can be NULL. May replace the nodeContext */
  544. UA_StatusCode (*constructor)(UA_Server *server,
  545. const UA_NodeId *sessionId, void *sessionContext,
  546. const UA_NodeId *typeNodeId, void *typeNodeContext,
  547. const UA_NodeId *nodeId, void **nodeContext);
  548. /* Can be NULL. May replace the nodeContext. */
  549. void (*destructor)(UA_Server *server,
  550. const UA_NodeId *sessionId, void *sessionContext,
  551. const UA_NodeId *typeNodeId, void *typeNodeContext,
  552. const UA_NodeId *nodeId, void **nodeContext);
  553. } UA_NodeTypeLifecycle;
  554. UA_StatusCode UA_EXPORT
  555. UA_Server_setNodeTypeLifecycle(UA_Server *server, UA_NodeId nodeId,
  556. UA_NodeTypeLifecycle lifecycle);
  557. UA_StatusCode UA_EXPORT
  558. UA_Server_getNodeContext(UA_Server *server, UA_NodeId nodeId,
  559. void **nodeContext);
  560. /* Careful! The user has to ensure that the destructor callbacks still work. */
  561. UA_StatusCode UA_EXPORT
  562. UA_Server_setNodeContext(UA_Server *server, UA_NodeId nodeId,
  563. void *nodeContext);
  564. /**
  565. * .. _datasource:
  566. *
  567. * Data Source Callback
  568. * ^^^^^^^^^^^^^^^^^^^^
  569. *
  570. * The server has a unique way of dealing with the content of variables. Instead
  571. * of storing a variant attached to the variable node, the node can point to a
  572. * function with a local data provider. Whenever the value attribute is read,
  573. * the function will be called and asked to provide a UA_DataValue return value
  574. * that contains the value content and additional timestamps.
  575. *
  576. * It is expected that the read callback is implemented. The write callback can
  577. * be set to a null-pointer. */
  578. typedef struct {
  579. /* Copies the data from the source into the provided value.
  580. *
  581. * !! ZERO-COPY OPERATIONS POSSIBLE !!
  582. * It is not required to return a copy of the actual content data. You can
  583. * return a pointer to memory owned by the user. Memory can be reused
  584. * between read callbacks of a DataSource, as the result is already encoded
  585. * on the network buffer between each read operation.
  586. *
  587. * To use zero-copy reads, set the value of the `value->value` Variant
  588. * without copying, e.g. with `UA_Variant_setScalar`. Then, also set
  589. * `value->value.storageType` to `UA_VARIANT_DATA_NODELETE` to prevent the
  590. * memory being cleaned up. Don't forget to also set `value->hasValue` to
  591. * true to indicate the presence of a value.
  592. *
  593. * @param handle An optional pointer to user-defined data for the
  594. * specific data source
  595. * @param nodeid Id of the read node
  596. * @param includeSourceTimeStamp If true, then the datasource is expected to
  597. * set the source timestamp in the returned value
  598. * @param range If not null, then the datasource shall return only a
  599. * selection of the (nonscalar) data. Set
  600. * UA_STATUSCODE_BADINDEXRANGEINVALID in the value if this does not
  601. * apply.
  602. * @param value The (non-null) DataValue that is returned to the client. The
  603. * data source sets the read data, the result status and optionally a
  604. * sourcetimestamp.
  605. * @return Returns a status code for logging. Error codes intended for the
  606. * original caller are set in the value. If an error is returned,
  607. * then no releasing of the value is done. */
  608. UA_StatusCode (*read)(UA_Server *server, const UA_NodeId *sessionId,
  609. void *sessionContext, const UA_NodeId *nodeId,
  610. void *nodeContext, UA_Boolean includeSourceTimeStamp,
  611. const UA_NumericRange *range, UA_DataValue *value);
  612. /* Write into a data source. This method pointer can be NULL if the
  613. * operation is unsupported.
  614. *
  615. * @param handle An optional pointer to user-defined data for the
  616. * specific data source
  617. * @param nodeid Id of the node being written to
  618. * @param data The data to be written into the data source
  619. * @param range An optional data range. If the data source is scalar or does
  620. * not support writing of ranges, then an error code is returned.
  621. * @return Returns a status code that is returned to the user */
  622. UA_StatusCode (*write)(UA_Server *server, const UA_NodeId *sessionId,
  623. void *sessionContext, const UA_NodeId *nodeId,
  624. void *nodeContext, const UA_NumericRange *range,
  625. const UA_DataValue *value);
  626. } UA_DataSource;
  627. UA_StatusCode UA_EXPORT
  628. UA_Server_setVariableNode_dataSource(UA_Server *server, const UA_NodeId nodeId,
  629. const UA_DataSource dataSource);
  630. /**
  631. * .. _value-callback:
  632. *
  633. * Value Callback
  634. * ^^^^^^^^^^^^^^
  635. * Value Callbacks can be attached to variable and variable type nodes. If
  636. * not ``NULL``, they are called before reading and after writing respectively. */
  637. typedef struct {
  638. /* Called before the value attribute is read. It is possible to write into the
  639. * value attribute during onRead (using the write service). The node is
  640. * re-opened afterwards so that changes are considered in the following read
  641. * operation.
  642. *
  643. * @param handle Points to user-provided data for the callback.
  644. * @param nodeid The identifier of the node.
  645. * @param data Points to the current node value.
  646. * @param range Points to the numeric range the client wants to read from
  647. * (or NULL). */
  648. void (*onRead)(UA_Server *server, const UA_NodeId *sessionId,
  649. void *sessionContext, const UA_NodeId *nodeid,
  650. void *nodeContext, const UA_NumericRange *range,
  651. const UA_DataValue *value);
  652. /* Called after writing the value attribute. The node is re-opened after
  653. * writing so that the new value is visible in the callback.
  654. *
  655. * @param server The server executing the callback
  656. * @sessionId The identifier of the session
  657. * @sessionContext Additional data attached to the session
  658. * in the access control layer
  659. * @param nodeid The identifier of the node.
  660. * @param nodeUserContext Additional data attached to the node by
  661. * the user.
  662. * @param nodeConstructorContext Additional data attached to the node
  663. * by the type constructor(s).
  664. * @param range Points to the numeric range the client wants to write to (or
  665. * NULL). */
  666. void (*onWrite)(UA_Server *server, const UA_NodeId *sessionId,
  667. void *sessionContext, const UA_NodeId *nodeId,
  668. void *nodeContext, const UA_NumericRange *range,
  669. const UA_DataValue *data);
  670. } UA_ValueCallback;
  671. UA_StatusCode UA_EXPORT
  672. UA_Server_setVariableNode_valueCallback(UA_Server *server,
  673. const UA_NodeId nodeId,
  674. const UA_ValueCallback callback);
  675. /**
  676. * Method Callbacks
  677. * ^^^^^^^^^^^^^^^^
  678. * Method callbacks are set to `NULL` (not executable) when a method node is added
  679. * over the network. In theory, it is possible to add a callback via
  680. * ``UA_Server_setMethodNode_callback`` within the global constructor when adding
  681. * methods over the network is really wanted. */
  682. typedef UA_StatusCode
  683. (*UA_MethodCallback)(UA_Server *server, const UA_NodeId *sessionId,
  684. void *sessionContext, const UA_NodeId *methodId,
  685. void *methodContext, const UA_NodeId *objectId,
  686. void *objectContext, size_t inputSize,
  687. const UA_Variant *input, size_t outputSize,
  688. UA_Variant *output);
  689. #ifdef UA_ENABLE_METHODCALLS
  690. UA_StatusCode UA_EXPORT
  691. UA_Server_setMethodNode_callback(UA_Server *server,
  692. const UA_NodeId methodNodeId,
  693. UA_MethodCallback methodCallback);
  694. UA_CallMethodResult UA_EXPORT
  695. UA_Server_call(UA_Server *server, const UA_CallMethodRequest *request);
  696. #endif
  697. /**
  698. * .. _addnodes:
  699. *
  700. * Node Addition and Deletion
  701. * --------------------------
  702. * When creating dynamic node instances at runtime, chances are that you will
  703. * not care about the specific NodeId of the new node, as long as you can
  704. * reference it later. When passing numeric NodeIds with a numeric identifier 0,
  705. * the stack evaluates this as "select a random unassigned numeric NodeId in
  706. * that namespace". To find out which NodeId was actually assigned to the new
  707. * node, you may pass a pointer `outNewNodeId`, which will (after a successful
  708. * node insertion) contain the nodeId of the new node. You may also pass a
  709. * ``NULL`` pointer if this result is not needed.
  710. *
  711. * See the Section :ref:`node-lifecycle` on constructors and on attaching
  712. * user-defined data to nodes.
  713. *
  714. * The methods for node addition and deletion take mostly const arguments that
  715. * are not modified. When creating a node, a deep copy of the node identifier,
  716. * node attributes, etc. is created. Therefore, it is possible to call for
  717. * example ``UA_Server_addVariablenode`` with a value attribute (a
  718. * :ref:`variant`) pointing to a memory location on the stack. If you need
  719. * changes to a variable value to manifest at a specific memory location, please
  720. * use a :ref:`datasource` or a :ref:`value-callback`. */
  721. /* Protect against redundant definitions for server/client */
  722. #ifndef UA_DEFAULT_ATTRIBUTES_DEFINED
  723. #define UA_DEFAULT_ATTRIBUTES_DEFINED
  724. /* The default for variables is "BaseDataType" for the datatype, -2 for the
  725. * valuerank and a read-accesslevel. */
  726. UA_EXPORT extern const UA_VariableAttributes UA_VariableAttributes_default;
  727. UA_EXPORT extern const UA_VariableTypeAttributes UA_VariableTypeAttributes_default;
  728. /* Methods are executable by default */
  729. UA_EXPORT extern const UA_MethodAttributes UA_MethodAttributes_default;
  730. /* The remaining attribute definitions are currently all zeroed out */
  731. UA_EXPORT extern const UA_ObjectAttributes UA_ObjectAttributes_default;
  732. UA_EXPORT extern const UA_ObjectTypeAttributes UA_ObjectTypeAttributes_default;
  733. UA_EXPORT extern const UA_ReferenceTypeAttributes UA_ReferenceTypeAttributes_default;
  734. UA_EXPORT extern const UA_DataTypeAttributes UA_DataTypeAttributes_default;
  735. UA_EXPORT extern const UA_ViewAttributes UA_ViewAttributes_default;
  736. #endif
  737. /* Don't use this function. There are typed versions as inline functions. */
  738. UA_StatusCode UA_EXPORT
  739. __UA_Server_addNode(UA_Server *server, const UA_NodeClass nodeClass,
  740. const UA_NodeId *requestedNewNodeId,
  741. const UA_NodeId *parentNodeId,
  742. const UA_NodeId *referenceTypeId,
  743. const UA_QualifiedName browseName,
  744. const UA_NodeId *typeDefinition,
  745. const UA_NodeAttributes *attr,
  746. const UA_DataType *attributeType,
  747. void *nodeContext, UA_NodeId *outNewNodeId);
  748. static UA_INLINE UA_StatusCode
  749. UA_Server_addVariableNode(UA_Server *server, const UA_NodeId requestedNewNodeId,
  750. const UA_NodeId parentNodeId,
  751. const UA_NodeId referenceTypeId,
  752. const UA_QualifiedName browseName,
  753. const UA_NodeId typeDefinition,
  754. const UA_VariableAttributes attr,
  755. void *nodeContext, UA_NodeId *outNewNodeId) {
  756. return __UA_Server_addNode(server, UA_NODECLASS_VARIABLE, &requestedNewNodeId,
  757. &parentNodeId, &referenceTypeId, browseName,
  758. &typeDefinition, (const UA_NodeAttributes*)&attr,
  759. &UA_TYPES[UA_TYPES_VARIABLEATTRIBUTES],
  760. nodeContext, outNewNodeId);
  761. }
  762. static UA_INLINE UA_StatusCode
  763. UA_Server_addVariableTypeNode(UA_Server *server,
  764. const UA_NodeId requestedNewNodeId,
  765. const UA_NodeId parentNodeId,
  766. const UA_NodeId referenceTypeId,
  767. const UA_QualifiedName browseName,
  768. const UA_NodeId typeDefinition,
  769. const UA_VariableTypeAttributes attr,
  770. void *nodeContext, UA_NodeId *outNewNodeId) {
  771. return __UA_Server_addNode(server, UA_NODECLASS_VARIABLETYPE,
  772. &requestedNewNodeId, &parentNodeId, &referenceTypeId,
  773. browseName, &typeDefinition,
  774. (const UA_NodeAttributes*)&attr,
  775. &UA_TYPES[UA_TYPES_VARIABLETYPEATTRIBUTES],
  776. nodeContext, outNewNodeId);
  777. }
  778. static UA_INLINE UA_StatusCode
  779. UA_Server_addObjectNode(UA_Server *server, const UA_NodeId requestedNewNodeId,
  780. const UA_NodeId parentNodeId,
  781. const UA_NodeId referenceTypeId,
  782. const UA_QualifiedName browseName,
  783. const UA_NodeId typeDefinition,
  784. const UA_ObjectAttributes attr,
  785. void *nodeContext, UA_NodeId *outNewNodeId) {
  786. return __UA_Server_addNode(server, UA_NODECLASS_OBJECT, &requestedNewNodeId,
  787. &parentNodeId, &referenceTypeId, browseName,
  788. &typeDefinition, (const UA_NodeAttributes*)&attr,
  789. &UA_TYPES[UA_TYPES_OBJECTATTRIBUTES],
  790. nodeContext, outNewNodeId);
  791. }
  792. static UA_INLINE UA_StatusCode
  793. UA_Server_addObjectTypeNode(UA_Server *server, const UA_NodeId requestedNewNodeId,
  794. const UA_NodeId parentNodeId,
  795. const UA_NodeId referenceTypeId,
  796. const UA_QualifiedName browseName,
  797. const UA_ObjectTypeAttributes attr,
  798. void *nodeContext, UA_NodeId *outNewNodeId) {
  799. return __UA_Server_addNode(server, UA_NODECLASS_OBJECTTYPE, &requestedNewNodeId,
  800. &parentNodeId, &referenceTypeId, browseName,
  801. &UA_NODEID_NULL, (const UA_NodeAttributes*)&attr,
  802. &UA_TYPES[UA_TYPES_OBJECTTYPEATTRIBUTES],
  803. nodeContext, outNewNodeId);
  804. }
  805. static UA_INLINE UA_StatusCode
  806. UA_Server_addViewNode(UA_Server *server, const UA_NodeId requestedNewNodeId,
  807. const UA_NodeId parentNodeId,
  808. const UA_NodeId referenceTypeId,
  809. const UA_QualifiedName browseName,
  810. const UA_ViewAttributes attr,
  811. void *nodeContext, UA_NodeId *outNewNodeId) {
  812. return __UA_Server_addNode(server, UA_NODECLASS_VIEW, &requestedNewNodeId,
  813. &parentNodeId, &referenceTypeId, browseName,
  814. &UA_NODEID_NULL, (const UA_NodeAttributes*)&attr,
  815. &UA_TYPES[UA_TYPES_VIEWATTRIBUTES],
  816. nodeContext, outNewNodeId);
  817. }
  818. static UA_INLINE UA_StatusCode
  819. UA_Server_addReferenceTypeNode(UA_Server *server,
  820. const UA_NodeId requestedNewNodeId,
  821. const UA_NodeId parentNodeId,
  822. const UA_NodeId referenceTypeId,
  823. const UA_QualifiedName browseName,
  824. const UA_ReferenceTypeAttributes attr,
  825. void *nodeContext, UA_NodeId *outNewNodeId) {
  826. return __UA_Server_addNode(server, UA_NODECLASS_REFERENCETYPE,
  827. &requestedNewNodeId, &parentNodeId, &referenceTypeId,
  828. browseName, &UA_NODEID_NULL,
  829. (const UA_NodeAttributes*)&attr,
  830. &UA_TYPES[UA_TYPES_REFERENCETYPEATTRIBUTES],
  831. nodeContext, outNewNodeId);
  832. }
  833. static UA_INLINE UA_StatusCode
  834. UA_Server_addDataTypeNode(UA_Server *server,
  835. const UA_NodeId requestedNewNodeId,
  836. const UA_NodeId parentNodeId,
  837. const UA_NodeId referenceTypeId,
  838. const UA_QualifiedName browseName,
  839. const UA_DataTypeAttributes attr,
  840. void *nodeContext, UA_NodeId *outNewNodeId) {
  841. return __UA_Server_addNode(server, UA_NODECLASS_DATATYPE, &requestedNewNodeId,
  842. &parentNodeId, &referenceTypeId, browseName,
  843. &UA_NODEID_NULL, (const UA_NodeAttributes*)&attr,
  844. &UA_TYPES[UA_TYPES_DATATYPEATTRIBUTES],
  845. nodeContext, outNewNodeId);
  846. }
  847. UA_StatusCode UA_EXPORT
  848. UA_Server_addDataSourceVariableNode(UA_Server *server,
  849. const UA_NodeId requestedNewNodeId,
  850. const UA_NodeId parentNodeId,
  851. const UA_NodeId referenceTypeId,
  852. const UA_QualifiedName browseName,
  853. const UA_NodeId typeDefinition,
  854. const UA_VariableAttributes attr,
  855. const UA_DataSource dataSource,
  856. void *nodeContext, UA_NodeId *outNewNodeId);
  857. #ifdef UA_ENABLE_METHODCALLS
  858. UA_StatusCode UA_EXPORT
  859. UA_Server_addMethodNodeEx(UA_Server *server, const UA_NodeId requestedNewNodeId,
  860. const UA_NodeId parentNodeId,
  861. const UA_NodeId referenceTypeId,
  862. const UA_QualifiedName browseName,
  863. const UA_MethodAttributes attr, UA_MethodCallback method,
  864. size_t inputArgumentsSize, const UA_Argument *inputArguments,
  865. const UA_NodeId inputArgumentsRequestedNewNodeId,
  866. UA_NodeId *inputArgumentsOutNewNodeId,
  867. size_t outputArgumentsSize, const UA_Argument *outputArguments,
  868. const UA_NodeId outputArgumentsRequestedNewNodeId,
  869. UA_NodeId *outputArgumentsOutNewNodeId,
  870. void *nodeContext, UA_NodeId *outNewNodeId);
  871. static UA_INLINE UA_StatusCode
  872. UA_Server_addMethodNode(UA_Server *server, const UA_NodeId requestedNewNodeId,
  873. const UA_NodeId parentNodeId, const UA_NodeId referenceTypeId,
  874. const UA_QualifiedName browseName, const UA_MethodAttributes attr,
  875. UA_MethodCallback method,
  876. size_t inputArgumentsSize, const UA_Argument *inputArguments,
  877. size_t outputArgumentsSize, const UA_Argument *outputArguments,
  878. void *nodeContext, UA_NodeId *outNewNodeId) {
  879. return UA_Server_addMethodNodeEx(server, requestedNewNodeId, parentNodeId,
  880. referenceTypeId, browseName, attr, method,
  881. inputArgumentsSize, inputArguments, UA_NODEID_NULL, NULL,
  882. outputArgumentsSize, outputArguments, UA_NODEID_NULL, NULL,
  883. nodeContext, outNewNodeId);
  884. }
  885. #endif
  886. /**
  887. * The method pair UA_Server_addNode_begin and _finish splits the AddNodes
  888. * service in two parts. This is useful if the node shall be modified before
  889. * finish the instantiation. For example to add children with specific NodeIds.
  890. * Otherwise, mandatory children (e.g. of an ObjectType) are added with
  891. * pseudo-random unique NodeIds. Existing children are detected during the
  892. * _finish part via their matching BrowseName.
  893. *
  894. * The _begin method:
  895. * - prepares the node and adds it to the nodestore
  896. * - copies some unassigned attributes from the TypeDefinition node internally
  897. * - adds the references to the parent (and the TypeDefinition if applicable)
  898. * - performs type-checking of variables.
  899. *
  900. * You can add an object node without a parent if you set the parentNodeId and
  901. * referenceTypeId to UA_NODE_ID_NULL. Then you need to add the parent reference
  902. * and hasTypeDef reference yourself before calling the _finish method.
  903. * Not that this is only allowed for object nodes.
  904. *
  905. * The _finish method:
  906. * - copies mandatory children
  907. * - calls the node constructor(s) at the end
  908. * - may remove the node if it encounters an error.
  909. *
  910. * The special UA_Server_addMethodNode_finish method needs to be used for
  911. * method nodes, since there you need to explicitly specifiy the input
  912. * and output arguments which are added in the finish step (if not yet already there)
  913. **/
  914. /* The ``attr`` argument must have a type according to the NodeClass.
  915. * ``VariableAttributes`` for variables, ``ObjectAttributes`` for objects, and
  916. * so on. Missing attributes are taken from the TypeDefinition node if
  917. * applicable. */
  918. UA_StatusCode UA_EXPORT
  919. UA_Server_addNode_begin(UA_Server *server, const UA_NodeClass nodeClass,
  920. const UA_NodeId requestedNewNodeId,
  921. const UA_NodeId parentNodeId,
  922. const UA_NodeId referenceTypeId,
  923. const UA_QualifiedName browseName,
  924. const UA_NodeId typeDefinition,
  925. const void *attr, const UA_DataType *attributeType,
  926. void *nodeContext, UA_NodeId *outNewNodeId);
  927. UA_StatusCode UA_EXPORT
  928. UA_Server_addNode_finish(UA_Server *server, const UA_NodeId nodeId);
  929. #ifdef UA_ENABLE_METHODCALLS
  930. UA_StatusCode UA_EXPORT
  931. UA_Server_addMethodNode_finish(UA_Server *server, const UA_NodeId nodeId,
  932. UA_MethodCallback method,
  933. size_t inputArgumentsSize, const UA_Argument* inputArguments,
  934. size_t outputArgumentsSize, const UA_Argument* outputArguments);
  935. #endif
  936. /* Deletes a node and optionally all references leading to the node. */
  937. UA_StatusCode UA_EXPORT
  938. UA_Server_deleteNode(UA_Server *server, const UA_NodeId nodeId,
  939. UA_Boolean deleteReferences);
  940. /**
  941. * Reference Management
  942. * -------------------- */
  943. UA_StatusCode UA_EXPORT
  944. UA_Server_addReference(UA_Server *server, const UA_NodeId sourceId,
  945. const UA_NodeId refTypeId,
  946. const UA_ExpandedNodeId targetId, UA_Boolean isForward);
  947. UA_StatusCode UA_EXPORT
  948. UA_Server_deleteReference(UA_Server *server, const UA_NodeId sourceNodeId,
  949. const UA_NodeId referenceTypeId, UA_Boolean isForward,
  950. const UA_ExpandedNodeId targetNodeId,
  951. UA_Boolean deleteBidirectional);
  952. /**
  953. * Utility Functions
  954. * ----------------- */
  955. /* Add a new namespace to the server. Returns the index of the new namespace */
  956. UA_UInt16 UA_EXPORT UA_Server_addNamespace(UA_Server *server, const char* name);
  957. #ifdef __cplusplus
  958. }
  959. #endif
  960. #endif /* UA_SERVER_H_ */