summaryrefslogtreecommitdiff
path: root/libs/ardour/plugin.cc
diff options
context:
space:
mode:
authorDoug McLain <doug@nostar.net>2008-06-02 05:02:28 +0000
committerDoug McLain <doug@nostar.net>2008-06-02 05:02:28 +0000
commit9c0d7d72d70082a54f823cd44c0ccda5da64bb6f (patch)
tree96ec400b83b8c1c06852b1936f684b5fbcd47a79 /libs/ardour/plugin.cc
parent2f3f697bb8e185eb43c2c50b4eefc2bcb937f269 (diff)
remove empty sigc++2 directory
git-svn-id: svn://localhost/ardour2/branches/3.0@3432 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/plugin.cc')
-rw-r--r--libs/ardour/plugin.cc243
1 files changed, 0 insertions, 243 deletions
diff --git a/libs/ardour/plugin.cc b/libs/ardour/plugin.cc
deleted file mode 100644
index 3d218448dd..0000000000
--- a/libs/ardour/plugin.cc
+++ /dev/null
@@ -1,243 +0,0 @@
-/*
- Copyright (C) 2000-2002 Paul Davis
-
- 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; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-
-*/
-
-#include <vector>
-#include <string>
-
-#include <cstdlib>
-#include <cstdio> // so libraptor doesn't complain
-#include <cmath>
-#include <dirent.h>
-#include <sys/stat.h>
-#include <cerrno>
-
-#include <lrdf.h>
-
-#include <pbd/compose.h>
-#include <pbd/error.h>
-#include <pbd/xml++.h>
-
-#include <ardour/ardour.h>
-#include <ardour/session.h>
-#include <ardour/audioengine.h>
-#include <ardour/plugin.h>
-#include <ardour/ladspa_plugin.h>
-#include <ardour/plugin_manager.h>
-
-#ifdef HAVE_AUDIOUNITS
-#include <ardour/audio_unit.h>
-#endif
-
-#ifdef HAVE_SLV2
-#include <ardour/lv2_plugin.h>
-#endif
-
-#include <pbd/stl_delete.h>
-
-#include "i18n.h"
-#include <locale.h>
-
-using namespace ARDOUR;
-using namespace PBD;
-
-Plugin::Plugin (AudioEngine& e, Session& s)
- : _engine (e), _session (s)
-{
-}
-
-Plugin::Plugin (const Plugin& other)
- : _engine (other._engine), _session (other._session), _info (other._info)
-{
-}
-
-Plugin::~Plugin ()
-{
-}
-
-vector<string>
-Plugin::get_presets()
-{
- vector<string> labels;
- uint32_t id;
- std::string unique (unique_id());
-
- /* XXX problem: AU plugins don't have numeric ID's.
- Solution: they have a different method of providing presets.
- XXX sub-problem: implement it.
- */
-
- if (!isdigit (unique[0])) {
- return labels;
- }
-
- id = atol (unique.c_str());
-
- lrdf_uris* set_uris = lrdf_get_setting_uris(id);
-
- if (set_uris) {
- for (uint32_t i = 0; i < (uint32_t) set_uris->count; ++i) {
- if (char* label = lrdf_get_label(set_uris->items[i])) {
- labels.push_back(label);
- presets[label] = set_uris->items[i];
- }
- }
- lrdf_free_uris(set_uris);
- }
-
- // GTK2FIX find an equivalent way to do this with a vector (needed by GUI apis)
- // labels.unique();
-
- return labels;
-}
-
-bool
-Plugin::load_preset(const string preset_label)
-{
- lrdf_defaults* defs = lrdf_get_setting_values(presets[preset_label].c_str());
-
- if (defs) {
- for (uint32_t i = 0; i < (uint32_t) defs->count; ++i) {
- // The defs->items[i].pid < defs->count check is to work around
- // a bug in liblrdf that saves invalid values into the presets file.
- if (((uint32_t) defs->items[i].pid < (uint32_t) defs->count) && parameter_is_input (defs->items[i].pid)) {
- set_parameter(defs->items[i].pid, defs->items[i].value);
- }
- }
- lrdf_free_setting_values(defs);
- }
-
- return true;
-}
-
-bool
-Plugin::save_preset (string name, string domain)
-{
- lrdf_portvalue portvalues[parameter_count()];
- lrdf_defaults defaults;
- uint32_t id;
- std::string unique (unique_id());
-
- /* XXX problem: AU plugins don't have numeric ID's.
- Solution: they have a different method of providing/saving presets.
- XXX sub-problem: implement it.
- */
-
- if (!isdigit (unique[0])) {
- return false;
- }
-
- id = atol (unique.c_str());
-
- defaults.count = parameter_count();
- defaults.items = portvalues;
-
- for (uint32_t i = 0; i < parameter_count(); ++i) {
- if (parameter_is_input (i)) {
- portvalues[i].pid = i;
- portvalues[i].value = get_parameter(i);
- }
- }
-
- char* envvar;
- if ((envvar = getenv ("HOME")) == 0) {
- warning << _("Could not locate HOME. Preset not saved.") << endmsg;
- return false;
- }
-
- string source(string_compose("file:%1/.%2/rdf/ardour-presets.n3", envvar, domain));
-
- free(lrdf_add_preset(source.c_str(), name.c_str(), id, &defaults));
-
- string path = string_compose("%1/.%2", envvar, domain);
- if (g_mkdir_with_parents (path.c_str(), 0775)) {
- warning << string_compose(_("Could not create %1. Preset not saved. (%2)"), path, strerror(errno)) << endmsg;
- return false;
- }
-
- path += "/rdf";
- if (g_mkdir_with_parents (path.c_str(), 0775)) {
- warning << string_compose(_("Could not create %1. Preset not saved. (%2)"), path, strerror(errno)) << endmsg;
- return false;
- }
-
- if (lrdf_export_by_source(source.c_str(), source.substr(5).c_str())) {
- warning << string_compose(_("Error saving presets file %1."), source) << endmsg;
- return false;
- }
-
- return true;
-}
-
-PluginPtr
-ARDOUR::find_plugin(Session& session, string identifier, PluginType type)
-{
- PluginManager *mgr = PluginManager::the_manager();
- PluginInfoList plugs;
-
- switch (type) {
- case ARDOUR::LADSPA:
- plugs = mgr->ladspa_plugin_info();
- break;
-
-#ifdef HAVE_SLV2
- case ARDOUR::LV2:
- plugs = mgr->lv2_plugin_info();
- break;
-#endif
-
-#ifdef VST_SUPPORT
- case ARDOUR::VST:
- plugs = mgr->vst_plugin_info();
- break;
-#endif
-
-#ifdef HAVE_AUDIOUNITS
- case ARDOUR::AudioUnit:
- plugs = mgr->au_plugin_info();
- break;
-#endif
-
- default:
- return PluginPtr ((Plugin *) 0);
- }
-
- PluginInfoList::iterator i;
-
- for (i = plugs.begin(); i != plugs.end(); ++i) {
- if (identifier == (*i)->unique_id){
- return (*i)->load (session);
- }
- }
-
-#ifdef VST_SUPPORT
- /* hmm, we didn't find it. could be because in older versions of Ardour.
- we used to store the name of a VST plugin, not its unique ID. so try
- again.
- */
-
- for (i = plugs.begin(); i != plugs.end(); ++i) {
- if (identifier == (*i)->name){
- return (*i)->load (session);
- }
- }
-#endif
-
- return PluginPtr ((Plugin*) 0);
-}
-