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.

389 lines
11KB

  1. /*
  2. * Carla Plugin
  3. * Copyright (C) 2011-2018 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_PLUGIN_INTERNAL_HPP_INCLUDED
  18. #define CARLA_PLUGIN_INTERNAL_HPP_INCLUDED
  19. #include "CarlaPlugin.hpp"
  20. #include "CarlaLibUtils.hpp"
  21. #include "CarlaStateUtils.hpp"
  22. #include "CarlaMIDI.h"
  23. #include "CarlaMutex.hpp"
  24. #include "CarlaString.hpp"
  25. #include "RtLinkedList.hpp"
  26. CARLA_BACKEND_START_NAMESPACE
  27. // -----------------------------------------------------------------------
  28. // Engine helper macro, sets lastError and returns false/NULL
  29. #define CARLA_SAFE_ASSERT_RETURN_ERR(cond, err) if (! (cond)) { carla_safe_assert(#cond, __FILE__, __LINE__); pData->engine->setLastError(err); return false; }
  30. #define CARLA_SAFE_ASSERT_RETURN_ERRN(cond, err) if (! (cond)) { carla_safe_assert(#cond, __FILE__, __LINE__); pData->engine->setLastError(err); return nullptr; }
  31. #define CARLA_SAFE_EXCEPTION_RETURN_ERR(excptMsg, errMsg) catch(...) { carla_safe_exception(excptMsg, __FILE__, __LINE__); pData->engine->setLastError(errMsg); return false; }
  32. #define CARLA_SAFE_EXCEPTION_RETURN_ERRN(excptMsg, errMsg) catch(...) { carla_safe_exception(excptMsg, __FILE__, __LINE__); pData->engine->setLastError(errMsg); return nullptr; }
  33. // -----------------------------------------------------------------------
  34. // Maximum pre-allocated events for some plugin types
  35. const ushort kPluginMaxMidiEvents = 512;
  36. // -----------------------------------------------------------------------
  37. // Extra plugin hints, hidden from backend
  38. const uint PLUGIN_EXTRA_HINT_HAS_MIDI_IN = 0x01;
  39. const uint PLUGIN_EXTRA_HINT_HAS_MIDI_OUT = 0x02;
  40. const uint PLUGIN_EXTRA_HINT_CAN_RUN_RACK = 0x04;
  41. // -----------------------------------------------------------------------
  42. // Special parameters
  43. enum SpecialParameterType {
  44. PARAMETER_SPECIAL_NULL = 0,
  45. PARAMETER_SPECIAL_FREEWHEEL = 1,
  46. PARAMETER_SPECIAL_LATENCY = 2,
  47. PARAMETER_SPECIAL_SAMPLE_RATE = 3,
  48. PARAMETER_SPECIAL_TIME = 4
  49. };
  50. // -----------------------------------------------------------------------
  51. /*!
  52. * Post-RT event type.
  53. * These are events postponned from within the process function,
  54. *
  55. * During process, we cannot lock, allocate memory or do UI stuff,
  56. * so events have to be postponned to be executed later, on a separate thread.
  57. * @see PluginPostRtEvent
  58. */
  59. enum PluginPostRtEventType {
  60. kPluginPostRtEventNull = 0,
  61. kPluginPostRtEventDebug,
  62. kPluginPostRtEventParameterChange, // param, SP (*), value (SP: if 1 only report change to UI, don't report to Callback and OSC)
  63. kPluginPostRtEventProgramChange, // index
  64. kPluginPostRtEventMidiProgramChange, // index
  65. kPluginPostRtEventNoteOn, // channel, note, velo
  66. kPluginPostRtEventNoteOff // channel, note
  67. };
  68. /*!
  69. * A Post-RT event.
  70. * @see PluginPostRtEventType
  71. */
  72. struct PluginPostRtEvent {
  73. PluginPostRtEventType type;
  74. int32_t value1;
  75. int32_t value2;
  76. float value3;
  77. };
  78. // -----------------------------------------------------------------------
  79. struct ExternalMidiNote {
  80. int8_t channel; // invalid if -1
  81. uint8_t note; // 0 to 127
  82. uint8_t velo; // 1 to 127, 0 for note-off
  83. };
  84. // -----------------------------------------------------------------------
  85. struct PluginAudioPort {
  86. uint32_t rindex;
  87. CarlaEngineAudioPort* port;
  88. };
  89. struct PluginAudioData {
  90. uint32_t count;
  91. PluginAudioPort* ports;
  92. PluginAudioData() noexcept;
  93. ~PluginAudioData() noexcept;
  94. void createNew(const uint32_t newCount);
  95. void clear() noexcept;
  96. void initBuffers() const noexcept;
  97. CARLA_DECLARE_NON_COPY_STRUCT(PluginAudioData)
  98. };
  99. // -----------------------------------------------------------------------
  100. struct PluginCVPort {
  101. uint32_t rindex;
  102. //uint32_t param; // FIXME is this needed?
  103. CarlaEngineCVPort* port;
  104. };
  105. struct PluginCVData {
  106. uint32_t count;
  107. PluginCVPort* ports;
  108. PluginCVData() noexcept;
  109. ~PluginCVData() noexcept;
  110. void createNew(const uint32_t newCount);
  111. void clear() noexcept;
  112. void initBuffers() const noexcept;
  113. CARLA_DECLARE_NON_COPY_STRUCT(PluginCVData)
  114. };
  115. // -----------------------------------------------------------------------
  116. struct PluginEventData {
  117. CarlaEngineEventPort* portIn;
  118. CarlaEngineEventPort* portOut;
  119. PluginEventData() noexcept;
  120. ~PluginEventData() noexcept;
  121. void clear() noexcept;
  122. void initBuffers() const noexcept;
  123. CARLA_DECLARE_NON_COPY_STRUCT(PluginEventData)
  124. };
  125. // -----------------------------------------------------------------------
  126. struct PluginParameterData {
  127. uint32_t count;
  128. ParameterData* data;
  129. ParameterRanges* ranges;
  130. SpecialParameterType* special;
  131. PluginParameterData() noexcept;
  132. ~PluginParameterData() noexcept;
  133. void createNew(const uint32_t newCount, const bool withSpecial);
  134. void clear() noexcept;
  135. float getFixedValue(const uint32_t parameterId, const float& value) const noexcept;
  136. CARLA_DECLARE_NON_COPY_STRUCT(PluginParameterData)
  137. };
  138. // -----------------------------------------------------------------------
  139. typedef const char* ProgramName;
  140. struct PluginProgramData {
  141. uint32_t count;
  142. int32_t current;
  143. ProgramName* names;
  144. PluginProgramData() noexcept;
  145. ~PluginProgramData() noexcept;
  146. void createNew(const uint32_t newCount);
  147. void clear() noexcept;
  148. CARLA_DECLARE_NON_COPY_STRUCT(PluginProgramData)
  149. };
  150. // -----------------------------------------------------------------------
  151. struct PluginMidiProgramData {
  152. uint32_t count;
  153. int32_t current;
  154. MidiProgramData* data;
  155. PluginMidiProgramData() noexcept;
  156. ~PluginMidiProgramData() noexcept;
  157. void createNew(const uint32_t newCount);
  158. void clear() noexcept;
  159. const MidiProgramData& getCurrent() const noexcept;
  160. CARLA_DECLARE_NON_COPY_STRUCT(PluginMidiProgramData)
  161. };
  162. // -----------------------------------------------------------------------
  163. struct CarlaPlugin::ProtectedData {
  164. CarlaEngine* const engine;
  165. CarlaEngineClient* client;
  166. uint id;
  167. uint hints;
  168. uint options;
  169. uint32_t nodeId;
  170. bool active;
  171. bool enabled;
  172. bool needsReset;
  173. lib_t lib;
  174. lib_t uiLib;
  175. // misc
  176. int8_t ctrlChannel;
  177. uint extraHints;
  178. #ifndef BUILD_BRIDGE
  179. uint transientTryCounter;
  180. bool transientFirstTry;
  181. #endif
  182. // data 1
  183. const char* name;
  184. const char* filename;
  185. const char* iconName;
  186. // data 2
  187. PluginAudioData audioIn;
  188. PluginAudioData audioOut;
  189. PluginCVData cvIn;
  190. PluginCVData cvOut;
  191. PluginEventData event;
  192. PluginParameterData param;
  193. PluginProgramData prog;
  194. PluginMidiProgramData midiprog;
  195. LinkedList<CustomData> custom;
  196. CarlaMutex masterMutex; // global master lock
  197. CarlaMutex singleMutex; // small lock used only in processSingle()
  198. CarlaStateSave stateSave;
  199. struct ExternalNotes {
  200. CarlaMutex mutex;
  201. RtLinkedList<ExternalMidiNote>::Pool dataPool;
  202. RtLinkedList<ExternalMidiNote> data;
  203. ExternalNotes() noexcept;
  204. ~ExternalNotes() noexcept;
  205. void appendNonRT(const ExternalMidiNote& note) noexcept;
  206. void clear() noexcept;
  207. CARLA_DECLARE_NON_COPY_STRUCT(ExternalNotes)
  208. } extNotes;
  209. struct Latency {
  210. uint32_t frames;
  211. #ifndef BUILD_BRIDGE
  212. uint32_t channels;
  213. float** buffers;
  214. #endif
  215. Latency() noexcept;
  216. #ifndef BUILD_BRIDGE
  217. ~Latency() noexcept;
  218. void clearBuffers() noexcept;
  219. void recreateBuffers(const uint32_t newChannels, const uint32_t newFrames);
  220. #endif
  221. CARLA_DECLARE_NON_COPY_STRUCT(Latency)
  222. } latency;
  223. struct PostRtEvents {
  224. CarlaMutex mutex;
  225. RtLinkedList<PluginPostRtEvent>::Pool dataPool;
  226. RtLinkedList<PluginPostRtEvent> data;
  227. RtLinkedList<PluginPostRtEvent> dataPendingRT;
  228. PostRtEvents() noexcept;
  229. ~PostRtEvents() noexcept;
  230. void appendRT(const PluginPostRtEvent& event) noexcept;
  231. void trySplice() noexcept;
  232. void clear() noexcept;
  233. CARLA_DECLARE_NON_COPY_STRUCT(PostRtEvents)
  234. } postRtEvents;
  235. struct PostUiEvents {
  236. CarlaMutex mutex;
  237. LinkedList<PluginPostRtEvent> data;
  238. PostUiEvents() noexcept;
  239. ~PostUiEvents() noexcept;
  240. void append(const PluginPostRtEvent& event) noexcept;
  241. void clear() noexcept;
  242. CARLA_DECLARE_NON_COPY_STRUCT(PostUiEvents)
  243. } postUiEvents;
  244. #ifndef BUILD_BRIDGE
  245. struct PostProc {
  246. float dryWet;
  247. float volume;
  248. float balanceLeft;
  249. float balanceRight;
  250. float panning;
  251. PostProc() noexcept;
  252. CARLA_DECLARE_NON_COPY_STRUCT(PostProc)
  253. } postProc;
  254. #endif
  255. ProtectedData(CarlaEngine* const engine, const uint idx) noexcept;
  256. ~ProtectedData() noexcept;
  257. // -------------------------------------------------------------------
  258. // Buffer functions
  259. void clearBuffers() noexcept;
  260. // -------------------------------------------------------------------
  261. // Post-poned events
  262. void postponeRtEvent(const PluginPostRtEvent& rtEvent) noexcept;
  263. void postponeRtEvent(const PluginPostRtEventType type, const int32_t value1, const int32_t value2, const float value3) noexcept;
  264. // -------------------------------------------------------------------
  265. // Library functions
  266. static const char* libError(const char* const filename) noexcept;
  267. bool libOpen(const char* const filename) noexcept;
  268. bool libClose() noexcept;
  269. bool uiLibOpen(const char* const filename, const bool canDelete) noexcept;
  270. bool uiLibClose() noexcept;
  271. template<typename Func>
  272. Func libSymbol(const char* const symbol) const noexcept
  273. {
  274. return lib_symbol<Func>(lib, symbol);
  275. }
  276. template<typename Func>
  277. Func uiLibSymbol(const char* const symbol) const noexcept
  278. {
  279. return lib_symbol<Func>(uiLib, symbol);
  280. }
  281. // -------------------------------------------------------------------
  282. // Misc
  283. #ifndef BUILD_BRIDGE
  284. void tryTransient() noexcept;
  285. #endif
  286. void updateParameterValues(CarlaPlugin* const plugin, const bool sendOsc, const bool sendCallback, const bool useDefault) noexcept;
  287. // -------------------------------------------------------------------
  288. #ifdef CARLA_PROPER_CPP11_SUPPORT
  289. ProtectedData() = delete;
  290. CARLA_DECLARE_NON_COPY_STRUCT(ProtectedData);
  291. #endif
  292. CARLA_LEAK_DETECTOR(ProtectedData);
  293. };
  294. CARLA_BACKEND_END_NAMESPACE
  295. #endif // CARLA_PLUGIN_INTERNAL_HPP_INCLUDED