types.h 34 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013
  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.
  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_Order UA_EXPORT UA_NodeId_order(const UA_NodeId *n1, const UA_NodeId *n2);
  278. static UA_INLINE UA_Boolean
  279. UA_NodeId_equal(const UA_NodeId *n1, const UA_NodeId *n2) {
  280. return (UA_NodeId_order(n1, n2) == UA_ORDER_EQ);
  281. }
  282. /* Returns a non-cryptographic hash for the NodeId */
  283. UA_UInt32 UA_EXPORT UA_NodeId_hash(const UA_NodeId *n);
  284. /** The following functions are shorthand for creating NodeIds. */
  285. static UA_INLINE UA_NodeId
  286. UA_NODEID_NUMERIC(UA_UInt16 nsIndex, UA_UInt32 identifier) {
  287. UA_NodeId id; id.namespaceIndex = nsIndex;
  288. id.identifierType = UA_NODEIDTYPE_NUMERIC;
  289. id.identifier.numeric = identifier; return id;
  290. }
  291. static UA_INLINE UA_NodeId
  292. UA_NODEID_STRING(UA_UInt16 nsIndex, char *chars) {
  293. UA_NodeId id; id.namespaceIndex = nsIndex;
  294. id.identifierType = UA_NODEIDTYPE_STRING;
  295. id.identifier.string = UA_STRING(chars); return id;
  296. }
  297. static UA_INLINE UA_NodeId
  298. UA_NODEID_STRING_ALLOC(UA_UInt16 nsIndex, const char *chars) {
  299. UA_NodeId id; id.namespaceIndex = nsIndex;
  300. id.identifierType = UA_NODEIDTYPE_STRING;
  301. id.identifier.string = UA_STRING_ALLOC(chars); return id;
  302. }
  303. static UA_INLINE UA_NodeId
  304. UA_NODEID_GUID(UA_UInt16 nsIndex, UA_Guid guid) {
  305. UA_NodeId id; id.namespaceIndex = nsIndex;
  306. id.identifierType = UA_NODEIDTYPE_GUID;
  307. id.identifier.guid = guid; return id;
  308. }
  309. static UA_INLINE UA_NodeId
  310. UA_NODEID_BYTESTRING(UA_UInt16 nsIndex, char *chars) {
  311. UA_NodeId id; id.namespaceIndex = nsIndex;
  312. id.identifierType = UA_NODEIDTYPE_BYTESTRING;
  313. id.identifier.byteString = UA_BYTESTRING(chars); return id;
  314. }
  315. static UA_INLINE UA_NodeId
  316. UA_NODEID_BYTESTRING_ALLOC(UA_UInt16 nsIndex, const char *chars) {
  317. UA_NodeId id; id.namespaceIndex = nsIndex;
  318. id.identifierType = UA_NODEIDTYPE_BYTESTRING;
  319. id.identifier.byteString = UA_BYTESTRING_ALLOC(chars); return id;
  320. }
  321. /**
  322. * ExpandedNodeId
  323. * ^^^^^^^^^^^^^^
  324. * A NodeId that allows the namespace URI to be specified instead of an index. */
  325. typedef struct {
  326. UA_NodeId nodeId;
  327. UA_String namespaceUri;
  328. UA_UInt32 serverIndex;
  329. } UA_ExpandedNodeId;
  330. UA_Boolean UA_EXPORT UA_ExpandedNodeId_equal(const UA_ExpandedNodeId *n1,
  331. const UA_ExpandedNodeId *n2);
  332. UA_EXPORT extern const UA_ExpandedNodeId UA_EXPANDEDNODEID_NULL;
  333. /** The following functions are shorthand for creating ExpandedNodeIds. */
  334. static UA_INLINE UA_ExpandedNodeId
  335. UA_EXPANDEDNODEID_NUMERIC(UA_UInt16 nsIndex, UA_UInt32 identifier) {
  336. UA_ExpandedNodeId id; id.nodeId = UA_NODEID_NUMERIC(nsIndex, identifier);
  337. id.serverIndex = 0; id.namespaceUri = UA_STRING_NULL; return id;
  338. }
  339. static UA_INLINE UA_ExpandedNodeId
  340. UA_EXPANDEDNODEID_STRING(UA_UInt16 nsIndex, char *chars) {
  341. UA_ExpandedNodeId id; id.nodeId = UA_NODEID_STRING(nsIndex, chars);
  342. id.serverIndex = 0; id.namespaceUri = UA_STRING_NULL; return id;
  343. }
  344. static UA_INLINE UA_ExpandedNodeId
  345. UA_EXPANDEDNODEID_STRING_ALLOC(UA_UInt16 nsIndex, const char *chars) {
  346. UA_ExpandedNodeId id; id.nodeId = UA_NODEID_STRING_ALLOC(nsIndex, chars);
  347. id.serverIndex = 0; id.namespaceUri = UA_STRING_NULL; return id;
  348. }
  349. static UA_INLINE UA_ExpandedNodeId
  350. UA_EXPANDEDNODEID_STRING_GUID(UA_UInt16 nsIndex, UA_Guid guid) {
  351. UA_ExpandedNodeId id; id.nodeId = UA_NODEID_GUID(nsIndex, guid);
  352. id.serverIndex = 0; id.namespaceUri = UA_STRING_NULL; return id;
  353. }
  354. static UA_INLINE UA_ExpandedNodeId
  355. UA_EXPANDEDNODEID_BYTESTRING(UA_UInt16 nsIndex, char *chars) {
  356. UA_ExpandedNodeId id; id.nodeId = UA_NODEID_BYTESTRING(nsIndex, chars);
  357. id.serverIndex = 0; id.namespaceUri = UA_STRING_NULL; return id;
  358. }
  359. static UA_INLINE UA_ExpandedNodeId
  360. UA_EXPANDEDNODEID_BYTESTRING_ALLOC(UA_UInt16 nsIndex, const char *chars) {
  361. UA_ExpandedNodeId id; id.nodeId = UA_NODEID_BYTESTRING_ALLOC(nsIndex, chars);
  362. id.serverIndex = 0; id.namespaceUri = UA_STRING_NULL; return id;
  363. }
  364. /**
  365. * .. _qualifiedname:
  366. *
  367. * QualifiedName
  368. * ^^^^^^^^^^^^^
  369. * A name qualified by a namespace. */
  370. typedef struct {
  371. UA_UInt16 namespaceIndex;
  372. UA_String name;
  373. } UA_QualifiedName;
  374. static UA_INLINE UA_Boolean
  375. UA_QualifiedName_isNull(const UA_QualifiedName *q) {
  376. return (q->namespaceIndex == 0 && q->name.length == 0);
  377. }
  378. static UA_INLINE UA_QualifiedName
  379. UA_QUALIFIEDNAME(UA_UInt16 nsIndex, char *chars) {
  380. UA_QualifiedName qn; qn.namespaceIndex = nsIndex;
  381. qn.name = UA_STRING(chars); return qn;
  382. }
  383. static UA_INLINE UA_QualifiedName
  384. UA_QUALIFIEDNAME_ALLOC(UA_UInt16 nsIndex, const char *chars) {
  385. UA_QualifiedName qn; qn.namespaceIndex = nsIndex;
  386. qn.name = UA_STRING_ALLOC(chars); return qn;
  387. }
  388. UA_Boolean UA_EXPORT
  389. UA_QualifiedName_equal(const UA_QualifiedName *qn1,
  390. const UA_QualifiedName *qn2);
  391. /**
  392. * LocalizedText
  393. * ^^^^^^^^^^^^^
  394. * Human readable text with an optional locale identifier. */
  395. typedef struct {
  396. UA_String locale;
  397. UA_String text;
  398. } UA_LocalizedText;
  399. static UA_INLINE UA_LocalizedText
  400. UA_LOCALIZEDTEXT(char *locale, char *text) {
  401. UA_LocalizedText lt; lt.locale = UA_STRING(locale);
  402. lt.text = UA_STRING(text); return lt;
  403. }
  404. static UA_INLINE UA_LocalizedText
  405. UA_LOCALIZEDTEXT_ALLOC(const char *locale, const char *text) {
  406. UA_LocalizedText lt; lt.locale = UA_STRING_ALLOC(locale);
  407. lt.text = UA_STRING_ALLOC(text); return lt;
  408. }
  409. /**
  410. * .. _numericrange:
  411. *
  412. * NumericRange
  413. * ^^^^^^^^^^^^
  414. *
  415. * NumericRanges are used to indicate subsets of a (multidimensional) array.
  416. * They no official data type in the OPC UA standard and are transmitted only
  417. * with a string encoding, such as "1:2,0:3,5". The colon separates min/max
  418. * index and the comma separates dimensions. A single value indicates a range
  419. * with a single element (min==max). */
  420. typedef struct {
  421. UA_UInt32 min;
  422. UA_UInt32 max;
  423. } UA_NumericRangeDimension;
  424. typedef struct {
  425. size_t dimensionsSize;
  426. UA_NumericRangeDimension *dimensions;
  427. } UA_NumericRange;
  428. UA_StatusCode UA_EXPORT
  429. UA_NumericRange_parseFromString(UA_NumericRange *range, const UA_String *str);
  430. /**
  431. * .. _variant:
  432. *
  433. * Variant
  434. * ^^^^^^^
  435. *
  436. * Variants may contain values of any type together with a description of the
  437. * content. See the section on :ref:`generic-types` on how types are described.
  438. * The standard mandates that variants contain built-in data types only. If the
  439. * value is not of a builtin type, it is wrapped into an :ref:`extensionobject`.
  440. * open62541 hides this wrapping transparently in the encoding layer. If the
  441. * data type is unknown to the receiver, the variant contains the original
  442. * ExtensionObject in binary or XML encoding.
  443. *
  444. * Variants may contain a scalar value or an array. For details on the handling
  445. * of arrays, see the section on :ref:`array-handling`. Array variants can have
  446. * an additional dimensionality (matrix, 3-tensor, ...) defined in an array of
  447. * dimension lengths. The actual values are kept in an array of dimensions one.
  448. * For users who work with higher-dimensions arrays directly, keep in mind that
  449. * dimensions of higher rank are serialized first (the highest rank dimension
  450. * has stride 1 and elements follow each other directly). Usually it is simplest
  451. * to interact with higher-dimensional arrays via ``UA_NumericRange``
  452. * descriptions (see :ref:`array-handling`).
  453. *
  454. * To differentiate between scalar / array variants, the following definition is
  455. * used. ``UA_Variant_isScalar`` provides simplified access to these checks.
  456. *
  457. * - ``arrayLength == 0 && data == NULL``: undefined array of length -1
  458. * - ``arrayLength == 0 && data == UA_EMPTY_ARRAY_SENTINEL``: array of length 0
  459. * - ``arrayLength == 0 && data > UA_EMPTY_ARRAY_SENTINEL``: scalar value
  460. * - ``arrayLength > 0``: array of the given length
  461. *
  462. * Variants can also be *empty*. Then, the pointer to the type description is
  463. * ``NULL``. */
  464. /* Forward declaration. See the section on Generic Type Handling */
  465. struct UA_DataType;
  466. typedef struct UA_DataType UA_DataType;
  467. #define UA_EMPTY_ARRAY_SENTINEL ((void*)0x01)
  468. typedef enum {
  469. UA_VARIANT_DATA, /* The data has the same lifecycle as the
  470. variant */
  471. UA_VARIANT_DATA_NODELETE /* The data is "borrowed" by the variant and
  472. shall not be deleted at the end of the
  473. variant's lifecycle. */
  474. } UA_VariantStorageType;
  475. typedef struct {
  476. const UA_DataType *type; /* The data type description */
  477. UA_VariantStorageType storageType;
  478. size_t arrayLength; /* The number of elements in the data array */
  479. void *data; /* Points to the scalar or array data */
  480. size_t arrayDimensionsSize; /* The number of dimensions */
  481. UA_UInt32 *arrayDimensions; /* The length of each dimension */
  482. } UA_Variant;
  483. /* Returns true if the variant has no value defined (contains neither an array
  484. * nor a scalar value).
  485. *
  486. * @param v The variant
  487. * @return Is the variant empty */
  488. static UA_INLINE UA_Boolean
  489. UA_Variant_isEmpty(const UA_Variant *v) {
  490. return v->type == NULL;
  491. }
  492. /* Returns true if the variant contains a scalar value. Note that empty variants
  493. * contain an array of length -1 (undefined).
  494. *
  495. * @param v The variant
  496. * @return Does the variant contain a scalar value */
  497. static UA_INLINE UA_Boolean
  498. UA_Variant_isScalar(const UA_Variant *v) {
  499. return (v->arrayLength == 0 && v->data > UA_EMPTY_ARRAY_SENTINEL);
  500. }
  501. /* Returns true if the variant contains a scalar value of the given type.
  502. *
  503. * @param v The variant
  504. * @param type The data type
  505. * @return Does the variant contain a scalar value of the given type */
  506. static UA_INLINE UA_Boolean
  507. UA_Variant_hasScalarType(const UA_Variant *v, const UA_DataType *type) {
  508. return UA_Variant_isScalar(v) && type == v->type;
  509. }
  510. /* Returns true if the variant contains an array of the given type.
  511. *
  512. * @param v The variant
  513. * @param type The data type
  514. * @return Does the variant contain an array of the given type */
  515. static UA_INLINE UA_Boolean
  516. UA_Variant_hasArrayType(const UA_Variant *v, const UA_DataType *type) {
  517. return (!UA_Variant_isScalar(v)) && type == v->type;
  518. }
  519. /* Set the variant to a scalar value that already resides in memory. The value
  520. * takes on the lifecycle of the variant and is deleted with it.
  521. *
  522. * @param v The variant
  523. * @param p A pointer to the value data
  524. * @param type The datatype of the value in question */
  525. void UA_EXPORT
  526. UA_Variant_setScalar(UA_Variant *v, void * UA_RESTRICT p,
  527. const UA_DataType *type);
  528. /* Set the variant to a scalar value that is copied from an existing variable.
  529. * @param v The variant
  530. * @param p A pointer to the value data
  531. * @param type The datatype of the value
  532. * @return Indicates whether the operation succeeded or returns an error code */
  533. UA_StatusCode UA_EXPORT
  534. UA_Variant_setScalarCopy(UA_Variant *v, const void *p,
  535. const UA_DataType *type);
  536. /* Set the variant to an array that already resides in memory. The array takes
  537. * on the lifecycle of the variant and is deleted with it.
  538. *
  539. * @param v The variant
  540. * @param array A pointer to the array data
  541. * @param arraySize The size of the array
  542. * @param type The datatype of the array */
  543. void UA_EXPORT
  544. UA_Variant_setArray(UA_Variant *v, void * UA_RESTRICT array,
  545. size_t arraySize, const UA_DataType *type);
  546. /* Set the variant to an array that is copied from an existing array.
  547. *
  548. * @param v The variant
  549. * @param array A pointer to the array data
  550. * @param arraySize The size of the array
  551. * @param type The datatype of the array
  552. * @return Indicates whether the operation succeeded or returns an error code */
  553. UA_StatusCode UA_EXPORT
  554. UA_Variant_setArrayCopy(UA_Variant *v, const void *array,
  555. size_t arraySize, const UA_DataType *type);
  556. /* Copy the variant, but use only a subset of the (multidimensional) array into
  557. * a variant. Returns an error code if the variant is not an array or if the
  558. * indicated range does not fit.
  559. *
  560. * @param src The source variant
  561. * @param dst The target variant
  562. * @param range The range of the copied data
  563. * @return Returns UA_STATUSCODE_GOOD or an error code */
  564. UA_StatusCode UA_EXPORT
  565. UA_Variant_copyRange(const UA_Variant *src, UA_Variant *dst,
  566. const UA_NumericRange range);
  567. /* Insert a range of data into an existing variant. The data array can't be
  568. * reused afterwards if it contains types without a fixed size (e.g. strings)
  569. * since the members are moved into the variant and take on its lifecycle.
  570. *
  571. * @param v The variant
  572. * @param dataArray The data array. The type must match the variant
  573. * @param dataArraySize The length of the data array. This is checked to match
  574. * the range size.
  575. * @param range The range of where the new data is inserted
  576. * @return Returns UA_STATUSCODE_GOOD or an error code */
  577. UA_StatusCode UA_EXPORT
  578. UA_Variant_setRange(UA_Variant *v, void * UA_RESTRICT array,
  579. size_t arraySize, const UA_NumericRange range);
  580. /* Deep-copy a range of data into an existing variant.
  581. *
  582. * @param v The variant
  583. * @param dataArray The data array. The type must match the variant
  584. * @param dataArraySize The length of the data array. This is checked to match
  585. * the range size.
  586. * @param range The range of where the new data is inserted
  587. * @return Returns UA_STATUSCODE_GOOD or an error code */
  588. UA_StatusCode UA_EXPORT
  589. UA_Variant_setRangeCopy(UA_Variant *v, const void *array,
  590. size_t arraySize, const UA_NumericRange range);
  591. /**
  592. * .. _extensionobject:
  593. *
  594. * ExtensionObject
  595. * ^^^^^^^^^^^^^^^
  596. *
  597. * ExtensionObjects may contain scalars of any data type. Even those that are
  598. * unknown to the receiver. See the section on :ref:`generic-types` on how types
  599. * are described. If the received data type is unknown, the encoded string and
  600. * target NodeId is stored instead of the decoded value. */
  601. typedef enum {
  602. UA_EXTENSIONOBJECT_ENCODED_NOBODY = 0,
  603. UA_EXTENSIONOBJECT_ENCODED_BYTESTRING = 1,
  604. UA_EXTENSIONOBJECT_ENCODED_XML = 2,
  605. UA_EXTENSIONOBJECT_DECODED = 3,
  606. UA_EXTENSIONOBJECT_DECODED_NODELETE = 4 /* Don't delete the content
  607. together with the
  608. ExtensionObject */
  609. } UA_ExtensionObjectEncoding;
  610. typedef struct {
  611. UA_ExtensionObjectEncoding encoding;
  612. union {
  613. struct {
  614. UA_NodeId typeId; /* The nodeid of the datatype */
  615. UA_ByteString body; /* The bytestring of the encoded data */
  616. } encoded;
  617. struct {
  618. const UA_DataType *type;
  619. void *data;
  620. } decoded;
  621. } content;
  622. } UA_ExtensionObject;
  623. /**
  624. * .. _datavalue:
  625. *
  626. * DataValue
  627. * ^^^^^^^^^
  628. * A data value with an associated status code and timestamps. */
  629. typedef struct {
  630. UA_Variant value;
  631. UA_DateTime sourceTimestamp;
  632. UA_DateTime serverTimestamp;
  633. UA_UInt16 sourcePicoseconds;
  634. UA_UInt16 serverPicoseconds;
  635. UA_StatusCode status;
  636. UA_Boolean hasValue : 1;
  637. UA_Boolean hasStatus : 1;
  638. UA_Boolean hasSourceTimestamp : 1;
  639. UA_Boolean hasServerTimestamp : 1;
  640. UA_Boolean hasSourcePicoseconds : 1;
  641. UA_Boolean hasServerPicoseconds : 1;
  642. } UA_DataValue;
  643. /**
  644. * DiagnosticInfo
  645. * ^^^^^^^^^^^^^^
  646. * A structure that contains detailed error and diagnostic information
  647. * associated with a StatusCode. */
  648. typedef struct UA_DiagnosticInfo {
  649. UA_Boolean hasSymbolicId : 1;
  650. UA_Boolean hasNamespaceUri : 1;
  651. UA_Boolean hasLocalizedText : 1;
  652. UA_Boolean hasLocale : 1;
  653. UA_Boolean hasAdditionalInfo : 1;
  654. UA_Boolean hasInnerStatusCode : 1;
  655. UA_Boolean hasInnerDiagnosticInfo : 1;
  656. UA_Int32 symbolicId;
  657. UA_Int32 namespaceUri;
  658. UA_Int32 localizedText;
  659. UA_Int32 locale;
  660. UA_String additionalInfo;
  661. UA_StatusCode innerStatusCode;
  662. struct UA_DiagnosticInfo *innerDiagnosticInfo;
  663. } UA_DiagnosticInfo;
  664. /**
  665. * .. _generic-types:
  666. *
  667. * Generic Type Handling
  668. * ---------------------
  669. *
  670. * All information about a (builtin/structured) data type is stored in a
  671. * ``UA_DataType``. The array ``UA_TYPES`` contains the description of all
  672. * standard-defined types. This type description is used for the following
  673. * generic operations that work on all types:
  674. *
  675. * - ``void T_init(T *ptr)``: Initialize the data type. This is synonymous with
  676. * zeroing out the memory, i.e. ``memset(ptr, 0, sizeof(T))``.
  677. * - ``T* T_new()``: Allocate and return the memory for the data type. The
  678. * value is already initialized.
  679. * - ``UA_StatusCode T_copy(const T *src, T *dst)``: Copy the content of the
  680. * data type. Returns ``UA_STATUSCODE_GOOD`` or
  681. * ``UA_STATUSCODE_BADOUTOFMEMORY``.
  682. * - ``void T_clear(T *ptr)``: Delete the dynamically allocated content
  683. * of the data type and perform a ``T_init`` to reset the type.
  684. * - ``void T_delete(T *ptr)``: Delete the content of the data type and the
  685. * memory for the data type itself.
  686. *
  687. * Specializations, such as ``UA_Int32_new()`` are derived from the generic
  688. * type operations as static inline functions. */
  689. typedef struct {
  690. #ifdef UA_ENABLE_TYPENAMES
  691. const char *memberName;
  692. #endif
  693. UA_UInt16 memberTypeIndex; /* Index of the member in the array of data
  694. types */
  695. UA_Byte padding; /* How much padding is there before this
  696. member element? For arrays this is the
  697. padding before the size_t length member.
  698. (No padding between size_t and the
  699. following ptr.) */
  700. UA_Boolean namespaceZero : 1; /* The type of the member is defined in
  701. namespace zero. In this implementation,
  702. types from custom namespace may contain
  703. members from the same namespace or
  704. namespace zero only.*/
  705. UA_Boolean isArray : 1; /* The member is an array */
  706. } UA_DataTypeMember;
  707. /* The DataType "kind" is an internal type classification. It is used to
  708. * dispatch handling to the correct routines. */
  709. #define UA_DATATYPEKINDS 31
  710. typedef enum {
  711. UA_DATATYPEKIND_BOOLEAN = 0,
  712. UA_DATATYPEKIND_SBYTE = 1,
  713. UA_DATATYPEKIND_BYTE = 2,
  714. UA_DATATYPEKIND_INT16 = 3,
  715. UA_DATATYPEKIND_UINT16 = 4,
  716. UA_DATATYPEKIND_INT32 = 5,
  717. UA_DATATYPEKIND_UINT32 = 6,
  718. UA_DATATYPEKIND_INT64 = 7,
  719. UA_DATATYPEKIND_UINT64 = 8,
  720. UA_DATATYPEKIND_FLOAT = 9,
  721. UA_DATATYPEKIND_DOUBLE = 10,
  722. UA_DATATYPEKIND_STRING = 11,
  723. UA_DATATYPEKIND_DATETIME = 12,
  724. UA_DATATYPEKIND_GUID = 13,
  725. UA_DATATYPEKIND_BYTESTRING = 14,
  726. UA_DATATYPEKIND_XMLELEMENT = 15,
  727. UA_DATATYPEKIND_NODEID = 16,
  728. UA_DATATYPEKIND_EXPANDEDNODEID = 17,
  729. UA_DATATYPEKIND_STATUSCODE = 18,
  730. UA_DATATYPEKIND_QUALIFIEDNAME = 19,
  731. UA_DATATYPEKIND_LOCALIZEDTEXT = 20,
  732. UA_DATATYPEKIND_EXTENSIONOBJECT = 21,
  733. UA_DATATYPEKIND_DATAVALUE = 22,
  734. UA_DATATYPEKIND_VARIANT = 23,
  735. UA_DATATYPEKIND_DIAGNOSTICINFO = 24,
  736. UA_DATATYPEKIND_DECIMAL = 25,
  737. UA_DATATYPEKIND_ENUM = 26,
  738. UA_DATATYPEKIND_STRUCTURE = 27,
  739. UA_DATATYPEKIND_OPTSTRUCT = 28, /* struct with optional fields */
  740. UA_DATATYPEKIND_UNION = 29,
  741. UA_DATATYPEKIND_BITFIELDCLUSTER = 30 /* bitfields + padding */
  742. } UA_DataTypeKind;
  743. struct UA_DataType {
  744. #ifdef UA_ENABLE_TYPENAMES
  745. const char *typeName;
  746. #endif
  747. UA_NodeId typeId; /* The nodeid of the type */
  748. UA_UInt16 memSize; /* Size of the struct in memory */
  749. UA_UInt16 typeIndex; /* Index of the type in the datatypetable */
  750. UA_UInt32 typeKind : 6; /* Dispatch index for the handling routines */
  751. UA_UInt32 pointerFree : 1; /* The type (and its members) contains no
  752. * pointers that need to be freed */
  753. UA_UInt32 overlayable : 1; /* The type has the identical memory layout
  754. * in memory and on the binary stream. */
  755. UA_UInt32 membersSize : 8; /* How many members does the type have? */
  756. UA_UInt32 binaryEncodingId : 16; /* NodeId of datatype when encoded as binary */
  757. //UA_UInt16 xmlEncodingId; /* NodeId of datatype when encoded as XML */
  758. UA_DataTypeMember *members;
  759. };
  760. /* Test if the data type is a numeric builtin data type. This includes Boolean,
  761. * integers and floating point numbers. Not included are DateTime and
  762. * StatusCode. */
  763. UA_Boolean
  764. UA_DataType_isNumeric(const UA_DataType *type);
  765. /**
  766. * Builtin data types can be accessed as UA_TYPES[UA_TYPES_XXX], where XXX is
  767. * the name of the data type. If only the NodeId of a type is known, use the
  768. * following method to retrieve the data type description. */
  769. /* Returns the data type description for the type's identifier or NULL if no
  770. * matching data type was found. */
  771. const UA_DataType UA_EXPORT *
  772. UA_findDataType(const UA_NodeId *typeId);
  773. /** The following functions are used for generic handling of data types. */
  774. /* Allocates and initializes a variable of type dataType
  775. *
  776. * @param type The datatype description
  777. * @return Returns the memory location of the variable or NULL if no
  778. * memory could be allocated */
  779. void UA_EXPORT * UA_new(const UA_DataType *type) UA_FUNC_ATTR_MALLOC;
  780. /* Initializes a variable to default values
  781. *
  782. * @param p The memory location of the variable
  783. * @param type The datatype description */
  784. static UA_INLINE void
  785. UA_init(void *p, const UA_DataType *type) {
  786. memset(p, 0, type->memSize);
  787. }
  788. /* Copies the content of two variables. If copying fails (e.g. because no memory
  789. * was available for an array), then dst is emptied and initialized to prevent
  790. * memory leaks.
  791. *
  792. * @param src The memory location of the source variable
  793. * @param dst The memory location of the destination variable
  794. * @param type The datatype description
  795. * @return Indicates whether the operation succeeded or returns an error code */
  796. UA_StatusCode UA_EXPORT
  797. UA_copy(const void *src, void *dst, const UA_DataType *type);
  798. /* Deletes the dynamically allocated content of a variable (e.g. resets all
  799. * arrays to undefined arrays). Afterwards, the variable can be safely deleted
  800. * without causing memory leaks. But the variable is not initialized and may
  801. * contain old data that is not memory-relevant.
  802. *
  803. * @param p The memory location of the variable
  804. * @param type The datatype description of the variable */
  805. void UA_EXPORT UA_clear(void *p, const UA_DataType *type);
  806. #define UA_deleteMembers(p, type) UA_clear(p, type)
  807. /* Frees a variable and all of its content.
  808. *
  809. * @param p The memory location of the variable
  810. * @param type The datatype description of the variable */
  811. void UA_EXPORT UA_delete(void *p, const UA_DataType *type);
  812. /**
  813. * .. _array-handling:
  814. *
  815. * Array handling
  816. * --------------
  817. * In OPC UA, arrays can have a length of zero or more with the usual meaning.
  818. * In addition, arrays can be undefined. Then, they don't even have a length. In
  819. * the binary encoding, this is indicated by an array of length -1.
  820. *
  821. * In open62541 however, we use ``size_t`` for array lengths. An undefined array
  822. * has length 0 and the data pointer is ``NULL``. An array of length 0 also has
  823. * length 0 but a data pointer ``UA_EMPTY_ARRAY_SENTINEL``. */
  824. /* Allocates and initializes an array of variables of a specific type
  825. *
  826. * @param size The requested array length
  827. * @param type The datatype description
  828. * @return Returns the memory location of the variable or NULL if no memory
  829. could be allocated */
  830. void UA_EXPORT *
  831. UA_Array_new(size_t size, const UA_DataType *type) UA_FUNC_ATTR_MALLOC;
  832. /* Allocates and copies an array
  833. *
  834. * @param src The memory location of the source array
  835. * @param size The size of the array
  836. * @param dst The location of the pointer to the new array
  837. * @param type The datatype of the array members
  838. * @return Returns UA_STATUSCODE_GOOD or UA_STATUSCODE_BADOUTOFMEMORY */
  839. UA_StatusCode UA_EXPORT
  840. UA_Array_copy(const void *src, size_t size, void **dst,
  841. const UA_DataType *type) UA_FUNC_ATTR_WARN_UNUSED_RESULT;
  842. /* Deletes an array.
  843. *
  844. * @param p The memory location of the array
  845. * @param size The size of the array
  846. * @param type The datatype of the array members */
  847. void UA_EXPORT UA_Array_delete(void *p, size_t size, const UA_DataType *type);
  848. /**
  849. * Random Number Generator
  850. * -----------------------
  851. * If UA_ENABLE_MULTITHREADING is defined, then the seed is stored in thread
  852. * local storage. The seed is initialized for every thread in the
  853. * server/client. */
  854. void UA_EXPORT UA_random_seed(UA_UInt64 seed);
  855. UA_UInt32 UA_EXPORT UA_UInt32_random(void); /* no cryptographic entropy */
  856. UA_Guid UA_EXPORT UA_Guid_random(void); /* no cryptographic entropy */
  857. /**
  858. * .. _generated-types:
  859. *
  860. * Generated Data Type Definitions
  861. * -------------------------------
  862. *
  863. * The following data types were auto-generated from a definition in XML format.
  864. */
  865. /* The following is used to exclude type names in the definition of UA_DataType
  866. * structures if the feature is disabled. */
  867. #ifdef UA_ENABLE_TYPENAMES
  868. # define UA_TYPENAME(name) name,
  869. #else
  870. # define UA_TYPENAME(name)
  871. #endif
  872. /* Datatype arrays with custom type definitions can be added in a linked list to
  873. * the client or server configuration. Datatype members can point to types in
  874. * the same array via the ``memberTypeIndex``. If ``namespaceZero`` is set to
  875. * true, the member datatype is looked up in the array of builtin datatypes
  876. * instead. */
  877. typedef struct UA_DataTypeArray {
  878. const struct UA_DataTypeArray *next;
  879. const size_t typesSize;
  880. const UA_DataType *types;
  881. } UA_DataTypeArray;
  882. /**
  883. *
  884. * .. toctree::
  885. *
  886. * types_generated */
  887. _UA_END_DECLS
  888. #endif /* UA_TYPES_H_ */