ua_types.h 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570
  1. /*
  2. * Copyright (C) 2014 the contributors as stated in the AUTHORS file
  3. *
  4. * This file is part of open62541. open62541 is free software: you can
  5. * redistribute it and/or modify it under the terms of the GNU Lesser General
  6. * Public License, version 3 (as published by the Free Software Foundation) with
  7. * a static linking exception as stated in the LICENSE file provided with
  8. * open62541.
  9. *
  10. * open62541 is distributed in the hope that it will be useful, but WITHOUT ANY
  11. * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  12. * A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
  13. * details.
  14. */
  15. #ifndef UA_TYPES_H_
  16. #define UA_TYPES_H_
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. #include <stdint.h>
  21. #include "ua_config.h"
  22. #ifdef DEBUG
  23. #include <stdio.h>
  24. #endif
  25. /**
  26. * @defgroup types Datatypes
  27. *
  28. * @brief This module describes the datatypes used in OPC UA. There is a
  29. * division into built-in datatypes (integers, strings, etc.) and more complex
  30. * datatypes that are comprise of built-in datatypes (structs defined in the OPC
  31. * UA standard).
  32. *
  33. * All datatypes follow the same schema in the naming of relevant functions.
  34. *
  35. * - <type>_init: Sets all values to a "safe" standard. For example, if the
  36. * datatype contains a string-element, its size will be set to zero.
  37. *
  38. * - <type>_new: Allocates the memory for the type and runs <type>_init on the
  39. * returned pointer.
  40. *
  41. * - <type>_copy: Copies a datatype. This performs a deep copy that iterates
  42. * over the members. The copy function assumes that the target structure can
  43. * be overwritten (do a deleteMembers before if necessary). With one
  44. * exception: copying into a variant that points to an external datasource is
  45. * not permitted.
  46. *
  47. * - <type>_delete: Frees the memory where the datatype was stored.
  48. *
  49. * - <type>_deleteMembers: Frees the memory of dynamically sized members (e.g. a
  50. * string) of a datatype. This is useful when the datatype was allocated on
  51. * the stack, whereas the dynamically sized members is heap-allocated.
  52. *
  53. * @{
  54. */
  55. #define UA_NULL ((void *)0)
  56. /* Function return values */
  57. #define UA_SUCCESS 0
  58. #define UA_NO_ERROR UA_SUCCESS
  59. #define UA_ERROR (0x01 << 31)
  60. #define UA_ERR_INCONSISTENT (UA_ERROR | (0x01 << 1))
  61. #define UA_ERR_INVALID_VALUE (UA_ERROR | (0x01 << 2))
  62. #define UA_ERR_NO_MEMORY (UA_ERROR | (0x01 << 3))
  63. #define UA_ERR_NOT_IMPLEMENTED (UA_ERROR | (0x01 << 4))
  64. /* Boolean values and null */
  65. #define UA_TRUE (42 == 42)
  66. #define UA_FALSE (!UA_TRUE)
  67. /* Compare values */
  68. typedef enum UA_EQUALITY {
  69. UA_EQUAL,
  70. UA_NOT_EQUAL
  71. } UA_EQUALITY;
  72. /** @brief A two-state logical value (true or false). */
  73. typedef _Bool UA_Boolean;
  74. /** @brief An integer value between -129 and 127. */
  75. typedef int8_t UA_SByte;
  76. #define UA_SBYTE_MAX -128
  77. #define UA_SBYTE_MIN 127
  78. /** @brief An integer value between 0 and 256. */
  79. typedef uint8_t UA_Byte;
  80. #define UA_BYTE_MAX 256
  81. #define UA_BYTE_MIN 0
  82. /** @brief An integer value between -32 768 and 32 767. */
  83. typedef int16_t UA_Int16;
  84. #define UA_INT16_MAX 32767
  85. #define UA_INT16_MIN -32768
  86. /** @brief An integer value between 0 and 65 535. */
  87. typedef uint16_t UA_UInt16;
  88. #define UA_UINT16_MAX 65535
  89. #define UA_UINT16_MIN 0
  90. /** @brief An integer value between -2 147 483 648 and 2 147 483 647. */
  91. typedef int32_t UA_Int32;
  92. #define UA_INT32_MAX 2147483647
  93. #define UA_INT32_MIN −2147483648
  94. /** @brief An integer value between 0 and 429 4967 295. */
  95. typedef uint32_t UA_UInt32;
  96. #define UA_UINT32_MAX 4294967295
  97. #define UA_UINT32_MIN 0
  98. /** @brief An integer value between -10 223 372 036 854 775 808 and 9 223 372 036 854 775 807 */
  99. typedef int64_t UA_Int64;
  100. #define UA_INT64_MAX 9223372036854775807
  101. #define UA_INT64_MIN −9223372036854775808
  102. /** @brief An integer value between 0 and 18 446 744 073 709 551 615. */
  103. typedef uint64_t UA_UInt64;
  104. #define UA_UINT64_MAX = 18446744073709551615
  105. #define UA_UINT64_MIN = 0
  106. /** @brief An IEEE single precision (32 bit) floating point value. */
  107. typedef float UA_Float;
  108. /** @brief An IEEE double precision (64 bit) floating point value. */
  109. typedef double UA_Double;
  110. /** @brief A sequence of Unicode characters. */
  111. typedef struct UA_String {
  112. UA_Int32 length;
  113. UA_Byte *data;
  114. } UA_String;
  115. /** @brief An instance in time. */
  116. typedef UA_Int64 UA_DateTime; //100 nanosecond resolution
  117. /** @brief A 16 byte value that can be used as a globally unique identifier. */
  118. typedef struct UA_Guid {
  119. UA_UInt32 data1;
  120. UA_UInt16 data2;
  121. UA_UInt16 data3;
  122. UA_Byte data4[8];
  123. } UA_Guid;
  124. /** @brief A sequence of octets. */
  125. typedef struct UA_String UA_ByteString;
  126. /** @brief An XML element. */
  127. typedef struct UA_String UA_XmlElement;
  128. /** @brief An identifier for a node in the address space of an OPC UA Server. */
  129. /* The shortened numeric types are introduced during encoding. */
  130. typedef struct UA_NodeId {
  131. UA_UInt16 namespaceIndex;
  132. enum {
  133. UA_NODEIDTYPE_NUMERIC = 2,
  134. UA_NODEIDTYPE_STRING = 3,
  135. UA_NODEIDTYPE_GUID = 4,
  136. UA_NODEIDTYPE_BYTESTRING = 5
  137. } identifierType;
  138. union {
  139. UA_UInt32 numeric;
  140. UA_String string;
  141. UA_Guid guid;
  142. UA_ByteString byteString;
  143. } identifier;
  144. } UA_NodeId;
  145. /** @brief A NodeId that allows the namespace URI to be specified instead of an index. */
  146. typedef struct UA_ExpandedNodeId {
  147. UA_NodeId nodeId;
  148. UA_String namespaceUri; // not encoded if length=-1
  149. UA_UInt32 serverIndex; // not encoded if 0
  150. } UA_ExpandedNodeId;
  151. #include "ua_statuscodes.h"
  152. /** @brief A numeric identifier for a error or condition that is associated with a value or an operation. */
  153. typedef enum UA_StatusCode UA_StatusCode; // StatusCodes aren't an enum(=int) since 32 unsigned bits are needed. See also ua_statuscodes.h */
  154. /** @brief A name qualified by a namespace. */
  155. typedef struct UA_QualifiedName {
  156. UA_UInt16 namespaceIndex;
  157. UA_String name;
  158. } UA_QualifiedName;
  159. /** @brief Human readable text with an optional locale identifier. */
  160. typedef struct UA_LocalizedText {
  161. UA_String locale;
  162. UA_String text;
  163. } UA_LocalizedText;
  164. /** @brief A structure that contains an application specific data type that may
  165. not be recognized by the receiver. */
  166. typedef struct UA_ExtensionObject {
  167. UA_NodeId typeId;
  168. enum {
  169. UA_EXTENSIONOBJECT_ENCODINGMASK_NOBODYISENCODED = 0,
  170. UA_EXTENSIONOBJECT_ENCODINGMASK_BODYISBYTESTRING = 1,
  171. UA_EXTENSIONOBJECT_ENCODINGMASK_BODYISXML = 2
  172. } encoding;
  173. UA_ByteString body; // contains either the bytestring or a pointer to the memory-object
  174. } UA_ExtensionObject;
  175. struct UA_VTable_Entry; // forwards declaration
  176. typedef struct UA_VTable_Entry UA_VTable_Entry;
  177. /* Variant */
  178. /** @defgroup variant Variant
  179. *
  180. * @brief Variants may contain (arrays of) any other datatype.
  181. *
  182. * For that, we provide a reference to the utility functions of the type as well
  183. * as possible encoding by pointing an entry in the vtable of types. References
  184. * may either contain a structure with the variants data, or a datasource where
  185. * this structure may be obtained (using reference counting for async access).
  186. *
  187. * @{
  188. */
  189. typedef struct UA_VariantData {
  190. UA_Int32 arrayLength; // total number of elements in the data-pointer
  191. void *dataPtr;
  192. UA_Int32 arrayDimensionsLength;
  193. UA_Int32 *arrayDimensions;
  194. } UA_VariantData;
  195. /** @brief A datasource is the interface to interact with a local data provider.
  196. *
  197. * Implementors of datasources need to provide functions for the callbacks in
  198. * this structure. As a rule, datasources are never copied, but only their
  199. * content. The only way to write into a datasource is via the write-service. */
  200. typedef struct UA_VariantDataSource {
  201. const void *identifier; /**< whatever id the datasource uses internally. Can be ignored if the datasource functions do not use it. */
  202. UA_Int32 (*read)(const void *identifier, const UA_VariantData **); /**< Get the current data from the datasource. When it is no longer used, the data has to be relased. */
  203. void (*release)(const void *identifier, const UA_VariantData *); /**< For concurrent access, the datasource needs to know when the last reader releases replaced/deleted data. Release decreases the reference count. */
  204. UA_Int32 (*write)(const void **identifier, const UA_VariantData *); /**< Replace the data in the datasource. Also used to replace the identifier pointer for lookups. Do not free the variantdata afterwards! */
  205. void (*delete)(const void *identifier); /**< Indicates that the node with the datasource was removed from the namespace. */
  206. } UA_VariantDataSource;
  207. /** @brief A union of all of the types specified above.
  208. *
  209. * Variants store (arrays of) built-in types. If you want to store a more
  210. * complex (or self-defined) type, you have to use an UA_ExtensionObject.*/
  211. typedef struct UA_Variant {
  212. const UA_VTable_Entry *vt; // internal entry into vTable
  213. enum {
  214. UA_VARIANT_DATA,
  215. UA_VARIANT_DATA_NODELETE, // do not free the data (e.g. because it is "borrowed" and points into a larger structure)
  216. UA_VARIANT_DATASOURCE
  217. } storageType;
  218. union {
  219. UA_VariantData data;
  220. UA_VariantDataSource datasource;
  221. } storage;
  222. } UA_Variant;
  223. /** @} */
  224. /** @brief A data value with an associated status code and timestamps. */
  225. typedef struct UA_DataValue {
  226. UA_Byte encodingMask;
  227. UA_Variant value;
  228. UA_StatusCode status;
  229. UA_DateTime sourceTimestamp;
  230. UA_Int16 sourcePicoseconds;
  231. UA_DateTime serverTimestamp;
  232. UA_Int16 serverPicoseconds;
  233. } UA_DataValue;
  234. enum UA_DATAVALUE_ENCODINGMASKTYPE_enum {
  235. UA_DATAVALUE_ENCODINGMASK_VARIANT = 0x01,
  236. UA_DATAVALUE_ENCODINGMASK_STATUSCODE = 0x02,
  237. UA_DATAVALUE_ENCODINGMASK_SOURCETIMESTAMP = 0x04,
  238. UA_DATAVALUE_ENCODINGMASK_SERVERTIMESTAMP = 0x08,
  239. UA_DATAVALUE_ENCODINGMASK_SOURCEPICOSECONDS = 0x10,
  240. UA_DATAVALUE_ENCODINGMASK_SERVERPICOSECONDS = 0x20
  241. };
  242. /** @brief A structure that contains detailed error and diagnostic information associated with a StatusCode. */
  243. typedef struct UA_DiagnosticInfo {
  244. UA_Byte encodingMask; // Type of the Enum UA_DIAGNOSTICINFO_ENCODINGMASKTYPE
  245. UA_Int32 symbolicId;
  246. UA_Int32 namespaceUri;
  247. UA_Int32 localizedText;
  248. UA_Int32 locale;
  249. UA_String additionalInfo;
  250. UA_StatusCode innerStatusCode;
  251. struct UA_DiagnosticInfo *innerDiagnosticInfo;
  252. } UA_DiagnosticInfo;
  253. enum UA_DIAGNOSTICINFO_ENCODINGMASKTYPE_enum {
  254. UA_DIAGNOSTICINFO_ENCODINGMASK_SYMBOLICID = 0x01,
  255. UA_DIAGNOSTICINFO_ENCODINGMASK_NAMESPACE = 0x02,
  256. UA_DIAGNOSTICINFO_ENCODINGMASK_LOCALIZEDTEXT = 0x04,
  257. UA_DIAGNOSTICINFO_ENCODINGMASK_LOCALE = 0x08,
  258. UA_DIAGNOSTICINFO_ENCODINGMASK_ADDITIONALINFO = 0x10,
  259. UA_DIAGNOSTICINFO_ENCODINGMASK_INNERSTATUSCODE = 0x20,
  260. UA_DIAGNOSTICINFO_ENCODINGMASK_INNERDIAGNOSTICINFO = 0x40
  261. };
  262. /** @brief Type use internally to denote an invalid datatype. */
  263. typedef void UA_InvalidType;
  264. /*************/
  265. /* Functions */
  266. /*************/
  267. #ifdef DEBUG
  268. #define UA_TYPE_PROTOTYPES(TYPE) \
  269. UA_Int32 UA_EXPORT TYPE##_new(TYPE **p); \
  270. void UA_EXPORT TYPE##_init(TYPE * p); \
  271. void UA_EXPORT TYPE##_delete(TYPE * p); \
  272. void UA_EXPORT TYPE##_deleteMembers(TYPE * p); \
  273. UA_Int32 UA_EXPORT TYPE##_copy(const TYPE *src, TYPE *dst); \
  274. void UA_EXPORT TYPE##_print(const TYPE *p, FILE *stream);
  275. #else
  276. #define UA_TYPE_PROTOTYPES(TYPE) \
  277. UA_Int32 UA_EXPORT TYPE##_new(TYPE **p); \
  278. void UA_EXPORT TYPE##_init(TYPE * p); \
  279. void UA_EXPORT TYPE##_delete(TYPE * p); \
  280. void UA_EXPORT TYPE##_deleteMembers(TYPE * p); \
  281. UA_Int32 UA_EXPORT TYPE##_copy(const TYPE *src, TYPE *dst);
  282. #endif
  283. /* Functions for all types */
  284. UA_TYPE_PROTOTYPES(UA_Boolean)
  285. UA_TYPE_PROTOTYPES(UA_SByte)
  286. UA_TYPE_PROTOTYPES(UA_Byte)
  287. UA_TYPE_PROTOTYPES(UA_Int16)
  288. UA_TYPE_PROTOTYPES(UA_UInt16)
  289. UA_TYPE_PROTOTYPES(UA_Int32)
  290. UA_TYPE_PROTOTYPES(UA_UInt32)
  291. UA_TYPE_PROTOTYPES(UA_Int64)
  292. UA_TYPE_PROTOTYPES(UA_UInt64)
  293. UA_TYPE_PROTOTYPES(UA_Float)
  294. UA_TYPE_PROTOTYPES(UA_Double)
  295. UA_TYPE_PROTOTYPES(UA_String)
  296. UA_TYPE_PROTOTYPES(UA_DateTime)
  297. UA_TYPE_PROTOTYPES(UA_Guid)
  298. UA_TYPE_PROTOTYPES(UA_ByteString)
  299. UA_TYPE_PROTOTYPES(UA_XmlElement)
  300. UA_TYPE_PROTOTYPES(UA_NodeId)
  301. UA_TYPE_PROTOTYPES(UA_ExpandedNodeId)
  302. UA_TYPE_PROTOTYPES(UA_StatusCode)
  303. UA_TYPE_PROTOTYPES(UA_QualifiedName)
  304. UA_TYPE_PROTOTYPES(UA_LocalizedText)
  305. UA_TYPE_PROTOTYPES(UA_ExtensionObject)
  306. UA_TYPE_PROTOTYPES(UA_DataValue)
  307. UA_TYPE_PROTOTYPES(UA_Variant)
  308. UA_TYPE_PROTOTYPES(UA_DiagnosticInfo)
  309. UA_TYPE_PROTOTYPES(UA_InvalidType)
  310. /* String */
  311. #define UA_STRING_NULL (UA_String) {-1, UA_NULL }
  312. #define UA_STRING_STATIC(VARIABLE, STRING) do { \
  313. VARIABLE.length = sizeof(STRING)-1; \
  314. VARIABLE.data = (UA_Byte *)STRING; } while(0)
  315. UA_Int32 UA_EXPORT UA_String_copycstring(char const *src, UA_String *dst);
  316. UA_Int32 UA_EXPORT UA_String_copyprintf(char const *fmt, UA_String *dst, ...);
  317. UA_EQUALITY UA_EXPORT UA_String_equal(const UA_String *string1, const UA_String *string2);
  318. #ifdef DEBUG
  319. void UA_EXPORT UA_String_printf(char const *label, const UA_String *string);
  320. void UA_EXPORT UA_String_printx(char const *label, const UA_String *string);
  321. void UA_EXPORT UA_String_printx_hex(char const *label, const UA_String *string);
  322. #endif
  323. /* DateTime */
  324. UA_DateTime UA_EXPORT UA_DateTime_now();
  325. typedef struct UA_DateTimeStruct {
  326. UA_Int16 nanoSec;
  327. UA_Int16 microSec;
  328. UA_Int16 milliSec;
  329. UA_Int16 sec;
  330. UA_Int16 min;
  331. UA_Int16 hour;
  332. UA_Int16 day;
  333. UA_Int16 mounth;
  334. UA_Int16 year;
  335. } UA_DateTimeStruct;
  336. UA_DateTimeStruct UA_EXPORT UA_DateTime_toStruct(UA_DateTime time);
  337. UA_Int32 UA_EXPORT UA_DateTime_toString(UA_DateTime time, UA_String *timeString);
  338. /* Guid */
  339. UA_EQUALITY UA_EXPORT UA_Guid_equal(const UA_Guid *g1, const UA_Guid *g2);
  340. /* ByteString */
  341. UA_EQUALITY UA_EXPORT UA_ByteString_equal(const UA_ByteString *string1, const UA_ByteString *string2);
  342. UA_Int32 UA_EXPORT UA_ByteString_newMembers(UA_ByteString *p, UA_Int32 length);
  343. #ifdef DEBUG
  344. void UA_EXPORT UA_ByteString_printf(char *label, const UA_ByteString *string);
  345. void UA_EXPORT UA_ByteString_printx(char *label, const UA_ByteString *string);
  346. void UA_EXPORT UA_ByteString_printx_hex(char *label, const UA_ByteString *string);
  347. #endif
  348. /* NodeId */
  349. UA_EQUALITY UA_EXPORT UA_NodeId_equal(const UA_NodeId *n1, const UA_NodeId *n2);
  350. UA_Boolean UA_EXPORT UA_NodeId_isNull(const UA_NodeId *p);
  351. UA_Boolean UA_EXPORT UA_NodeId_isBasicType(UA_NodeId const *id);
  352. #define NS0NODEID(NUMERIC_ID) \
  353. (UA_NodeId) {.namespaceIndex = 0, .identifierType = UA_NODEIDTYPE_NUMERIC, .identifier.numeric = \
  354. NUMERIC_ID }
  355. /* ExpandedNodeId */
  356. UA_Boolean UA_EXPORT UA_ExpandedNodeId_isNull(const UA_ExpandedNodeId *p);
  357. #define NS0EXPANDEDNODEID(VARIABLE, NUMERIC_ID) do { \
  358. VARIABLE.nodeId = NS0NODEID(NUMERIC_ID); \
  359. VARIABLE.namespaceUri = UA_STRING_NULL; \
  360. VARIABLE.serverIndex = 0; } while(0)
  361. /* QualifiedName */
  362. #define UA_QUALIFIEDNAME_STATIC(VARIABLE, STRING) do { \
  363. VARIABLE.namespaceIndex = 0; \
  364. UA_STRING_STATIC(VARIABLE.name, STRING); } while(0)
  365. UA_Int32 UA_EXPORT UA_QualifiedName_copycstring(char const *src, UA_QualifiedName *dst);
  366. #ifdef DEBUG
  367. void UA_EXPORT UA_QualifiedName_printf(char const *label, const UA_QualifiedName *qn);
  368. #endif
  369. /* LocalizedText */
  370. #define UA_LOCALIZEDTEXT_STATIC(VARIABLE, STRING) do { \
  371. UA_STRING_STATIC(VARIABLE.locale, "en"); \
  372. UA_STRING_STATIC(VARIABLE.text, STRING); } while(0)
  373. UA_Int32 UA_EXPORT UA_LocalizedText_copycstring(char const *src, UA_LocalizedText *dst);
  374. /* Variant */
  375. UA_Int32 UA_EXPORT UA_Variant_copySetValue(UA_Variant *v, const UA_VTable_Entry *vt, const void *value);
  376. UA_Int32 UA_EXPORT UA_Variant_copySetArray(UA_Variant *v, const UA_VTable_Entry *vt, UA_Int32 arrayLength, const void *array);
  377. /* Array operations */
  378. UA_Int32 UA_EXPORT UA_Array_new(void **p, UA_Int32 noElements, const UA_VTable_Entry *vt);
  379. void UA_EXPORT UA_Array_init(void *p, UA_Int32 noElements, const UA_VTable_Entry *vt);
  380. void UA_EXPORT UA_Array_delete(void *p, UA_Int32 noElements, const UA_VTable_Entry *vt);
  381. /* @brief The destination array is allocated according to noElements. */
  382. UA_Int32 UA_EXPORT UA_Array_copy(const void *src, UA_Int32 noElements, const UA_VTable_Entry *vt, void **dst);
  383. #ifdef DEBUG
  384. void UA_EXPORT UA_Array_print(const void *p, UA_Int32 noElements, const UA_VTable_Entry *vt, FILE *stream);
  385. #endif
  386. /**********/
  387. /* VTable */
  388. /**********/
  389. typedef struct UA_Encoding {
  390. /** Returns the size of the encoded element.*/
  391. UA_Int32 (*calcSize)(const void *p);
  392. /** Encodes the type into the destination bytestring. */
  393. UA_Int32 (*encode)(const void *src, UA_ByteString *dst, UA_UInt32 *offset);
  394. /** Decodes a ByteString into an UA datatype. */
  395. UA_Int32 (*decode)(const UA_ByteString *src, UA_UInt32 *offset, void *dst);
  396. } UA_Encoding;
  397. #define UA_ENCODING_BINARY 0 // Binary encoding is always available
  398. struct UA_VTable_Entry {
  399. UA_NodeId typeId;
  400. UA_Byte *name;
  401. UA_Int32 (*new)(void **p);
  402. void (*init)(void *p);
  403. UA_Int32 (*copy)(void const *src, void *dst);
  404. void (*delete)(void *p);
  405. void (*deleteMembers)(void *p);
  406. #ifdef DEBUG
  407. void (*print)(const void *p, FILE *stream);
  408. #endif
  409. UA_UInt32 memSize; // size of the struct only in memory (no dynamic components)
  410. UA_Boolean dynMembers; // does the type contain members that are dynamically
  411. // allocated (strings, ..)? Otherwise, the size on
  412. // the wire == size in memory.
  413. UA_Encoding encodings[UA_ENCODING_AMOUNT]; // binary, xml, ... UA_ENCODING_AMOUNT is set by the build script
  414. };
  415. /***********************************/
  416. /* Macros for type implementations */
  417. /***********************************/
  418. #define UA_TYPE_DEFAULT(TYPE) \
  419. UA_TYPE_DELETE_DEFAULT(TYPE) \
  420. UA_TYPE_DELETEMEMBERS_NOACTION(TYPE) \
  421. UA_TYPE_INIT_DEFAULT(TYPE) \
  422. UA_TYPE_NEW_DEFAULT(TYPE) \
  423. UA_TYPE_COPY_DEFAULT(TYPE) \
  424. #define UA_TYPE_NEW_DEFAULT(TYPE) \
  425. UA_Int32 TYPE##_new(TYPE **p) { \
  426. if(!(*p = UA_alloc(sizeof(TYPE)))) \
  427. return UA_ERROR; \
  428. TYPE##_init(*p); \
  429. return UA_SUCCESS; \
  430. }
  431. #define UA_TYPE_INIT_DEFAULT(TYPE) \
  432. void TYPE##_init(TYPE * p) { \
  433. if(!p) return; \
  434. *p = (TYPE)0; \
  435. }
  436. #define UA_TYPE_INIT_AS(TYPE, TYPE_AS) \
  437. void TYPE##_init(TYPE * p) { \
  438. TYPE_AS##_init((TYPE_AS *)p); \
  439. }
  440. #define UA_TYPE_DELETE_DEFAULT(TYPE) \
  441. void TYPE##_delete(TYPE *p) { \
  442. if(!p) return; \
  443. TYPE##_deleteMembers(p); \
  444. UA_free(p); \
  445. }
  446. #define UA_TYPE_DELETE_AS(TYPE, TYPE_AS) \
  447. void TYPE##_delete(TYPE * p) { \
  448. TYPE_AS##_delete((TYPE_AS *)p); \
  449. }
  450. #define UA_TYPE_DELETEMEMBERS_NOACTION(TYPE) \
  451. void TYPE##_deleteMembers(TYPE * p) { return; }
  452. #define UA_TYPE_DELETEMEMBERS_AS(TYPE, TYPE_AS) \
  453. void TYPE##_deleteMembers(TYPE * p) { TYPE_AS##_deleteMembers((TYPE_AS *)p); }
  454. /* Use only when the type has no arrays. Otherwise, implement deep copy */
  455. #define UA_TYPE_COPY_DEFAULT(TYPE) \
  456. UA_Int32 TYPE##_copy(TYPE const *src, TYPE *dst) { \
  457. if(src == UA_NULL || dst == UA_NULL) return UA_ERROR; \
  458. *dst = *src; \
  459. return UA_SUCCESS; \
  460. }
  461. #define UA_TYPE_COPY_AS(TYPE, TYPE_AS) \
  462. UA_Int32 TYPE##_copy(TYPE const *src, TYPE *dst) { \
  463. return TYPE_AS##_copy((TYPE_AS *)src, (TYPE_AS *)dst); \
  464. }
  465. #define UA_TYPE_PRINT_AS(TYPE, TYPE_AS) \
  466. void TYPE##_print(TYPE const *p, FILE *stream) { \
  467. TYPE_AS##_print((TYPE_AS *)p, stream); \
  468. } \
  469. #ifdef DEBUG //print functions only in debug mode
  470. #define UA_TYPE_AS(TYPE, TYPE_AS) \
  471. UA_TYPE_NEW_DEFAULT(TYPE) \
  472. UA_TYPE_INIT_AS(TYPE, TYPE_AS) \
  473. UA_TYPE_DELETE_AS(TYPE, TYPE_AS) \
  474. UA_TYPE_DELETEMEMBERS_AS(TYPE, TYPE_AS) \
  475. UA_TYPE_COPY_AS(TYPE, TYPE_AS) \
  476. UA_TYPE_PRINT_AS(TYPE, TYPE_AS)
  477. #else
  478. #define UA_TYPE_AS(TYPE, TYPE_AS) \
  479. UA_TYPE_NEW_DEFAULT(TYPE) \
  480. UA_TYPE_INIT_AS(TYPE, TYPE_AS) \
  481. UA_TYPE_DELETE_AS(TYPE, TYPE_AS) \
  482. UA_TYPE_DELETEMEMBERS_AS(TYPE, TYPE_AS) \
  483. UA_TYPE_COPY_AS(TYPE, TYPE_AS)
  484. #endif
  485. /// @} /* end of group */
  486. #ifdef __cplusplus
  487. } // extern "C"
  488. #endif
  489. #endif /* UA_TYPES_H_ */