Remove no-longer-required search path hack.
[ardour.git] / libs / ardour / panner_manager.cc
1 /*
2     Copyright (C) 2011 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <unistd.h>
21
22 #include <glibmm/pattern.h>
23 #include <glibmm/fileutils.h>
24
25 #include "pbd/error.h"
26 #include "pbd/compose.h"
27 #include "pbd/file_utils.h"
28
29 #include "ardour/panner_manager.h"
30 #include "ardour/panner_search_path.h"
31
32 #include "i18n.h"
33
34 using namespace std;
35 using namespace ARDOUR;
36 using namespace PBD;
37
38 PannerManager* PannerManager::_instance = 0;
39
40 PannerManager::PannerManager ()
41 {
42 }
43
44 PannerManager::~PannerManager ()
45 {
46         for (list<PannerInfo*>::iterator p = panner_info.begin(); p != panner_info.end(); ++p) {
47                 delete *p;
48         }
49 }
50
51 PannerManager&
52 PannerManager::instance ()
53 {
54         if (_instance == 0) {
55                 _instance = new PannerManager ();
56         }
57
58         return *_instance;
59 }
60
61 void
62 PannerManager::discover_panners ()
63 {
64         vector<sys::path> panner_modules;
65
66         Glib::PatternSpec so_extension_pattern("*.so");
67         Glib::PatternSpec dylib_extension_pattern("*.dylib");
68
69         find_matching_files_in_search_path (panner_search_path (),
70                                             so_extension_pattern, panner_modules);
71
72         find_matching_files_in_search_path (panner_search_path (),
73                                             dylib_extension_pattern, panner_modules);
74
75         info << string_compose (_("looking for panners in %1"), panner_search_path().to_string()) << endmsg;
76
77         for (vector<sys::path>::iterator i = panner_modules.begin(); i != panner_modules.end(); ++i) {
78                 panner_discover ((*i).to_string());
79         }
80 }
81 int
82 PannerManager::panner_discover (string path)
83 {
84         PannerInfo* pinfo;
85
86         if ((pinfo = get_descriptor (path)) != 0) {
87
88                 list<PannerInfo*>::iterator i;
89
90                 for (i = panner_info.begin(); i != panner_info.end(); ++i) {
91                         if (pinfo->descriptor.name == (*i)->descriptor.name) {
92                                 break;
93                         }
94                 }
95
96                 if (i == panner_info.end()) {
97                         panner_info.push_back (pinfo);
98                         info << string_compose(_("Panner discovered: \"%1\" in %2"), pinfo->descriptor.name, path) << endmsg;
99                 }
100         }
101
102         return 0;
103 }
104
105 PannerInfo*
106 PannerManager::get_descriptor (string path)
107 {
108         void *module;
109         PannerInfo* info = 0;
110         PanPluginDescriptor *descriptor = 0;
111         PanPluginDescriptor* (*dfunc)(void);
112         const char *errstr;
113
114         if ((module = dlopen (path.c_str(), RTLD_NOW)) == 0) {
115                 error << string_compose(_("PannerManager: cannot load module \"%1\" (%2)"), path, dlerror()) << endmsg;
116                 return 0;
117         }
118
119         dfunc = (PanPluginDescriptor* (*)(void)) dlsym (module, "panner_descriptor");
120
121         if ((errstr = dlerror()) != 0) {
122                 error << string_compose(_("PannerManager: module \"%1\" has no descriptor function."), path) << endmsg;
123                 error << errstr << endmsg;
124                 dlclose (module);
125                 return 0;
126         }
127
128         descriptor = dfunc();
129         if (descriptor) {
130                 info = new PannerInfo (*descriptor, module);
131         } else {
132                 dlclose (module);
133         }
134
135         return info;
136 }
137
138 PannerInfo*
139 PannerManager::select_panner (ChanCount in, ChanCount out)
140 {
141         PanPluginDescriptor* d;
142         int32_t nin = in.n_audio();
143         int32_t nout = out.n_audio();
144
145         /* look for exact match first */
146
147         for (list<PannerInfo*>::iterator p = panner_info.begin(); p != panner_info.end(); ++p) {
148                 d = &(*p)->descriptor;
149
150                 if (d->in == nin && d->out == nout) {
151                         return *p;
152                 }
153         }
154
155         /* no exact match, look for good fit on inputs and variable on outputs */
156
157         for (list<PannerInfo*>::iterator p = panner_info.begin(); p != panner_info.end(); ++p) {
158                 d = &(*p)->descriptor;
159
160                 if (d->in == nin && d->out == -1) {
161                         return *p;
162                 }
163         }
164
165         /* no exact match, look for good fit on outputs and variable on inputs */
166
167         for (list<PannerInfo*>::iterator p = panner_info.begin(); p != panner_info.end(); ++p) {
168                 d = &(*p)->descriptor;
169
170                 if (d->in == -1 && d->out == nout) {
171                         return *p;
172                 }
173         }
174
175         /* no exact match, look for variable fit on inputs and outputs */
176
177         for (list<PannerInfo*>::iterator p = panner_info.begin(); p != panner_info.end(); ++p) {
178                 d = &(*p)->descriptor;
179
180                 if (d->in == -1 && d->out == -1) {
181                         return *p;
182                 }
183         }
184
185         warning << string_compose (_("no panner discovered for in/out = %1/%2"), nin, nout) << endmsg;
186
187         return 0;
188 }