automatically add & connect sidechain plugin pins.
[ardour.git] / libs / ardour / ardour / plugin_insert.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_insert_h__
21 #define __ardour_plugin_insert_h__
22
23 #include <vector>
24 #include <string>
25
26 #include <boost/weak_ptr.hpp>
27
28 #include "ardour/ardour.h"
29 #include "ardour/libardour_visibility.h"
30 #include "ardour/chan_mapping.h"
31 #include "ardour/io.h"
32 #include "ardour/types.h"
33 #include "ardour/parameter_descriptor.h"
34 #include "ardour/processor.h"
35 #include "ardour/sidechain.h"
36 #include "ardour/automation_control.h"
37
38 class XMLNode;
39
40 namespace ARDOUR {
41
42 class Session;
43 class Route;
44 class Plugin;
45
46 /** Plugin inserts: send data through a plugin
47  */
48 class LIBARDOUR_API PluginInsert : public Processor
49 {
50   public:
51         PluginInsert (Session&, boost::shared_ptr<Plugin> = boost::shared_ptr<Plugin>());
52         ~PluginInsert ();
53
54         static const std::string port_automation_node_name;
55
56         XMLNode& state(bool);
57         XMLNode& get_state(void);
58         int set_state(const XMLNode&, int version);
59         void update_id (PBD::ID);
60         void set_state_dir (const std::string& d = "");
61
62         void run (BufferSet& in, framepos_t start_frame, framepos_t end_frame, pframes_t nframes, bool);
63         void silence (framecnt_t nframes);
64
65         void activate ();
66         void deactivate ();
67         void flush ();
68
69         bool reset_parameters_to_default ();
70         bool can_reset_all_parameters ();
71
72         int set_block_size (pframes_t nframes);
73
74         ChanMapping input_map (uint32_t num) const {
75                 if (num < _in_map.size()) {
76                         return _in_map.find (num)->second;
77                 } else {
78                         return ChanMapping ();
79                 }
80         }
81
82         ChanMapping output_map (uint32_t num) const {
83                 if (num < _out_map.size()) {
84                         return _out_map.find (num)->second;
85                 } else {
86                         return ChanMapping ();
87                 }
88         }
89
90         ChanMapping input_map () const;
91         ChanMapping output_map () const;
92         bool has_midi_bypass () const;
93
94         void set_input_map (uint32_t, ChanMapping);
95         void set_output_map (uint32_t, ChanMapping);
96         bool reset_map (bool emit = true);
97         bool sanitize_maps ();
98
99         // these are ports visible on the outside
100         ChanCount output_streams() const;
101         ChanCount input_streams() const;
102         ChanCount internal_streams() const; // with side-chain
103
104         // actual ports of all plugins.
105         // n * natural_i/o or result of reconfigurable i/o
106         ChanCount internal_output_streams() const;
107         ChanCount internal_input_streams() const;
108
109         // a single plugin's internal i/o
110         ChanCount natural_output_streams() const;
111         ChanCount natural_input_streams() const;
112
113         /** plugin ports marked as sidechain */
114         ChanCount sidechain_input_pins() const;
115
116         /** Plugin-Insert IO sidechain ports */
117         ChanCount sidechain_input_ports() const {
118                 if (_sidechain) {
119                         return _sidechain->input ()->n_ports ();
120                 } else {
121                         return ChanCount ();
122                 }
123         }
124
125         // allow to override output_streams(), implies "Custom Mode"
126
127         // only the owning route may call these (with process lock held)
128         // route is not a friend class, it owns us
129         bool set_count      (uint32_t num);
130         void set_outputs    (const ChanCount&);
131         void set_strict_io  (bool b);
132         void set_custom_cfg (bool b);
133         bool add_sidechain  (uint32_t n_audio = 1);
134         bool del_sidechain ();
135         boost::shared_ptr<SideChain> sidechain () const { return _sidechain; }
136         // end C++ class slavery!
137
138         uint32_t get_count  () const { return _plugins.size(); }
139         bool     strict_io  () const { return _strict_io; }
140         bool     custom_cfg () const { return _custom_cfg; }
141
142         bool can_support_io_configuration (const ChanCount& in, ChanCount& out);
143         bool configure_io (ChanCount in, ChanCount out);
144
145         bool has_no_inputs() const;
146         bool has_no_audio_inputs() const;
147         bool is_midi_instrument() const;
148
149         void realtime_handle_transport_stopped ();
150         void realtime_locate ();
151         void monitoring_changed ();
152
153         /** A control that manipulates a plugin parameter (control port). */
154         struct PluginControl : public AutomationControl
155         {
156                 PluginControl (PluginInsert*                     p,
157                                const Evoral::Parameter&          param,
158                                const ParameterDescriptor&        desc,
159                                boost::shared_ptr<AutomationList> list=boost::shared_ptr<AutomationList>());
160
161                 void set_value (double val, PBD::Controllable::GroupControlDisposition group_override);
162                 void set_value_unchecked (double);
163                 double get_value (void) const;
164                 void catch_up_with_external_value (double val);
165                 XMLNode& get_state();
166
167         private:
168                 PluginInsert* _plugin;
169                 void _set_value (double val, PBD::Controllable::GroupControlDisposition group_override);
170         };
171
172         /** A control that manipulates a plugin property (message). */
173         struct PluginPropertyControl : public AutomationControl
174         {
175                 PluginPropertyControl (PluginInsert*                     p,
176                                        const Evoral::Parameter&          param,
177                                        const ParameterDescriptor&        desc,
178                                        boost::shared_ptr<AutomationList> list=boost::shared_ptr<AutomationList>());
179
180                 void set_value (double val, PBD::Controllable::GroupControlDisposition group_override);
181                 void set_value_unchecked (double);
182                 double get_value (void) const;
183                 XMLNode& get_state();
184
185         private:
186                 PluginInsert* _plugin;
187                 Variant       _value;
188         };
189
190         boost::shared_ptr<Plugin> plugin(uint32_t num=0) const {
191                 if (num < _plugins.size()) {
192                         return _plugins[num];
193                 } else {
194                         return _plugins[0]; // we always have one
195                 }
196         }
197
198         bool has_sidechain () const {
199                 return _sidechain ? true : false;
200         }
201
202         boost::shared_ptr<IO> sidechain_input () const {
203                 if (_sidechain) {
204                         return _sidechain->input ();
205                 }
206                 return boost::shared_ptr<IO> ();
207         }
208
209         PluginType type ();
210
211         std::string describe_parameter (Evoral::Parameter param);
212
213         framecnt_t signal_latency () const;
214
215         boost::shared_ptr<Plugin> get_impulse_analysis_plugin();
216
217         void collect_signal_for_analysis (framecnt_t nframes);
218
219         bool strict_io_configured () const {
220                 return _match.strict_io;
221         }
222
223         bool splitting () const {
224                 return _match.method == Split;
225         }
226
227         void configured_io (ChanCount &in, ChanCount &out) const {
228                 in = _configured_in;
229                 out = _configured_out;
230         }
231
232         PBD::Signal2<void,BufferSet*, BufferSet*> AnalysisDataGathered;
233         PBD::Signal0<void> PluginIoReConfigure;
234         PBD::Signal0<void> PluginMapChanged;
235         PBD::Signal0<void> PluginConfigChanged;
236
237         /** Enumeration of the ways in which we can match our insert's
238          *  IO to that of the plugin(s).
239          */
240         enum MatchingMethod {
241                 Impossible,  ///< we can't
242                 Delegate,    ///< we are delegating to the plugin, and it can handle it
243                 NoInputs,    ///< plugin has no inputs, so anything goes
244                 ExactMatch,  ///< our insert's inputs are the same as the plugin's
245                 Replicate,   ///< we have multiple instances of the plugin
246                 Split,       ///< we copy one of our insert's inputs to multiple plugin inputs
247                 Hide,        ///< we `hide' some of the plugin's inputs by feeding them silence
248         };
249
250         /** Description of how we can match our plugin's IO to our own insert IO */
251         struct Match {
252                 Match () : method (Impossible), plugins (0), strict_io (false), custom_cfg (false) {}
253                 Match (MatchingMethod m, int32_t p,
254                                 bool strict = false, bool custom = false, ChanCount h = ChanCount ())
255                         : method (m), plugins (p), hide (h), strict_io (strict), custom_cfg (custom) {}
256
257                 MatchingMethod method; ///< method to employ
258                 int32_t plugins;       ///< number of copies of the plugin that we need
259                 ChanCount hide;        ///< number of channels to hide
260                 bool strict_io;        ///< force in == out
261                 bool custom_cfg;       ///< custom config (if not strict)
262         };
263
264   private:
265         /* disallow copy construction */
266         PluginInsert (const PluginInsert&);
267
268         void parameter_changed_externally (uint32_t, float);
269
270         void set_parameter (Evoral::Parameter param, float val);
271
272         float default_parameter_value (const Evoral::Parameter& param);
273
274         typedef std::vector<boost::shared_ptr<Plugin> > Plugins;
275         Plugins _plugins;
276
277         boost::shared_ptr<SideChain> _sidechain;
278
279         boost::weak_ptr<Plugin> _impulseAnalysisPlugin;
280
281         framecnt_t _signal_analysis_collected_nframes;
282         framecnt_t _signal_analysis_collect_nframes_max;
283
284         BufferSet _signal_analysis_inputs;
285         BufferSet _signal_analysis_outputs;
286
287         ChanCount _configured_in;
288         ChanCount _configured_internal; // with side-chain
289         ChanCount _configured_out;
290         ChanCount _custom_out;
291         ChanCount _cached_sidechain_pins;
292
293         bool _configured;
294         bool _no_inplace;
295         bool _strict_io;
296         bool _custom_cfg;
297         bool _maps_from_state;
298
299         Match private_can_support_io_configuration (ChanCount const &, ChanCount &) const;
300         Match automatic_can_support_io_configuration (ChanCount const &, ChanCount &) const;
301
302         /** details of the match currently being used */
303         Match _match;
304
305         typedef std::map <uint32_t, ARDOUR::ChanMapping> PinMappings;
306         PinMappings _in_map;
307         PinMappings _out_map;
308
309         void automation_run (BufferSet& bufs, framepos_t start, pframes_t nframes);
310         void connect_and_run (BufferSet& bufs, pframes_t nframes, framecnt_t offset, bool with_auto, framepos_t now = 0);
311
312         void create_automatable_parameters ();
313         void control_list_automation_state_changed (Evoral::Parameter, AutoState);
314         void set_parameter_state_2X (const XMLNode& node, int version);
315         void set_control_ids (const XMLNode&, int version);
316
317         boost::shared_ptr<Plugin> plugin_factory (boost::shared_ptr<Plugin>);
318         void add_plugin (boost::shared_ptr<Plugin>);
319
320         void start_touch (uint32_t param_id);
321         void end_touch (uint32_t param_id);
322 };
323
324 } // namespace ARDOUR
325
326 std::ostream& operator<<(std::ostream& o, const ARDOUR::PluginInsert::Match& m);
327
328 #endif /* __ardour_plugin_insert_h__ */