|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610 |
- /*
- * Carla Bridge Plugin
- * 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 doc/GPL.txt file.
- */
-
- #include "CarlaBridgeClient.hpp"
-
- #include "CarlaEngine.hpp"
- #include "CarlaPlugin.hpp"
- #include "CarlaHost.hpp"
-
- #include "CarlaBackendUtils.hpp"
- #include "CarlaBridgeUtils.hpp"
-
- #include "juce_core.h"
-
- #ifdef CARLA_OS_UNIX
- # include <signal.h>
- #endif
-
- using juce::File;
-
- // -------------------------------------------------------------------------
-
- static volatile bool gCloseNow = false;
- static volatile bool gSaveNow = false;
-
- #ifdef CARLA_OS_WIN
- BOOL WINAPI closeSignalHandler(DWORD dwCtrlType)
- {
- if (dwCtrlType == CTRL_C_EVENT)
- {
- gCloseNow = true;
- return TRUE;
- }
-
- return FALSE;
- }
- #else
- static void closeSignalHandler(int)
- {
- gCloseNow = true;
- }
- static void saveSignalHandler(int)
- {
- gSaveNow = true;
- }
- #endif
-
- void initSignalHandler()
- {
- #ifdef CARLA_OS_WIN
- SetConsoleCtrlHandler(closeSignalHandler, TRUE);
- #elif defined(CARLA_OS_LINUX) || defined(CARLA_OS_HAIKU)
- struct sigaction sint;
- struct sigaction sterm;
- struct sigaction susr1;
-
- sint.sa_handler = closeSignalHandler;
- sint.sa_flags = SA_RESTART;
- sint.sa_restorer = nullptr;
- sigemptyset(&sint.sa_mask);
- sigaction(SIGINT, &sint, nullptr);
-
- sterm.sa_handler = closeSignalHandler;
- sterm.sa_flags = SA_RESTART;
- sterm.sa_restorer = nullptr;
- sigemptyset(&sterm.sa_mask);
- sigaction(SIGTERM, &sterm, nullptr);
-
- susr1.sa_handler = saveSignalHandler;
- susr1.sa_flags = SA_RESTART;
- susr1.sa_restorer = nullptr;
- sigemptyset(&susr1.sa_mask);
- sigaction(SIGUSR1, &susr1, nullptr);
- #endif
- }
-
- // -------------------------------------------------------------------------
-
- CARLA_BRIDGE_START_NAMESPACE
-
- #if 0
- } // Fix editor indentation
- #endif
-
- // -------------------------------------------------------------------------
-
- class CarlaPluginClient : public CarlaBridgeClient
- {
- public:
- CarlaPluginClient(const bool useBridge, const char* const driverName, const char* audioBaseName, const char* controlBaseName)
- : CarlaBridgeClient(nullptr),
- fEngine(nullptr),
- fPlugin(nullptr)
- {
- CARLA_ASSERT(driverName != nullptr);
- carla_debug("CarlaPluginClient::CarlaPluginClient(%s, \"%s\", %s, %s)", bool2str(useBridge), driverName, audioBaseName, controlBaseName);
-
- carla_set_engine_callback(callback, this);
-
- File curDir(File::getSpecialLocation(File::currentApplicationFile).getParentDirectory());
-
- if (curDir.getChildFile("resources").exists())
- carla_set_engine_option(CarlaBackend::OPTION_PATH_RESOURCES, 0, curDir.getChildFile("resources").getFullPathName().toRawUTF8());
- else if (curDir.getChildFile("../../modules/carla_native/resources").exists())
- carla_set_engine_option(CarlaBackend::OPTION_PATH_RESOURCES, 0, curDir.getChildFile("../../modules/carla_native/resources").getFullPathName().toRawUTF8());
- else
- carla_set_engine_option(CarlaBackend::OPTION_PATH_RESOURCES, 0, curDir.getChildFile("../modules/carla_native/resources").getFullPathName().toRawUTF8());
-
- if (useBridge)
- carla_engine_init_bridge(audioBaseName, controlBaseName, driverName);
- else
- carla_engine_init("JACK", driverName);
- }
-
- ~CarlaPluginClient() override
- {
- carla_debug("CarlaPluginClient::~CarlaPluginClient()");
-
- carla_engine_close();
- }
-
- void oscInit(const char* const url)
- {
- CarlaBridgeClient::oscInit(url);
-
- fEngine = carla_get_standalone_engine();
- fEngine->setOscBridgeData(&fOscData);
- }
-
- void ready(const bool doSaveLoad)
- {
- fEngine = carla_get_standalone_engine();
- fPlugin = fEngine->getPlugin(0);
-
- if (doSaveLoad)
- {
- fProjFileName = fPlugin->getName();
- fProjFileName += ".carxs";
-
- if (! File::isAbsolutePath((const char*)fProjFileName))
- fProjFileName = File::getCurrentWorkingDirectory().getChildFile((const char*)fProjFileName).getFullPathName().toRawUTF8();
-
- if (! fPlugin->loadStateFromFile(fProjFileName))
- carla_stderr("Plugin preset load failed, error was:\n%s", fEngine->getLastError());
- }
- }
-
- void idle()
- {
- CARLA_SAFE_ASSERT_RETURN(fEngine != nullptr,);
- CARLA_SAFE_ASSERT_RETURN(fPlugin != nullptr,);
-
- fEngine->idle();
- CarlaBridgeClient::oscIdle();
-
- if (gSaveNow)
- {
- gSaveNow = false;
-
- if (fProjFileName.isNotEmpty())
- {
- if (! fPlugin->saveStateToFile(fProjFileName))
- carla_stderr("Plugin preset save failed, error was:\n%s", fEngine->getLastError());
- }
- }
-
- if (gCloseNow)
- {
- //gCloseNow = false;
- // close something?
- }
- }
-
- void exec()
- {
- while (! gCloseNow)
- {
- idle();
- carla_msleep(30);
- }
- }
-
- // ---------------------------------------------------------------------
- // plugin management
-
- void saveNow()
- {
- CARLA_SAFE_ASSERT_RETURN(fEngine != nullptr,);
- CARLA_SAFE_ASSERT_RETURN(fPlugin != nullptr,);
- carla_debug("CarlaPluginClient::saveNow()");
-
- fPlugin->prepareForSave();
-
- for (uint32_t i=0; i < fPlugin->getCustomDataCount(); ++i)
- {
- const CarlaBackend::CustomData& cdata(fPlugin->getCustomData(i));
- fEngine->oscSend_bridge_set_custom_data(cdata.type, cdata.key, cdata.value);
- }
-
- if (fPlugin->getOptions() & CarlaBackend::PLUGIN_OPTION_USE_CHUNKS)
- {
- void* data = nullptr;
- int32_t dataSize = fPlugin->getChunkData(&data);
-
- if (data && dataSize >= 4)
- {
- #if 0
- QString filePath;
- filePath = QDir::tempPath();
- #ifdef Q_OS_WIN
- filePath += "\\.CarlaChunk_";
- #else
- filePath += "/.CarlaChunk_";
- #endif
- filePath += fPlugin->getName();
-
- QFile file(filePath);
-
- if (file.open(QIODevice::WriteOnly))
- {
- QByteArray chunk((const char*)data, dataSize);
- file.write(chunk);
- file.close();
- fEngine->oscSend_bridge_set_chunk_data(filePath.toUtf8().constData());
- }
- #endif
- }
- }
-
- fEngine->oscSend_bridge_configure(CARLA_BRIDGE_MSG_SAVED, "");
- }
-
- void setParameterMidiChannel(const int32_t index, const int32_t channel)
- {
- CARLA_SAFE_ASSERT_RETURN(fPlugin != nullptr,);
- carla_debug("CarlaPluginClient::setParameterMidiChannel(%i, %i)", index, channel);
-
- fPlugin->setParameterMidiChannel(index, channel, false, false);
- }
-
- void setParameterMidiCC(const int32_t index, const int32_t cc)
- {
- CARLA_SAFE_ASSERT_RETURN(fPlugin != nullptr,);
- carla_debug("CarlaPluginClient::setParameterMidiCC(%i, %i)", index, cc);
-
- fPlugin->setParameterMidiCC(index, cc, false, false);
- }
-
- void setCustomData(const char* const type, const char* const key, const char* const value)
- {
- CARLA_SAFE_ASSERT_RETURN(fPlugin != nullptr,);
- carla_debug("CarlaPluginClient::setCustomData(\"%s\", \"%s\", \"%s\")", type, key, value);
-
- fPlugin->setCustomData(type, key, value, true);
- }
-
- void setChunkData(const char* const filePath)
- {
- CARLA_SAFE_ASSERT_RETURN(fPlugin != nullptr,);
- carla_debug("CarlaPluginClient::setChunkData(\"%s\")", filePath);
-
- #if 0
- QString chunkFilePath(filePath);
-
- #ifdef CARLA_OS_WIN
- if (chunkFilePath.startsWith("/"))
- {
- // running under Wine, posix host
- chunkFilePath = chunkFilePath.replace(0, 1, "Z:/");
- chunkFilePath = QDir::toNativeSeparators(chunkFilePath);
- }
- #endif
- QFile chunkFile(chunkFilePath);
-
- if (fPlugin != nullptr && chunkFile.open(QIODevice::ReadOnly | QIODevice::Text))
- {
- QTextStream in(&chunkFile);
- QString stringData(in.readAll());
- chunkFile.close();
- chunkFile.remove();
-
- fPlugin->setChunkData(stringData.toUtf8().constData());
- }
- #endif
- }
-
- // ---------------------------------------------------------------------
-
- protected:
- void handleCallback(const CarlaBackend::CallbackType action, const int value1, const int value2, const float value3, const char* const valueStr)
- {
- CARLA_BACKEND_USE_NAMESPACE;
-
- // TODO
-
- switch (action)
- {
- case CALLBACK_PARAMETER_VALUE_CHANGED:
- if (isOscControlRegistered())
- sendOscControl(value1, value3);
- break;
-
- case CALLBACK_SHOW_GUI:
- if (! isOscControlRegistered())
- {
- if (value1 != 1)
- gCloseNow = true;
- }
- else
- {
- // show-gui button
- fEngine->oscSend_bridge_configure(CARLA_BRIDGE_MSG_HIDE_GUI, "");
- }
- break;
- default:
- break;
- }
-
- return;
- (void)value2;
- (void)value3;
- (void)valueStr;
- }
-
- private:
- CarlaBackend::CarlaEngine* fEngine;
- CarlaBackend::CarlaPlugin* fPlugin;
-
- CarlaString fProjFileName;
-
- static void callback(void* ptr, CarlaBackend::CallbackType action, unsigned int pluginId, int value1, int value2, float value3, const char* valueStr)
- {
- carla_debug("CarlaPluginClient::callback(%p, %i:%s, %i, %i, %i, %f, \"%s\")", ptr, action, CarlaBackend::CallbackType2Str(action), pluginId, value1, value2, value3, valueStr);
- CARLA_SAFE_ASSERT_RETURN(ptr != nullptr,);
- CARLA_SAFE_ASSERT_RETURN(pluginId == 0,);
-
- return ((CarlaPluginClient*)ptr)->handleCallback(action, value1, value2, value3, valueStr);
- }
- };
-
- // -------------------------------------------------------------------------
-
- int CarlaBridgeOsc::handleMsgShow()
- {
- carla_debug("CarlaBridgeOsc::handleMsgShow()");
-
- carla_show_gui(0, true);
- return 0;
- }
-
- int CarlaBridgeOsc::handleMsgHide()
- {
- carla_debug("CarlaBridgeOsc::handleMsgHide()");
-
- carla_show_gui(0, false);
- return 0;
- }
-
- int CarlaBridgeOsc::handleMsgQuit()
- {
- carla_debug("CarlaBridgeOsc::handleMsgQuit()");
-
- gCloseNow = true;
- return 0;
- }
-
- // -------------------------------------------------------------------------
-
- int CarlaBridgeOsc::handleMsgPluginSaveNow()
- {
- CARLA_SAFE_ASSERT_RETURN(fClient != nullptr, 1);
- carla_debug("CarlaBridgeOsc::handleMsgPluginSaveNow()");
-
- CarlaPluginClient* const plugClient((CarlaPluginClient*)fClient);
- plugClient->saveNow();
-
- return 0;
- }
-
- int CarlaBridgeOsc::handleMsgPluginSetParameterMidiChannel(CARLA_BRIDGE_OSC_HANDLE_ARGS)
- {
- CARLA_BRIDGE_OSC_CHECK_OSC_TYPES(2, "ii");
- CARLA_SAFE_ASSERT_RETURN(fClient != nullptr, 1);
- carla_debug("CarlaBridgeOsc::handleMsgPluginSetParameterMidiChannel()");
-
- const int32_t index = argv[0]->i;
- const int32_t channel = argv[1]->i;
-
- CarlaPluginClient* const plugClient((CarlaPluginClient*)fClient);
- plugClient->setParameterMidiChannel(index, channel);
-
- return 0;
- }
-
- int CarlaBridgeOsc::handleMsgPluginSetParameterMidiCC(CARLA_BRIDGE_OSC_HANDLE_ARGS)
- {
- CARLA_BRIDGE_OSC_CHECK_OSC_TYPES(2, "ii");
- CARLA_SAFE_ASSERT_RETURN(fClient != nullptr, 1);
- carla_debug("CarlaBridgeOsc::handleMsgPluginSetParameterMidiCC()");
-
- const int32_t index = argv[0]->i;
- const int32_t cc = argv[1]->i;
-
- CarlaPluginClient* const plugClient((CarlaPluginClient*)fClient);
- plugClient->setParameterMidiCC(index, cc);
-
- return 0;
- }
-
- int CarlaBridgeOsc::handleMsgPluginSetChunk(CARLA_BRIDGE_OSC_HANDLE_ARGS)
- {
- CARLA_BRIDGE_OSC_CHECK_OSC_TYPES(1, "s");
- CARLA_SAFE_ASSERT_RETURN(fClient != nullptr, 1);
- carla_debug("CarlaBridgeOsc::handleMsgPluginSetChunk()");
-
- const char* const chunkFile = (const char*)&argv[0]->s;
-
- CarlaPluginClient* const plugClient((CarlaPluginClient*)fClient);
- plugClient->setChunkData(chunkFile);
-
- return 0;
- }
-
- int CarlaBridgeOsc::handleMsgPluginSetCustomData(CARLA_BRIDGE_OSC_HANDLE_ARGS)
- {
- CARLA_BRIDGE_OSC_CHECK_OSC_TYPES(3, "sss");
- CARLA_SAFE_ASSERT_RETURN(fClient != nullptr, 1);
- carla_debug("CarlaBridgeOsc::handleMsgPluginSetCustomData()");
-
- const char* const type = (const char*)&argv[0]->s;
- const char* const key = (const char*)&argv[1]->s;
- const char* const value = (const char*)&argv[2]->s;
-
- CarlaPluginClient* const plugClient((CarlaPluginClient*)fClient);
- plugClient->setCustomData(type, key, value);
-
- return 0;
- }
-
- // -------------------------------------------------------------------------
-
- CARLA_BRIDGE_END_NAMESPACE
-
- // -------------------------------------------------------------------------
-
- int main(int argc, char* argv[])
- {
- CARLA_BRIDGE_USE_NAMESPACE;
-
- // ---------------------------------------------------------------------
- // Check argument count
-
- if (argc != 6 && argc != 7)
- {
- carla_stdout("usage: %s <osc-url|\"null\"> <type> <filename> <name|\"(none)\"> <label>", argv[0]);
- return 1;
- }
-
- // ---------------------------------------------------------------------
- // Get args
-
- const char* const oscUrl = argv[1];
- const char* const stype = argv[2];
- const char* const filename = argv[3];
- const char* name = argv[4];
- const char* label = argv[5];
-
- // ---------------------------------------------------------------------
- // Setup args
-
- const bool useBridge = (argc == 7);
- const bool useOsc = std::strcmp(oscUrl, "null");
-
- if (std::strcmp(name, "(none)") == 0)
- name = nullptr;
-
- if (std::strlen(label) == 0)
- label = nullptr;
-
- char bridgeBaseAudioName[6+1];
- char bridgeBaseControlName[6+1];
-
- if (useBridge)
- {
- std::strncpy(bridgeBaseAudioName, argv[6], 6);
- std::strncpy(bridgeBaseControlName, argv[6]+6, 6);
- bridgeBaseAudioName[6] = '\0';
- bridgeBaseControlName[6] = '\0';
- }
- else
- {
- bridgeBaseAudioName[0] = '\0';
- bridgeBaseControlName[0] = '\0';
- }
-
- // ---------------------------------------------------------------------
- // Check plugin type
-
- CarlaBackend::PluginType itype(CarlaBackend::getPluginTypeFromString(stype));
-
- if (itype == CarlaBackend::PLUGIN_NONE)
- {
- carla_stderr("Invalid plugin type '%s'", stype);
- return 1;
- }
-
- // ---------------------------------------------------------------------
- // Set client name
-
- CarlaString clientName((name != nullptr) ? name : label);
-
- if (clientName.isEmpty())
- {
- File file(filename);
- clientName = file.getFileNameWithoutExtension().toRawUTF8();
- }
-
- // ---------------------------------------------------------------------
- // Set extraStuff
-
- const void* extraStuff = nullptr;
-
- if (itype == CarlaBackend::PLUGIN_GIG || itype == CarlaBackend::PLUGIN_SF2 || itype == CarlaBackend::PLUGIN_SFZ)
- {
- if (label == nullptr)
- label = clientName;
-
- if (std::strstr(label, " (16 outs)") == 0)
- extraStuff = (const void*)label; // dummy non-null pointer
- }
-
- // ---------------------------------------------------------------------
- // Init plugin client
-
- CarlaPluginClient client(useBridge, (const char*)clientName, bridgeBaseAudioName, bridgeBaseControlName);
-
- // ---------------------------------------------------------------------
- // Init OSC
-
- if (useOsc)
- client.oscInit(oscUrl);
-
- // ---------------------------------------------------------------------
- // Listen for ctrl+c or sigint/sigterm events
-
- initSignalHandler();
-
- // ---------------------------------------------------------------------
- // Init plugin
-
- int ret;
-
- if (carla_add_plugin(CarlaBackend::BINARY_NATIVE, itype, filename, name, label, extraStuff))
- {
- if (useOsc)
- {
- client.sendOscUpdate();
- client.sendOscBridgeUpdate();
- }
- else
- {
- carla_set_active(0, true);
-
- if (const CarlaPluginInfo* const pluginInfo = carla_get_plugin_info(0))
- {
- if (pluginInfo->hints & CarlaBackend::PLUGIN_HAS_GUI)
- carla_show_gui(0, true);
- }
- }
-
- client.ready(!useOsc);
- client.exec();
-
- carla_remove_plugin(0);
-
- ret = 0;
- }
- else
- {
- const char* const lastError(carla_get_last_error());
- carla_stderr("Plugin failed to load, error was:\n%s", lastError);
-
- if (useOsc)
- client.sendOscBridgeError(lastError);
-
- ret = 1;
- }
-
- // ---------------------------------------------------------------------
- // Close OSC
-
- if (useOsc)
- client.oscClose();
-
- return ret;
- }
|