Moved PluginInfo::Type to ARDOUR::PluginType in ardour/types.h.
[ardour.git] / libs / ardour / plugin_manager.cc
index 06a944189a44cb2dbd74a8e76e7d18188d7f19ff..5b3a4658a80fd55e2658038ad0acda9c3b06ab78 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2000-2004 Paul Davis 
+    Copyright (C) 2000-2006 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
 #include <ardour/plugin_manager.h>
 #include <ardour/plugin.h>
 #include <ardour/ladspa_plugin.h>
+
+#ifdef VST_SUPPORT
 #include <ardour/vst_plugin.h>
-#include <ardour/audio_unit.h>
+#endif
 
 #include <pbd/error.h>
 #include <pbd/stl_delete.h>
@@ -49,8 +51,7 @@ using namespace PBD;
 
 PluginManager* PluginManager::_manager = 0;
 
-PluginManager::PluginManager (AudioEngine& e)
-       : _engine (e)
+PluginManager::PluginManager ()
 {
        char* s;
        string lrdf_path;
@@ -97,10 +98,6 @@ PluginManager::refresh ()
                vst_refresh ();
        }
 #endif // VST_SUPPORT
-
-#ifdef HAVE_COREAUDIO
-       _au_plugin_info = AUPluginInfo::discover ();
-#endif // HAVE_COREAUDIO
 }
 
 void
@@ -250,14 +247,14 @@ PluginManager::ladspa_discover (string path)
                        break;
                }
 
-               PluginInfoPtr info(new PluginInfo);
+               PluginInfoPtr info(new LadspaPluginInfo);
                info->name = descriptor->Name;
                info->category = get_ladspa_category(descriptor->UniqueID);
                info->path = path;
                info->index = i;
                info->n_inputs = 0;
                info->n_outputs = 0;
-               info->type = PluginInfo::LADSPA;
+               info->type = ARDOUR::LADSPA;
                info->unique_id = descriptor->UniqueID;
                
                for (uint32_t n=0; n < descriptor->PortCount; ++n) {
@@ -280,85 +277,6 @@ PluginManager::ladspa_discover (string path)
        return 0;
 }
 
-boost::shared_ptr<Plugin>
-PluginManager::load (Session& session, PluginInfoPtr info)
-{
-       void *module;
-
-       try {
-               boost::shared_ptr<Plugin> plugin;
-
-               if (info->type == PluginInfo::VST) {
-
-#ifdef VST_SUPPORT                     
-                       if (Config->get_use_vst()) {
-                               FSTHandle* handle;
-                               
-                               if ((handle = fst_load (info->path.c_str())) == 0) {
-                                       error << string_compose(_("VST: cannot load module from \"%1\""), info->path) << endmsg;
-                               } else {
-                                       plugin.reset (new VSTPlugin (_engine, session, handle));
-                               }
-                       } else {
-                               error << _("You asked ardour to not use any VST plugins") << endmsg;
-                       }
-#else // !VST_SUPPORT
-                       error << _("This version of ardour has no support for VST plugins") << endmsg;
-                       return boost::shared_ptr<Plugin> ((Plugin*) 0);
-#endif // !VST_SUPPORT
-                               
-               } else {
-
-                       if ((module = dlopen (info->path.c_str(), RTLD_NOW)) == 0) {
-                               error << string_compose(_("LADSPA: cannot load module from \"%1\""), info->path) << endmsg;
-                               error << dlerror() << endmsg;
-                       } else {
-                               plugin.reset (new LadspaPlugin (module, _engine, session, info->index, session.frame_rate()));
-                       }
-               }
-
-               plugin->set_info(*info);
-               return plugin;
-       }
-
-       catch (failed_constructor &err) {
-               return boost::shared_ptr<Plugin> ((Plugin*) 0);
-       }
-}
-
-boost::shared_ptr<Plugin>
-ARDOUR::find_plugin(Session& session, string name, long unique_id, PluginInfo::Type type)
-{
-       PluginManager *mgr = PluginManager::the_manager();
-       PluginInfoList* plugs = 0;
-
-       switch (type) {
-       case PluginInfo::LADSPA:
-               plugs = &mgr->ladspa_plugin_info();
-               break;
-       case PluginInfo::VST:
-               plugs = &mgr->vst_plugin_info();
-               unique_id = 0; // VST plugins don't have a unique id.
-               break;
-       case PluginInfo::AudioUnit:
-               plugs = &mgr->au_plugin_info();
-               unique_id = 0;
-               break;
-       default:
-               return boost::shared_ptr<Plugin> ((Plugin *) 0);
-       }
-
-       PluginInfoList::iterator i;
-       for (i = plugs->begin(); i != plugs->end(); ++i) {
-               if ((name == "" || (*i)->name == name) &&
-                       (unique_id == 0 || (*i)->unique_id == unique_id)) {     
-                       return mgr->load (session, *i);
-               }
-       }
-       
-       return boost::shared_ptr<Plugin> ((Plugin*) 0);
-}
-
 string
 PluginManager::get_ladspa_category (uint32_t plugin_id)
 {
@@ -464,7 +382,7 @@ PluginManager::vst_discover (string path)
                        << endl;
        }
        
-       PluginInfoPtr info(new PluginInfo);
+       PluginInfoPtr info(new VSTPluginInfo);
 
        /* what a goddam joke freeware VST is */
 
@@ -479,7 +397,7 @@ PluginManager::vst_discover (string path)
        info->index = 0;
        info->n_inputs = finfo->numInputs;
        info->n_outputs = finfo->numOutputs;
-       info->type = PluginInfo::VST;
+       info->type = ARDOUR::VST;
        
        _vst_plugin_info.push_back (info);
        fst_free_info (finfo);