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.

229 lines
5.2KB

  1. #pragma once
  2. // Include most of the C stdlib for convenience
  3. #include <cstddef>
  4. #include <cstdlib>
  5. #include <cstdio>
  6. #include <cstdint>
  7. #include <cinttypes>
  8. #include <cstdarg>
  9. #include <climits>
  10. #include <cmath>
  11. #include <cstring>
  12. #include <cassert>
  13. // Include some of the C++ stdlib for convenience
  14. #include <string>
  15. #include <stdexcept>
  16. #include <logger.hpp>
  17. namespace rack {
  18. /** Attribute for deprecated functions and symbols.
  19. E.g.
  20. DEPRECATED void foo();
  21. */
  22. #if defined(__GNUC__) || defined(__clang__)
  23. #define DEPRECATED __attribute__ ((deprecated))
  24. #elif defined(_MSC_VER)
  25. #define DEPRECATED __declspec(deprecated)
  26. #endif
  27. /** Attribute for private functions and symbols not intended to be used by plugins.
  28. By default this does nothing, but when #including rack.hpp, it prints a compile-time warning.
  29. */
  30. #define PRIVATE
  31. /** Concatenates two literals or two macros
  32. Example:
  33. #define COUNT 42
  34. CONCAT(myVariable, COUNT)
  35. expands to
  36. myVariable42
  37. */
  38. #define CONCAT_LITERAL(x, y) x ## y
  39. #define CONCAT(x, y) CONCAT_LITERAL(x, y)
  40. /** Surrounds raw text with quotes
  41. Example:
  42. #define NAME "world"
  43. printf("Hello " TOSTRING(NAME))
  44. expands to
  45. printf("Hello " "world")
  46. and of course the C++ lexer/parser then concatenates the string literals.
  47. */
  48. #define TOSTRING_LITERAL(x) #x
  49. #define TOSTRING(x) TOSTRING_LITERAL(x)
  50. /** Produces the length of a static array in number of elements */
  51. #define LENGTHOF(arr) (sizeof(arr) / sizeof((arr)[0]))
  52. /** Reserve space for `count` enums starting with `name`.
  53. Example:
  54. enum Foo {
  55. ENUMS(BAR, 14),
  56. BAZ
  57. };
  58. `BAR + 0` to `BAR + 13` is reserved. `BAZ` has a value of 14.
  59. */
  60. #define ENUMS(name, count) name, name ## _LAST = name + (count) - 1
  61. /** References binary files compiled into the program.
  62. For example, to include a file "Test.dat" directly into your program binary, add
  63. BINARIES += Test.dat
  64. to your Makefile and declare
  65. BINARY(Test_dat);
  66. at the root of a .c or .cpp source file. Note that special characters are replaced with "_". Then use
  67. BINARY_START(Test_dat)
  68. BINARY_END(Test_dat)
  69. to reference the data beginning and end as a void* array, and
  70. BINARY_SIZE(Test_dat)
  71. to get its size in bytes.
  72. */
  73. #if defined ARCH_MAC
  74. // Use output from `xxd -i`
  75. #define BINARY(sym) extern unsigned char sym[]; extern unsigned int sym##_len
  76. #define BINARY_START(sym) ((const void*) sym)
  77. #define BINARY_END(sym) ((const void*) sym + sym##_len)
  78. #define BINARY_SIZE(sym) (sym##_len)
  79. #else
  80. #define BINARY(sym) extern char _binary_##sym##_start, _binary_##sym##_end, _binary_##sym##_size
  81. #define BINARY_START(sym) ((const void*) &_binary_##sym##_start)
  82. #define BINARY_END(sym) ((const void*) &_binary_##sym##_end)
  83. // The symbol "_binary_##sym##_size" doesn't seem to be valid after a plugin is dynamically loaded, so simply take the difference between the two addresses.
  84. #define BINARY_SIZE(sym) ((size_t) (&_binary_##sym##_end - &_binary_##sym##_start))
  85. #endif
  86. /** C#-style property constructor
  87. Example:
  88. Foo *foo = construct<Foo>(&Foo::greeting, "Hello world", &Foo::legs, 2);
  89. */
  90. template <typename T>
  91. T* construct() {
  92. return new T;
  93. }
  94. template <typename T, typename F, typename V, typename... Args>
  95. T* construct(F f, V v, Args... args) {
  96. T* o = construct<T>(args...);
  97. o->*f = v;
  98. return o;
  99. }
  100. /** Defers code until the scope is destructed
  101. From http://www.gingerbill.org/article/defer-in-cpp.html
  102. Example:
  103. file = fopen(...);
  104. DEFER({
  105. fclose(file);
  106. });
  107. */
  108. template <typename F>
  109. struct DeferWrapper {
  110. F f;
  111. DeferWrapper(F f) : f(f) {}
  112. ~DeferWrapper() {
  113. f();
  114. }
  115. };
  116. template <typename F>
  117. DeferWrapper<F> deferWrapper(F f) {
  118. return DeferWrapper<F>(f);
  119. }
  120. #define DEFER(code) auto CONCAT(_defer_, __COUNTER__) = rack::deferWrapper([&]() code)
  121. /** An exception explicitly thrown by Rack or a Rack plugin.
  122. Can be subclassed to throw/catch specific custom exceptions.
  123. */
  124. struct Exception : std::exception {
  125. std::string msg;
  126. Exception(const std::string& msg) : msg(msg) {}
  127. const char* what() const noexcept override {
  128. return msg.c_str();
  129. }
  130. };
  131. /** Given a std::map, returns the value of the given key, or returns `def` if the key doesn't exist.
  132. Does *not* add the default value to the map.
  133. Posted to https://stackoverflow.com/a/63683271/272642.
  134. Example:
  135. std::map<std::string, int> m;
  136. int v = get(m, "a", 3);
  137. // v is 3 because the key "a" does not exist
  138. int w = get(m, "a");
  139. // w is 0 because no default value is given, so it assumes the default int.
  140. */
  141. template <typename C>
  142. typename C::mapped_type get(const C& m, const typename C::key_type& key, const typename C::mapped_type& def = typename C::mapped_type()) {
  143. typename C::const_iterator it = m.find(key);
  144. if (it == m.end())
  145. return def;
  146. return it->second;
  147. }
  148. // config
  149. extern const std::string APP_NAME;
  150. extern const std::string APP_VERSION;
  151. extern const std::string APP_ARCH;
  152. extern const std::string ABI_VERSION;
  153. extern const std::string API_URL;
  154. extern const std::string API_VERSION;
  155. } // namespace rack
  156. #if defined ARCH_WIN
  157. // wchar_t on Windows should be 2 bytes
  158. static_assert(sizeof(wchar_t) == 2);
  159. // Windows C standard functions are ASCII-8 instead of UTF-8, so redirect these functions to wrappers which convert to UTF-8
  160. #define fopen fopen_u8
  161. extern "C" {
  162. FILE* fopen_u8(const char* filename, const char* mode);
  163. }
  164. namespace std {
  165. using ::fopen_u8;
  166. }
  167. #endif