use new syntax for connecting to backend signals that enforces explicit connection...
[ardour.git] / libs / ardour / ardour / plugin.h
1 /*
2     Copyright (C) 2000-2006 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_h__
21 #define __ardour_plugin_h__
22
23 #include <boost/shared_ptr.hpp>
24 #include <glibmm/ustring.h>
25
26 #include "pbd/statefuldestructible.h"
27 #include "pbd/controllable.h"
28
29 #include <jack/types.h>
30 #include "ardour/chan_count.h"
31 #include "ardour/chan_mapping.h"
32 #include "ardour/cycles.h"
33 #include "ardour/latent.h"
34 #include "ardour/plugin_insert.h"
35 #include "ardour/types.h"
36
37 #include <vector>
38 #include <set>
39 #include <map>
40
41 namespace ARDOUR {
42
43 class AudioEngine;
44 class Session;
45 class BufferSet;
46
47 class Plugin;
48
49 typedef boost::shared_ptr<Plugin> PluginPtr;
50
51 class PluginInfo {
52   public:
53         PluginInfo () { }
54         virtual ~PluginInfo () { }
55
56         std::string name;
57         std::string category;
58         Glib::ustring creator;
59         Glib::ustring path;
60         ChanCount n_inputs;
61         ChanCount n_outputs;
62         ARDOUR::PluginType type;
63
64         std::string unique_id;
65
66         virtual PluginPtr load (Session& session) = 0;
67
68   protected:
69         friend class PluginManager;
70         uint32_t index;
71 };
72
73 typedef boost::shared_ptr<PluginInfo> PluginInfoPtr;
74 typedef std::list<PluginInfoPtr> PluginInfoList;
75
76 class Plugin : public PBD::StatefulDestructible, public Latent
77 {
78   public:
79         Plugin (ARDOUR::AudioEngine&, ARDOUR::Session&);
80         Plugin (const Plugin&);
81         virtual ~Plugin ();
82
83         struct ParameterDescriptor {
84
85                 /* essentially a union of LADSPA and VST info */
86
87                 bool integer_step;
88                 bool toggled;
89                 bool logarithmic;
90                 bool sr_dependent;
91                 std::string label;
92                 float lower;
93                 float upper;
94                 float step;
95                 float smallstep;
96                 float largestep;
97                 bool min_unbound;
98                 bool max_unbound;
99         };
100
101         virtual std::string unique_id() const = 0;
102         virtual const char * label() const = 0;
103         virtual const char * name() const = 0;
104         virtual const char * maker() const = 0;
105         virtual uint32_t parameter_count () const = 0;
106         virtual float default_value (uint32_t port) = 0;
107         virtual float get_parameter(uint32_t which) const = 0;
108
109         virtual int get_parameter_descriptor (uint32_t which, ParameterDescriptor&) const = 0;
110         virtual uint32_t nth_parameter (uint32_t which, bool& ok) const = 0;
111         virtual void activate () = 0;
112         virtual void deactivate () = 0;
113         virtual void set_block_size (nframes_t nframes) = 0;
114
115         virtual int connect_and_run (BufferSet& bufs,
116                         ChanMapping in, ChanMapping out,
117                         nframes_t nframes, nframes_t offset) = 0;
118
119         virtual std::set<Evoral::Parameter> automatable() const = 0;
120         virtual std::string describe_parameter (Evoral::Parameter) = 0;
121         virtual std::string state_node_name() const = 0;
122         virtual void print_parameter (uint32_t, char*, uint32_t len) const = 0;
123
124         virtual bool parameter_is_audio(uint32_t) const = 0;
125         virtual bool parameter_is_control(uint32_t) const = 0;
126         virtual bool parameter_is_input(uint32_t) const = 0;
127         virtual bool parameter_is_output(uint32_t) const = 0;
128
129         virtual bool save_preset (std::string) = 0;
130         virtual bool load_preset (const std::string uri);
131
132         struct PresetRecord {
133                 PresetRecord(const std::string& u, const std::string& l) : uri(u), label(l) {}
134                 std::string uri;
135                 std::string label;
136         };
137
138         virtual std::vector<PresetRecord> get_presets();
139         virtual std::string current_preset() const { return std::string(); }
140
141         const PresetRecord* preset_by_label(const std::string& label);
142         const PresetRecord* preset_by_uri(const std::string& uri);
143
144         virtual bool has_editor() const = 0;
145
146         PBD::Signal2<void,uint32_t,float> ParameterChanged;
147
148         /* NOTE: this block of virtual methods looks like the interface
149            to a Processor, but Plugin does not inherit from Processor.
150            It is therefore not required that these precisely match
151            the interface, but it is likely that they will evolve together.
152         */
153
154         /* this returns true if the plugin can change its inputs or outputs on demand.
155            LADSPA, LV2 and VST plugins cannot do this. AudioUnits can.
156         */
157
158         virtual bool reconfigurable_io() const { return false; }
159
160         /* this is only called if reconfigurable_io() returns true */
161         virtual bool configure_io (ChanCount /*in*/, ChanCount /*out*/) { return true; }
162
163         /* specific types of plugins can overload this. As of September 2008, only
164            AUPlugin does this.
165         */
166         virtual bool can_support_io_configuration (const ChanCount& /*in*/, ChanCount& /*out*/) const { return false; }
167         virtual ChanCount output_streams() const;
168         virtual ChanCount input_streams() const;
169
170         PluginInfoPtr get_info() { return _info; }
171         void set_info (const PluginInfoPtr inf) { _info = inf; }
172
173         ARDOUR::AudioEngine& engine() const { return _engine; }
174         ARDOUR::Session& session() const { return _session; }
175
176         void set_cycles (uint32_t c) { _cycles = c; }
177         cycles_t cycles() const { return _cycles; }
178
179   protected:
180         friend class PluginInsert;
181         friend struct PluginInsert::PluginControl;
182
183         virtual void set_parameter (uint32_t which, float val) = 0;
184
185         bool save_preset (std::string, std::string /* vst, ladspa etc. */);
186
187         ARDOUR::AudioEngine&     _engine;
188         ARDOUR::Session&         _session;
189         PluginInfoPtr            _info;
190         uint32_t                 _cycles;
191         std::map<std::string,PresetRecord>  presets;
192 };
193
194 PluginPtr find_plugin(ARDOUR::Session&, std::string unique_id, ARDOUR::PluginType);
195
196 } // namespace ARDOUR
197
198 #endif /* __ardour_plugin_h__ */