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