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.

1083 lines
32KB

  1. /*
  2. * Carla Plugin Host
  3. * Copyright (C) 2011-2023 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_HPP_INCLUDED
  18. #define CARLA_PLUGIN_HPP_INCLUDED
  19. #include "CarlaBackend.h"
  20. #include "CarlaPluginPtr.hpp"
  21. // -----------------------------------------------------------------------
  22. // Avoid including extra libs here
  23. typedef void* lo_message;
  24. typedef struct _NativePluginDescriptor NativePluginDescriptor;
  25. struct LADSPA_RDF_Descriptor;
  26. // -----------------------------------------------------------------------
  27. CARLA_BACKEND_START_NAMESPACE
  28. #if 0
  29. } /* Fix editor indentation */
  30. #endif
  31. // -----------------------------------------------------------------------
  32. /*!
  33. * @defgroup CarlaPluginAPI Carla Plugin API
  34. *
  35. * The Carla Plugin API.
  36. * @{
  37. */
  38. class CarlaEngineAudioPort;
  39. class CarlaEngineCVPort;
  40. class CarlaEngineEventPort;
  41. class CarlaEngineCVSourcePorts;
  42. class CarlaEngineBridge;
  43. struct CarlaStateSave;
  44. struct EngineEvent;
  45. // -----------------------------------------------------------------------
  46. /*!
  47. * Carla Backend base plugin class
  48. *
  49. * This is the base class for all available plugin types available in Carla Backend.
  50. * All virtual calls are implemented in this class as fallback (except reload and process),
  51. * so it's safe to only override needed calls.
  52. *
  53. * @see PluginType
  54. */
  55. class CARLA_API CarlaPlugin
  56. {
  57. protected:
  58. /*!
  59. * This is the constructor of the base plugin class.
  60. *
  61. * @param engine The engine which this plugin belongs to, must not be null
  62. * @param id The 'id' of this plugin, must be between 0 and CarlaEngine::maxPluginNumber()
  63. */
  64. CarlaPlugin(CarlaEngine* engine, uint id);
  65. public:
  66. /*!
  67. * This is the destructor of the base plugin class.
  68. */
  69. virtual ~CarlaPlugin();
  70. // -------------------------------------------------------------------
  71. // Information (base)
  72. /*!
  73. * Get the plugin's type (a subclass of CarlaPlugin).
  74. *
  75. * @note Plugin bridges will return their respective plugin type, there is no plugin type such as "bridge".
  76. * To check if a plugin is a bridge use:
  77. * @code
  78. * if (getHints() & PLUGIN_IS_BRIDGE)
  79. * ...
  80. * @endcode
  81. */
  82. virtual PluginType getType() const noexcept = 0;
  83. /*!
  84. * Get the plugin's id (as passed in the constructor).
  85. *
  86. * @see setId()
  87. */
  88. uint getId() const noexcept;
  89. /*!
  90. * Get the plugin's hints.
  91. *
  92. * @see PluginHints
  93. */
  94. uint getHints() const noexcept;
  95. /*!
  96. * Get the plugin's options (currently in use).
  97. *
  98. * @see PluginOptions, getOptionsAvailable() and setOption()
  99. */
  100. uint getOptionsEnabled() const noexcept;
  101. /*!
  102. * Check if the plugin is enabled.
  103. * When a plugin is disabled, it will never be processed or managed in any way.
  104. *
  105. * @see setEnabled()
  106. */
  107. bool isEnabled() const noexcept;
  108. /*!
  109. * Get the plugin's internal name.
  110. * This name is unique within all plugins in an engine.
  111. *
  112. * @see getRealName() and setName()
  113. */
  114. const char* getName() const noexcept;
  115. /*!
  116. * Get the currently loaded DLL filename for this plugin.
  117. * (Sound kits return their exact filename).
  118. */
  119. const char* getFilename() const noexcept;
  120. /*!
  121. * Get the plugins's icon name.
  122. */
  123. const char* getIconName() const noexcept;
  124. /*!
  125. * Get the plugin's category (delay, filter, synth, etc).
  126. */
  127. virtual PluginCategory getCategory() const noexcept;
  128. /*!
  129. * Get the plugin's native unique Id.
  130. * May return 0 on plugin types that don't support Ids.
  131. */
  132. virtual int64_t getUniqueId() const noexcept;
  133. /*!
  134. * Get the plugin's latency, in sample frames.
  135. */
  136. virtual uint32_t getLatencyInFrames() const noexcept;
  137. // -------------------------------------------------------------------
  138. // Information (count)
  139. /*!
  140. * Get the number of audio inputs.
  141. */
  142. uint32_t getAudioInCount() const noexcept;
  143. /*!
  144. * Get the number of audio outputs.
  145. */
  146. uint32_t getAudioOutCount() const noexcept;
  147. /*!
  148. * Get the number of CV inputs.
  149. */
  150. uint32_t getCVInCount() const noexcept;
  151. /*!
  152. * Get the number of CV outputs.
  153. */
  154. uint32_t getCVOutCount() const noexcept;
  155. /*!
  156. * Get the number of MIDI inputs.
  157. */
  158. virtual uint32_t getMidiInCount() const noexcept;
  159. /*!
  160. * Get the number of MIDI outputs.
  161. */
  162. virtual uint32_t getMidiOutCount() const noexcept;
  163. /*!
  164. * Get the number of parameters.
  165. * To know the number of parameter inputs and outputs separately use getParameterCountInfo() instead.
  166. */
  167. uint32_t getParameterCount() const noexcept;
  168. /*!
  169. * Get the number of scalepoints for parameter @a parameterId.
  170. */
  171. virtual uint32_t getParameterScalePointCount(uint32_t parameterId) const noexcept;
  172. /*!
  173. * Get the number of programs.
  174. */
  175. uint32_t getProgramCount() const noexcept;
  176. /*!
  177. * Get the number of MIDI programs.
  178. */
  179. uint32_t getMidiProgramCount() const noexcept;
  180. /*!
  181. * Get the number of custom data sets.
  182. */
  183. uint32_t getCustomDataCount() const noexcept;
  184. // -------------------------------------------------------------------
  185. // Information (current data)
  186. /*!
  187. * Get the current program number (-1 if unset).
  188. *
  189. * @see setProgram()
  190. */
  191. int32_t getCurrentProgram() const noexcept;
  192. /*!
  193. * Get the current MIDI program number (-1 if unset).
  194. *
  195. * @see setMidiProgram()
  196. * @see setMidiProgramById()
  197. */
  198. int32_t getCurrentMidiProgram() const noexcept;
  199. /*!
  200. * Get hints about an audio port.
  201. */
  202. virtual uint getAudioPortHints(bool isOutput, uint32_t portIndex) const noexcept;
  203. /*!
  204. * Get the parameter data of @a parameterId.
  205. */
  206. const ParameterData& getParameterData(uint32_t parameterId) const noexcept;
  207. /*!
  208. * Get the parameter ranges of @a parameterId.
  209. */
  210. const ParameterRanges& getParameterRanges(uint32_t parameterId) const noexcept;
  211. /*!
  212. * Check if parameter @a parameterId is of output type.
  213. */
  214. bool isParameterOutput(uint32_t parameterId) const noexcept;
  215. /*!
  216. * Get the MIDI program at @a index.
  217. *
  218. * @see getMidiProgramName()
  219. */
  220. const MidiProgramData& getMidiProgramData(uint32_t index) const noexcept;
  221. /*!
  222. * Get the custom data set at @a index.
  223. *
  224. * @see getCustomDataCount() and setCustomData()
  225. */
  226. const CustomData& getCustomData(uint32_t index) const noexcept;
  227. /*!
  228. * Get the complete plugin chunk data into @a dataPtr.
  229. *
  230. * @note Make sure to verify the plugin supports chunks before calling this function!
  231. * @return The size of the chunk or 0 if invalid.
  232. *
  233. * @see setChunkData()
  234. */
  235. virtual std::size_t getChunkData(void** dataPtr) noexcept;
  236. // -------------------------------------------------------------------
  237. // Information (per-plugin data)
  238. /*!
  239. * Get the plugin available options.
  240. *
  241. * @see PluginOptions, getOptions() and setOption()
  242. */
  243. virtual uint getOptionsAvailable() const noexcept;
  244. /*!
  245. * Get the current parameter value of @a parameterId.
  246. */
  247. virtual float getParameterValue(uint32_t parameterId) const noexcept;
  248. /*!
  249. * Get the scalepoint @a scalePointId value of the parameter @a parameterId.
  250. */
  251. virtual float getParameterScalePointValue(uint32_t parameterId, uint32_t scalePointId) const noexcept;
  252. /*!
  253. * Get the plugin's label (URI for LV2 plugins).
  254. */
  255. __attribute__((warn_unused_result))
  256. virtual bool getLabel(char* strBuf) const noexcept;
  257. /*!
  258. * Get the plugin's maker.
  259. */
  260. __attribute__((warn_unused_result))
  261. virtual bool getMaker(char* strBuf) const noexcept;
  262. /*!
  263. * Get the plugin's copyright/license.
  264. */
  265. __attribute__((warn_unused_result))
  266. virtual bool getCopyright(char* strBuf) const noexcept;
  267. /*!
  268. * Get the plugin's (real) name.
  269. *
  270. * @see getName() and setName()
  271. */
  272. __attribute__((warn_unused_result))
  273. virtual bool getRealName(char* strBuf) const noexcept;
  274. /*!
  275. * Get the name of the parameter @a parameterId.
  276. */
  277. __attribute__((warn_unused_result))
  278. virtual bool getParameterName(uint32_t parameterId, char* strBuf) const noexcept;
  279. /*!
  280. * Get the symbol of the parameter @a parameterId.
  281. */
  282. __attribute__((warn_unused_result))
  283. virtual bool getParameterSymbol(uint32_t parameterId, char* strBuf) const noexcept;
  284. /*!
  285. * Get the custom text of the parameter @a parameterId.
  286. * @see PARAMETER_USES_CUSTOM_TEXT
  287. */
  288. __attribute__((warn_unused_result))
  289. virtual bool getParameterText(uint32_t parameterId, char* strBuf) noexcept;
  290. /*!
  291. * Get the unit of the parameter @a parameterId.
  292. */
  293. __attribute__((warn_unused_result))
  294. virtual bool getParameterUnit(uint32_t parameterId, char* strBuf) const noexcept;
  295. /*!
  296. * Get the comment (documentation) of the parameter @a parameterId.
  297. */
  298. __attribute__((warn_unused_result))
  299. virtual bool getParameterComment(uint32_t parameterId, char* strBuf) const noexcept;
  300. /*!
  301. * Get the group name of the parameter @a parameterId.
  302. * @note The group name is prefixed by a unique symbol and ":".
  303. */
  304. __attribute__((warn_unused_result))
  305. virtual bool getParameterGroupName(uint32_t parameterId, char* strBuf) const noexcept;
  306. /*!
  307. * Get the scalepoint @a scalePointId label of the parameter @a parameterId.
  308. */
  309. __attribute__((warn_unused_result))
  310. virtual bool getParameterScalePointLabel(uint32_t parameterId, uint32_t scalePointId, char* strBuf) const noexcept;
  311. /*!
  312. * Get the current parameter value of @a parameterId.
  313. * @a parameterId can be negative to allow internal parameters.
  314. * @see InternalParametersIndex
  315. */
  316. float getInternalParameterValue(int32_t parameterId) const noexcept;
  317. /*!
  318. * Get the name of the program at @a index.
  319. */
  320. __attribute__((warn_unused_result))
  321. bool getProgramName(uint32_t index, char* strBuf) const noexcept;
  322. /*!
  323. * Get the name of the MIDI program at @a index.
  324. *
  325. * @see getMidiProgramInfo()
  326. */
  327. __attribute__((warn_unused_result))
  328. bool getMidiProgramName(uint32_t index, char* strBuf) const noexcept;
  329. /*!
  330. * Get information about the plugin's parameter count.
  331. * This is used to check how many input, output and total parameters are available.
  332. *
  333. * @note Some parameters might not be input or output (ie, invalid).
  334. *
  335. * @see getParameterCount()
  336. */
  337. void getParameterCountInfo(uint32_t& ins, uint32_t& outs) const noexcept;
  338. // -------------------------------------------------------------------
  339. // Set data (state)
  340. /*!
  341. * Tell the plugin to prepare for save.
  342. * @param temporary Wherever we are saving into a temporary location
  343. * (for duplication, renaming or similar)
  344. */
  345. virtual void prepareForSave(bool temporary);
  346. /*!
  347. * Reset all possible parameters.
  348. */
  349. virtual void resetParameters() noexcept;
  350. /*!
  351. * Randomize all possible parameters.
  352. */
  353. virtual void randomizeParameters() noexcept;
  354. /*!
  355. * Get the plugin's save state.
  356. * The plugin will automatically call prepareForSave() if requested.
  357. *
  358. * @see loadStateSave()
  359. */
  360. const CarlaStateSave& getStateSave(bool callPrepareForSave = true);
  361. /*!
  362. * Get the plugin's save state.
  363. *
  364. * @see getStateSave()
  365. */
  366. void loadStateSave(const CarlaStateSave& stateSave);
  367. /*!
  368. * Save the current plugin state to @a filename.
  369. *
  370. * @see loadStateFromFile()
  371. */
  372. bool saveStateToFile(const char* filename);
  373. /*!
  374. * Save the plugin state from @a filename.
  375. *
  376. * @see saveStateToFile()
  377. */
  378. bool loadStateFromFile(const char* filename);
  379. #ifndef CARLA_PLUGIN_ONLY_BRIDGE
  380. /*!
  381. * Export this plugin as its own LV2 plugin, using a carla wrapper around it for the LV2 functionality.
  382. */
  383. bool exportAsLV2(const char* lv2path);
  384. #endif
  385. // -------------------------------------------------------------------
  386. // Set data (internal stuff)
  387. /*!
  388. * Set the plugin's id to @a newId.
  389. *
  390. * @see getId()
  391. * @note RT call
  392. */
  393. virtual void setId(uint newId) noexcept;
  394. /*!
  395. * Set the plugin's name to @a newName.
  396. *
  397. * @see getName() and getRealName()
  398. */
  399. virtual void setName(const char* newName);
  400. /*!
  401. * Set a plugin's option.
  402. *
  403. * @see getOptions() and getOptionsAvailable()
  404. */
  405. virtual void setOption(uint option, bool yesNo, bool sendCallback);
  406. /*!
  407. * Enable or disable the plugin according to @a yesNo.
  408. * When a plugin is disabled, it will never be processed or managed in any way.
  409. *
  410. * @see isEnabled()
  411. */
  412. void setEnabled(bool yesNo) noexcept;
  413. /*!
  414. * Set plugin as active according to @a active.
  415. *
  416. * @param sendOsc Send message change over OSC
  417. * @param sendCallback Send message change to registered callback
  418. */
  419. void setActive(bool active, bool sendOsc, bool sendCallback) noexcept;
  420. #ifndef BUILD_BRIDGE_ALTERNATIVE_ARCH
  421. /*!
  422. * Set the plugin's dry/wet signal value to @a value.
  423. * @a value must be between 0.0 and 1.0.
  424. *
  425. * @param sendOsc Send message change over OSC
  426. * @param sendCallback Send message change to registered callback
  427. */
  428. void setDryWet(float value, bool sendOsc, bool sendCallback) noexcept;
  429. /*!
  430. * Set the plugin's output volume to @a value.
  431. * @a value must be between 0.0 and 1.27.
  432. *
  433. * @param sendOsc Send message change over OSC
  434. * @param sendCallback Send message change to registered callback
  435. */
  436. void setVolume(float value, bool sendOsc, bool sendCallback) noexcept;
  437. /*!
  438. * Set the plugin's output left balance value to @a value.
  439. * @a value must be between -1.0 and 1.0.
  440. *
  441. * @param sendOsc Send message change over OSC
  442. * @param sendCallback Send message change to registered callback
  443. *
  444. * @note Pure-Stereo plugins only!
  445. */
  446. void setBalanceLeft(float value, bool sendOsc, bool sendCallback) noexcept;
  447. /*!
  448. * Set the plugin's output right balance value to @a value.
  449. * @a value must be between -1.0 and 1.0.
  450. *
  451. * @param sendOsc Send message change over OSC
  452. * @param sendCallback Send message change to registered callback
  453. *
  454. * @note Pure-Stereo plugins only!
  455. */
  456. void setBalanceRight(float value, bool sendOsc, bool sendCallback) noexcept;
  457. /*!
  458. * Set the plugin's output panning value to @a value.
  459. * @a value must be between -1.0 and 1.0.
  460. *
  461. * @param sendOsc Send message change over OSC
  462. * @param sendCallback Send message change to registered callback
  463. *
  464. * @note Force-Stereo plugins only!
  465. */
  466. void setPanning(float value, bool sendOsc, bool sendCallback) noexcept;
  467. /*!
  468. * Overloaded functions, to be called from within RT context only.
  469. */
  470. void setDryWetRT(float value, bool sendCallbackLater) noexcept;
  471. void setVolumeRT(float value, bool sendCallbackLater) noexcept;
  472. void setBalanceLeftRT(float value, bool sendCallbackLater) noexcept;
  473. void setBalanceRightRT(float value, bool sendCallbackLater) noexcept;
  474. void setPanningRT(float value, bool sendCallbackLater) noexcept;
  475. #endif // ! BUILD_BRIDGE_ALTERNATIVE_ARCH
  476. /*!
  477. * Set the plugin's midi control channel.
  478. *
  479. * @param sendOsc Send message change over OSC
  480. * @param sendCallback Send message change to registered callback
  481. */
  482. virtual void setCtrlChannel(int8_t channel, bool sendOsc, bool sendCallback) noexcept;
  483. // -------------------------------------------------------------------
  484. // Set data (plugin-specific stuff)
  485. /*!
  486. * Set a plugin's parameter value.
  487. *
  488. * @param parameterId The parameter to change
  489. * @param value The new parameter value, must be within the parameter's range
  490. * @param sendGui Send message change to plugin's custom GUI, if any
  491. * @param sendOsc Send message change over OSC
  492. * @param sendCallback Send message change to registered callback
  493. *
  494. * @see getParameterValue()
  495. */
  496. virtual void setParameterValue(uint32_t parameterId, float value, bool sendGui, bool sendOsc, bool sendCallback) noexcept;
  497. /*!
  498. * Overloaded function, to be called from within RT context only.
  499. */
  500. virtual void setParameterValueRT(uint32_t parameterId, float value, uint32_t frameOffset, bool sendCallbackLater) noexcept;
  501. /*!
  502. * Set a plugin's parameter value, including internal parameters.
  503. * @a rindex can be negative to allow internal parameters change (as defined in InternalParametersIndex).
  504. *
  505. * @see setParameterValue()
  506. * @see setActive()
  507. * @see setDryWet()
  508. * @see setVolume()
  509. * @see setBalanceLeft()
  510. * @see setBalanceRight()
  511. */
  512. void setParameterValueByRealIndex(int32_t rindex, float value, bool sendGui, bool sendOsc, bool sendCallback) noexcept;
  513. /*!
  514. * Set parameter's @a parameterId MIDI channel to @a channel.
  515. * @a channel must be between 0 and 15.
  516. */
  517. virtual void setParameterMidiChannel(uint32_t parameterId, uint8_t channel, bool sendOsc, bool sendCallback) noexcept;
  518. /*!
  519. * Set parameter's @a parameterId mapped control index to @a index.
  520. * @see ParameterData::mappedControlIndex
  521. */
  522. virtual void setParameterMappedControlIndex(uint32_t parameterId, int16_t index,
  523. bool sendOsc, bool sendCallback, bool reconfigureNow) noexcept;
  524. /*!
  525. * Set parameter's @a parameterId mapped range to @a minimum and @a maximum.
  526. */
  527. virtual void setParameterMappedRange(uint32_t parameterId, float minimum, float maximum,
  528. bool sendOsc, bool sendCallback) noexcept;
  529. /*!
  530. * Add a custom data set.
  531. * If @a key already exists, its current value will be swapped with @a value.
  532. *
  533. * @param type Type of data used in @a value.
  534. * @param key A key identifying this data set.
  535. * @param value The value of the data set, of type @a type.
  536. * @param sendGui Send message change to plugin's custom GUI, if any
  537. *
  538. * @see getCustomDataCount() and getCustomData()
  539. */
  540. virtual void setCustomData(const char* type, const char* key, const char* value, bool sendGui);
  541. /*!
  542. * Set the complete chunk data as @a data.
  543. *
  544. * @see getChunkData()
  545. *
  546. * @note Make sure to verify the plugin supports chunks before calling this function
  547. */
  548. virtual void setChunkData(const void* data, std::size_t dataSize);
  549. /*!
  550. * Change the current plugin program to @a index.
  551. *
  552. * If @a index is negative the plugin's program will be considered unset.
  553. * The plugin's default parameter values will be updated when this function is called.
  554. *
  555. * @param index New program index to use
  556. * @param sendGui Send message change to plugin's custom GUI, if any
  557. * @param sendOsc Send message change over OSC
  558. * @param sendCallback Send message change to registered callback
  559. */
  560. virtual void setProgram(int32_t index, bool sendGui, bool sendOsc, bool sendCallback, bool doingInit = false) noexcept;
  561. /*!
  562. * Change the current MIDI plugin program to @a index.
  563. *
  564. * If @a index is negative the plugin's program will be considered unset.
  565. * The plugin's default parameter values will be updated when this function is called.
  566. *
  567. * @param index New program index to use
  568. * @param sendGui Send message change to plugin's custom GUI, if any
  569. * @param sendOsc Send message change over OSC
  570. * @param sendCallback Send message change to registered callback
  571. */
  572. virtual void setMidiProgram(int32_t index, bool sendGui, bool sendOsc, bool sendCallback, bool doingInit = false) noexcept;
  573. /*!
  574. * This is an overloaded call to setMidiProgram().
  575. * It changes the current MIDI program using @a bank and @a program values instead of index.
  576. */
  577. void setMidiProgramById(uint32_t bank, uint32_t program, bool sendGui, bool sendOsc, bool sendCallback) noexcept;
  578. /*!
  579. * Overloaded functions, to be called from within RT context only.
  580. */
  581. virtual void setProgramRT(uint32_t index, bool sendCallbackLater) noexcept;
  582. virtual void setMidiProgramRT(uint32_t index, bool sendCallbackLater) noexcept;
  583. // -------------------------------------------------------------------
  584. // Plugin state
  585. /*!
  586. * Reload the plugin's entire state (including programs).
  587. * The plugin will be disabled during this call.
  588. */
  589. virtual void reload() = 0;
  590. /*!
  591. * Reload the plugin's programs state.
  592. */
  593. virtual void reloadPrograms(bool doInit);
  594. // -------------------------------------------------------------------
  595. // Plugin processing
  596. protected:
  597. /*!
  598. * Plugin activate call.
  599. */
  600. virtual void activate() noexcept;
  601. /*!
  602. * Plugin activate call.
  603. */
  604. virtual void deactivate() noexcept;
  605. public:
  606. /*!
  607. * Plugin process call.
  608. */
  609. virtual void process(const float* const* audioIn, float** audioOut,
  610. const float* const* cvIn, float** cvOut, uint32_t frames) = 0;
  611. /*!
  612. * Tell the plugin the current buffer size changed.
  613. */
  614. virtual void bufferSizeChanged(uint32_t newBufferSize);
  615. /*!
  616. * Tell the plugin the current sample rate changed.
  617. */
  618. virtual void sampleRateChanged(double newSampleRate);
  619. /*!
  620. * Tell the plugin the current offline mode changed.
  621. */
  622. virtual void offlineModeChanged(bool isOffline);
  623. // -------------------------------------------------------------------
  624. // Misc
  625. /*!
  626. * Idle function (non-UI), called at regular intervals.
  627. * @note: This function is NOT called from the main thread.
  628. */
  629. virtual void idle();
  630. /*!
  631. * Try to lock the plugin's master mutex.
  632. * @param forcedOffline When true, always locks and returns true
  633. */
  634. bool tryLock(bool forcedOffline) noexcept;
  635. /*!
  636. * Unlock the plugin's master mutex.
  637. */
  638. void unlock() noexcept;
  639. // -------------------------------------------------------------------
  640. // Plugin buffers
  641. /*!
  642. * Initialize all RT buffers of the plugin.
  643. */
  644. virtual void initBuffers() const noexcept;
  645. /*!
  646. * Delete and clear all RT buffers.
  647. */
  648. virtual void clearBuffers() noexcept;
  649. // -------------------------------------------------------------------
  650. // OSC stuff
  651. /*!
  652. * Handle an OSC message.
  653. * FIXME
  654. */
  655. virtual void handleOscMessage(const char* method,
  656. int argc,
  657. const void* argv,
  658. const char* types,
  659. lo_message msg);
  660. // -------------------------------------------------------------------
  661. // MIDI events
  662. /*!
  663. * Send a single midi note to be processed in the next audio callback.
  664. * A note with 0 velocity means note-off.
  665. * @note Non-RT call
  666. */
  667. void sendMidiSingleNote(uint8_t channel, uint8_t note, uint8_t velo,
  668. bool sendGui, bool sendOsc, bool sendCallback);
  669. #ifndef BUILD_BRIDGE_ALTERNATIVE_ARCH
  670. /*!
  671. * Send all midi notes off to the host callback.
  672. * This doesn't send the actual MIDI All-Notes-Off event, but 128 note-offs instead (IFF ctrlChannel is valid).
  673. * @note RT call
  674. */
  675. void postponeRtAllNotesOff();
  676. #endif
  677. // -------------------------------------------------------------------
  678. // UI Stuff
  679. /*!
  680. * Set a custom title for the plugin UI window created by Carla.
  681. */
  682. virtual void setCustomUITitle(const char* title) noexcept;
  683. /*!
  684. * Show (or hide) the plugin's custom UI according to @a yesNo.
  685. * This function is always called from the main thread.
  686. */
  687. virtual void showCustomUI(bool yesNo);
  688. /*!
  689. * Embed the plugin's custom UI to the system pointer @a ptr.
  690. * This function is always called from the main thread.
  691. * @note This is very experimental and subject to change at this point
  692. */
  693. virtual void* embedCustomUI(void* ptr);
  694. /*!
  695. * UI idle function, called at regular intervals.
  696. * This function is only called from the main thread if PLUGIN_NEEDS_UI_MAIN_THREAD is set.
  697. * @note This function may sometimes be called even if the UI is not visible yet.
  698. */
  699. virtual void uiIdle();
  700. /*!
  701. * Tell the UI a parameter has changed.
  702. * @see uiIdle
  703. */
  704. virtual void uiParameterChange(uint32_t index, float value) noexcept;
  705. /*!
  706. * Tell the UI the current program has changed.
  707. * @see uiIdle
  708. */
  709. virtual void uiProgramChange(uint32_t index) noexcept;
  710. /*!
  711. * Tell the UI the current midi program has changed.
  712. * @see uiIdle
  713. */
  714. virtual void uiMidiProgramChange(uint32_t index) noexcept;
  715. /*!
  716. * Tell the UI a note has been pressed.
  717. * @see uiIdle
  718. */
  719. virtual void uiNoteOn(uint8_t channel, uint8_t note, uint8_t velo) noexcept;
  720. /*!
  721. * Tell the UI a note has been released.
  722. * @see uiIdle
  723. */
  724. virtual void uiNoteOff(uint8_t channel, uint8_t note) noexcept;
  725. // -------------------------------------------------------------------
  726. // Helper functions
  727. /*!
  728. * Get the plugin's engine, as passed in the constructor.
  729. */
  730. CarlaEngine* getEngine() const noexcept;
  731. /*!
  732. * Get the plugin's engine client.
  733. */
  734. CarlaEngineClient* getEngineClient() const noexcept;
  735. /*!
  736. * Get a plugin's audio input port.
  737. */
  738. CarlaEngineAudioPort* getAudioInPort(uint32_t index) const noexcept;
  739. /*!
  740. * Get a plugin's audio output port.
  741. */
  742. CarlaEngineAudioPort* getAudioOutPort(uint32_t index) const noexcept;
  743. /*!
  744. * Get a plugin's CV input port.
  745. */
  746. CarlaEngineCVPort* getCVInPort(uint32_t index) const noexcept;
  747. /*!
  748. * Get a plugin's CV output port.
  749. */
  750. CarlaEngineCVPort* getCVOutPort(uint32_t index) const noexcept;
  751. /*!
  752. * Get the plugin's default event input port.
  753. */
  754. CarlaEngineEventPort* getDefaultEventInPort() const noexcept;
  755. /*!
  756. * Get the plugin's default event output port.
  757. */
  758. CarlaEngineEventPort* getDefaultEventOutPort() const noexcept;
  759. #ifndef BUILD_BRIDGE_ALTERNATIVE_ARCH
  760. /*!
  761. * Check if the plugin is interested on MIDI learn, and if so, map this event to the parameter that wants it.
  762. * Event MUST be of control type and not have been handled before.
  763. */
  764. void checkForMidiLearn(EngineEvent& event) noexcept;
  765. #endif
  766. /*!
  767. * Get the plugin's type native handle.
  768. * This will be LADSPA_Handle, LV2_Handle, etc.
  769. */
  770. virtual void* getNativeHandle() const noexcept;
  771. /*!
  772. * Get the plugin's type native descriptor.
  773. * This will be LADSPA_Descriptor, DSSI_Descriptor, LV2_Descriptor, AEffect, etc.
  774. */
  775. virtual const void* getNativeDescriptor() const noexcept;
  776. /*!
  777. * Get the plugin UI bridge process Id.
  778. */
  779. virtual uintptr_t getUiBridgeProcessId() const noexcept;
  780. // -------------------------------------------------------------------
  781. /*!
  782. * Get the plugin's patchbay nodeId.
  783. * @see setPatchbayNodeId()
  784. */
  785. uint32_t getPatchbayNodeId() const noexcept;
  786. /*!
  787. * Set the plugin's patchbay nodeId.
  788. * @see getPatchbayNodeId()
  789. */
  790. void setPatchbayNodeId(uint32_t nodeId) noexcept;
  791. // -------------------------------------------------------------------
  792. // Plugin initializers
  793. /*!
  794. * Get a plugin's binary type.
  795. * This is always BINARY_NATIVE unless the plugin is a bridge.
  796. */
  797. virtual BinaryType getBinaryType() const noexcept
  798. {
  799. return BINARY_NATIVE;
  800. }
  801. /*!
  802. * Handy function required by CarlaEngine::clonePlugin().
  803. */
  804. virtual const void* getExtraStuff() const noexcept
  805. {
  806. return nullptr;
  807. }
  808. #ifndef DOXYGEN
  809. struct Initializer {
  810. CarlaEngine* const engine;
  811. const uint id;
  812. const char* const filename;
  813. const char* const name;
  814. const char* const label;
  815. const int64_t uniqueId;
  816. const uint options; // see PluginOptions
  817. };
  818. static CarlaPluginPtr newBridge(const Initializer& init,
  819. BinaryType btype, PluginType ptype,
  820. const char* binaryArchName, const char* bridgeBinary);
  821. #ifndef CARLA_PLUGIN_ONLY_BRIDGE
  822. static CarlaPluginPtr newNative(const Initializer& init);
  823. static CarlaPluginPtr newLADSPA(const Initializer& init, const LADSPA_RDF_Descriptor* rdfDescriptor);
  824. static CarlaPluginPtr newDSSI(const Initializer& init);
  825. static CarlaPluginPtr newLV2(const Initializer& init);
  826. static CarlaPluginPtr newVST2(const Initializer& init);
  827. static CarlaPluginPtr newVST3(const Initializer& init);
  828. static CarlaPluginPtr newAU(const Initializer& init);
  829. static CarlaPluginPtr newJSFX(const Initializer& init);
  830. static CarlaPluginPtr newCLAP(const Initializer& init);
  831. static CarlaPluginPtr newJuce(const Initializer& init, const char* format);
  832. static CarlaPluginPtr newFluidSynth(const Initializer& init, PluginType ptype, bool use16Outs);
  833. static CarlaPluginPtr newSFZero(const Initializer& init);
  834. static CarlaPluginPtr newJackApp(const Initializer& init);
  835. #endif
  836. #endif
  837. // -------------------------------------------------------------------
  838. protected:
  839. /*!
  840. * Internal data, for CarlaPlugin subclasses only.
  841. */
  842. struct ProtectedData;
  843. ProtectedData* const pData;
  844. // -------------------------------------------------------------------
  845. // Internal helper functions
  846. protected:
  847. /*!
  848. * Clone/copy files from another LV2 plugin into this one..
  849. */
  850. virtual void cloneLV2Files(const CarlaPlugin& other);
  851. /*!
  852. * Call LV2 restore.
  853. * @param temporary Wherever we are saving into a temporary location
  854. * (for duplication, renaming or similar)
  855. */
  856. virtual void restoreLV2State(bool temporary) noexcept;
  857. /*!
  858. * Allow engine to signal that plugin will be deleted soon.
  859. */
  860. virtual void prepareForDeletion() noexcept;
  861. /*!
  862. * Give plugin bridges a change to update their custom data sets.
  863. */
  864. virtual void waitForBridgeSaveSignal() noexcept;
  865. // -------------------------------------------------------------------
  866. // Helper classes
  867. /*!
  868. * Fully disable plugin in scope and also its engine client.
  869. * May wait-block on constructor for plugin process to end.
  870. */
  871. class ScopedDisabler
  872. {
  873. public:
  874. ScopedDisabler(CarlaPlugin* plugin) noexcept;
  875. ~ScopedDisabler() noexcept;
  876. private:
  877. CarlaPlugin* const fPlugin;
  878. bool fWasEnabled;
  879. CARLA_PREVENT_HEAP_ALLOCATION
  880. CARLA_DECLARE_NON_COPYABLE(ScopedDisabler)
  881. };
  882. /*!
  883. * Lock the plugin's own run/process call.
  884. * Plugin will still work as normal, but output only silence.
  885. * On destructor needsReset flag might be set if the plugin might have missed some events.
  886. */
  887. class ScopedSingleProcessLocker
  888. {
  889. public:
  890. ScopedSingleProcessLocker(CarlaPlugin* plugin, bool block) noexcept;
  891. ~ScopedSingleProcessLocker() noexcept;
  892. private:
  893. CarlaPlugin* const fPlugin;
  894. const bool fBlock;
  895. CARLA_PREVENT_HEAP_ALLOCATION
  896. CARLA_DECLARE_NON_COPYABLE(ScopedSingleProcessLocker)
  897. };
  898. friend class CarlaEngine;
  899. friend class CarlaEngineBridge;
  900. CARLA_DECLARE_NON_COPYABLE(CarlaPlugin)
  901. };
  902. /**@}*/
  903. // -----------------------------------------------------------------------
  904. CARLA_BACKEND_END_NAMESPACE
  905. #endif // CARLA_PLUGIN_HPP_INCLUDED