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