summaryrefslogtreecommitdiffstats
path: root/src/client/PluginModel.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/PluginModel.hpp')
-rw-r--r--src/client/PluginModel.hpp142
1 files changed, 142 insertions, 0 deletions
diff --git a/src/client/PluginModel.hpp b/src/client/PluginModel.hpp
new file mode 100644
index 00000000..e2137e19
--- /dev/null
+++ b/src/client/PluginModel.hpp
@@ -0,0 +1,142 @@
+/* This file is part of Ingen.
+ * Copyright (C) 2007 Dave Robillard <http://drobilla.net>
+ *
+ * Ingen 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.
+ *
+ * Ingen 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 details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef PLUGINMODEL_H
+#define PLUGINMODEL_H
+
+#include CONFIG_H_PATH
+#include <string>
+#include <iostream>
+#include <raul/Path.hpp>
+#include <raul/SharedPtr.hpp>
+#include <redlandmm/World.hpp>
+#ifdef HAVE_SLV2
+#include <slv2/slv2.h>
+#endif
+#include "interface/EngineInterface.hpp"
+#include "interface/Plugin.hpp"
+#include "module/World.hpp"
+
+using std::string;
+
+namespace Ingen {
+namespace Client {
+
+class PatchModel;
+class NodeModel;
+class PluginUI;
+
+
+/** Model for a plugin available for loading.
+ *
+ * \ingroup IngenClient
+ */
+class PluginModel : public Ingen::Shared::Plugin
+{
+public:
+ PluginModel(const string& uri, const string& type_uri, const string& symbol, const string& name)
+ : _type(type_from_uri(type_uri))
+ , _uri(uri)
+ , _symbol(symbol)
+ , _name(name)
+ {
+#ifdef HAVE_SLV2
+ Glib::Mutex::Lock lock(_rdf_world->mutex());
+ SLV2Value plugin_uri = slv2_value_new_uri(_slv2_world, uri.c_str());
+ _slv2_plugin = slv2_plugins_get_by_uri(_slv2_plugins, plugin_uri);
+ slv2_value_free(plugin_uri);
+#endif
+ }
+
+ Type type() const { return _type; }
+ const string& uri() const { return _uri; }
+ const string& name() const { return _name; }
+
+ /** DEPRECATED */
+ Type type_from_string(const string& type_string) {
+ if (type_string == "LV2") return LV2;
+ else if (type_string == "LADSPA") return LADSPA;
+ else if (type_string == "Internal") return Internal;
+ else if (type_string == "Patch") return Patch;
+ else return Internal; // ?
+ }
+
+ Type type_from_uri(const string& type_uri) {
+ if (type_uri.substr(0, 6) != "ingen:") {
+ return Plugin::Internal; // ?
+ } else {
+ return type_from_string(type_uri.substr(6));
+ }
+ }
+
+ string default_node_symbol();
+ string human_name();
+ string port_human_name(uint32_t index);
+
+#ifdef HAVE_SLV2
+ static SLV2World slv2_world() { return _slv2_world; }
+ SLV2Plugin slv2_plugin() { return _slv2_plugin; }
+
+ SLV2Port slv2_port(uint32_t index) {
+ Glib::Mutex::Lock lock(_rdf_world->mutex());
+ return slv2_plugin_get_port_by_index(_slv2_plugin, index);
+ }
+
+ static void set_slv2_world(SLV2World world) {
+ Glib::Mutex::Lock lock(_rdf_world->mutex());
+ _slv2_world = world;
+ _slv2_plugins = slv2_world_get_all_plugins(_slv2_world);
+ }
+
+ bool has_ui() const;
+
+ SharedPtr<PluginUI> ui(Ingen::Shared::World* world,
+ SharedPtr<NodeModel> node) const;
+
+ const string& icon_path() const;
+ static string get_lv2_icon_path(SLV2Plugin plugin);
+#endif
+
+ static void set_rdf_world(Redland::World& world) {
+ _rdf_world = &world;
+ }
+
+ static Redland::World* rdf_world() { return _rdf_world; }
+
+private:
+ const Type _type;
+ const string _uri;
+ const string _symbol;
+ const string _name;
+
+#ifdef HAVE_SLV2
+ static SLV2World _slv2_world;
+ static SLV2Plugins _slv2_plugins;
+
+ SLV2Plugin _slv2_plugin;
+ mutable string _icon_path;
+#endif
+
+ static Redland::World* _rdf_world;
+};
+
+
+} // namespace Client
+} // namespace Ingen
+
+#endif // PLUGINMODEL_H
+