Merge branch 'master' into cairocanvas
[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 <string>
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/libardour_visibility.h"
36 #include "ardour/types.h"
37 #include "ardour/midi_state_tracker.h"
38
39 #include <vector>
40 #include <set>
41 #include <map>
42
43 namespace ARDOUR {
44
45 class AudioEngine;
46 class Session;
47 class BufferSet;
48
49 class Plugin;
50
51 typedef boost::shared_ptr<Plugin> PluginPtr;
52
53 class LIBARDOUR_API PluginInfo {
54   public:
55         PluginInfo () { }
56         virtual ~PluginInfo () { }
57
58         std::string name;
59         std::string category;
60         std::string creator;
61         std::string path;
62         ChanCount n_inputs;
63         ChanCount n_outputs;
64         ARDOUR::PluginType type;
65
66         std::string unique_id;
67
68         virtual PluginPtr load (Session& session) = 0;
69         virtual bool is_instrument() const; 
70
71         /* NOTE: this block of virtual methods looks like the interface
72            to a Processor, but Plugin does not inherit from Processor.
73            It is therefore not required that these precisely match
74            the interface, but it is likely that they will evolve together.
75         */
76
77         /* this returns true if the plugin can change its inputs or outputs on demand.
78            LADSPA, LV2 and VST plugins cannot do this. AudioUnits can.
79         */
80
81         virtual bool reconfigurable_io() const { return false; }
82
83   protected:
84         friend class PluginManager;
85         uint32_t index;
86 };
87
88 typedef boost::shared_ptr<PluginInfo> PluginInfoPtr;
89 typedef std::list<PluginInfoPtr> PluginInfoList;
90
91 class LIBARDOUR_API Plugin : public PBD::StatefulDestructible, public Latent
92 {
93   public:
94         Plugin (ARDOUR::AudioEngine&, ARDOUR::Session&);
95         Plugin (const Plugin&);
96         virtual ~Plugin ();
97
98         struct ParameterDescriptor {
99
100                 ParameterDescriptor ()
101                         : integer_step(false)
102                         , toggled (false)
103                         , logarithmic (false)
104                         , sr_dependent (false)
105                         , lower (0)
106                         , upper (0)
107                         , step (0)
108                         , smallstep (0)
109                         , largestep (0)
110                         , min_unbound (0)
111                         , max_unbound (0)
112                         , enumeration (false)
113                         , midinote(false)
114                 {}
115
116                 /* essentially a union of LADSPA, VST and LV2 info */
117
118                 bool integer_step;
119                 bool toggled;
120                 bool logarithmic;
121                 bool sr_dependent;
122                 std::string label;
123                 float lower; ///< if this is a frequency, it will be in Hz (not a fraction of the sample rate)
124                 float upper; ///< if this is a frequency, it will be in Hz (not a fraction of the sample rate)
125                 float step;
126                 float smallstep;
127                 float largestep;
128                 bool min_unbound;
129                 bool max_unbound;
130                 bool enumeration;
131                 bool midinote; ///< only used if integer_step is also true
132         };
133
134         XMLNode& get_state ();
135         virtual int set_state (const XMLNode &, int version);
136
137         virtual void set_insert_info (const PluginInsert*) {}
138
139         virtual std::string unique_id() const = 0;
140         virtual const char * label() const = 0;
141         virtual const char * name() const = 0;
142         virtual const char * maker() const = 0;
143         virtual uint32_t parameter_count () const = 0;
144         virtual float default_value (uint32_t port) = 0;
145         virtual float get_parameter(uint32_t which) const = 0;
146         virtual std::string get_docs () const { return ""; }
147         virtual std::string get_parameter_docs (uint32_t /*which*/) const { return ""; }
148
149         virtual int get_parameter_descriptor (uint32_t which, ParameterDescriptor&) const = 0;
150         virtual uint32_t nth_parameter (uint32_t which, bool& ok) const = 0;
151         virtual void activate () = 0;
152         virtual void deactivate () = 0;
153         virtual void flush () { deactivate(); activate(); }
154
155         virtual int set_block_size (pframes_t nframes) = 0;
156
157         virtual int connect_and_run (BufferSet& bufs,
158                                      ChanMapping in, ChanMapping out,
159                                      pframes_t nframes, framecnt_t offset);
160
161         virtual std::set<Evoral::Parameter> automatable() const = 0;
162         virtual std::string describe_parameter (Evoral::Parameter) = 0;
163         virtual std::string state_node_name() const = 0;
164         virtual void print_parameter (uint32_t, char*, uint32_t len) const = 0;
165
166         virtual bool parameter_is_audio(uint32_t) const = 0;
167         virtual bool parameter_is_control(uint32_t) const = 0;
168         virtual bool parameter_is_input(uint32_t) const = 0;
169         virtual bool parameter_is_output(uint32_t) const = 0;
170
171         typedef std::map<const std::string, const float> ScalePoints;
172
173         virtual boost::shared_ptr<ScalePoints> get_scale_points(uint32_t /*port_index*/) const {
174                 return boost::shared_ptr<ScalePoints>();
175         }
176
177         void realtime_handle_transport_stopped ();
178         void realtime_locate ();
179         void monitoring_changed ();
180
181         struct PresetRecord {
182             PresetRecord () : number (-1), user (true) {}
183             PresetRecord (const std::string& u, const std::string& l, int n = -1, bool s = true) : uri (u), label (l), number (n), user (s)  {}
184             
185             bool operator!= (PresetRecord const & a) const {
186                     return number != a.number || uri != a.uri || label != a.label;
187             }
188             
189             std::string uri;
190             std::string label;
191             int number; // if <0, invalid
192             bool user;
193         };
194
195         PresetRecord save_preset (std::string);
196         void remove_preset (std::string);
197
198         virtual bool load_preset (PresetRecord);
199         void clear_preset ();
200
201         const PresetRecord * preset_by_label (const std::string &);
202         const PresetRecord * preset_by_uri (const std::string &);
203
204         std::vector<PresetRecord> get_presets ();
205
206         /** @return true if this plugin will respond to MIDI program
207          * change messages by changing presets.
208          *
209          * This is hard to return a correct value for because most plugin APIs
210          * do not specify plugin behaviour. However, if you want to force
211          * the display of plugin built-in preset names rather than MIDI program
212          * numbers, return true. If you want a generic description, return
213          * false.
214         */
215         virtual bool presets_are_MIDI_programs() const { return false; }
216
217         /** @return true if this plugin is General MIDI compliant, false
218          * otherwise.
219          *
220          * It is important to note that it is is almost impossible for a host
221          * (e.g. Ardour) to determine this for just about any plugin API
222          * known as of June 2012
223          */
224         virtual bool current_preset_uses_general_midi() const { return false; }
225
226         /** @return Last preset to be requested; the settings may have
227          * been changed since; find out with parameter_changed_since_last_preset.
228          */
229         PresetRecord last_preset () const {
230                 return _last_preset;
231         }
232
233         bool parameter_changed_since_last_preset () const {
234                 return _parameter_changed_since_last_preset;
235         }
236
237         virtual int first_user_preset_index () const {
238                 return 0;
239         }
240
241         /** Emitted when a preset is added or removed, respectively */
242         PBD::Signal0<void> PresetAdded;
243         PBD::Signal0<void> PresetRemoved;
244
245         /** Emitted when a preset has been loaded */
246         PBD::Signal0<void> PresetLoaded;
247
248         virtual bool has_editor () const = 0;
249
250         /** Emitted when any parameter changes */
251         PBD::Signal2<void, uint32_t, float> ParameterChanged;
252
253         virtual bool configure_io (ChanCount /*in*/, ChanCount /*out*/) { return true; }
254
255         /* specific types of plugins can overload this. As of September 2008, only
256            AUPlugin does this.
257         */
258         virtual bool can_support_io_configuration (const ChanCount& /*in*/, ChanCount& /*out*/) { return false; }
259         virtual ChanCount output_streams() const;
260         virtual ChanCount input_streams() const;
261
262         PluginInfoPtr get_info() const { return _info; }
263         virtual void set_info (const PluginInfoPtr inf);
264
265         ARDOUR::AudioEngine& engine() const { return _engine; }
266         ARDOUR::Session& session() const { return _session; }
267
268         void set_cycles (uint32_t c) { _cycles = c; }
269         cycles_t cycles() const { return _cycles; }
270
271         PBD::Signal1<void,uint32_t> StartTouch;
272         PBD::Signal1<void,uint32_t> EndTouch;
273
274 protected:
275
276         friend class PluginInsert;
277         friend struct PluginInsert::PluginControl;
278
279         virtual void set_parameter (uint32_t which, float val);
280
281         /** Do the actual saving of the current plugin settings to a preset of the provided name.
282          *  Should return a URI on success, or an empty string on failure.
283          */
284         virtual std::string do_save_preset (std::string) = 0;
285         /** Do the actual removal of a preset of the provided name */
286         virtual void do_remove_preset (std::string) = 0;
287
288         ARDOUR::AudioEngine&     _engine;
289         ARDOUR::Session&         _session;
290         PluginInfoPtr            _info;
291         uint32_t                 _cycles;
292         std::map<std::string, PresetRecord> _presets;
293
294 private:
295
296         /** Fill _presets with our presets */
297         virtual void find_presets () = 0;
298
299         /** Add state to an existing XMLNode */
300         virtual void add_state (XMLNode *) const = 0;
301
302         bool _have_presets;
303         MidiStateTracker _tracker;
304         BufferSet _pending_stop_events;
305         bool _have_pending_stop_events;
306         PresetRecord _last_preset;
307         bool _parameter_changed_since_last_preset;
308
309         void resolve_midi ();
310 };
311
312 PluginPtr find_plugin(ARDOUR::Session&, std::string unique_id, ARDOUR::PluginType);
313
314 } // namespace ARDOUR
315
316 #endif /* __ardour_plugin_h__ */