Remove unused rec_monitors_input variables.
[ardour.git] / libs / ardour / ardour / route.h
1 /*
2     Copyright (C) 2000-2002 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_route_h__
21 #define __ardour_route_h__
22
23 #include <cmath>
24 #include <cstring>
25 #include <list>
26 #include <map>
27 #include <set>
28 #include <string>
29
30 #include <boost/shared_ptr.hpp>
31 #include <boost/weak_ptr.hpp>
32 #include <boost/dynamic_bitset.hpp>
33 #include <boost/enable_shared_from_this.hpp>
34
35 #include <glibmm/thread.h>
36 #include "pbd/fastlog.h"
37 #include "pbd/xml++.h"
38 #include "pbd/undo.h"
39 #include "pbd/stateful.h"
40 #include "pbd/controllable.h"
41 #include "pbd/destructible.h"
42
43 #include "ardour/ardour.h"
44 #include "ardour/io.h"
45 #include "ardour/types.h"
46 #include "ardour/mute_master.h"
47 #include "ardour/route_group_member.h"
48 #include "ardour/graphnode.h"
49 #include "ardour/automatable.h"
50 #include "ardour/unknown_processor.h"
51
52 namespace ARDOUR {
53
54 class Amp;
55 class Delivery;
56 class IOProcessor;
57 class Panner;
58 class PannerShell;
59 class PortSet;
60 class Processor;
61 class RouteGroup;
62 class Send;
63 class InternalReturn;
64 class MonitorProcessor;
65 class Pannable;
66 class CapturingProcessor;
67 class InternalSend;
68
69 class Route : public SessionObject, public Automatable, public RouteGroupMember, public GraphNode, public boost::enable_shared_from_this<Route>
70 {
71   public:
72
73         typedef std::list<boost::shared_ptr<Processor> > ProcessorList;
74
75         enum Flag {
76                 Hidden = 0x1,
77                 MasterOut = 0x2,
78                 MonitorOut = 0x4
79         };
80
81         Route (Session&, std::string name, Flag flags = Flag(0), DataType default_type = DataType::AUDIO);
82         virtual ~Route();
83
84         virtual int init ();
85
86         boost::shared_ptr<IO> input() const { return _input; }
87         boost::shared_ptr<IO> output() const { return _output; }
88
89         ChanCount n_inputs() const { return _input->n_ports(); }
90         ChanCount n_outputs() const { return _output->n_ports(); }
91
92         bool active() const { return _active; }
93         void set_active (bool yn, void *);
94
95         static std::string ensure_track_or_route_name(std::string, Session &);
96
97         std::string comment() { return _comment; }
98         void set_comment (std::string str, void *src);
99
100         bool set_name (const std::string& str);
101
102         int32_t order_key (std::string const &) const;
103         void set_order_key (std::string const &, int32_t);
104
105         bool is_hidden() const { return _flags & Hidden; }
106         bool is_master() const { return _flags & MasterOut; }
107         bool is_monitor() const { return _flags & MonitorOut; }
108
109         /* these are the core of the API of a Route. see the protected sections as well */
110
111         virtual int roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame,
112                           int declick, bool can_record, bool& need_butler);
113
114         virtual int no_roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame,
115                              bool state_changing, bool can_record);
116
117         virtual int silent_roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame,
118                                  bool can_record, bool& need_butler);
119
120         virtual void toggle_monitor_input ();
121         virtual bool can_record() { return false; }
122
123         virtual void set_record_enabled (bool /*yn*/, void * /*src*/) {}
124         virtual bool record_enabled() const { return false; }
125         virtual void nonrealtime_handle_transport_stopped (bool abort, bool did_locate, bool flush_processors);
126         virtual void realtime_handle_transport_stopped () {}
127         virtual void realtime_locate () {}
128         virtual void set_pending_declick (int);
129
130         /* end of vfunc-based API */
131
132         void shift (framepos_t, framepos_t);
133
134         void set_gain (gain_t val, void *src);
135         void inc_gain (gain_t delta, void *src);
136
137         void set_mute_points (MuteMaster::MutePoint);
138         MuteMaster::MutePoint mute_points () const;
139
140         bool muted () const;
141         void set_mute (bool yn, void* src);
142
143         /* controls use set_solo() to modify this route's solo state
144          */
145
146         void set_solo (bool yn, void *src);
147         bool soloed () const { return self_soloed () || soloed_by_others (); }
148
149         bool soloed_by_others () const { return _soloed_by_others_upstream||_soloed_by_others_downstream; }
150         bool soloed_by_others_upstream () const { return _soloed_by_others_upstream; }
151         bool soloed_by_others_downstream () const { return _soloed_by_others_downstream; }
152         bool self_soloed () const { return _self_solo; }
153
154         void set_solo_isolated (bool yn, void *src);
155         bool solo_isolated() const;
156
157         void set_solo_safe (bool yn, void *src);
158         bool solo_safe() const;
159
160         void set_listen (bool yn, void* src);
161         bool listening_via_monitor () const;
162
163         void set_phase_invert (uint32_t, bool yn);
164         void set_phase_invert (boost::dynamic_bitset<>);
165         bool phase_invert (uint32_t) const;
166         boost::dynamic_bitset<> phase_invert () const;
167
168         void set_denormal_protection (bool yn);
169         bool denormal_protection() const;
170
171         void         set_meter_point (MeterPoint, bool force = false);
172         void         infer_meter_point () const;
173         MeterPoint   meter_point() const { return _meter_point; }
174         void         meter ();
175
176         /* Processors */
177
178         boost::shared_ptr<Amp> amp() const  { return _amp; }
179         PeakMeter&       peak_meter()       { return *_meter.get(); }
180         const PeakMeter& peak_meter() const { return *_meter.get(); }
181         boost::shared_ptr<PeakMeter> shared_peak_meter() const { return _meter; }
182
183         void flush_processors ();
184
185         void foreach_processor (boost::function<void(boost::weak_ptr<Processor>)> method) {
186                 Glib::RWLock::ReaderLock lm (_processor_lock);
187                 for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
188                         if (boost::dynamic_pointer_cast<UnknownProcessor> (*i)) {
189                                 break;
190                         }
191                         method (boost::weak_ptr<Processor> (*i));
192                 }
193         }
194
195         boost::shared_ptr<Processor> nth_processor (uint32_t n) {
196                 Glib::RWLock::ReaderLock lm (_processor_lock);
197                 ProcessorList::iterator i;
198                 for (i = _processors.begin(); i != _processors.end() && n; ++i, --n) {}
199                 if (i == _processors.end()) {
200                         return boost::shared_ptr<Processor> ();
201                 } else {
202                         return *i;
203                 }
204         }
205
206         boost::shared_ptr<Processor> nth_plugin (uint32_t n);
207         boost::shared_ptr<Processor> nth_send (uint32_t n);
208
209         bool processor_is_prefader (boost::shared_ptr<Processor> p);
210
211         bool has_io_processor_named (const std::string&);
212         ChanCount max_processor_streams () const { return processor_max_streams; }
213
214         std::list<std::string> unknown_processors () const;
215
216         /* special processors */
217
218         boost::shared_ptr<InternalSend>     monitor_send() const { return _monitor_send; }
219         boost::shared_ptr<Delivery>         main_outs() const { return _main_outs; }
220         boost::shared_ptr<InternalReturn>   internal_return() const { return _intreturn; }
221         boost::shared_ptr<MonitorProcessor> monitor_control() const { return _monitor_control; }
222         boost::shared_ptr<Send>             internal_send_for (boost::shared_ptr<const Route> target) const;
223         void add_internal_return ();
224         void add_send_to_internal_return (InternalSend *);
225         void remove_send_from_internal_return (InternalSend *);
226         void listen_position_changed ();
227         boost::shared_ptr<CapturingProcessor> add_export_point(/* Add some argument for placement later */);
228
229         /** A record of the stream configuration at some point in the processor list.
230          * Used to return where and why an processor list configuration request failed.
231          */
232         struct ProcessorStreams {
233                 ProcessorStreams(size_t i=0, ChanCount c=ChanCount()) : index(i), count(c) {}
234
235                 uint32_t  index; ///< Index of processor where configuration failed
236                 ChanCount count; ///< Input requested of processor
237         };
238
239         int add_processor (boost::shared_ptr<Processor>, Placement placement, ProcessorStreams* err = 0, bool activation_allowed = true);
240         int add_processor (boost::shared_ptr<Processor>, ProcessorList::iterator iter, ProcessorStreams* err = 0, bool activation_allowed = true);
241         int add_processors (const ProcessorList&, boost::shared_ptr<Processor> before, ProcessorStreams* err = 0);
242         int remove_processor (boost::shared_ptr<Processor>, ProcessorStreams* err = 0);
243         int remove_processors (const ProcessorList&, ProcessorStreams* err = 0);
244         int reorder_processors (const ProcessorList& new_order, ProcessorStreams* err = 0);
245         void disable_processors (Placement);
246         void disable_processors ();
247         void disable_plugins (Placement);
248         void disable_plugins ();
249         void ab_plugins (bool forward);
250         void clear_processors (Placement);
251         void all_processors_flip();
252         void all_processors_active (Placement, bool state);
253
254         framecnt_t set_private_port_latencies (bool playback) const;
255         void       set_public_port_latencies (framecnt_t, bool playback) const;
256
257         framecnt_t   update_signal_latency();
258         virtual void set_latency_compensation (framecnt_t);
259
260         void set_user_latency (framecnt_t);
261         framecnt_t initial_delay() const { return _initial_delay; }
262         framecnt_t signal_latency() const { return _signal_latency; }
263
264         PBD::Signal0<void>       active_changed;
265         PBD::Signal0<void>       phase_invert_changed;
266         PBD::Signal0<void>       denormal_protection_changed;
267         PBD::Signal1<void,void*> listen_changed;
268         PBD::Signal2<void,bool,void*> solo_changed;
269         PBD::Signal1<void,void*> solo_safe_changed;
270         PBD::Signal1<void,void*> solo_isolated_changed;
271         PBD::Signal1<void,void*> comment_changed;
272         PBD::Signal1<void,void*> mute_changed;
273         PBD::Signal0<void>       mute_points_changed;
274
275         /** the processors have changed; the parameter indicates what changed */
276         PBD::Signal1<void,RouteProcessorChange> processors_changed;
277         PBD::Signal1<void,void*> record_enable_changed;
278         /** the metering point has changed */
279         PBD::Signal0<void>       meter_change;
280         PBD::Signal0<void>       signal_latency_changed;
281         PBD::Signal0<void>       initial_delay_changed;
282         PBD::Signal0<void>       order_key_changed;
283
284         /** Emitted with the process lock held */
285         PBD::Signal0<void>       io_changed;
286
287         /* gui's call this for their own purposes. */
288
289         PBD::Signal2<void,std::string,void*> gui_changed;
290
291         /* stateful */
292
293         XMLNode& get_state();
294         int set_state (const XMLNode&, int version);
295         virtual XMLNode& get_template();
296
297         XMLNode& get_processor_state ();
298         virtual void set_processor_state (const XMLNode&);
299
300         int save_as_template (const std::string& path, const std::string& name);
301
302         PBD::Signal1<void,void*> SelectedChanged;
303
304         int listen_via_monitor ();
305         int listen_via (boost::shared_ptr<Route>, Placement p);
306         void drop_listen (boost::shared_ptr<Route>);
307
308         /**
309          * return true if this route feeds the first argument via at least one
310          * (arbitrarily long) signal pathway.
311          */
312         bool feeds (boost::shared_ptr<Route>, bool* via_send_only = 0);
313
314         /**
315          * return true if this route feeds the first argument directly, via
316          * either its main outs or a send.
317          */
318         bool direct_feeds (boost::shared_ptr<Route>, bool* via_send_only = 0);
319
320         struct FeedRecord {
321                 boost::weak_ptr<Route> r;
322                 bool sends_only;
323
324                 FeedRecord (boost::shared_ptr<Route> rp, bool sendsonly)
325                 : r (rp)
326                 , sends_only (sendsonly) {}
327         };
328
329         struct FeedRecordCompare {
330                 bool operator() (const FeedRecord& a, const FeedRecord& b) const {
331                         return a.r < b.r;
332                 }
333         };
334
335         typedef std::set<FeedRecord,FeedRecordCompare> FedBy;
336
337         const FedBy& fed_by() const { return _fed_by; }
338         void clear_fed_by ();
339         bool add_fed_by (boost::shared_ptr<Route>, bool sends_only);
340         bool not_fed() const { return _fed_by.empty(); }
341
342         /* Controls (not all directly owned by the Route */
343
344         boost::shared_ptr<AutomationControl> get_control (const Evoral::Parameter& param);
345
346         class SoloControllable : public AutomationControl {
347         public:
348                 SoloControllable (std::string name, boost::shared_ptr<Route>);
349                 void set_value (double);
350                 double get_value () const;
351
352         private:
353                 boost::weak_ptr<Route> _route;
354         };
355
356         struct MuteControllable : public AutomationControl {
357         public:
358                 MuteControllable (std::string name, boost::shared_ptr<Route>);
359                 void set_value (double);
360                 double get_value () const;
361
362         private:
363                 boost::weak_ptr<Route> _route;
364         };
365
366         boost::shared_ptr<AutomationControl> solo_control() const {
367                 return _solo_control;
368         }
369
370         boost::shared_ptr<AutomationControl> mute_control() const {
371                 return _mute_control;
372         }
373
374         boost::shared_ptr<MuteMaster> mute_master() const {
375                 return _mute_master;
376         }
377
378         /* Route doesn't own these items, but sub-objects that it does own have them
379            and to make UI code a bit simpler, we provide direct access to them
380            here.
381         */
382
383         boost::shared_ptr<Panner> panner() const;  /* may return null */
384         boost::shared_ptr<PannerShell> panner_shell() const;
385         boost::shared_ptr<AutomationControl> gain_control() const;
386         boost::shared_ptr<Pannable> pannable() const;
387
388         void automation_snapshot (framepos_t now, bool force=false);
389         void protect_automation ();
390
391         void set_remote_control_id (uint32_t id, bool notify_class_listeners = true);
392         uint32_t remote_control_id () const;
393
394         /* for things concerned about *this* route's RID */
395
396         PBD::Signal0<void> RemoteControlIDChanged;
397
398         /* for things concerned about any route's RID changes */
399
400         static PBD::Signal0<void> RemoteControlIDChange;
401
402         void sync_order_keys (std::string const &);
403         static PBD::Signal1<void,std::string const &> SyncOrderKeys;
404
405   protected:
406         friend class Session;
407
408         void catch_up_on_solo_mute_override ();
409         void mod_solo_by_others_upstream (int32_t);
410         void mod_solo_by_others_downstream (int32_t);
411         bool has_external_redirects() const;
412         void curve_reallocate ();
413         void just_meter_input (framepos_t start_frame, framepos_t end_frame, pframes_t nframes);
414         virtual void set_block_size (pframes_t nframes);
415
416   protected:
417         framecnt_t check_initial_delay (framecnt_t, framecnt_t&);
418
419         void passthru (framepos_t start_frame, framepos_t end_frame,
420                         pframes_t nframes, int declick);
421
422         virtual void write_out_of_band_data (BufferSet& /* bufs */, framepos_t /* start_frame */, framepos_t /* end_frame */,
423                         framecnt_t /* nframes */) {}
424
425         virtual void process_output_buffers (BufferSet& bufs,
426                                              framepos_t start_frame, framepos_t end_frame,
427                                              pframes_t nframes, bool with_processors, int declick,
428                                              bool gain_automation_ok);
429
430         boost::shared_ptr<IO> _input;
431         boost::shared_ptr<IO> _output;
432
433         bool           _active;
434         framecnt_t     _signal_latency;
435         framecnt_t     _initial_delay;
436         framecnt_t     _roll_delay;
437
438         ProcessorList  _processors;
439         mutable Glib::RWLock   _processor_lock;
440         boost::shared_ptr<Delivery> _main_outs;
441         boost::shared_ptr<InternalSend> _monitor_send;
442         boost::shared_ptr<InternalReturn> _intreturn;
443         boost::shared_ptr<MonitorProcessor> _monitor_control;
444         boost::shared_ptr<Pannable> _pannable;
445
446         Flag           _flags;
447         int            _pending_declick;
448         MeterPoint     _meter_point;
449         boost::dynamic_bitset<> _phase_invert;
450         bool           _self_solo;
451         uint32_t       _soloed_by_others_upstream;
452         uint32_t       _soloed_by_others_downstream;
453         uint32_t       _solo_isolated;
454
455         bool           _denormal_protection;
456
457         bool _recordable : 1;
458         bool _silent : 1;
459         bool _declickable : 1;
460
461         boost::shared_ptr<SoloControllable> _solo_control;
462         boost::shared_ptr<MuteControllable> _mute_control;
463         boost::shared_ptr<MuteMaster> _mute_master;
464
465         std::string    _comment;
466         bool           _have_internal_generator;
467         bool           _solo_safe;
468         DataType       _default_type;
469         FedBy          _fed_by;
470
471         virtual ChanCount input_streams () const;
472
473   protected:
474         virtual XMLNode& state(bool);
475
476         int configure_processors (ProcessorStreams*);
477
478         void passthru_silence (framepos_t start_frame, framepos_t end_frame,
479                                pframes_t nframes, int declick);
480
481         void silence (framecnt_t);
482         void silence_unlocked (framecnt_t);
483
484         ChanCount processor_max_streams;
485         uint32_t _remote_control_id;
486
487         uint32_t pans_required() const;
488         ChanCount n_process_buffers ();
489
490         virtual bool should_monitor () const;
491         virtual void maybe_declick (BufferSet&, framecnt_t, int);
492
493         virtual int  _set_state (const XMLNode&, int, bool call_base);
494
495         boost::shared_ptr<Amp>       _amp;
496         boost::shared_ptr<PeakMeter> _meter;
497
498   private:
499         int _set_state_2X (const XMLNode&, int);
500         void set_processor_state_2X (XMLNodeList const &, int);
501
502         static uint32_t order_key_cnt;
503
504         typedef std::map<std::string, long> OrderKeys;
505         OrderKeys order_keys;
506
507         void input_change_handler (IOChange, void *src);
508         void output_change_handler (IOChange, void *src);
509
510         bool input_port_count_changing (ChanCount);
511
512         bool _in_configure_processors;
513
514         int configure_processors_unlocked (ProcessorStreams*);
515         std::list<std::pair<ChanCount, ChanCount> > try_configure_processors (ChanCount, ProcessorStreams *);
516         std::list<std::pair<ChanCount, ChanCount> > try_configure_processors_unlocked (ChanCount, ProcessorStreams *);
517
518         bool add_processor_from_xml_2X (const XMLNode&, int);
519
520         void placement_range (Placement p, ProcessorList::iterator& start, ProcessorList::iterator& end);
521
522         void set_self_solo (bool yn);
523         void set_mute_master_solo ();
524
525         void set_processor_positions ();
526         framecnt_t update_port_latencies (PortSet& ports, PortSet& feeders, bool playback, framecnt_t) const;
527
528         void setup_invisible_processors ();
529         void unpan ();
530
531         boost::shared_ptr<CapturingProcessor> _capturing_processor;
532
533         /** A handy class to keep processor state while we attempt a reconfiguration
534          *  that may fail.
535          */
536         class ProcessorState {
537         public:
538                 ProcessorState (Route* r)
539                         : _route (r)
540                         , _processors (r->_processors)
541                         , _processor_max_streams (r->processor_max_streams)
542                 { }
543
544                 void restore () {
545                         _route->_processors = _processors;
546                         _route->processor_max_streams = _processor_max_streams;
547                 }
548
549         private:
550                 /* this should perhaps be a shared_ptr, but ProcessorStates will
551                    not hang around long enough for it to matter.
552                 */
553                 Route* _route;
554                 ProcessorList _processors;
555                 ChanCount _processor_max_streams;
556         };
557
558         friend class ProcessorState;
559
560         /* no copy construction */
561         Route (Route const &);
562 };
563
564 } // namespace ARDOUR
565
566 #endif /* __ardour_route_h__ */