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.

CarlaPluginInternal.hpp 11KB

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