Merge branch 'master' into windows
[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/debug.h"
30 #include "ardour/panner_manager.h"
31
32 #include "ardour/panner_search_path.h"
33
34 #include "i18n.h"
35
36 using namespace std;
37 using namespace ARDOUR;
38 using namespace PBD;
39
40 PannerManager* PannerManager::_instance = 0;
41
42 PannerManager::PannerManager ()
43 {
44 }
45
46 PannerManager::~PannerManager ()
47 {
48         for (list<PannerInfo*>::iterator p = panner_info.begin(); p != panner_info.end(); ++p) {
49                 delete *p;
50         }
51 }
52
53 PannerManager&
54 PannerManager::instance ()
55 {
56         if (_instance == 0) {
57                 _instance = new PannerManager ();
58         }
59
60         return *_instance;
61 }
62
63 void
64 PannerManager::discover_panners ()
65 {
66         vector<std::string> panner_modules;
67
68         Glib::PatternSpec so_extension_pattern("*.so");
69         Glib::PatternSpec dylib_extension_pattern("*.dylib");
70         Glib::PatternSpec dll_extension_pattern("*.dll");
71
72         find_matching_files_in_search_path (panner_search_path (),
73                                             so_extension_pattern, panner_modules);
74
75         find_matching_files_in_search_path (panner_search_path (),
76                                             dylib_extension_pattern, panner_modules);
77
78         find_matching_files_in_search_path (panner_search_path (),
79                                             dll_extension_pattern, panner_modules);
80
81         DEBUG_TRACE (DEBUG::Panning, string_compose (_("looking for panners in %1"), panner_search_path().to_string()));
82
83         for (vector<std::string>::iterator i = panner_modules.begin(); i != panner_modules.end(); ++i) {
84                 panner_discover (*i);
85         }
86 }
87
88 int
89 PannerManager::panner_discover (string path)
90 {
91         PannerInfo* pinfo;
92
93         if ((pinfo = get_descriptor (path)) != 0) {
94
95                 list<PannerInfo*>::iterator i;
96
97                 for (i = panner_info.begin(); i != panner_info.end(); ++i) {
98                         if (pinfo->descriptor.name == (*i)->descriptor.name) {
99                                 break;
100                         }
101                 }
102
103                 if (i == panner_info.end()) {
104                         panner_info.push_back (pinfo);
105                         DEBUG_TRACE (DEBUG::Panning, string_compose(_("Panner discovered: \"%1\" in %2"), pinfo->descriptor.name, path));
106                 }
107         }
108
109         return 0;
110 }
111
112 PannerInfo*
113 PannerManager::get_descriptor (string path)
114 {
115         Glib::Module* module = new Glib::Module(path);
116         PannerInfo* info = 0;
117         PanPluginDescriptor *descriptor = 0;
118         PanPluginDescriptor* (*dfunc)(void);
119         void* func = 0;
120
121         if (!module) {
122                 error << string_compose(_("PannerManager: cannot load module \"%1\" (%2)"), path,
123                                 Glib::Module::get_last_error()) << endmsg;
124                 delete module;
125                 return 0;
126         }
127
128         if (!module->get_symbol("panner_descriptor", func)) {
129                 error << string_compose(_("PannerManager: module \"%1\" has no descriptor function."), path) << endmsg;
130                 error << Glib::Module::get_last_error() << endmsg;
131                 delete module;
132                 return 0;
133         }
134
135         dfunc = (PanPluginDescriptor* (*)(void))func;
136         descriptor = dfunc();
137
138         if (descriptor) {
139                 info = new PannerInfo (*descriptor, module);
140         } else {
141                 delete module;
142         }
143
144         return info;
145 }
146
147 PannerInfo*
148 PannerManager::select_panner (ChanCount in, ChanCount out)
149 {
150         PanPluginDescriptor* d;
151         int32_t nin = in.n_audio();
152         int32_t nout = out.n_audio();
153
154         /* look for exact match first */
155
156         for (list<PannerInfo*>::iterator p = panner_info.begin(); p != panner_info.end(); ++p) {
157                 d = &(*p)->descriptor;
158
159                 if (d->in == nin && d->out == nout) {
160                         return *p;
161                 }
162         }
163
164         /* no exact match, look for good fit on inputs and variable on outputs */
165
166         for (list<PannerInfo*>::iterator p = panner_info.begin(); p != panner_info.end(); ++p) {
167                 d = &(*p)->descriptor;
168
169                 if (d->in == nin && d->out == -1) {
170                         return *p;
171                 }
172         }
173
174         /* no exact match, look for good fit on outputs and variable on inputs */
175
176         for (list<PannerInfo*>::iterator p = panner_info.begin(); p != panner_info.end(); ++p) {
177                 d = &(*p)->descriptor;
178
179                 if (d->in == -1 && d->out == nout) {
180                         return *p;
181                 }
182         }
183
184         /* no exact match, look for variable fit on inputs and outputs */
185
186         for (list<PannerInfo*>::iterator p = panner_info.begin(); p != panner_info.end(); ++p) {
187                 d = &(*p)->descriptor;
188
189                 if (d->in == -1 && d->out == -1) {
190                         return *p;
191                 }
192         }
193
194         warning << string_compose (_("no panner discovered for in/out = %1/%2"), nin, nout) << endmsg;
195
196         return 0;
197 }