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.

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