*** NEW CODING POLICY ***
[ardour.git] / libs / ardour / plugin.cc
index 8ea95b89037db9333fdd1713fe32d667fc67ff1e..f69de57b9972cf8aeab6b036f3fd05c86b1541a7 100644 (file)
@@ -15,7 +15,6 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id$
 */
 
 #include <vector>
 #include <dirent.h>
 #include <sys/stat.h>
 #include <cerrno>
+#include <utility>
 
 #include <lrdf.h>
 
-#include <pbd/compose.h>
-#include <pbd/error.h>
-#include <pbd/pathscanner.h>
-#include <pbd/xml++.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>
+#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"
 
-#include <pbd/stl_delete.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>
@@ -60,129 +67,71 @@ Plugin::Plugin (const Plugin& other)
 {
 }
 
-void
-Plugin::setup_controls ()
+Plugin::~Plugin ()
 {
-       uint32_t port_cnt = parameter_count();
-
-       /* set up a vector of null pointers for the controls.
-          we'll fill this in on an as-needed basis.
-       */
-
-       for (uint32_t i = 0; i < port_cnt; ++i) {
-               controls.push_back (0);
-       }
 }
 
-Plugin::~Plugin ()
+const Plugin::PresetRecord*
+Plugin::preset_by_label(const string& label)
 {
-       for (vector<PortControllable*>::iterator i = controls.begin(); i != controls.end(); ++i) {
-               if (*i) {
-                       delete *i;
+       // FIXME: O(n)
+       for (map<string,PresetRecord>::const_iterator i = presets.begin(); i != presets.end(); ++i) {
+               if (i->second.label == label) {
+                       return &i->second;
                }
        }
+       return NULL;
 }
 
-Controllable *
-Plugin::get_nth_control (uint32_t n)
+const Plugin::PresetRecord*
+Plugin::preset_by_uri(const string& uri)
 {
-       if (n >= parameter_count()) {
-               return 0;
+       map<string,PresetRecord>::const_iterator pr = presets.find(uri);
+       if (pr != presets.end()) {
+               return &pr->second;
+       } else {
+               return NULL;
        }
-
-       if (controls[n] == 0) {
-
-               Plugin::ParameterDescriptor desc;
-
-               get_parameter_descriptor (n, desc);
-               
-               controls[n] = new PortControllable (*this, n, desc.lower, desc.upper, desc.toggled, desc.logarithmic);
-       } 
-
-       return controls[n];
 }
 
-Plugin::PortControllable::PortControllable (Plugin& p, uint32_t port_id, float low, float up, bool t, bool loga)
-       : plugin (p), absolute_port (port_id)
-{
-       toggled = t;
-       logarithmic = loga;
-       lower = low;
-       upper = up;
-       range = upper - lower;
-}
-
-void
-Plugin::PortControllable::set_value (float value)
+vector<Plugin::PresetRecord>
+Plugin::get_presets()
 {
-       if (toggled) {
-               if (value > 0.5) {
-                       value = 1.0;
-               } else {
-                       value = 0.0;
-               }
-       } else {
+       vector<PresetRecord> result;
+       uint32_t id;
+       std::string unique (unique_id());
 
-               if (!logarithmic) {
-                       value = lower + (range * value);
-               } else {
-                       float _lower = 0.0f;
-                       if (lower > 0.0f) {
-                               _lower = log(lower);
-                       }
+       /* XXX problem: AU plugins don't have numeric ID's. 
+          Solution: they have a different method of providing presets.
+          XXX sub-problem: implement it.
+       */
 
-                       value = exp(_lower + log(range) * value);
-               }
+       if (!isdigit (unique[0])) {
+               return result;
        }
 
-       plugin.set_parameter (absolute_port, value);
-}
-
-float
-Plugin::PortControllable::get_value (void) const
-{
-       float val = plugin.get_parameter (absolute_port);
-
-       if (toggled) {
-               
-               return val;
-               
-       } else {
-               
-               if (logarithmic) {
-                       val = log(val);
-               }
-               
-               return ((val - lower) / range);
-       }
-}      
+       id = atol (unique.c_str());
 
-vector<string>
-Plugin::get_presets()
-{
-       vector<string> labels;
-       lrdf_uris* set_uris = lrdf_get_setting_uris(unique_id());
+       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];
+                               PresetRecord rec(set_uris->items[i], label);
+                               result.push_back(rec);
+                               presets.insert(std::make_pair(set_uris->items[i], rec));
                        }
                }
                lrdf_free_uris(set_uris);
        }
 
-       // GTK2FIX find an equivalent way to do this with a vector (needed by GUI apis)
-       // labels.unique();
-
-       return labels;
+       return result;
 }
 
 bool
-Plugin::load_preset(const string preset_label)
+Plugin::load_preset(const string preset_uri)
 {
-       lrdf_defaults* defs = lrdf_get_setting_values(presets[preset_label].c_str());
+       lrdf_defaults* defs = lrdf_get_setting_values(preset_uri.c_str());
 
        if (defs) {
                for (uint32_t i = 0; i < (uint32_t) defs->count; ++i) {
@@ -199,10 +148,24 @@ Plugin::load_preset(const string preset_label)
 }
 
 bool
-Plugin::save_preset (string name, string domain)
+Plugin::save_preset (string uri, 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;
 
@@ -221,16 +184,21 @@ Plugin::save_preset (string name, string domain)
        
        string source(string_compose("file:%1/.%2/rdf/ardour-presets.n3", envvar, domain));
 
-       free(lrdf_add_preset(source.c_str(), name.c_str(), unique_id(), &defaults));
+       map<string,PresetRecord>::const_iterator pr = presets.find(uri);
+       if (pr == presets.end()) {
+               warning << _("Could not find preset ") << uri << endmsg;
+               return false;
+       }
+       free(lrdf_add_preset(source.c_str(), pr->second.label.c_str(), id,  &defaults));
 
        string path = string_compose("%1/.%2", envvar, domain);
-       if (mkdir(path.c_str(), 0775) && errno != EEXIST) {
+       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 (mkdir(path.c_str(), 0775) && errno != EEXIST) {
+       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;
        }
@@ -244,27 +212,31 @@ Plugin::save_preset (string name, string domain)
 }
 
 PluginPtr
-ARDOUR::find_plugin(Session& session, string name, long unique_id, PluginInfo::Type type)
+ARDOUR::find_plugin(Session& session, string identifier, PluginType type)
 {
        PluginManager *mgr = PluginManager::the_manager();
        PluginInfoList plugs;
 
        switch (type) {
-       case PluginInfo::LADSPA:
+       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 PluginInfo::VST:
+       case ARDOUR::VST:
                plugs = mgr->vst_plugin_info();
-               unique_id = 0; // VST plugins don't have a unique id.
                break;
 #endif
 
-#ifdef HAVE_COREAUDIO
-       case PluginInfo::AudioUnit:
-               plugs = AUPluginInfo::discover ();
-               unique_id = 0; // Neither do AU.
+#ifdef HAVE_AUDIOUNITS
+       case ARDOUR::AudioUnit:
+               plugs = mgr->au_plugin_info();
                break;
 #endif
 
@@ -273,12 +245,45 @@ ARDOUR::find_plugin(Session& session, string name, long unique_id, PluginInfo::T
        }
 
        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 ((name == "" || (*i)->name == name) &&
-                       (unique_id == 0 || (*i)->unique_id == unique_id)) {
-                               return (*i)->load (session);
+               if (identifier == (*i)->name){
+                       return (*i)->load (session);
                }
        }
+#endif
        
        return PluginPtr ((Plugin*) 0);
 }
+
+ChanCount
+Plugin::output_streams () const
+{
+       /* LADSPA & VST should not get here because they do not
+          return "infinite" i/o counts.
+       */
+       return ChanCount::ZERO;
+}
+
+ChanCount
+Plugin::input_streams () const
+{
+       /* LADSPA & VST should not get here because they do not
+          return "infinite" i/o counts.
+       */
+       return ChanCount::ZERO;
+}
+
+