Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

241 lines
7.5KB

  1. /*
  2. * Carla common defines
  3. * Copyright (C) 2011-2014 Filipe Coelho <falktx@falktx.com>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation; either version 2 of
  8. * the License, or any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * For a full copy of the GNU General Public License see the doc/GPL.txt file.
  16. */
  17. #ifndef CARLA_DEFINES_HPP_INCLUDED
  18. #define CARLA_DEFINES_HPP_INCLUDED
  19. /* IDE Helper */
  20. #ifndef REAL_BUILD
  21. # include "config.h"
  22. #endif
  23. /* Set Version */
  24. #define CARLA_VERSION_HEX 0x01093
  25. #define CARLA_VERSION_STRING "1.9.3 (2.0-beta1)"
  26. /* Check OS */
  27. #if defined(WIN64) || defined(_WIN64) || defined(__WIN64__)
  28. # define CARLA_OS_WIN64
  29. #elif defined(WIN32) || defined(_WIN32) || defined(__WIN32__)
  30. # define CARLA_OS_WIN32
  31. #elif defined(__APPLE__)
  32. # define CARLA_OS_MAC
  33. #elif defined(__HAIKU__)
  34. # define CARLA_OS_HAIKU
  35. #elif defined(__linux__) || defined(__linux)
  36. # define CARLA_OS_LINUX
  37. #else
  38. # warning Unsupported platform!
  39. #endif
  40. #if defined(CARLA_OS_WIN32) || defined(CARLA_OS_WIN64)
  41. # define CARLA_OS_WIN
  42. #elif ! defined(CARLA_OS_HAIKU)
  43. # define CARLA_OS_UNIX
  44. #endif
  45. /* Check for C++11 support */
  46. #if defined(HAVE_CPP11_SUPPORT)
  47. # define CARLA_PROPER_CPP11_SUPPORT
  48. #elif defined(__GNUC__) && defined(__cplusplus)
  49. # if (__cplusplus >= 201103L || defined(__GXX_EXPERIMENTAL_CXX0X__)) && (__GNUC__ * 100 + __GNUC_MINOR__) >= 405
  50. # define CARLA_PROPER_CPP11_SUPPORT
  51. # if (__GNUC__ * 100 + __GNUC_MINOR__) < 407
  52. # define override // gcc4.7+ only
  53. # define final // gcc4.7+ only
  54. # endif
  55. # endif
  56. #endif
  57. #if defined(__cplusplus) && !defined(CARLA_PROPER_CPP11_SUPPORT)
  58. # ifndef __clang__
  59. # define noexcept throw()
  60. # else
  61. # define noexcept
  62. # endif
  63. # define override
  64. # define final
  65. # define nullptr (0)
  66. #endif
  67. /* Common includes */
  68. #ifdef __cplusplus
  69. # include <cstddef>
  70. #else
  71. # include <stdbool.h>
  72. # include <stddef.h>
  73. #endif
  74. /* Define various string format types */
  75. #if defined(CARLA_OS_WIN64)
  76. # define P_INT64 "%I64i"
  77. # define P_INTPTR "%I64i"
  78. # define P_UINTPTR "%I64x"
  79. # define P_SIZE "%I64u"
  80. #elif defined(CARLA_OS_WIN32)
  81. # define P_INT64 "%I64i"
  82. # define P_INTPTR "%i"
  83. # define P_UINTPTR "%x"
  84. # define P_SIZE "%u"
  85. #elif defined(__WORDSIZE) && __WORDSIZE == 64
  86. # define P_INT64 "%li"
  87. # define P_INTPTR "%li"
  88. # define P_UINTPTR "%lx"
  89. # define P_SIZE "%lu"
  90. #else
  91. # define P_INT64 "%lli"
  92. # define P_INTPTR "%i"
  93. # define P_UINTPTR "%x"
  94. # define P_SIZE "%u"
  95. #endif
  96. /* Define BINARY_NATIVE */
  97. #if defined(CARLA_OS_HAIKU) || defined(CARLA_OS_UNIX)
  98. # if defined (__LP64__) || defined (_LP64)
  99. # define BINARY_NATIVE BINARY_POSIX64
  100. # else
  101. # define BINARY_NATIVE BINARY_POSIX32
  102. # endif
  103. #elif defined(CARLA_OS_WIN)
  104. # ifdef CARLA_OS_WIN64
  105. # define BINARY_NATIVE BINARY_WIN64
  106. # else
  107. # define BINARY_NATIVE BINARY_WIN32
  108. # endif
  109. #else
  110. # warning Unknown binary native
  111. # define BINARY_NATIVE BINARY_OTHER
  112. #endif
  113. /* Define CARLA_ASSERT* */
  114. #if defined(CARLA_NO_ASSERTS)
  115. # define CARLA_ASSERT(cond)
  116. # define CARLA_ASSERT_INT(cond, value)
  117. # define CARLA_ASSERT_INT2(cond, v1, v2)
  118. #elif defined(NDEBUG)
  119. # define CARLA_ASSERT CARLA_SAFE_ASSERT
  120. # define CARLA_ASSERT_INT CARLA_SAFE_ASSERT_INT
  121. # define CARLA_ASSERT_INT2 CARLA_SAFE_ASSERT_INT2
  122. #else
  123. # define CARLA_ASSERT(cond) assert(cond)
  124. # define CARLA_ASSERT_INT(cond, value) assert(cond)
  125. # define CARLA_ASSERT_INT2(cond, v1, v2) assert(cond)
  126. #endif
  127. /* Define CARLA_SAFE_ASSERT* */
  128. #define CARLA_SAFE_ASSERT(cond) if (cond) pass(); else carla_safe_assert (#cond, __FILE__, __LINE__);
  129. #define CARLA_SAFE_ASSERT_INT(cond, value) if (cond) pass(); else carla_safe_assert_int (#cond, __FILE__, __LINE__, static_cast<int>(value));
  130. #define CARLA_SAFE_ASSERT_INT2(cond, v1, v2) if (cond) pass(); else carla_safe_assert_int2 (#cond, __FILE__, __LINE__, static_cast<int>(v1), static_cast<int>(v2));
  131. #define CARLA_SAFE_ASSERT_UINT(cond, value) if (cond) pass(); else carla_safe_assert_uint (#cond, __FILE__, __LINE__, static_cast<uint>(value));
  132. #define CARLA_SAFE_ASSERT_UINT2(cond, v1, v2) if (cond) pass(); else carla_safe_assert_uint2(#cond, __FILE__, __LINE__, static_cast<uint>(v1), static_cast<uint>(v2));
  133. #define CARLA_SAFE_ASSERT_BREAK(cond) if (cond) pass(); else { carla_safe_assert(#cond, __FILE__, __LINE__); break; }
  134. #define CARLA_SAFE_ASSERT_CONTINUE(cond) if (cond) pass(); else { carla_safe_assert(#cond, __FILE__, __LINE__); continue; }
  135. #define CARLA_SAFE_ASSERT_RETURN(cond, ret) if (cond) pass(); else { carla_safe_assert(#cond, __FILE__, __LINE__); return ret; }
  136. /* Define CARLA_SAFE_EXCEPTION */
  137. #define CARLA_SAFE_EXCEPTION(msg, aftercode) catch(...) { carla_safe_exception(msg, __FILE__, __LINE__); aftercode }
  138. /* Define CARLA_DECLARE_NON_COPY_CLASS */
  139. #ifdef CARLA_PROPER_CPP11_SUPPORT
  140. # define CARLA_DECLARE_NON_COPY_CLASS(ClassName) \
  141. private: \
  142. ClassName(ClassName&) = delete; \
  143. ClassName(const ClassName&) = delete; \
  144. ClassName& operator=(ClassName&) = delete; \
  145. ClassName& operator=(const ClassName&) = delete;
  146. #else
  147. # define CARLA_DECLARE_NON_COPY_CLASS(ClassName) \
  148. private: \
  149. ClassName(ClassName&); \
  150. ClassName(const ClassName&); \
  151. ClassName& operator=(ClassName&); \
  152. ClassName& operator=(const ClassName&);
  153. #endif
  154. /* Define CARLA_DECLARE_NON_COPY_STRUCT */
  155. #ifdef CARLA_PROPER_CPP11_SUPPORT
  156. # define CARLA_DECLARE_NON_COPY_STRUCT(StructName) \
  157. StructName(StructName&) = delete; \
  158. StructName(const StructName&) = delete; \
  159. StructName& operator=(StructName&) = delete; \
  160. StructName& operator=(const StructName&) = delete;
  161. #else
  162. # define CARLA_DECLARE_NON_COPY_STRUCT(StructName)
  163. #endif
  164. /* Define CARLA_PREVENT_HEAP_ALLOCATION */
  165. #ifdef CARLA_PROPER_CPP11_SUPPORT
  166. # define CARLA_PREVENT_HEAP_ALLOCATION \
  167. private: \
  168. static void* operator new(size_t) = delete; \
  169. static void operator delete(void*) = delete;
  170. #else
  171. # define CARLA_PREVENT_HEAP_ALLOCATION \
  172. private: \
  173. static void* operator new(size_t); \
  174. static void operator delete(void*);
  175. #endif
  176. /* Define EXTERN_C */
  177. #ifdef __cplusplus
  178. # define EXTERN_C extern "C"
  179. #else
  180. # define EXTERN_C
  181. #endif
  182. /* Define CARLA_EXPORT */
  183. #ifdef BUILD_BRIDGE
  184. # define CARLA_EXPORT EXTERN_C
  185. #else
  186. # if defined(CARLA_OS_WIN) && ! defined(__WINE__)
  187. # define CARLA_EXPORT EXTERN_C __declspec (dllexport)
  188. # else
  189. # define CARLA_EXPORT EXTERN_C __attribute__ ((visibility("default")))
  190. # endif
  191. #endif
  192. /* Define PRE/POST_PACKED_STRUCTURE */
  193. #if defined(__GNUC__)
  194. # define PRE_PACKED_STRUCTURE
  195. # define POST_PACKED_STRUCTURE __attribute__((__packed__))
  196. #elif defined(_MSC_VER)
  197. # define PRE_PACKED_STRUCTURE1 __pragma(pack(push,1))
  198. # define PRE_PACKED_STRUCTURE PRE_PACKED_STRUCTURE1
  199. # define POST_PACKED_STRUCTURE ;__pragma(pack(pop))
  200. #else
  201. # define PRE_PACKED_STRUCTURE
  202. # define POST_PACKED_STRUCTURE
  203. #endif
  204. /* Define OS_SEP */
  205. #ifdef CARLA_OS_WIN
  206. # define OS_SEP '\\'
  207. # define OS_SEP_STR "\\"
  208. #else
  209. # define OS_SEP '/'
  210. # define OS_SEP_STR "/"
  211. #endif
  212. /* Useful typedefs */
  213. typedef unsigned char uchar;
  214. typedef unsigned long int ulong;
  215. typedef unsigned short int ushort;
  216. typedef unsigned int uint;
  217. #endif /* CARLA_DEFINES_HPP_INCLUDED */