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.

360 lines
9.6KB

  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 "CarlaLibUtils.hpp"
  22. #include "CarlaOscUtils.hpp"
  23. #include "CarlaStateUtils.hpp"
  24. #include "CarlaMIDI.h"
  25. #include "CarlaMutex.hpp"
  26. #include "CarlaString.hpp"
  27. #include "RtLinkedList.hpp"
  28. #include "juce_audio_basics.h"
  29. using juce::FloatVectorOperations;
  30. CARLA_BACKEND_START_NAMESPACE
  31. // -----------------------------------------------------------------------
  32. // Maximum pre-allocated events for some plugin types
  33. const ushort kPluginMaxMidiEvents = 512;
  34. // -----------------------------------------------------------------------
  35. // Extra plugin hints, hidden from backend
  36. const uint PLUGIN_EXTRA_HINT_HAS_MIDI_IN = 0x01;
  37. const uint PLUGIN_EXTRA_HINT_HAS_MIDI_OUT = 0x02;
  38. const uint PLUGIN_EXTRA_HINT_CAN_RUN_RACK = 0x04;
  39. const uint PLUGIN_EXTRA_HINT_USES_MULTI_PROGS = 0x08;
  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. uint transientTryCounter;
  178. // latency
  179. uint32_t latency;
  180. #ifndef BUILD_BRIDGE
  181. float** latencyBuffers;
  182. #endif
  183. // data 1
  184. const char* name;
  185. const char* filename;
  186. const char* iconName;
  187. // data 2
  188. PluginAudioData audioIn;
  189. PluginAudioData audioOut;
  190. PluginCVData cvIn;
  191. PluginCVData cvOut;
  192. PluginEventData event;
  193. PluginParameterData param;
  194. PluginProgramData prog;
  195. PluginMidiProgramData midiprog;
  196. LinkedList<CustomData> custom;
  197. CarlaMutex masterMutex; // global master lock
  198. CarlaMutex singleMutex; // small lock used only in processSingle()
  199. CarlaStateSave stateSave;
  200. struct ExternalNotes {
  201. CarlaMutex mutex;
  202. RtLinkedList<ExternalMidiNote>::Pool dataPool;
  203. RtLinkedList<ExternalMidiNote> data;
  204. ExternalNotes() noexcept;
  205. ~ExternalNotes() noexcept;
  206. void appendNonRT(const ExternalMidiNote& note) noexcept;
  207. void clear() noexcept;
  208. CARLA_DECLARE_NON_COPY_STRUCT(ExternalNotes)
  209. } extNotes;
  210. struct PostRtEvents {
  211. CarlaMutex mutex;
  212. RtLinkedList<PluginPostRtEvent>::Pool dataPool;
  213. RtLinkedList<PluginPostRtEvent> data;
  214. RtLinkedList<PluginPostRtEvent> dataPendingRT;
  215. PostRtEvents() noexcept;
  216. ~PostRtEvents() noexcept;
  217. void appendRT(const PluginPostRtEvent& event) noexcept;
  218. void trySplice() noexcept;
  219. void clear() noexcept;
  220. CARLA_DECLARE_NON_COPY_STRUCT(PostRtEvents)
  221. } postRtEvents;
  222. #ifndef BUILD_BRIDGE
  223. struct PostProc {
  224. float dryWet;
  225. float volume;
  226. float balanceLeft;
  227. float balanceRight;
  228. float panning;
  229. PostProc() noexcept;
  230. CARLA_DECLARE_NON_COPY_STRUCT(PostProc)
  231. } postProc;
  232. #endif
  233. ProtectedData(CarlaEngine* const engine, const uint idx) noexcept;
  234. ~ProtectedData() noexcept;
  235. // -------------------------------------------------------------------
  236. // Buffer functions
  237. void clearBuffers() noexcept;
  238. #ifndef BUILD_BRIDGE
  239. void recreateLatencyBuffers();
  240. #endif
  241. // -------------------------------------------------------------------
  242. // Post-poned events
  243. void postponeRtEvent(const PluginPostRtEvent& rtEvent) noexcept;
  244. void postponeRtEvent(const PluginPostRtEventType type, const int32_t value1, const int32_t value2, const float value3) noexcept;
  245. // -------------------------------------------------------------------
  246. // Library functions
  247. static const char* libError(const char* const filename) noexcept;
  248. bool libOpen(const char* const filename) noexcept;
  249. bool libClose() noexcept;
  250. bool uiLibOpen(const char* const filename, const bool canDelete) noexcept;
  251. bool uiLibClose() noexcept;
  252. template<typename Func>
  253. Func libSymbol(const char* const symbol) const noexcept
  254. {
  255. return lib_symbol<Func>(lib, symbol);
  256. }
  257. template<typename Func>
  258. Func uiLibSymbol(const char* const symbol) const noexcept
  259. {
  260. return lib_symbol<Func>(uiLib, symbol);
  261. }
  262. // -------------------------------------------------------------------
  263. // Misc
  264. void tryTransient() noexcept;
  265. void updateParameterValues(CarlaPlugin* const plugin, const bool sendOsc, const bool sendCallback, const bool useDefault) noexcept;
  266. // -------------------------------------------------------------------
  267. #ifdef CARLA_PROPER_CPP11_SUPPORT
  268. ProtectedData() = delete;
  269. CARLA_DECLARE_NON_COPY_STRUCT(ProtectedData);
  270. #endif
  271. CARLA_LEAK_DETECTOR(ProtectedData);
  272. };
  273. CARLA_BACKEND_END_NAMESPACE
  274. #endif // CARLA_PLUGIN_INTERNAL_HPP_INCLUDED