add preference -- link-send-and-route-panner default
[ardour.git] / libs / ardour / ardour / panner_manager.h
1 /*
2     Copyright (C) 2012 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 #ifndef __ardour_panner_manager_h__
21 #define __ardour_panner_manager_h__
22
23 #include <dlfcn.h>
24 #include "ardour/panner.h"
25 #include "ardour/session_handle.h"
26
27 namespace ARDOUR {
28
29 typedef std::map<std::string,std::string> PannerUriMap;
30
31 struct PannerInfo {
32         PanPluginDescriptor descriptor;
33         void* module;
34
35         PannerInfo (PanPluginDescriptor& d, void* handle)
36         : descriptor (d)
37         , module (handle)
38         {}
39
40         ~PannerInfo () {
41                 dlclose (module);
42         }
43 };
44
45 class PannerManager : public ARDOUR::SessionHandlePtr
46 {
47 public:
48         ~PannerManager ();
49         static PannerManager& instance ();
50
51         void discover_panners ();
52         std::list<PannerInfo*> panner_info;
53
54         PannerInfo* select_panner (ChanCount in, ChanCount out, std::string const uri = "");
55         PannerInfo* get_by_uri (std::string uri) const;
56         PannerUriMap get_available_panners(uint32_t const a_in, uint32_t const a_out) const;
57
58 private:
59         PannerManager();
60         static PannerManager* _instance;
61
62         PannerInfo* get_descriptor (std::string path);
63         int panner_discover (std::string path);
64 };
65
66 } // namespace
67
68 #endif /* __ardour_panner_manager_h__ */