|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478 |
- /*
- * Carla Engine
- * Copyright (C) 2012-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 GPL.txt file
- */
-
- #include "CarlaEngineInternal.hpp"
- #include "CarlaBackendUtils.hpp"
- #include "CarlaStateUtils.hpp"
- #include "CarlaMIDI.h"
-
- #include <QtCore/QDir>
- #include <QtCore/QFile>
- #include <QtCore/QFileInfo>
- #include <QtCore/QTextStream>
-
- CARLA_BACKEND_START_NAMESPACE
-
- // -------------------------------------------------------------------------------------------------------------------
- // Fallback data
-
- static const EngineEvent kFallbackEngineEvent;
-
- #ifndef BUILD_BRIDGE
- // -------------------------------------------------------------------------------------------------------------------
- // Bridge Helper, defined in CarlaPlugin.cpp
-
- extern BinaryType CarlaPluginGetBridgeBinaryType(CarlaPlugin* const plugin);
-
- // -------------------------------------------------------------------------------------------------------------------
- // Engine Helpers
-
- void registerEnginePlugin(CarlaEngine* const engine, const unsigned int id, CarlaPlugin* const plugin)
- {
- CarlaEngineProtectedData::registerEnginePlugin(engine, id, plugin);
- }
- #endif
-
- // -------------------------------------------------------------------------------------------------------------------
- // Carla Engine port (Abstract)
-
- CarlaEnginePort::CarlaEnginePort(const bool isInput, const ProcessMode processMode)
- : kIsInput(isInput),
- kProcessMode(processMode)
- {
- carla_debug("CarlaEnginePort::CarlaEnginePort(%s, %s)", bool2str(isInput), ProcessMode2Str(processMode));
- }
-
- CarlaEnginePort::~CarlaEnginePort()
- {
- carla_debug("CarlaEnginePort::~CarlaEnginePort()");
- }
-
- // -------------------------------------------------------------------------------------------------------------------
- // Carla Engine Audio port
-
- CarlaEngineAudioPort::CarlaEngineAudioPort(const bool isInput, const ProcessMode processMode)
- : CarlaEnginePort(isInput, processMode),
- fBuffer(nullptr)
- {
- carla_debug("CarlaEngineAudioPort::CarlaEngineAudioPort(%s, %s)", bool2str(isInput), ProcessMode2Str(processMode));
-
- if (kProcessMode == PROCESS_MODE_PATCHBAY)
- fBuffer = new float[PATCHBAY_BUFFER_SIZE];
- }
-
- CarlaEngineAudioPort::~CarlaEngineAudioPort()
- {
- carla_debug("CarlaEngineAudioPort::~CarlaEngineAudioPort()");
-
- if (kProcessMode == PROCESS_MODE_PATCHBAY)
- {
- CARLA_ASSERT(fBuffer != nullptr);
-
- if (fBuffer != nullptr)
- delete[] fBuffer;
- }
- }
-
- void CarlaEngineAudioPort::initBuffer(CarlaEngine* const)
- {
- if (kProcessMode == PROCESS_MODE_PATCHBAY && ! kIsInput)
- carla_zeroFloat(fBuffer, PATCHBAY_BUFFER_SIZE);
- }
-
- // -------------------------------------------------------------------------------------------------------------------
- // Carla Engine Event port
-
- CarlaEngineEventPort::CarlaEngineEventPort(const bool isInput, const ProcessMode processMode)
- : CarlaEnginePort(isInput, processMode),
- kMaxEventCount(processMode == PROCESS_MODE_CONTINUOUS_RACK ? RACK_EVENT_COUNT : PATCHBAY_EVENT_COUNT),
- fBuffer(nullptr)
- {
- carla_debug("CarlaEngineEventPort::CarlaEngineEventPort(%s, %s)", bool2str(isInput), ProcessMode2Str(processMode));
-
- if (kProcessMode == PROCESS_MODE_PATCHBAY || kProcessMode == PROCESS_MODE_BRIDGE)
- fBuffer = new EngineEvent[kMaxEventCount];
- }
-
- CarlaEngineEventPort::~CarlaEngineEventPort()
- {
- carla_debug("CarlaEngineEventPort::~CarlaEngineEventPort()");
-
- if (kProcessMode == PROCESS_MODE_PATCHBAY || kProcessMode == PROCESS_MODE_BRIDGE)
- {
- CARLA_ASSERT(fBuffer != nullptr);
-
- if (fBuffer != nullptr)
- delete[] fBuffer;
- }
- }
-
- void CarlaEngineEventPort::initBuffer(CarlaEngine* const engine)
- {
- CARLA_ASSERT(engine != nullptr);
-
- if (engine == nullptr)
- return;
-
- #ifndef BUILD_BRIDGE
- if (kProcessMode == PROCESS_MODE_CONTINUOUS_RACK)
- fBuffer = engine->getRackEventBuffer(kIsInput);
- else
- #endif
- if ((kProcessMode == PROCESS_MODE_PATCHBAY || kProcessMode == PROCESS_MODE_BRIDGE) && ! kIsInput)
- carla_zeroStruct<EngineEvent>(fBuffer, kMaxEventCount);
- }
-
- uint32_t CarlaEngineEventPort::getEventCount()
- {
- CARLA_ASSERT(kIsInput);
- CARLA_ASSERT(fBuffer != nullptr);
- CARLA_ASSERT(kProcessMode == PROCESS_MODE_CONTINUOUS_RACK || kProcessMode == PROCESS_MODE_PATCHBAY || kProcessMode == PROCESS_MODE_BRIDGE);
-
- if (! kIsInput)
- return 0;
- if (fBuffer == nullptr)
- return 0;
- if (kProcessMode != PROCESS_MODE_CONTINUOUS_RACK && kProcessMode != PROCESS_MODE_PATCHBAY && kProcessMode != PROCESS_MODE_BRIDGE)
- return 0;
-
- uint32_t count = 0;
- const EngineEvent* const events = fBuffer;
-
- for (uint32_t i=0; i < kMaxEventCount; ++i, ++count)
- {
- if (events[i].type == kEngineEventTypeNull)
- break;
- }
-
- return count;
- }
-
- const EngineEvent& CarlaEngineEventPort::getEvent(const uint32_t index)
- {
- CARLA_ASSERT(kIsInput);
- CARLA_ASSERT(fBuffer != nullptr);
- CARLA_ASSERT(kProcessMode == PROCESS_MODE_CONTINUOUS_RACK || kProcessMode == PROCESS_MODE_PATCHBAY || kProcessMode == PROCESS_MODE_BRIDGE);
- CARLA_ASSERT(index < kMaxEventCount);
-
- if (! kIsInput)
- return kFallbackEngineEvent;
- if (fBuffer == nullptr)
- return kFallbackEngineEvent;
- if (kProcessMode != PROCESS_MODE_CONTINUOUS_RACK && kProcessMode != PROCESS_MODE_PATCHBAY && kProcessMode != PROCESS_MODE_BRIDGE)
- return kFallbackEngineEvent;
- if (index >= kMaxEventCount)
- return kFallbackEngineEvent;
-
- return fBuffer[index];
- }
-
- void CarlaEngineEventPort::writeControlEvent(const uint32_t time, const uint8_t channel, const EngineControlEventType type, const uint16_t param, const float value)
- {
- CARLA_ASSERT(! kIsInput);
- CARLA_ASSERT(fBuffer != nullptr);
- CARLA_ASSERT(kProcessMode == PROCESS_MODE_CONTINUOUS_RACK || kProcessMode == PROCESS_MODE_PATCHBAY || kProcessMode == PROCESS_MODE_BRIDGE);
- CARLA_ASSERT(type != kEngineControlEventTypeNull);
- CARLA_ASSERT(channel < MAX_MIDI_CHANNELS);
- CARLA_SAFE_ASSERT(value >= 0.0f && value <= 1.0f);
-
- if (kIsInput)
- return;
- if (fBuffer == nullptr)
- return;
- if (kProcessMode != PROCESS_MODE_CONTINUOUS_RACK && kProcessMode != PROCESS_MODE_PATCHBAY && kProcessMode != PROCESS_MODE_BRIDGE)
- return;
- if (type == kEngineControlEventTypeNull)
- return;
- if (channel >= MAX_MIDI_CHANNELS)
- return;
- if (type == kEngineControlEventTypeParameter)
- {
- CARLA_ASSERT(! MIDI_IS_CONTROL_BANK_SELECT(param));
- }
-
- for (uint32_t i=0; i < kMaxEventCount; ++i)
- {
- if (fBuffer[i].type != kEngineEventTypeNull)
- continue;
-
- fBuffer[i].type = kEngineEventTypeControl;
- fBuffer[i].time = time;
- fBuffer[i].channel = channel;
-
- fBuffer[i].ctrl.type = type;
- fBuffer[i].ctrl.param = param;
- fBuffer[i].ctrl.value = carla_fixValue<float>(0.0f, 1.0f, value);
-
- return;
- }
-
- carla_stderr2("CarlaEngineEventPort::writeControlEvent() - buffer full");
- }
-
- void CarlaEngineEventPort::writeMidiEvent(const uint32_t time, const uint8_t channel, const uint8_t port, const uint8_t* const data, const uint8_t size)
- {
- CARLA_ASSERT(! kIsInput);
- CARLA_ASSERT(fBuffer != nullptr);
- CARLA_ASSERT(kProcessMode == PROCESS_MODE_CONTINUOUS_RACK || kProcessMode == PROCESS_MODE_PATCHBAY || kProcessMode == PROCESS_MODE_BRIDGE);
- CARLA_ASSERT(channel < MAX_MIDI_CHANNELS);
- CARLA_ASSERT(data != nullptr);
- CARLA_ASSERT(size > 0);
-
- if (kIsInput)
- return;
- if (fBuffer == nullptr)
- return;
- if (kProcessMode != PROCESS_MODE_CONTINUOUS_RACK && kProcessMode != PROCESS_MODE_PATCHBAY && kProcessMode != PROCESS_MODE_BRIDGE)
- return;
- if (channel >= MAX_MIDI_CHANNELS)
- return;
- if (data == nullptr)
- return;
- if (size == 0)
- return;
- if (size > 4)
- return;
-
- for (uint32_t i=0; i < kMaxEventCount; ++i)
- {
- if (fBuffer[i].type != kEngineEventTypeNull)
- continue;
-
- fBuffer[i].type = kEngineEventTypeMidi;
- fBuffer[i].time = time;
- fBuffer[i].channel = channel;
-
- fBuffer[i].midi.port = port;
- fBuffer[i].midi.size = size;
-
- carla_copy<uint8_t>(fBuffer[i].midi.data, data, size);
-
- return;
- }
-
- carla_stderr2("CarlaEngineEventPort::writeMidiEvent() - buffer full");
- }
-
- // -------------------------------------------------------------------------------------------------------------------
- // Carla Engine client (Abstract)
-
- CarlaEngineClient::CarlaEngineClient(const EngineType engineType, const ProcessMode processMode)
- : kEngineType(engineType),
- kProcessMode(processMode),
- fActive(false),
- fLatency(0)
- {
- CARLA_ASSERT(engineType != kEngineTypeNull);
- carla_debug("CarlaEngineClient::CarlaEngineClient(%s, %s)", EngineType2Str(engineType), ProcessMode2Str(processMode));
- }
-
- CarlaEngineClient::~CarlaEngineClient()
- {
- CARLA_ASSERT(! fActive);
- carla_debug("CarlaEngineClient::~CarlaEngineClient()");
- }
-
- void CarlaEngineClient::activate()
- {
- CARLA_ASSERT(! fActive);
- carla_debug("CarlaEngineClient::activate()");
-
- fActive = true;
- }
-
- void CarlaEngineClient::deactivate()
- {
- CARLA_ASSERT(fActive);
- carla_debug("CarlaEngineClient::deactivate()");
-
- fActive = false;
- }
-
- bool CarlaEngineClient::isActive() const
- {
- carla_debug("CarlaEngineClient::isActive()");
-
- return fActive;
- }
-
- bool CarlaEngineClient::isOk() const
- {
- carla_debug("CarlaEngineClient::isOk()");
-
- return true;
- }
-
- uint32_t CarlaEngineClient::getLatency() const
- {
- return fLatency;
- }
-
- void CarlaEngineClient::setLatency(const uint32_t samples)
- {
- fLatency = samples;
- }
-
- CarlaEnginePort* CarlaEngineClient::addPort(const EnginePortType portType, const char* const name, const bool isInput)
- {
- carla_debug("CarlaEngineClient::addPort(%s, \"%s\", %s)", EnginePortType2Str(portType), name, bool2str(isInput));
-
- switch (portType)
- {
- case kEnginePortTypeNull:
- break;
- case kEnginePortTypeAudio:
- return new CarlaEngineAudioPort(isInput, kProcessMode);
- case kEnginePortTypeEvent:
- return new CarlaEngineEventPort(isInput, kProcessMode);
- }
-
- carla_stderr("CarlaEngineClient::addPort(%i, \"%s\", %s) - invalid type", portType, name, bool2str(isInput));
- return nullptr;
- }
-
- // -------------------------------------------------------------------------------------------------------------------
- // Carla Engine
-
- CarlaEngine::CarlaEngine()
- : fBufferSize(0),
- fSampleRate(0.0),
- kData(new CarlaEngineProtectedData(this))
- {
- carla_debug("CarlaEngine::CarlaEngine()");
- }
-
- CarlaEngine::~CarlaEngine()
- {
- carla_debug("CarlaEngine::~CarlaEngine()");
-
- delete kData;
- }
-
- // -----------------------------------------------------------------------
- // Helpers
-
- void doPluginRemove(CarlaEngineProtectedData* const kData, const bool unlock)
- {
- CARLA_ASSERT(kData->curPluginCount > 0);
- kData->curPluginCount--;
-
- const unsigned int id = kData->nextAction.pluginId;
-
- // reset current plugin
- kData->plugins[id].plugin = nullptr;
-
- CarlaPlugin* plugin;
-
- // move all plugins 1 spot backwards
- for (unsigned int i=id; i < kData->curPluginCount; ++i)
- {
- plugin = kData->plugins[i+1].plugin;
-
- CARLA_ASSERT(plugin);
-
- if (plugin == nullptr)
- break;
-
- plugin->setId(i);
-
- kData->plugins[i].plugin = plugin;
- kData->plugins[i].insPeak[0] = 0.0f;
- kData->plugins[i].insPeak[1] = 0.0f;
- kData->plugins[i].outsPeak[0] = 0.0f;
- kData->plugins[i].outsPeak[1] = 0.0f;
- }
-
- kData->nextAction.opcode = EnginePostActionNull;
-
- if (unlock)
- kData->nextAction.mutex.unlock();
- }
-
- void doPluginsSwitch(CarlaEngineProtectedData* const kData, const bool unlock)
- {
- CARLA_ASSERT(kData->curPluginCount >= 2);
-
- const unsigned int idA = kData->nextAction.pluginId;
- const unsigned int idB = kData->nextAction.value;
-
- CarlaPlugin* const tmp = kData->plugins[idA].plugin;
- kData->plugins[idA].plugin = kData->plugins[idB].plugin;
- kData->plugins[idB].plugin = tmp;
-
- kData->nextAction.opcode = EnginePostActionNull;
-
- if (unlock)
- kData->nextAction.mutex.unlock();
- }
-
- const char* findDSSIGUI(const char* const filename, const char* const label)
- {
- QString guiFilename;
- guiFilename.clear();
-
- QString pluginDir(filename);
- pluginDir.resize(pluginDir.lastIndexOf("."));
-
- QString shortName = QFileInfo(pluginDir).baseName();
-
- QString checkLabel = QString(label);
- QString checkSName = shortName;
-
- if (! checkLabel.endsWith("_")) checkLabel += "_";
- if (! checkSName.endsWith("_")) checkSName += "_";
-
- QStringList guiFiles = QDir(pluginDir).entryList();
-
- foreach (const QString& gui, guiFiles)
- {
- if (gui.startsWith(checkLabel) || gui.startsWith(checkSName))
- {
- QFileInfo finalname(pluginDir + QDir::separator() + gui);
- guiFilename = finalname.absoluteFilePath();
- break;
- }
- }
-
- if (guiFilename.isEmpty())
- return nullptr;
-
- return carla_strdup(guiFilename.toUtf8().constData());
- }
-
- // -----------------------------------------------------------------------
- // Static values and calls
-
- unsigned int CarlaEngine::getDriverCount()
- {
- carla_debug("CarlaEngine::getDriverCount()");
-
- unsigned int count = 1; // JACK
-
- #ifdef WANT_RTAUDIO
- count += getRtAudioApiCount();
- #endif
-
- return count;
- }
-
- const char* CarlaEngine::getDriverName(unsigned int index)
- {
- carla_debug("CarlaEngine::getDriverName(%i)", index);
-
- if (index == 0)
- return "JACK";
- else
- index -= 1;
-
- #ifdef WANT_RTAUDIO
- if (index < getRtAudioApiCount())
- return getRtAudioApiName(index);
- #endif
-
- carla_stderr("CarlaEngine::getDriverName(%i) - invalid index", index);
- return nullptr;
- }
-
- const char** CarlaEngine::getDriverDeviceNames(unsigned int index)
- {
- carla_debug("CarlaEngine::getDriverDeviceNames(%i)", index);
-
- if (index == 0)
- return nullptr;
- else
- index -= 1;
-
- #ifdef WANT_RTAUDIO
- if (index < getRtAudioApiCount())
- return getRtAudioApiDeviceNames(index);
- #endif
-
- carla_stderr("CarlaEngine::getDriverDeviceNames(%i) - invalid index", index);
- return nullptr;
- }
-
- CarlaEngine* CarlaEngine::newDriverByName(const char* const driverName)
- {
- carla_debug("CarlaEngine::newDriverByName(\"%s\")", driverName);
-
- if (std::strcmp(driverName, "JACK") == 0)
- return newJack();
-
- #ifdef WANT_RTAUDIO
- # ifdef __LINUX_ALSA__
- if (std::strcmp(driverName, "ALSA") == 0)
- return newRtAudio(RTAUDIO_LINUX_ALSA);
- # endif
- # ifdef __LINUX_PULSE__
- if (std::strcmp(driverName, "PulseAudio") == 0)
- return newRtAudio(RTAUDIO_LINUX_PULSE);
- # endif
- # ifdef __LINUX_OSS__
- if (std::strcmp(driverName, "OSS") == 0)
- return newRtAudio(RTAUDIO_LINUX_OSS);
- # endif
- # ifdef __UNIX_JACK__
- if (std::strncmp(driverName, "JACK ", 5) == 0)
- return newRtAudio(RTAUDIO_UNIX_JACK);
- # endif
- # ifdef __MACOSX_CORE__
- if (std::strcmp(driverName, "CoreAudio") == 0)
- return newRtAudio(RTAUDIO_MACOSX_CORE);
- # endif
- # ifdef __WINDOWS_ASIO__
- if (std::strcmp(driverName, "ASIO") == 0)
- return newRtAudio(RTAUDIO_WINDOWS_ASIO);
- # endif
- # ifdef __WINDOWS_DS__
- if (std::strcmp(driverName, "DirectSound") == 0)
- return newRtAudio(RTAUDIO_WINDOWS_DS);
- # endif
- #endif
-
- return nullptr;
- }
-
- // -----------------------------------------------------------------------
- // Maximum values
-
- unsigned int CarlaEngine::maxClientNameSize() const
- {
- return STR_MAX/2;
- }
-
- unsigned int CarlaEngine::maxPortNameSize() const
- {
- return STR_MAX;
- }
-
- unsigned int CarlaEngine::currentPluginCount() const
- {
- return kData->curPluginCount;
- }
-
- unsigned int CarlaEngine::maxPluginNumber() const
- {
- return kData->maxPluginNumber;
- }
-
- // -----------------------------------------------------------------------
- // Virtual, per-engine type calls
-
- bool CarlaEngine::init(const char* const clientName)
- {
- CARLA_ASSERT(kData->plugins == nullptr);
- carla_debug("CarlaEngine::init(\"%s\")", clientName);
-
- #ifndef BUILD_BRIDGE
- CARLA_ASSERT(kData->rack.in == nullptr);
- CARLA_ASSERT(kData->rack.out == nullptr);
- #endif
-
- fName = clientName;
- fName.toBasic();
-
- fTimeInfo.clear();
-
- kData->aboutToClose = false;
- kData->curPluginCount = 0;
-
- #ifdef BUILD_BRIDGE
- kData->maxPluginNumber = 1;
- #else
- switch (fOptions.processMode)
- {
- case PROCESS_MODE_CONTINUOUS_RACK:
- kData->maxPluginNumber = MAX_RACK_PLUGINS;
- kData->rack.in = new EngineEvent[RACK_EVENT_COUNT];
- kData->rack.out = new EngineEvent[RACK_EVENT_COUNT];
- break;
- case PROCESS_MODE_PATCHBAY:
- kData->maxPluginNumber = MAX_PATCHBAY_PLUGINS;
- break;
- default:
- kData->maxPluginNumber = MAX_DEFAULT_PLUGINS;
- break;
- }
- #endif
-
- kData->plugins = new EnginePluginData[kData->maxPluginNumber];
-
- kData->osc.init(clientName);
-
- #ifndef BUILD_BRIDGE
- kData->oscData = kData->osc.getControlData();
- #else
- kData->oscData = nullptr; // set later in setOscBridgeData()
- #endif
-
- #ifndef BUILD_BRIDGE
- if (type() != kEngineTypePlugin)
- carla_setprocname(clientName);
- #endif
-
- kData->nextAction.ready();
- kData->thread.startNow();
-
- return true;
- }
-
- bool CarlaEngine::close()
- {
- CARLA_ASSERT(kData->plugins != nullptr);
- carla_debug("CarlaEngine::close()");
-
- kData->thread.stopNow();
- kData->nextAction.ready();
-
- #ifndef BUILD_BRIDGE
- osc_send_control_exit();
- #endif
- kData->osc.close();
-
- kData->oscData = nullptr;
-
- kData->aboutToClose = true;
- kData->curPluginCount = 0;
- kData->maxPluginNumber = 0;
-
- if (kData->plugins != nullptr)
- {
- delete[] kData->plugins;
- kData->plugins = nullptr;
- }
-
- #ifndef BUILD_BRIDGE
- if (kData->rack.in != nullptr)
- {
- delete[] kData->rack.in;
- kData->rack.in = nullptr;
- }
-
- if (kData->rack.out != nullptr)
- {
- delete[] kData->rack.out;
- kData->rack.out = nullptr;
- }
- #endif
-
- fName.clear();
-
- return true;
- }
-
- void CarlaEngine::idle()
- {
- CARLA_ASSERT(kData->plugins != nullptr);
-
- for (unsigned int i=0; i < kData->curPluginCount; ++i)
- {
- CarlaPlugin* const plugin = kData->plugins[i].plugin;
-
- if (plugin != nullptr && plugin->enabled())
- plugin->idleGui();
- }
- }
-
- CarlaEngineClient* CarlaEngine::addClient(CarlaPlugin* const)
- {
- return new CarlaEngineClient(type(), fOptions.processMode);
- }
-
- // -----------------------------------------------------------------------
- // Plugin management
-
- bool CarlaEngine::addPlugin(const BinaryType btype, const PluginType ptype, const char* const filename, const char* const name, const char* const label, const void* const extra)
- {
- CARLA_ASSERT(btype != BINARY_NONE);
- CARLA_ASSERT(ptype != PLUGIN_NONE);
- carla_debug("CarlaEngine::addPlugin(%s, %s, \"%s\", \"%s\", \"%s\", %p)", BinaryType2Str(btype), PluginType2Str(ptype), filename, name, label, extra);
-
- if (kData->curPluginCount == kData->maxPluginNumber)
- {
- setLastError("Maximum number of plugins reached");
- return false;
- }
-
- const unsigned int id = kData->curPluginCount;
-
- CarlaPlugin::Initializer init = {
- this,
- id,
- filename,
- name,
- label
- };
-
- CarlaPlugin* plugin = nullptr;
-
- #ifndef BUILD_BRIDGE
- const char* bridgeBinary;
-
- switch (btype)
- {
- case BINARY_POSIX32:
- bridgeBinary = fOptions.bridge_posix32.isNotEmpty() ? (const char*)fOptions.bridge_posix32 : nullptr;
- break;
- case BINARY_POSIX64:
- bridgeBinary = fOptions.bridge_posix64.isNotEmpty() ? (const char*)fOptions.bridge_posix64 : nullptr;
- break;
- case BINARY_WIN32:
- bridgeBinary = fOptions.bridge_win32.isNotEmpty() ? (const char*)fOptions.bridge_win32 : nullptr;
- break;
- case BINARY_WIN64:
- bridgeBinary = fOptions.bridge_win64.isNotEmpty() ? (const char*)fOptions.bridge_win64 : nullptr;
- break;
- default:
- bridgeBinary = nullptr;
- break;
- }
-
- #ifndef Q_OS_WIN
- if (btype == BINARY_NATIVE && fOptions.bridge_native.isNotEmpty())
- bridgeBinary = (const char*)fOptions.bridge_native;
- #endif
-
- if (bridgeBinary != nullptr && (btype != BINARY_NATIVE || fOptions.preferPluginBridges))
- {
- plugin = CarlaPlugin::newBridge(init, btype, ptype, bridgeBinary);
- }
- else
- #endif // BUILD_BRIDGE
- {
- switch (ptype)
- {
- case PLUGIN_NONE:
- break;
-
- case PLUGIN_INTERNAL:
- plugin = CarlaPlugin::newNative(init);
- break;
-
- case PLUGIN_LADSPA:
- plugin = CarlaPlugin::newLADSPA(init, (const LADSPA_RDF_Descriptor*)extra);
- break;
-
- case PLUGIN_DSSI:
- plugin = CarlaPlugin::newDSSI(init, (const char*)extra);
- break;
-
- case PLUGIN_LV2:
- plugin = CarlaPlugin::newLV2(init);
- break;
-
- case PLUGIN_VST:
- plugin = CarlaPlugin::newVST(init);
- break;
-
- case PLUGIN_VST3:
- plugin = CarlaPlugin::newVST3(init);
- break;
-
- case PLUGIN_GIG:
- plugin = CarlaPlugin::newGIG(init, (extra != nullptr));
- break;
-
- case PLUGIN_SF2:
- plugin = CarlaPlugin::newSF2(init, (extra != nullptr));
- break;
-
- case PLUGIN_SFZ:
- plugin = CarlaPlugin::newSFZ(init, (extra != nullptr));
- break;
- }
- }
-
- if (plugin == nullptr)
- return false;
-
- plugin->registerToOscClient();
-
- kData->plugins[id].plugin = plugin;
- kData->plugins[id].insPeak[0] = 0.0f;
- kData->plugins[id].insPeak[1] = 0.0f;
- kData->plugins[id].outsPeak[0] = 0.0f;
- kData->plugins[id].outsPeak[1] = 0.0f;
-
- kData->curPluginCount += 1;
-
- callback(CALLBACK_PLUGIN_ADDED, id, 0, 0, 0.0f, plugin->name());
- return true;
- }
-
- bool CarlaEngine::removePlugin(const unsigned int id)
- {
- CARLA_ASSERT(kData->curPluginCount > 0);
- CARLA_ASSERT(id < kData->curPluginCount);
- CARLA_ASSERT(kData->plugins != nullptr);
- carla_debug("CarlaEngine::removePlugin(%i)", id);
-
- if (kData->plugins == nullptr)
- {
- setLastError("Critical error: no plugins are currently loaded!");
- return false;
- }
-
- CarlaPlugin* const plugin = kData->plugins[id].plugin;
-
- if (plugin == nullptr)
- {
- setLastError("Could not find plugin to remove");
- return false;
- }
-
- CARLA_ASSERT(plugin->id() == id);
-
- kData->thread.stopNow();
-
- kData->nextAction.pluginId = id;
- kData->nextAction.opcode = EnginePostActionRemovePlugin;
-
- kData->nextAction.mutex.lock();
-
- if (isRunning())
- {
- carla_stderr("CarlaEngine::removePlugin(%i) - remove blocking START", id);
- // block wait for unlock on proccessing side
- kData->nextAction.mutex.lock();
- carla_stderr("CarlaEngine::removePlugin(%i) - remove blocking DONE", id);
- }
- else
- {
- doPluginRemove(kData, false);
- }
-
- #ifndef BUILD_BRIDGE
- if (isOscControlRegistered())
- osc_send_control_remove_plugin(id);
- #endif
-
- delete plugin;
-
- kData->nextAction.mutex.unlock();
-
- if (isRunning() && ! kData->aboutToClose)
- kData->thread.startNow();
-
- callback(CALLBACK_PLUGIN_REMOVED, id, 0, 0, 0.0f, nullptr);
- return true;
- }
-
- void CarlaEngine::removeAllPlugins()
- {
- carla_debug("CarlaEngine::removeAllPlugins() - START");
-
- kData->thread.stopNow();
-
- if (kData->curPluginCount > 0)
- {
- const unsigned int oldCount = kData->curPluginCount;
-
- kData->curPluginCount = 0;
-
- for (unsigned int i=0; i < oldCount; ++i)
- {
- CarlaPlugin* const plugin = kData->plugins[i].plugin;
-
- CARLA_ASSERT(plugin != nullptr);
-
- kData->plugins[i].plugin = nullptr;
-
- if (plugin != nullptr)
- delete plugin;
-
- // clear this plugin
- kData->plugins[i].insPeak[0] = 0.0f;
- kData->plugins[i].insPeak[1] = 0.0f;
- kData->plugins[i].outsPeak[0] = 0.0f;
- kData->plugins[i].outsPeak[1] = 0.0f;
- }
- }
-
- if (isRunning() && ! kData->aboutToClose)
- kData->thread.startNow();
-
- carla_debug("CarlaEngine::removeAllPlugins() - END");
- }
-
- const char* CarlaEngine::renamePlugin(const unsigned int id, const char* const newName)
- {
- CARLA_ASSERT(kData->curPluginCount > 0);
- CARLA_ASSERT(id < kData->curPluginCount);
- CARLA_ASSERT(kData->plugins != nullptr);
- CARLA_ASSERT(newName != nullptr);
- carla_debug("CarlaEngine::renamePlugin(%i, \"%s\")", id, newName);
-
- if (kData->plugins == nullptr)
- {
- setLastError("Critical error: no plugins are currently loaded!");
- return nullptr;
- }
-
- CarlaPlugin* const plugin = kData->plugins[id].plugin;
-
- if (plugin == nullptr)
- {
- carla_stderr("CarlaEngine::clonePlugin(%i) - could not find plugin", id);
- return nullptr;
- }
-
- CARLA_ASSERT(plugin->id() == id);
-
- if (const char* const name = getUniquePluginName(newName))
- {
- plugin->setName(name);
-
- return name;
- }
-
- return nullptr;
- }
-
- bool CarlaEngine::clonePlugin(const unsigned int id)
- {
- CARLA_ASSERT(kData->curPluginCount > 0);
- CARLA_ASSERT(id < kData->curPluginCount);
- CARLA_ASSERT(kData->plugins != nullptr);
- carla_debug("CarlaEngine::clonePlugin(%i)", id);
-
- if (kData->plugins == nullptr)
- {
- setLastError("Critical error: no plugins are currently loaded!");
- return false;
- }
-
- CarlaPlugin* const plugin = kData->plugins[id].plugin;
-
- if (plugin == nullptr)
- {
- carla_stderr("CarlaEngine::clonePlugin(%i) - could not find plugin", id);
- return false;
- }
-
- CARLA_ASSERT(plugin->id() == id);
-
- const SaveState& saveState(plugin->getSaveState());
-
- char label[STR_MAX+1] = { '\0' };
- plugin->getLabel(label);
-
- BinaryType binaryType = BINARY_NATIVE;
-
- #ifndef BUILD_BRIDGE
- if (plugin->hints() & PLUGIN_IS_BRIDGE)
- binaryType = CarlaPluginGetBridgeBinaryType(plugin);
- #endif
-
- const unsigned int pluginsBefore(kData->curPluginCount);
-
- if (! addPlugin(binaryType, plugin->type(), plugin->filename(), plugin->name(), label, plugin->getExtraStuff()))
- return false;
-
- CARLA_ASSERT(pluginsBefore+1 == kData->curPluginCount);
-
- CarlaPlugin* const newPlugin = kData->plugins[kData->curPluginCount-1].plugin;
-
- CARLA_ASSERT(newPlugin != nullptr);
-
- newPlugin->loadSaveState(saveState);
-
- return true;
- }
-
- bool CarlaEngine::replacePlugin(const unsigned int id)
- {
- CARLA_ASSERT(kData->curPluginCount > 0);
- CARLA_ASSERT(id < kData->curPluginCount);
- CARLA_ASSERT(kData->plugins != nullptr);
- carla_debug("CarlaEngine::replacePlugin(%i)", id);
-
- setLastError("Not implemented yet");
- return false;
- }
-
- bool CarlaEngine::switchPlugins(const unsigned int idA, const unsigned int idB)
- {
- CARLA_ASSERT(kData->curPluginCount > 0);
- CARLA_ASSERT(idA < kData->curPluginCount);
- CARLA_ASSERT(idB < kData->curPluginCount);
- CARLA_ASSERT(kData->plugins != nullptr);
- carla_debug("CarlaEngine::switchPlugins(%i)", idA, idB);
-
- if (kData->plugins == nullptr)
- {
- setLastError("Critical error: no plugins are currently loaded!");
- return false;
- }
-
- kData->thread.stopNow();
-
- kData->nextAction.pluginId = idA;
- kData->nextAction.value = idB;
- kData->nextAction.opcode = EnginePostActionSwitchPlugins;
-
- kData->nextAction.mutex.lock();
-
- if (isRunning())
- {
- carla_stderr("CarlaEngine::switchPlugins(%i, %i) - switch blocking START", idA, idB);
- // block wait for unlock on proccessing side
- kData->nextAction.mutex.lock();
- carla_stderr("CarlaEngine::switchPlugins(%i, %i) - switch blocking DONE", idA, idB);
- }
- else
- {
- doPluginsSwitch(kData, false);
- }
-
- #ifndef BUILD_BRIDGE // TODO
- //if (isOscControlRegistered())
- // osc_send_control_remove_plugin(id);
- #endif
-
- kData->nextAction.mutex.unlock();
-
- if (isRunning() && ! kData->aboutToClose)
- kData->thread.startNow();
-
- return true;
- }
-
- CarlaPlugin* CarlaEngine::getPlugin(const unsigned int id) const
- {
- CARLA_ASSERT(kData->curPluginCount > 0);
- CARLA_ASSERT(id < kData->curPluginCount);
- CARLA_ASSERT(kData->plugins != nullptr);
- carla_debug("CarlaEngine::getPlugin(%i) [count:%i]", id, kData->curPluginCount);
-
- if (id < kData->curPluginCount && kData->plugins != nullptr)
- return kData->plugins[id].plugin;
-
- return nullptr;
- }
-
- CarlaPlugin* CarlaEngine::getPluginUnchecked(const unsigned int id) const
- {
- return kData->plugins[id].plugin;
- }
-
- const char* CarlaEngine::getUniquePluginName(const char* const name)
- {
- CARLA_ASSERT(kData->maxPluginNumber > 0);
- CARLA_ASSERT(kData->plugins != nullptr);
- CARLA_ASSERT(name != nullptr);
- carla_debug("CarlaEngine::getUniquePluginName(\"%s\")", name);
-
- static CarlaString sname;
- sname = name;
-
- if (sname.isEmpty() || kData->plugins == nullptr)
- {
- sname = "(No name)";
- return (const char*)sname;
- }
-
- sname.truncate(maxClientNameSize()-5-1); // 5 = strlen(" (10)")
- sname.replace(':', '.'); // ':' is used in JACK1 to split client/port names
-
- for (unsigned short i=0; i < kData->curPluginCount; ++i)
- {
- CARLA_ASSERT(kData->plugins[i].plugin);
-
- if (kData->plugins[i].plugin == nullptr)
- continue;
-
- // Check if unique name doesn't exist
- if (const char* const pluginName = kData->plugins[i].plugin->name())
- {
- if (sname != pluginName)
- continue;
- }
-
- // Check if string has already been modified
- {
- const size_t len = sname.length();
-
- // 1 digit, ex: " (2)"
- if (sname[len-4] == ' ' && sname[len-3] == '(' && sname.isDigit(len-2) && sname[len-1] == ')')
- {
- int number = sname[len-2] - '0';
-
- if (number == 9)
- {
- // next number is 10, 2 digits
- sname.truncate(len-4);
- sname += " (10)";
- //sname.replace(" (9)", " (10)");
- }
- else
- sname[len-2] = char('0' + number + 1);
-
- continue;
- }
-
- // 2 digits, ex: " (11)"
- if (sname[len-5] == ' ' && sname[len-4] == '(' && sname.isDigit(len-3) && sname.isDigit(len-2) && sname[len-1] == ')')
- {
- char n2 = sname[len-2];
- char n3 = sname[len-3];
-
- if (n2 == '9')
- {
- n2 = '0';
- n3 += 1;
- }
- else
- n2 += 1;
-
- sname[len-2] = n2;
- sname[len-3] = n3;
-
- continue;
- }
- }
-
- // Modify string if not
- sname += " (2)";
- }
-
- return (const char*)sname;
- }
-
- // -----------------------------------------------------------------------
- // Project management
-
- bool CarlaEngine::loadFilename(const char* const filename)
- {
- CARLA_ASSERT(filename != nullptr);
- carla_debug("CarlaEngine::loadFilename(\"%s\")", filename);
-
- QFileInfo fileInfo(filename);
-
- if (! fileInfo.exists())
- {
- setLastError("File does not exist");
- return false;
- }
-
- if (! fileInfo.isFile())
- {
- setLastError("Not a file");
- return false;
- }
-
- if (! fileInfo.isReadable())
- {
- setLastError("File is not readable");
- return false;
- }
-
- CarlaString baseName(fileInfo.baseName().toUtf8().constData());
- CarlaString extension(fileInfo.suffix().toLower().toUtf8().constData());
-
- // -------------------------------------------------------------------
-
- if (extension == "carxp" || extension == "carxs")
- return loadProject(filename);
-
- // -------------------------------------------------------------------
-
- if (extension == "gig")
- return addPlugin(PLUGIN_GIG, filename, baseName, baseName);
-
- if (extension == "sf2")
- return addPlugin(PLUGIN_SF2, filename, baseName, baseName);
-
- if (extension == "sfz")
- return addPlugin(PLUGIN_SFZ, filename, baseName, baseName);
-
- // -------------------------------------------------------------------
-
- if (extension == "aiff" || extension == "flac" || extension == "oga" || extension == "ogg" || extension == "w64" || extension == "wav")
- {
- #ifdef WANT_AUDIOFILE
- if (addPlugin(PLUGIN_INTERNAL, nullptr, baseName, "audiofile"))
- {
- if (CarlaPlugin* const plugin = getPlugin(kData->curPluginCount-1))
- plugin->setCustomData(CUSTOM_DATA_STRING, "file00", filename, true);
- return true;
- }
- return false;
- #else
- setLastError("This Carla build does not have Audio file support");
- return false;
- #endif
- }
-
- if (extension == "3g2" || extension == "3gp" || extension == "aac" || extension == "ac3" || extension == "amr" || extension == "ape" ||
- extension == "mp2" || extension == "mp3" || extension == "mpc" || extension == "wma")
- {
- #ifdef WANT_AUDIOFILE
- # ifdef HAVE_FFMPEG
- if (addPlugin(PLUGIN_INTERNAL, nullptr, baseName, "audiofile"))
- {
- if (CarlaPlugin* const plugin = getPlugin(kData->curPluginCount-1))
- plugin->setCustomData(CUSTOM_DATA_STRING, "file00", filename, true);
- return true;
- }
- return false;
- # else
- setLastError("This Carla build has Audio file support, but not libav/ffmpeg");
- return false;
- # endif
- #else
- setLastError("This Carla build does not have Audio file support");
- return false;
- #endif
- }
-
- // -------------------------------------------------------------------
-
- if (extension == "mid" || extension == "midi")
- {
- #ifdef WANT_MIDIFILE
- if (addPlugin(PLUGIN_INTERNAL, nullptr, baseName, "midifile"))
- {
- if (CarlaPlugin* const plugin = getPlugin(kData->curPluginCount-1))
- plugin->setCustomData(CUSTOM_DATA_STRING, "file", filename, true);
- return true;
- }
- return false;
- #else
- setLastError("This Carla build does not have MIDI file support");
- return false;
- #endif
- }
-
- // -------------------------------------------------------------------
- // ZynAddSubFX
-
- if (extension == "xmz" || extension == "xiz")
- {
- #ifdef WANT_ZYNADDSUBFX
- if (addPlugin(PLUGIN_INTERNAL, nullptr, baseName, "zynaddsubfx"))
- {
- if (CarlaPlugin* const plugin = getPlugin(kData->curPluginCount-1))
- plugin->setCustomData(CUSTOM_DATA_STRING, (extension == "xmz") ? "CarlaAlternateFile1" : "CarlaAlternateFile2", filename, true);
- return true;
- }
- return false;
- #else
- setLastError("This Carla build does not have ZynAddSubFX support");
- return false;
- #endif
- }
-
- // -------------------------------------------------------------------
-
- setLastError("Unknown file extension");
- return false;
- }
-
- bool CarlaEngine::loadProject(const char* const filename)
- {
- CARLA_ASSERT(filename != nullptr);
- carla_debug("CarlaEngine::loadProject(\"%s\")", filename);
-
- QFile file(filename);
-
- if (! file.open(QIODevice::ReadOnly | QIODevice::Text))
- return false;
-
- QDomDocument xml;
- xml.setContent(file.readAll());
- file.close();
-
- QDomNode xmlNode(xml.documentElement());
-
- if (xmlNode.toElement().tagName() != "CARLA-PROJECT" && xmlNode.toElement().tagName() != "CARLA-PRESET")
- {
- setLastError("Not a valid Carla project or preset file");
- return false;
- }
-
- const bool isPreset(xmlNode.toElement().tagName() == "CARLA-PRESET");
-
- QDomNode node(xmlNode.firstChild());
-
- while (! node.isNull())
- {
- if (isPreset || node.toElement().tagName() == "Plugin")
- {
- const SaveState& saveState(getSaveStateDictFromXML(isPreset ? xmlNode : node));
- CARLA_ASSERT(saveState.type != nullptr);
-
- if (saveState.type == nullptr)
- continue;
-
- const void* extraStuff = nullptr;
-
- if (std::strcmp(saveState.type, "DSSI") == 0)
- extraStuff = findDSSIGUI(saveState.binary, saveState.label);
-
- // TODO - proper find&load plugins
- if (addPlugin(getPluginTypeFromString(saveState.type), saveState.binary, saveState.name, saveState.label, extraStuff))
- {
- if (CarlaPlugin* plugin = getPlugin(kData->curPluginCount-1))
- plugin->loadSaveState(saveState);
- }
- }
-
- if (isPreset)
- break;
-
- node = node.nextSibling();
- }
-
- // prevent wrong leak detection on close
- getSaveStateDictFromXML(QDomNode());
-
- return true;
- }
-
- bool CarlaEngine::saveProject(const char* const filename)
- {
- CARLA_ASSERT(filename != nullptr);
- carla_debug("CarlaEngine::saveProject(\"%s\")", filename);
-
- QFile file(filename);
-
- if (! file.open(QIODevice::WriteOnly | QIODevice::Text))
- return false;
-
- QTextStream out(&file);
- out << "<?xml version='1.0' encoding='UTF-8'?>\n";
- out << "<!DOCTYPE CARLA-PROJECT>\n";
- out << "<CARLA-PROJECT VERSION='1.0'>\n";
-
- bool firstPlugin = true;
- char strBuf[STR_MAX+1];
-
- for (unsigned int i=0; i < kData->curPluginCount; ++i)
- {
- CarlaPlugin* const plugin = kData->plugins[i].plugin;
-
- if (plugin != nullptr && plugin->enabled())
- {
- if (! firstPlugin)
- out << "\n";
-
- plugin->getRealName(strBuf);
-
- if (*strBuf != 0)
- out << QString(" <!-- %1 -->\n").arg(xmlSafeString(strBuf, true));
-
- out << " <Plugin>\n";
- out << getXMLFromSaveState(plugin->getSaveState());
- out << " </Plugin>\n";
-
- firstPlugin = false;
- }
- }
-
- out << "</CARLA-PROJECT>\n";
-
- file.close();
- return true;
- }
-
- // -----------------------------------------------------------------------
- // Information (peaks)
-
- float CarlaEngine::getInputPeak(const unsigned int pluginId, const unsigned short id) const
- {
- CARLA_ASSERT(pluginId < kData->curPluginCount);
- CARLA_ASSERT(id-1 < MAX_PEAKS);
-
- if (id == 0 || id > MAX_PEAKS)
- return 0.0f;
-
- return kData->plugins[pluginId].insPeak[id-1];
- }
-
- float CarlaEngine::getOutputPeak(const unsigned int pluginId, const unsigned short id) const
- {
- CARLA_ASSERT(pluginId < kData->curPluginCount);
- CARLA_ASSERT(id-1 < MAX_PEAKS);
-
- if (id == 0 || id > MAX_PEAKS)
- return 0.0f;
-
- return kData->plugins[pluginId].outsPeak[id-1];
- }
-
- // -----------------------------------------------------------------------
- // Callback
-
- void CarlaEngine::callback(const CallbackType action, const unsigned int pluginId, const int value1, const int value2, const float value3, const char* const valueStr)
- {
- carla_debug("CarlaEngine::callback(%s, %i, %i, %i, %f, \"%s\")", CallbackType2Str(action), pluginId, value1, value2, value3, valueStr);
-
- if (kData->callback)
- kData->callback(kData->callbackPtr, action, pluginId, value1, value2, value3, valueStr);
- }
-
- void CarlaEngine::setCallback(const CallbackFunc func, void* const ptr)
- {
- CARLA_ASSERT(func != nullptr);
- carla_debug("CarlaEngine::setCallback(%p, %p)", func, ptr);
-
- kData->callback = func;
- kData->callbackPtr = ptr;
- }
-
- // -----------------------------------------------------------------------
- // Patchbay
-
- bool CarlaEngine::patchbayConnect(int, int)
- {
- setLastError("Unsupported operation");
- return false;
- }
-
- bool CarlaEngine::patchbayDisconnect(int)
- {
- setLastError("Unsupported operation");
- return false;
- }
-
- void CarlaEngine::patchbayRefresh()
- {
- // nothing
- }
-
- // -----------------------------------------------------------------------
- // Transport
-
- void CarlaEngine::transportPlay()
- {
- kData->time.playing = true;
- }
-
- void CarlaEngine::transportPause()
- {
- kData->time.playing = false;
- }
-
- void CarlaEngine::transportRelocate(const uint32_t frame)
- {
- kData->time.frame = frame;
- }
-
- // -----------------------------------------------------------------------
- // Error handling
-
- const char* CarlaEngine::getLastError() const
- {
- return (const char*)kData->lastError;
- }
-
- void CarlaEngine::setLastError(const char* const error)
- {
- kData->lastError = error;
- }
-
- void CarlaEngine::setAboutToClose()
- {
- carla_debug("CarlaEngine::setAboutToClose()");
- kData->aboutToClose = true;
- }
-
- // -----------------------------------------------------------------------
- // Global options
-
- #define CARLA_ENGINE_SET_OPTION_RUNNING_CHECK \
- if (isRunning()) \
- return carla_stderr("CarlaEngine::setOption(%s, %i, \"%s\") - Cannot set this option while engine is running!", OptionsType2Str(option), value, valueStr);
-
- void CarlaEngine::setOption(const OptionsType option, const int value, const char* const valueStr)
- {
- carla_debug("CarlaEngine::setOption(%s, %i, \"%s\")", OptionsType2Str(option), value, valueStr);
-
- switch (option)
- {
- case OPTION_PROCESS_NAME:
- carla_setprocname(valueStr);
- break;
-
- case OPTION_PROCESS_MODE:
- CARLA_ENGINE_SET_OPTION_RUNNING_CHECK
-
- if (value < PROCESS_MODE_SINGLE_CLIENT || value > PROCESS_MODE_BRIDGE)
- return carla_stderr("CarlaEngine::setOption(%s, %i, \"%s\") - invalid value", OptionsType2Str(option), value, valueStr);
-
- fOptions.processMode = static_cast<ProcessMode>(value);
- break;
-
- case OPTION_TRANSPORT_MODE:
- // FIXME: Always enable JACK transport for now
- #if 0
- if (value < CarlaBackend::TRANSPORT_MODE_INTERNAL || value > CarlaBackend::TRANSPORT_MODE_BRIDGE)
- return carla_stderr2("carla_set_engine_option(OPTION_TRANSPORT_MODE, %i, \"%s\") - invalid value", value, valueStr);
-
- fOptions.transportMode = static_cast<CarlaBackend::TransportMode>(value);
- #endif
- break;
-
- case OPTION_MAX_PARAMETERS:
- CARLA_ENGINE_SET_OPTION_RUNNING_CHECK
-
- if (value < 0)
- return; // TODO error here
-
- fOptions.maxParameters = static_cast<uint>(value);
- break;
-
- case OPTION_FORCE_STEREO:
- CARLA_ENGINE_SET_OPTION_RUNNING_CHECK
- fOptions.forceStereo = (value != 0);
- break;
-
- #ifdef WANT_DSSI
- case OPTION_USE_DSSI_VST_CHUNKS:
- CARLA_ENGINE_SET_OPTION_RUNNING_CHECK
- fOptions.useDssiVstChunks = (value != 0);
- break;
- #endif
-
- case OPTION_PREFER_PLUGIN_BRIDGES:
- CARLA_ENGINE_SET_OPTION_RUNNING_CHECK
- fOptions.preferPluginBridges = (value != 0);
- break;
-
- case OPTION_PREFER_UI_BRIDGES:
- CARLA_ENGINE_SET_OPTION_RUNNING_CHECK
- fOptions.preferUiBridges = (value != 0);
- break;
-
- case OPTION_OSC_UI_TIMEOUT:
- CARLA_ENGINE_SET_OPTION_RUNNING_CHECK
- fOptions.oscUiTimeout = static_cast<uint>(value);
- break;
-
- case OPTION_JACK_AUTOCONNECT:
- CARLA_ENGINE_SET_OPTION_RUNNING_CHECK
- fOptions.jackAutoConnect = (value != 0);
- break;
-
- case OPTION_JACK_TIMEMASTER:
- CARLA_ENGINE_SET_OPTION_RUNNING_CHECK
- fOptions.jackTimeMaster = (value != 0);
- break;
-
- #ifdef WANT_RTAUDIO
- case OPTION_RTAUDIO_BUFFER_SIZE:
- CARLA_ENGINE_SET_OPTION_RUNNING_CHECK
- fOptions.rtaudioBufferSize = static_cast<uint>(value);
- break;
-
- case OPTION_RTAUDIO_SAMPLE_RATE:
- CARLA_ENGINE_SET_OPTION_RUNNING_CHECK
- fOptions.rtaudioSampleRate = static_cast<uint>(value);
- break;
-
- case OPTION_RTAUDIO_DEVICE:
- CARLA_ENGINE_SET_OPTION_RUNNING_CHECK
- fOptions.rtaudioDevice = valueStr;
- break;
- #endif
-
- #ifndef BUILD_BRIDGE
- case OPTION_PATH_BRIDGE_NATIVE:
- fOptions.bridge_native = valueStr;
- break;
- case OPTION_PATH_BRIDGE_POSIX32:
- fOptions.bridge_posix32 = valueStr;
- break;
- case OPTION_PATH_BRIDGE_POSIX64:
- fOptions.bridge_posix64 = valueStr;
- break;
- case OPTION_PATH_BRIDGE_WIN32:
- fOptions.bridge_win32 = valueStr;
- break;
- case OPTION_PATH_BRIDGE_WIN64:
- fOptions.bridge_win64 = valueStr;
- break;
- #endif
-
- #ifdef WANT_LV2
- case OPTION_PATH_BRIDGE_LV2_GTK2:
- fOptions.bridge_lv2Gtk2 = valueStr;
- break;
- case OPTION_PATH_BRIDGE_LV2_GTK3:
- fOptions.bridge_lv2Gtk3 = valueStr;
- break;
- case OPTION_PATH_BRIDGE_LV2_QT4:
- fOptions.bridge_lv2Qt4 = valueStr;
- break;
- case OPTION_PATH_BRIDGE_LV2_QT5:
- fOptions.bridge_lv2Qt5 = valueStr;
- break;
- case OPTION_PATH_BRIDGE_LV2_COCOA:
- fOptions.bridge_lv2Cocoa = valueStr;
- break;
- case OPTION_PATH_BRIDGE_LV2_WINDOWS:
- fOptions.bridge_lv2Win = valueStr;
- break;
- case OPTION_PATH_BRIDGE_LV2_X11:
- fOptions.bridge_lv2X11 = valueStr;
- break;
- #endif
-
- #ifdef WANT_VST
- case OPTION_PATH_BRIDGE_VST_COCOA:
- fOptions.bridge_vstCocoa = valueStr;
- break;
- case OPTION_PATH_BRIDGE_VST_HWND:
- fOptions.bridge_vstHWND = valueStr;
- break;
- case OPTION_PATH_BRIDGE_VST_X11:
- fOptions.bridge_vstX11 = valueStr;
- break;
- #endif
- }
- }
-
- // -----------------------------------------------------------------------
- // OSC Stuff
-
- #ifdef BUILD_BRIDGE
- bool CarlaEngine::isOscBridgeRegistered() const
- {
- return (kData->oscData != nullptr);
- }
- #else
- bool CarlaEngine::isOscControlRegistered() const
- {
- return kData->osc.isControlRegistered();
- }
- #endif
-
- void CarlaEngine::idleOsc()
- {
- kData->osc.idle();
- }
-
- const char* CarlaEngine::getOscServerPathTCP() const
- {
- return kData->osc.getServerPathTCP();
- }
-
- const char* CarlaEngine::getOscServerPathUDP() const
- {
- return kData->osc.getServerPathUDP();
- }
-
- #ifdef BUILD_BRIDGE
- void CarlaEngine::setOscBridgeData(const CarlaOscData* const oscData)
- {
- kData->oscData = oscData;
- }
- #endif
-
- // -----------------------------------------------------------------------
- // protected calls
-
- void CarlaEngine::bufferSizeChanged(const uint32_t newBufferSize)
- {
- carla_debug("CarlaEngine::bufferSizeChanged(%i)", newBufferSize);
-
- for (unsigned int i=0; i < kData->curPluginCount; ++i)
- {
- CarlaPlugin* const plugin = kData->plugins[i].plugin;
-
- if (plugin != nullptr && plugin->enabled())
- plugin->bufferSizeChanged(newBufferSize);
- }
-
- callback(CALLBACK_BUFFER_SIZE_CHANGED, 0, newBufferSize, 0, 0.0f, nullptr);
- }
-
- void CarlaEngine::sampleRateChanged(const double newSampleRate)
- {
- carla_debug("CarlaEngine::sampleRateChanged(%g)", newSampleRate);
-
- for (unsigned int i=0; i < kData->curPluginCount; ++i)
- {
- CarlaPlugin* const plugin = kData->plugins[i].plugin;
-
- if (plugin != nullptr && plugin->enabled())
- plugin->sampleRateChanged(newSampleRate);
- }
-
- callback(CALLBACK_SAMPLE_RATE_CHANGED, 0, 0, 0, newSampleRate, nullptr);
- }
-
- void CarlaEngine::proccessPendingEvents()
- {
- //carla_stderr("proccessPendingEvents(%i)", kData->nextAction.opcode);
-
- switch (kData->nextAction.opcode)
- {
- case EnginePostActionNull:
- break;
- case EnginePostActionRemovePlugin:
- doPluginRemove(kData, true);
- break;
- case EnginePostActionSwitchPlugins:
- doPluginsSwitch(kData, true);
- break;
- }
-
- if (kData->time.playing)
- kData->time.frame += fBufferSize;
-
- if (fOptions.transportMode == CarlaBackend::TRANSPORT_MODE_INTERNAL)
- {
- fTimeInfo.playing = kData->time.playing;
- fTimeInfo.frame = kData->time.frame;
- }
-
- for (unsigned int i=0; i < kData->curPluginCount; ++i)
- {
- // TODO - peak values?
- }
- }
-
- void CarlaEngine::setPeaks(const unsigned int pluginId, float const inPeaks[MAX_PEAKS], float const outPeaks[MAX_PEAKS])
- {
- kData->plugins[pluginId].insPeak[0] = inPeaks[0];
- kData->plugins[pluginId].insPeak[1] = inPeaks[1];
- kData->plugins[pluginId].outsPeak[0] = outPeaks[0];
- kData->plugins[pluginId].outsPeak[1] = outPeaks[1];
- }
-
- #ifndef BUILD_BRIDGE
- EngineEvent* CarlaEngine::getRackEventBuffer(const bool isInput)
- {
- return isInput ? kData->rack.in : kData->rack.out;
- }
-
- void setValueIfHigher(float& value, const float& compare)
- {
- if (value < compare)
- value = compare;
- }
-
- void CarlaEngine::processRack(float* inBuf[2], float* outBuf[2], const uint32_t frames)
- {
- // initialize outputs (zero)
- carla_zeroFloat(outBuf[0], frames);
- carla_zeroFloat(outBuf[1], frames);
- carla_zeroMem(kData->rack.out, sizeof(EngineEvent)*RACK_EVENT_COUNT);
-
- bool processed = false;
-
- // process plugins
- for (unsigned int i=0; i < kData->curPluginCount; ++i)
- {
- CarlaPlugin* const plugin = kData->plugins[i].plugin;
-
- if (plugin == nullptr || ! plugin->enabled() || ! plugin->tryLock())
- continue;
-
- if (processed)
- {
- // initialize inputs (from previous outputs)
- carla_copyFloat(inBuf[0], outBuf[0], frames);
- carla_copyFloat(inBuf[1], outBuf[1], frames);
- std::memcpy(kData->rack.in, kData->rack.out, sizeof(EngineEvent)*RACK_EVENT_COUNT);
-
- // initialize outputs (zero)
- carla_zeroFloat(outBuf[0], frames);
- carla_zeroFloat(outBuf[1], frames);
- carla_zeroMem(kData->rack.out, sizeof(EngineEvent)*RACK_EVENT_COUNT);
- }
-
- // process
- plugin->initBuffers();
- plugin->process(inBuf, outBuf, frames);
- plugin->unlock();
-
- #if 0
- // if plugin has no audio inputs, add previous buffers
- if (plugin->audioInCount() == 0)
- {
- for (uint32_t j=0; j < frames; ++j)
- {
- outBuf[0][j] += inBuf[0][j];
- outBuf[1][j] += inBuf[1][j];
- }
- }
- // if plugin has no midi output, add previous events
- if (plugin->midiOutCount() == 0)
- {
- for (uint32_t j=0, k=0; j < frames; ++j)
- {
-
- }
- std::memcpy(kData->rack.out, kData->rack.in, sizeof(EngineEvent)*RACK_EVENT_COUNT);
- }
- #endif
-
- // set peaks
- {
- float inPeak1 = 0.0f;
- float inPeak2 = 0.0f;
- float outPeak1 = 0.0f;
- float outPeak2 = 0.0f;
-
- for (uint32_t k=0; k < frames; ++k)
- {
- setValueIfHigher(inPeak1, std::fabs(inBuf[0][k]));
- setValueIfHigher(inPeak2, std::fabs(inBuf[1][k]));
- setValueIfHigher(outPeak1, std::fabs(outBuf[0][k]));
- setValueIfHigher(outPeak2, std::fabs(outBuf[1][k]));
- }
-
- kData->plugins[i].insPeak[0] = inPeak1;
- kData->plugins[i].insPeak[1] = inPeak2;
- kData->plugins[i].outsPeak[0] = outPeak1;
- kData->plugins[i].outsPeak[1] = outPeak2;
- }
-
- processed = true;
- }
- }
-
- void CarlaEngine::processPatchbay(float** inBuf, float** outBuf, const uint32_t bufCount[2], const uint32_t frames)
- {
- // TODO
- return;
-
- // unused, for now
- (void)inBuf;
- (void)outBuf;
- (void)bufCount;
- (void)frames;
- }
- #endif
-
- // -------------------------------------------------------------------------------------------------------------------
- // Carla Engine OSC stuff
-
- #ifndef BUILD_BRIDGE
- void CarlaEngine::osc_send_control_add_plugin_start(const int32_t pluginId, const char* const pluginName)
- {
- CARLA_ASSERT(kData->oscData != nullptr);
- CARLA_ASSERT(pluginId >= 0 && pluginId < (int32_t)kData->curPluginCount);
- CARLA_ASSERT(pluginName);
- carla_debug("CarlaEngine::osc_send_control_add_plugin_start(%i, \"%s\")", pluginId, pluginName);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+18];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/add_plugin_start");
- lo_send(kData->oscData->target, targetPath, "is", pluginId, pluginName);
- }
- }
-
- void CarlaEngine::osc_send_control_add_plugin_end(const int32_t pluginId)
- {
- carla_debug("CarlaEngine::osc_send_control_add_plugin_end(%i)", pluginId);
- CARLA_ASSERT(kData->oscData != nullptr);
- CARLA_ASSERT(pluginId >= 0 && pluginId < (int32_t)kData->curPluginCount);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+16];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/add_plugin_end");
- lo_send(kData->oscData->target, targetPath, "i", pluginId);
- }
- }
-
- void CarlaEngine::osc_send_control_remove_plugin(const int32_t pluginId)
- {
- carla_debug("CarlaEngine::osc_send_control_remove_plugin(%i)", pluginId);
- CARLA_ASSERT(kData->oscData != nullptr);
- CARLA_ASSERT(pluginId >= 0 && pluginId < (int32_t)kData->curPluginCount);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+15];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/remove_plugin");
- lo_send(kData->oscData->target, targetPath, "i", pluginId);
- }
- }
-
- void CarlaEngine::osc_send_control_set_plugin_data(const int32_t pluginId, const int32_t type, const int32_t category, const int32_t hints, const char* const realName, const char* const label, const char* const maker, const char* const copyright, const int64_t uniqueId)
- {
- carla_debug("CarlaEngine::osc_send_control_set_plugin_data(%i, %i, %i, %i, \"%s\", \"%s\", \"%s\", \"%s\", " P_INT64 ")", pluginId, type, category, hints, realName, label, maker, copyright, uniqueId);
- CARLA_ASSERT(kData->oscData != nullptr);
- CARLA_ASSERT(pluginId >= 0 && pluginId < (int32_t)kData->curPluginCount);
- CARLA_ASSERT(type != PLUGIN_NONE);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+17];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/set_plugin_data");
- lo_send(kData->oscData->target, targetPath, "iiiissssh", pluginId, type, category, hints, realName, label, maker, copyright, uniqueId);
- }
- }
-
- void CarlaEngine::osc_send_control_set_plugin_ports(const int32_t pluginId, const int32_t audioIns, const int32_t audioOuts, const int32_t midiIns, const int32_t midiOuts, const int32_t cIns, const int32_t cOuts, const int32_t cTotals)
- {
- carla_debug("CarlaEngine::osc_send_control_set_plugin_ports(%i, %i, %i, %i, %i, %i, %i, %i)", pluginId, audioIns, audioOuts, midiIns, midiOuts, cIns, cOuts, cTotals);
- CARLA_ASSERT(kData->oscData != nullptr);
- CARLA_ASSERT(pluginId >= 0 && pluginId < (int32_t)kData->curPluginCount);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+18];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/set_plugin_ports");
- lo_send(kData->oscData->target, targetPath, "iiiiiiii", pluginId, audioIns, audioOuts, midiIns, midiOuts, cIns, cOuts, cTotals);
- }
- }
-
- void CarlaEngine::osc_send_control_set_parameter_data(const int32_t pluginId, const int32_t index, const int32_t type, const int32_t hints, const char* const name, const char* const label, const float current)
- {
- carla_debug("CarlaEngine::osc_send_control_set_parameter_data(%i, %i, %i, %i, \"%s\", \"%s\", %g)", pluginId, index, type, hints, name, label, current);
- CARLA_ASSERT(kData->oscData != nullptr);
- CARLA_ASSERT(pluginId >= 0 && pluginId < (int32_t)kData->curPluginCount);
- CARLA_ASSERT(index >= 0);
- CARLA_ASSERT(type != PARAMETER_UNKNOWN);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+20];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/set_parameter_data");
- lo_send(kData->oscData->target, targetPath, "iiiissd", pluginId, index, type, hints, name, label, current);
- }
- }
-
- void CarlaEngine::osc_send_control_set_parameter_ranges(const int32_t pluginId, const int32_t index, const float min, const float max, const float def, const float step, const float stepSmall, const float stepLarge)
- {
- carla_debug("CarlaEngine::osc_send_control_set_parameter_ranges(%i, %i, %g, %g, %g, %g, %g, %g)", pluginId, index, min, max, def, step, stepSmall, stepLarge);
- CARLA_ASSERT(kData->oscData != nullptr);
- CARLA_ASSERT(pluginId >= 0 && pluginId < (int32_t)kData->curPluginCount);
- CARLA_ASSERT(index >= 0);
- CARLA_ASSERT(min < max);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+22];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/set_parameter_ranges");
- lo_send(kData->oscData->target, targetPath, "iidddddd", pluginId, index, min, max, def, step, stepSmall, stepLarge);
- }
- }
-
- void CarlaEngine::osc_send_control_set_parameter_midi_cc(const int32_t pluginId, const int32_t index, const int32_t cc)
- {
- carla_debug("CarlaEngine::osc_send_control_set_parameter_midi_cc(%i, %i, %i)", pluginId, index, cc);
- CARLA_ASSERT(kData->oscData != nullptr);
- CARLA_ASSERT(pluginId >= 0 && pluginId < (int32_t)kData->curPluginCount);
- CARLA_ASSERT(index >= 0);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+23];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/set_parameter_midi_cc");
- lo_send(kData->oscData->target, targetPath, "iii", pluginId, index, cc);
- }
- }
-
- void CarlaEngine::osc_send_control_set_parameter_midi_channel(const int32_t pluginId, const int32_t index, const int32_t channel)
- {
- carla_debug("CarlaEngine::osc_send_control_set_parameter_midi_channel(%i, %i, %i)", pluginId, index, channel);
- CARLA_ASSERT(kData->oscData != nullptr);
- CARLA_ASSERT(pluginId >= 0 && pluginId < (int32_t)kData->curPluginCount);
- CARLA_ASSERT(index >= 0);
- CARLA_ASSERT(channel >= 0 && channel < 16);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+28];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/set_parameter_midi_channel");
- lo_send(kData->oscData->target, targetPath, "iii", pluginId, index, channel);
- }
- }
-
- void CarlaEngine::osc_send_control_set_parameter_value(const int32_t pluginId, const int32_t index, const float value)
- {
- #if 0 //DEBUG
- CARLA_ASSERT(kData->oscData != nullptr);
- CARLA_ASSERT(pluginId >= 0 && pluginId < (int32_t)kData->curPluginCount);
- if (index < 0)
- carla_debug("CarlaEngine::osc_send_control_set_parameter_value(%i, %s, %g)", pluginId, InternalParametersIndex2Str((InternalParametersIndex)index), value);
- else
- carla_debug("CarlaEngine::osc_send_control_set_parameter_value(%i, %i, %g)", pluginId, index, value);
- #endif
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+21];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/set_parameter_value");
- lo_send(kData->oscData->target, targetPath, "iid", pluginId, index, value);
- }
- }
-
- void CarlaEngine::osc_send_control_set_default_value(const int32_t pluginId, const int32_t index, const float value)
- {
- carla_debug("CarlaEngine::osc_send_control_set_default_value(%i, %i, %g)", pluginId, index, value);
- CARLA_ASSERT(kData->oscData != nullptr);
- CARLA_ASSERT(pluginId >= 0 && pluginId < (int32_t)kData->maxPluginNumber);
- CARLA_ASSERT(index >= 0);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+19];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/set_default_value");
- lo_send(kData->oscData->target, targetPath, "iid", pluginId, index, value);
- }
- }
-
- void CarlaEngine::osc_send_control_set_program(const int32_t pluginId, const int32_t index)
- {
- carla_debug("CarlaEngine::osc_send_control_set_program(%i, %i)", pluginId, index);
- CARLA_ASSERT(kData->oscData != nullptr);
- CARLA_ASSERT(pluginId >= 0 && pluginId < (int32_t)kData->maxPluginNumber);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+13];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/set_program");
- lo_send(kData->oscData->target, targetPath, "ii", pluginId, index);
- }
- }
-
- void CarlaEngine::osc_send_control_set_program_count(const int32_t pluginId, const int32_t count)
- {
- carla_debug("CarlaEngine::osc_send_control_set_program_count(%i, %i)", pluginId, count);
- CARLA_ASSERT(kData->oscData != nullptr);
- CARLA_ASSERT(pluginId >= 0 && pluginId < (int32_t)kData->maxPluginNumber);
- CARLA_ASSERT(count >= 0);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+19];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/set_program_count");
- lo_send(kData->oscData->target, targetPath, "ii", pluginId, count);
- }
- }
-
- void CarlaEngine::osc_send_control_set_program_name(const int32_t pluginId, const int32_t index, const char* const name)
- {
- carla_debug("CarlaEngine::osc_send_control_set_program_name(%i, %i, \"%s\")", pluginId, index, name);
- CARLA_ASSERT(kData->oscData != nullptr);
- CARLA_ASSERT(pluginId >= 0 && pluginId < (int32_t)kData->maxPluginNumber);
- CARLA_ASSERT(index >= 0);
- CARLA_ASSERT(name);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+18];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/set_program_name");
- lo_send(kData->oscData->target, targetPath, "iis", pluginId, index, name);
- }
- }
-
- void CarlaEngine::osc_send_control_set_midi_program(const int32_t pluginId, const int32_t index)
- {
- carla_debug("CarlaEngine::osc_send_control_set_midi_program(%i, %i)", pluginId, index);
- CARLA_ASSERT(kData->oscData != nullptr);
- CARLA_ASSERT(pluginId >= 0 && pluginId < (int32_t)kData->maxPluginNumber);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+18];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/set_midi_program");
- lo_send(kData->oscData->target, targetPath, "ii", pluginId, index);
- }
- }
-
- void CarlaEngine::osc_send_control_set_midi_program_count(const int32_t pluginId, const int32_t count)
- {
- carla_debug("CarlaEngine::osc_send_control_set_midi_program_count(%i, %i)", pluginId, count);
- CARLA_ASSERT(kData->oscData != nullptr);
- CARLA_ASSERT(pluginId >= 0 && pluginId < (int32_t)kData->maxPluginNumber);
- CARLA_ASSERT(count >= 0);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+24];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/set_midi_program_count");
- lo_send(kData->oscData->target, targetPath, "ii", pluginId, count);
- }
- }
-
- void CarlaEngine::osc_send_control_set_midi_program_data(const int32_t pluginId, const int32_t index, const int32_t bank, const int32_t program, const char* const name)
- {
- carla_debug("CarlaEngine::osc_send_control_set_midi_program_data(%i, %i, %i, %i, \"%s\")", pluginId, index, bank, program, name);
- CARLA_ASSERT(kData->oscData != nullptr);
- CARLA_ASSERT(pluginId >= 0 && pluginId < (int32_t)kData->maxPluginNumber);
- CARLA_ASSERT(index >= 0);
- CARLA_ASSERT(bank >= 0);
- CARLA_ASSERT(program >= 0);
- CARLA_ASSERT(name);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+23];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/set_midi_program_data");
- lo_send(kData->oscData->target, targetPath, "iiiis", pluginId, index, bank, program, name);
- }
- }
-
- void CarlaEngine::osc_send_control_note_on(const int32_t pluginId, const int32_t channel, const int32_t note, const int32_t velo)
- {
- carla_debug("CarlaEngine::osc_send_control_note_on(%i, %i, %i, %i)", pluginId, channel, note, velo);
- CARLA_ASSERT(kData->oscData != nullptr);
- CARLA_ASSERT(pluginId >= 0 && pluginId < (int32_t)kData->maxPluginNumber);
- CARLA_ASSERT(channel >= 0 && channel < 16);
- CARLA_ASSERT(note >= 0 && note < 128);
- CARLA_ASSERT(velo > 0 && velo < 128);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+9];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/note_on");
- lo_send(kData->oscData->target, targetPath, "iiii", pluginId, channel, note, velo);
- }
- }
-
- void CarlaEngine::osc_send_control_note_off(const int32_t pluginId, const int32_t channel, const int32_t note)
- {
- carla_debug("CarlaEngine::osc_send_control_note_off(%i, %i, %i)", pluginId, channel, note);
- CARLA_ASSERT(kData->oscData != nullptr);
- CARLA_ASSERT(pluginId >= 0 && pluginId < (int32_t)kData->maxPluginNumber);
- CARLA_ASSERT(channel >= 0 && channel < 16);
- CARLA_ASSERT(note >= 0 && note < 128);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+10];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/note_off");
- lo_send(kData->oscData->target, targetPath, "iii", pluginId, channel, note);
- }
- }
-
- void CarlaEngine::osc_send_control_set_peaks(const int32_t pluginId)
- {
- CARLA_ASSERT(kData->oscData != nullptr);
- CARLA_ASSERT(pluginId >= 0 && pluginId < (int32_t)kData->maxPluginNumber);
-
- const EnginePluginData& pData = kData->plugins[pluginId];
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+22];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/set_peaks");
- lo_send(kData->oscData->target, targetPath, "iffff", pluginId, pData.insPeak[0], pData.insPeak[1], pData.outsPeak[0], pData.outsPeak[1]);
- }
- }
-
- void CarlaEngine::osc_send_control_exit()
- {
- carla_debug("CarlaEngine::osc_send_control_exit()");
- CARLA_ASSERT(kData->oscData != nullptr);
-
- if (kData->oscData && kData->oscData->target)
- {
- char targetPath[std::strlen(kData->oscData->path)+6];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/exit");
- lo_send(kData->oscData->target, targetPath, "");
- }
- }
- #else
- void CarlaEngine::osc_send_bridge_audio_count(const int32_t ins, const int32_t outs, const int32_t total)
- {
- CARLA_ASSERT(kData->oscData != nullptr);
- CARLA_ASSERT(total >= 0 && total >= ins + outs);
- carla_debug("CarlaEngine::osc_send_bridge_audio_count(%i, %i, %i)", ins, outs, total);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+20];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/bridge_audio_count");
- lo_send(kData->oscData->target, targetPath, "iii", ins, outs, total);
- }
- }
-
- void CarlaEngine::osc_send_bridge_midi_count(const int32_t ins, const int32_t outs, const int32_t total)
- {
- CARLA_ASSERT(kData->oscData != nullptr);
- CARLA_ASSERT(total >= 0 && total >= ins + outs);
- carla_debug("CarlaEngine::osc_send_bridge_midi_count(%i, %i, %i)", ins, outs, total);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+19];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/bridge_midi_count");
- lo_send(kData->oscData->target, targetPath, "iii", ins, outs, total);
- }
- }
-
- void CarlaEngine::osc_send_bridge_parameter_count(const int32_t ins, const int32_t outs, const int32_t total)
- {
- CARLA_ASSERT(kData->oscData != nullptr);
- CARLA_ASSERT(total >= 0 && total >= ins + outs);
- carla_debug("CarlaEngine::osc_send_bridge_parameter_count(%i, %i, %i)", ins, outs, total);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+24];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/bridge_parameter_count");
- lo_send(kData->oscData->target, targetPath, "iii", ins, outs, total);
- }
- }
-
- void CarlaEngine::osc_send_bridge_program_count(const int32_t count)
- {
- CARLA_ASSERT(kData->oscData != nullptr);
- CARLA_ASSERT(count >= 0);
- carla_debug("CarlaEngine::osc_send_bridge_program_count(%i)", count);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+22];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/bridge_program_count");
- lo_send(kData->oscData->target, targetPath, "i", count);
- }
- }
-
- void CarlaEngine::osc_send_bridge_midi_program_count(const int32_t count)
- {
- CARLA_ASSERT(kData->oscData != nullptr);
- CARLA_ASSERT(count >= 0);
- carla_debug("CarlaEngine::osc_send_bridge_midi_program_count(%i)", count);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+27];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/bridge_midi_program_count");
- lo_send(kData->oscData->target, targetPath, "i", count);
- }
- }
-
- void CarlaEngine::osc_send_bridge_plugin_info(const int32_t category, const int32_t hints, const char* const name, const char* const label, const char* const maker, const char* const copyright, const int64_t uniqueId)
- {
- CARLA_ASSERT(kData->oscData != nullptr);
- CARLA_ASSERT(name != nullptr);
- CARLA_ASSERT(label != nullptr);
- CARLA_ASSERT(maker != nullptr);
- CARLA_ASSERT(copyright != nullptr);
- carla_debug("CarlaEngine::osc_send_bridge_plugin_info(%i, %i, \"%s\", \"%s\", \"%s\", \"%s\", " P_INT64 ")", category, hints, name, label, maker, copyright, uniqueId);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+20];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/bridge_plugin_info");
- lo_send(kData->oscData->target, targetPath, "iissssh", category, hints, name, label, maker, copyright, uniqueId);
- }
- }
-
- void CarlaEngine::osc_send_bridge_parameter_info(const int32_t index, const char* const name, const char* const unit)
- {
- CARLA_ASSERT(kData->oscData != nullptr);
- CARLA_ASSERT(name != nullptr);
- CARLA_ASSERT(unit != nullptr);
- carla_debug("CarlaEngine::osc_send_bridge_parameter_info(%i, \"%s\", \"%s\")", index, name, unit);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+23];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/bridge_parameter_info");
- lo_send(kData->oscData->target, targetPath, "iss", index, name, unit);
- }
- }
-
- void CarlaEngine::osc_send_bridge_parameter_data(const int32_t index, const int32_t type, const int32_t rindex, const int32_t hints, const int32_t midiChannel, const int32_t midiCC)
- {
- CARLA_ASSERT(kData->oscData != nullptr);
- carla_debug("CarlaEngine::osc_send_bridge_parameter_data(%i, %i, %i, %i, %i, %i)", index, type, rindex, hints, midiChannel, midiCC);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+23];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/bridge_parameter_data");
- lo_send(kData->oscData->target, targetPath, "iiiiii", index, type, rindex, hints, midiChannel, midiCC);
- }
- }
-
- void CarlaEngine::osc_send_bridge_parameter_ranges(const int32_t index, const float def, const float min, const float max, const float step, const float stepSmall, const float stepLarge)
- {
- CARLA_ASSERT(kData->oscData != nullptr);
- carla_debug("CarlaEngine::osc_send_bridge_parameter_ranges(%i, %f, %f, %f, %f, %f, %f)", index, def, min, max, step, stepSmall, stepLarge);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+25];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/bridge_parameter_ranges");
- lo_send(kData->oscData->target, targetPath, "iffffff", index, def, min, max, step, stepSmall, stepLarge);
- }
- }
-
- void CarlaEngine::osc_send_bridge_program_info(const int32_t index, const char* const name)
- {
- CARLA_ASSERT(kData->oscData != nullptr);
- carla_debug("CarlaEngine::osc_send_bridge_program_info(%i, \"%s\")", index, name);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+21];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/bridge_program_info");
- lo_send(kData->oscData->target, targetPath, "is", index, name);
- }
- }
-
- void CarlaEngine::osc_send_bridge_midi_program_info(const int32_t index, const int32_t bank, const int32_t program, const char* const label)
- {
- CARLA_ASSERT(kData->oscData != nullptr);
- carla_debug("CarlaEngine::osc_send_bridge_midi_program_info(%i, %i, %i, \"%s\")", index, bank, program, label);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+26];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/bridge_midi_program_info");
- lo_send(kData->oscData->target, targetPath, "iiis", index, bank, program, label);
- }
- }
-
- void CarlaEngine::osc_send_bridge_configure(const char* const key, const char* const value)
- {
- CARLA_ASSERT(kData->oscData != nullptr);
- CARLA_ASSERT(key != nullptr);
- CARLA_ASSERT(value != nullptr);
- carla_debug("CarlaEngine::osc_send_bridge_configure(\"%s\", \"%s\")", key, value);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+18];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/bridge_configure");
- lo_send(kData->oscData->target, targetPath, "ss", key, value);
- }
- }
-
- void CarlaEngine::osc_send_bridge_set_parameter_value(const int32_t index, const float value)
- {
- CARLA_ASSERT(kData->oscData != nullptr);
- carla_debug("CarlaEngine::osc_send_bridge_set_parameter_value(%i, %f)", index, value);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+28];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/bridge_set_parameter_value");
- lo_send(kData->oscData->target, targetPath, "if", index, value);
- }
- }
-
- void CarlaEngine::osc_send_bridge_set_default_value(const int32_t index, const float value)
- {
- CARLA_ASSERT(kData->oscData != nullptr);
- carla_debug("CarlaEngine::osc_send_bridge_set_default_value(%i, %f)", index, value);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+26];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/bridge_set_default_value");
- lo_send(kData->oscData->target, targetPath, "if", index, value);
- }
- }
-
- void CarlaEngine::osc_send_bridge_set_program(const int32_t index)
- {
- CARLA_ASSERT(kData->oscData != nullptr);
- carla_debug("CarlaEngine::osc_send_bridge_set_program(%i)", index);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+20];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/bridge_set_program");
- lo_send(kData->oscData->target, targetPath, "i", index);
- }
- }
-
- void CarlaEngine::osc_send_bridge_set_midi_program(const int32_t index)
- {
- CARLA_ASSERT(kData->oscData != nullptr);
- carla_debug("CarlaEngine::osc_send_bridge_set_midi_program(%i)", index);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+25];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/bridge_set_midi_program");
- lo_send(kData->oscData->target, targetPath, "i", index);
- }
- }
-
- void CarlaEngine::osc_send_bridge_set_custom_data(const char* const type, const char* const key, const char* const value)
- {
- CARLA_ASSERT(kData->oscData != nullptr);
- carla_debug("CarlaEngine::osc_send_bridge_set_custom_data(\"%s\", \"%s\", \"%s\")", type, key, value);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+24];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/bridge_set_custom_data");
- lo_send(kData->oscData->target, targetPath, "sss", type, key, value);
- }
- }
-
- void CarlaEngine::osc_send_bridge_set_chunk_data(const char* const chunkFile)
- {
- CARLA_ASSERT(kData->oscData != nullptr);
- carla_debug("CarlaEngine::osc_send_bridge_set_chunk_data(\"%s\")", chunkFile);
-
- if (kData->oscData != nullptr && kData->oscData->target != nullptr)
- {
- char targetPath[std::strlen(kData->oscData->path)+23];
- std::strcpy(targetPath, kData->oscData->path);
- std::strcat(targetPath, "/bridge_set_chunk_data");
- lo_send(kData->oscData->target, targetPath, "s", chunkFile);
- }
- }
- #endif
-
- CARLA_BACKEND_END_NAMESPACE
|