switch to using boost::signals2 instead of sigc++, at least for libardour. not finish...
[ardour.git] / libs / ardour / ardour / plugin_manager.h
1 /*
2     Copyright (C) 2000-2007 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_plugin_manager_h__
21 #define __ardour_plugin_manager_h__
22
23 #ifdef WAF_BUILD
24 #include "libardour-config.h"
25 #endif
26
27 #include <list>
28 #include <map>
29 #include <string>
30 #include <set>
31 #include <boost/utility.hpp>
32
33 #include "ardour/types.h"
34 #include "ardour/plugin.h"
35
36 #ifdef HAVE_SLV2
37 #include "ardour/lv2_plugin.h"
38 #endif
39
40 namespace ARDOUR {
41
42 class Plugin;
43
44 class PluginManager : public boost::noncopyable {
45   public:
46         PluginManager ();
47         ~PluginManager ();
48
49         ARDOUR::PluginInfoList &vst_plugin_info ();
50         ARDOUR::PluginInfoList &ladspa_plugin_info ();
51         ARDOUR::PluginInfoList &lv2_plugin_info ();
52         ARDOUR::PluginInfoList &au_plugin_info ();
53
54         void refresh ();
55
56         int add_ladspa_directory (std::string dirpath);
57         int add_vst_directory (std::string dirpath);
58
59         static PluginManager* the_manager() { return _manager; }
60
61         enum PluginStatusType {
62                 Normal = 0,
63                 Favorite,
64                 Hidden
65         };
66
67         void load_statuses ();
68         void save_statuses ();
69         void set_status (ARDOUR::PluginType type, std::string unique_id, PluginStatusType status);
70         PluginStatusType get_status (const PluginInfoPtr&);
71
72         /** plugins were added to or removed from one of the PluginInfoLists */
73         boost::signals2::signal<void()> PluginListChanged;
74
75   private:
76         struct PluginStatus {
77             ARDOUR::PluginType type;
78             std::string unique_id;
79             PluginStatusType status;
80
81             PluginStatus (ARDOUR::PluginType t, std::string id, PluginStatusType s = Normal)
82             : type (t), unique_id (id), status (s) {}
83
84             bool operator==(const PluginStatus& other) const {
85                     return other.type == type && other.unique_id == unique_id;
86             }
87
88             bool operator<(const PluginStatus& other) const {
89                     return other.type < type || other.unique_id < unique_id;
90             }
91         };
92         typedef std::set<PluginStatus> PluginStatusList;
93         PluginStatusList statuses;
94
95         ARDOUR::PluginInfoList  _empty_plugin_info;
96         ARDOUR::PluginInfoList* _vst_plugin_info;
97         ARDOUR::PluginInfoList* _ladspa_plugin_info;
98         ARDOUR::PluginInfoList* _lv2_plugin_info;
99         ARDOUR::PluginInfoList* _au_plugin_info;
100
101 #ifdef HAVE_SLV2
102         LV2World* _lv2_world;
103 #endif
104
105         std::map<uint32_t, std::string> rdf_type;
106
107         std::string ladspa_path;
108         std::string vst_path;
109
110         void ladspa_refresh ();
111         void vst_refresh ();
112
113         void add_lrdf_data (const std::string &path);
114         void add_ladspa_presets ();
115         void add_vst_presets ();
116         void add_presets (std::string domain);
117
118         void au_refresh ();
119
120         void lv2_refresh ();
121
122         int vst_discover_from_path (std::string path);
123         int vst_discover (std::string path);
124
125         int ladspa_discover_from_path (std::string path);
126         int ladspa_discover (std::string path);
127
128         std::string get_ladspa_category (uint32_t id);
129         std::vector<uint32_t> ladspa_plugin_whitelist;
130
131         static PluginManager* _manager; // singleton
132 };
133
134 } /* namespace ARDOUR */
135
136 #endif /* __ardour_plugin_manager_h__ */
137