|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641 |
- /*
- * Carla Plugin
- * Copyright (C) 2011-2013 Filipe Coelho <falktx@falktx.com>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * For a full copy of the GNU General Public License see the GPL.txt file
- */
-
- #ifndef __CARLA_PLUGIN_INTERNAL_HPP__
- #define __CARLA_PLUGIN_INTERNAL_HPP__
-
- #include "CarlaBackendUtils.hpp"
- #include "CarlaPluginThread.hpp"
- #include "CarlaPlugin.hpp"
- #include "CarlaEngine.hpp"
- #include "CarlaOscUtils.hpp"
- #include "CarlaStateUtils.hpp"
- #include "CarlaMutex.hpp"
- #include "CarlaMIDI.h"
- #include "RtList.hpp"
-
- #include <QtGui/QMainWindow>
-
- #define CARLA_DECLARE_NON_COPY_STRUCT(structName) \
- structName(structName&) = delete; \
- structName(const structName&) = delete;
-
- #define CARLA_DECLARE_NON_COPY_STRUCT_WITH_LEAK_DETECTOR(structName) \
- CARLA_DECLARE_NON_COPY_STRUCT(structName) \
- CARLA_LEAK_DETECTOR(structName)
-
- #define CARLA_PROCESS_CONTINUE_CHECK if (! fEnabled) { kData->engine->callback(CALLBACK_DEBUG, fId, 0, 0, 0.0, nullptr); return; }
-
- CARLA_BACKEND_START_NAMESPACE
-
- // -----------------------------------------------------------------------
-
- const unsigned short MAX_RT_EVENTS = 128;
- const unsigned short MAX_MIDI_EVENTS = 512;
-
- const unsigned int PLUGIN_HINT_HAS_MIDI_IN = 0x1;
- const unsigned int PLUGIN_HINT_HAS_MIDI_OUT = 0x2;
- const unsigned int PLUGIN_HINT_CAN_RUN_RACK = 0x4;
-
- // -----------------------------------------------------------------------
-
- struct PluginAudioPort {
- uint32_t rindex;
- CarlaEngineAudioPort* port;
-
- PluginAudioPort()
- : rindex(0),
- port(nullptr) {}
-
- ~PluginAudioPort()
- {
- CARLA_ASSERT(port == nullptr);
- }
-
- CARLA_DECLARE_NON_COPY_STRUCT_WITH_LEAK_DETECTOR(PluginAudioPort)
- };
-
- struct PluginAudioData {
- uint32_t count;
- PluginAudioPort* ports;
-
- PluginAudioData()
- : count(0),
- ports(nullptr) {}
-
- ~PluginAudioData()
- {
- CARLA_ASSERT_INT(count == 0, count);
- CARLA_ASSERT(ports == nullptr);
- }
-
- void createNew(const uint32_t newCount)
- {
- CARLA_ASSERT_INT(count == 0, count);
- CARLA_ASSERT(ports == nullptr);
- CARLA_ASSERT_INT(newCount > 0, newCount);
-
- if (ports != nullptr || newCount == 0)
- return;
-
- ports = new PluginAudioPort[newCount];
- count = newCount;
- }
-
- void clear()
- {
- if (ports != nullptr)
- {
- for (uint32_t i=0; i < count; i++)
- {
- if (ports[i].port != nullptr)
- {
- delete ports[i].port;
- ports[i].port = nullptr;
- }
- }
-
- delete[] ports;
- ports = nullptr;
- }
-
- count = 0;
- }
-
- void initBuffers(CarlaEngine* const engine)
- {
- for (uint32_t i=0; i < count; i++)
- {
- if (ports[i].port != nullptr)
- ports[i].port->initBuffer(engine);
- }
- }
-
- CARLA_DECLARE_NON_COPY_STRUCT_WITH_LEAK_DETECTOR(PluginAudioData)
- };
-
- // -----------------------------------------------------------------------
-
- struct PluginEventData {
- CarlaEngineEventPort* portIn;
- CarlaEngineEventPort* portOut;
-
- PluginEventData()
- : portIn(nullptr),
- portOut(nullptr) {}
-
- ~PluginEventData()
- {
- CARLA_ASSERT(portIn == nullptr);
- CARLA_ASSERT(portOut == nullptr);
- }
-
- void clear()
- {
- if (portIn != nullptr)
- {
- delete portIn;
- portIn = nullptr;
- }
-
- if (portOut != nullptr)
- {
- delete portOut;
- portOut = nullptr;
- }
- }
-
- void initBuffers(CarlaEngine* const engine)
- {
- if (portIn != nullptr)
- portIn->initBuffer(engine);
-
- if (portOut != nullptr)
- portOut->initBuffer(engine);
- }
-
- CARLA_DECLARE_NON_COPY_STRUCT_WITH_LEAK_DETECTOR(PluginEventData)
- };
-
- // -----------------------------------------------------------------------
-
- struct PluginParameterData {
- uint32_t count;
- ParameterData* data;
- ParameterRanges* ranges;
-
- PluginParameterData()
- : count(0),
- data(nullptr),
- ranges(nullptr) {}
-
- ~PluginParameterData()
- {
- CARLA_ASSERT_INT(count == 0, count);
- CARLA_ASSERT(data == nullptr);
- CARLA_ASSERT(ranges == nullptr);
- }
-
- void createNew(const uint32_t newCount)
- {
- CARLA_ASSERT_INT(count == 0, count);
- CARLA_ASSERT(data == nullptr);
- CARLA_ASSERT(ranges == nullptr);
- CARLA_ASSERT_INT(newCount > 0, newCount);
-
- if (data != nullptr || ranges != nullptr || newCount == 0)
- return;
-
- data = new ParameterData[newCount];
- ranges = new ParameterRanges[newCount];
- count = newCount;
- }
-
- void clear()
- {
- if (data != nullptr)
- {
- delete[] data;
- data = nullptr;
- }
-
- if (ranges != nullptr)
- {
- delete[] ranges;
- ranges = nullptr;
- }
-
- count = 0;
- }
-
- float fixValue(const uint32_t parameterId, const float& value)
- {
- CARLA_ASSERT(parameterId < count);
- return ranges[parameterId].fixValue(value);
- }
-
- CARLA_DECLARE_NON_COPY_STRUCT_WITH_LEAK_DETECTOR(PluginParameterData)
- };
-
- // -----------------------------------------------------------------------
-
- typedef const char* ProgramName;
-
- struct PluginProgramData {
- uint32_t count;
- int32_t current;
- ProgramName* names;
-
- PluginProgramData()
- : count(0),
- current(-1),
- names(nullptr) {}
-
- ~PluginProgramData()
- {
- CARLA_ASSERT_INT(count == 0, count);
- CARLA_ASSERT_INT(current == -1, current);
- CARLA_ASSERT(names == nullptr);
- }
-
- void createNew(const uint32_t newCount)
- {
- CARLA_ASSERT_INT(count == 0, count);
- CARLA_ASSERT_INT(current == -1, current);
- CARLA_ASSERT(names == nullptr);
- CARLA_ASSERT_INT(newCount > 0, newCount);
-
- if (names != nullptr || newCount == 0)
- return;
-
- names = new ProgramName[newCount];
- count = newCount;
-
- for (uint32_t i=0; i < newCount; i++)
- names[i] = nullptr;
- }
-
- void clear()
- {
- if (names != nullptr)
- {
- for (uint32_t i=0; i < count; i++)
- {
- if (names[i] != nullptr)
- delete[] names[i];
- }
-
- delete[] names;
- names = nullptr;
- }
-
- count = 0;
- current = -1;
- }
-
- CARLA_DECLARE_NON_COPY_STRUCT_WITH_LEAK_DETECTOR(PluginProgramData)
- };
-
- // -----------------------------------------------------------------------
-
- struct PluginMidiProgramData {
- uint32_t count;
- int32_t current;
- MidiProgramData* data;
-
- PluginMidiProgramData()
- : count(0),
- current(-1),
- data(nullptr) {}
-
- ~PluginMidiProgramData()
- {
- CARLA_ASSERT_INT(count == 0, count);
- CARLA_ASSERT_INT(current == -1, current);
- CARLA_ASSERT(data == nullptr);
- }
-
- void createNew(const uint32_t newCount)
- {
- CARLA_ASSERT_INT(count == 0, count);
- CARLA_ASSERT_INT(current == -1, current);
- CARLA_ASSERT(data == nullptr);
- CARLA_ASSERT_INT(newCount > 0, newCount);
-
- if (data != nullptr || newCount == 0)
- return;
-
- data = new MidiProgramData[newCount];
- count = newCount;
- }
-
- void clear()
- {
- if (data != nullptr)
- {
- delete[] data;
- data = nullptr;
- }
-
- count = 0;
- current = -1;
- }
-
- const MidiProgramData& getCurrent() const
- {
- CARLA_ASSERT(current >= 0 && current < static_cast<int32_t>(count));
- return data[current];
- }
-
- CARLA_DECLARE_NON_COPY_STRUCT_WITH_LEAK_DETECTOR(PluginMidiProgramData)
- };
-
- // -----------------------------------------------------------------------
-
- struct PluginPostRtEvent {
- PluginPostRtEventType type;
- int32_t value1;
- int32_t value2;
- float value3;
-
- PluginPostRtEvent()
- : type(kPluginPostRtEventNull),
- value1(-1),
- value2(-1),
- value3(0.0f) {}
-
- #if 1//def DEBUG
- CARLA_DECLARE_NON_COPY_STRUCT_WITH_LEAK_DETECTOR(PluginPostRtEvent)
- #else
- CARLA_DECLARE_NON_COPY_STRUCT(PluginPostRtEvent)
- #endif
- };
-
- // -----------------------------------------------------------------------
-
- struct ExternalMidiNote {
- int8_t channel; // invalid = -1
- uint8_t note;
- uint8_t velo;
-
- ExternalMidiNote()
- : channel(-1),
- note(0),
- velo(0) {}
-
- #if 1//def DEBUG
- CARLA_DECLARE_NON_COPY_STRUCT_WITH_LEAK_DETECTOR(ExternalMidiNote)
- #else
- CARLA_DECLARE_NON_COPY_STRUCT(ExternalMidiNote)
- #endif
- };
-
- // -----------------------------------------------------------------------
-
- enum CarlaPluginGuiType {
- PLUGIN_GUI_NULL,
- PLUGIN_GUI_PARENT,
- PLUGIN_GUI_QT
- };
-
- class CarlaPluginGUI : public QMainWindow
- {
- public:
- class Callback
- {
- public:
- virtual ~Callback() {}
- virtual void guiClosedCallback() = 0;
- };
-
- CarlaPluginGUI(QWidget* const parent, Callback* const callback);
- ~CarlaPluginGUI();
-
- void idle();
- void resizeLater(int width, int height);
-
- // Parent UIs
- void* getContainerWinId();
- void closeContainer();
-
- // Qt4 UIs, TODO
-
- protected:
- void closeEvent(QCloseEvent* const event);
-
- private:
- Callback* const kCallback;
- QWidget* fContainer;
-
- int fNextWidth;
- int fNextHeight;
-
- CARLA_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(CarlaPluginGUI)
- };
-
- // -----------------------------------------------------------------------
- // Engine Helpers, defined in CarlaEngine.cpp
-
- extern ::QMainWindow* getEngineHostWindow(CarlaEngine* const engine);
-
- // -----------------------------------------------------------------------
-
- struct CarlaPluginProtectedData {
- CarlaEngine* const engine;
- CarlaEngineClient* client;
- CarlaPluginGUI* gui;
-
- bool active;
- bool activeBefore;
- bool needsReset;
- void* lib;
-
- // misc
- int8_t ctrlChannel;
- unsigned int extraHints;
-
- // latency
- uint32_t latency;
- float** latencyBuffers;
-
- // data
- PluginAudioData audioIn;
- PluginAudioData audioOut;
- PluginEventData event;
- PluginParameterData param;
- PluginProgramData prog;
- PluginMidiProgramData midiprog;
- NonRtList<CustomData> custom;
-
- CarlaMutex masterMutex; // global master lock
- CarlaMutex singleMutex; // small lock used only in processSingle()
-
- struct ExternalNotes {
- CarlaMutex mutex;
- RtList<ExternalMidiNote>::Pool dataPool;
- RtList<ExternalMidiNote> data;
-
- ExternalNotes()
- : dataPool(32, 152),
- data(&dataPool) {}
-
- ~ExternalNotes()
- {
- mutex.lock();
- data.clear();
- mutex.unlock();
- }
-
- void append(const ExternalMidiNote& note)
- {
- mutex.lock();
- data.append_sleepy(note);
- mutex.unlock();
- }
-
- ExternalNotes(ExternalNotes&) = delete;
- ExternalNotes(const ExternalNotes&) = delete;
-
- } extNotes;
-
- struct PostRtEvents {
- CarlaMutex mutex;
- RtList<PluginPostRtEvent>::Pool dataPool;
- RtList<PluginPostRtEvent> data;
- RtList<PluginPostRtEvent> dataPendingRT;
-
- PostRtEvents()
- : dataPool(MAX_RT_EVENTS, MAX_RT_EVENTS),
- data(&dataPool),
- dataPendingRT(&dataPool) {}
-
- ~PostRtEvents()
- {
- clear();
- }
-
- void appendRT(const PluginPostRtEvent& event)
- {
- dataPendingRT.append(event);
- }
-
- void trySplice()
- {
- if (mutex.tryLock())
- {
- dataPendingRT.spliceAppend(data, true);
- mutex.unlock();
- }
- }
-
- void clear()
- {
- mutex.lock();
- data.clear();
- dataPendingRT.clear();
- mutex.unlock();
- }
-
- PostRtEvents(PostRtEvents&) = delete;
- PostRtEvents(const PostRtEvents&) = delete;
-
- } postRtEvents;
-
- struct PostProc {
- float dryWet;
- float volume;
- float balanceLeft;
- float balanceRight;
- float panning;
-
- PostProc()
- : dryWet(1.0f),
- volume(1.0f),
- balanceLeft(-1.0f),
- balanceRight(1.0f),
- panning(0.0f) {}
-
- PostProc(PostProc&) = delete;
- PostProc(const PostProc&) = delete;
-
- } postProc;
-
- struct OSC {
- CarlaOscData data;
- CarlaPluginThread thread;
-
- OSC(CarlaEngine* const engine, CarlaPlugin* const plugin)
- : thread(engine, plugin) {}
-
- OSC() = delete;
- OSC(OSC&) = delete;
- OSC(const OSC&) = delete;
-
- } osc;
-
- CarlaPluginProtectedData(CarlaEngine* const engine_, CarlaPlugin* const plugin)
- : engine(engine_),
- client(nullptr),
- gui(nullptr),
- active(false),
- activeBefore(false),
- needsReset(false),
- lib(nullptr),
- ctrlChannel(0),
- extraHints(0x0),
- latency(0),
- latencyBuffers(nullptr),
- osc(engine, plugin) {}
-
- CarlaPluginProtectedData() = delete;
- CarlaPluginProtectedData(CarlaPluginProtectedData&) = delete;
- CarlaPluginProtectedData(const CarlaPluginProtectedData&) = delete;
-
- void createUiIfNeeded(CarlaPluginGUI::Callback* const callback)
- {
- if (gui != nullptr)
- return;
-
- gui = new CarlaPluginGUI(getEngineHostWindow(engine), callback);
- }
-
- void destroyUiIfNeeded()
- {
- if (gui == nullptr)
- return;
-
- gui->close();
- delete gui;
- gui = nullptr;
- }
-
- void resizeUiLater(int width, int height)
- {
- if (gui == nullptr)
- return;
-
- gui->resizeLater(width, height);
- }
-
- static CarlaEngine* getEngine(CarlaPlugin* const plugin)
- {
- return plugin->kData->engine;
- }
-
- static CarlaEngineAudioPort* getAudioInPort(CarlaPlugin* const plugin, const uint32_t index)
- {
- return plugin->kData->audioIn.ports[index].port;
- }
-
- static CarlaEngineAudioPort* getAudioOutPort(CarlaPlugin* const plugin, const uint32_t index)
- {
- return plugin->kData->audioOut.ports[index].port;
- }
-
- static bool canRunInRack(CarlaPlugin* const plugin)
- {
- return (plugin->kData->extraHints & PLUGIN_HINT_CAN_RUN_RACK);
- }
-
- CARLA_LEAK_DETECTOR(CarlaPluginProtectedData)
- };
-
- // -----------------------------------------------------------------------
-
- CARLA_BACKEND_END_NAMESPACE
-
- #endif // __CARLA_PLUGIN_INTERNAL_HPP__
|