ua_config.h.in 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. /*
  2. * Copyright (C) 2013-2015 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_CONFIG_H_
  16. #define UA_CONFIG_H_
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. /**
  21. * Library Version
  22. * --------------- */
  23. #define UA_OPEN62541_VER_MAJOR ${OPEN62541_VER_MAJOR}
  24. #define UA_OPEN62541_VER_MINOR ${OPEN62541_VER_MINOR}
  25. #define UA_OPEN62541_VER_PATCH ${OPEN62541_VER_PATCH}
  26. #define UA_OPEN62541_VER_LABEL "${OPEN62541_VER_LABEL}" /* Release candidate label, etc. */
  27. #define UA_OPEN62541_VER_COMMIT "${OPEN62541_VER_COMMIT}"
  28. /**
  29. * Options
  30. * ------- */
  31. #define UA_LOGLEVEL ${UA_LOGLEVEL}
  32. #cmakedefine UA_ENABLE_METHODCALLS
  33. #cmakedefine UA_ENABLE_NODEMANAGEMENT
  34. #cmakedefine UA_ENABLE_SUBSCRIPTIONS
  35. #cmakedefine UA_ENABLE_MULTITHREADING
  36. /**
  37. * Advanced Options
  38. * ---------------- */
  39. #cmakedefine UA_ENABLE_STATUSCODE_DESCRIPTIONS
  40. #cmakedefine UA_ENABLE_TYPENAMES
  41. #cmakedefine UA_ENABLE_EMBEDDED_LIBC
  42. #cmakedefine UA_ENABLE_DETERMINISTIC_RNG
  43. #cmakedefine UA_ENABLE_GENERATE_NAMESPACE0
  44. #cmakedefine UA_ENABLE_EXTERNAL_NAMESPACES
  45. #cmakedefine UA_ENABLE_NONSTANDARD_STATELESS
  46. #cmakedefine UA_ENABLE_NONSTANDARD_UDP
  47. /**
  48. * Standard Includes
  49. * ----------------- */
  50. #ifndef _XOPEN_SOURCE
  51. # define _XOPEN_SOURCE 500
  52. #endif
  53. #ifndef _DEFAULT_SOURCE
  54. # define _DEFAULT_SOURCE
  55. #endif
  56. #include <stddef.h>
  57. #include "ms_stdint.h" /* Includes stdint.h or workaround for older Visual Studios */
  58. #ifndef __cplusplus
  59. # include <stdbool.h> /* C99 Boolean */
  60. /* Manual Boolean:
  61. typedef uint8_t bool;
  62. #define true 1
  63. #define false 0 */
  64. #endif
  65. /* Manually define some function on libc */
  66. #ifndef UA_ENABLE_EMBEDDED_LIBC
  67. # include <string.h>
  68. #else
  69. void *memcpy(void *UA_RESTRICT dest, const void *UA_RESTRICT src, size_t n);
  70. void *memset(void *dest, int c, size_t n);
  71. size_t strlen(const char *s);
  72. int memcmp(const void *vl, const void *vr, size_t n);
  73. #endif
  74. /* Memory Management */
  75. #include <stdlib.h>
  76. #ifdef _WIN32
  77. # ifndef __clang__
  78. # include <malloc.h>
  79. # endif
  80. #endif
  81. #define UA_free(ptr) free(ptr)
  82. #define UA_malloc(size) malloc(size)
  83. #define UA_calloc(num, size) calloc(num, size)
  84. #define UA_realloc(ptr, size) realloc(ptr, size)
  85. #ifndef NO_ALLOCA
  86. # if defined(__GNUC__) || defined(__clang__)
  87. # define UA_alloca(size) __builtin_alloca (size)
  88. # elif defined(_WIN32)
  89. # define UA_alloca(SIZE) _alloca(SIZE)
  90. # else
  91. # include <alloca.h>
  92. # define UA_alloca(SIZE) alloca(SIZE)
  93. # endif
  94. #endif
  95. /**
  96. * Function Export
  97. * ---------------
  98. * On Win32: Define ``UA_DYNAMIC_LINKING`` and ``UA_DYNAMIC_LINKING_EXPORT`` in
  99. * order to export symbols for a DLL. Define ``UA_DYNAMIC_LINKING`` only to
  100. * import symbols from a DLL.*/
  101. #cmakedefine UA_DYNAMIC_LINKING
  102. #if defined(_WIN32) && defined(UA_DYNAMIC_LINKING)
  103. # ifdef UA_DYNAMIC_LINKING_EXPORT /* export dll */
  104. # ifdef __GNUC__
  105. # define UA_EXPORT __attribute__ ((dllexport))
  106. # else
  107. # define UA_EXPORT __declspec(dllexport)
  108. # endif
  109. # else /* import dll */
  110. # ifdef __GNUC__
  111. # define UA_EXPORT __attribute__ ((dllimport))
  112. # else
  113. # define UA_EXPORT __declspec(dllimport)
  114. # endif
  115. # endif
  116. #else /* non win32 */
  117. # if __GNUC__ || __clang__
  118. # define UA_EXPORT __attribute__ ((visibility ("default")))
  119. # endif
  120. #endif
  121. #ifndef UA_EXPORT
  122. # define UA_EXPORT /* fallback to default */
  123. #endif
  124. /**
  125. * Inline Functions
  126. * ---------------- */
  127. #ifdef _MSC_VER
  128. # define UA_INLINE __inline
  129. #else
  130. # define UA_INLINE inline
  131. #endif
  132. /**
  133. * Non-aliasing pointers
  134. * -------------------- */
  135. #ifdef _MSC_VER
  136. # define UA_RESTRICT __restrict
  137. #elif defined(__GNUC__)
  138. # define UA_RESTRICT __restrict__
  139. #else
  140. # define UA_RESTRICT restrict
  141. #endif
  142. /**
  143. * Function attributes
  144. * ------------------- */
  145. #ifdef __GNUC__
  146. # define UA_FUNC_ATTR_MALLOC __attribute__((malloc))
  147. # define UA_FUNC_ATTR_PURE __attribute__ ((pure))
  148. # define UA_FUNC_ATTR_CONST __attribute__((const))
  149. # define UA_FUNC_ATTR_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
  150. #else
  151. # define UA_FUNC_ATTR_MALLOC
  152. # define UA_FUNC_ATTR_PURE
  153. # define UA_FUNC_ATTR_CONST
  154. # define UA_FUNC_ATTR_WARN_UNUSED_RESULT
  155. #endif
  156. /**
  157. * Binary Encoding Overlays
  158. * ------------------------
  159. * Integers and floating point numbers are transmitted in little-endian (IEE 754
  160. * for floating point) encoding. If the target architecture uses the same
  161. * format, numeral datatypes can be memcpy'd (overlayed) on the binary stream.
  162. * This speeds up encoding.
  163. *
  164. * Integer Endianness
  165. * ^^^^^^^^^^^^^^^^^^ */
  166. #if defined(_WIN32) || (defined(__BYTE_ORDER__) && defined(__ORDER_LITTLE_ENDIAN__) && \
  167. (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__))
  168. # define UA_BINARY_OVERLAYABLE_INTEGER true
  169. #elif defined(__ANDROID__) /* Andoid */
  170. # include <endian.h>
  171. # if __BYTE_ORDER == __LITTLE_ENDIAN
  172. # define UA_BINARY_OVERLAYABLE_INTEGER true
  173. # endif
  174. #elif defined(__linux__) /* Linux */
  175. # include <endian.h>
  176. # if __BYTE_ORDER == __LITTLE_ENDIAN
  177. # define UA_BINARY_OVERLAYABLE_INTEGER true
  178. # endif
  179. # if __FLOAT_BYTE_ORDER == __LITTLE_ENDIAN
  180. # define UA_BINARY_OVERLAYABLE_FLOAT true
  181. # endif
  182. #elif defined(__OpenBSD__) /* OpenBSD */
  183. # include <sys/endian.h>
  184. # if BYTE_ORDER == LITTLE_ENDIAN
  185. # define UA_BINARY_OVERLAYABLE_INTEGER true
  186. # endif
  187. #elif defined(__NetBSD__) || defined(__FreeBSD__) || defined(__DragonFly__) /* Other BSD */
  188. # include <sys/endian.h>
  189. # if _BYTE_ORDER == _LITTLE_ENDIAN
  190. # define UA_BINARY_OVERLAYABLE_INTEGER true
  191. # endif
  192. #elif defined(__APPLE__) /* Apple (MacOS, iOS) */
  193. # include <libkern/OSByteOrder.h>
  194. # if defined(__LITTLE_ENDIAN__)
  195. # define UA_BINARY_OVERLAYABLE_INTEGER true
  196. # endif
  197. #elif defined(__QNX__) || defined(__QNXNTO__) /* QNX */
  198. # include <gulliver.h>
  199. # if defined(__LITTLEENDIAN__)
  200. # define UA_BINARY_OVERLAYABLE_INTEGER true
  201. # endif
  202. #endif
  203. #ifndef UA_BINARY_OVERLAYABLE_INTEGER
  204. # define UA_BINARY_OVERLAYABLE_INTEGER false
  205. #endif
  206. /**
  207. * Float Endianness
  208. * ^^^^^^^^^^^^^^^^ */
  209. #if defined(_WIN32)
  210. # define UA_BINARY_OVERLAYABLE_FLOAT true
  211. #elif defined(__FLOAT_WORD_ORDER__) && defined(__ORDER_LITTLE_ENDIAN__) && \
  212. (__FLOAT_WORD_ORDER__ == __ORDER_LITTLE_ENDIAN__) /* Defined only in GCC */
  213. # define UA_BINARY_OVERLAYABLE_FLOAT true
  214. #elif defined(__FLOAT_WORD_ORDER) && defined(__LITTLE_ENDIAN) && \
  215. (__FLOAT_WORD_ORDER == __LITTLE_ENDIAN) /* Defined only in GCC */
  216. # define UA_BINARY_OVERLAYABLE_FLOAT true
  217. #endif
  218. #ifndef UA_BINARY_OVERLAYABLE_FLOAT
  219. # define UA_BINARY_OVERLAYABLE_FLOAT false
  220. #endif
  221. #ifdef __cplusplus
  222. } // extern "C"
  223. #endif
  224. #endif /* UA_CONFIG_H_ */