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.

376 lines
10KB

  1. /*
  2. * Carla Plugin
  3. * Copyright (C) 2011-2014 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 "CarlaPluginThread.hpp"
  21. #include "CarlaOscUtils.hpp"
  22. #include "CarlaStateUtils.hpp"
  23. #include "CarlaMutex.hpp"
  24. #include "RtLinkedList.hpp"
  25. #include "CarlaMIDI.h"
  26. // -----------------------------------------------------------------------
  27. #define CARLA_PROCESS_CONTINUE_CHECK if (! pData->enabled) { pData->engine->callback(ENGINE_CALLBACK_DEBUG, pData->id, 0, 0, 0.0f, "Processing while plugin is disabled!!"); return; }
  28. // -----------------------------------------------------------------------
  29. CARLA_BACKEND_START_NAMESPACE
  30. #if 0
  31. } // Fix editor indentation
  32. #endif
  33. // -----------------------------------------------------------------------
  34. // Forward declarations of CarlaEngine classes
  35. class CarlaEngineAudioPort;
  36. class CarlaEngineCVPort;
  37. class CarlaEngineEventPort;
  38. // -----------------------------------------------------------------------
  39. // Maximum pre-allocated events for some plugin types
  40. const unsigned short kPluginMaxMidiEvents = 512;
  41. // -----------------------------------------------------------------------
  42. // Extra plugin hints, hidden from backend
  43. const unsigned int PLUGIN_EXTRA_HINT_HAS_MIDI_IN = 0x01;
  44. const unsigned int PLUGIN_EXTRA_HINT_HAS_MIDI_OUT = 0x02;
  45. const unsigned int PLUGIN_EXTRA_HINT_CAN_RUN_RACK = 0x04;
  46. const unsigned int PLUGIN_EXTRA_HINT_USES_MULTI_PROGS = 0x08;
  47. // -----------------------------------------------------------------------
  48. /*!
  49. * Post-RT event type.\n
  50. * These are events postponned from within the process function,
  51. *
  52. * During process, we cannot lock, allocate memory or do UI stuff,\n
  53. * so events have to be postponned to be executed later, on a separate thread.
  54. */
  55. enum PluginPostRtEventType {
  56. kPluginPostRtEventNull = 0,
  57. kPluginPostRtEventDebug,
  58. kPluginPostRtEventParameterChange, // param, SP (*), value (SP: if 1, don't report change to Callback and OSC)
  59. kPluginPostRtEventProgramChange, // index
  60. kPluginPostRtEventMidiProgramChange, // index
  61. kPluginPostRtEventNoteOn, // channel, note, velo
  62. kPluginPostRtEventNoteOff // channel, note
  63. };
  64. /*!
  65. * A Post-RT event.
  66. * \see PluginPostRtEventType
  67. */
  68. struct PluginPostRtEvent {
  69. PluginPostRtEventType type;
  70. int32_t value1;
  71. int32_t value2;
  72. float value3;
  73. };
  74. // -----------------------------------------------------------------------
  75. struct ExternalMidiNote {
  76. int8_t channel; // invalid if -1
  77. uint8_t note; // 0 to 127
  78. uint8_t velo; // note-off if 0
  79. };
  80. // -----------------------------------------------------------------------
  81. struct PluginAudioPort {
  82. uint32_t rindex;
  83. CarlaEngineAudioPort* port;
  84. PluginAudioPort() noexcept;
  85. ~PluginAudioPort() noexcept;
  86. CARLA_DECLARE_NON_COPY_STRUCT(PluginAudioPort)
  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() noexcept;
  96. CARLA_DECLARE_NON_COPY_STRUCT(PluginAudioData)
  97. };
  98. // -----------------------------------------------------------------------
  99. struct PluginCVPort {
  100. uint32_t rindex;
  101. uint32_t param;
  102. CarlaEngineCVPort* port;
  103. PluginCVPort() noexcept;
  104. ~PluginCVPort() noexcept;
  105. CARLA_DECLARE_NON_COPY_STRUCT(PluginCVPort)
  106. };
  107. struct PluginCVData {
  108. uint32_t count;
  109. PluginCVPort* ports;
  110. PluginCVData() noexcept;
  111. ~PluginCVData() noexcept;
  112. void createNew(const uint32_t newCount);
  113. void clear() noexcept;
  114. void initBuffers() noexcept;
  115. CARLA_DECLARE_NON_COPY_STRUCT(PluginCVData)
  116. };
  117. // -----------------------------------------------------------------------
  118. struct PluginEventData {
  119. CarlaEngineEventPort* portIn;
  120. CarlaEngineEventPort* portOut;
  121. PluginEventData() noexcept;
  122. ~PluginEventData() noexcept;
  123. void clear() noexcept;
  124. void initBuffers() noexcept;
  125. CARLA_DECLARE_NON_COPY_STRUCT(PluginEventData)
  126. };
  127. // -----------------------------------------------------------------------
  128. enum SpecialParameterType {
  129. PARAMETER_SPECIAL_NULL = 0,
  130. PARAMETER_SPECIAL_LATENCY = 1,
  131. PARAMETER_SPECIAL_SAMPLE_RATE = 2,
  132. PARAMETER_SPECIAL_LV2_FREEWHEEL = 3,
  133. PARAMETER_SPECIAL_LV2_TIME = 4
  134. };
  135. struct PluginParameterData {
  136. uint32_t count;
  137. ParameterData* data;
  138. ParameterRanges* ranges;
  139. SpecialParameterType* special;
  140. PluginParameterData() noexcept;
  141. ~PluginParameterData() noexcept;
  142. void createNew(const uint32_t newCount, const bool withSpecial, const bool doReset);
  143. void clear() noexcept;
  144. float getFixedValue(const uint32_t parameterId, const float& value) const noexcept;
  145. CARLA_DECLARE_NON_COPY_STRUCT(PluginParameterData)
  146. };
  147. // -----------------------------------------------------------------------
  148. typedef const char* ProgramName;
  149. struct PluginProgramData {
  150. uint32_t count;
  151. int32_t current;
  152. ProgramName* names;
  153. PluginProgramData() noexcept;
  154. ~PluginProgramData() noexcept;
  155. void createNew(const uint32_t newCount);
  156. void clear() noexcept;
  157. CARLA_DECLARE_NON_COPY_STRUCT(PluginProgramData)
  158. };
  159. // -----------------------------------------------------------------------
  160. struct PluginMidiProgramData {
  161. uint32_t count;
  162. int32_t current;
  163. MidiProgramData* data;
  164. PluginMidiProgramData() noexcept;
  165. ~PluginMidiProgramData() noexcept;
  166. void createNew(const uint32_t newCount);
  167. void clear() noexcept;
  168. const MidiProgramData& getCurrent() const noexcept;
  169. CARLA_DECLARE_NON_COPY_STRUCT(PluginMidiProgramData)
  170. };
  171. // -----------------------------------------------------------------------
  172. struct CarlaPluginProtectedData {
  173. CarlaEngine* const engine;
  174. CarlaEngineClient* client;
  175. unsigned int id;
  176. unsigned int hints;
  177. unsigned int options;
  178. bool active;
  179. bool enabled;
  180. bool needsReset;
  181. void* lib;
  182. void* uiLib;
  183. // misc
  184. int8_t ctrlChannel;
  185. uint extraHints;
  186. uint transientTryCounter;
  187. // latency
  188. uint32_t latency;
  189. float** latencyBuffers;
  190. // data 1
  191. const char* name;
  192. const char* filename;
  193. const char* iconName;
  194. const char* identifier; // used for save/restore settings per plugin
  195. // data 2
  196. PluginAudioData audioIn;
  197. PluginAudioData audioOut;
  198. PluginEventData event;
  199. PluginParameterData param;
  200. PluginProgramData prog;
  201. PluginMidiProgramData midiprog;
  202. LinkedList<CustomData> custom;
  203. SaveState saveState;
  204. CarlaMutex masterMutex; // global master lock
  205. CarlaMutex singleMutex; // small lock used only in processSingle()
  206. struct ExternalNotes {
  207. CarlaMutex mutex;
  208. RtLinkedList<ExternalMidiNote>::Pool dataPool;
  209. RtLinkedList<ExternalMidiNote> data;
  210. ExternalNotes();
  211. ~ExternalNotes();
  212. void append(const ExternalMidiNote& note);
  213. CARLA_DECLARE_NON_COPY_STRUCT(ExternalNotes)
  214. } extNotes;
  215. struct PostRtEvents {
  216. CarlaMutex mutex;
  217. RtLinkedList<PluginPostRtEvent>::Pool dataPool;
  218. RtLinkedList<PluginPostRtEvent> data;
  219. RtLinkedList<PluginPostRtEvent> dataPendingRT;
  220. PostRtEvents();
  221. ~PostRtEvents();
  222. void appendRT(const PluginPostRtEvent& event);
  223. void trySplice();
  224. void clear();
  225. CARLA_DECLARE_NON_COPY_STRUCT(PostRtEvents)
  226. } postRtEvents;
  227. #ifndef BUILD_BRIDGE
  228. struct PostProc {
  229. float dryWet;
  230. float volume;
  231. float balanceLeft;
  232. float balanceRight;
  233. float panning;
  234. PostProc() noexcept;
  235. CARLA_DECLARE_NON_COPY_STRUCT(PostProc)
  236. } postProc;
  237. #endif
  238. struct OSC {
  239. CarlaOscData data;
  240. CarlaPluginThread thread;
  241. OSC(CarlaEngine* const engine, CarlaPlugin* const plugin);
  242. #ifdef CARLA_PROPER_CPP11_SUPPORT
  243. OSC() = delete;
  244. CARLA_DECLARE_NON_COPY_STRUCT(OSC)
  245. #endif
  246. } osc;
  247. CarlaPluginProtectedData(CarlaEngine* const eng, const unsigned int idx, CarlaPlugin* const self);
  248. ~CarlaPluginProtectedData();
  249. // -------------------------------------------------------------------
  250. // Buffer functions
  251. void clearBuffers();
  252. void recreateLatencyBuffers();
  253. // -------------------------------------------------------------------
  254. // Post-poned events
  255. void postponeRtEvent(const PluginPostRtEventType type, const int32_t value1, const int32_t value2, const float value3);
  256. // -------------------------------------------------------------------
  257. // Library functions
  258. const char* libError(const char* const filename);
  259. bool libOpen(const char* const filename);
  260. bool libClose();
  261. void* libSymbol(const char* const symbol);
  262. bool uiLibOpen(const char* const filename, const bool canDelete);
  263. bool uiLibClose();
  264. void* uiLibSymbol(const char* const symbol);
  265. // -------------------------------------------------------------------
  266. // Settings functions
  267. void saveSetting(const uint option, const bool yesNo);
  268. uint loadSettings(const uint options, const uint availOptions);
  269. // -------------------------------------------------------------------
  270. // Misc
  271. void tryTransient();
  272. // -------------------------------------------------------------------
  273. #ifdef CARLA_PROPER_CPP11_SUPPORT
  274. CarlaPluginProtectedData() = delete;
  275. CARLA_DECLARE_NON_COPY_STRUCT(CarlaPluginProtectedData)
  276. #endif
  277. };
  278. CARLA_BACKEND_END_NAMESPACE
  279. #endif // CARLA_PLUGIN_INTERNAL_HPP_INCLUDED