summaryrefslogtreecommitdiffstats
path: root/src/engine/NodeFactory.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-02-11 22:14:01 +0000
committerDavid Robillard <d@drobilla.net>2011-02-11 22:14:01 +0000
commit77d1d3ae2d861f76264020b112386cdd57ce1f86 (patch)
treeca40355d145c09b43b2e15961a3e05aab280947c /src/engine/NodeFactory.cpp
parent796f8d48f0ff6434635237038e03f900161ce331 (diff)
downloadingen-77d1d3ae2d861f76264020b112386cdd57ce1f86.tar.gz
ingen-77d1d3ae2d861f76264020b112386cdd57ce1f86.tar.bz2
ingen-77d1d3ae2d861f76264020b112386cdd57ce1f86.zip
Remove LADSPA support from Ingen (LADSPA can be used via NASPRO).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2922 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/NodeFactory.cpp')
-rw-r--r--src/engine/NodeFactory.cpp129
1 files changed, 0 insertions, 129 deletions
diff --git a/src/engine/NodeFactory.cpp b/src/engine/NodeFactory.cpp
index 9ee32c12..64b6e2b6 100644
--- a/src/engine/NodeFactory.cpp
+++ b/src/engine/NodeFactory.cpp
@@ -35,10 +35,6 @@
#include "NodeFactory.hpp"
#include "PatchImpl.hpp"
#include "ThreadManager.hpp"
-#ifdef HAVE_LADSPA_H
-#include "LADSPANode.hpp"
-#include "LADSPAPlugin.hpp"
-#endif
#ifdef HAVE_SLV2
#include "slv2/slv2.h"
#include "LV2Plugin.hpp"
@@ -80,31 +76,6 @@ NodeFactory::plugin(const Raul::URI& uri)
}
-/** DEPRECATED: Find a plugin by type, lib, label.
- *
- * Slow. Evil. Do not use.
- */
-PluginImpl*
-NodeFactory::plugin(const string& type, const string& lib, const string& label)
-{
- if (type != "LADSPA" || lib.empty() || label.empty())
- return NULL;
-
-#ifdef HAVE_LADSPA_H
- for (Plugins::const_iterator i = _plugins.begin(); i != _plugins.end(); ++i) {
- LADSPAPlugin* lp = dynamic_cast<LADSPAPlugin*>(i->second);
- if (lp && lp->library_name() == lib
- && lp->label() == label)
- return lp;
- }
-#endif
-
- error << "Failed to find " << type << " plugin " << lib << " / " << label << endl;
-
- return NULL;
-}
-
-
void
NodeFactory::load_plugins()
{
@@ -124,10 +95,6 @@ NodeFactory::load_plugins()
load_lv2_plugins();
#endif
-#ifdef HAVE_LADSPA_H
- load_ladspa_plugins();
-#endif
-
_has_loaded = true;
}
@@ -181,100 +148,4 @@ NodeFactory::load_lv2_plugins()
}
#endif // HAVE_SLV2
-
-#ifdef HAVE_LADSPA_H
-/** Loads information about all LADSPA plugins into internal plugin database.
- */
-void
-NodeFactory::load_ladspa_plugins()
-{
- char* env_ladspa_path = getenv("LADSPA_PATH");
- string ladspa_path;
- if (!env_ladspa_path) {
- info << "Using default LADSPA_PATH=/usr/lib/ladspa:/usr/local/lib/ladspa:~/.ladspa" << endl;
- ladspa_path = string("/usr/lib/ladspa:/usr/local/lib/ladspa:").append(
- getenv("HOME")).append("/.ladspa");
- } else {
- ladspa_path = env_ladspa_path;
- }
-
- // Yep, this should use an sstream alright..
- while (!ladspa_path.empty()) {
- const string dir = ladspa_path.substr(0, ladspa_path.find(':'));
- if (ladspa_path.find(':') != string::npos)
- ladspa_path = ladspa_path.substr(ladspa_path.find(':')+1);
- else
- ladspa_path.clear();
-
- DIR* pdir = opendir(dir.c_str());
- if (pdir == NULL)
- continue;
-
- struct dirent* pfile;
- while ((pfile = readdir(pdir))) {
- union {
- void* dp;
- LADSPA_Descriptor_Function fp;
- } df;
- df.dp = NULL;
- df.fp = NULL;
-
- LADSPA_Descriptor* descriptor = NULL;
-
- if (!strcmp(pfile->d_name, ".") || !strcmp(pfile->d_name, ".."))
- continue;
-
- const string lib_path = Glib::build_filename(dir, pfile->d_name);
-
- // Ignore stupid libtool files. Kludge alert.
- if (lib_path.substr(lib_path.length()-3) == ".la")
- continue;
-
- Glib::Module* plugin_library = new Glib::Module(lib_path, Glib::MODULE_BIND_LOCAL);
- if (!plugin_library)
- continue;
-
- if (!(*plugin_library)) {
- delete plugin_library;
- continue;
- }
-
- bool found = plugin_library->get_symbol("ladspa_descriptor", df.dp);
- if (!found || !df.dp) {
- warn << "Non-LADSPA library " << lib_path << " found in LADSPA path" << endl;
- delete plugin_library;
- continue;
- }
-
- for (unsigned long i=0; (descriptor = (LADSPA_Descriptor*)df.fp(i)) != NULL; ++i) {
- char id_str[11];
- snprintf(id_str, 11, "%lu", descriptor->UniqueID);
- const string uri = string("urn:ladspa:").append(id_str);
-
- const Plugins::const_iterator i = _plugins.find(uri);
-
- if (i == _plugins.end()) {
- LADSPAPlugin* plugin = new LADSPAPlugin(*_world->uris().get(),
- lib_path, uri,
- descriptor->UniqueID,
- descriptor->Label,
- descriptor->Name);
-
- _plugins.insert(make_pair(uri, plugin));
-
- } else {
- warn << "Duplicate " << uri
- << " - Using " << i->second->library_path()
- << " over " << lib_path << endl;
- }
- }
-
- delete plugin_library;
- }
- closedir(pdir);
- }
-}
-#endif // HAVE_LADSPA_H
-
-
} // namespace Ingen