ua_types.h 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918
  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. #ifndef UA_TYPES_H_
  5. #define UA_TYPES_H_
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9. #include "ua_config.h"
  10. #include "ua_constants.h"
  11. #define UA_BUILTIN_TYPES_COUNT 25U
  12. /**
  13. * .. _types:
  14. *
  15. * Data Types
  16. * ==========
  17. *
  18. * The OPC UA protocol defines 25 builtin data types and three ways of combining
  19. * them into higher-order types: arrays, structures and unions. In open62541,
  20. * only the builtin data types are defined manually. All other data types are
  21. * generated from standard XML definitions. Their exact definitions can be
  22. * looked up at https://opcfoundation.org/UA/schemas/Opc.Ua.Types.bsd.xml.
  23. *
  24. * For users that are new to open62541, take a look at the :ref:`tutorial for
  25. * working with data types<types-tutorial>` before diving into the
  26. * implementation details.
  27. *
  28. * Builtin Types
  29. * -------------
  30. *
  31. * Boolean
  32. * ^^^^^^^
  33. * A two-state logical value (true or false). */
  34. typedef bool UA_Boolean;
  35. #define UA_TRUE true
  36. #define UA_FALSE false
  37. /**
  38. * SByte
  39. * ^^^^^
  40. * An integer value between -128 and 127. */
  41. typedef int8_t UA_SByte;
  42. #define UA_SBYTE_MIN (-128)
  43. #define UA_SBYTE_MAX 127
  44. /**
  45. * Byte
  46. * ^^^^
  47. * An integer value between 0 and 255. */
  48. typedef uint8_t UA_Byte;
  49. #define UA_BYTE_MIN 0
  50. #define UA_BYTE_MAX 255
  51. /**
  52. * Int16
  53. * ^^^^^
  54. * An integer value between -32 768 and 32 767. */
  55. typedef int16_t UA_Int16;
  56. #define UA_INT16_MIN (-32768)
  57. #define UA_INT16_MAX 32767
  58. /**
  59. * UInt16
  60. * ^^^^^^
  61. * An integer value between 0 and 65 535. */
  62. typedef uint16_t UA_UInt16;
  63. #define UA_UINT16_MIN 0
  64. #define UA_UINT16_MAX 65535
  65. /**
  66. * Int32
  67. * ^^^^^
  68. * An integer value between -2 147 483 648 and 2 147 483 647. */
  69. typedef int32_t UA_Int32;
  70. #define UA_INT32_MIN (-2147483648)
  71. #define UA_INT32_MAX 2147483647
  72. /**
  73. * UInt32
  74. * ^^^^^^
  75. * An integer value between 0 and 4 294 967 295. */
  76. typedef uint32_t UA_UInt32;
  77. #define UA_UINT32_MIN 0
  78. #define UA_UINT32_MAX 4294967295
  79. /**
  80. * Int64
  81. * ^^^^^
  82. * An integer value between -9 223 372 036 854 775 808 and
  83. * 9 223 372 036 854 775 807. */
  84. typedef int64_t UA_Int64;
  85. #define UA_INT64_MIN ((int64_t)-9223372036854775808)
  86. #define UA_INT64_MAX (int64_t)9223372036854775807
  87. /**
  88. * UInt64
  89. * ^^^^^^
  90. * An integer value between 0 and 18 446 744 073 709 551 615. */
  91. typedef uint64_t UA_UInt64;
  92. #define UA_UINT64_MIN (int64_t)0
  93. #define UA_UINT64_MAX (int64_t)18446744073709551615
  94. /**
  95. * Float
  96. * ^^^^^
  97. * An IEEE single precision (32 bit) floating point value. */
  98. typedef float UA_Float;
  99. /**
  100. * Double
  101. * ^^^^^^
  102. * An IEEE double precision (64 bit) floating point value. */
  103. typedef double UA_Double;
  104. /**
  105. * .. _statuscode:
  106. *
  107. * StatusCode
  108. * ^^^^^^^^^^
  109. * A numeric identifier for a error or condition that is associated with a value
  110. * or an operation. See the section :ref:`statuscodes` for the meaning of a
  111. * specific code. */
  112. typedef uint32_t UA_StatusCode;
  113. /* Returns the human-readable name of the StatusCode. If no matching StatusCode
  114. * is found, a default string for "Unknown" is returned. This feature might be
  115. * disabled to create a smaller binary with the
  116. * UA_ENABLE_STATUSCODE_DESCRIPTIONS build-flag. Then the function returns an
  117. * empty string for every StatusCode. */
  118. UA_EXPORT const char *
  119. UA_StatusCode_name(UA_StatusCode code);
  120. /**
  121. * String
  122. * ^^^^^^
  123. * A sequence of Unicode characters. Strings are just an array of UA_Byte. */
  124. typedef struct {
  125. size_t length; /* The length of the string */
  126. UA_Byte *data; /* The content (not null-terminated) */
  127. } UA_String;
  128. /* Copies the content on the heap. Returns a null-string when alloc fails */
  129. UA_String UA_EXPORT UA_String_fromChars(char const src[]) UA_FUNC_ATTR_WARN_UNUSED_RESULT;
  130. UA_Boolean UA_EXPORT UA_String_equal(const UA_String *s1, const UA_String *s2);
  131. UA_EXPORT extern const UA_String UA_STRING_NULL;
  132. /**
  133. * ``UA_STRING`` returns a string pointing to the original char-array.
  134. * ``UA_STRING_ALLOC`` is shorthand for ``UA_String_fromChars`` and makes a copy
  135. * of the char-array. */
  136. static UA_INLINE UA_String
  137. UA_STRING(char *chars) {
  138. UA_String str; str.length = strlen(chars);
  139. str.data = (UA_Byte*)chars; return str;
  140. }
  141. #define UA_STRING_ALLOC(CHARS) UA_String_fromChars(CHARS)
  142. /**
  143. * .. _datetime:
  144. *
  145. * DateTime
  146. * ^^^^^^^^
  147. * An instance in time. A DateTime value is encoded as a 64-bit signed integer
  148. * which represents the number of 100 nanosecond intervals since January 1, 1601
  149. * (UTC). */
  150. typedef int64_t UA_DateTime;
  151. /* Multiply to convert units for time difference computations */
  152. #define UA_USEC_TO_DATETIME 10LL
  153. #define UA_MSEC_TO_DATETIME (UA_USEC_TO_DATETIME * 1000LL)
  154. #define UA_SEC_TO_DATETIME (UA_MSEC_TO_DATETIME * 1000LL)
  155. #define UA_DATETIME_TO_USEC (1/10.0)
  156. #define UA_DATETIME_TO_MSEC (UA_DATETIME_TO_USEC / 1000.0)
  157. #define UA_DATETIME_TO_SEC (UA_DATETIME_TO_MSEC / 1000.0)
  158. /* Datetime of 1 Jan 1970 00:00 UTC */
  159. #define UA_DATETIME_UNIX_EPOCH (11644473600LL * UA_SEC_TO_DATETIME)
  160. /* The current time */
  161. UA_DateTime UA_EXPORT UA_DateTime_now(void);
  162. /* CPU clock invariant to system time changes. Use only for time diffs, not
  163. * current time */
  164. UA_DateTime UA_EXPORT UA_DateTime_nowMonotonic(void);
  165. typedef struct UA_DateTimeStruct {
  166. UA_UInt16 nanoSec;
  167. UA_UInt16 microSec;
  168. UA_UInt16 milliSec;
  169. UA_UInt16 sec;
  170. UA_UInt16 min;
  171. UA_UInt16 hour;
  172. UA_UInt16 day;
  173. UA_UInt16 month;
  174. UA_UInt16 year;
  175. } UA_DateTimeStruct;
  176. UA_DateTimeStruct UA_EXPORT UA_DateTime_toStruct(UA_DateTime t);
  177. UA_String UA_EXPORT UA_DateTime_toString(UA_DateTime t);
  178. /**
  179. * Guid
  180. * ^^^^
  181. * A 16 byte value that can be used as a globally unique identifier. */
  182. typedef struct {
  183. UA_UInt32 data1;
  184. UA_UInt16 data2;
  185. UA_UInt16 data3;
  186. UA_Byte data4[8];
  187. } UA_Guid;
  188. UA_Boolean UA_EXPORT UA_Guid_equal(const UA_Guid *g1, const UA_Guid *g2);
  189. UA_EXPORT extern const UA_Guid UA_GUID_NULL;
  190. /**
  191. * ByteString
  192. * ^^^^^^^^^^
  193. * A sequence of octets. */
  194. typedef UA_String UA_ByteString;
  195. static UA_INLINE UA_Boolean
  196. UA_ByteString_equal(const UA_ByteString *string1,
  197. const UA_ByteString *string2) {
  198. return UA_String_equal((const UA_String*)string1,
  199. (const UA_String*)string2);
  200. }
  201. /* Allocates memory of size length for the bytestring.
  202. * The content is not set to zero. */
  203. UA_StatusCode UA_EXPORT
  204. UA_ByteString_allocBuffer(UA_ByteString *bs, size_t length);
  205. UA_EXPORT extern const UA_ByteString UA_BYTESTRING_NULL;
  206. static UA_INLINE UA_ByteString
  207. UA_BYTESTRING(char *chars) {
  208. UA_ByteString str; str.length = strlen(chars);
  209. str.data = (UA_Byte*)chars; return str;
  210. }
  211. static UA_INLINE UA_ByteString
  212. UA_BYTESTRING_ALLOC(const char *chars) {
  213. UA_String str = UA_String_fromChars(chars); UA_ByteString bstr;
  214. bstr.length = str.length; bstr.data = str.data; return bstr;
  215. }
  216. /**
  217. * XmlElement
  218. * ^^^^^^^^^^
  219. * An XML element. */
  220. typedef UA_String UA_XmlElement;
  221. /**
  222. * .. _nodeid:
  223. *
  224. * NodeId
  225. * ^^^^^^
  226. * An identifier for a node in the address space of an OPC UA Server. */
  227. enum UA_NodeIdType {
  228. UA_NODEIDTYPE_NUMERIC = 0, /* In the binary encoding, this can also
  229. become 1 or 2 (2byte and 4byte encoding of
  230. small numeric nodeids) */
  231. UA_NODEIDTYPE_STRING = 3,
  232. UA_NODEIDTYPE_GUID = 4,
  233. UA_NODEIDTYPE_BYTESTRING = 5
  234. };
  235. typedef struct {
  236. UA_UInt16 namespaceIndex;
  237. enum UA_NodeIdType identifierType;
  238. union {
  239. UA_UInt32 numeric;
  240. UA_String string;
  241. UA_Guid guid;
  242. UA_ByteString byteString;
  243. } identifier;
  244. } UA_NodeId;
  245. UA_EXPORT extern const UA_NodeId UA_NODEID_NULL;
  246. UA_Boolean UA_EXPORT UA_NodeId_isNull(const UA_NodeId *p);
  247. UA_Boolean UA_EXPORT UA_NodeId_equal(const UA_NodeId *n1, const UA_NodeId *n2);
  248. /* Returns a non-cryptographic hash for the NodeId */
  249. UA_UInt32 UA_EXPORT UA_NodeId_hash(const UA_NodeId *n);
  250. /** The following functions are shorthand for creating NodeIds. */
  251. static UA_INLINE UA_NodeId
  252. UA_NODEID_NUMERIC(UA_UInt16 nsIndex, UA_UInt32 identifier) {
  253. UA_NodeId id; id.namespaceIndex = nsIndex;
  254. id.identifierType = UA_NODEIDTYPE_NUMERIC;
  255. id.identifier.numeric = identifier; return id;
  256. }
  257. static UA_INLINE UA_NodeId
  258. UA_NODEID_STRING(UA_UInt16 nsIndex, char *chars) {
  259. UA_NodeId id; id.namespaceIndex = nsIndex;
  260. id.identifierType = UA_NODEIDTYPE_STRING;
  261. id.identifier.string = UA_STRING(chars); return id;
  262. }
  263. static UA_INLINE UA_NodeId
  264. UA_NODEID_STRING_ALLOC(UA_UInt16 nsIndex, const char *chars) {
  265. UA_NodeId id; id.namespaceIndex = nsIndex;
  266. id.identifierType = UA_NODEIDTYPE_STRING;
  267. id.identifier.string = UA_STRING_ALLOC(chars); return id;
  268. }
  269. static UA_INLINE UA_NodeId
  270. UA_NODEID_GUID(UA_UInt16 nsIndex, UA_Guid guid) {
  271. UA_NodeId id; id.namespaceIndex = nsIndex;
  272. id.identifierType = UA_NODEIDTYPE_GUID;
  273. id.identifier.guid = guid; return id;
  274. }
  275. static UA_INLINE UA_NodeId
  276. UA_NODEID_BYTESTRING(UA_UInt16 nsIndex, char *chars) {
  277. UA_NodeId id; id.namespaceIndex = nsIndex;
  278. id.identifierType = UA_NODEIDTYPE_BYTESTRING;
  279. id.identifier.byteString = UA_BYTESTRING(chars); return id;
  280. }
  281. static UA_INLINE UA_NodeId
  282. UA_NODEID_BYTESTRING_ALLOC(UA_UInt16 nsIndex, const char *chars) {
  283. UA_NodeId id; id.namespaceIndex = nsIndex;
  284. id.identifierType = UA_NODEIDTYPE_BYTESTRING;
  285. id.identifier.byteString = UA_BYTESTRING_ALLOC(chars); return id;
  286. }
  287. /**
  288. * ExpandedNodeId
  289. * ^^^^^^^^^^^^^^
  290. * A NodeId that allows the namespace URI to be specified instead of an index. */
  291. typedef struct {
  292. UA_NodeId nodeId;
  293. UA_String namespaceUri;
  294. UA_UInt32 serverIndex;
  295. } UA_ExpandedNodeId;
  296. /** The following functions are shorthand for creating ExpandedNodeIds. */
  297. static UA_INLINE UA_ExpandedNodeId
  298. UA_EXPANDEDNODEID_NUMERIC(UA_UInt16 nsIndex, UA_UInt32 identifier) {
  299. UA_ExpandedNodeId id; id.nodeId = UA_NODEID_NUMERIC(nsIndex, identifier);
  300. id.serverIndex = 0; id.namespaceUri = UA_STRING_NULL; return id;
  301. }
  302. static UA_INLINE UA_ExpandedNodeId
  303. UA_EXPANDEDNODEID_STRING(UA_UInt16 nsIndex, char *chars) {
  304. UA_ExpandedNodeId id; id.nodeId = UA_NODEID_STRING(nsIndex, chars);
  305. id.serverIndex = 0; id.namespaceUri = UA_STRING_NULL; return id;
  306. }
  307. static UA_INLINE UA_ExpandedNodeId
  308. UA_EXPANDEDNODEID_STRING_ALLOC(UA_UInt16 nsIndex, const char *chars) {
  309. UA_ExpandedNodeId id; id.nodeId = UA_NODEID_STRING_ALLOC(nsIndex, chars);
  310. id.serverIndex = 0; id.namespaceUri = UA_STRING_NULL; return id;
  311. }
  312. static UA_INLINE UA_ExpandedNodeId
  313. UA_EXPANDEDNODEID_STRING_GUID(UA_UInt16 nsIndex, UA_Guid guid) {
  314. UA_ExpandedNodeId id; id.nodeId = UA_NODEID_GUID(nsIndex, guid);
  315. id.serverIndex = 0; id.namespaceUri = UA_STRING_NULL; return id;
  316. }
  317. static UA_INLINE UA_ExpandedNodeId
  318. UA_EXPANDEDNODEID_BYTESTRING(UA_UInt16 nsIndex, char *chars) {
  319. UA_ExpandedNodeId id; id.nodeId = UA_NODEID_BYTESTRING(nsIndex, chars);
  320. id.serverIndex = 0; id.namespaceUri = UA_STRING_NULL; return id;
  321. }
  322. static UA_INLINE UA_ExpandedNodeId
  323. UA_EXPANDEDNODEID_BYTESTRING_ALLOC(UA_UInt16 nsIndex, const char *chars) {
  324. UA_ExpandedNodeId id; id.nodeId = UA_NODEID_BYTESTRING_ALLOC(nsIndex, chars);
  325. id.serverIndex = 0; id.namespaceUri = UA_STRING_NULL; return id;
  326. }
  327. /**
  328. * .. _qualifiedname:
  329. *
  330. * QualifiedName
  331. * ^^^^^^^^^^^^^
  332. * A name qualified by a namespace. */
  333. typedef struct {
  334. UA_UInt16 namespaceIndex;
  335. UA_String name;
  336. } UA_QualifiedName;
  337. static UA_INLINE UA_Boolean
  338. UA_QualifiedName_isNull(const UA_QualifiedName *q) {
  339. return (q->namespaceIndex == 0 && q->name.length == 0);
  340. }
  341. static UA_INLINE UA_QualifiedName
  342. UA_QUALIFIEDNAME(UA_UInt16 nsIndex, char *chars) {
  343. UA_QualifiedName qn; qn.namespaceIndex = nsIndex;
  344. qn.name = UA_STRING(chars); return qn;
  345. }
  346. static UA_INLINE UA_QualifiedName
  347. UA_QUALIFIEDNAME_ALLOC(UA_UInt16 nsIndex, const char *chars) {
  348. UA_QualifiedName qn; qn.namespaceIndex = nsIndex;
  349. qn.name = UA_STRING_ALLOC(chars); return qn;
  350. }
  351. /**
  352. * LocalizedText
  353. * ^^^^^^^^^^^^^
  354. * Human readable text with an optional locale identifier. */
  355. typedef struct {
  356. UA_String locale;
  357. UA_String text;
  358. } UA_LocalizedText;
  359. static UA_INLINE UA_LocalizedText
  360. UA_LOCALIZEDTEXT(char *locale, char *text) {
  361. UA_LocalizedText lt; lt.locale = UA_STRING(locale);
  362. lt.text = UA_STRING(text); return lt;
  363. }
  364. static UA_INLINE UA_LocalizedText
  365. UA_LOCALIZEDTEXT_ALLOC(const char *locale, const char *text) {
  366. UA_LocalizedText lt; lt.locale = UA_STRING_ALLOC(locale);
  367. lt.text = UA_STRING_ALLOC(text); return lt;
  368. }
  369. /**
  370. * .. _numericrange:
  371. *
  372. * NumericRange
  373. * ^^^^^^^^^^^^
  374. *
  375. * NumericRanges are used to indicate subsets of a (multidimensional) array.
  376. * They no official data type in the OPC UA standard and are transmitted only
  377. * with a string encoding, such as "1:2,0:3,5". The colon separates min/max
  378. * index and the comma separates dimensions. A single value indicates a range
  379. * with a single element (min==max). */
  380. typedef struct {
  381. UA_UInt32 min;
  382. UA_UInt32 max;
  383. } UA_NumericRangeDimension;
  384. typedef struct {
  385. size_t dimensionsSize;
  386. UA_NumericRangeDimension *dimensions;
  387. } UA_NumericRange;
  388. /**
  389. * .. _variant:
  390. *
  391. * Variant
  392. * ^^^^^^^
  393. *
  394. * Variants may contain values of any type together with a description of the
  395. * content. See the section on :ref:`generic-types` on how types are described.
  396. * The standard mandates that variants contain built-in data types only. If the
  397. * value is not of a builtin type, it is wrapped into an :ref:`extensionobject`.
  398. * open62541 hides this wrapping transparently in the encoding layer. If the
  399. * data type is unknown to the receiver, the variant contains the original
  400. * ExtensionObject in binary or XML encoding.
  401. *
  402. * Variants may contain a scalar value or an array. For details on the handling
  403. * of arrays, see the section on :ref:`array-handling`. Array variants can have
  404. * an additional dimensionality (matrix, 3-tensor, ...) defined in an array of
  405. * dimension lengths. The actual values are kept in an array of dimensions one.
  406. * For users who work with higher-dimensions arrays directly, keep in mind that
  407. * dimensions of higher rank are serialized first (the highest rank dimension
  408. * has stride 1 and elements follow each other directly). Usually it is simplest
  409. * to interact with higher-dimensional arrays via ``UA_NumericRange``
  410. * descriptions (see :ref:`array-handling`).
  411. *
  412. * To differentiate between scalar / array variants, the following definition is
  413. * used. ``UA_Variant_isScalar`` provides simplified access to these checks.
  414. *
  415. * - ``arrayLength == 0 && data == NULL``: undefined array of length -1
  416. * - ``arrayLength == 0 && data == UA_EMPTY_ARRAY_SENTINEL``: array of length 0
  417. * - ``arrayLength == 0 && data > UA_EMPTY_ARRAY_SENTINEL``: scalar value
  418. * - ``arrayLength > 0``: array of the given length
  419. *
  420. * Variants can also be *empty*. Then, the pointer to the type description is
  421. * ``NULL``. */
  422. /* Forward declaration. See the section on Generic Type Handling */
  423. struct UA_DataType;
  424. typedef struct UA_DataType UA_DataType;
  425. #define UA_EMPTY_ARRAY_SENTINEL ((void*)0x01)
  426. typedef enum {
  427. UA_VARIANT_DATA, /* The data has the same lifecycle as the
  428. variant */
  429. UA_VARIANT_DATA_NODELETE /* The data is "borrowed" by the variant and
  430. shall not be deleted at the end of the
  431. variant's lifecycle. */
  432. } UA_VariantStorageType;
  433. typedef struct {
  434. const UA_DataType *type; /* The data type description */
  435. UA_VariantStorageType storageType;
  436. size_t arrayLength; /* The number of elements in the data array */
  437. void *data; /* Points to the scalar or array data */
  438. size_t arrayDimensionsSize; /* The number of dimensions */
  439. UA_UInt32 *arrayDimensions; /* The length of each dimension */
  440. } UA_Variant;
  441. /* Returns true if the variant has no value defined (contains neither an array
  442. * nor a scalar value).
  443. *
  444. * @param v The variant
  445. * @return Is the variant empty */
  446. static UA_INLINE UA_Boolean
  447. UA_Variant_isEmpty(const UA_Variant *v) {
  448. return v->type == NULL;
  449. }
  450. /* Returns true if the variant contains a scalar value. Note that empty variants
  451. * contain an array of length -1 (undefined).
  452. *
  453. * @param v The variant
  454. * @return Does the variant contain a scalar value */
  455. static UA_INLINE UA_Boolean
  456. UA_Variant_isScalar(const UA_Variant *v) {
  457. return (v->arrayLength == 0 && v->data > UA_EMPTY_ARRAY_SENTINEL);
  458. }
  459. /* Returns true if the variant contains a scalar value of the given type.
  460. *
  461. * @param v The variant
  462. * @param type The data type
  463. * @return Does the variant contain a scalar value of the given type */
  464. static UA_INLINE UA_Boolean
  465. UA_Variant_hasScalarType(const UA_Variant *v, const UA_DataType *type) {
  466. return UA_Variant_isScalar(v) && type == v->type;
  467. }
  468. /* Returns true if the variant contains an array of the given type.
  469. *
  470. * @param v The variant
  471. * @param type The data type
  472. * @return Does the variant contain an array of the given type */
  473. static UA_INLINE UA_Boolean
  474. UA_Variant_hasArrayType(const UA_Variant *v, const UA_DataType *type) {
  475. return (!UA_Variant_isScalar(v)) && type == v->type;
  476. }
  477. /* Set the variant to a scalar value that already resides in memory. The value
  478. * takes on the lifecycle of the variant and is deleted with it.
  479. *
  480. * @param v The variant
  481. * @param p A pointer to the value data
  482. * @param type The datatype of the value in question */
  483. void UA_EXPORT
  484. UA_Variant_setScalar(UA_Variant *v, void * UA_RESTRICT p,
  485. const UA_DataType *type);
  486. /* Set the variant to a scalar value that is copied from an existing variable.
  487. * @param v The variant
  488. * @param p A pointer to the value data
  489. * @param type The datatype of the value
  490. * @return Indicates whether the operation succeeded or returns an error code */
  491. UA_StatusCode UA_EXPORT
  492. UA_Variant_setScalarCopy(UA_Variant *v, const void *p,
  493. const UA_DataType *type);
  494. /* Set the variant to an array that already resides in memory. The array takes
  495. * on the lifecycle of the variant and is deleted with it.
  496. *
  497. * @param v The variant
  498. * @param array A pointer to the array data
  499. * @param arraySize The size of the array
  500. * @param type The datatype of the array */
  501. void UA_EXPORT
  502. UA_Variant_setArray(UA_Variant *v, void * UA_RESTRICT array,
  503. size_t arraySize, const UA_DataType *type);
  504. /* Set the variant to an array that is copied from an existing array.
  505. *
  506. * @param v The variant
  507. * @param array A pointer to the array data
  508. * @param arraySize The size of the array
  509. * @param type The datatype of the array
  510. * @return Indicates whether the operation succeeded or returns an error code */
  511. UA_StatusCode UA_EXPORT
  512. UA_Variant_setArrayCopy(UA_Variant *v, const void *array,
  513. size_t arraySize, const UA_DataType *type);
  514. /* Copy the variant, but use only a subset of the (multidimensional) array into
  515. * a variant. Returns an error code if the variant is not an array or if the
  516. * indicated range does not fit.
  517. *
  518. * @param src The source variant
  519. * @param dst The target variant
  520. * @param range The range of the copied data
  521. * @return Returns UA_STATUSCODE_GOOD or an error code */
  522. UA_StatusCode UA_EXPORT
  523. UA_Variant_copyRange(const UA_Variant *src, UA_Variant *dst,
  524. const UA_NumericRange range);
  525. /* Insert a range of data into an existing variant. The data array can't be
  526. * reused afterwards if it contains types without a fixed size (e.g. strings)
  527. * since the members are moved into the variant and take on its lifecycle.
  528. *
  529. * @param v The variant
  530. * @param dataArray The data array. The type must match the variant
  531. * @param dataArraySize The length of the data array. This is checked to match
  532. * the range size.
  533. * @param range The range of where the new data is inserted
  534. * @return Returns UA_STATUSCODE_GOOD or an error code */
  535. UA_StatusCode UA_EXPORT
  536. UA_Variant_setRange(UA_Variant *v, void * UA_RESTRICT array,
  537. size_t arraySize, const UA_NumericRange range);
  538. /* Deep-copy a range of data into an existing variant.
  539. *
  540. * @param v The variant
  541. * @param dataArray The data array. The type must match the variant
  542. * @param dataArraySize The length of the data array. This is checked to match
  543. * the range size.
  544. * @param range The range of where the new data is inserted
  545. * @return Returns UA_STATUSCODE_GOOD or an error code */
  546. UA_StatusCode UA_EXPORT
  547. UA_Variant_setRangeCopy(UA_Variant *v, const void *array,
  548. size_t arraySize, const UA_NumericRange range);
  549. /**
  550. * .. _extensionobject:
  551. *
  552. * ExtensionObject
  553. * ^^^^^^^^^^^^^^^
  554. *
  555. * ExtensionObjects may contain scalars of any data type. Even those that are
  556. * unknown to the receiver. See the section on :ref:`generic-types` on how types
  557. * are described. If the received data type is unkown, the encoded string and
  558. * target NodeId is stored instead of the decoded value. */
  559. typedef enum {
  560. UA_EXTENSIONOBJECT_ENCODED_NOBODY = 0,
  561. UA_EXTENSIONOBJECT_ENCODED_BYTESTRING = 1,
  562. UA_EXTENSIONOBJECT_ENCODED_XML = 2,
  563. UA_EXTENSIONOBJECT_DECODED = 3,
  564. UA_EXTENSIONOBJECT_DECODED_NODELETE = 4 /* Don't delete the content
  565. together with the
  566. ExtensionObject */
  567. } UA_ExtensionObjectEncoding;
  568. typedef struct {
  569. UA_ExtensionObjectEncoding encoding;
  570. union {
  571. struct {
  572. UA_NodeId typeId; /* The nodeid of the datatype */
  573. UA_ByteString body; /* The bytestring of the encoded data */
  574. } encoded;
  575. struct {
  576. const UA_DataType *type;
  577. void *data;
  578. } decoded;
  579. } content;
  580. } UA_ExtensionObject;
  581. /**
  582. * .. _datavalue:
  583. *
  584. * DataValue
  585. * ^^^^^^^^^
  586. * A data value with an associated status code and timestamps. */
  587. typedef struct {
  588. UA_Boolean hasValue : 1;
  589. UA_Boolean hasStatus : 1;
  590. UA_Boolean hasSourceTimestamp : 1;
  591. UA_Boolean hasServerTimestamp : 1;
  592. UA_Boolean hasSourcePicoseconds : 1;
  593. UA_Boolean hasServerPicoseconds : 1;
  594. UA_Variant value;
  595. UA_StatusCode status;
  596. UA_DateTime sourceTimestamp;
  597. UA_UInt16 sourcePicoseconds;
  598. UA_DateTime serverTimestamp;
  599. UA_UInt16 serverPicoseconds;
  600. } UA_DataValue;
  601. /**
  602. * DiagnosticInfo
  603. * ^^^^^^^^^^^^^^
  604. * A structure that contains detailed error and diagnostic information
  605. * associated with a StatusCode. */
  606. typedef struct UA_DiagnosticInfo {
  607. UA_Boolean hasSymbolicId : 1;
  608. UA_Boolean hasNamespaceUri : 1;
  609. UA_Boolean hasLocalizedText : 1;
  610. UA_Boolean hasLocale : 1;
  611. UA_Boolean hasAdditionalInfo : 1;
  612. UA_Boolean hasInnerStatusCode : 1;
  613. UA_Boolean hasInnerDiagnosticInfo : 1;
  614. UA_Int32 symbolicId;
  615. UA_Int32 namespaceUri;
  616. UA_Int32 localizedText;
  617. UA_Int32 locale;
  618. UA_String additionalInfo;
  619. UA_StatusCode innerStatusCode;
  620. struct UA_DiagnosticInfo *innerDiagnosticInfo;
  621. } UA_DiagnosticInfo;
  622. /**
  623. * .. _generic-types:
  624. *
  625. * Generic Type Handling
  626. * ---------------------
  627. *
  628. * All information about a (builtin/structured) data type is stored in a
  629. * ``UA_DataType``. The array ``UA_TYPES`` contains the description of all
  630. * standard-defined types. This type description is used for the following
  631. * generic operations that work on all types:
  632. *
  633. * - ``void T_init(T *ptr)``: Initialize the data type. This is synonymous with
  634. * zeroing out the memory, i.e. ``memset(ptr, 0, sizeof(T))``.
  635. * - ``T* T_new()``: Allocate and return the memory for the data type. The
  636. * value is already initialized.
  637. * - ``UA_StatusCode T_copy(const T *src, T *dst)``: Copy the content of the
  638. * data type. Returns ``UA_STATUSCODE_GOOD`` or
  639. * ``UA_STATUSCODE_BADOUTOFMEMORY``.
  640. * - ``void T_deleteMembers(T *ptr)``: Delete the dynamically allocated content
  641. * of the data type and perform a ``T_init`` to reset the type.
  642. * - ``void T_delete(T *ptr)``: Delete the content of the data type and the
  643. * memory for the data type itself.
  644. *
  645. * Specializations, such as ``UA_Int32_new()`` are derived from the generic
  646. * type operations as static inline functions.
  647. */
  648. typedef struct {
  649. #ifdef UA_ENABLE_TYPENAMES
  650. const char *memberName;
  651. #endif
  652. UA_UInt16 memberTypeIndex; /* Index of the member in the array of data
  653. types */
  654. UA_Byte padding; /* How much padding is there before this
  655. member element? For arrays this is the
  656. padding before the size_t lenght member.
  657. (No padding between size_t and the
  658. following ptr.) */
  659. UA_Boolean namespaceZero : 1; /* The type of the member is defined in
  660. namespace zero. In this implementation,
  661. types from custom namespace may contain
  662. members from the same namespace or
  663. namespace zero only.*/
  664. UA_Boolean isArray : 1; /* The member is an array */
  665. } UA_DataTypeMember;
  666. struct UA_DataType {
  667. #ifdef UA_ENABLE_TYPENAMES
  668. const char *typeName;
  669. #endif
  670. UA_NodeId typeId; /* The nodeid of the type */
  671. UA_UInt16 memSize; /* Size of the struct in memory */
  672. UA_UInt16 typeIndex; /* Index of the type in the datatypetable */
  673. UA_Byte membersSize; /* How many members does the type have? */
  674. UA_Boolean builtin : 1; /* The type is "builtin" and has dedicated de-
  675. and encoding functions */
  676. UA_Boolean pointerFree : 1; /* The type (and its members) contains no
  677. pointers that need to be freed */
  678. UA_Boolean overlayable : 1; /* The type has the identical memory layout in
  679. memory and on the binary stream. */
  680. UA_UInt16 binaryEncodingId; /* NodeId of datatype when encoded as binary */
  681. //UA_UInt16 xmlEncodingId; /* NodeId of datatype when encoded as XML */
  682. UA_DataTypeMember *members;
  683. };
  684. /**
  685. * Builtin data types can be accessed as UA_TYPES[UA_TYPES_XXX], where XXX is
  686. * the name of the data type. If only the NodeId of a type is known, use the
  687. * following method to retrieve the data type description. */
  688. /* Returns the data type description for the type's identifier or NULL if no
  689. * matching data type was found. */
  690. const UA_DataType UA_EXPORT *
  691. UA_findDataType(const UA_NodeId *typeId);
  692. /** The following functions are used for generic handling of data types. */
  693. /* Allocates and initializes a variable of type dataType
  694. *
  695. * @param type The datatype description
  696. * @return Returns the memory location of the variable or NULL if no
  697. * memory could be allocated */
  698. void UA_EXPORT * UA_new(const UA_DataType *type) UA_FUNC_ATTR_MALLOC;
  699. /* Initializes a variable to default values
  700. *
  701. * @param p The memory location of the variable
  702. * @param type The datatype description */
  703. static UA_INLINE void
  704. UA_init(void *p, const UA_DataType *type) {
  705. memset(p, 0, type->memSize);
  706. }
  707. /* Copies the content of two variables. If copying fails (e.g. because no memory
  708. * was available for an array), then dst is emptied and initialized to prevent
  709. * memory leaks.
  710. *
  711. * @param src The memory location of the source variable
  712. * @param dst The memory location of the destination variable
  713. * @param type The datatype description
  714. * @return Indicates whether the operation succeeded or returns an error code */
  715. UA_StatusCode UA_EXPORT
  716. UA_copy(const void *src, void *dst, const UA_DataType *type);
  717. /* Deletes the dynamically allocated content of a variable (e.g. resets all
  718. * arrays to undefined arrays). Afterwards, the variable can be safely deleted
  719. * without causing memory leaks. But the variable is not initialized and may
  720. * contain old data that is not memory-relevant.
  721. *
  722. * @param p The memory location of the variable
  723. * @param type The datatype description of the variable */
  724. void UA_EXPORT UA_deleteMembers(void *p, const UA_DataType *type);
  725. /* Frees a variable and all of its content.
  726. *
  727. * @param p The memory location of the variable
  728. * @param type The datatype description of the variable */
  729. void UA_EXPORT UA_delete(void *p, const UA_DataType *type);
  730. /**
  731. * .. _array-handling:
  732. *
  733. * Array handling
  734. * --------------
  735. * In OPC UA, arrays can have a length of zero or more with the usual meaning.
  736. * In addition, arrays can be undefined. Then, they don't even have a length. In
  737. * the binary encoding, this is indicated by an array of length -1.
  738. *
  739. * In open62541 however, we use ``size_t`` for array lengths. An undefined array
  740. * has length 0 and the data pointer is ``NULL``. An array of length 0 also has
  741. * length 0 but a data pointer ``UA_EMPTY_ARRAY_SENTINEL``. */
  742. /* Allocates and initializes an array of variables of a specific type
  743. *
  744. * @param size The requested array length
  745. * @param type The datatype description
  746. * @return Returns the memory location of the variable or NULL if no memory
  747. could be allocated */
  748. void UA_EXPORT * UA_Array_new(size_t size, const UA_DataType *type) UA_FUNC_ATTR_MALLOC;
  749. /* Allocates and copies an array
  750. *
  751. * @param src The memory location of the source array
  752. * @param size The size of the array
  753. * @param dst The location of the pointer to the new array
  754. * @param type The datatype of the array members
  755. * @return Returns UA_STATUSCODE_GOOD or UA_STATUSCODE_BADOUTOFMEMORY */
  756. UA_StatusCode UA_EXPORT
  757. UA_Array_copy(const void *src, size_t size, void **dst,
  758. const UA_DataType *type) UA_FUNC_ATTR_WARN_UNUSED_RESULT;
  759. /* Deletes an array.
  760. *
  761. * @param p The memory location of the array
  762. * @param size The size of the array
  763. * @param type The datatype of the array members */
  764. void UA_EXPORT UA_Array_delete(void *p, size_t size, const UA_DataType *type);
  765. /**
  766. * Random Number Generator
  767. * -----------------------
  768. * If UA_ENABLE_MULTITHREADING is defined, then the seed is stored in thread
  769. * local storage. The seed is initialized for every thread in the
  770. * server/client. */
  771. void UA_EXPORT UA_random_seed(UA_UInt64 seed);
  772. UA_UInt32 UA_EXPORT UA_UInt32_random(void); /* no cryptographic entropy */
  773. UA_Guid UA_EXPORT UA_Guid_random(void); /* no cryptographic entropy */
  774. /**
  775. * .. _generated-types:
  776. *
  777. * Generated Data Type Definitions
  778. * -------------------------------
  779. *
  780. * The following data types were auto-generated from a definition in XML format.
  781. *
  782. * .. toctree::
  783. *
  784. * types_generated */
  785. /**
  786. * Deprecated Data Types API
  787. * -------------------------
  788. * The following definitions are deprecated and will be removed in future
  789. * releases of open62541. */
  790. typedef struct {
  791. UA_StatusCode code; /* The numeric value of the StatusCode */
  792. const char* name; /* The symbolic name */
  793. const char* explanation; /* Short message explaining the StatusCode */
  794. } UA_StatusCodeDescription;
  795. UA_EXPORT extern const UA_StatusCodeDescription statusCodeExplanation_default;
  796. UA_DEPRECATED static UA_INLINE const UA_StatusCodeDescription *
  797. UA_StatusCode_description(UA_StatusCode code) {
  798. return &statusCodeExplanation_default;
  799. }
  800. UA_DEPRECATED static UA_INLINE const char *
  801. UA_StatusCode_explanation(UA_StatusCode code) {
  802. return statusCodeExplanation_default.name;
  803. }
  804. #ifdef __cplusplus
  805. } // extern "C"
  806. #endif
  807. #endif /* UA_TYPES_H_ */