/* * Lv2Manager.h - Implementation of Lv2Manager class * * Copyright (c) 2018-2020 Johannes Lorenz * * This file is part of LMMS - https://lmms.io * * 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 (at your option) 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. * * You should have received a copy of the GNU General Public * License along with this program (see COPYING); if not, write to the * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301 USA. * */ #ifndef LV2MANAGER_H #define LV2MANAGER_H #include "lmmsconfig.h" #ifdef LMMS_HAVE_LV2 #include #include #include #include "Lv2Basics.h" #include "Lv2UridCache.h" #include "Lv2UridMap.h" #include "Plugin.h" /* all Lv2 classes in relation (use our "4 spaces per tab rule" to view): explanation: "x = {y z}" means class "x" consists of classes "y" and "z" (and probably other classes not mentioned) "x = {y*}" means class "x" references/uses class "y" core: Lv2Proc = {LilvInstance} Lv2ControlBase = {Lv2Proc, Lv2Proc... (2 for mono, 1 for stereo)} Lv2Manager = {LilvPlugin*, LilvPlugin* ...} (creates Lv2ControlBase, Lv2ControlBase...) Lv2FxControls = {Lv2ControlBase} Lv2Effect = {Effect + Lv2FxControls} (takes Lv2SubPluginFeatures in ctor) Lv2Instrument = {Instrument + Lv2ControlBase} (takes Lv2SubPluginFeatures in ctor) gui: Lv2ViewProc = {Lv2Proc*} Lv2ViewBase = {Lv2ViewProc, Lv2ViewProc... (2 for mono, 1 for stereo)} Lv2FxControlDialog = {EffectControlDialog + Lv2ViewBase} Lv2InsView = {InstrumentView + Lv2ViewBase} Lv2SubPluginFeatures: Lv2SubPluginFeatures = {Lv2Manager*} Lv2Effect::Descriptor = {Lv2SubPluginFeatures} Lv2Instrument::Descriptor = {Lv2SubPluginFeatures} */ //! Class to keep track of all LV2 plugins class Lv2Manager { public: void initPlugins(); Lv2Manager(); ~Lv2Manager(); AutoLilvNode uri(const char* uriStr); //! Class representing info for one plugin struct Lv2Info { public: //! use only for std::map internals Lv2Info() : m_plugin(nullptr) {} //! ctor used inside Lv2Manager Lv2Info(const LilvPlugin* plug, Plugin::PluginTypes type, bool valid) : m_plugin(plug), m_type(type), m_valid(valid) {} Lv2Info(Lv2Info&& other) = default; Lv2Info& operator=(Lv2Info&& other) = default; const LilvPlugin* plugin() const { return m_plugin; } Plugin::PluginTypes type() const { return m_type; } bool isValid() const { return m_valid; } private: const LilvPlugin* m_plugin; Plugin::PluginTypes m_type; bool m_valid = false; }; //! Return descriptor with URI @p uri or nullptr if none exists const LilvPlugin *getPlugin(const std::string &uri); //! Return descriptor with URI @p uri or nullptr if none exists const LilvPlugin *getPlugin(const QString& uri); using Lv2InfoMap = std::map; using Iterator = Lv2InfoMap::iterator; Iterator begin() { return m_lv2InfoMap.begin(); } Iterator end() { return m_lv2InfoMap.end(); } //! strcmp based key comparator for std::set and std::map struct CmpStr { bool operator()(char const *a, char const *b) const; }; UridMap& uridMap() { return m_uridMap; } const Lv2UridCache& uridCache() const { return m_uridCache; } const std::set& supportedFeatureURIs() const { return m_supportedFeatureURIs; } bool isFeatureSupported(const char* featName) const; static const std::set& getPluginBlacklist() { return pluginBlacklist; } private: // general data bool m_debug; //!< if set, debug output will be printed LilvWorld* m_world; Lv2InfoMap m_lv2InfoMap; std::set m_supportedFeatureURIs; // feature data that are common for all Lv2Proc UridMap m_uridMap; // URID cache for fast URID access Lv2UridCache m_uridCache; // static static const std::set pluginBlacklist; // functions bool isSubclassOf(const LilvPluginClass *clvss, const char *uriStr); }; #endif // LMMS_HAVE_LV2 #endif // LV2MANAGER_H