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.

1178 lines
34KB

  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_ENGINE_HPP_INCLUDED
  18. #define CARLA_ENGINE_HPP_INCLUDED
  19. #include "CarlaBackend.h"
  20. #ifdef BUILD_BRIDGE
  21. struct CarlaOscData;
  22. #endif
  23. // -----------------------------------------------------------------------
  24. CARLA_BACKEND_START_NAMESPACE
  25. #if 0
  26. } /* Fix editor indentation */
  27. #endif
  28. // -----------------------------------------------------------------------
  29. /*!
  30. * @defgroup CarlaEngineAPI Carla Engine API
  31. *
  32. * The Carla Engine API.
  33. * @{
  34. */
  35. /*!
  36. * The type of an engine.
  37. */
  38. enum EngineType {
  39. /*!
  40. * Null engine type.
  41. */
  42. kEngineTypeNull = 0,
  43. /*!
  44. * JACK engine type.\n
  45. * Provides all processing modes.
  46. */
  47. kEngineTypeJack = 1,
  48. /*!
  49. * Juce engine type, used to provide Native Audio and MIDI support.
  50. */
  51. kEngineTypeJuce = 2,
  52. /*!
  53. * RtAudio engine type, used to provide Native Audio and MIDI support.
  54. */
  55. kEngineTypeRtAudio = 3,
  56. /*!
  57. * Plugin engine type, used to export the engine as a plugin.
  58. */
  59. kEngineTypePlugin = 4,
  60. /*!
  61. * Bridge engine type, used in BridgePlugin class.
  62. */
  63. kEngineTypeBridge = 5
  64. };
  65. /*!
  66. * The type of an engine port.
  67. */
  68. enum EnginePortType {
  69. /*!
  70. * Null port type.
  71. */
  72. kEnginePortTypeNull = 0,
  73. /*!
  74. * Audio port type.
  75. * \see CarlaEngineAudioPort
  76. */
  77. kEnginePortTypeAudio = 1,
  78. /*!
  79. * CV port type.
  80. * \see CarlaEngineCVPort
  81. */
  82. kEnginePortTypeCV = 2,
  83. /*!
  84. * Event port type (Control or MIDI).
  85. ** \see CarlaEngineEventPort
  86. */
  87. kEnginePortTypeEvent = 3
  88. };
  89. /*!
  90. * The type of an engine event.
  91. */
  92. enum EngineEventType {
  93. /*!
  94. * Null port type.
  95. */
  96. kEngineEventTypeNull = 0,
  97. /*!
  98. * Control event type.
  99. * \see EngineControlEvent
  100. */
  101. kEngineEventTypeControl = 1,
  102. /*!
  103. * MIDI event type.
  104. * \see EngineMidiEvent
  105. */
  106. kEngineEventTypeMidi = 2
  107. };
  108. /*!
  109. * The type of an engine control event.
  110. */
  111. enum EngineControlEventType {
  112. /*!
  113. * Null event type.
  114. */
  115. kEngineControlEventTypeNull = 0,
  116. /*!
  117. * Parameter event type.\n
  118. * \note Value uses a normalized range of 0.0f<->1.0f.
  119. */
  120. kEngineControlEventTypeParameter = 1,
  121. /*!
  122. * MIDI Bank event type.
  123. */
  124. kEngineControlEventTypeMidiBank = 2,
  125. /*!
  126. * MIDI Program change event type.
  127. */
  128. kEngineControlEventTypeMidiProgram = 3,
  129. /*!
  130. * All sound off event type.
  131. */
  132. kEngineControlEventTypeAllSoundOff = 4,
  133. /*!
  134. * All notes off event type.
  135. */
  136. kEngineControlEventTypeAllNotesOff = 5
  137. };
  138. // -----------------------------------------------------------------------
  139. /*!
  140. * Engine control event.
  141. */
  142. struct EngineControlEvent {
  143. EngineControlEventType type; //!< Control-Event type.
  144. uint16_t param; //!< Parameter Id, midi bank or midi program.
  145. float value; //!< Parameter value, normalized to 0.0f<->1.0f.
  146. /*!
  147. * Dump control event as MIDI data.
  148. */
  149. void dumpToMidiData(const uint8_t channel, uint8_t& size, uint8_t data[3]) const noexcept;
  150. };
  151. /*!
  152. * Engine MIDI event.
  153. */
  154. struct EngineMidiEvent {
  155. static const uint8_t kDataSize = 4; //!< Size of internal data
  156. uint8_t port; //!< Port offset (usually 0)
  157. uint8_t size; //!< Number of bytes used
  158. /*!
  159. * MIDI data, without channel bit.
  160. * If size > kDataSize, dataExt is used.
  161. */
  162. uint8_t data[kDataSize];
  163. const uint8_t* dataExt;
  164. };
  165. /*!
  166. * Engine event.
  167. */
  168. struct EngineEvent {
  169. EngineEventType type; //!< Event Type; either Control or MIDI
  170. uint32_t time; //!< Time offset in frames
  171. uint8_t channel; //!< Channel, used for MIDI-related events
  172. /*!
  173. * Event specific data.
  174. */
  175. union {
  176. EngineControlEvent ctrl;
  177. EngineMidiEvent midi;
  178. };
  179. /*!
  180. * Fill event from MIDI data.
  181. */
  182. void fillFromMidiData(const uint8_t size, const uint8_t* const data) noexcept;
  183. };
  184. // -----------------------------------------------------------------------
  185. /*!
  186. * Engine options.
  187. */
  188. struct EngineOptions {
  189. EngineProcessMode processMode;
  190. EngineTransportMode transportMode;
  191. bool forceStereo;
  192. bool preferPluginBridges;
  193. bool preferUiBridges;
  194. bool uisAlwaysOnTop;
  195. unsigned int maxParameters;
  196. unsigned int uiBridgesTimeout;
  197. unsigned int audioNumPeriods;
  198. unsigned int audioBufferSize;
  199. unsigned int audioSampleRate;
  200. const char* audioDevice;
  201. const char* binaryDir;
  202. const char* resourceDir;
  203. uintptr_t frontendWinId;
  204. #ifndef DOXYGEN
  205. EngineOptions() noexcept;
  206. ~EngineOptions() noexcept;
  207. #endif
  208. };
  209. /*!
  210. * Engine BBT Time information.
  211. */
  212. struct EngineTimeInfoBBT {
  213. int32_t bar; //!< current bar
  214. int32_t beat; //!< current beat-within-bar
  215. int32_t tick; //!< current tick-within-beat
  216. double barStartTick;
  217. float beatsPerBar; //!< time signature "numerator"
  218. float beatType; //!< time signature "denominator"
  219. double ticksPerBeat;
  220. double beatsPerMinute;
  221. #ifndef DOXYGEN
  222. EngineTimeInfoBBT() noexcept;
  223. #endif
  224. };
  225. /*!
  226. * Engine Time information.
  227. */
  228. struct EngineTimeInfo {
  229. static const uint kValidBBT = 0x1;
  230. bool playing;
  231. uint64_t frame;
  232. uint64_t usecs;
  233. uint valid;
  234. EngineTimeInfoBBT bbt;
  235. /*!
  236. * Clear.
  237. */
  238. void clear() noexcept;
  239. #ifndef DOXYGEN
  240. EngineTimeInfo() noexcept;
  241. // quick operator, doesn't check all values
  242. bool operator==(const EngineTimeInfo& timeInfo) const noexcept;
  243. bool operator!=(const EngineTimeInfo& timeInfo) const noexcept;
  244. #endif
  245. };
  246. // -----------------------------------------------------------------------
  247. /*!
  248. * Carla Engine port (Abstract).\n
  249. * This is the base class for all Carla Engine ports.
  250. */
  251. class CarlaEnginePort
  252. {
  253. protected:
  254. /*!
  255. * The constructor.\n
  256. * Param \a isInputPort defines wherever this is an input port or not (output otherwise).\n
  257. * Input/output and process mode are constant for the lifetime of the port.
  258. */
  259. CarlaEnginePort(const CarlaEngine& engine, const bool isInputPort);
  260. public:
  261. /*!
  262. * The destructor.
  263. */
  264. virtual ~CarlaEnginePort();
  265. /*!
  266. * Get the type of the port, as provided by the respective subclasses.
  267. */
  268. virtual EnginePortType getType() const noexcept = 0;
  269. /*!
  270. * Initialize the port's internal buffer.
  271. */
  272. virtual void initBuffer() noexcept = 0;
  273. /*!
  274. * Check if this port is an input.
  275. */
  276. bool isInput() const noexcept
  277. {
  278. return fIsInput;
  279. }
  280. #ifndef DOXYGEN
  281. protected:
  282. const CarlaEngine& fEngine;
  283. const bool fIsInput;
  284. CARLA_DECLARE_NON_COPY_CLASS(CarlaEnginePort)
  285. #endif
  286. };
  287. /*!
  288. * Carla Engine Audio port.
  289. */
  290. class CarlaEngineAudioPort : public CarlaEnginePort
  291. {
  292. public:
  293. /*!
  294. * The constructor.\n
  295. * All constructor parameters are constant and will never change in the lifetime of the port.
  296. */
  297. CarlaEngineAudioPort(const CarlaEngine& engine, const bool isInputPort);
  298. /*!
  299. * The destructor.
  300. */
  301. ~CarlaEngineAudioPort() override;
  302. /*!
  303. * Get the type of the port, in this case kEnginePortTypeAudio.
  304. */
  305. EnginePortType getType() const noexcept override
  306. {
  307. return kEnginePortTypeAudio;
  308. }
  309. /*!
  310. * Initialize the port's internal buffer.
  311. */
  312. virtual void initBuffer() noexcept override;
  313. /*!
  314. * Direct access to the port's audio buffer.
  315. */
  316. float* getBuffer() const noexcept
  317. {
  318. return fBuffer;
  319. }
  320. #ifndef DOXYGEN
  321. protected:
  322. float* fBuffer;
  323. CARLA_DECLARE_NON_COPY_CLASS(CarlaEngineAudioPort)
  324. #endif
  325. };
  326. /*!
  327. * Carla Engine CV port.
  328. */
  329. class CarlaEngineCVPort : public CarlaEnginePort
  330. {
  331. public:
  332. /*!
  333. * The constructor.\n
  334. * All constructor parameters are constant and will never change in the lifetime of the port.
  335. */
  336. CarlaEngineCVPort(const CarlaEngine& engine, const bool isInputPort);
  337. /*!
  338. * The destructor.
  339. */
  340. ~CarlaEngineCVPort() override;
  341. /*!
  342. * Get the type of the port, in this case kEnginePortTypeCV.
  343. */
  344. EnginePortType getType() const noexcept override
  345. {
  346. return kEnginePortTypeCV;
  347. }
  348. /*!
  349. * Initialize the port's internal buffer for \a engine.
  350. */
  351. void initBuffer() noexcept override;
  352. /*!
  353. * Set a new buffer size.
  354. */
  355. void setBufferSize(const uint32_t bufferSize);
  356. /*!
  357. * Direct access to the port's buffer.
  358. */
  359. float* getBuffer() const noexcept
  360. {
  361. return fBuffer;
  362. }
  363. #ifndef DOXYGEN
  364. protected:
  365. float* fBuffer;
  366. const EngineProcessMode fProcessMode;
  367. CARLA_DECLARE_NON_COPY_CLASS(CarlaEngineCVPort)
  368. #endif
  369. };
  370. /*!
  371. * Carla Engine Event port.
  372. */
  373. class CarlaEngineEventPort : public CarlaEnginePort
  374. {
  375. public:
  376. /*!
  377. * The constructor.\n
  378. * All constructor parameters are constant and will never change in the lifetime of the port.
  379. */
  380. CarlaEngineEventPort(const CarlaEngine& engine, const bool isInputPort);
  381. /*!
  382. * The destructor.
  383. */
  384. ~CarlaEngineEventPort() override;
  385. /*!
  386. * Get the type of the port, in this case kEnginePortTypeEvent.
  387. */
  388. EnginePortType getType() const noexcept override
  389. {
  390. return kEnginePortTypeEvent;
  391. }
  392. /*!
  393. * Initialize the port's internal buffer for \a engine.
  394. */
  395. void initBuffer() noexcept override;
  396. /*!
  397. * Get the number of events present in the buffer.
  398. * \note You must only call this for input ports.
  399. */
  400. virtual uint32_t getEventCount() const noexcept;
  401. /*!
  402. * Get the event at \a index.
  403. * \note You must only call this for input ports.
  404. */
  405. virtual const EngineEvent& getEvent(const uint32_t index) const noexcept;
  406. /*!
  407. * Get the event at \a index, faster unchecked version.
  408. */
  409. virtual const EngineEvent& getEventUnchecked(const uint32_t index) const noexcept;
  410. /*!
  411. * Write a control event into the buffer.\n
  412. * Arguments are the same as in the EngineControlEvent struct.
  413. * \note You must only call this for output ports.
  414. */
  415. virtual bool writeControlEvent(const uint32_t time, const uint8_t channel, const EngineControlEventType type, const uint16_t param, const float value = 0.0f) noexcept;
  416. /*!
  417. * Write a control event into the buffer, overloaded call.
  418. */
  419. bool writeControlEvent(const uint32_t time, const uint8_t channel, const EngineControlEvent& ctrl) noexcept;
  420. /*!
  421. * Write a MIDI event into the buffer.\n
  422. * Arguments are the same as in the EngineMidiEvent struct.
  423. * \note You must only call this for output ports.
  424. */
  425. virtual bool writeMidiEvent(const uint32_t time, const uint8_t channel, const uint8_t port, const uint8_t size, const uint8_t* const data) noexcept;
  426. /*!
  427. * Write a MIDI event into the buffer, overloaded call.
  428. */
  429. bool writeMidiEvent(const uint32_t time, const uint8_t size, const uint8_t* const data) noexcept;
  430. /*!
  431. * Write a MIDI event into the buffer, overloaded call.
  432. */
  433. bool writeMidiEvent(const uint32_t time, const uint8_t channel, const EngineMidiEvent& midi) noexcept;
  434. #ifndef DOXYGEN
  435. protected:
  436. EngineEvent* fBuffer;
  437. const EngineProcessMode fProcessMode;
  438. CARLA_DECLARE_NON_COPY_CLASS(CarlaEngineEventPort)
  439. #endif
  440. };
  441. // -----------------------------------------------------------------------
  442. /*!
  443. * Carla Engine client.\n
  444. * Each plugin requires one client from the engine (created via CarlaEngine::addClient()).\n
  445. * \note This is a virtual class, some engine types provide custom funtionality.
  446. */
  447. class CarlaEngineClient
  448. {
  449. public:
  450. /*!
  451. * The constructor, protected.\n
  452. * All constructor parameters are constant and will never change in the lifetime of the client.\n
  453. * Client starts in deactivated state.
  454. */
  455. CarlaEngineClient(const CarlaEngine& engine);
  456. /*!
  457. * The destructor.
  458. */
  459. virtual ~CarlaEngineClient();
  460. /*!
  461. * Activate this client.\n
  462. * Client must be deactivated before calling this function.
  463. */
  464. virtual void activate() noexcept;
  465. /*!
  466. * Deactivate this client.\n
  467. * Client must be activated before calling this function.
  468. */
  469. virtual void deactivate() noexcept;
  470. /*!
  471. * Check if the client is activated.
  472. */
  473. virtual bool isActive() const noexcept;
  474. /*!
  475. * Check if the client is ok.\n
  476. * Plugins will refuse to instantiate if this returns false.
  477. * \note This is always true in rack and patchbay processing modes.
  478. */
  479. virtual bool isOk() const noexcept;
  480. /*!
  481. * Get the current latency, in samples.
  482. */
  483. virtual uint32_t getLatency() const noexcept;
  484. /*!
  485. * Change the client's latency.
  486. */
  487. virtual void setLatency(const uint32_t samples) noexcept;
  488. /*!
  489. * Add a new port of type \a portType.
  490. * \note This function does nothing in rack processing mode since ports are static there (2 audio + 1 event for both input and output).
  491. */
  492. virtual CarlaEnginePort* addPort(const EnginePortType portType, const char* const name, const bool isInput);
  493. #ifndef DOXYGEN
  494. protected:
  495. const CarlaEngine& fEngine;
  496. bool fActive;
  497. uint32_t fLatency;
  498. CARLA_DECLARE_NON_COPY_CLASS(CarlaEngineClient)
  499. #endif
  500. };
  501. // -----------------------------------------------------------------------
  502. /*!
  503. * Protected data used in CarlaEngine and subclasses.\n
  504. * Non-engine code MUST NEVER have direct access to this.
  505. */
  506. struct CarlaEngineProtectedData;
  507. /*!
  508. * Carla Engine.
  509. * \note This is a virtual class for all available engine types available in Carla.
  510. */
  511. class CarlaEngine
  512. {
  513. protected:
  514. /*!
  515. * The constructor, protected.\n
  516. * \note This only initializes engine data, it doesn't start the engine (audio).
  517. */
  518. CarlaEngine();
  519. public:
  520. /*!
  521. * The decontructor.
  522. * The engine must have been closed before this happens.
  523. */
  524. virtual ~CarlaEngine();
  525. // -------------------------------------------------------------------
  526. // Static calls
  527. /*!
  528. * Get the number of available engine drivers.
  529. */
  530. static unsigned int getDriverCount();
  531. /*!
  532. * Get the name of the engine driver at \a index.
  533. */
  534. static const char* getDriverName(const unsigned int index);
  535. /*!
  536. * Get the device names of driver at \a index.
  537. */
  538. static const char* const* getDriverDeviceNames(const unsigned int index);
  539. /*!
  540. * Get the device names of driver at \a index.
  541. */
  542. static const EngineDriverDeviceInfo* getDriverDeviceInfo(const unsigned int index, const char* const driverName);
  543. /*!
  544. * Create a new engine, using driver \a driverName. \n
  545. * Returned variable must be deleted when no longer needed.
  546. * \note This only initializes engine data, it doesn't initialize the engine itself.
  547. */
  548. static CarlaEngine* newDriverByName(const char* const driverName);
  549. // -------------------------------------------------------------------
  550. // Constant values
  551. /*!
  552. * Maximum client name size.
  553. */
  554. virtual unsigned int getMaxClientNameSize() const noexcept;
  555. /*!
  556. * Maximum port name size.
  557. */
  558. virtual unsigned int getMaxPortNameSize() const noexcept;
  559. /*!
  560. * Current number of plugins loaded.
  561. */
  562. unsigned int getCurrentPluginCount() const noexcept;
  563. /*!
  564. * Maximum number of loadable plugins allowed.
  565. * \note This function returns 0 if engine is not started.
  566. */
  567. unsigned int getMaxPluginNumber() const noexcept;
  568. // -------------------------------------------------------------------
  569. // Virtual, per-engine type calls
  570. /*!
  571. * Initialize engine, using \a clientName.
  572. */
  573. virtual bool init(const char* const clientName);
  574. /*!
  575. * Close engine.
  576. */
  577. virtual bool close();
  578. /*!
  579. * Idle engine.
  580. */
  581. virtual void idle();
  582. /*!
  583. * Check if engine is running.
  584. */
  585. virtual bool isRunning() const noexcept = 0;
  586. /*!
  587. * Check if engine is running offline (aka freewheel mode).
  588. */
  589. virtual bool isOffline() const noexcept = 0;
  590. /*!
  591. * Get engine type.
  592. */
  593. virtual EngineType getType() const noexcept = 0;
  594. /*!
  595. * Get the currently used driver name.
  596. */
  597. virtual const char* getCurrentDriverName() const noexcept = 0;
  598. /*!
  599. * Add new engine client.
  600. * \note This function must only be called within a plugin class.
  601. */
  602. virtual CarlaEngineClient* addClient(CarlaPlugin* const plugin);
  603. // -------------------------------------------------------------------
  604. // Plugin management
  605. /*!
  606. * Add new plugin.
  607. */
  608. bool addPlugin(const BinaryType btype, const PluginType ptype, const char* const filename, const char* const name, const char* const label, const int64_t uniqueId, const void* const extra);
  609. /*!
  610. * Add new plugin, using native binary type.
  611. */
  612. bool addPlugin(const PluginType ptype, const char* const filename, const char* const name, const char* const label, const int64_t uniqueId, const void* const extra);
  613. /*!
  614. * Remove plugin with id \a id.
  615. */
  616. bool removePlugin(const unsigned int id);
  617. /*!
  618. * Remove all plugins.
  619. */
  620. bool removeAllPlugins();
  621. /*!
  622. * Rename plugin with id \a id to \a newName.\n
  623. * Returns the new name, or nullptr if the operation failed.
  624. */
  625. virtual const char* renamePlugin(const unsigned int id, const char* const newName);
  626. /*!
  627. * Clone plugin with id \a id.
  628. */
  629. bool clonePlugin(const unsigned int id);
  630. /*!
  631. * Prepare replace of plugin with id \a id.\n
  632. * The next call to addPlugin() will use this id, replacing the selected plugin.
  633. * \note This function requires addPlugin() to be called afterwards, as soon as possible.
  634. */
  635. bool replacePlugin(const unsigned int id);
  636. /*!
  637. * Switch plugins with id \a idA and \a idB.
  638. */
  639. bool switchPlugins(const unsigned int idA, const unsigned int idB);
  640. /*!
  641. * Get plugin with id \a id.
  642. */
  643. CarlaPlugin* getPlugin(const unsigned int id) const;
  644. /*!
  645. * Get plugin with id \a id, faster unchecked version.
  646. */
  647. CarlaPlugin* getPluginUnchecked(const unsigned int id) const noexcept;
  648. /*!
  649. * Get a unique plugin name within the engine.\n
  650. * Returned variable must be deleted if non-NULL.
  651. */
  652. const char* getUniquePluginName(const char* const name) const;
  653. // -------------------------------------------------------------------
  654. // Project management
  655. /*!
  656. * Load a file of any type.\n
  657. * This will try to load a generic file as a plugin,
  658. * either by direct handling (GIG, SF2 and SFZ) or by using an internal plugin (like Audio and MIDI).
  659. */
  660. bool loadFile(const char* const filename);
  661. /*!
  662. * Load a project file.
  663. * @note Already loaded plugins are not removed; call removeAllPlugins() first if needed.
  664. */
  665. bool loadProject(const char* const filename);
  666. /*!
  667. * Save current project to a file.
  668. */
  669. bool saveProject(const char* const filename);
  670. // -------------------------------------------------------------------
  671. // Information (base)
  672. /*!
  673. * Get the current engine driver hints.
  674. */
  675. unsigned int getHints() const noexcept;
  676. /*!
  677. * Get the current buffer size.
  678. */
  679. uint32_t getBufferSize() const noexcept;
  680. /*!
  681. * Get the current sample rate.
  682. */
  683. double getSampleRate() const noexcept;
  684. /*!
  685. * Get the current engine name.
  686. */
  687. const char* getName() const noexcept;
  688. /*!
  689. * Get the current engine proccess mode.
  690. */
  691. EngineProcessMode getProccessMode() const noexcept;
  692. /*!
  693. * Get the current engine options (read-only).
  694. */
  695. const EngineOptions& getOptions() const noexcept;
  696. /*!
  697. * Get the current Time information (read-only).
  698. */
  699. const EngineTimeInfo& getTimeInfo() const noexcept;
  700. // -------------------------------------------------------------------
  701. // Information (peaks)
  702. /*!
  703. * TODO.
  704. */
  705. float getInputPeak(const unsigned int pluginId, const bool isLeft) const noexcept;
  706. /*!
  707. * TODO.
  708. */
  709. float getOutputPeak(const unsigned int pluginId, const bool isLeft) const noexcept;
  710. // -------------------------------------------------------------------
  711. // Callback
  712. /*!
  713. * Run the main engine callback, if set.
  714. * May be called by plugins.
  715. */
  716. void callback(const EngineCallbackOpcode action, const unsigned int pluginId, const int value1, const int value2, const float value3, const char* const valueStr) noexcept;
  717. /*!
  718. * Set the main engine callback.
  719. */
  720. void setCallback(const EngineCallbackFunc func, void* const ptr) noexcept;
  721. // -------------------------------------------------------------------
  722. // Callback
  723. /*!
  724. * Run the file callback, if set.
  725. * May be called by plugins.
  726. */
  727. const char* runFileCallback(const FileCallbackOpcode action, const bool isDir, const char* const title, const char* const filter) noexcept;
  728. /*!
  729. * Set the file callback.
  730. */
  731. void setFileCallback(const FileCallbackFunc func, void* const ptr) noexcept;
  732. #ifndef BUILD_BRIDGE
  733. // -------------------------------------------------------------------
  734. // Patchbay
  735. /*!
  736. * Connect patchbay ports \a portA and \a portB.
  737. */
  738. virtual bool patchbayConnect(const int portA, const int portB);
  739. /*!
  740. * Disconnect patchbay connection \a connectionId.
  741. */
  742. virtual bool patchbayDisconnect(const uint connectionId);
  743. /*!
  744. * Force the engine to resend all patchbay clients, ports and connections again.
  745. */
  746. virtual bool patchbayRefresh();
  747. #endif
  748. // -------------------------------------------------------------------
  749. // Transport
  750. /*!
  751. * Start playback of the engine transport.
  752. */
  753. virtual void transportPlay() noexcept;
  754. /*!
  755. * Pause the engine transport.
  756. */
  757. virtual void transportPause() noexcept;
  758. /*!
  759. * Relocate the engine transport to \a frames.
  760. */
  761. virtual void transportRelocate(const uint64_t frame) noexcept;
  762. // -------------------------------------------------------------------
  763. // Error handling
  764. /*!
  765. * Get last error.
  766. */
  767. const char* getLastError() const noexcept;
  768. /*!
  769. * Set last error.
  770. */
  771. void setLastError(const char* const error) const;
  772. // -------------------------------------------------------------------
  773. // Misc
  774. /*!
  775. * Tell the engine it's about to close.\n
  776. * This is used to prevent the engine thread(s) from reactivating.
  777. */
  778. void setAboutToClose() noexcept;
  779. // -------------------------------------------------------------------
  780. // Options
  781. /*!
  782. * Set the engine option \a option.
  783. */
  784. void setOption(const EngineOption option, const int value, const char* const valueStr);
  785. // -------------------------------------------------------------------
  786. // OSC Stuff
  787. #ifdef BUILD_BRIDGE
  788. /*!
  789. * Check if OSC bridge is registered.
  790. */
  791. bool isOscBridgeRegistered() const noexcept;
  792. #else
  793. /*!
  794. * Check if OSC controller is registered.
  795. */
  796. bool isOscControlRegistered() const noexcept;
  797. #endif
  798. /*!
  799. * Get OSC TCP server path.
  800. */
  801. const char* getOscServerPathTCP() const noexcept;
  802. /*!
  803. * Get OSC UDP server path.
  804. */
  805. const char* getOscServerPathUDP() const noexcept;
  806. #ifdef BUILD_BRIDGE
  807. /*!
  808. * Set OSC bridge data.
  809. */
  810. void setOscBridgeData(const CarlaOscData* const oscData) const noexcept;
  811. #endif
  812. // -------------------------------------------------------------------
  813. // Helper functions
  814. /*!
  815. * Return internal data, needed for EventPorts when used in Rack and Bridge modes.
  816. * \note RT call
  817. */
  818. EngineEvent* getInternalEventBuffer(const bool isInput) const noexcept;
  819. /*!
  820. * Force register a plugin into slot \a id. \n
  821. * This is needed so we can receive OSC events for a plugin while it initializes.
  822. */
  823. void registerEnginePlugin(const unsigned int id, CarlaPlugin* const plugin) noexcept;
  824. // -------------------------------------------------------------------
  825. protected:
  826. /*!
  827. * Internal data, for CarlaEngine subclasses only.
  828. */
  829. CarlaEngineProtectedData* const pData;
  830. friend struct CarlaEngineProtectedData;
  831. // -------------------------------------------------------------------
  832. // Internal stuff
  833. /*!
  834. * Report to all plugins about buffer size change.
  835. */
  836. void bufferSizeChanged(const uint32_t newBufferSize);
  837. /*!
  838. * Report to all plugins about sample rate change.\n
  839. * This is not supported on all plugin types, in which case they will have to be re-initiated.
  840. */
  841. void sampleRateChanged(const double newSampleRate);
  842. /*!
  843. * Report to all plugins about offline mode change.
  844. */
  845. void offlineModeChanged(const bool isOffline);
  846. /*!
  847. * Run any pending RT events.\n
  848. * Must always be called at the end of audio processing.
  849. * \note RT call
  850. */
  851. void runPendingRtEvents() noexcept;
  852. /*!
  853. * Set a plugin (stereo) peak values.
  854. * \note RT call
  855. */
  856. void setPluginPeaks(const unsigned int pluginId, float const inPeaks[2], float const outPeaks[2]) noexcept;
  857. #ifndef BUILD_BRIDGE
  858. // -------------------------------------------------------------------
  859. // Patchbay stuff
  860. /*!
  861. * Virtual functions for handling MIDI ports in the rack patchbay.
  862. */
  863. virtual bool connectRackMidiInPort(const int) { return false; }
  864. virtual bool connectRackMidiOutPort(const int) { return false; }
  865. virtual bool disconnectRackMidiInPort(const int) { return false; }
  866. virtual bool disconnectRackMidiOutPort(const int) { return false; }
  867. /*!
  868. * Virtual functions for handling patchbay state.
  869. */
  870. virtual const char* const* getPatchbayConnections() const;
  871. virtual void restorePatchbayConnection(const char* const sourcePort, const char* const targetPort);
  872. #endif
  873. // -------------------------------------------------------------------
  874. private:
  875. /*!
  876. * Native audio APIs.
  877. */
  878. enum AudioApi {
  879. AUDIO_API_NULL = 0,
  880. // common
  881. AUDIO_API_JACK = 1,
  882. // linux
  883. AUDIO_API_ALSA = 2,
  884. AUDIO_API_OSS = 3,
  885. AUDIO_API_PULSE = 4,
  886. // macos
  887. AUDIO_API_CORE = 5,
  888. // windows
  889. AUDIO_API_ASIO = 6,
  890. AUDIO_API_DS = 7
  891. };
  892. // -------------------------------------------------------------------
  893. // Engine initializers
  894. // JACK
  895. static CarlaEngine* newJack();
  896. // RtAudio
  897. static CarlaEngine* newRtAudio(const AudioApi api);
  898. static unsigned int getRtAudioApiCount();
  899. static const char* getRtAudioApiName(const unsigned int index);
  900. static const char* const* getRtAudioApiDeviceNames(const unsigned int index);
  901. static const EngineDriverDeviceInfo* getRtAudioDeviceInfo(const unsigned int index, const char* const deviceName);
  902. // Juce
  903. static CarlaEngine* newJuce(const AudioApi api);
  904. static unsigned int getJuceApiCount();
  905. static const char* getJuceApiName(const unsigned int index);
  906. static const char* const* getJuceApiDeviceNames(const unsigned int index);
  907. static const EngineDriverDeviceInfo* getJuceDeviceInfo(const unsigned int index, const char* const deviceName);
  908. #ifdef BUILD_BRIDGE
  909. public:
  910. // Bridge
  911. static CarlaEngine* newBridge(const char* const audioBaseName, const char* const controlBaseName, const char* const timeBaseName);
  912. // -------------------------------------------------------------------
  913. // Bridge/Controller OSC stuff
  914. void oscSend_bridge_plugin_info1(const PluginCategory category, const uint hints, const int64_t uniqueId) const noexcept;
  915. void oscSend_bridge_plugin_info2(const char* const realName, const char* const label, const char* const maker, const char* const copyright) const noexcept;
  916. void oscSend_bridge_audio_count(const uint32_t ins, const uint32_t outs) const noexcept;
  917. void oscSend_bridge_midi_count(const uint32_t ins, const uint32_t outs) const noexcept;
  918. void oscSend_bridge_parameter_count(const uint32_t ins, const uint32_t outs) const noexcept;
  919. void oscSend_bridge_program_count(const uint32_t count) const noexcept;
  920. void oscSend_bridge_midi_program_count(const uint32_t count) const noexcept;
  921. void oscSend_bridge_parameter_data(const uint32_t index, const int32_t rindex, const ParameterType type, const uint hints, const char* const name, const char* const unit) const noexcept;
  922. void oscSend_bridge_parameter_ranges1(const uint32_t index, const float def, const float min, const float max) const noexcept;
  923. void oscSend_bridge_parameter_ranges2(const uint32_t index, const float step, const float stepSmall, const float stepLarge) const noexcept;
  924. void oscSend_bridge_parameter_midi_cc(const uint32_t index, const int16_t cc) const noexcept;
  925. void oscSend_bridge_parameter_midi_channel(const uint32_t index, const uint8_t channel) const noexcept;
  926. void oscSend_bridge_parameter_value(const uint32_t index, const float value) const noexcept;
  927. void oscSend_bridge_default_value(const uint32_t index, const float value) const noexcept;
  928. void oscSend_bridge_current_program(const int32_t index) const noexcept;
  929. void oscSend_bridge_current_midi_program(const int32_t index) const noexcept;
  930. void oscSend_bridge_program_name(const uint32_t index, const char* const name) const noexcept;
  931. void oscSend_bridge_midi_program_data(const uint32_t index, const uint32_t bank, const uint32_t program, const char* const name) const noexcept;
  932. void oscSend_bridge_configure(const char* const key, const char* const value) const noexcept;
  933. void oscSend_bridge_set_custom_data(const char* const type, const char* const key, const char* const value) const noexcept;
  934. void oscSend_bridge_set_chunk_data(const char* const chunkFile) const noexcept;
  935. void oscSend_bridge_set_peaks() const noexcept;
  936. void oscSend_bridge_pong() const noexcept;
  937. #else
  938. public:
  939. void oscSend_control_add_plugin_start(const uint pluginId, const char* const pluginName) const noexcept;
  940. void oscSend_control_add_plugin_end(const uint pluginId) const noexcept;
  941. void oscSend_control_remove_plugin(const uint pluginId) const noexcept;
  942. void oscSend_control_set_plugin_info1(const uint pluginId, const PluginType type, const PluginCategory category, const uint hints, const int64_t uniqueId) const noexcept;
  943. void oscSend_control_set_plugin_info2(const uint pluginId, const char* const realName, const char* const label, const char* const maker, const char* const copyright) const noexcept;
  944. void oscSend_control_set_audio_count(const uint pluginId, const uint32_t ins, const uint32_t outs) const noexcept;
  945. void oscSend_control_set_midi_count(const uint pluginId, const uint32_t ins, const uint32_t outs) const noexcept;
  946. void oscSend_control_set_parameter_count(const uint pluginId, const uint32_t ins, const uint32_t outs) const noexcept;
  947. void oscSend_control_set_program_count(const uint pluginId, const uint32_t count) const noexcept;
  948. void oscSend_control_set_midi_program_count(const uint pluginId, const uint32_t count) const noexcept;
  949. void oscSend_control_set_parameter_data(const uint pluginId, const uint32_t index, const ParameterType type, const uint hints, const char* const name, const char* const unit) const noexcept;
  950. void oscSend_control_set_parameter_ranges1(const uint pluginId, const uint32_t index, const float def, const float min, const float max) const noexcept;
  951. void oscSend_control_set_parameter_ranges2(const uint pluginId, const uint32_t index, const float step, const float stepSmall, const float stepLarge) const noexcept;
  952. void oscSend_control_set_parameter_midi_cc(const uint pluginId, const uint32_t index, const int16_t cc) const noexcept;
  953. void oscSend_control_set_parameter_midi_channel(const uint pluginId, const uint32_t index, const uint8_t channel) const noexcept;
  954. void oscSend_control_set_parameter_value(const uint pluginId, const int32_t index, const float value) const noexcept; // may be used for internal params (< 0)
  955. void oscSend_control_set_default_value(const uint pluginId, const uint32_t index, const float value) const noexcept;
  956. void oscSend_control_set_current_program(const uint pluginId, const int32_t index) const noexcept;
  957. void oscSend_control_set_current_midi_program(const uint pluginId, const int32_t index) const noexcept;
  958. void oscSend_control_set_program_name(const uint pluginId, const uint32_t index, const char* const name) const noexcept;
  959. void oscSend_control_set_midi_program_data(const uint pluginId, const uint32_t index, const uint32_t bank, const uint32_t program, const char* const name) const noexcept;
  960. void oscSend_control_note_on(const uint pluginId, const uint8_t channel, const uint8_t note, const uint8_t velo) const noexcept;
  961. void oscSend_control_note_off(const uint pluginId, const uint8_t channel, const uint8_t note) const noexcept;
  962. void oscSend_control_set_peaks(const uint pluginId) const noexcept;
  963. void oscSend_control_exit() const noexcept;
  964. #endif
  965. CARLA_DECLARE_NON_COPY_CLASS(CarlaEngine)
  966. };
  967. /**@}*/
  968. // -----------------------------------------------------------------------
  969. CARLA_BACKEND_END_NAMESPACE
  970. #endif // CARLA_ENGINE_HPP_INCLUDED