|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209 |
- /*
- * Carla Plugin Host
- * Copyright (C) 2011-2014 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"
-
- #ifdef BUILD_BRIDGE
- struct CarlaOscData;
- #endif
-
- 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,
-
- /*!
- * Plugin engine type, used to export the engine as a plugin.
- */
- kEngineTypePlugin = 4,
-
- /*!
- * Bridge engine type, used in BridgePlugin class.
- */
- kEngineTypeBridge = 5
- };
-
- /*!
- * 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
- };
-
- // -----------------------------------------------------------------------
-
- /*!
- * Engine control event.
- */
- struct EngineControlEvent {
- EngineControlEventType type; //!< Control-Event type.
- uint16_t param; //!< Parameter Id, midi bank or midi program.
- float value; //!< Parameter value, normalized to 0.0f<->1.0f.
-
- /*!
- * Convert this control event into MIDI data.
- */
- void convertToMidiData(const uint8_t channel, uint8_t& size, uint8_t data[3]) const noexcept;
- };
-
- /*!
- * Engine MIDI event.
- */
- struct 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 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(const uint8_t size, const uint8_t* const data) noexcept;
- };
-
- // -----------------------------------------------------------------------
-
- /*!
- * Engine options.
- */
- struct EngineOptions {
- EngineProcessMode processMode;
- EngineTransportMode transportMode;
-
- bool forceStereo;
- bool preferPluginBridges;
- bool preferUiBridges;
- bool uisAlwaysOnTop;
-
- uint maxParameters;
- uint uiBridgesTimeout;
- uint audioNumPeriods;
- uint audioBufferSize;
- uint audioSampleRate;
- const char* audioDevice;
-
- const char* binaryDir;
- const char* resourceDir;
-
- uintptr_t frontendWinId;
-
- #ifndef DOXYGEN
- EngineOptions() noexcept;
- ~EngineOptions() noexcept;
- CARLA_DECLARE_NON_COPY_STRUCT(EngineOptions)
- #endif
- };
-
- /*!
- * Engine BBT Time information.
- */
- struct EngineTimeInfoBBT {
- int32_t bar; //!< current bar
- int32_t beat; //!< current beat-within-bar
- int32_t tick; //!< current tick-within-beat
- double barStartTick;
-
- float beatsPerBar; //!< time signature "numerator"
- float beatType; //!< time signature "denominator"
-
- double ticksPerBeat;
- double beatsPerMinute;
-
- #ifndef DOXYGEN
- EngineTimeInfoBBT() noexcept;
- #endif
- };
-
- /*!
- * Engine Time information.
- */
- struct EngineTimeInfo {
- static const uint kValidBBT = 0x1;
-
- bool playing;
- uint64_t frame;
- uint64_t usecs;
- uint valid;
- EngineTimeInfoBBT bbt;
-
- /*!
- * Clear.
- */
- void clear() noexcept;
-
- #ifndef DOXYGEN
- EngineTimeInfo() 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 CarlaEnginePort
- {
- protected:
- /*!
- * The constructor.
- * All constructor parameters are constant and will never change in the lifetime of the port.
- */
- CarlaEnginePort(const CarlaEngineClient& client, const bool isInputPort) 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.
- */
- bool isInput() const noexcept
- {
- return kIsInput;
- }
-
- /*!
- * Get this ports' engine client.
- */
- const CarlaEngineClient& getEngineClient() const noexcept
- {
- return kClient;
- }
-
- #ifndef DOXYGEN
- protected:
- const CarlaEngineClient& kClient;
- const bool kIsInput;
-
- CARLA_DECLARE_NON_COPY_CLASS(CarlaEnginePort)
- #endif
- };
-
- /*!
- * Carla Engine Audio port.
- */
- class 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, const bool isInputPort) noexcept;
-
- /*!
- * The destructor.
- */
- ~CarlaEngineAudioPort() noexcept override;
-
- /*!
- * Get the type of the port, in this case kEnginePortTypeAudio.
- */
- 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.
- */
- float* getBuffer() const noexcept
- {
- return fBuffer;
- }
-
- #ifndef DOXYGEN
- protected:
- float* fBuffer;
-
- CARLA_DECLARE_NON_COPY_CLASS(CarlaEngineAudioPort)
- #endif
- };
-
- /*!
- * Carla Engine CV port.
- */
- class 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, const bool isInputPort) noexcept;
-
- /*!
- * The destructor.
- */
- ~CarlaEngineCVPort() noexcept override;
-
- /*!
- * Get the type of the port, in this case kEnginePortTypeCV.
- */
- 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.
- */
- float* getBuffer() const noexcept
- {
- return fBuffer;
- }
-
- #ifndef DOXYGEN
- protected:
- float* fBuffer;
-
- CARLA_DECLARE_NON_COPY_CLASS(CarlaEngineCVPort)
- #endif
- };
-
- /*!
- * Carla Engine Event port.
- */
- class 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, const bool isInputPort) noexcept;
-
- /*!
- * The destructor.
- */
- ~CarlaEngineEventPort() noexcept override;
-
- /*!
- * Get the type of the port, in this case kEnginePortTypeEvent.
- */
- 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 const EngineEvent& getEvent(const uint32_t index) const noexcept;
-
- /*!
- * Get the event at @a index, faster unchecked version.
- */
- virtual const EngineEvent& getEventUnchecked(const uint32_t index) const noexcept;
-
- /*!
- * Write a control event into the buffer.
- * @note You must only call this for output ports.
- */
- bool writeControlEvent(const uint32_t time, const 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(const uint32_t time, const uint8_t channel, const EngineControlEventType type, const uint16_t param, const float value = 0.0f) noexcept;
-
- /*!
- * Write a MIDI event into the buffer.
- * @note You must only call this for output ports.
- */
- bool writeMidiEvent(const uint32_t time, const uint8_t size, const uint8_t* const data) noexcept;
-
- /*!
- * Write a MIDI event into the buffer.
- * @note You must only call this for output ports.
- */
- bool writeMidiEvent(const uint32_t time, const 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(const uint32_t time, const uint8_t channel, const uint8_t port, const uint8_t size, const uint8_t* const data) noexcept;
-
- #ifndef DOXYGEN
- protected:
- EngineEvent* fBuffer;
- const EngineProcessMode kProcessMode;
- friend class CarlaPluginInstance;
-
- CARLA_DECLARE_NON_COPY_CLASS(CarlaEngineEventPort)
- #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 funtionality.
- */
- class CarlaEngineClient
- {
- public:
- /*!
- * The constructor, protected.
- * All constructor parameters are constant and will never change in the lifetime of the client.
- * Client starts in deactivated state.
- */
- CarlaEngineClient(const CarlaEngine& engine) noexcept;
-
- /*!
- * 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() 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(const 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(const EnginePortType portType, const char* const name, const bool isInput);
-
- /*!
- * Get this client's engine.
- */
- const CarlaEngine& getEngine() const noexcept
- {
- return kEngine;
- }
-
- #ifndef DOXYGEN
- protected:
- const CarlaEngine& kEngine;
-
- bool fActive;
- uint32_t fLatency;
-
- CARLA_DECLARE_NON_COPY_CLASS(CarlaEngineClient)
- #endif
- };
-
- // -----------------------------------------------------------------------
-
- /*!
- * Carla Engine.
- * @note This is a virtual class for all available engine types available in Carla.
- */
- class 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(const uint index);
-
- /*!
- * Get the device names of the driver at @a index.
- */
- static const char* const* getDriverDeviceNames(const uint index);
-
- /*!
- * Get device information about the driver at @a index and name @a driverName.
- */
- static const EngineDriverDeviceInfo* getDriverDeviceInfo(const uint index, const char* const driverName);
-
- /*!
- * 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* const 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 intialized, you need to call idle() at regular intervals.
- */
- virtual bool init(const char* const clientName);
-
- /*!
- * 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 is running.
- */
- virtual bool isRunning() const noexcept = 0;
-
- /*!
- * Check if engine is running offline (aka freewheel mode).
- */
- virtual bool isOffline() const noexcept = 0;
-
- /*!
- * 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(CarlaPlugin* const plugin);
-
- // -------------------------------------------------------------------
- // Plugin management
-
- /*!
- * Add new plugin.
- * @see ENGINE_CALLBACK_PLUGIN_ADDED
- */
- 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);
-
- /*!
- * Add new plugin, using native binary type.
- * @see ENGINE_CALLBACK_PLUGIN_ADDED
- */
- 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);
-
- /*!
- * Remove plugin with id @a id.
- * @see ENGINE_CALLBACK_PLUGIN_REMOVED
- */
- bool removePlugin(const uint id);
-
- /*!
- * Remove all plugins.
- */
- bool removeAllPlugins();
-
- #ifndef BUILD_BRIDGE
- /*!
- * 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 const char* renamePlugin(const uint id, const char* const newName);
-
- /*!
- * Clone plugin with id @a id.
- */
- bool clonePlugin(const 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(const uint id) noexcept;
-
- /*!
- * Switch plugins with id @a idA and @a idB.
- */
- bool switchPlugins(const uint idA, const uint idB) noexcept;
- #endif
-
- /*!
- * Get plugin with id @a id.
- */
- CarlaPlugin* getPlugin(const uint id) const noexcept;
-
- /*!
- * Get plugin with id @a id, faster unchecked version.
- */
- CarlaPlugin* getPluginUnchecked(const 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* const 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 (GIG, SF2 and SFZ) or by using an internal plugin (like Audio and MIDI).
- */
- bool loadFile(const char* const filename);
-
- /*!
- * Load a project file.
- * @note Already loaded plugins are not removed; call removeAllPlugins() first if needed.
- */
- bool loadProject(const char* const filename);
-
- /*!
- * Save current project to a file.
- */
- bool saveProject(const char* const filename);
-
- // -------------------------------------------------------------------
- // Information (base)
-
- /*!
- * Get the current engine driver hints.
- * @see EngineDriverHints
- */
- uint getHints() const noexcept;
-
- /*!
- * 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 proccess mode.
- */
- EngineProcessMode getProccessMode() const noexcept;
-
- /*!
- * Get the current engine options (read-only).
- */
- const EngineOptions& getOptions() const noexcept;
-
- /*!
- * Get the current Time information (read-only).
- */
- const EngineTimeInfo& getTimeInfo() const noexcept;
-
- // -------------------------------------------------------------------
- // Information (peaks)
-
- /*!
- * TODO.
- */
- float getInputPeak(const uint pluginId, const bool isLeft) const noexcept;
-
- /*!
- * TODO.
- */
- float getOutputPeak(const uint pluginId, const bool isLeft) const noexcept;
-
- // -------------------------------------------------------------------
- // Callback
-
- /*!
- * Call the main engine callback, if set.
- * May be called by plugins.
- */
- void callback(const EngineCallbackOpcode action, const uint pluginId, const int value1, const int value2, const float value3, const char* const valueStr) noexcept;
-
- /*!
- * Set the main engine callback to @a func.
- */
- void setCallback(const EngineCallbackFunc func, void* const ptr) noexcept;
-
- // -------------------------------------------------------------------
- // Callback
-
- /*!
- * Call the file callback, if set.
- * May be called by plugins.
- */
- const char* runFileCallback(const FileCallbackOpcode action, const bool isDir, const char* const title, const char* const filter) noexcept;
-
- /*!
- * Set the file callback to @a func.
- */
- void setFileCallback(const FileCallbackFunc func, void* const ptr) noexcept;
-
- #ifndef BUILD_BRIDGE
- // -------------------------------------------------------------------
- // Patchbay
-
- /*!
- * Connect two patchbay ports.
- */
- virtual bool patchbayConnect(const uint groupA, const uint portA, const uint groupB, const uint portB);
-
- /*!
- * Remove a patchbay connection.
- */
- virtual bool patchbayDisconnect(const uint connectionId);
-
- /*!
- * Force the engine to resend all patchbay clients, ports and connections again.
- */
- virtual bool patchbayRefresh();
- #endif
-
- // -------------------------------------------------------------------
- // Transport
-
- /*!
- * Start playback of the engine transport.
- */
- virtual void transportPlay() noexcept;
-
- /*!
- * Pause the engine transport.
- */
- virtual void transportPause() noexcept;
-
- /*!
- * Relocate the engine transport to @a frames.
- */
- virtual void transportRelocate(const uint64_t frame) noexcept;
-
- // -------------------------------------------------------------------
- // Error handling
-
- /*!
- * Get last error.
- */
- const char* getLastError() const noexcept;
-
- /*!
- * Set last error.
- */
- void setLastError(const char* const error) const noexcept;
-
- // -------------------------------------------------------------------
- // Misc
-
- /*!
- * Tell the engine it's about to close.
- * This is used to prevent the engine thread(s) from reactivating.
- */
- void setAboutToClose() noexcept;
-
- // -------------------------------------------------------------------
- // Options
-
- /*!
- * Set the engine option @a option to @a value or @a valueStr.
- */
- void setOption(const EngineOption option, const int value, const char* const valueStr) noexcept;
-
- // -------------------------------------------------------------------
- // OSC Stuff
-
- #ifdef BUILD_BRIDGE
- /*!
- * Check if OSC bridge is registered.
- */
- bool isOscBridgeRegistered() const noexcept;
- #else
- /*!
- * Check if OSC controller is registered.
- */
- bool isOscControlRegistered() const noexcept;
- #endif
-
- /*!
- * Idle OSC.
- */
- void idleOsc() const noexcept;
-
- /*!
- * Get OSC TCP server path.
- */
- const char* getOscServerPathTCP() const noexcept;
-
- /*!
- * Get OSC UDP server path.
- */
- const char* getOscServerPathUDP() const noexcept;
-
- #ifdef BUILD_BRIDGE
- /*!
- * Set OSC bridge data.
- */
- void setOscBridgeData(CarlaOscData* const oscData) const noexcept;
- #endif
-
- // -------------------------------------------------------------------
- // Helper functions
-
- /*!
- * Return internal data, needed for EventPorts when used in Rack and Bridge modes.
- * @note RT call
- */
- EngineEvent* getInternalEventBuffer(const bool isInput) const noexcept;
-
- /*!
- * Force register a plugin into slot @a id.
- * This is needed so we can receive OSC events for a plugin while it initializes.
- */
- void registerEnginePlugin(const uint id, CarlaPlugin* const plugin) noexcept;
-
- #ifndef BUILD_BRIDGE
- /*!
- * Virtual functions for handling MIDI ports in the rack graph.
- */
- virtual bool connectRackMidiInPort(const char* const) { return false; }
- virtual bool connectRackMidiOutPort(const char* const) { return false; }
- virtual bool disconnectRackMidiInPort(const char* const) { return false; }
- virtual bool disconnectRackMidiOutPort(const char* const) { return false; }
- #endif
-
- // -------------------------------------------------------------------
-
- protected:
- /*!
- * Internal data, for CarlaEngine subclasses only.
- */
- struct ProtectedData;
- ProtectedData* const pData;
-
- /*!
- * Some internal classes read directly from pData.
- */
- friend class EngineInternalGraph;
- friend class ScopedActionLock;
- friend struct PatchbayGraph;
- friend struct RackGraph;
-
- // -------------------------------------------------------------------
- // Internal stuff
-
- /*!
- * Report to all plugins about buffer size change.
- */
- void bufferSizeChanged(const 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(const double newSampleRate);
-
- /*!
- * Report to all plugins about offline mode change.
- */
- void offlineModeChanged(const bool isOffline);
-
- /*!
- * Run any pending RT events.
- * Must always be called at the end of audio processing.
- * @note RT call
- */
- void runPendingRtEvents() noexcept;
-
- /*!
- * Set a plugin (stereo) peak values.
- * @note RT call
- */
- void setPluginPeaks(const uint pluginId, float const inPeaks[2], float const outPeaks[2]) noexcept;
-
- #ifndef BUILD_BRIDGE
- // -------------------------------------------------------------------
- // Patchbay stuff
-
- /*!
- * Virtual functions for handling patchbay state.
- * Do not free returned data.
- */
- virtual const char* const* getPatchbayConnections() const;
- virtual void restorePatchbayConnection(const char* const sourcePort, const char* const targetPort);
- #endif
-
- // -------------------------------------------------------------------
-
- public:
- /*!
- * Native audio APIs.
- */
- enum AudioApi {
- AUDIO_API_NULL = 0,
- // common
- AUDIO_API_JACK = 1,
- // linux
- AUDIO_API_ALSA = 2,
- AUDIO_API_OSS = 3,
- AUDIO_API_PULSE = 4,
- // macos
- AUDIO_API_CORE = 5,
- // windows
- AUDIO_API_ASIO = 6,
- AUDIO_API_DS = 7
- };
-
- // -------------------------------------------------------------------
- // Engine initializers
-
- // JACK
- static CarlaEngine* newJack();
-
- #ifdef BUILD_BRIDGE
- // Bridge
- static CarlaEngine* newBridge(const char* const audioPoolBaseName, const char* const rtBaseName, const char* const nonRtBaseName);
- #else
- # if defined(CARLA_OS_MAC) || defined(CARLA_OS_WIN)
- // Juce
- static CarlaEngine* newJuce(const AudioApi api);
- static uint getJuceApiCount();
- static const char* getJuceApiName(const uint index);
- static const char* const* getJuceApiDeviceNames(const uint index);
- static const EngineDriverDeviceInfo* getJuceDeviceInfo(const uint index, const char* const deviceName);
- # else
- // RtAudio
- static CarlaEngine* newRtAudio(const AudioApi api);
- static uint getRtAudioApiCount();
- static const char* getRtAudioApiName(const uint index);
- static const char* const* getRtAudioApiDeviceNames(const uint index);
- static const EngineDriverDeviceInfo* getRtAudioDeviceInfo(const uint index, const char* const deviceName);
- # endif
- #endif
-
- // -------------------------------------------------------------------
- // Bridge/Controller OSC stuff
-
- #ifdef BUILD_BRIDGE
- void oscSend_bridge_plugin_info1(const PluginCategory category, const uint hints, const uint optionsAvailable, const uint optionsEnabled, const int64_t uniqueId) const noexcept;
- void oscSend_bridge_plugin_info2(const char* const realName, const char* const label, const char* const maker, const char* const copyright) const noexcept;
- void oscSend_bridge_audio_count(const uint32_t ins, const uint32_t outs) const noexcept;
- void oscSend_bridge_midi_count(const uint32_t ins, const uint32_t outs) const noexcept;
- void oscSend_bridge_parameter_count(const uint32_t ins, const uint32_t outs) const noexcept;
- void oscSend_bridge_program_count(const uint32_t count) const noexcept;
- void oscSend_bridge_midi_program_count(const uint32_t count) const noexcept;
- void oscSend_bridge_parameter_data1(const uint32_t index, const int32_t rindex, const ParameterType type, const uint hints, const int16_t cc) const noexcept;
- void oscSend_bridge_parameter_data2(const uint32_t index, const char* const name, const char* const unit) const noexcept;
- void oscSend_bridge_parameter_ranges1(const uint32_t index, const float def, const float min, const float max) const noexcept;
- void oscSend_bridge_parameter_ranges2(const uint32_t index, const float step, const float stepSmall, const float stepLarge) const noexcept;
- void oscSend_bridge_parameter_value(const uint32_t index, const float value) const noexcept;
- void oscSend_bridge_default_value(const uint32_t index, const float value) const noexcept;
- void oscSend_bridge_current_program(const int32_t index) const noexcept;
- void oscSend_bridge_current_midi_program(const int32_t index) const noexcept;
- void oscSend_bridge_program_name(const uint32_t index, const char* const name) const noexcept;
- void oscSend_bridge_midi_program_data(const uint32_t index, const uint32_t bank, const uint32_t program, const char* const name) const noexcept;
- void oscSend_bridge_configure(const char* const key, const char* const value) const noexcept;
- void oscSend_bridge_set_custom_data(const char* const type, const char* const key, const char* const value) const noexcept;
- void oscSend_bridge_set_chunk_data_file(const char* const chunkDataFile) const noexcept;
- void oscSend_bridge_set_peaks() const noexcept;
- void oscSend_bridge_pong() const noexcept;
- #else
- void oscSend_control_add_plugin_start(const uint pluginId, const char* const pluginName) const noexcept;
- void oscSend_control_add_plugin_end(const uint pluginId) const noexcept;
- void oscSend_control_remove_plugin(const uint pluginId) const noexcept;
- void oscSend_control_set_plugin_info1(const uint pluginId, const PluginType type, const PluginCategory category, const uint hints, const int64_t uniqueId) const noexcept;
- 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;
- void oscSend_control_set_audio_count(const uint pluginId, const uint32_t ins, const uint32_t outs) const noexcept;
- void oscSend_control_set_midi_count(const uint pluginId, const uint32_t ins, const uint32_t outs) const noexcept;
- void oscSend_control_set_parameter_count(const uint pluginId, const uint32_t ins, const uint32_t outs) const noexcept;
- void oscSend_control_set_program_count(const uint pluginId, const uint32_t count) const noexcept;
- void oscSend_control_set_midi_program_count(const uint pluginId, const uint32_t count) const noexcept;
- 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;
- void oscSend_control_set_parameter_ranges1(const uint pluginId, const uint32_t index, const float def, const float min, const float max) const noexcept;
- void oscSend_control_set_parameter_ranges2(const uint pluginId, const uint32_t index, const float step, const float stepSmall, const float stepLarge) const noexcept;
- void oscSend_control_set_parameter_midi_cc(const uint pluginId, const uint32_t index, const int16_t cc) const noexcept;
- void oscSend_control_set_parameter_midi_channel(const uint pluginId, const uint32_t index, const uint8_t channel) const noexcept;
- 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)
- void oscSend_control_set_default_value(const uint pluginId, const uint32_t index, const float value) const noexcept;
- void oscSend_control_set_current_program(const uint pluginId, const int32_t index) const noexcept;
- void oscSend_control_set_current_midi_program(const uint pluginId, const int32_t index) const noexcept;
- void oscSend_control_set_program_name(const uint pluginId, const uint32_t index, const char* const name) const noexcept;
- 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;
- void oscSend_control_note_on(const uint pluginId, const uint8_t channel, const uint8_t note, const uint8_t velo) const noexcept;
- void oscSend_control_note_off(const uint pluginId, const uint8_t channel, const uint8_t note) const noexcept;
- void oscSend_control_set_peaks(const uint pluginId) const noexcept;
- void oscSend_control_exit() const noexcept;
- #endif
-
- CARLA_DECLARE_NON_COPY_CLASS(CarlaEngine)
- };
-
- /**@}*/
-
- // -----------------------------------------------------------------------
-
- CARLA_BACKEND_END_NAMESPACE
-
- #endif // CARLA_ENGINE_HPP_INCLUDED
|