|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817 |
- /*
- * Carla Plugin
- * Copyright (C) 2011-2013 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_PLUGIN_INTERNAL_HPP_INCLUDED
- #define CARLA_PLUGIN_INTERNAL_HPP_INCLUDED
-
- #include "CarlaPlugin.hpp"
- #include "CarlaPluginThread.hpp"
- #include "CarlaEngine.hpp"
-
- #include "CarlaBackendUtils.hpp"
- #include "CarlaOscUtils.hpp"
- #include "CarlaStateUtils.hpp"
- #include "CarlaMutex.hpp"
- #include "CarlaMIDI.h"
- #include "RtList.hpp"
-
- #define CARLA_PROCESS_CONTINUE_CHECK if (! fEnabled) { pData->engine->callback(CALLBACK_DEBUG, fId, 0, 0, 0.0f, "Processing while plugin is disabled!!"); return; }
-
- CARLA_BACKEND_START_NAMESPACE
-
- #if 0
- } // Fix editor indentation
- #endif
-
- // -----------------------------------------------------------------------
-
- const unsigned short kPluginMaxMidiEvents = 512;
-
- const unsigned int PLUGIN_EXTRA_HINT_HAS_MIDI_IN = 0x1;
- const unsigned int PLUGIN_EXTRA_HINT_HAS_MIDI_OUT = 0x2;
- const unsigned int PLUGIN_EXTRA_HINT_CAN_RUN_RACK = 0x4;
-
- // -----------------------------------------------------------------------
-
- /*!
- * Post-RT event type.\n
- * These are events postponned from within the process function,
- *
- * During process, we cannot lock, allocate memory or do UI stuff,\n
- * so events have to be postponned to be executed later, on a separate thread.
- */
- enum PluginPostRtEventType {
- kPluginPostRtEventNull,
- kPluginPostRtEventDebug,
- kPluginPostRtEventParameterChange, // param, SP (*), value (SP: if 1, don't report change to Callback and OSC)
- kPluginPostRtEventProgramChange, // index
- kPluginPostRtEventMidiProgramChange, // index
- kPluginPostRtEventNoteOn, // channel, note, velo
- kPluginPostRtEventNoteOff // channel, note
- };
-
- /*!
- * A Post-RT event.
- * \see PluginPostRtEventType
- */
- struct PluginPostRtEvent {
- PluginPostRtEventType type;
- int32_t value1;
- int32_t value2;
- float value3;
-
- PluginPostRtEvent() noexcept
- : type(kPluginPostRtEventNull),
- value1(-1),
- value2(-1),
- value3(0.0f) {}
- };
-
- // -----------------------------------------------------------------------
-
- struct PluginAudioPort {
- uint32_t rindex;
- CarlaEngineAudioPort* port;
-
- PluginAudioPort() noexcept
- : rindex(0),
- port(nullptr) {}
-
- ~PluginAudioPort()
- {
- CARLA_ASSERT(port == nullptr);
- }
-
- CARLA_DECLARE_NON_COPY_STRUCT(PluginAudioPort)
- };
-
- struct PluginAudioData {
- uint32_t count;
- PluginAudioPort* ports;
-
- PluginAudioData() noexcept
- : count(0),
- ports(nullptr) {}
-
- ~PluginAudioData()
- {
- CARLA_ASSERT_INT(count == 0, count);
- CARLA_ASSERT(ports == nullptr);
- }
-
- void createNew(const uint32_t newCount)
- {
- CARLA_ASSERT_INT(count == 0, count);
- CARLA_ASSERT(ports == nullptr);
- CARLA_ASSERT_INT(newCount > 0, newCount);
-
- if (ports != nullptr || newCount == 0)
- return;
-
- ports = new PluginAudioPort[newCount];
- count = newCount;
- }
-
- void clear()
- {
- if (ports != nullptr)
- {
- for (uint32_t i=0; i < count; ++i)
- {
- if (ports[i].port != nullptr)
- {
- delete ports[i].port;
- ports[i].port = nullptr;
- }
- }
-
- delete[] ports;
- ports = nullptr;
- }
-
- count = 0;
- }
-
- void initBuffers()
- {
- for (uint32_t i=0; i < count; ++i)
- {
- if (ports[i].port != nullptr)
- ports[i].port->initBuffer();
- }
- }
-
- CARLA_DECLARE_NON_COPY_STRUCT(PluginAudioData)
- };
-
- // -----------------------------------------------------------------------
-
- struct PluginCVPort {
- uint32_t rindex;
- uint32_t param;
- CarlaEngineCVPort* port;
-
- PluginCVPort() noexcept
- : rindex(0),
- param(0),
- port(nullptr) {}
-
- ~PluginCVPort()
- {
- CARLA_ASSERT(port == nullptr);
- }
-
- CARLA_DECLARE_NON_COPY_STRUCT(PluginCVPort)
- };
-
- struct PluginCVData {
- uint32_t count;
- PluginCVPort* ports;
-
- PluginCVData() noexcept
- : count(0),
- ports(nullptr) {}
-
- ~PluginCVData()
- {
- CARLA_ASSERT_INT(count == 0, count);
- CARLA_ASSERT(ports == nullptr);
- }
-
- void createNew(const uint32_t newCount)
- {
- CARLA_ASSERT_INT(count == 0, count);
- CARLA_ASSERT(ports == nullptr);
- CARLA_ASSERT_INT(newCount > 0, newCount);
-
- if (ports != nullptr || newCount == 0)
- return;
-
- ports = new PluginCVPort[newCount];
- count = newCount;
- }
-
- void clear()
- {
- if (ports != nullptr)
- {
- for (uint32_t i=0; i < count; ++i)
- {
- if (ports[i].port != nullptr)
- {
- delete ports[i].port;
- ports[i].port = nullptr;
- }
- }
-
- delete[] ports;
- ports = nullptr;
- }
-
- count = 0;
- }
-
- void initBuffers()
- {
- for (uint32_t i=0; i < count; ++i)
- {
- if (ports[i].port != nullptr)
- ports[i].port->initBuffer();
- }
- }
-
- CARLA_DECLARE_NON_COPY_STRUCT(PluginCVData)
- };
-
- // -----------------------------------------------------------------------
-
- struct PluginEventData {
- CarlaEngineEventPort* portIn;
- CarlaEngineEventPort* portOut;
-
- PluginEventData() noexcept
- : portIn(nullptr),
- portOut(nullptr) {}
-
- ~PluginEventData()
- {
- CARLA_ASSERT(portIn == nullptr);
- CARLA_ASSERT(portOut == nullptr);
- }
-
- void clear()
- {
- if (portIn != nullptr)
- {
- delete portIn;
- portIn = nullptr;
- }
-
- if (portOut != nullptr)
- {
- delete portOut;
- portOut = nullptr;
- }
- }
-
- void initBuffers()
- {
- if (portIn != nullptr)
- portIn->initBuffer();
-
- if (portOut != nullptr)
- portOut->initBuffer();
- }
-
- CARLA_DECLARE_NON_COPY_STRUCT(PluginEventData)
- };
-
- // -----------------------------------------------------------------------
-
- struct PluginParameterData {
- uint32_t count;
- ParameterData* data;
- ParameterRanges* ranges;
-
- PluginParameterData() noexcept
- : count(0),
- data(nullptr),
- ranges(nullptr) {}
-
- ~PluginParameterData()
- {
- CARLA_ASSERT_INT(count == 0, count);
- CARLA_ASSERT(data == nullptr);
- CARLA_ASSERT(ranges == nullptr);
- }
-
- void createNew(const uint32_t newCount)
- {
- CARLA_ASSERT_INT(count == 0, count);
- CARLA_ASSERT(data == nullptr);
- CARLA_ASSERT(ranges == nullptr);
- CARLA_ASSERT_INT(newCount > 0, newCount);
-
- if (data != nullptr || ranges != nullptr || newCount == 0)
- return;
-
- data = new ParameterData[newCount];
- ranges = new ParameterRanges[newCount];
- count = newCount;
- }
-
- void clear()
- {
- if (data != nullptr)
- {
- delete[] data;
- data = nullptr;
- }
-
- if (ranges != nullptr)
- {
- delete[] ranges;
- ranges = nullptr;
- }
-
- count = 0;
- }
-
- float getFixedValue(const uint32_t parameterId, const float& value) const
- {
- CARLA_SAFE_ASSERT_RETURN(parameterId < count, 0.0f);
- return ranges[parameterId].getFixedValue(value);
- }
-
- CARLA_DECLARE_NON_COPY_STRUCT(PluginParameterData)
- };
-
- // -----------------------------------------------------------------------
-
- typedef const char* ProgramName;
-
- struct PluginProgramData {
- uint32_t count;
- int32_t current;
- ProgramName* names;
-
- PluginProgramData() noexcept
- : count(0),
- current(-1),
- names(nullptr) {}
-
- ~PluginProgramData()
- {
- CARLA_ASSERT_INT(count == 0, count);
- CARLA_ASSERT_INT(current == -1, current);
- CARLA_ASSERT(names == nullptr);
- }
-
- void createNew(const uint32_t newCount)
- {
- CARLA_ASSERT_INT(count == 0, count);
- CARLA_ASSERT_INT(current == -1, current);
- CARLA_ASSERT(names == nullptr);
- CARLA_ASSERT_INT(newCount > 0, newCount);
-
- if (names != nullptr || newCount == 0)
- return;
-
- names = new ProgramName[newCount];
- count = newCount;
-
- for (uint32_t i=0; i < newCount; ++i)
- names[i] = nullptr;
- }
-
- void clear()
- {
- if (names != nullptr)
- {
- for (uint32_t i=0; i < count; ++i)
- {
- if (names[i] != nullptr)
- {
- delete[] names[i];
- names[i] = nullptr;
- }
- }
-
- delete[] names;
- names = nullptr;
- }
-
- count = 0;
- current = -1;
- }
-
- CARLA_DECLARE_NON_COPY_STRUCT(PluginProgramData)
- };
-
- // -----------------------------------------------------------------------
-
- struct PluginMidiProgramData {
- uint32_t count;
- int32_t current;
- MidiProgramData* data;
-
- PluginMidiProgramData() noexcept
- : count(0),
- current(-1),
- data(nullptr) {}
-
- ~PluginMidiProgramData()
- {
- CARLA_ASSERT_INT(count == 0, count);
- CARLA_ASSERT_INT(current == -1, current);
- CARLA_ASSERT(data == nullptr);
- }
-
- void createNew(const uint32_t newCount)
- {
- CARLA_ASSERT_INT(count == 0, count);
- CARLA_ASSERT_INT(current == -1, current);
- CARLA_ASSERT(data == nullptr);
- CARLA_ASSERT_INT(newCount > 0, newCount);
-
- if (data != nullptr || newCount == 0)
- return;
-
- data = new MidiProgramData[newCount];
- count = newCount;
- }
-
- void clear()
- {
- if (data != nullptr)
- {
- for (uint32_t i=0; i < count; ++i)
- {
- if (data[i].name != nullptr)
- {
- delete[] data[i].name;
- data[i].name = nullptr;
- }
- }
-
- delete[] data;
- data = nullptr;
- }
-
- count = 0;
- current = -1;
- }
-
- const MidiProgramData& getCurrent() const
- {
- CARLA_ASSERT_INT2(current >= 0 && current < static_cast<int32_t>(count), current, count);
- return data[current];
- }
-
- CARLA_DECLARE_NON_COPY_STRUCT(PluginMidiProgramData)
- };
-
- // -----------------------------------------------------------------------
-
- struct ExternalMidiNote {
- int8_t channel; // invalid if -1
- uint8_t note;
- uint8_t velo; // note-off if 0
-
- ExternalMidiNote() noexcept
- : channel(-1),
- note(0),
- velo(0) {}
- };
-
- // -----------------------------------------------------------------------
-
- struct CarlaPluginProtectedData {
- CarlaEngine* const engine;
- CarlaEngineClient* client;
-
- bool active;
- bool needsReset;
- void* lib;
- void* uiLib;
-
- // misc
- int8_t ctrlChannel;
- unsigned int extraHints;
- CarlaString idStr;
-
- // latency
- uint32_t latency;
- float** latencyBuffers;
-
- // data
- PluginAudioData audioIn;
- PluginAudioData audioOut;
- PluginEventData event;
- PluginParameterData param;
- PluginProgramData prog;
- PluginMidiProgramData midiprog;
- NonRtList<CustomData> custom;
-
- SaveState saveState;
-
- CarlaMutex masterMutex; // global master lock
- CarlaMutex singleMutex; // small lock used only in processSingle()
-
- struct ExternalNotes {
- CarlaMutex mutex;
- RtList<ExternalMidiNote>::Pool dataPool;
- RtList<ExternalMidiNote> data;
-
- ExternalNotes()
- : dataPool(32, 152),
- data(dataPool) {}
-
- ~ExternalNotes()
- {
- mutex.lock();
- data.clear();
- mutex.unlock();
- }
-
- void append(const ExternalMidiNote& note)
- {
- mutex.lock();
- data.append_sleepy(note);
- mutex.unlock();
- }
-
- CARLA_DECLARE_NON_COPY_STRUCT(ExternalNotes)
-
- } extNotes;
-
- struct PostRtEvents {
- CarlaMutex mutex;
- RtList<PluginPostRtEvent>::Pool dataPool;
- RtList<PluginPostRtEvent> data;
- RtList<PluginPostRtEvent> dataPendingRT;
-
- PostRtEvents()
- : dataPool(128, 128),
- data(dataPool),
- dataPendingRT(dataPool) {}
-
- ~PostRtEvents()
- {
- clear();
- }
-
- void appendRT(const PluginPostRtEvent& event)
- {
- dataPendingRT.append(event);
- }
-
- void trySplice()
- {
- if (mutex.tryLock())
- {
- dataPendingRT.spliceAppend(data);
- mutex.unlock();
- }
- }
-
- void clear()
- {
- mutex.lock();
- data.clear();
- dataPendingRT.clear();
- mutex.unlock();
- }
-
- CARLA_DECLARE_NON_COPY_STRUCT(PostRtEvents)
-
- } postRtEvents;
-
- #ifndef BUILD_BRIDGE
- struct PostProc {
- float dryWet;
- float volume;
- float balanceLeft;
- float balanceRight;
- float panning;
-
- PostProc() noexcept
- : dryWet(1.0f),
- volume(1.0f),
- balanceLeft(-1.0f),
- balanceRight(1.0f),
- panning(0.0f) {}
-
- CARLA_DECLARE_NON_COPY_STRUCT(PostProc)
-
- } postProc;
- #endif
-
- struct OSC {
- CarlaOscData data;
- CarlaPluginThread thread;
-
- OSC(CarlaEngine* const engine, CarlaPlugin* const plugin)
- : thread(engine, plugin) {}
-
- #ifdef CARLA_PROPER_CPP11_SUPPORT
- OSC() = delete;
- CARLA_DECLARE_NON_COPY_STRUCT(OSC)
- #endif
- } osc;
-
- CarlaPluginProtectedData(CarlaEngine* const eng, CarlaPlugin* const plug)
- : engine(eng),
- client(nullptr),
- active(false),
- needsReset(false),
- lib(nullptr),
- uiLib(nullptr),
- ctrlChannel(0),
- extraHints(0x0),
- latency(0),
- latencyBuffers(nullptr),
- osc(eng, plug) {}
-
- #ifdef CARLA_PROPER_CPP11_SUPPORT
- CarlaPluginProtectedData() = delete;
- CARLA_DECLARE_NON_COPY_STRUCT(CarlaPluginProtectedData)
- #endif
-
- ~CarlaPluginProtectedData()
- {
- CARLA_ASSERT(client == nullptr);
- CARLA_ASSERT(! active);
- CARLA_ASSERT(lib == nullptr);
- CARLA_ASSERT(uiLib == nullptr);
- CARLA_ASSERT(latency == 0);
- CARLA_ASSERT(latencyBuffers == nullptr);
- CARLA_SAFE_ASSERT(! needsReset);
- }
-
- // -------------------------------------------------------------------
- // Cleanup
-
- void cleanup()
- {
- {
- // mutex MUST have been locked before
- const bool lockMaster(masterMutex.tryLock());
- const bool lockSingle(singleMutex.tryLock());
- CARLA_ASSERT(! lockMaster);
- CARLA_ASSERT(! lockSingle);
- }
-
- if (client != nullptr)
- {
- CARLA_ASSERT(! client->isActive());
-
- if (client->isActive())
- client->deactivate();
-
- clearBuffers();
-
- delete client;
- client = nullptr;
- }
-
- for (NonRtList<CustomData>::Itenerator it = custom.begin(); it.valid(); it.next())
- {
- CustomData& cData(*it);
-
- CARLA_ASSERT(cData.type != nullptr);
- CARLA_ASSERT(cData.key != nullptr);
- CARLA_ASSERT(cData.value != nullptr);
-
- if (cData.type != nullptr)
- {
- delete[] cData.type;
- cData.type = nullptr;
- }
-
- if (cData.key != nullptr)
- {
- delete[] cData.key;
- cData.key = nullptr;
- }
-
- if (cData.value != nullptr)
- {
- delete[] cData.value;
- cData.value = nullptr;
- }
- }
-
- prog.clear();
- midiprog.clear();
- custom.clear();
-
- // MUST have been locked before
- masterMutex.unlock();
- singleMutex.unlock();
-
- if (lib != nullptr)
- libClose();
- }
-
- // -------------------------------------------------------------------
- // Buffer functions
-
- void clearBuffers()
- {
- if (latencyBuffers != nullptr)
- {
- CARLA_ASSERT(audioIn.count > 0);
-
- for (uint32_t i=0; i < audioIn.count; ++i)
- {
- CARLA_ASSERT(latencyBuffers[i] != nullptr);
-
- if (latencyBuffers[i] != nullptr)
- {
- delete[] latencyBuffers[i];
- latencyBuffers[i] = nullptr;
- }
- }
-
- delete[] latencyBuffers;
- latencyBuffers = nullptr;
- latency = 0;
- }
- else
- {
- CARLA_ASSERT(latency == 0);
- }
-
- audioIn.clear();
- audioOut.clear();
- param.clear();
- event.clear();
- }
-
- void recreateLatencyBuffers()
- {
- if (latencyBuffers != nullptr)
- {
- CARLA_ASSERT(audioIn.count > 0);
-
- for (uint32_t i=0; i < audioIn.count; ++i)
- {
- CARLA_ASSERT(latencyBuffers[i] != nullptr);
-
- if (latencyBuffers[i] != nullptr)
- {
- delete[] latencyBuffers[i];
- latencyBuffers[i] = nullptr;
- }
- }
-
- delete[] latencyBuffers;
- latencyBuffers = nullptr;
- }
-
- if (audioIn.count > 0 && latency > 0)
- {
- latencyBuffers = new float*[audioIn.count];
-
- for (uint32_t i=0; i < audioIn.count; ++i)
- {
- latencyBuffers[i] = new float[latency];
- carla_zeroFloat(latencyBuffers[i], latency);
- }
- }
- }
-
- // -------------------------------------------------------------------
- // Post-poned events
-
- void postponeRtEvent(const PluginPostRtEventType type, const int32_t value1, const int32_t value2, const float value3)
- {
- CARLA_SAFE_ASSERT_RETURN(type != kPluginPostRtEventNull,);
-
- PluginPostRtEvent event;
- event.type = type;
- event.value1 = value1;
- event.value2 = value2;
- event.value3 = value3;
-
- postRtEvents.appendRT(event);
- }
-
- // -------------------------------------------------------------------
- // Library functions, see CarlaPlugin.cpp
-
- bool libOpen(const char* const filename);
- bool libClose();
- void* libSymbol(const char* const symbol);
-
- bool uiLibOpen(const char* const filename);
- bool uiLibClose();
- void* uiLibSymbol(const char* const symbol);
-
- const char* libError(const char* const filename);
-
- // -------------------------------------------------------------------
- // Settings functions, see CarlaPlugin.cpp
-
- void saveSetting(const unsigned int option, const bool yesNo);
- unsigned int loadSettings(const unsigned int options, const unsigned int availOptions);
- };
-
- CARLA_BACKEND_END_NAMESPACE
-
- #endif // CARLA_PLUGIN_INTERNAL_HPP_INCLUDED
|