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.

405 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. // -----------------------------------------------------------------------
  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 bridged;
  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_ALTERNATIVE_ARCH
  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. class PostRtEvents {
  224. public:
  225. PostRtEvents() noexcept;
  226. ~PostRtEvents() noexcept;
  227. void appendRT(const PluginPostRtEvent& event) noexcept;
  228. void trySplice() noexcept;
  229. void clearData() noexcept;
  230. inline CarlaMutex& getDataMutex() noexcept
  231. {
  232. return dataMutex;
  233. }
  234. inline RtLinkedList<PluginPostRtEvent>::Itenerator getDataIterator() const noexcept
  235. {
  236. return data.begin2();
  237. }
  238. private:
  239. RtLinkedList<PluginPostRtEvent>::Pool dataPool;
  240. RtLinkedList<PluginPostRtEvent> dataPendingRT;
  241. RtLinkedList<PluginPostRtEvent> data;
  242. CarlaMutex dataMutex;
  243. // TESTING for thread-safety, remove later
  244. CarlaMutex dataPendingMutex;
  245. CARLA_DECLARE_NON_COPY_CLASS(PostRtEvents)
  246. } postRtEvents;
  247. struct PostUiEvents {
  248. CarlaMutex mutex;
  249. LinkedList<PluginPostRtEvent> data;
  250. PostUiEvents() noexcept;
  251. ~PostUiEvents() noexcept;
  252. void append(const PluginPostRtEvent& event) noexcept;
  253. void clear() noexcept;
  254. CARLA_DECLARE_NON_COPY_STRUCT(PostUiEvents)
  255. } postUiEvents;
  256. #ifndef BUILD_BRIDGE_ALTERNATIVE_ARCH
  257. struct PostProc {
  258. float dryWet;
  259. float volume;
  260. float balanceLeft;
  261. float balanceRight;
  262. float panning;
  263. PostProc() noexcept;
  264. CARLA_DECLARE_NON_COPY_STRUCT(PostProc)
  265. } postProc;
  266. #endif
  267. ProtectedData(CarlaEngine* const engine, const uint idx) noexcept;
  268. ~ProtectedData() noexcept;
  269. // -------------------------------------------------------------------
  270. // Buffer functions
  271. void clearBuffers() noexcept;
  272. // -------------------------------------------------------------------
  273. // Post-poned events
  274. void postponeRtEvent(const PluginPostRtEvent& rtEvent) noexcept;
  275. void postponeRtEvent(const PluginPostRtEventType type, const int32_t value1, const int32_t value2, const float value3) noexcept;
  276. // -------------------------------------------------------------------
  277. // Library functions
  278. static const char* libError(const char* const filename) noexcept;
  279. bool libOpen(const char* const filename) noexcept;
  280. bool libClose() noexcept;
  281. bool uiLibOpen(const char* const filename, const bool canDelete) noexcept;
  282. bool uiLibClose() noexcept;
  283. template<typename Func>
  284. Func libSymbol(const char* const symbol) const noexcept
  285. {
  286. return lib_symbol<Func>(lib, symbol);
  287. }
  288. template<typename Func>
  289. Func uiLibSymbol(const char* const symbol) const noexcept
  290. {
  291. return lib_symbol<Func>(uiLib, symbol);
  292. }
  293. // -------------------------------------------------------------------
  294. // Misc
  295. #ifndef BUILD_BRIDGE_ALTERNATIVE_ARCH
  296. void tryTransient() noexcept;
  297. #endif
  298. void updateParameterValues(CarlaPlugin* const plugin, const bool sendOsc, const bool sendCallback, const bool useDefault) noexcept;
  299. void updateDefaultParameterValues(CarlaPlugin* const plugin) noexcept;
  300. // -------------------------------------------------------------------
  301. #ifdef CARLA_PROPER_CPP11_SUPPORT
  302. ProtectedData() = delete;
  303. CARLA_DECLARE_NON_COPY_STRUCT(ProtectedData);
  304. #endif
  305. CARLA_LEAK_DETECTOR(ProtectedData);
  306. };
  307. CARLA_BACKEND_END_NAMESPACE
  308. #endif // CARLA_PLUGIN_INTERNAL_HPP_INCLUDED