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