Wouldn't it be nice if plugin presets had a description/comment?
[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 #include <set>
26
27 #include "pbd/statefuldestructible.h"
28 #include "pbd/controllable.h"
29
30 #include "ardour/buffer_set.h"
31 #include "ardour/chan_count.h"
32 #include "ardour/chan_mapping.h"
33 #include "ardour/cycles.h"
34 #include "ardour/latent.h"
35 #include "ardour/libardour_visibility.h"
36 #include "ardour/midi_ring_buffer.h"
37 #include "ardour/midi_state_tracker.h"
38 #include "ardour/parameter_descriptor.h"
39 #include "ardour/types.h"
40 #include "ardour/variant.h"
41
42 #include <vector>
43 #include <set>
44 #include <map>
45
46 namespace ARDOUR {
47
48 class AudioEngine;
49 class Session;
50 class BufferSet;
51 class PluginInsert;
52 class Plugin;
53 class PluginInfo;
54 class AutomationControl;
55 class SessionObject;
56
57 typedef boost::shared_ptr<Plugin> PluginPtr;
58 typedef boost::shared_ptr<PluginInfo> PluginInfoPtr;
59 typedef std::list<PluginInfoPtr> PluginInfoList;
60 typedef std::set<uint32_t> PluginOutputConfiguration;
61
62 /** A plugin is an external module (usually 3rd party provided) loaded into Ardour
63  * for the purpose of digital signal processing.
64  *
65  * This class provides an abstraction for methords provided by
66  * all supported plugin standards such as presets, name, parameters etc.
67  *
68  * Plugins are not used directly in Ardour but always wrapped by a PluginInsert.
69  */
70 class LIBARDOUR_API Plugin : public PBD::StatefulDestructible, public Latent
71 {
72   public:
73         Plugin (ARDOUR::AudioEngine&, ARDOUR::Session&);
74         Plugin (const Plugin&);
75         virtual ~Plugin ();
76
77         XMLNode& get_state ();
78         virtual int set_state (const XMLNode &, int version);
79
80         virtual void set_insert_id (PBD::ID id) {}
81         virtual void set_state_dir (const std::string& d = "") {}
82
83         virtual std::string unique_id() const = 0;
84         virtual const char * label() const = 0;
85         virtual const char * name() const = 0;
86         virtual const char * maker() const = 0;
87         virtual uint32_t parameter_count () const = 0;
88         virtual float default_value (uint32_t port) = 0;
89         virtual float get_parameter(uint32_t which) const = 0;
90         virtual std::string get_docs () const { return ""; }
91         virtual std::string get_parameter_docs (uint32_t /*which*/) const { return ""; }
92
93         struct UILayoutHint {
94                 UILayoutHint ()
95                         : x0(-1), x1(-1), y0(-1), y1(-1), knob(false) {}
96                 int x0;
97                 int x1;
98                 int y0;
99                 int y1;
100                 bool knob;
101         };
102
103         virtual bool get_layout (uint32_t which, UILayoutHint&) const { return false; }
104
105         virtual int get_parameter_descriptor (uint32_t which, ParameterDescriptor&) const = 0;
106         virtual uint32_t nth_parameter (uint32_t which, bool& ok) const = 0;
107         virtual std::string parameter_label (uint32_t which) const;
108         virtual void activate () = 0;
109         virtual void deactivate () = 0;
110         virtual void flush () { deactivate(); activate(); }
111
112         virtual int set_block_size (pframes_t nframes) = 0;
113         virtual bool requires_fixed_sized_buffers() const { return false; }
114         virtual bool inplace_broken() const { return false; }
115
116         virtual int connect_and_run (BufferSet& bufs,
117                         samplepos_t start, samplepos_t end, double speed,
118                         ChanMapping const& in, ChanMapping const& out,
119                         pframes_t nframes, samplecnt_t offset);
120
121         virtual std::set<Evoral::Parameter> automatable() const = 0;
122         virtual std::string describe_parameter (Evoral::Parameter) = 0;
123         virtual std::string state_node_name() const = 0;
124         virtual void print_parameter (uint32_t, char*, uint32_t len) const = 0;
125
126         virtual bool parameter_is_audio(uint32_t) const = 0;
127         virtual bool parameter_is_control(uint32_t) const = 0;
128         virtual bool parameter_is_input(uint32_t) const = 0;
129         virtual bool parameter_is_output(uint32_t) const = 0;
130
131         virtual uint32_t designated_bypass_port () { return UINT32_MAX; }
132
133         struct LIBARDOUR_API IOPortDescription {
134                 public:
135                 IOPortDescription (const std::string& n)
136                         : name (n)
137                         , is_sidechain (false)
138                         , group_name (n)
139                         , group_channel (0)
140                 {}
141                 IOPortDescription (const IOPortDescription &other)
142                         : name (other.name)
143                         , is_sidechain (other.is_sidechain)
144                         , group_name (other.group_name)
145                         , group_channel (other.group_channel)
146                 {}
147                 std::string name;
148                 bool is_sidechain;
149
150                 std::string group_name;
151                 uint32_t group_channel;
152         };
153
154         virtual IOPortDescription describe_io_port (DataType dt, bool input, uint32_t id) const;
155         virtual PluginOutputConfiguration possible_output () const;
156
157         virtual void set_automation_control (uint32_t /*port_index*/, boost::shared_ptr<ARDOUR::AutomationControl>) { }
158
159         virtual boost::shared_ptr<ScalePoints> get_scale_points(uint32_t /*port_index*/) const {
160                 return boost::shared_ptr<ScalePoints>();
161         }
162
163         bool write_immediate_event (size_t size, const uint8_t* buf);
164
165         void realtime_handle_transport_stopped ();
166         void realtime_locate ();
167         void monitoring_changed ();
168
169         typedef struct {
170                 unsigned char *data;
171                 int width;
172                 int height;
173                 int stride;
174         } Display_Image_Surface;
175
176         virtual bool has_inline_display () { return false; }
177         virtual bool inline_display_in_gui () { return false; }
178         virtual Display_Image_Surface* render_inline_display (uint32_t, uint32_t) { return NULL; }
179         PBD::Signal0<void> QueueDraw;
180
181         virtual bool has_midnam () { return false; }
182         virtual bool read_midnam () { return false; }
183         virtual std::string midnam_model () { return ""; }
184         PBD::Signal0<void> UpdateMidnam;
185         PBD::Signal0<void> UpdatedMidnam;
186
187         virtual bool knows_bank_patch () { return false; }
188         virtual uint32_t bank_patch (uint8_t chn) { return UINT32_MAX; }
189         PBD::Signal1<void, uint8_t> BankPatchChange;
190
191         struct PresetRecord {
192             PresetRecord () : valid (false) {}
193             PresetRecord (const std::string& u, const std::string& l, bool s = true, const std::string& d = "")
194                                 : uri (u), label (l), description (d), user (s), valid (true)  {}
195
196             bool operator!= (PresetRecord const & a) const {
197                     return uri != a.uri || label != a.label;
198             }
199
200             std::string uri;
201             std::string label;
202             std::string description;
203             bool user;
204             bool valid;
205         };
206
207         PresetRecord save_preset (std::string);
208         void remove_preset (std::string);
209
210         virtual bool load_preset (PresetRecord);
211         void clear_preset ();
212
213         const PresetRecord * preset_by_label (const std::string &);
214         const PresetRecord * preset_by_uri (const std::string &);
215
216         std::vector<PresetRecord> get_presets ();
217
218         /** @return true if this plugin will respond to MIDI program
219          * change messages by changing presets.
220          *
221          * This is hard to return a correct value for because most plugin APIs
222          * do not specify plugin behaviour. However, if you want to force
223          * the display of plugin built-in preset names rather than MIDI program
224          * numbers, return true. If you want a generic description, return
225          * false.
226          */
227         virtual bool presets_are_MIDI_programs() const { return false; }
228
229         /** @return true if this plugin is General MIDI compliant, false
230          * otherwise.
231          *
232          * It is important to note that it is is almost impossible for a host
233          * (e.g. Ardour) to determine this for just about any plugin API
234          * known as of June 2012
235          */
236         virtual bool current_preset_uses_general_midi() const { return false; }
237
238         /** @return Last preset to be requested; the settings may have
239          * been changed since; find out with parameter_changed_since_last_preset.
240          */
241         PresetRecord last_preset () const {
242                 return _last_preset;
243         }
244
245         bool parameter_changed_since_last_preset () const {
246                 return _parameter_changed_since_last_preset;
247         }
248
249         virtual int first_user_preset_index () const {
250                 return 0;
251         }
252
253         /** the max possible latency a plugin will have */
254         virtual samplecnt_t max_latency () const { return 0; } // TODO = 0, require implementation
255
256         /** Emitted when a preset is added or removed, respectively */
257         PBD::Signal0<void> PresetAdded;
258         PBD::Signal0<void> PresetRemoved;
259
260         /** Emitted when any preset has been changed */
261         static PBD::Signal2<void, std::string, Plugin*> PresetsChanged;
262
263         /** Emitted when a preset has been loaded */
264         PBD::Signal0<void> PresetLoaded;
265
266         /** Emitted when a parameter is altered in a way that may have
267          *  changed the settings with respect to any loaded preset.
268          */
269         PBD::Signal0<void> PresetDirty;
270
271         /** Emitted for preset-load to set a control-port */
272         PBD::Signal2<void, uint32_t, float> PresetPortSetValue;
273
274         virtual bool has_editor () const = 0;
275
276         /** Emitted when a parameter is altered by something outside of our
277          * control, most typically a Plugin GUI/editor
278          */
279         PBD::Signal2<void, uint32_t, float> ParameterChangedExternally;
280
281         virtual bool configure_io (ChanCount /*in*/, ChanCount /*out*/) { return true; }
282
283         /* specific types of plugins can overload this. As of September 2008, only
284            AUPlugin does this.
285         */
286         virtual bool can_support_io_configuration (const ChanCount& /*in*/, ChanCount& /*out*/, ChanCount* imprecise = 0) { return false; }
287         virtual ChanCount output_streams() const;
288         virtual ChanCount input_streams() const;
289
290         PluginInfoPtr get_info() const { return _info; }
291         virtual void set_info (const PluginInfoPtr inf);
292
293         virtual void set_owner (SessionObject* o) { _owner = o; }
294         SessionObject* owner() const { return _owner; }
295
296         ARDOUR::AudioEngine& engine() const { return _engine; }
297         ARDOUR::Session& session() const { return _session; }
298
299         void set_cycles (uint32_t c) { _cycles = c; }
300         cycles_t cycles() const { return _cycles; }
301
302         typedef std::map<uint32_t, ParameterDescriptor> PropertyDescriptors;
303
304         /** Get a descrption of all properties supported by this plugin.
305          *
306          * Properties are distinct from parameters in that they are potentially
307          * dynamic, referred to by key, and do not correspond 1:1 with ports.
308          *
309          * For LV2 plugins, properties are implemented by sending/receiving set/get
310          * messages to/from the plugin via event ports.
311          */
312         virtual const PropertyDescriptors& get_supported_properties() const {
313                 static const PropertyDescriptors nothing;
314                 return nothing;
315         }
316
317         virtual const ParameterDescriptor& get_property_descriptor(uint32_t id) const {
318                 static const ParameterDescriptor nothing;
319                 return nothing;
320         }
321
322         /** Set a property from the UI.
323          *
324          * This is not UI-specific, but may only be used by one thread.  If the
325          * Ardour UI is present, that is the UI thread, but otherwise, any thread
326          * except the audio thread may call this function as long as it is not
327          * called concurrently.
328          */
329         virtual void set_property(uint32_t key, const Variant& value) {}
330
331         /** Emit PropertyChanged for all current property values. */
332         virtual void announce_property_values() {}
333
334         /** Emitted when a property is changed in the plugin. */
335         PBD::Signal2<void, uint32_t, Variant> PropertyChanged;
336
337         PBD::Signal1<void,uint32_t> StartTouch;
338         PBD::Signal1<void,uint32_t> EndTouch;
339
340 protected:
341
342         friend class PluginInsert;
343         friend class Session;
344
345         /* Called when a parameter of the plugin is changed outside of this
346          * host's control (typical via a plugin's own GUI/editor)
347          */
348         virtual void parameter_changed_externally (uint32_t which, float val);
349
350         /* should be overridden by plugin API specific derived types to
351          * actually implement changing the parameter. The derived type should
352          * call this after the change is made.
353          */
354         virtual void set_parameter (uint32_t which, float val);
355
356         /** Do the actual saving of the current plugin settings to a preset of the provided name.
357          *  Should return a URI on success, or an empty string on failure.
358          */
359         virtual std::string do_save_preset (std::string) = 0;
360         /** Do the actual removal of a preset of the provided name */
361         virtual void do_remove_preset (std::string) = 0;
362
363         ARDOUR::AudioEngine&     _engine;
364         ARDOUR::Session&         _session;
365         PluginInfoPtr            _info;
366         uint32_t                 _cycles;
367         std::map<std::string, PresetRecord> _presets;
368
369         SessionObject*           _owner;
370
371 private:
372
373         /** Fill _presets with our presets */
374         virtual void find_presets () = 0;
375
376         /** Add state to an existing XMLNode */
377         virtual void add_state (XMLNode *) const = 0;
378
379         bool _have_presets;
380         MidiStateTracker _tracker;
381         BufferSet _pending_stop_events;
382         bool _have_pending_stop_events;
383         PresetRecord _last_preset;
384         bool _parameter_changed_since_last_preset;
385
386         PBD::ScopedConnection _preset_connection;
387
388         MidiRingBuffer<samplepos_t> _immediate_events;
389
390         void resolve_midi ();
391 };
392
393 struct PluginPreset {
394         PluginInfoPtr   _pip;
395         Plugin::PresetRecord _preset;
396
397         PluginPreset (PluginInfoPtr pip, const Plugin::PresetRecord *preset = NULL)
398                 : _pip (pip)
399         {
400                 if (preset) {
401                         _preset.uri    = preset->uri;
402                         _preset.label  = preset->label;
403                         _preset.user   = preset->user;
404                         _preset.valid  = preset->valid;
405                 }
406         }
407 };
408
409 typedef boost::shared_ptr<PluginPreset> PluginPresetPtr;
410 typedef std::list<PluginPresetPtr> PluginPresetList;
411
412 PluginPtr find_plugin(ARDOUR::Session&, std::string unique_id, ARDOUR::PluginType);
413
414 class LIBARDOUR_API PluginInfo {
415   public:
416         PluginInfo () { }
417         virtual ~PluginInfo () { }
418
419         std::string name;
420         std::string category;
421         std::string creator;
422         std::string path;
423         ChanCount n_inputs;
424         ChanCount n_outputs;
425         ARDOUR::PluginType type;
426
427         std::string unique_id;
428
429         virtual PluginPtr load (Session& session) = 0;
430
431         /* NOTE: it is possible for a plugin to be an effect AND an instrument.
432          * override these funcs as necessary to support that.
433          */
434         virtual bool is_effect () const;
435         virtual bool is_instrument () const;
436         virtual bool is_utility () const;  //this includes things like "generators" and "midi filters"
437         virtual bool is_analyzer () const;
438
439         virtual bool needs_midi_input() const;
440
441         virtual std::vector<Plugin::PresetRecord> get_presets (bool user_only) const = 0;
442
443         /* NOTE: this block of virtual methods looks like the interface
444            to a Processor, but Plugin does not inherit from Processor.
445            It is therefore not required that these precisely match
446            the interface, but it is likely that they will evolve together.
447         */
448
449         /* this returns true if the plugin can change its inputs or outputs on demand.
450            LADSPA, LV2 and VST plugins cannot do this. AudioUnits can.
451         */
452
453         virtual bool reconfigurable_io() const { return false; }
454
455   protected:
456         friend class PluginManager;
457         uint32_t index;
458 };
459
460 } // namespace ARDOUR
461
462 #endif /* __ardour_plugin_h__ */