|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411 |
- /*
- * Carla Plugin Host
- * Copyright (C) 2011-2022 Filipe Coelho <falktx@falktx.com>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * For a full copy of the GNU General Public License see the doc/GPL.txt file.
- */
-
- #ifndef CARLA_ENGINE_HPP_INCLUDED
- #define CARLA_ENGINE_HPP_INCLUDED
-
- #include "CarlaBackend.h"
- #include "CarlaPluginPtr.hpp"
-
- namespace water {
- class MemoryOutputStream;
- class XmlDocument;
- }
-
- CARLA_BACKEND_START_NAMESPACE
-
- // -----------------------------------------------------------------------
-
- /*!
- * @defgroup CarlaEngineAPI Carla Engine API
- *
- * The Carla Engine API.
- * @{
- */
-
- /*!
- * The type of an engine.
- */
- enum EngineType {
- /*!
- * Null engine type.
- */
- kEngineTypeNull = 0,
-
- /*!
- * JACK engine type.
- * Provides all processing modes.
- */
- kEngineTypeJack = 1,
-
- /*!
- * JUCE engine type, used to provide Native Audio and MIDI support.
- */
- kEngineTypeJuce = 2,
-
- /*!
- * RtAudio engine type, used to provide Native Audio and MIDI support.
- */
- kEngineTypeRtAudio = 3,
-
- /*!
- * SDL engine type, used to provide Native Audio support.
- */
- kEngineTypeSDL = 4,
-
- /*!
- * Plugin engine type, used to export the engine as a plugin.
- */
- kEngineTypePlugin = 5,
-
- /*!
- * Bridge engine type, used in BridgePlugin class.
- */
- kEngineTypeBridge = 6,
-
- /*!
- * Dummy engine type, does not send audio or MIDI anywhere.
- */
- kEngineTypeDummy = 7
- };
-
- /*!
- * The type of an engine port.
- */
- enum EnginePortType {
- /*!
- * Null port type.
- */
- kEnginePortTypeNull = 0,
-
- /*!
- * Audio port type.
- * @see CarlaEngineAudioPort
- */
- kEnginePortTypeAudio = 1,
-
- /*!
- * CV port type.
- * @see CarlaEngineCVPort
- */
- kEnginePortTypeCV = 2,
-
- /*!
- * Event port type (Control or MIDI).
- * @see CarlaEngineEventPort
- */
- kEnginePortTypeEvent = 3
- };
-
- /*!
- * The type of an engine event.
- */
- enum EngineEventType {
- /*!
- * Null port type.
- */
- kEngineEventTypeNull = 0,
-
- /*!
- * Control event type.
- * @see EngineControlEvent
- */
- kEngineEventTypeControl = 1,
-
- /*!
- * MIDI event type.
- * @see EngineMidiEvent
- */
- kEngineEventTypeMidi = 2
- };
-
- /*!
- * The type of an engine control event.
- */
- enum EngineControlEventType {
- /*!
- * Null event type.
- */
- kEngineControlEventTypeNull = 0,
-
- /*!
- * Parameter event type.
- * @note Value uses a normalized range of 0.0f<->1.0f.
- */
- kEngineControlEventTypeParameter = 1,
-
- /*!
- * MIDI Bank event type.
- */
- kEngineControlEventTypeMidiBank = 2,
-
- /*!
- * MIDI Program change event type.
- */
- kEngineControlEventTypeMidiProgram = 3,
-
- /*!
- * All sound off event type.
- */
- kEngineControlEventTypeAllSoundOff = 4,
-
- /*!
- * All notes off event type.
- */
- kEngineControlEventTypeAllNotesOff = 5
- };
-
- /*!
- * Special value for EngineEvent channel field, indicating a non-midi parameter event.
- */
- static const uint8_t kEngineEventNonMidiChannel = 0x30;
-
- // -----------------------------------------------------------------------
-
- /*!
- * Engine control event.
- */
- struct CARLA_API EngineControlEvent {
- EngineControlEventType type; //!< Control-Event type.
- uint16_t param; //!< Parameter Id, midi bank or midi program.
- int8_t midiValue; //!< Raw midi value, >= 0 if applicable, -1 otherwise.
- float normalizedValue; //!< Parameter value, normalized to 0.0f<->1.0f.
- bool handled; //!< Indicates that event was handled/received at least once.
-
- /*!
- * Convert this control event into MIDI data.
- * Returns size.
- */
- uint8_t convertToMidiData(uint8_t channel, uint8_t data[3]) const noexcept;
- };
-
- /*!
- * Engine MIDI event.
- */
- struct CARLA_API EngineMidiEvent {
- static const uint8_t kDataSize = 4; //!< Size of internal data
-
- uint8_t port; //!< Port offset (usually 0)
- uint8_t size; //!< Number of bytes used
-
- /*!
- * MIDI data, without channel bit.
- * If size > kDataSize, dataExt is used (otherwise NULL).
- */
- uint8_t data[kDataSize];
- const uint8_t* dataExt;
- };
-
- /*!
- * Engine event.
- */
- struct CARLA_API EngineEvent {
- EngineEventType type; //!< Event Type; either Control or MIDI
- uint32_t time; //!< Time offset in frames
- uint8_t channel; //!< Channel, used for MIDI-related events
-
- /*!
- * Event specific data.
- */
- union {
- EngineControlEvent ctrl;
- EngineMidiEvent midi;
- };
-
- /*!
- * Fill this event from MIDI data.
- */
- void fillFromMidiData(uint8_t size, const uint8_t* data, uint8_t midiPortOffset) noexcept;
- };
-
- // -----------------------------------------------------------------------
-
- /*!
- * Engine options.
- */
- struct CARLA_API EngineOptions {
- EngineProcessMode processMode;
- EngineTransportMode transportMode;
- const char* transportExtra;
-
- bool forceStereo;
- bool resetXruns;
- bool preferPluginBridges;
- bool preferUiBridges;
- bool uisAlwaysOnTop;
- bool pluginsAreStandalone;
- uint bgColor;
- uint fgColor;
- float uiScale;
-
- uint maxParameters;
- uint uiBridgesTimeout;
- uint audioBufferSize;
- uint audioSampleRate;
- bool audioTripleBuffer;
- const char* audioDriver;
- const char* audioDevice;
-
- #ifndef BUILD_BRIDGE
- bool oscEnabled;
- int oscPortTCP;
- int oscPortUDP;
- #endif
-
- const char* pathAudio;
- const char* pathMIDI;
-
- const char* pathLADSPA;
- const char* pathDSSI;
- const char* pathLV2;
- const char* pathVST2;
- const char* pathVST3;
- const char* pathSF2;
- const char* pathSFZ;
- const char* pathJSFX;
- const char* pathCLAP;
-
- const char* binaryDir;
- const char* resourceDir;
- const char* clientNamePrefix;
-
- bool preventBadBehaviour;
- uintptr_t frontendWinId;
-
- #ifndef CARLA_OS_WIN
- struct Wine {
- const char* executable;
-
- bool autoPrefix;
- const char* fallbackPrefix;
-
- bool rtPrio;
- int baseRtPrio;
- int serverRtPrio;
-
- Wine() noexcept;
- ~Wine() noexcept;
- CARLA_DECLARE_NON_COPYABLE(Wine)
- } wine;
- #endif
-
- #ifndef DOXYGEN
- EngineOptions() noexcept;
- ~EngineOptions() noexcept;
- CARLA_DECLARE_NON_COPYABLE(EngineOptions)
- #endif
- };
-
- /*!
- * Engine BBT Time information.
- */
- struct CARLA_API EngineTimeInfoBBT {
- bool valid;
-
- int32_t bar; //!< current bar
- int32_t beat; //!< current beat-within-bar
- double tick; //!< current tick-within-beat
- double barStartTick;
-
- float beatsPerBar; //!< time signature "numerator"
- float beatType; //!< time signature "denominator"
-
- double ticksPerBeat;
- double beatsPerMinute;
-
- /*!
- * Clear.
- */
- void clear() noexcept;
-
- #ifndef DOXYGEN
- EngineTimeInfoBBT() noexcept;
- EngineTimeInfoBBT(const EngineTimeInfoBBT&) noexcept;
- #endif
- };
-
- /*!
- * Engine Time information.
- */
- struct CARLA_API EngineTimeInfo {
- bool playing;
- uint64_t frame;
- uint64_t usecs;
- EngineTimeInfoBBT bbt;
-
- /*!
- * Clear.
- */
- void clear() noexcept;
-
- #ifndef DOXYGEN
- EngineTimeInfo() noexcept;
- EngineTimeInfo(const EngineTimeInfo&) noexcept;
- EngineTimeInfo& operator=(const EngineTimeInfo&) noexcept;
-
- // fast comparison, doesn't check all values
- bool compareIgnoringRollingFrames(const EngineTimeInfo& timeInfo, uint32_t maxFrames) const noexcept;
-
- // quick operator, doesn't check all values
- bool operator==(const EngineTimeInfo& timeInfo) const noexcept;
- bool operator!=(const EngineTimeInfo& timeInfo) const noexcept;
- #endif
- };
-
- // -----------------------------------------------------------------------
-
- /*!
- * Carla Engine port (Abstract).
- * This is the base class for all Carla Engine ports.
- */
- class CARLA_API CarlaEnginePort
- {
- protected:
- /*!
- * The constructor, protected.
- * All constructor parameters are constant and will never change in the lifetime of the port.
- */
- CarlaEnginePort(const CarlaEngineClient& client, bool isInputPort, uint32_t indexOffset) noexcept;
-
- public:
- /*!
- * The destructor.
- */
- virtual ~CarlaEnginePort() noexcept;
-
- /*!
- * Get the type of the port, as provided by the respective subclasses.
- */
- virtual EnginePortType getType() const noexcept = 0;
-
- /*!
- * Initialize the port's internal buffer.
- */
- virtual void initBuffer() noexcept = 0;
-
- /*!
- * Check if this port is an input.
- */
- inline bool isInput() const noexcept
- {
- return kIsInput;
- }
-
- /*!
- * Get the index offset as passed in the constructor.
- */
- inline uint32_t getIndexOffset() const noexcept
- {
- return kIndexOffset;
- }
-
- /*!
- * Get this ports' engine client.
- */
- inline const CarlaEngineClient& getEngineClient() const noexcept
- {
- return kClient;
- }
-
- /*!
- * Set a meta-data property on this port.
- */
- virtual void setMetaData(const char* key, const char* value, const char* type);
-
- #ifndef DOXYGEN
- protected:
- const CarlaEngineClient& kClient;
- const bool kIsInput;
- const uint32_t kIndexOffset;
-
- CARLA_DECLARE_NON_COPYABLE(CarlaEnginePort)
- #endif
- };
-
- /*!
- * Carla Engine Audio port.
- */
- class CARLA_API CarlaEngineAudioPort : public CarlaEnginePort
- {
- public:
- /*!
- * The constructor.
- * All constructor parameters are constant and will never change in the lifetime of the port.
- */
- CarlaEngineAudioPort(const CarlaEngineClient& client, bool isInputPort, uint32_t indexOffset) noexcept;
-
- /*!
- * The destructor.
- */
- ~CarlaEngineAudioPort() noexcept override;
-
- /*!
- * Get the type of the port, in this case kEnginePortTypeAudio.
- */
- inline EnginePortType getType() const noexcept final
- {
- return kEnginePortTypeAudio;
- }
-
- /*!
- * Initialize the port's internal buffer.
- */
- void initBuffer() noexcept override;
-
- /*!
- * Direct access to the port's audio buffer.
- * May be null.
- */
- inline float* getBuffer() const noexcept
- {
- return fBuffer;
- }
-
- #ifndef DOXYGEN
- protected:
- float* fBuffer;
-
- CARLA_DECLARE_NON_COPYABLE(CarlaEngineAudioPort)
- #endif
- };
-
- /*!
- * Carla Engine CV port.
- */
- class CARLA_API CarlaEngineCVPort : public CarlaEnginePort
- {
- public:
- /*!
- * The constructor.
- * All constructor parameters are constant and will never change in the lifetime of the port.
- */
- CarlaEngineCVPort(const CarlaEngineClient& client, bool isInputPort, uint32_t indexOffset) noexcept;
-
- /*!
- * The destructor.
- */
- ~CarlaEngineCVPort() noexcept override;
-
- /*!
- * Get the type of the port, in this case kEnginePortTypeCV.
- */
- inline EnginePortType getType() const noexcept final
- {
- return kEnginePortTypeCV;
- }
-
- /*!
- * Initialize the port's internal buffer.
- */
- void initBuffer() noexcept override;
-
- /*!
- * Direct access to the port's CV buffer.
- * May be null.
- */
- inline float* getBuffer() const noexcept
- {
- return fBuffer;
- }
-
- /*!
- * Get min/max range for this CV port.
- */
- inline void getRange(float& min, float& max) const noexcept
- {
- min = fMinimum;
- max = fMaximum;
- }
-
- /*!
- * Set min/max range for this CV port.
- */
- void setRange(float min, float max) noexcept;
-
- #ifndef DOXYGEN
- protected:
- float* fBuffer;
- float fMinimum, fMaximum;
-
- CARLA_DECLARE_NON_COPYABLE(CarlaEngineCVPort)
- #endif
- };
-
- /*!
- * Carla Engine Event port.
- */
- class CARLA_API CarlaEngineEventPort : public CarlaEnginePort
- {
- public:
- /*!
- * The constructor.
- * All constructor parameters are constant and will never change in the lifetime of the port.
- */
- CarlaEngineEventPort(const CarlaEngineClient& client, bool isInputPort, uint32_t indexOffset) noexcept;
-
- /*!
- * The destructor.
- */
- ~CarlaEngineEventPort() noexcept override;
-
- /*!
- * Get the type of the port, in this case kEnginePortTypeEvent.
- */
- inline EnginePortType getType() const noexcept final
- {
- return kEnginePortTypeEvent;
- }
-
- /*!
- * Initialize the port's internal buffer for @a engine.
- */
- void initBuffer() noexcept override;
-
- /*!
- * Get the number of events present in the buffer.
- * @note You must only call this for input ports.
- */
- virtual uint32_t getEventCount() const noexcept;
-
- /*!
- * Get the event at @a index.
- * @note You must only call this for input ports.
- */
- virtual EngineEvent& getEvent(uint32_t index) const noexcept;
-
- /*!
- * Get the event at @a index, faster unchecked version.
- */
- virtual EngineEvent& getEventUnchecked(uint32_t index) const noexcept;
-
- /*!
- * Write a control event into the buffer.
- * @note You must only call this for output ports.
- */
- bool writeControlEvent(uint32_t time, uint8_t channel, const EngineControlEvent& ctrl) noexcept;
-
- /*!
- * Write a control event into the buffer.
- * Arguments are the same as in the EngineControlEvent struct.
- * @note You must only call this for output ports.
- */
- virtual bool writeControlEvent(uint32_t time, uint8_t channel, EngineControlEventType type,
- uint16_t param, int8_t midiValue, float normalizedValue) noexcept;
-
- /*!
- * Write a MIDI event into the buffer.
- * @note You must only call this for output ports.
- */
- bool writeMidiEvent(uint32_t time, uint8_t size, const uint8_t* data) noexcept;
-
- /*!
- * Write a MIDI event into the buffer.
- * @note You must only call this for output ports.
- */
- bool writeMidiEvent(uint32_t time, uint8_t channel, const EngineMidiEvent& midi) noexcept;
-
- /*!
- * Write a MIDI event into the buffer.
- * Arguments are the same as in the EngineMidiEvent struct.
- * @note You must only call this for output ports.
- */
- virtual bool writeMidiEvent(uint32_t time, uint8_t channel, uint8_t size, const uint8_t* data) noexcept;
-
- #ifndef DOXYGEN
- protected:
- const EngineProcessMode kProcessMode;
- EngineEvent* fBuffer;
- friend class CarlaPluginInstance;
- friend class CarlaEngineCVSourcePorts;
-
- CARLA_DECLARE_NON_COPYABLE(CarlaEngineEventPort)
- #endif
- };
-
- // -----------------------------------------------------------------------
-
- /*!
- * Carla Engine Meta CV Port.
- * FIXME needs a better name...
- */
- class CARLA_API CarlaEngineCVSourcePorts
- {
- public:
- /*!
- * The destructor.
- */
- virtual ~CarlaEngineCVSourcePorts();
-
- /*!
- * Add a CV port as a source of events.
- */
- virtual bool addCVSource(CarlaEngineCVPort* port, uint32_t portIndexOffset, bool reconfigureNow);
-
- /*!
- * Remove a CV port as a source of events.
- */
- virtual bool removeCVSource(uint32_t portIndexOffset);
-
- /*!
- * Get events and add them to an event port.
- * FIXME needs a better name...
- */
- virtual void initPortBuffers(const float* const* buffers, uint32_t frames,
- bool sampleAccurate, CarlaEngineEventPort* eventPort);
-
- /*!
- * Set value range for a CV port.
- */
- bool setCVSourceRange(uint32_t portIndexOffset, float minimum, float maximum);
-
- /*!
- * Destroy all ports.
- */
- void cleanup();
-
- #ifndef DOXYGEN
- protected:
- /** @internal */
- struct ProtectedData;
- ProtectedData* const pData;
-
- /*!
- * The constructor, protected.
- */
- CarlaEngineCVSourcePorts();
-
- CARLA_DECLARE_NON_COPYABLE(CarlaEngineCVSourcePorts)
- #endif
- };
-
- // -----------------------------------------------------------------------
-
- /*!
- * Carla Engine Client.
- * Each plugin requires one client from the engine (created via CarlaEngine::addClient()).
- * @note This is a virtual class, some engine types provide custom functionality.
- */
- class CARLA_API CarlaEngineClient
- {
- public:
- /*!
- * The destructor.
- */
- virtual ~CarlaEngineClient() noexcept;
-
- /*!
- * Activate this client.
- * Client must be deactivated before calling this function.
- */
- virtual void activate() noexcept;
-
- /*!
- * Deactivate this client.
- * Client must be activated before calling this function.
- */
- virtual void deactivate(bool willClose) noexcept;
-
- /*!
- * Check if the client is activated.
- */
- virtual bool isActive() const noexcept;
-
- /*!
- * Check if the client is ok.
- * Plugins will refuse to instantiate if this returns false.
- * @note This is always true in rack and patchbay processing modes.
- */
- virtual bool isOk() const noexcept;
-
- /*!
- * Get the current latency, in samples.
- */
- virtual uint32_t getLatency() const noexcept;
-
- /*!
- * Change the client's latency.
- */
- virtual void setLatency(uint32_t samples) noexcept;
-
- /*!
- * Add a new port of type @a portType.
- * @note This function does nothing in rack processing mode since ports are static there.
- */
- virtual CarlaEnginePort* addPort(EnginePortType portType, const char* name, bool isInput, uint32_t indexOffset);
-
- /*!
- * Remove a previously added port via addPort().
- */
- virtual bool removePort(EnginePortType portType, const char* name, bool isInput);
-
- #ifndef BUILD_BRIDGE_ALTERNATIVE_ARCH
- /*!
- * Create an instance of CV source ports.
- * Must be called only once per client.
- */
- virtual CarlaEngineCVSourcePorts* createCVSourcePorts();
- #endif
-
- /*!
- * Get this client's engine.
- */
- const CarlaEngine& getEngine() const noexcept;
-
- /*!
- * Get the engine's process mode.
- */
- EngineProcessMode getProcessMode() const noexcept;
-
- /*!
- * Get port count for a type and mode.
- */
- uint getPortCount(EnginePortType portType, bool isInput) const noexcept;
-
- /*!
- * Get an audio port name.
- */
- const char* getAudioPortName(bool isInput, uint index) const noexcept;
-
- /*!
- * Get a CV port name.
- */
- const char* getCVPortName(bool isInput, uint index) const noexcept;
-
- /*!
- * Get an event port name.
- */
- const char* getEventPortName(bool isInput, uint index) const noexcept;
-
- #ifndef DOXYGEN
- protected:
- /** @internal */
- struct ProtectedData;
- ProtectedData* const pData;
-
- /*!
- * The constructor, protected.
- */
- CarlaEngineClient(ProtectedData* pData);
-
- CARLA_DECLARE_NON_COPYABLE(CarlaEngineClient)
- #endif
- };
-
- // -----------------------------------------------------------------------
-
- /*!
- * Carla Engine.
- * @note This is a virtual class for all available engine types available in Carla.
- */
- class CARLA_API CarlaEngine
- {
- protected:
- /*!
- * The constructor, protected.
- * @note This only initializes engine data, it doesn't actually start the engine.
- */
- CarlaEngine();
-
- public:
- /*!
- * The destructor.
- * The engine must have been closed before this happens.
- */
- virtual ~CarlaEngine();
-
- // -------------------------------------------------------------------
- // Static calls
-
- /*!
- * Get the number of available engine drivers.
- */
- static uint getDriverCount();
-
- /*!
- * Get the name of the engine driver at @a index.
- */
- static const char* getDriverName(uint index);
-
- /*!
- * Get the device names of the driver at @a index.
- */
- static const char* const* getDriverDeviceNames(uint index);
-
- /*!
- * Get device information about the driver at @a index and name @a driverName.
- */
- static const EngineDriverDeviceInfo* getDriverDeviceInfo(uint index, const char* driverName);
-
- /*!
- * Show a device custom control panel.
- * @see ENGINE_DRIVER_DEVICE_HAS_CONTROL_PANEL
- */
- static bool showDriverDeviceControlPanel(uint index, const char* deviceName);
-
- /*!
- * Create a new engine, using driver @a driverName.
- * Returned value must be deleted when no longer needed.
- * @note This only initializes engine data, it doesn't actually start the engine.
- */
- static CarlaEngine* newDriverByName(const char* driverName);
-
- // -------------------------------------------------------------------
- // Constant values
-
- /*!
- * Maximum client name size.
- */
- virtual uint getMaxClientNameSize() const noexcept;
-
- /*!
- * Maximum port name size.
- */
- virtual uint getMaxPortNameSize() const noexcept;
-
- /*!
- * Current number of plugins loaded.
- */
- uint getCurrentPluginCount() const noexcept;
-
- /*!
- * Maximum number of loadable plugins allowed.
- * This function returns 0 if engine is not started.
- */
- uint getMaxPluginNumber() const noexcept;
-
- // -------------------------------------------------------------------
- // Virtual, per-engine type calls
-
- /*!
- * Initialize/start the engine, using @a clientName.
- * When the engine is initialized, you need to call idle() at regular intervals.
- */
- virtual bool init(const char* clientName) = 0;
-
- /*!
- * Close engine.
- * This function always closes the engine even if it returns false.
- * In other words, even when something goes wrong when closing the engine it still be closed nonetheless.
- */
- virtual bool close();
-
- /*!
- * Idle engine.
- */
- virtual void idle() noexcept;
-
- /*!
- * Check if engine implementation calls idle on the main thread.
- * Typically true unless running Carla as a plugin.
- */
- virtual bool hasIdleOnMainThread() const noexcept = 0;
-
- /*!
- * Check if engine is running.
- */
- virtual bool isRunning() const noexcept = 0;
-
- /*!
- * Check if engine is running offline (aka freewheel mode).
- */
- virtual bool isOffline() const noexcept = 0;
-
- /*!
- * Check if engine runs on a constant buffer size value.
- * Default implementation returns true.
- */
- virtual bool usesConstantBufferSize() const noexcept;
-
- /*!
- * Get engine type.
- */
- virtual EngineType getType() const noexcept = 0;
-
- /*!
- * Get the currently used driver name.
- */
- virtual const char* getCurrentDriverName() const noexcept = 0;
-
- /*!
- * Add new engine client.
- * @note This function must only be called within a plugin class.
- */
- virtual CarlaEngineClient* addClient(CarlaPluginPtr plugin);
-
- /*!
- * Get the current CPU load estimated by the engine.
- */
- virtual float getDSPLoad() const noexcept;
-
- /*!
- * Get the total number of xruns so far.
- */
- virtual uint32_t getTotalXruns() const noexcept;
-
- /*!
- * Clear the xrun count.
- */
- virtual void clearXruns() const noexcept;
-
- /*!
- * Dynamically change buffer size and/or sample rate while engine is running.
- * @see ENGINE_DRIVER_DEVICE_VARIABLE_BUFFER_SIZE
- * @see ENGINE_DRIVER_DEVICE_VARIABLE_SAMPLE_RATE
- */
- virtual bool setBufferSizeAndSampleRate(uint bufferSize, double sampleRate);
-
- /*!
- * Show the custom control panel for the current engine device.
- * @see ENGINE_DRIVER_DEVICE_HAS_CONTROL_PANEL
- */
- virtual bool showDeviceControlPanel() const noexcept;
-
- // -------------------------------------------------------------------
- // Plugin management
-
- /*!
- * Add new plugin.
- * @see ENGINE_CALLBACK_PLUGIN_ADDED
- */
- bool addPlugin(BinaryType btype, PluginType ptype,
- const char* filename, const char* name, const char* label, int64_t uniqueId,
- const void* extra, uint options = PLUGIN_OPTIONS_NULL);
-
- /*!
- * Add new plugin, using native binary type.
- * @see ENGINE_CALLBACK_PLUGIN_ADDED
- */
- bool addPlugin(PluginType ptype,
- const char* filename, const char* name, const char* label, int64_t uniqueId,
- const void* extra);
-
- /*!
- * Remove plugin with id @a id.
- * @see ENGINE_CALLBACK_PLUGIN_REMOVED
- */
- virtual bool removePlugin(uint id);
-
- /*!
- * Remove all plugins.
- */
- bool removeAllPlugins();
-
- #ifndef BUILD_BRIDGE_ALTERNATIVE_ARCH
- /*!
- * Rename plugin with id @a id to @a newName.
- * Returns the new name, or null if the operation failed.
- * Returned variable must be deleted if non-null.
- * @see ENGINE_CALLBACK_PLUGIN_RENAMED
- */
- virtual bool renamePlugin(uint id, const char* newName);
-
- /*!
- * Clone plugin with id @a id.
- */
- bool clonePlugin(uint id);
-
- /*!
- * Prepare replace of plugin with id @a id.
- * The next call to addPlugin() will use this id, replacing the selected plugin.
- * @note This function requires addPlugin() to be called afterwards, as soon as possible.
- */
- bool replacePlugin(uint id) noexcept;
-
- /*!
- * Switch plugins with id @a idA and @a idB.
- */
- virtual bool switchPlugins(uint idA, uint idB) noexcept;
- #endif
-
- /*!
- * Set a plugin's parameter in drag/touch mode.
- * Usually happens from a UI when the user is moving a parameter with a mouse or similar input.
- *
- * @param parameterId The parameter to update
- * @param touch The new state for the parameter
- */
- virtual void touchPluginParameter(uint id, uint32_t parameterId, bool touch) noexcept;
-
- /*!
- * Get plugin with id @a id.
- */
- CarlaPluginPtr getPlugin(uint id) const noexcept;
-
- /*!
- * Get plugin with id @a id, faster unchecked version.
- */
- CarlaPluginPtr getPluginUnchecked(uint id) const noexcept;
-
- /*!
- * Get a unique plugin name within the engine.
- * Returned variable must be deleted if non-null.
- */
- const char* getUniquePluginName(const char* name) const;
-
- // -------------------------------------------------------------------
- // Project management
-
- /*!
- * Load a file of any type.
- * This will try to load a generic file as a plugin,
- * either by direct handling (SF2 and SFZ) or by using an internal plugin (like Audio and MIDI).
- */
- bool loadFile(const char* filename);
-
- /*!
- * Load a project file.
- * @note Already loaded plugins are not removed; call removeAllPlugins() first if needed.
- */
- bool loadProject(const char* filename, bool setAsCurrentProject);
-
- /*!
- * Save current project to a file.
- */
- bool saveProject(const char* filename, bool setAsCurrentProject);
-
- #ifndef BUILD_BRIDGE_ALTERNATIVE_ARCH
- /*!
- * Get the currently set project folder.
- * @note Valid for both standalone and plugin versions.
- */
- virtual const char* getCurrentProjectFolder() const noexcept;
-
- /*!
- * Get the currently set project filename.
- * @note Valid only for both standalone version.
- */
- const char* getCurrentProjectFilename() const noexcept;
-
- /*!
- * Clear the currently set project filename.
- */
- void clearCurrentProjectFilename() noexcept;
- #endif
-
- // -------------------------------------------------------------------
- // Information (base)
-
- /*!
- * Get the current buffer size.
- */
- uint32_t getBufferSize() const noexcept;
-
- /*!
- * Get the current sample rate.
- */
- double getSampleRate() const noexcept;
-
- /*!
- * Get the current engine name.
- */
- const char* getName() const noexcept;
-
- /*!
- * Get the current engine process mode.
- */
- EngineProcessMode getProccessMode() const noexcept;
-
- /*!
- * Get the current engine options (read-only).
- */
- const EngineOptions& getOptions() const noexcept;
-
- /*!
- * Get the current Time information (read-only).
- */
- virtual EngineTimeInfo getTimeInfo() const noexcept;
-
- // -------------------------------------------------------------------
- // Information (peaks)
-
- /*!
- * Get a plugin's peak values.
- * @note not thread-safe if pluginId == MAIN_CARLA_PLUGIN_ID
- */
- const float* getPeaks(uint pluginId) const noexcept;
-
- /*!
- * Get a plugin's input peak value.
- */
- float getInputPeak(uint pluginId, bool isLeft) const noexcept;
-
- /*!
- * Get a plugin's output peak value.
- */
- float getOutputPeak(uint pluginId, bool isLeft) const noexcept;
-
- // -------------------------------------------------------------------
- // Callback
-
- /*!
- * Call the main engine callback, if set.
- * May be called by plugins.
- */
- virtual void callback(bool sendHost, bool sendOSC,
- EngineCallbackOpcode action, uint pluginId,
- int value1, int value2, int value3, float valuef, const char* valueStr) noexcept;
-
- /*!
- * Set the main engine callback to @a func.
- */
- void setCallback(EngineCallbackFunc func, void* ptr) noexcept;
-
- // -------------------------------------------------------------------
- // Callback
-
- /*!
- * Call the file callback, if set.
- * May be called by plugins.
- */
- virtual const char* runFileCallback(FileCallbackOpcode action,
- bool isDir, const char* title, const char* filter) noexcept;
-
- /*!
- * Set the file callback to @a func.
- */
- void setFileCallback(FileCallbackFunc func, void* ptr) noexcept;
-
- #ifndef BUILD_BRIDGE_ALTERNATIVE_ARCH
- // -------------------------------------------------------------------
- // Patchbay
-
- /*!
- * Connect two patchbay ports.
- */
- virtual bool patchbayConnect(bool external,
- uint groupA, uint portA,
- uint groupB, uint portB);
-
- /*!
- * Remove a patchbay connection.
- */
- virtual bool patchbayDisconnect(bool external, uint connectionId);
-
- /*!
- * Set the position of a group.
- */
- virtual bool patchbaySetGroupPos(bool sendHost, bool sendOSC, bool external,
- uint groupId, int x1, int y1, int x2, int y2);
-
- /*!
- * Force the engine to resend all patchbay clients, ports and connections again.
- */
- virtual bool patchbayRefresh(bool sendHost, bool sendOSC, bool external);
- #endif
-
- // -------------------------------------------------------------------
- // Transport
-
- /*!
- * Start playback of the engine transport.
- */
- virtual void transportPlay() noexcept;
-
- /*!
- * Pause the engine transport.
- */
- virtual void transportPause() noexcept;
-
- /*!
- * Set the engine transport bpm to @a bpm.
- */
- virtual void transportBPM(double bpm) noexcept;
-
- /*!
- * Relocate the engine transport to @a frames.
- */
- virtual void transportRelocate(uint64_t frame) noexcept;
-
- // -------------------------------------------------------------------
- // Error handling
-
- /*!
- * Get last error.
- */
- const char* getLastError() const noexcept;
-
- /*!
- * Set last error.
- */
- void setLastError(const char* error) const noexcept;
-
- // -------------------------------------------------------------------
- // Misc
-
- /*!
- * Check if the engine is about to close.
- */
- bool isAboutToClose() const noexcept;
-
- /*!
- * Tell the engine it's about to close.
- * This is used to prevent the engine thread(s) from reactivating.
- * Returns true if there's no pending engine events.
- */
- bool setAboutToClose() noexcept;
-
- #ifndef BUILD_BRIDGE_ALTERNATIVE_ARCH
- /*!
- * TODO.
- */
- bool isLoadingProject() const noexcept;
- #endif
-
- /*!
- * Tell the engine to stop the current cancelable action.
- * @see ENGINE_CALLBACK_CANCELABLE_ACTION
- */
- void setActionCanceled(bool canceled) noexcept;
-
- /*!
- * Check wherever the last cancelable action was indeed canceled or not.
- */
- bool wasActionCanceled() const noexcept;
-
- // -------------------------------------------------------------------
- // Options
-
- /*!
- * Set the engine option @a option to @a value or @a valueStr.
- */
- virtual void setOption(EngineOption option, int value, const char* valueStr) noexcept;
-
- // -------------------------------------------------------------------
- // OSC Stuff
-
- #ifndef BUILD_BRIDGE
- /*!
- * Check if OSC controller is registered.
- */
- bool isOscControlRegistered() const noexcept;
-
- /*!
- * Get OSC TCP server path.
- */
- const char* getOscServerPathTCP() const noexcept;
-
- /*!
- * Get OSC UDP server path.
- */
- const char* getOscServerPathUDP() const noexcept;
- #endif
-
- // -------------------------------------------------------------------
-
- protected:
- /*!
- * Internal data, for CarlaEngine subclasses and friends.
- */
- struct ProtectedData;
- ProtectedData* const pData;
-
- /*!
- * Some internal classes read directly from pData or call protected functions.
- */
- friend class CarlaEngineEventPort;
- friend class CarlaEngineOsc;
- friend class CarlaEngineRunner;
- friend class CarlaPluginInstance;
- friend class EngineInternalGraph;
- friend class PendingRtEventsRunner;
- friend class ScopedActionLock;
- friend class ScopedEngineEnvironmentLocker;
- friend class ScopedRunnerStopper;
- friend class PatchbayGraph;
- friend struct ExternalGraph;
- friend struct RackGraph;
-
- // -------------------------------------------------------------------
- // Internal stuff
-
- /*!
- * Report to all plugins about buffer size change.
- */
- void bufferSizeChanged(uint32_t newBufferSize);
-
- /*!
- * Report to all plugins about sample rate change.
- * This is not supported on all plugin types, in which case they will have to be re-initiated.
- */
- void sampleRateChanged(double newSampleRate);
-
- /*!
- * Report to all plugins about offline mode change.
- */
- void offlineModeChanged(bool isOffline);
-
- /*!
- * Set a plugin (stereo) peak values.
- * @note RT call
- */
- void setPluginPeaksRT(uint pluginId, float const inPeaks[2], float const outPeaks[2]) noexcept;
-
- public:
- /*!
- * Common save project function for main engine and plugin.
- */
- void saveProjectInternal(water::MemoryOutputStream& outStrm) const;
-
- /*!
- * Common load project function for main engine and plugin.
- */
- bool loadProjectInternal(water::XmlDocument& xmlDoc, bool alwaysLoadConnections);
-
- protected:
- // -------------------------------------------------------------------
- // Helper functions
-
- /*!
- * Return internal data, needed for EventPorts when used in Rack, Patchbay and Bridge modes.
- * @note RT call
- */
- EngineEvent* getInternalEventBuffer(bool isInput) const noexcept;
-
- #ifndef BUILD_BRIDGE_ALTERNATIVE_ARCH
- // -------------------------------------------------------------------
- // Patchbay stuff
-
- /*!
- * Virtual functions for handling patchbay state.
- * Do not free returned data.
- */
- struct PatchbayPosition { const char* name; int x1, y1, x2, y2, pluginId; bool dealloc; };
- virtual const char* const* getPatchbayConnections(bool external) const;
- virtual const PatchbayPosition* getPatchbayPositions(bool external, uint& count) const;
- virtual void restorePatchbayConnection(bool external, const char* sourcePort, const char* targetPort);
- // returns true if plugin name mapping found, ppos.name updated to its converted name
- virtual bool restorePatchbayGroupPosition(bool external, PatchbayPosition& ppos);
-
- /*!
- * Virtual functions for handling external graph ports.
- */
- virtual bool connectExternalGraphPort(uint, uint, const char*);
- virtual bool disconnectExternalGraphPort(uint, uint, const char*);
- #endif
-
- // -------------------------------------------------------------------
-
- CARLA_DECLARE_NON_COPYABLE(CarlaEngine)
- };
-
- /**@}*/
-
- // -----------------------------------------------------------------------
-
- CARLA_BACKEND_END_NAMESPACE
-
- #endif // CARLA_ENGINE_HPP_INCLUDED
|