ua_types.h 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563
  1. /*
  2. * Copyright (C) 2014 the contributors as stated in the AUTHORS file
  3. *
  4. * This file is part of open62541. open62541 is free software: you can
  5. * redistribute it and/or modify it under the terms of the GNU Lesser General
  6. * Public License, version 3 (as published by the Free Software Foundation) with
  7. * a static linking exception as stated in the LICENSE file provided with
  8. * open62541.
  9. *
  10. * open62541 is distributed in the hope that it will be useful, but WITHOUT ANY
  11. * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  12. * A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
  13. * details.
  14. */
  15. #ifndef UA_TYPES_H_
  16. #define UA_TYPES_H_
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. #include <stdint.h>
  21. #include <stdbool.h>
  22. #include <stddef.h>
  23. #include "ua_config.h"
  24. /**
  25. * @defgroup types Datatypes
  26. *
  27. * @brief The built-in datatypes. The remaining datatypes are autogenerated from
  28. * XML descriptions as they are all enums or structures made up of the built-in
  29. * datatypes.
  30. *
  31. * All datatypes have similar functions with a common postfix. DO NOT CALL THESE
  32. * FUNCTIONS WITH NULL-POINTERS IF IT IS NOT EXPLICITLY PERMITTED.
  33. *
  34. * - _new: Allocates the memory for the type and runs _init on the returned
  35. * variable. Returns null if no memory could be allocated.
  36. *
  37. * - _init: Sets all members to a "safe" standard, usually zero. Arrays (e.g.
  38. * for strings) are set to a length of -1.
  39. *
  40. * - _copy: Copies a datatype. This performs a deep copy that iterates over the
  41. * members. Copying into variants with an external data source is not
  42. * permitted. If copying fails, a deleteMembers is performed and an error
  43. * code returned.
  44. *
  45. * - _delete: Frees the memory where the datatype was stored. This performs an
  46. * _deleteMembers internally if required.
  47. *
  48. * - _deleteMembers: Frees the memory of dynamically sized members (e.g. a
  49. * string) of a datatype. This is useful when the datatype was allocated on
  50. * the stack, whereas the dynamically sized members is heap-allocated. To
  51. * reuse the variable, the remaining members (not dynamically allocated) need
  52. * to be cleaned up with an _init.
  53. *
  54. * @{
  55. */
  56. /** @brief A two-state logical value (true or false). */
  57. typedef bool UA_Boolean;
  58. #define UA_TRUE true
  59. #define UA_FALSE false
  60. /** @brief An integer value between -129 and 127. */
  61. typedef int8_t UA_SByte;
  62. #define UA_SBYTE_MAX 127
  63. #define UA_SBYTE_MIN -128
  64. /** @brief An integer value between 0 and 256. */
  65. typedef uint8_t UA_Byte;
  66. #define UA_BYTE_MAX 256
  67. #define UA_BYTE_MIN 0
  68. /** @brief An integer value between -32 768 and 32 767. */
  69. typedef int16_t UA_Int16;
  70. #define UA_INT16_MAX 32767
  71. #define UA_INT16_MIN -32768
  72. /** @brief An integer value between 0 and 65 535. */
  73. typedef uint16_t UA_UInt16;
  74. #define UA_UINT16_MAX 65535
  75. #define UA_UINT16_MIN 0
  76. /** @brief An integer value between -2 147 483 648 and 2 147 483 647. */
  77. typedef int32_t UA_Int32;
  78. #define UA_INT32_MAX 2147483647
  79. #define UA_INT32_MIN -2147483648
  80. /** @brief An integer value between 0 and 429 4967 295. */
  81. typedef uint32_t UA_UInt32;
  82. #define UA_UINT32_MAX 4294967295
  83. #define UA_UINT32_MIN 0
  84. /** @brief An integer value between -10 223 372 036 854 775 808 and 9 223 372 036 854 775 807 */
  85. typedef int64_t UA_Int64;
  86. #define UA_INT64_MAX 9223372036854775807
  87. #define UA_INT64_MIN -9223372036854775808
  88. /** @brief An integer value between 0 and 18 446 744 073 709 551 615. */
  89. typedef uint64_t UA_UInt64;
  90. #define UA_UINT64_MAX = 18446744073709551615
  91. #define UA_UINT64_MIN = 0
  92. /** @brief An IEEE single precision (32 bit) floating point value. */
  93. typedef float UA_Float;
  94. /** @brief An IEEE double precision (64 bit) floating point value. */
  95. typedef double UA_Double;
  96. /** @brief A sequence of Unicode characters. */
  97. typedef struct {
  98. UA_Int32 length;
  99. UA_Byte *data;
  100. } UA_String;
  101. /** @brief An instance in time.
  102. * A DateTime value is encoded as a 64-bit signed integer which represents the
  103. * number of 100 nanosecond intervals since January 1, 1601 (UTC).
  104. */
  105. typedef UA_Int64 UA_DateTime; // 100 nanosecond resolution
  106. /** @brief A 16 byte value that can be used as a globally unique identifier. */
  107. typedef struct {
  108. UA_UInt32 data1;
  109. UA_UInt16 data2;
  110. UA_UInt16 data3;
  111. UA_Byte data4[8];
  112. } UA_Guid;
  113. /** @brief A sequence of octets. */
  114. typedef UA_String UA_ByteString;
  115. /** @brief An XML element. */
  116. typedef UA_String UA_XmlElement;
  117. /** @brief An identifier for a node in the address space of an OPC UA Server. */
  118. /* The shortened numeric types are introduced during encoding. */
  119. typedef struct {
  120. UA_UInt16 namespaceIndex;
  121. enum {
  122. UA_NODEIDTYPE_NUMERIC = 2,
  123. UA_NODEIDTYPE_STRING = 3,
  124. UA_NODEIDTYPE_GUID = 4,
  125. UA_NODEIDTYPE_BYTESTRING = 5
  126. } identifierType;
  127. union {
  128. UA_UInt32 numeric;
  129. UA_String string;
  130. UA_Guid guid;
  131. UA_ByteString byteString;
  132. } identifier;
  133. } UA_NodeId;
  134. /** @brief A NodeId that allows the namespace URI to be specified instead of an index. */
  135. typedef struct {
  136. UA_NodeId nodeId;
  137. UA_String namespaceUri; // not encoded if length=-1
  138. UA_UInt32 serverIndex; // not encoded if 0
  139. } UA_ExpandedNodeId;
  140. #include "ua_statuscodes.h"
  141. /** @brief A numeric identifier for a error or condition that is associated with a value or an operation. */
  142. typedef enum UA_StatusCode UA_StatusCode; // StatusCodes aren't an enum(=int) since 32 unsigned bits are needed. See also ua_statuscodes.h */
  143. /** @brief A name qualified by a namespace. */
  144. typedef struct {
  145. UA_UInt16 namespaceIndex;
  146. UA_String name;
  147. } UA_QualifiedName;
  148. /** @brief Human readable text with an optional locale identifier. */
  149. typedef struct {
  150. UA_String locale;
  151. UA_String text;
  152. } UA_LocalizedText;
  153. /** @brief A structure that contains an application specific data type that may
  154. not be recognized by the receiver. */
  155. typedef struct {
  156. UA_NodeId typeId;
  157. enum {
  158. UA_EXTENSIONOBJECT_ENCODINGMASK_NOBODYISENCODED = 0,
  159. UA_EXTENSIONOBJECT_ENCODINGMASK_BODYISBYTESTRING = 1,
  160. UA_EXTENSIONOBJECT_ENCODINGMASK_BODYISXML = 2
  161. } encoding;
  162. UA_ByteString body; // contains either the bytestring or a pointer to the memory-object
  163. } UA_ExtensionObject;
  164. struct UA_DataType;
  165. typedef struct UA_DataType UA_DataType;
  166. /** @brief Variants store (arrays of) any data type. Either they provide a pointer to the data in
  167. memory, or functions from which the data can be accessed. Variants are replaced together with
  168. the data they store (exception: use a data source).*/
  169. typedef struct {
  170. const UA_DataType *type;
  171. enum {
  172. UA_VARIANT_DATA, ///< The data is "owned" by this variant (copied and deleted together)
  173. UA_VARIANT_DATA_NODELETE, /**< The data is "borrowed" by the variant and shall not be
  174. deleted at the end of this variant's lifecycle. It is not
  175. possible to overwrite borrowed data due to concurrent access.
  176. Use a custom datasource with a mutex. */
  177. } storageType;
  178. UA_Int32 arrayLength; ///< the number of elements in the data-pointer
  179. void *dataPtr; ///< points to the scalar or array data
  180. UA_Int32 arrayDimensionsSize; ///< the number of dimensions the data-array has
  181. UA_Int32 *arrayDimensions; ///< the length of each dimension of the data-array
  182. } UA_Variant;
  183. /** @brief A data value with an associated status code and timestamps. */
  184. typedef struct {
  185. UA_Boolean hasVariant : 1;
  186. UA_Boolean hasStatus : 1;
  187. UA_Boolean hasSourceTimestamp : 1;
  188. UA_Boolean hasServerTimestamp : 1;
  189. UA_Boolean hasSourcePicoseconds : 1;
  190. UA_Boolean hasServerPicoseconds : 1;
  191. UA_Variant value;
  192. UA_StatusCode status;
  193. UA_DateTime sourceTimestamp;
  194. UA_Int16 sourcePicoseconds;
  195. UA_DateTime serverTimestamp;
  196. UA_Int16 serverPicoseconds;
  197. } UA_DataValue;
  198. /** @brief A structure that contains detailed error and diagnostic information associated with a StatusCode. */
  199. typedef struct UA_DiagnosticInfo {
  200. UA_Boolean hasSymbolicId : 1;
  201. UA_Boolean hasNamespaceUri : 1;
  202. UA_Boolean hasLocalizedText : 1;
  203. UA_Boolean hasLocale : 1;
  204. UA_Boolean hasAdditionalInfo : 1;
  205. UA_Boolean hasInnerStatusCode : 1;
  206. UA_Boolean hasInnerDiagnosticInfo : 1;
  207. UA_Int32 symbolicId;
  208. UA_Int32 namespaceUri;
  209. UA_Int32 localizedText;
  210. UA_Int32 locale;
  211. UA_String additionalInfo;
  212. UA_StatusCode innerStatusCode;
  213. struct UA_DiagnosticInfo *innerDiagnosticInfo;
  214. } UA_DiagnosticInfo;
  215. #define UA_TYPE_HANDLING_FUNCTIONS(TYPE) \
  216. TYPE UA_EXPORT * TYPE##_new(void); \
  217. void UA_EXPORT TYPE##_init(TYPE * p); \
  218. void UA_EXPORT TYPE##_delete(TYPE * p); \
  219. void UA_EXPORT TYPE##_deleteMembers(TYPE * p); \
  220. UA_StatusCode UA_EXPORT TYPE##_copy(const TYPE *src, TYPE *dst);
  221. /* Functions for all types */
  222. UA_TYPE_HANDLING_FUNCTIONS(UA_Boolean)
  223. UA_TYPE_HANDLING_FUNCTIONS(UA_SByte)
  224. UA_TYPE_HANDLING_FUNCTIONS(UA_Byte)
  225. UA_TYPE_HANDLING_FUNCTIONS(UA_Int16)
  226. UA_TYPE_HANDLING_FUNCTIONS(UA_UInt16)
  227. UA_TYPE_HANDLING_FUNCTIONS(UA_Int32)
  228. UA_TYPE_HANDLING_FUNCTIONS(UA_UInt32)
  229. UA_TYPE_HANDLING_FUNCTIONS(UA_Int64)
  230. UA_TYPE_HANDLING_FUNCTIONS(UA_UInt64)
  231. UA_TYPE_HANDLING_FUNCTIONS(UA_Float)
  232. UA_TYPE_HANDLING_FUNCTIONS(UA_Double)
  233. UA_TYPE_HANDLING_FUNCTIONS(UA_String)
  234. #define UA_DateTime_new UA_Int64_new
  235. #define UA_DateTime_init UA_Int64_init
  236. #define UA_DateTime_delete UA_Int64_delete
  237. #define UA_DateTime_deleteMembers UA_Int64_deleteMembers
  238. #define UA_DateTime_copy UA_Int64_copy
  239. UA_TYPE_HANDLING_FUNCTIONS(UA_Guid)
  240. #define UA_ByteString_new UA_String_new
  241. #define UA_ByteString_init UA_String_init
  242. #define UA_ByteString_delete UA_String_delete
  243. #define UA_ByteString_deleteMembers UA_String_deleteMembers
  244. #define UA_ByteString_copy UA_String_copy
  245. #define UA_XmlElement_new UA_String_new
  246. #define UA_XmlElement_init UA_String_init
  247. #define UA_XmlElement_delete UA_String_delete
  248. #define UA_XmlElement_deleteMembers UA_String_deleteMembers
  249. #define UA_XmlElement_copy UA_String_copy
  250. UA_TYPE_HANDLING_FUNCTIONS(UA_NodeId)
  251. UA_TYPE_HANDLING_FUNCTIONS(UA_ExpandedNodeId)
  252. #define UA_StatusCode_new UA_Int32_new
  253. #define UA_StatusCode_init UA_Int32_init
  254. #define UA_StatusCode_delete UA_Int32_delete
  255. #define UA_StatusCode_deleteMembers UA_Int32_deleteMembers
  256. #define UA_StatusCode_copy UA_Int32_copy
  257. UA_TYPE_HANDLING_FUNCTIONS(UA_QualifiedName)
  258. UA_TYPE_HANDLING_FUNCTIONS(UA_LocalizedText)
  259. UA_TYPE_HANDLING_FUNCTIONS(UA_ExtensionObject)
  260. UA_TYPE_HANDLING_FUNCTIONS(UA_DataValue)
  261. UA_TYPE_HANDLING_FUNCTIONS(UA_Variant)
  262. UA_TYPE_HANDLING_FUNCTIONS(UA_DiagnosticInfo)
  263. /**********************************************/
  264. /* Custom functions for the builtin datatypes */
  265. /**********************************************/
  266. #ifdef __cplusplus
  267. #define CPP_ONLY(STR) STR
  268. #else
  269. #define CPP_ONLY(STR)
  270. #endif
  271. /* String */
  272. /** Copy a (zero terminated) char-array into a UA_String. Memory for the string data is
  273. allocated. */
  274. UA_StatusCode UA_EXPORT UA_String_copycstring(char const *src, UA_String *dst);
  275. /** Printf a char-array into a UA_String. Memory for the string data is allocated. */
  276. UA_StatusCode UA_EXPORT UA_String_copyprintf(char const *fmt, UA_String *dst, ...);
  277. /** Compares two strings */
  278. UA_Boolean UA_EXPORT UA_String_equal(const UA_String *string1, const UA_String *string2);
  279. #define UA_STRING_NULL (UA_String) {-1, (UA_Byte*)0 }
  280. #define UA_STRING_ASSIGN(VARIABLE, STRING) do { \
  281. VARIABLE.length = sizeof(STRING)-1; \
  282. VARIABLE.data = (UA_Byte *)STRING; } while(0)
  283. /* DateTime */
  284. /** Returns the current time */
  285. UA_DateTime UA_EXPORT UA_DateTime_now(void);
  286. typedef struct UA_DateTimeStruct {
  287. UA_Int16 nanoSec;
  288. UA_Int16 microSec;
  289. UA_Int16 milliSec;
  290. UA_Int16 sec;
  291. UA_Int16 min;
  292. UA_Int16 hour;
  293. UA_Int16 day;
  294. UA_Int16 month;
  295. UA_Int16 year;
  296. } UA_DateTimeStruct;
  297. UA_DateTimeStruct UA_EXPORT UA_DateTime_toStruct(UA_DateTime time);
  298. UA_StatusCode UA_EXPORT UA_DateTime_toString(UA_DateTime time, UA_String *timeString);
  299. /* Guid */
  300. /** Compares two guids */
  301. UA_Boolean UA_EXPORT UA_Guid_equal(const UA_Guid *g1, const UA_Guid *g2);
  302. /** Returns a randomly generated guid. Do not use for security-critical entropy! */
  303. UA_Guid UA_EXPORT UA_Guid_random(UA_UInt32 *seed);
  304. /* ByteString */
  305. #define UA_ByteString_equal(string1, string2) \
  306. UA_String_equal((const UA_String*) string1, (const UA_String*)string2)
  307. /** Allocates memory of size length for the bytestring. The content is not set to zero. */
  308. UA_StatusCode UA_EXPORT UA_ByteString_newMembers(UA_ByteString *p, UA_Int32 length);
  309. /* NodeId */
  310. /** Compares two nodeids */
  311. UA_Boolean UA_EXPORT UA_NodeId_equal(const UA_NodeId *n1, const UA_NodeId *n2);
  312. /** Is the nodeid a null-nodeid? */
  313. UA_Boolean UA_EXPORT UA_NodeId_isNull(const UA_NodeId *p);
  314. #define UA_NODEID_ASSIGN(VARIABLE, NAMESPACE, NUMERICID) do { \
  315. VARIABLE.namespaceIndex = NAMESPACE; \
  316. VARIABLE.identifierType = CPP_ONLY(UA_NodeId::)UA_NODEIDTYPE_NUMERIC; \
  317. VARIABLE.identifier.numeric = NUMERICID; } while(0);
  318. #define UA_NODEID_STATIC(NAMESPACE, NUMERICID) (UA_NodeId) { \
  319. .namespaceIndex = NAMESPACE, .identifierType = UA_NODEIDTYPE_NUMERIC, \
  320. .identifier.numeric = NUMERICID }
  321. #define UA_NODEID_NULL UA_NODEID_STATIC(0,0)
  322. /* ExpandedNodeId */
  323. UA_Boolean UA_EXPORT UA_ExpandedNodeId_isNull(const UA_ExpandedNodeId *p);
  324. #define UA_EXPANDEDNODEID_STATIC(NAMESPACE, NUMERICID) (UA_ExpandedNodeId) { \
  325. .nodeId = {.namespaceIndex = NAMESPACE, .identifierType = UA_NODEIDTYPE_NUMERIC, \
  326. .identifier.numeric = NUMERICID }, \
  327. .serverIndex = 0, .namespaceUri = {.data = (UA_Byte*)0, .length = -1} }
  328. /* QualifiedName */
  329. UA_StatusCode UA_EXPORT UA_QualifiedName_copycstring(char const *src, UA_QualifiedName *dst);
  330. #define UA_QUALIFIEDNAME_ASSIGN(VARIABLE, STRING) do { \
  331. VARIABLE.namespaceIndex = 0; \
  332. UA_STRING_ASSIGN(VARIABLE.name, STRING); } while(0)
  333. /* LocalizedText */
  334. /** Copy a (zero-terminated) char-array into the UA_LocalizedText. Memory for the string is
  335. allocated. The locale is set to "en" by default. */
  336. UA_StatusCode UA_EXPORT UA_LocalizedText_copycstring(char const *src, UA_LocalizedText *dst);
  337. /* Variant */
  338. /**
  339. * Set the variant to a scalar value that already resides in memory. The value takes on the
  340. * lifecycle of the variant and is deleted with it.
  341. *
  342. * @param v The variant
  343. * @param p A pointer to the value data
  344. * @param type The datatype of the value in question
  345. * @return Indicates whether the operation succeeded or returns an error code
  346. */
  347. UA_StatusCode UA_EXPORT UA_Variant_setValue(UA_Variant *v, void *p, const UA_DataType *type);
  348. /**
  349. * Set the variant to a scalar value that is copied from an existing variable.
  350. *
  351. * @param v The variant
  352. * @param p A pointer to the value data
  353. * @param type The datatype of the value
  354. * @return Indicates whether the operation succeeded or returns an error code
  355. */
  356. UA_StatusCode UA_EXPORT UA_Variant_copySetValue(UA_Variant *v, const void *p, const UA_DataType *type);
  357. /**
  358. * Set the variant to an array that already resides in memory. The array takes on the lifecycle of
  359. * the variant and is deleted with it.
  360. *
  361. * @param v The variant
  362. * @param array A pointer to the array data
  363. * @param noElements The size of the array
  364. * @param type The datatype of the array
  365. * @return Indicates whether the operation succeeded or returns an error code
  366. */
  367. UA_StatusCode UA_EXPORT UA_Variant_setArray(UA_Variant *v, void *array,
  368. UA_Int32 noElements, const UA_DataType *type);
  369. /**
  370. * Set the variant to an array that is copied from an existing array.
  371. *
  372. * @param v The variant
  373. * @param array A pointer to the array data
  374. * @param noElements The size of the array
  375. * @param type The datatype of the array
  376. * @return Indicates whether the operation succeeded or returns an error code
  377. */
  378. UA_StatusCode UA_EXPORT UA_Variant_copySetArray(UA_Variant *v, const void *array,
  379. UA_Int32 noElements, const UA_DataType *type);
  380. /****************************/
  381. /* Structured Type Handling */
  382. /****************************/
  383. #define UA_MAX_TYPE_MEMBERS 13 // Maximum number of members per complex type
  384. #ifndef _WIN32
  385. # define UA_BITFIELD(SIZE) : SIZE
  386. #else
  387. # define UA_BITFIELD(SIZE)
  388. #endif
  389. typedef struct {
  390. UA_UInt16 memberTypeIndex UA_BITFIELD(9); ///< Index of the member in the datatypetable
  391. UA_Boolean namespaceZero UA_BITFIELD(1); /**< The type of the member is defined in namespace
  392. zero. In this implementation, types from custom
  393. namespace may contain members from the same
  394. namespace or ns0 only.*/
  395. UA_Byte padding UA_BITFIELD(5); /**< How much padding is there before this member element? For
  396. arrays this is split into 2 bytes padding for for the
  397. length index (max 4 bytes) and 3 bytes padding for the
  398. pointer (max 8 bytes) */
  399. UA_Boolean isArray UA_BITFIELD(1); ///< The member is an array of the given type
  400. } UA_DataTypeMember;
  401. struct UA_DataType {
  402. UA_NodeId typeId; ///< The nodeid of the type
  403. size_t memSize UA_BITFIELD(16); ///< Size of the struct in memory
  404. size_t typeIndex UA_BITFIELD(13); ///< Index of the type in the datatytypetable
  405. UA_Boolean namespaceZero UA_BITFIELD(1); ///< The type is defined in namespace zero.
  406. UA_Boolean fixedSize UA_BITFIELD(1); ///< The type (and its members) contains no pointers
  407. UA_Boolean zeroCopyable UA_BITFIELD(1); ///< Can the type be copied directly off the stream?
  408. UA_Boolean isStructure UA_BITFIELD(1); ///< strcture or not
  409. UA_Byte membersSize; ///< How many members does the type have?
  410. UA_DataTypeMember members[UA_MAX_TYPE_MEMBERS];
  411. };
  412. /**
  413. * Allocates and initializes a variable of type dataType
  414. *
  415. * @param dataType The datatype description
  416. * @return Returns the memory location of the variable or (void*)0 if no memory is available
  417. */
  418. void UA_EXPORT * UA_new(const UA_DataType *dataType);
  419. /**
  420. * Initializes a variable to default values
  421. *
  422. * @param p The memory location of the variable
  423. * @param dataType The datatype description
  424. */
  425. void UA_EXPORT UA_init(void *p, const UA_DataType *dataType);
  426. /**
  427. * Copies the content of two variables. If copying fails (e.g. because no memory was available for
  428. * an array), then dst is emptied and initialized to prevent memory leaks.
  429. *
  430. * @param src The memory location of the source variable
  431. * @param dst The memory location of the destination variable
  432. * @param dataType The datatype description
  433. * @return Indicates whether the operation succeeded or returns an error code
  434. */
  435. UA_StatusCode UA_EXPORT UA_copy(const void *src, void *dst, const UA_DataType *dataType);
  436. /**
  437. * Deletes the dynamically assigned content of a variable (e.g. a member-array). Afterwards, the
  438. * variable can be safely deleted without causing memory leaks. But the variable is not initialized
  439. * and may contain old data that is not memory-relevant.
  440. *
  441. * @param p The memory location of the variable
  442. * @param dataType The datatype description of the variable
  443. */
  444. void UA_EXPORT UA_deleteMembers(void *p, const UA_DataType *dataType);
  445. /**
  446. * Deletes (frees) a variable and all of its content.
  447. *
  448. * @param p The memory location of the variable
  449. * @param dataType The datatype description of the variable
  450. */
  451. void UA_EXPORT UA_delete(void *p, const UA_DataType *dataType);
  452. /********************/
  453. /* Array operations */
  454. /********************/
  455. #define MAX_ARRAY_SIZE 104857600 // arrays must be smaller than 100MB
  456. /**
  457. * Allocates and initializes an array of variables of a specific type
  458. *
  459. * @param dataType The datatype description
  460. * @return Returns the memory location of the variable or (void*)0 if no memory could be allocated
  461. */
  462. void UA_EXPORT * UA_Array_new(const UA_DataType *dataType, UA_Int32 noElements);
  463. /**
  464. * Allocates and copies an array. dst is set to (void*)0 if not enough memory is available.
  465. *
  466. * @param src The memory location of the souce array
  467. * @param dst The memory location where the pointer to the destination array is written
  468. * @param dataType The datatype of the array members
  469. * @param noElements The size of the array
  470. * @return Indicates whether the operation succeeded or returns an error code
  471. */
  472. UA_StatusCode UA_EXPORT UA_Array_copy(const void *src, void **dst, const UA_DataType *dataType, UA_Int32 noElements);
  473. /**
  474. * Deletes an array.
  475. *
  476. * @param src The memory location of the array
  477. * @param dataType The datatype of the array members
  478. * @param noElements The size of the array
  479. */
  480. void UA_EXPORT UA_Array_delete(void *p, const UA_DataType *dataType, UA_Int32 noElements);
  481. /** @} */
  482. #ifdef __cplusplus
  483. } // extern "C"
  484. #endif
  485. #endif /* UA_TYPES_H_ */