types.h 34 KB

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