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