ua_util.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. #ifndef UA_UTIL_H_
  2. #define UA_UTIL_H_
  3. #ifndef UA_AMALGAMATE
  4. # include "ua_config.h"
  5. #endif
  6. #ifndef __USE_POSIX
  7. # define __USE_POSIX
  8. #endif
  9. #ifndef _POSIX_SOURCE
  10. # define _POSIX_SOURCE
  11. #endif
  12. #ifndef _POSIX_C_SOURCE
  13. # define _POSIX_C_SOURCE 199309L
  14. #endif
  15. #ifndef _BSD_SOURCE
  16. # define _BSD_SOURCE
  17. #endif
  18. #ifndef _DEFAULT_SOURCE
  19. # define _DEFAULT_SOURCE
  20. #endif
  21. /*********************/
  22. /* Memory Management */
  23. /*********************/
  24. #include <stdlib.h> // malloc, free
  25. #include <string.h> // memcpy
  26. #include <assert.h> // assert
  27. #ifdef _WIN32
  28. # include <malloc.h>
  29. #endif
  30. /* Visual Studio needs __restrict */
  31. #ifdef _MSC_VER
  32. #define UA_RESTRICT __restrict
  33. #else
  34. #define UA_RESTRICT restrict
  35. #endif
  36. #define UA_NULL ((void *)0)
  37. // subtract from nodeids to get from the encoding to the content
  38. #define UA_ENCODINGOFFSET_XML 1
  39. #define UA_ENCODINGOFFSET_BINARY 2
  40. #define UA_assert(ignore) assert(ignore)
  41. /* Replace the macros with functions for custom allocators if necessary */
  42. #ifdef MATLAB_MEX_FILE /* Is this file being compiled as a MEX-file? */
  43. #define UA_free(ptr) mxFree(ptr)
  44. #define UA_malloc(size) mxMalloc(size)
  45. #define UA_calloc(num, size) mxCalloc(num, size)
  46. #define UA_realloc(ptr, size) mxRealloc(ptr, size)
  47. #else
  48. #define UA_free(ptr) free(ptr)
  49. #define UA_malloc(size) malloc(size)
  50. #define UA_calloc(num, size) calloc(num, size)
  51. #define UA_realloc(ptr, size) realloc(ptr, size)
  52. #endif
  53. #define UA_memcpy(dst, src, size) memcpy(dst, src, size)
  54. #define UA_memset(ptr, value, size) memset(ptr, value, size)
  55. #ifdef NO_ALLOCA
  56. #else
  57. #ifdef _WIN32
  58. # define UA_alloca(SIZE) _alloca(SIZE)
  59. #else
  60. #ifdef __GNUC__
  61. # define UA_alloca(size) __builtin_alloca (size)
  62. #else
  63. # include <alloca.h>
  64. # define UA_alloca(SIZE) alloca(SIZE)
  65. #endif
  66. #endif
  67. #endif /* NO_ALLOCA */
  68. /********************/
  69. /* System Libraries */
  70. /********************/
  71. #include <stdarg.h> // va_start, va_end
  72. #include <time.h>
  73. #include <stdio.h> // printf
  74. #include <inttypes.h>
  75. #ifdef _WIN32
  76. # include <winsock2.h> //needed for amalgation
  77. # include <windows.h>
  78. # undef SLIST_ENTRY
  79. # define RAND(SEED) (UA_UInt32)rand()
  80. #else
  81. # if !(defined htole16 && defined htole32 && defined htole64 && defined le16toh && defined le32toh && defined le64toh)
  82. # include <endian.h>
  83. # if !(defined htole16 && defined htole32 && defined htole64 && defined le16toh && defined le32toh && defined le64toh)
  84. # if ( __BYTE_ORDER != __LITTLE_ENDIAN )
  85. # error "Host byte order is not little-endian and no appropriate conversion functions are defined. (Have a look at ua_config.h)"
  86. # else
  87. # define htole16(x) x
  88. # define htole32(x) x
  89. # define htole64(x) x
  90. # define le16toh(x) x
  91. # define le32toh(x) x
  92. # define le64toh(x) x
  93. # endif
  94. # endif
  95. # endif
  96. # include <sys/time.h>
  97. # define RAND(SEED) (UA_UInt32)rand_r(SEED)
  98. #endif
  99. /*************************/
  100. /* External Dependencies */
  101. /*************************/
  102. #ifndef UA_AMALGAMATE
  103. # include "queue.h"
  104. #endif
  105. #ifdef UA_MULTITHREADING
  106. # define _LGPL_SOURCE
  107. # include <urcu.h>
  108. # include <urcu/wfcqueue.h>
  109. # include <urcu/compiler.h> // for caa_container_of
  110. # include <urcu/uatomic.h>
  111. # include <urcu/rculfhash.h>
  112. #include <urcu/lfstack.h>
  113. #endif
  114. #endif /* UA_UTIL_H_ */