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.

954 lines
28KB

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