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.

1230 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. namespace juce {
  24. class MemoryOutputStream;
  25. class XmlDocument;
  26. }
  27. CARLA_BACKEND_START_NAMESPACE
  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.
  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.
  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 CARLA_API 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. * Convert this control event into MIDI data.
  148. */
  149. void convertToMidiData(const uint8_t channel, uint8_t& size, uint8_t data[3]) const noexcept;
  150. };
  151. /*!
  152. * Engine MIDI event.
  153. */
  154. struct CARLA_API 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 (otherwise NULL).
  161. */
  162. uint8_t data[kDataSize];
  163. const uint8_t* dataExt;
  164. };
  165. /*!
  166. * Engine event.
  167. */
  168. struct CARLA_API 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 this event from MIDI data.
  181. */
  182. void fillFromMidiData(const uint8_t size, const uint8_t* const data, const uint8_t midiPortOffset) noexcept;
  183. };
  184. // -----------------------------------------------------------------------
  185. /*!
  186. * Engine options.
  187. */
  188. struct CARLA_API EngineOptions {
  189. EngineProcessMode processMode;
  190. EngineTransportMode transportMode;
  191. bool forceStereo;
  192. bool preferPluginBridges;
  193. bool preferUiBridges;
  194. bool uisAlwaysOnTop;
  195. uint maxParameters;
  196. uint uiBridgesTimeout;
  197. uint audioNumPeriods;
  198. uint audioBufferSize;
  199. uint audioSampleRate;
  200. const char* audioDevice;
  201. const char* pathLADSPA;
  202. const char* pathDSSI;
  203. const char* pathLV2;
  204. const char* pathVST2;
  205. const char* pathVST3;
  206. const char* pathGIG;
  207. const char* pathSF2;
  208. const char* pathSFZ;
  209. const char* binaryDir;
  210. const char* resourceDir;
  211. bool preventBadBehaviour;
  212. uintptr_t frontendWinId;
  213. #ifndef DOXYGEN
  214. EngineOptions() noexcept;
  215. ~EngineOptions() noexcept;
  216. CARLA_DECLARE_NON_COPY_STRUCT(EngineOptions)
  217. #endif
  218. };
  219. /*!
  220. * Engine BBT Time information.
  221. */
  222. struct CARLA_API EngineTimeInfoBBT {
  223. int32_t bar; //!< current bar
  224. int32_t beat; //!< current beat-within-bar
  225. int32_t tick; //!< current tick-within-beat
  226. double barStartTick;
  227. float beatsPerBar; //!< time signature "numerator"
  228. float beatType; //!< time signature "denominator"
  229. double ticksPerBeat;
  230. double beatsPerMinute;
  231. #ifndef DOXYGEN
  232. EngineTimeInfoBBT() noexcept;
  233. #endif
  234. };
  235. /*!
  236. * Engine Time information.
  237. */
  238. struct CARLA_API EngineTimeInfo {
  239. static const uint kValidBBT = 0x1;
  240. bool playing;
  241. uint64_t frame;
  242. uint64_t usecs;
  243. uint valid;
  244. EngineTimeInfoBBT bbt;
  245. /*!
  246. * Clear.
  247. */
  248. void clear() noexcept;
  249. #ifndef DOXYGEN
  250. EngineTimeInfo() noexcept;
  251. // quick operator, doesn't check all values
  252. bool operator==(const EngineTimeInfo& timeInfo) const noexcept;
  253. bool operator!=(const EngineTimeInfo& timeInfo) const noexcept;
  254. #endif
  255. };
  256. // -----------------------------------------------------------------------
  257. /*!
  258. * Carla Engine port (Abstract).
  259. * This is the base class for all Carla Engine ports.
  260. */
  261. class CARLA_API CarlaEnginePort
  262. {
  263. protected:
  264. /*!
  265. * The constructor.
  266. * All constructor parameters are constant and will never change in the lifetime of the port.
  267. */
  268. CarlaEnginePort(const CarlaEngineClient& client, const bool isInputPort, const uint32_t indexOffset) noexcept;
  269. public:
  270. /*!
  271. * The destructor.
  272. */
  273. virtual ~CarlaEnginePort() noexcept;
  274. /*!
  275. * Get the type of the port, as provided by the respective subclasses.
  276. */
  277. virtual EnginePortType getType() const noexcept = 0;
  278. /*!
  279. * Initialize the port's internal buffer.
  280. */
  281. virtual void initBuffer() noexcept = 0;
  282. /*!
  283. * Check if this port is an input.
  284. */
  285. bool isInput() const noexcept
  286. {
  287. return kIsInput;
  288. }
  289. /*!
  290. * Get this ports' engine client.
  291. */
  292. const CarlaEngineClient& getEngineClient() const noexcept
  293. {
  294. return kClient;
  295. }
  296. #ifndef DOXYGEN
  297. protected:
  298. const CarlaEngineClient& kClient;
  299. const bool kIsInput;
  300. const uint32_t kIndexOffset;
  301. CARLA_DECLARE_NON_COPY_CLASS(CarlaEnginePort)
  302. #endif
  303. };
  304. /*!
  305. * Carla Engine Audio port.
  306. */
  307. class CARLA_API CarlaEngineAudioPort : public CarlaEnginePort
  308. {
  309. public:
  310. /*!
  311. * The constructor.
  312. * All constructor parameters are constant and will never change in the lifetime of the port.
  313. */
  314. CarlaEngineAudioPort(const CarlaEngineClient& client, const bool isInputPort, const uint32_t indexOffset) noexcept;
  315. /*!
  316. * The destructor.
  317. */
  318. ~CarlaEngineAudioPort() noexcept override;
  319. /*!
  320. * Get the type of the port, in this case kEnginePortTypeAudio.
  321. */
  322. EnginePortType getType() const noexcept final
  323. {
  324. return kEnginePortTypeAudio;
  325. }
  326. /*!
  327. * Initialize the port's internal buffer.
  328. */
  329. void initBuffer() noexcept override;
  330. /*!
  331. * Direct access to the port's audio buffer.
  332. * May be null.
  333. */
  334. float* getBuffer() const noexcept
  335. {
  336. return fBuffer;
  337. }
  338. #ifndef DOXYGEN
  339. protected:
  340. float* fBuffer;
  341. CARLA_DECLARE_NON_COPY_CLASS(CarlaEngineAudioPort)
  342. #endif
  343. };
  344. /*!
  345. * Carla Engine CV port.
  346. */
  347. class CARLA_API CarlaEngineCVPort : public CarlaEnginePort
  348. {
  349. public:
  350. /*!
  351. * The constructor.
  352. * All constructor parameters are constant and will never change in the lifetime of the port.
  353. */
  354. CarlaEngineCVPort(const CarlaEngineClient& client, const bool isInputPort, const uint32_t indexOffset) noexcept;
  355. /*!
  356. * The destructor.
  357. */
  358. ~CarlaEngineCVPort() noexcept override;
  359. /*!
  360. * Get the type of the port, in this case kEnginePortTypeCV.
  361. */
  362. EnginePortType getType() const noexcept final
  363. {
  364. return kEnginePortTypeCV;
  365. }
  366. /*!
  367. * Initialize the port's internal buffer.
  368. */
  369. void initBuffer() noexcept override;
  370. /*!
  371. * Direct access to the port's CV buffer.
  372. * May be null.
  373. */
  374. float* getBuffer() const noexcept
  375. {
  376. return fBuffer;
  377. }
  378. #ifndef DOXYGEN
  379. protected:
  380. float* fBuffer;
  381. CARLA_DECLARE_NON_COPY_CLASS(CarlaEngineCVPort)
  382. #endif
  383. };
  384. /*!
  385. * Carla Engine Event port.
  386. */
  387. class CARLA_API CarlaEngineEventPort : public CarlaEnginePort
  388. {
  389. public:
  390. /*!
  391. * The constructor.
  392. * All constructor parameters are constant and will never change in the lifetime of the port.
  393. */
  394. CarlaEngineEventPort(const CarlaEngineClient& client, const bool isInputPort, const uint32_t indexOffset) noexcept;
  395. /*!
  396. * The destructor.
  397. */
  398. ~CarlaEngineEventPort() noexcept override;
  399. /*!
  400. * Get the type of the port, in this case kEnginePortTypeEvent.
  401. */
  402. EnginePortType getType() const noexcept final
  403. {
  404. return kEnginePortTypeEvent;
  405. }
  406. /*!
  407. * Initialize the port's internal buffer for @a engine.
  408. */
  409. void initBuffer() noexcept override;
  410. /*!
  411. * Get the number of events present in the buffer.
  412. * @note You must only call this for input ports.
  413. */
  414. virtual uint32_t getEventCount() const noexcept;
  415. /*!
  416. * Get the event at @a index.
  417. * @note You must only call this for input ports.
  418. */
  419. virtual const EngineEvent& getEvent(const uint32_t index) const noexcept;
  420. /*!
  421. * Get the event at @a index, faster unchecked version.
  422. */
  423. virtual const EngineEvent& getEventUnchecked(const uint32_t index) const noexcept;
  424. /*!
  425. * Write a control event into the buffer.
  426. * @note You must only call this for output ports.
  427. */
  428. bool writeControlEvent(const uint32_t time, const uint8_t channel, const EngineControlEvent& ctrl) noexcept;
  429. /*!
  430. * Write a control event into the buffer.
  431. * Arguments are the same as in the EngineControlEvent struct.
  432. * @note You must only call this for output ports.
  433. */
  434. virtual bool writeControlEvent(const uint32_t time, const uint8_t channel, const EngineControlEventType type, const uint16_t param, const float value = 0.0f) noexcept;
  435. /*!
  436. * Write a MIDI event into the buffer.
  437. * @note You must only call this for output ports.
  438. */
  439. bool writeMidiEvent(const uint32_t time, const uint8_t size, const uint8_t* const data) noexcept;
  440. /*!
  441. * Write a MIDI event into the buffer.
  442. * @note You must only call this for output ports.
  443. */
  444. bool writeMidiEvent(const uint32_t time, const uint8_t channel, const EngineMidiEvent& midi) noexcept;
  445. /*!
  446. * Write a MIDI event into the buffer.
  447. * Arguments are the same as in the EngineMidiEvent struct.
  448. * @note You must only call this for output ports.
  449. */
  450. virtual bool writeMidiEvent(const uint32_t time, const uint8_t channel, const uint8_t size, const uint8_t* const data) noexcept;
  451. #ifndef DOXYGEN
  452. protected:
  453. EngineEvent* fBuffer;
  454. const EngineProcessMode kProcessMode;
  455. friend class CarlaPluginInstance;
  456. CARLA_DECLARE_NON_COPY_CLASS(CarlaEngineEventPort)
  457. #endif
  458. };
  459. // -----------------------------------------------------------------------
  460. /*!
  461. * Carla Engine client.
  462. * Each plugin requires one client from the engine (created via CarlaEngine::addClient()).
  463. * @note This is a virtual class, some engine types provide custom funtionality.
  464. */
  465. class CARLA_API CarlaEngineClient
  466. {
  467. public:
  468. /*!
  469. * The constructor, protected.
  470. * All constructor parameters are constant and will never change in the lifetime of the client.
  471. * Client starts in deactivated state.
  472. */
  473. CarlaEngineClient(const CarlaEngine& engine);
  474. /*!
  475. * The destructor.
  476. */
  477. virtual ~CarlaEngineClient() noexcept;
  478. /*!
  479. * Activate this client.
  480. * Client must be deactivated before calling this function.
  481. */
  482. virtual void activate() noexcept;
  483. /*!
  484. * Deactivate this client.
  485. * Client must be activated before calling this function.
  486. */
  487. virtual void deactivate() noexcept;
  488. /*!
  489. * Check if the client is activated.
  490. */
  491. virtual bool isActive() const noexcept;
  492. /*!
  493. * Check if the client is ok.
  494. * Plugins will refuse to instantiate if this returns false.
  495. * @note This is always true in rack and patchbay processing modes.
  496. */
  497. virtual bool isOk() const noexcept;
  498. /*!
  499. * Get the current latency, in samples.
  500. */
  501. virtual uint32_t getLatency() const noexcept;
  502. /*!
  503. * Change the client's latency.
  504. */
  505. virtual void setLatency(const uint32_t samples) noexcept;
  506. /*!
  507. * Add a new port of type @a portType.
  508. * @note This function does nothing in rack processing mode since ports are static there.
  509. */
  510. virtual CarlaEnginePort* addPort(const EnginePortType portType, const char* const name, const bool isInput, const uint32_t indexOffset);
  511. /*!
  512. * Get this client's engine.
  513. */
  514. const CarlaEngine& getEngine() const noexcept;
  515. /*!
  516. * Get the engine's process mode.
  517. */
  518. EngineProcessMode getProcessMode() const noexcept;
  519. /*!
  520. * Get an audio port name.
  521. */
  522. const char* getAudioPortName(const bool isInput, const uint index) const noexcept;
  523. /*!
  524. * Get a CV port name.
  525. */
  526. const char* getCVPortName(const bool isInput, const uint index) const noexcept;
  527. /*!
  528. * Get an event port name.
  529. */
  530. const char* getEventPortName(const bool isInput, const uint index) const noexcept;
  531. #ifndef DOXYGEN
  532. protected:
  533. /*!
  534. * Internal data, for CarlaEngineClient subclasses only.
  535. */
  536. struct ProtectedData;
  537. ProtectedData* const pData;
  538. void _addAudioPortName(const bool, const char* const);
  539. void _addCVPortName(const bool, const char* const);
  540. void _addEventPortName(const bool, const char* const);
  541. const char* _getUniquePortName(const char* const);
  542. void _clearPorts();
  543. CARLA_DECLARE_NON_COPY_CLASS(CarlaEngineClient)
  544. #endif
  545. };
  546. // -----------------------------------------------------------------------
  547. /*!
  548. * Carla Engine.
  549. * @note This is a virtual class for all available engine types available in Carla.
  550. */
  551. class CARLA_API CarlaEngine
  552. {
  553. protected:
  554. /*!
  555. * The constructor, protected.
  556. * @note This only initializes engine data, it doesn't actually start the engine.
  557. */
  558. CarlaEngine();
  559. public:
  560. /*!
  561. * The destructor.
  562. * The engine must have been closed before this happens.
  563. */
  564. virtual ~CarlaEngine();
  565. // -------------------------------------------------------------------
  566. // Static calls
  567. /*!
  568. * Get the number of available engine drivers.
  569. */
  570. static uint getDriverCount();
  571. /*!
  572. * Get the name of the engine driver at @a index.
  573. */
  574. static const char* getDriverName(const uint index);
  575. /*!
  576. * Get the device names of the driver at @a index.
  577. */
  578. static const char* const* getDriverDeviceNames(const uint index);
  579. /*!
  580. * Get device information about the driver at @a index and name @a driverName.
  581. */
  582. static const EngineDriverDeviceInfo* getDriverDeviceInfo(const uint index, const char* const driverName);
  583. /*!
  584. * Create a new engine, using driver @a driverName.
  585. * Returned value must be deleted when no longer needed.
  586. * @note This only initializes engine data, it doesn't actually start the engine.
  587. */
  588. static CarlaEngine* newDriverByName(const char* const driverName);
  589. // -------------------------------------------------------------------
  590. // Constant values
  591. /*!
  592. * Maximum client name size.
  593. */
  594. virtual uint getMaxClientNameSize() const noexcept;
  595. /*!
  596. * Maximum port name size.
  597. */
  598. virtual uint getMaxPortNameSize() const noexcept;
  599. /*!
  600. * Current number of plugins loaded.
  601. */
  602. uint getCurrentPluginCount() const noexcept;
  603. /*!
  604. * Maximum number of loadable plugins allowed.
  605. * This function returns 0 if engine is not started.
  606. */
  607. uint getMaxPluginNumber() const noexcept;
  608. // -------------------------------------------------------------------
  609. // Virtual, per-engine type calls
  610. /*!
  611. * Initialize/start the engine, using @a clientName.
  612. * When the engine is intialized, you need to call idle() at regular intervals.
  613. */
  614. virtual bool init(const char* const clientName) = 0;
  615. /*!
  616. * Close engine.
  617. * This function always closes the engine even if it returns false.
  618. * In other words, even when something goes wrong when closing the engine it still be closed nonetheless.
  619. */
  620. virtual bool close();
  621. /*!
  622. * Idle engine.
  623. */
  624. virtual void idle() noexcept;
  625. /*!
  626. * Check if engine is running.
  627. */
  628. virtual bool isRunning() const noexcept = 0;
  629. /*!
  630. * Check if engine is running offline (aka freewheel mode).
  631. */
  632. virtual bool isOffline() const noexcept = 0;
  633. /*!
  634. * Check if engine runs on a constant buffer size value.
  635. * Default implementation returns true.
  636. */
  637. virtual bool usesConstantBufferSize() const noexcept;
  638. /*!
  639. * Get engine type.
  640. */
  641. virtual EngineType getType() const noexcept = 0;
  642. /*!
  643. * Get the currently used driver name.
  644. */
  645. virtual const char* getCurrentDriverName() const noexcept = 0;
  646. /*!
  647. * Add new engine client.
  648. * @note This function must only be called within a plugin class.
  649. */
  650. virtual CarlaEngineClient* addClient(CarlaPlugin* const plugin);
  651. // -------------------------------------------------------------------
  652. // Plugin management
  653. /*!
  654. * Add new plugin.
  655. * @see ENGINE_CALLBACK_PLUGIN_ADDED
  656. */
  657. bool addPlugin(const BinaryType btype, const PluginType ptype,
  658. const char* const filename, const char* const name, const char* const label, const int64_t uniqueId,
  659. const void* const extra, const uint options);
  660. /*!
  661. * Add new plugin, using native binary type and default options.
  662. * @see ENGINE_CALLBACK_PLUGIN_ADDED
  663. */
  664. bool addPlugin(const PluginType ptype,
  665. const char* const filename, const char* const name, const char* const label, const int64_t uniqueId,
  666. const void* const extra);
  667. /*!
  668. * Remove plugin with id @a id.
  669. * @see ENGINE_CALLBACK_PLUGIN_REMOVED
  670. */
  671. bool removePlugin(const uint id);
  672. /*!
  673. * Remove all plugins.
  674. */
  675. bool removeAllPlugins();
  676. #ifndef BUILD_BRIDGE
  677. /*!
  678. * Rename plugin with id @a id to @a newName.
  679. * Returns the new name, or null if the operation failed.
  680. * Returned variable must be deleted if non-null.
  681. * @see ENGINE_CALLBACK_PLUGIN_RENAMED
  682. */
  683. virtual const char* renamePlugin(const uint id, const char* const newName);
  684. /*!
  685. * Clone plugin with id @a id.
  686. */
  687. bool clonePlugin(const uint id);
  688. /*!
  689. * Prepare replace of plugin with id @a id.
  690. * The next call to addPlugin() will use this id, replacing the selected plugin.
  691. * @note This function requires addPlugin() to be called afterwards, as soon as possible.
  692. */
  693. bool replacePlugin(const uint id) noexcept;
  694. /*!
  695. * Switch plugins with id @a idA and @a idB.
  696. */
  697. bool switchPlugins(const uint idA, const uint idB) noexcept;
  698. #endif
  699. /*!
  700. * Get plugin with id @a id.
  701. */
  702. CarlaPlugin* getPlugin(const uint id) const noexcept;
  703. /*!
  704. * Get plugin with id @a id, faster unchecked version.
  705. */
  706. CarlaPlugin* getPluginUnchecked(const uint id) const noexcept;
  707. /*!
  708. * Get a unique plugin name within the engine.
  709. * Returned variable must be deleted if non-null.
  710. */
  711. const char* getUniquePluginName(const char* const name) const;
  712. // -------------------------------------------------------------------
  713. // Project management
  714. /*!
  715. * Load a file of any type.
  716. * This will try to load a generic file as a plugin,
  717. * either by direct handling (GIG, SF2 and SFZ) or by using an internal plugin (like Audio and MIDI).
  718. */
  719. bool loadFile(const char* const filename);
  720. /*!
  721. * Load a project file.
  722. * @note Already loaded plugins are not removed; call removeAllPlugins() first if needed.
  723. */
  724. bool loadProject(const char* const filename);
  725. /*!
  726. * Save current project to a file.
  727. */
  728. bool saveProject(const char* const filename);
  729. // -------------------------------------------------------------------
  730. // Information (base)
  731. /*!
  732. * Get the current engine driver hints.
  733. * @see EngineDriverHints
  734. */
  735. uint getHints() const noexcept;
  736. /*!
  737. * Get the current buffer size.
  738. */
  739. uint32_t getBufferSize() const noexcept;
  740. /*!
  741. * Get the current sample rate.
  742. */
  743. double getSampleRate() const noexcept;
  744. /*!
  745. * Get the current engine name.
  746. */
  747. const char* getName() const noexcept;
  748. /*!
  749. * Get the current engine proccess mode.
  750. */
  751. EngineProcessMode getProccessMode() const noexcept;
  752. /*!
  753. * Get the current engine options (read-only).
  754. */
  755. const EngineOptions& getOptions() const noexcept;
  756. /*!
  757. * Get the current Time information (read-only).
  758. */
  759. const EngineTimeInfo& getTimeInfo() const noexcept;
  760. // -------------------------------------------------------------------
  761. // Information (peaks)
  762. /*!
  763. * TODO.
  764. */
  765. float getInputPeak(const uint pluginId, const bool isLeft) const noexcept;
  766. /*!
  767. * TODO.
  768. */
  769. float getOutputPeak(const uint pluginId, const bool isLeft) const noexcept;
  770. // -------------------------------------------------------------------
  771. // Callback
  772. /*!
  773. * Call the main engine callback, if set.
  774. * May be called by plugins.
  775. */
  776. virtual void callback(const EngineCallbackOpcode action, const uint pluginId, const int value1, const int value2, const float value3, const char* const valueStr) noexcept;
  777. /*!
  778. * Set the main engine callback to @a func.
  779. */
  780. void setCallback(const EngineCallbackFunc func, void* const ptr) noexcept;
  781. // -------------------------------------------------------------------
  782. // Callback
  783. /*!
  784. * Call the file callback, if set.
  785. * May be called by plugins.
  786. */
  787. const char* runFileCallback(const FileCallbackOpcode action, const bool isDir, const char* const title, const char* const filter) noexcept;
  788. /*!
  789. * Set the file callback to @a func.
  790. */
  791. void setFileCallback(const FileCallbackFunc func, void* const ptr) noexcept;
  792. #ifndef BUILD_BRIDGE
  793. // -------------------------------------------------------------------
  794. // Patchbay
  795. /*!
  796. * Connect two patchbay ports.
  797. */
  798. virtual bool patchbayConnect(const uint groupA, const uint portA, const uint groupB, const uint portB);
  799. /*!
  800. * Remove a patchbay connection.
  801. */
  802. virtual bool patchbayDisconnect(const uint connectionId);
  803. /*!
  804. * Force the engine to resend all patchbay clients, ports and connections again.
  805. */
  806. virtual bool patchbayRefresh(const bool external);
  807. #endif
  808. // -------------------------------------------------------------------
  809. // Transport
  810. /*!
  811. * Start playback of the engine transport.
  812. */
  813. virtual void transportPlay() noexcept;
  814. /*!
  815. * Pause the engine transport.
  816. */
  817. virtual void transportPause() noexcept;
  818. /*!
  819. * Relocate the engine transport to @a frames.
  820. */
  821. virtual void transportRelocate(const uint64_t frame) noexcept;
  822. // -------------------------------------------------------------------
  823. // Error handling
  824. /*!
  825. * Get last error.
  826. */
  827. const char* getLastError() const noexcept;
  828. /*!
  829. * Set last error.
  830. */
  831. void setLastError(const char* const error) const noexcept;
  832. // -------------------------------------------------------------------
  833. // Misc
  834. /*!
  835. * Check if the engine is about to close.
  836. */
  837. bool isAboutToClose() const noexcept;
  838. /*!
  839. * Tell the engine it's about to close.
  840. * This is used to prevent the engine thread(s) from reactivating.
  841. * Returns true if there's no pending engine events.
  842. */
  843. bool setAboutToClose() noexcept;
  844. // -------------------------------------------------------------------
  845. // Options
  846. /*!
  847. * Set the engine option @a option to @a value or @a valueStr.
  848. */
  849. void setOption(const EngineOption option, const int value, const char* const valueStr) noexcept;
  850. // -------------------------------------------------------------------
  851. // OSC Stuff
  852. #ifndef BUILD_BRIDGE
  853. /*!
  854. * Check if OSC controller is registered.
  855. */
  856. bool isOscControlRegistered() const noexcept;
  857. #endif
  858. /*!
  859. * Idle OSC.
  860. */
  861. void idleOsc() const noexcept;
  862. /*!
  863. * Get OSC TCP server path.
  864. */
  865. const char* getOscServerPathTCP() const noexcept;
  866. /*!
  867. * Get OSC UDP server path.
  868. */
  869. const char* getOscServerPathUDP() const noexcept;
  870. // -------------------------------------------------------------------
  871. // Helper functions
  872. /*!
  873. * Return internal data, needed for EventPorts when used in Rack, Patchbay and Bridge modes.
  874. * @note RT call
  875. */
  876. EngineEvent* getInternalEventBuffer(const bool isInput) const noexcept;
  877. #ifndef BUILD_BRIDGE
  878. /*!
  879. * Virtual functions for handling external graph ports.
  880. */
  881. virtual bool connectExternalGraphPort(const uint, const uint, const char* const);
  882. virtual bool disconnectExternalGraphPort(const uint, const uint, const char* const);
  883. #endif
  884. // -------------------------------------------------------------------
  885. protected:
  886. /*!
  887. * Internal data, for CarlaEngine subclasses only.
  888. */
  889. struct ProtectedData;
  890. ProtectedData* const pData;
  891. /*!
  892. * Some internal classes read directly from pData or call protected functions.
  893. */
  894. friend class CarlaPluginInstance;
  895. friend class EngineInternalGraph;
  896. friend class PendingRtEventsRunner;
  897. friend class ScopedActionLock;
  898. friend class ScopedEngineEnvironmentLocker;
  899. friend class ScopedThreadStopper;
  900. friend struct PatchbayGraph;
  901. friend struct RackGraph;
  902. // -------------------------------------------------------------------
  903. // Internal stuff
  904. /*!
  905. * Report to all plugins about buffer size change.
  906. */
  907. void bufferSizeChanged(const uint32_t newBufferSize);
  908. /*!
  909. * Report to all plugins about sample rate change.
  910. * This is not supported on all plugin types, in which case they will have to be re-initiated.
  911. */
  912. void sampleRateChanged(const double newSampleRate);
  913. /*!
  914. * Report to all plugins about offline mode change.
  915. */
  916. void offlineModeChanged(const bool isOffline);
  917. /*!
  918. * Set a plugin (stereo) peak values.
  919. * @note RT call
  920. */
  921. void setPluginPeaks(const uint pluginId, float const inPeaks[2], float const outPeaks[2]) noexcept;
  922. /*!
  923. * Common save project function for main engine and plugin.
  924. */
  925. void saveProjectInternal(juce::MemoryOutputStream& outStrm) const;
  926. /*!
  927. * Common load project function for main engine and plugin.
  928. */
  929. bool loadProjectInternal(juce::XmlDocument& xmlDoc);
  930. #ifndef BUILD_BRIDGE
  931. // -------------------------------------------------------------------
  932. // Patchbay stuff
  933. /*!
  934. * Virtual functions for handling patchbay state.
  935. * Do not free returned data.
  936. */
  937. virtual const char* const* getPatchbayConnections(const bool external) const;
  938. virtual void restorePatchbayConnection(const bool external, const char* const sourcePort, const char* const targetPort, const bool sendCallback);
  939. #endif
  940. // -------------------------------------------------------------------
  941. public:
  942. /*!
  943. * Native audio APIs.
  944. */
  945. enum AudioApi {
  946. AUDIO_API_NULL = 0,
  947. // common
  948. AUDIO_API_JACK = 1,
  949. // linux
  950. AUDIO_API_ALSA = 2,
  951. AUDIO_API_OSS = 3,
  952. AUDIO_API_PULSE = 4,
  953. // macos
  954. AUDIO_API_CORE = 5,
  955. // windows
  956. AUDIO_API_ASIO = 6,
  957. AUDIO_API_DS = 7
  958. };
  959. // -------------------------------------------------------------------
  960. // Engine initializers
  961. // JACK
  962. static CarlaEngine* newJack();
  963. #ifdef BUILD_BRIDGE
  964. // Bridge
  965. static CarlaEngine* newBridge(const char* const audioPoolBaseName, const char* const rtClientBaseName, const char* const nonRtClientBaseName, const char* const nonRtServerBaseName);
  966. #else
  967. # if defined(CARLA_OS_MAC) || defined(CARLA_OS_WIN)
  968. // Juce
  969. static CarlaEngine* newJuce(const AudioApi api);
  970. static uint getJuceApiCount();
  971. static const char* getJuceApiName(const uint index);
  972. static const char* const* getJuceApiDeviceNames(const uint index);
  973. static const EngineDriverDeviceInfo* getJuceDeviceInfo(const uint index, const char* const deviceName);
  974. # else
  975. // RtAudio
  976. static CarlaEngine* newRtAudio(const AudioApi api);
  977. static uint getRtAudioApiCount();
  978. static const char* getRtAudioApiName(const uint index);
  979. static const char* const* getRtAudioApiDeviceNames(const uint index);
  980. static const EngineDriverDeviceInfo* getRtAudioDeviceInfo(const uint index, const char* const deviceName);
  981. # endif
  982. #endif
  983. #ifndef BUILD_BRIDGE
  984. // -------------------------------------------------------------------
  985. // OSC Controller stuff
  986. void oscSend_control_add_plugin_start(const uint pluginId, const char* const pluginName) const noexcept;
  987. void oscSend_control_add_plugin_end(const uint pluginId) const noexcept;
  988. void oscSend_control_remove_plugin(const uint pluginId) const noexcept;
  989. void oscSend_control_set_plugin_info1(const uint pluginId, const PluginType type, const PluginCategory category, const uint hints, const int64_t uniqueId) const noexcept;
  990. 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;
  991. void oscSend_control_set_audio_count(const uint pluginId, const uint32_t ins, const uint32_t outs) const noexcept;
  992. void oscSend_control_set_midi_count(const uint pluginId, const uint32_t ins, const uint32_t outs) const noexcept;
  993. void oscSend_control_set_parameter_count(const uint pluginId, const uint32_t ins, const uint32_t outs) const noexcept;
  994. void oscSend_control_set_program_count(const uint pluginId, const uint32_t count) const noexcept;
  995. void oscSend_control_set_midi_program_count(const uint pluginId, const uint32_t count) const noexcept;
  996. 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;
  997. void oscSend_control_set_parameter_ranges1(const uint pluginId, const uint32_t index, const float def, const float min, const float max) const noexcept;
  998. void oscSend_control_set_parameter_ranges2(const uint pluginId, const uint32_t index, const float step, const float stepSmall, const float stepLarge) const noexcept;
  999. void oscSend_control_set_parameter_midi_cc(const uint pluginId, const uint32_t index, const int16_t cc) const noexcept;
  1000. void oscSend_control_set_parameter_midi_channel(const uint pluginId, const uint32_t index, const uint8_t channel) const noexcept;
  1001. 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)
  1002. void oscSend_control_set_default_value(const uint pluginId, const uint32_t index, const float value) const noexcept;
  1003. void oscSend_control_set_current_program(const uint pluginId, const int32_t index) const noexcept;
  1004. void oscSend_control_set_current_midi_program(const uint pluginId, const int32_t index) const noexcept;
  1005. void oscSend_control_set_program_name(const uint pluginId, const uint32_t index, const char* const name) const noexcept;
  1006. 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;
  1007. void oscSend_control_note_on(const uint pluginId, const uint8_t channel, const uint8_t note, const uint8_t velo) const noexcept;
  1008. void oscSend_control_note_off(const uint pluginId, const uint8_t channel, const uint8_t note) const noexcept;
  1009. void oscSend_control_set_peaks(const uint pluginId) const noexcept;
  1010. void oscSend_control_exit() const noexcept;
  1011. #endif
  1012. CARLA_DECLARE_NON_COPY_CLASS(CarlaEngine)
  1013. };
  1014. /**@}*/
  1015. // -----------------------------------------------------------------------
  1016. CARLA_BACKEND_END_NAMESPACE
  1017. #endif // CARLA_ENGINE_HPP_INCLUDED