expose more info from plugin-strip (for GUI display)
[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         bool has_midi_trhu () const;
94
95 #ifdef MIXBUS
96         bool is_channelstrip () const;
97 #endif
98
99         void set_input_map (uint32_t, ChanMapping);
100         void set_output_map (uint32_t, ChanMapping);
101         bool reset_map (bool emit = true);
102         bool sanitize_maps ();
103
104         // these are ports visible on the outside
105         ChanCount output_streams() const;
106         ChanCount input_streams() const;
107         ChanCount internal_streams() const; // with side-chain
108
109         // actual ports of all plugins.
110         // n * natural_i/o or result of reconfigurable i/o
111         ChanCount internal_output_streams() const;
112         ChanCount internal_input_streams() const;
113
114         // a single plugin's internal i/o
115         ChanCount natural_output_streams() const;
116         ChanCount natural_input_streams() const;
117
118         /** plugin ports marked as sidechain */
119         ChanCount sidechain_input_pins() const;
120
121         /** Plugin-Insert IO sidechain ports */
122         ChanCount sidechain_input_ports() const {
123                 if (_sidechain) {
124                         return _sidechain->input ()->n_ports ();
125                 } else {
126                         return ChanCount ();
127                 }
128         }
129
130         // allow to override output_streams(), implies "Custom Mode"
131
132         // only the owning route may call these (with process lock held)
133         // route is not a friend class, it owns us
134         bool set_count      (uint32_t num);
135         void set_outputs    (const ChanCount&);
136         void set_strict_io  (bool b);
137         void set_custom_cfg (bool b);
138         bool add_sidechain  (uint32_t n_audio = 1);
139         bool del_sidechain ();
140         boost::shared_ptr<SideChain> sidechain () const { return _sidechain; }
141         // end C++ class slavery!
142
143         uint32_t get_count  () const { return _plugins.size(); }
144         bool     strict_io  () const { return _strict_io; }
145         bool     custom_cfg () const { return _custom_cfg; }
146
147         bool can_support_io_configuration (const ChanCount& in, ChanCount& out);
148         bool configure_io (ChanCount in, ChanCount out);
149
150         bool has_no_inputs() const;
151         bool has_no_audio_inputs() const;
152         bool is_midi_instrument() const;
153
154         void realtime_handle_transport_stopped ();
155         void realtime_locate ();
156         void monitoring_changed ();
157
158         /** A control that manipulates a plugin parameter (control port). */
159         struct PluginControl : public AutomationControl
160         {
161                 PluginControl (PluginInsert*                     p,
162                                const Evoral::Parameter&          param,
163                                const ParameterDescriptor&        desc,
164                                boost::shared_ptr<AutomationList> list=boost::shared_ptr<AutomationList>());
165
166                 void set_value (double val, PBD::Controllable::GroupControlDisposition group_override);
167                 void set_value_unchecked (double);
168                 double get_value (void) const;
169                 void catch_up_with_external_value (double val);
170                 XMLNode& get_state();
171
172         private:
173                 PluginInsert* _plugin;
174                 void _set_value (double val, PBD::Controllable::GroupControlDisposition group_override);
175         };
176
177         /** A control that manipulates a plugin property (message). */
178         struct PluginPropertyControl : public AutomationControl
179         {
180                 PluginPropertyControl (PluginInsert*                     p,
181                                        const Evoral::Parameter&          param,
182                                        const ParameterDescriptor&        desc,
183                                        boost::shared_ptr<AutomationList> list=boost::shared_ptr<AutomationList>());
184
185                 void set_value (double val, PBD::Controllable::GroupControlDisposition group_override);
186                 void set_value_unchecked (double);
187                 double get_value (void) const;
188                 XMLNode& get_state();
189
190         private:
191                 PluginInsert* _plugin;
192                 Variant       _value;
193         };
194
195         boost::shared_ptr<Plugin> plugin(uint32_t num=0) const {
196                 if (num < _plugins.size()) {
197                         return _plugins[num];
198                 } else {
199                         return _plugins[0]; // we always have one
200                 }
201         }
202
203         bool has_sidechain () const {
204                 return _sidechain ? true : false;
205         }
206
207         boost::shared_ptr<IO> sidechain_input () const {
208                 if (_sidechain) {
209                         return _sidechain->input ();
210                 }
211                 return boost::shared_ptr<IO> ();
212         }
213
214         PluginType type ();
215
216         std::string describe_parameter (Evoral::Parameter param);
217
218         framecnt_t signal_latency () const;
219
220         boost::shared_ptr<Plugin> get_impulse_analysis_plugin();
221
222         void collect_signal_for_analysis (framecnt_t nframes);
223
224         bool strict_io_configured () const {
225                 return _match.strict_io;
226         }
227
228         bool splitting () const {
229                 return _match.method == Split;
230         }
231
232         void configured_io (ChanCount &in, ChanCount &out) const {
233                 in = _configured_in;
234                 out = _configured_out;
235         }
236
237         PBD::Signal2<void,BufferSet*, BufferSet*> AnalysisDataGathered;
238         PBD::Signal0<void> PluginIoReConfigure;
239         PBD::Signal0<void> PluginMapChanged;
240         PBD::Signal0<void> PluginConfigChanged;
241
242         /** Enumeration of the ways in which we can match our insert's
243          *  IO to that of the plugin(s).
244          */
245         enum MatchingMethod {
246                 Impossible,  ///< we can't
247                 Delegate,    ///< we are delegating to the plugin, and it can handle it
248                 NoInputs,    ///< plugin has no inputs, so anything goes
249                 ExactMatch,  ///< our insert's inputs are the same as the plugin's
250                 Replicate,   ///< we have multiple instances of the plugin
251                 Split,       ///< we copy one of our insert's inputs to multiple plugin inputs
252                 Hide,        ///< we `hide' some of the plugin's inputs by feeding them silence
253         };
254
255         /** Description of how we can match our plugin's IO to our own insert IO */
256         struct Match {
257                 Match () : method (Impossible), plugins (0), strict_io (false), custom_cfg (false) {}
258                 Match (MatchingMethod m, int32_t p,
259                                 bool strict = false, bool custom = false, ChanCount h = ChanCount ())
260                         : method (m), plugins (p), hide (h), strict_io (strict), custom_cfg (custom) {}
261
262                 MatchingMethod method; ///< method to employ
263                 int32_t plugins;       ///< number of copies of the plugin that we need
264                 ChanCount hide;        ///< number of channels to hide
265                 bool strict_io;        ///< force in == out
266                 bool custom_cfg;       ///< custom config (if not strict)
267         };
268
269   private:
270         /* disallow copy construction */
271         PluginInsert (const PluginInsert&);
272
273         void parameter_changed_externally (uint32_t, float);
274
275         void set_parameter (Evoral::Parameter param, float val);
276
277         float default_parameter_value (const Evoral::Parameter& param);
278
279         typedef std::vector<boost::shared_ptr<Plugin> > Plugins;
280         Plugins _plugins;
281
282         boost::shared_ptr<SideChain> _sidechain;
283
284         boost::weak_ptr<Plugin> _impulseAnalysisPlugin;
285
286         framecnt_t _signal_analysis_collected_nframes;
287         framecnt_t _signal_analysis_collect_nframes_max;
288
289         BufferSet _signal_analysis_inputs;
290         BufferSet _signal_analysis_outputs;
291
292         ChanCount _configured_in;
293         ChanCount _configured_internal; // with side-chain
294         ChanCount _configured_out;
295         ChanCount _custom_out;
296         ChanCount _cached_sidechain_pins;
297
298         bool _configured;
299         bool _no_inplace;
300         bool _strict_io;
301         bool _custom_cfg;
302         bool _maps_from_state;
303
304         Match private_can_support_io_configuration (ChanCount const &, ChanCount &) const;
305         Match automatic_can_support_io_configuration (ChanCount const &, ChanCount &) const;
306
307         /** details of the match currently being used */
308         Match _match;
309
310         typedef std::map <uint32_t, ARDOUR::ChanMapping> PinMappings;
311         PinMappings _in_map;
312         PinMappings _out_map;
313
314         void automation_run (BufferSet& bufs, framepos_t start, pframes_t nframes);
315         void connect_and_run (BufferSet& bufs, pframes_t nframes, framecnt_t offset, bool with_auto, framepos_t now = 0);
316
317         void create_automatable_parameters ();
318         void control_list_automation_state_changed (Evoral::Parameter, AutoState);
319         void set_parameter_state_2X (const XMLNode& node, int version);
320         void set_control_ids (const XMLNode&, int version);
321
322         boost::shared_ptr<Plugin> plugin_factory (boost::shared_ptr<Plugin>);
323         void add_plugin (boost::shared_ptr<Plugin>);
324
325         void start_touch (uint32_t param_id);
326         void end_touch (uint32_t param_id);
327 };
328
329 } // namespace ARDOUR
330
331 std::ostream& operator<<(std::ostream& o, const ARDOUR::PluginInsert::Match& m);
332
333 #endif /* __ardour_plugin_insert_h__ */