2 Copyright (C) 2000 Paul Davis
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.
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.
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.
21 #include "libardour-config.h"
29 #include "pbd/xml++.h"
30 #include "pbd/enumwriter.h"
31 #include "pbd/memento_command.h"
32 #include "pbd/stacktrace.h"
33 #include "pbd/convert.h"
34 #include "pbd/boost_debug.h"
36 #include "evoral/Curve.hpp"
38 #include "ardour/amp.h"
39 #include "ardour/audio_port.h"
40 #include "ardour/audioengine.h"
41 #include "ardour/buffer.h"
42 #include "ardour/buffer_set.h"
43 #include "ardour/configuration.h"
44 #include "ardour/cycle_timer.h"
45 #include "ardour/debug.h"
46 #include "ardour/delivery.h"
47 #include "ardour/dB.h"
48 #include "ardour/internal_send.h"
49 #include "ardour/internal_return.h"
50 #include "ardour/ladspa_plugin.h"
51 #include "ardour/meter.h"
52 #include "ardour/mix.h"
53 #include "ardour/monitor_processor.h"
54 #include "ardour/pannable.h"
55 #include "ardour/panner.h"
56 #include "ardour/panner_shell.h"
57 #include "ardour/plugin_insert.h"
58 #include "ardour/port.h"
59 #include "ardour/port_insert.h"
60 #include "ardour/processor.h"
61 #include "ardour/profile.h"
62 #include "ardour/route.h"
63 #include "ardour/route_group.h"
64 #include "ardour/send.h"
65 #include "ardour/session.h"
66 #include "ardour/timestamps.h"
67 #include "ardour/utils.h"
68 #include "ardour/graph.h"
69 #include "ardour/unknown_processor.h"
70 #include "ardour/capturing_processor.h"
75 using namespace ARDOUR
;
78 uint32_t Route::order_key_cnt
= 0;
79 PBD::Signal1
<void,string
const&> Route::SyncOrderKeys
;
80 PBD::Signal0
<void> Route::RemoteControlIDChange
;
82 Route::Route (Session
& sess
, string name
, Flag flg
, DataType default_type
)
83 : SessionObject (sess
, name
)
85 , GraphNode( sess
.route_graph
)
91 , _pending_declick (true)
92 , _meter_point (MeterPostFader
)
94 , _soloed_by_others_upstream (0)
95 , _soloed_by_others_downstream (0)
97 , _denormal_protection (false)
100 , _declickable (false)
101 , _mute_master (new MuteMaster (sess
, name
))
102 , _have_internal_generator (false)
104 , _default_type (default_type
)
105 , _remote_control_id (0)
106 , _in_configure_processors (false)
108 processor_max_streams
.reset();
109 order_keys
[N_("signal")] = order_key_cnt
++;
115 /* add standard controls */
117 _solo_control
.reset (new SoloControllable (X_("solo"), shared_from_this ()));
118 _mute_control
.reset (new MuteControllable (X_("mute"), shared_from_this ()));
120 _solo_control
->set_flags (Controllable::Flag (_solo_control
->flags() | Controllable::Toggle
));
121 _mute_control
->set_flags (Controllable::Flag (_mute_control
->flags() | Controllable::Toggle
));
123 add_control (_solo_control
);
124 add_control (_mute_control
);
128 if (!(_flags
& Route::MonitorOut
)) {
129 Pannable
* p
= new Pannable (_session
);
130 #ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
131 boost_debug_shared_ptr_mark_interesting (p
, "Pannable");
136 /* input and output objects */
138 _input
.reset (new IO (_session
, _name
, IO::Input
, _default_type
));
139 _output
.reset (new IO (_session
, _name
, IO::Output
, _default_type
));
141 _input
->changed
.connect_same_thread (*this, boost::bind (&Route::input_change_handler
, this, _1
, _2
));
142 _input
->PortCountChanging
.connect_same_thread (*this, boost::bind (&Route::input_port_count_changing
, this, _1
));
144 /* add amp processor */
146 _amp
.reset (new Amp (_session
));
147 add_processor (_amp
, PostFader
);
149 /* create standard processors: meter, main outs, monitor out;
150 they will be added to _processors by setup_invisible_processors ()
153 _meter
.reset (new PeakMeter (_session
));
154 _meter
->set_display_to_user (false);
157 _main_outs
.reset (new Delivery (_session
, _output
, _pannable
, _mute_master
, _name
, Delivery::Main
));
158 _main_outs
->activate ();
161 /* where we listen to tracks */
162 _intreturn
.reset (new InternalReturn (_session
));
163 _intreturn
->activate ();
165 /* the thing that provides proper control over a control/monitor/listen bus
166 (such as per-channel cut, dim, solo, invert, etc).
168 _monitor_control
.reset (new MonitorProcessor (_session
));
169 _monitor_control
->activate ();
172 if (is_master() || is_monitor() || is_hidden()) {
173 _mute_master
->set_solo_ignore (true);
176 /* now that we have _meter, its safe to connect to this */
178 Metering::Meter
.connect_same_thread (*this, (boost::bind (&Route::meter
, this)));
181 /* run a configure so that the invisible processors get set up */
182 Glib::Mutex::Lock
lm (AudioEngine::instance()->process_lock ());
183 configure_processors (0);
191 DEBUG_TRACE (DEBUG::Destruction
, string_compose ("route %1 destructor\n", _name
));
193 /* do this early so that we don't get incoming signals as we are going through destruction
198 /* don't use clear_processors here, as it depends on the session which may
199 be half-destroyed by now
202 Glib::RWLock::WriterLock
lm (_processor_lock
);
203 for (ProcessorList::iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
204 (*i
)->drop_references ();
207 _processors
.clear ();
211 Route::set_remote_control_id (uint32_t id
, bool notify_class_listeners
)
213 if (id
!= _remote_control_id
) {
214 _remote_control_id
= id
;
215 RemoteControlIDChanged ();
216 if (notify_class_listeners
) {
217 RemoteControlIDChange ();
223 Route::remote_control_id() const
225 return _remote_control_id
;
229 Route::order_key (std::string
const & name
) const
231 OrderKeys::const_iterator i
= order_keys
.find (name
);
232 if (i
== order_keys
.end()) {
240 Route::set_order_key (std::string
const & name
, int32_t n
)
242 bool changed
= false;
244 /* This method looks more complicated than it should, but
245 it's important that we don't emit order_key_changed unless
246 it actually has, as expensive things happen on receipt of that
250 if (order_keys
.find(name
) == order_keys
.end() || order_keys
[name
] != n
) {
251 order_keys
[name
] = n
;
255 if (Config
->get_sync_all_route_ordering()) {
256 for (OrderKeys::iterator x
= order_keys
.begin(); x
!= order_keys
.end(); ++x
) {
257 if (x
->second
!= n
) {
265 order_key_changed (); /* EMIT SIGNAL */
266 _session
.set_dirty ();
270 /** Set all order keys to be the same as that for `base', if such a key
271 * exists in this route.
272 * @param base Base key.
275 Route::sync_order_keys (std::string
const & base
)
277 if (order_keys
.empty()) {
281 OrderKeys::iterator i
;
284 if ((i
= order_keys
.find (base
)) == order_keys
.end()) {
285 /* key doesn't exist, use the first existing key (during session initialization) */
286 i
= order_keys
.begin();
290 /* key exists - use it and reset all others (actually, itself included) */
292 i
= order_keys
.begin();
295 bool changed
= false;
297 for (; i
!= order_keys
.end(); ++i
) {
298 if (i
->second
!= key
) {
305 order_key_changed (); /* EMIT SIGNAL */
310 Route::ensure_track_or_route_name(string name
, Session
&session
)
312 string newname
= name
;
314 while (!session
.io_name_is_legal (newname
)) {
315 newname
= bump_name_once (newname
, '.');
323 Route::inc_gain (gain_t fraction
, void *src
)
325 _amp
->inc_gain (fraction
, src
);
329 Route::set_gain (gain_t val
, void *src
)
331 if (src
!= 0 && _route_group
&& src
!= _route_group
&& _route_group
->is_active() && _route_group
->is_gain()) {
333 if (_route_group
->is_relative()) {
335 gain_t usable_gain
= _amp
->gain();
336 if (usable_gain
< 0.000001f
) {
337 usable_gain
= 0.000001f
;
341 if (delta
< 0.000001f
) {
345 delta
-= usable_gain
;
350 gain_t factor
= delta
/ usable_gain
;
353 factor
= _route_group
->get_max_factor(factor
);
354 if (factor
== 0.0f
) {
355 _amp
->gain_control()->Changed(); /* EMIT SIGNAL */
359 factor
= _route_group
->get_min_factor(factor
);
360 if (factor
== 0.0f
) {
361 _amp
->gain_control()->Changed(); /* EMIT SIGNAL */
366 _route_group
->foreach_route (boost::bind (&Route::inc_gain
, _1
, factor
, _route_group
));
370 _route_group
->foreach_route (boost::bind (&Route::set_gain
, _1
, val
, _route_group
));
376 if (val
== _amp
->gain()) {
380 _amp
->set_gain (val
, src
);
384 Route::maybe_declick (BufferSet
&, framecnt_t
, int)
386 /* this is the "bus" implementation and they never declick.
391 /** Process this route for one (sub) cycle (process thread)
393 * @param bufs Scratch buffers to use for the signal path
394 * @param start_frame Initial transport frame
395 * @param end_frame Final transport frame
396 * @param nframes Number of frames to output (to ports)
398 * Note that (end_frame - start_frame) may not be equal to nframes when the
399 * transport speed isn't 1.0 (eg varispeed).
402 Route::process_output_buffers (BufferSet
& bufs
,
403 framepos_t start_frame
, framepos_t end_frame
, pframes_t nframes
,
404 bool /*with_processors*/, int declick
,
405 bool gain_automation_ok
)
407 bool monitor
= should_monitor ();
409 bufs
.is_silent (false);
411 /* figure out if we're going to use gain automation */
412 if (gain_automation_ok
) {
413 _amp
->setup_gain_automation (start_frame
, end_frame
, nframes
);
415 _amp
->apply_gain_automation (false);
418 /* tell main outs what to do about monitoring */
419 _main_outs
->no_outs_cuz_we_no_monitor (!monitor
);
422 /* -------------------------------------------------------------------------------------------
423 GLOBAL DECLICK (for transport changes etc.)
424 ----------------------------------------------------------------------------------------- */
426 maybe_declick (bufs
, nframes
, declick
);
427 _pending_declick
= 0;
429 /* -------------------------------------------------------------------------------------------
430 DENORMAL CONTROL/PHASE INVERT
431 ----------------------------------------------------------------------------------------- */
433 if (_phase_invert
.any ()) {
437 if (_denormal_protection
|| Config
->get_denormal_protection()) {
439 for (BufferSet::audio_iterator i
= bufs
.audio_begin(); i
!= bufs
.audio_end(); ++i
, ++chn
) {
440 Sample
* const sp
= i
->data();
442 if (_phase_invert
[chn
]) {
443 for (pframes_t nx
= 0; nx
< nframes
; ++nx
) {
448 for (pframes_t nx
= 0; nx
< nframes
; ++nx
) {
456 for (BufferSet::audio_iterator i
= bufs
.audio_begin(); i
!= bufs
.audio_end(); ++i
, ++chn
) {
457 Sample
* const sp
= i
->data();
459 if (_phase_invert
[chn
]) {
460 for (pframes_t nx
= 0; nx
< nframes
; ++nx
) {
469 if (_denormal_protection
|| Config
->get_denormal_protection()) {
471 for (BufferSet::audio_iterator i
= bufs
.audio_begin(); i
!= bufs
.audio_end(); ++i
) {
472 Sample
* const sp
= i
->data();
473 for (pframes_t nx
= 0; nx
< nframes
; ++nx
) {
481 /* -------------------------------------------------------------------------------------------
483 ----------------------------------------------------------------------------------------- */
485 for (ProcessorList::iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
487 if (boost::dynamic_pointer_cast
<UnknownProcessor
> (*i
)) {
492 /* if it has any inputs, make sure they match */
493 if ((*i
)->input_streams() != ChanCount::ZERO
) {
494 if (bufs
.count() != (*i
)->input_streams()) {
495 cerr
<< _name
<< " bufs = " << bufs
.count()
496 << " input for " << (*i
)->name() << " = " << (*i
)->input_streams()
502 /* should we NOT run plugins here if the route is inactive?
503 do we catch route != active somewhere higher?
506 (*i
)->run (bufs
, start_frame
, end_frame
, nframes
, *i
!= _processors
.back());
507 bufs
.set_count ((*i
)->output_streams());
512 Route::n_process_buffers ()
514 return max (_input
->n_ports(), processor_max_streams
);
518 Route::passthru (framepos_t start_frame
, framepos_t end_frame
, pframes_t nframes
, int declick
)
520 BufferSet
& bufs
= _session
.get_scratch_buffers (n_process_buffers());
524 assert (bufs
.available() >= input_streams());
526 if (_input
->n_ports() == ChanCount::ZERO
) {
527 silence_unlocked (nframes
);
530 bufs
.set_count (input_streams());
532 if (is_monitor() && _session
.listening() && !_session
.is_auditioning()) {
534 /* control/monitor bus ignores input ports when something is
535 feeding the listen "stream". data will "arrive" into the
536 route from the intreturn processor element.
538 bufs
.silence (nframes
, 0);
542 for (DataType::iterator t
= DataType::begin(); t
!= DataType::end(); ++t
) {
544 BufferSet::iterator o
= bufs
.begin(*t
);
545 PortSet
& ports (_input
->ports());
547 for (PortSet::iterator i
= ports
.begin(*t
); i
!= ports
.end(*t
); ++i
, ++o
) {
548 o
->read_from (i
->get_buffer(nframes
), nframes
);
553 write_out_of_band_data (bufs
, start_frame
, end_frame
, nframes
);
554 process_output_buffers (bufs
, start_frame
, end_frame
, nframes
, true, declick
, true);
558 Route::passthru_silence (framepos_t start_frame
, framepos_t end_frame
, pframes_t nframes
, int declick
)
560 BufferSet
& bufs (_session
.get_silent_buffers (n_process_buffers()));
561 bufs
.set_count (_input
->n_ports());
562 write_out_of_band_data (bufs
, start_frame
, end_frame
, nframes
);
563 process_output_buffers (bufs
, start_frame
, end_frame
, nframes
, true, declick
, false);
567 Route::set_listen (bool yn
, void* src
)
573 if (_route_group
&& src
!= _route_group
&& _route_group
->is_active() && _route_group
->is_solo()) {
574 _route_group
->foreach_route (boost::bind (&Route::set_listen
, _1
, yn
, _route_group
));
579 if (yn
!= _monitor_send
->active()) {
581 _monitor_send
->activate ();
582 _mute_master
->set_soloed (true);
584 _monitor_send
->deactivate ();
585 _mute_master
->set_soloed (false);
588 listen_changed (src
); /* EMIT SIGNAL */
594 Route::listening_via_monitor () const
597 return _monitor_send
->active ();
604 Route::set_solo_safe (bool yn
, void *src
)
606 if (_solo_safe
!= yn
) {
608 solo_safe_changed (src
);
613 Route::solo_safe() const
619 Route::set_solo (bool yn
, void *src
)
625 if (_route_group
&& src
!= _route_group
&& _route_group
->is_active() && _route_group
->is_solo()) {
626 _route_group
->foreach_route (boost::bind (&Route::set_solo
, _1
, yn
, _route_group
));
630 if (self_soloed() != yn
) {
632 set_mute_master_solo ();
633 solo_changed (true, src
); /* EMIT SIGNAL */
634 _solo_control
->Changed (); /* EMIT SIGNAL */
639 Route::set_self_solo (bool yn
)
645 Route::mod_solo_by_others_upstream (int32_t delta
)
651 uint32_t old_sbu
= _soloed_by_others_upstream
;
654 if (_soloed_by_others_upstream
>= (uint32_t) abs (delta
)) {
655 _soloed_by_others_upstream
+= delta
;
657 _soloed_by_others_upstream
= 0;
660 _soloed_by_others_upstream
+= delta
;
663 DEBUG_TRACE (DEBUG::Solo
, string_compose (
664 "%1 SbU delta %2 = %3 old = %4 sbd %5 ss %6 exclusive %7\n",
665 name(), delta
, _soloed_by_others_upstream
, old_sbu
,
666 _soloed_by_others_downstream
, _self_solo
, Config
->get_exclusive_solo()));
668 /* push the inverse solo change to everything that feeds us.
670 This is important for solo-within-group. When we solo 1 track out of N that
671 feed a bus, that track will cause mod_solo_by_upstream (+1) to be called
672 on the bus. The bus then needs to call mod_solo_by_downstream (-1) on all
673 tracks that feed it. This will silence them if they were audible because
674 of a bus solo, but the newly soloed track will still be audible (because
677 but .. do this only when we are being told to solo-by-upstream (i.e delta = +1),
681 if ((_self_solo
|| _soloed_by_others_downstream
) &&
682 ((old_sbu
== 0 && _soloed_by_others_upstream
> 0) ||
683 (old_sbu
> 0 && _soloed_by_others_upstream
== 0))) {
685 if (delta
> 0 || !Config
->get_exclusive_solo()) {
686 DEBUG_TRACE (DEBUG::Solo
, "\t ... INVERT push\n");
687 for (FedBy::iterator i
= _fed_by
.begin(); i
!= _fed_by
.end(); ++i
) {
688 boost::shared_ptr
<Route
> sr
= i
->r
.lock();
690 sr
->mod_solo_by_others_downstream (-delta
);
696 set_mute_master_solo ();
697 solo_changed (false, this);
701 Route::mod_solo_by_others_downstream (int32_t delta
)
708 if (_soloed_by_others_downstream
>= (uint32_t) abs (delta
)) {
709 _soloed_by_others_downstream
+= delta
;
711 _soloed_by_others_downstream
= 0;
714 _soloed_by_others_downstream
+= delta
;
717 DEBUG_TRACE (DEBUG::Solo
, string_compose ("%1 SbD delta %2 = %3\n", name(), delta
, _soloed_by_others_downstream
));
719 set_mute_master_solo ();
720 solo_changed (false, this);
724 Route::set_mute_master_solo ()
726 _mute_master
->set_soloed (self_soloed() || soloed_by_others_downstream() || soloed_by_others_upstream());
730 Route::set_solo_isolated (bool yn
, void *src
)
732 if (is_master() || is_monitor() || is_hidden()) {
736 if (_route_group
&& src
!= _route_group
&& _route_group
->is_active() && _route_group
->is_solo()) {
737 _route_group
->foreach_route (boost::bind (&Route::set_solo_isolated
, _1
, yn
, _route_group
));
741 /* forward propagate solo-isolate status to everything fed by this route, but not those via sends only */
743 boost::shared_ptr
<RouteList
> routes
= _session
.get_routes ();
744 for (RouteList::iterator i
= routes
->begin(); i
!= routes
->end(); ++i
) {
746 if ((*i
).get() == this || (*i
)->is_master() || (*i
)->is_monitor() || (*i
)->is_hidden()) {
751 bool does_feed
= direct_feeds (*i
, &sends_only
); // we will recurse anyway, so don't use ::feeds()
753 if (does_feed
&& !sends_only
) {
754 (*i
)->set_solo_isolated (yn
, (*i
)->route_group());
758 /* XXX should we back-propagate as well? (April 2010: myself and chris goddard think not) */
760 bool changed
= false;
763 if (_solo_isolated
== 0) {
764 _mute_master
->set_solo_ignore (true);
769 if (_solo_isolated
> 0) {
771 if (_solo_isolated
== 0) {
772 _mute_master
->set_solo_ignore (false);
779 solo_isolated_changed (src
);
784 Route::solo_isolated () const
786 return _solo_isolated
> 0;
790 Route::set_mute_points (MuteMaster::MutePoint mp
)
792 _mute_master
->set_mute_points (mp
);
793 mute_points_changed (); /* EMIT SIGNAL */
795 if (_mute_master
->muted_by_self()) {
796 mute_changed (this); /* EMIT SIGNAL */
797 _mute_control
->Changed (); /* EMIT SIGNAL */
802 Route::set_mute (bool yn
, void *src
)
804 if (_route_group
&& src
!= _route_group
&& _route_group
->is_active() && _route_group
->is_mute()) {
805 _route_group
->foreach_route (boost::bind (&Route::set_mute
, _1
, yn
, _route_group
));
810 _mute_master
->set_muted_by_self (yn
);
811 mute_changed (src
); /* EMIT SIGNAL */
812 _mute_control
->Changed (); /* EMIT SIGNAL */
817 Route::muted () const
819 return _mute_master
->muted_by_self();
824 dump_processors(const string
& name
, const list
<boost::shared_ptr
<Processor
> >& procs
)
826 cerr
<< name
<< " {" << endl
;
827 for (list
<boost::shared_ptr
<Processor
> >::const_iterator p
= procs
.begin();
828 p
!= procs
.end(); ++p
) {
829 cerr
<< "\t" << (*p
)->name() << " ID = " << (*p
)->id() << " @ " << (*p
) << endl
;
836 Route::add_processor (boost::shared_ptr
<Processor
> processor
, Placement placement
, ProcessorStreams
* err
, bool activation_allowed
)
838 ProcessorList::iterator loc
;
840 /* XXX this is not thread safe - we don't hold the lock across determining the iter
841 to add before and actually doing the insertion. dammit.
844 if (placement
== PreFader
) {
845 /* generic pre-fader: insert immediately before the amp */
846 loc
= find (_processors
.begin(), _processors
.end(), _amp
);
848 /* generic post-fader: insert right before the main outs */
849 loc
= find (_processors
.begin(), _processors
.end(), _main_outs
);
852 return add_processor (processor
, loc
, err
, activation_allowed
);
856 /** Add a processor to the route.
857 * @param iter an iterator in _processors; the new processor will be inserted immediately before this location.
860 Route::add_processor (boost::shared_ptr
<Processor
> processor
, ProcessorList::iterator iter
, ProcessorStreams
* err
, bool activation_allowed
)
862 assert (processor
!= _meter
);
863 assert (processor
!= _main_outs
);
865 DEBUG_TRACE (DEBUG::Processors
, string_compose (
866 "%1 adding processor %2\n", name(), processor
->name()));
868 if (!_session
.engine().connected() || !processor
) {
873 Glib::RWLock::WriterLock
lm (_processor_lock
);
874 ProcessorState
pstate (this);
876 boost::shared_ptr
<PluginInsert
> pi
;
877 boost::shared_ptr
<PortInsert
> porti
;
879 ProcessorList::iterator loc
= find(_processors
.begin(), _processors
.end(), processor
);
881 if (processor
== _amp
) {
882 // Ensure only one amp is in the list at any time
883 if (loc
!= _processors
.end()) {
884 if (iter
== loc
) { // Already in place, do nothing
886 } else { // New position given, relocate
887 _processors
.erase (loc
);
892 if (loc
!= _processors
.end()) {
893 cerr
<< "ERROR: Processor added to route twice!" << endl
;
900 _processors
.insert (loc
, processor
);
902 // Set up processor list channels. This will set processor->[input|output]_streams(),
903 // configure redirect ports properly, etc.
906 Glib::Mutex::Lock
lm (AudioEngine::instance()->process_lock ());
908 if (configure_processors_unlocked (err
)) {
910 configure_processors_unlocked (0); // it worked before we tried to add it ...
915 if ((pi
= boost::dynamic_pointer_cast
<PluginInsert
>(processor
)) != 0) {
917 if (pi
->has_no_inputs ()) {
918 /* generator plugin */
919 _have_internal_generator
= true;
924 if (activation_allowed
) {
925 processor
->activate ();
928 processor
->ActiveChanged
.connect_same_thread (*this, boost::bind (&Session::update_latency_compensation
, &_session
, false));
930 _output
->set_user_latency (0);
933 processors_changed (RouteProcessorChange ()); /* EMIT SIGNAL */
934 set_processor_positions ();
940 Route::add_processor_from_xml_2X (const XMLNode
& node
, int version
)
942 const XMLProperty
*prop
;
945 boost::shared_ptr
<Processor
> processor
;
947 /* bit of a hack: get the `placement' property from the <Redirect> tag here
948 so that we can add the processor in the right place (pre/post-fader)
951 XMLNodeList
const & children
= node
.children ();
952 XMLNodeList::const_iterator i
= children
.begin ();
954 while (i
!= children
.end() && (*i
)->name() != X_("Redirect")) {
958 Placement placement
= PreFader
;
960 if (i
!= children
.end()) {
961 if ((prop
= (*i
)->property (X_("placement"))) != 0) {
962 placement
= Placement (string_2_enum (prop
->value(), placement
));
966 if (node
.name() == "Insert") {
968 if ((prop
= node
.property ("type")) != 0) {
970 if (prop
->value() == "ladspa" || prop
->value() == "Ladspa" ||
971 prop
->value() == "lv2" ||
972 prop
->value() == "vst" ||
973 prop
->value() == "audiounit") {
975 processor
.reset (new PluginInsert (_session
));
979 processor
.reset (new PortInsert (_session
, _pannable
, _mute_master
));
984 } else if (node
.name() == "Send") {
986 processor
.reset (new Send (_session
, _pannable
, _mute_master
));
990 error
<< string_compose(_("unknown Processor type \"%1\"; ignored"), node
.name()) << endmsg
;
994 if (processor
->set_state (node
, version
)) {
998 return (add_processor (processor
, placement
) == 0);
1001 catch (failed_constructor
&err
) {
1002 warning
<< _("processor could not be created. Ignored.") << endmsg
;
1008 Route::add_processors (const ProcessorList
& others
, boost::shared_ptr
<Processor
> before
, ProcessorStreams
* err
)
1010 /* NOTE: this is intended to be used ONLY when copying
1011 processors from another Route. Hence the subtle
1012 differences between this and ::add_processor()
1015 ProcessorList::iterator loc
;
1018 loc
= find(_processors
.begin(), _processors
.end(), before
);
1020 /* nothing specified - at end */
1021 loc
= _processors
.end ();
1024 if (!_session
.engine().connected()) {
1028 if (others
.empty()) {
1033 Glib::RWLock::WriterLock
lm (_processor_lock
);
1034 ProcessorState
pstate (this);
1036 for (ProcessorList::const_iterator i
= others
.begin(); i
!= others
.end(); ++i
) {
1042 boost::shared_ptr
<PluginInsert
> pi
;
1044 if ((pi
= boost::dynamic_pointer_cast
<PluginInsert
>(*i
)) != 0) {
1048 _processors
.insert (loc
, *i
);
1050 if ((*i
)->active()) {
1055 Glib::Mutex::Lock
lm (AudioEngine::instance()->process_lock ());
1056 if (configure_processors_unlocked (err
)) {
1058 configure_processors_unlocked (0); // it worked before we tried to add it ...
1063 (*i
)->ActiveChanged
.connect_same_thread (*this, boost::bind (&Session::update_latency_compensation
, &_session
, false));
1066 for (ProcessorList::const_iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
1067 boost::shared_ptr
<PluginInsert
> pi
;
1069 if ((pi
= boost::dynamic_pointer_cast
<PluginInsert
>(*i
)) != 0) {
1070 if (pi
->has_no_inputs ()) {
1071 _have_internal_generator
= true;
1077 _output
->set_user_latency (0);
1080 processors_changed (RouteProcessorChange ()); /* EMIT SIGNAL */
1081 set_processor_positions ();
1087 Route::placement_range(Placement p
, ProcessorList::iterator
& start
, ProcessorList::iterator
& end
)
1089 if (p
== PreFader
) {
1090 start
= _processors
.begin();
1091 end
= find(_processors
.begin(), _processors
.end(), _amp
);
1093 start
= find(_processors
.begin(), _processors
.end(), _amp
);
1095 end
= _processors
.end();
1099 /** Turn off all processors with a given placement
1100 * @param p Placement of processors to disable
1103 Route::disable_processors (Placement p
)
1105 Glib::RWLock::ReaderLock
lm (_processor_lock
);
1107 ProcessorList::iterator start
, end
;
1108 placement_range(p
, start
, end
);
1110 for (ProcessorList::iterator i
= start
; i
!= end
; ++i
) {
1111 (*i
)->deactivate ();
1114 _session
.set_dirty ();
1117 /** Turn off all redirects
1120 Route::disable_processors ()
1122 Glib::RWLock::ReaderLock
lm (_processor_lock
);
1124 for (ProcessorList::iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
1125 (*i
)->deactivate ();
1128 _session
.set_dirty ();
1131 /** Turn off all redirects with a given placement
1132 * @param p Placement of redirects to disable
1135 Route::disable_plugins (Placement p
)
1137 Glib::RWLock::ReaderLock
lm (_processor_lock
);
1139 ProcessorList::iterator start
, end
;
1140 placement_range(p
, start
, end
);
1142 for (ProcessorList::iterator i
= start
; i
!= end
; ++i
) {
1143 if (boost::dynamic_pointer_cast
<PluginInsert
> (*i
)) {
1144 (*i
)->deactivate ();
1148 _session
.set_dirty ();
1151 /** Turn off all plugins
1154 Route::disable_plugins ()
1156 Glib::RWLock::ReaderLock
lm (_processor_lock
);
1158 for (ProcessorList::iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
1159 if (boost::dynamic_pointer_cast
<PluginInsert
> (*i
)) {
1160 (*i
)->deactivate ();
1164 _session
.set_dirty ();
1169 Route::ab_plugins (bool forward
)
1171 Glib::RWLock::ReaderLock
lm (_processor_lock
);
1175 /* forward = turn off all active redirects, and mark them so that the next time
1176 we go the other way, we will revert them
1179 for (ProcessorList::iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
1180 if (!boost::dynamic_pointer_cast
<PluginInsert
> (*i
)) {
1184 if ((*i
)->active()) {
1185 (*i
)->deactivate ();
1186 (*i
)->set_next_ab_is_active (true);
1188 (*i
)->set_next_ab_is_active (false);
1194 /* backward = if the redirect was marked to go active on the next ab, do so */
1196 for (ProcessorList::iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
1198 if (!boost::dynamic_pointer_cast
<PluginInsert
> (*i
)) {
1202 if ((*i
)->get_next_ab_is_active()) {
1205 (*i
)->deactivate ();
1210 _session
.set_dirty ();
1214 /** Remove processors with a given placement.
1215 * @param p Placement of processors to remove.
1218 Route::clear_processors (Placement p
)
1220 if (!_session
.engine().connected()) {
1224 bool already_deleting
= _session
.deletion_in_progress();
1225 if (!already_deleting
) {
1226 _session
.set_deletion_in_progress();
1230 Glib::RWLock::WriterLock
lm (_processor_lock
);
1231 ProcessorList new_list
;
1232 ProcessorStreams err
;
1233 bool seen_amp
= false;
1235 for (ProcessorList::iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
1241 if ((*i
) == _amp
|| (*i
) == _meter
|| (*i
) == _main_outs
) {
1243 /* you can't remove these */
1245 new_list
.push_back (*i
);
1252 new_list
.push_back (*i
);
1255 (*i
)->drop_references ();
1263 (*i
)->drop_references ();
1266 new_list
.push_back (*i
);
1273 _processors
= new_list
;
1276 Glib::Mutex::Lock
lm (AudioEngine::instance()->process_lock ());
1277 configure_processors_unlocked (&err
); // this can't fail
1281 processor_max_streams
.reset();
1282 _have_internal_generator
= false;
1283 processors_changed (RouteProcessorChange ()); /* EMIT SIGNAL */
1284 set_processor_positions ();
1286 if (!already_deleting
) {
1287 _session
.clear_deletion_in_progress();
1292 Route::remove_processor (boost::shared_ptr
<Processor
> processor
, ProcessorStreams
* err
)
1294 /* these can never be removed */
1296 if (processor
== _amp
|| processor
== _meter
|| processor
== _main_outs
) {
1300 if (!_session
.engine().connected()) {
1304 processor_max_streams
.reset();
1307 Glib::RWLock::WriterLock
lm (_processor_lock
);
1308 ProcessorState
pstate (this);
1310 ProcessorList::iterator i
;
1311 bool removed
= false;
1313 for (i
= _processors
.begin(); i
!= _processors
.end(); ) {
1314 if (*i
== processor
) {
1316 /* move along, see failure case for configure_processors()
1317 where we may need to reconfigure the processor.
1320 /* stop redirects that send signals to JACK ports
1321 from causing noise as a result of no longer being
1325 boost::shared_ptr
<IOProcessor
> iop
;
1327 if ((iop
= boost::dynamic_pointer_cast
<IOProcessor
> (*i
)) != 0) {
1329 iop
->input()->disconnect (this);
1331 if (iop
->output()) {
1332 iop
->output()->disconnect (this);
1336 i
= _processors
.erase (i
);
1344 _output
->set_user_latency (0);
1353 Glib::Mutex::Lock
lm (AudioEngine::instance()->process_lock ());
1355 if (configure_processors_unlocked (err
)) {
1357 /* we know this will work, because it worked before :) */
1358 configure_processors_unlocked (0);
1363 _have_internal_generator
= false;
1365 for (i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
1366 boost::shared_ptr
<PluginInsert
> pi
;
1368 if ((pi
= boost::dynamic_pointer_cast
<PluginInsert
>(*i
)) != 0) {
1369 if (pi
->has_no_inputs ()) {
1370 _have_internal_generator
= true;
1377 processor
->drop_references ();
1378 processors_changed (RouteProcessorChange ()); /* EMIT SIGNAL */
1379 set_processor_positions ();
1385 Route::remove_processors (const ProcessorList
& to_be_deleted
, ProcessorStreams
* err
)
1387 ProcessorList deleted
;
1389 if (!_session
.engine().connected()) {
1393 processor_max_streams
.reset();
1396 Glib::RWLock::WriterLock
lm (_processor_lock
);
1397 ProcessorState
pstate (this);
1399 ProcessorList::iterator i
;
1400 boost::shared_ptr
<Processor
> processor
;
1402 for (i
= _processors
.begin(); i
!= _processors
.end(); ) {
1406 /* these can never be removed */
1408 if (processor
== _amp
|| processor
== _meter
|| processor
== _main_outs
) {
1413 /* see if its in the list of processors to delete */
1415 if (find (to_be_deleted
.begin(), to_be_deleted
.end(), processor
) == to_be_deleted
.end()) {
1420 /* stop IOProcessors that send to JACK ports
1421 from causing noise as a result of no longer being
1425 boost::shared_ptr
<IOProcessor
> iop
;
1427 if ((iop
= boost::dynamic_pointer_cast
<IOProcessor
> (processor
)) != 0) {
1431 deleted
.push_back (processor
);
1432 i
= _processors
.erase (i
);
1435 if (deleted
.empty()) {
1436 /* none of those in the requested list were found */
1440 _output
->set_user_latency (0);
1443 Glib::Mutex::Lock
lm (AudioEngine::instance()->process_lock ());
1445 if (configure_processors_unlocked (err
)) {
1447 /* we know this will work, because it worked before :) */
1448 configure_processors_unlocked (0);
1453 _have_internal_generator
= false;
1455 for (i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
1456 boost::shared_ptr
<PluginInsert
> pi
;
1458 if ((pi
= boost::dynamic_pointer_cast
<PluginInsert
>(*i
)) != 0) {
1459 if (pi
->has_no_inputs ()) {
1460 _have_internal_generator
= true;
1467 /* now try to do what we need to so that those that were removed will be deleted */
1469 for (ProcessorList::iterator i
= deleted
.begin(); i
!= deleted
.end(); ++i
) {
1470 (*i
)->drop_references ();
1473 processors_changed (RouteProcessorChange ()); /* EMIT SIGNAL */
1474 set_processor_positions ();
1479 /** Caller must hold process lock */
1481 Route::configure_processors (ProcessorStreams
* err
)
1483 assert (!AudioEngine::instance()->process_lock().trylock());
1485 if (!_in_configure_processors
) {
1486 Glib::RWLock::WriterLock
lm (_processor_lock
);
1487 return configure_processors_unlocked (err
);
1494 Route::input_streams () const
1496 return _input
->n_ports ();
1499 list
<pair
<ChanCount
, ChanCount
> >
1500 Route::try_configure_processors (ChanCount in
, ProcessorStreams
* err
)
1502 Glib::RWLock::ReaderLock
lm (_processor_lock
);
1504 return try_configure_processors_unlocked (in
, err
);
1507 list
<pair
<ChanCount
, ChanCount
> >
1508 Route::try_configure_processors_unlocked (ChanCount in
, ProcessorStreams
* err
)
1510 // Check each processor in order to see if we can configure as requested
1512 list
<pair
<ChanCount
, ChanCount
> > configuration
;
1515 DEBUG_TRACE (DEBUG::Processors
, string_compose ("%1: configure processors\n", _name
));
1516 DEBUG_TRACE (DEBUG::Processors
, "{\n");
1518 for (ProcessorList::iterator p
= _processors
.begin(); p
!= _processors
.end(); ++p
, ++index
) {
1520 if (boost::dynamic_pointer_cast
<UnknownProcessor
> (*p
)) {
1521 DEBUG_TRACE (DEBUG::Processors
, "--- CONFIGURE ABORTED due to unknown processor.\n");
1525 if ((*p
)->can_support_io_configuration(in
, out
)) {
1526 DEBUG_TRACE (DEBUG::Processors
, string_compose ("\t%1 ID=%2 in=%3 out=%4\n",(*p
)->name(), (*p
)->id(), in
, out
));
1527 configuration
.push_back(make_pair(in
, out
));
1534 DEBUG_TRACE (DEBUG::Processors
, "---- CONFIGURATION FAILED.\n");
1535 DEBUG_TRACE (DEBUG::Processors
, string_compose ("---- %1 cannot support in=%2 out=%3\n", (*p
)->name(), in
, out
));
1536 DEBUG_TRACE (DEBUG::Processors
, "}\n");
1537 return list
<pair
<ChanCount
, ChanCount
> > ();
1541 DEBUG_TRACE (DEBUG::Processors
, "}\n");
1543 return configuration
;
1546 /** Set the input/output configuration of each processor in the processors list.
1547 * Caller must hold process lock.
1548 * Return 0 on success, otherwise configuration is impossible.
1551 Route::configure_processors_unlocked (ProcessorStreams
* err
)
1553 assert (!AudioEngine::instance()->process_lock().trylock());
1555 if (_in_configure_processors
) {
1559 /* put invisible processors where they should be */
1560 setup_invisible_processors ();
1562 _in_configure_processors
= true;
1564 list
<pair
<ChanCount
, ChanCount
> > configuration
= try_configure_processors_unlocked (input_streams (), err
);
1566 if (configuration
.empty ()) {
1567 _in_configure_processors
= false;
1573 list
< pair
<ChanCount
,ChanCount
> >::iterator c
= configuration
.begin();
1574 for (ProcessorList::iterator p
= _processors
.begin(); p
!= _processors
.end(); ++p
, ++c
) {
1576 if (boost::dynamic_pointer_cast
<UnknownProcessor
> (*p
)) {
1580 (*p
)->configure_io(c
->first
, c
->second
);
1581 processor_max_streams
= ChanCount::max(processor_max_streams
, c
->first
);
1582 processor_max_streams
= ChanCount::max(processor_max_streams
, c
->second
);
1587 _meter
->reset_max_channels (processor_max_streams
);
1590 /* make sure we have sufficient scratch buffers to cope with the new processor
1593 _session
.ensure_buffers (n_process_buffers ());
1595 DEBUG_TRACE (DEBUG::Processors
, string_compose ("%1: configuration complete\n", _name
));
1597 _in_configure_processors
= false;
1602 Route::all_processors_flip ()
1604 Glib::RWLock::ReaderLock
lm (_processor_lock
);
1606 if (_processors
.empty()) {
1610 bool first_is_on
= _processors
.front()->active();
1612 for (ProcessorList::iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
1614 (*i
)->deactivate ();
1620 _session
.set_dirty ();
1623 /** Set all processors with a given placement to a given active state.
1624 * @param p Placement of processors to change.
1625 * @param state New active state for those processors.
1628 Route::all_processors_active (Placement p
, bool state
)
1630 Glib::RWLock::ReaderLock
lm (_processor_lock
);
1632 if (_processors
.empty()) {
1635 ProcessorList::iterator start
, end
;
1636 placement_range(p
, start
, end
);
1638 bool before_amp
= true;
1639 for (ProcessorList::iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
1644 if (p
== PreFader
&& before_amp
) {
1648 (*i
)->deactivate ();
1653 _session
.set_dirty ();
1657 Route::processor_is_prefader (boost::shared_ptr
<Processor
> p
)
1659 bool pre_fader
= true;
1660 Glib::RWLock::ReaderLock
lm (_processor_lock
);
1662 for (ProcessorList::iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
1664 /* semantic note: if p == amp, we want to return true, so test
1665 for equality before checking if this is the amp
1682 Route::reorder_processors (const ProcessorList
& new_order
, ProcessorStreams
* err
)
1684 /* "new_order" is an ordered list of processors to be positioned according to "placement".
1685 NOTE: all processors in "new_order" MUST be marked as display_to_user(). There maybe additional
1686 processors in the current actual processor list that are hidden. Any visible processors
1687 in the current list but not in "new_order" will be assumed to be deleted.
1691 Glib::RWLock::WriterLock
lm (_processor_lock
);
1692 ProcessorState
pstate (this);
1694 ProcessorList::iterator oiter
;
1695 ProcessorList::const_iterator niter
;
1696 ProcessorList as_it_will_be
;
1698 oiter
= _processors
.begin();
1699 niter
= new_order
.begin();
1701 while (niter
!= new_order
.end()) {
1703 /* if the next processor in the old list is invisible (i.e. should not be in the new order)
1704 then append it to the temp list.
1706 Otherwise, see if the next processor in the old list is in the new list. if not,
1707 its been deleted. If its there, append it to the temp list.
1710 if (oiter
== _processors
.end()) {
1712 /* no more elements in the old list, so just stick the rest of
1713 the new order onto the temp list.
1716 as_it_will_be
.insert (as_it_will_be
.end(), niter
, new_order
.end());
1717 while (niter
!= new_order
.end()) {
1724 if (!(*oiter
)->display_to_user()) {
1726 as_it_will_be
.push_back (*oiter
);
1730 /* visible processor: check that its in the new order */
1732 if (find (new_order
.begin(), new_order
.end(), (*oiter
)) == new_order
.end()) {
1733 /* deleted: do nothing, shared_ptr<> will clean up */
1735 /* ignore this one, and add the next item from the new order instead */
1736 as_it_will_be
.push_back (*niter
);
1741 /* now remove from old order - its taken care of no matter what */
1742 oiter
= _processors
.erase (oiter
);
1747 _processors
.insert (oiter
, as_it_will_be
.begin(), as_it_will_be
.end());
1750 Glib::Mutex::Lock
lm (AudioEngine::instance()->process_lock ());
1752 if (configure_processors_unlocked (err
)) {
1759 processors_changed (RouteProcessorChange ()); /* EMIT SIGNAL */
1760 set_processor_positions ();
1772 Route::get_template()
1774 return state(false);
1778 Route::state(bool full_state
)
1780 XMLNode
*node
= new XMLNode("Route");
1781 ProcessorList::iterator i
;
1784 id().print (buf
, sizeof (buf
));
1785 node
->add_property("id", buf
);
1786 node
->add_property ("name", _name
);
1787 node
->add_property("default-type", _default_type
.to_string());
1790 node
->add_property("flags", enum_2_string (_flags
));
1793 node
->add_property("active", _active
?"yes":"no");
1795 boost::to_string (_phase_invert
, p
);
1796 node
->add_property("phase-invert", p
);
1797 node
->add_property("denormal-protection", _denormal_protection
?"yes":"no");
1798 node
->add_property("meter-point", enum_2_string (_meter_point
));
1801 node
->add_property("route-group", _route_group
->name());
1804 string order_string
;
1805 OrderKeys::iterator x
= order_keys
.begin();
1807 while (x
!= order_keys
.end()) {
1808 order_string
+= string ((*x
).first
);
1809 order_string
+= '=';
1810 snprintf (buf
, sizeof(buf
), "%ld", (*x
).second
);
1811 order_string
+= buf
;
1815 if (x
== order_keys
.end()) {
1819 order_string
+= ':';
1821 node
->add_property ("order-keys", order_string
);
1822 node
->add_property ("self-solo", (_self_solo
? "yes" : "no"));
1823 snprintf (buf
, sizeof (buf
), "%d", _soloed_by_others_upstream
);
1824 node
->add_property ("soloed-by-upstream", buf
);
1825 snprintf (buf
, sizeof (buf
), "%d", _soloed_by_others_downstream
);
1826 node
->add_property ("soloed-by-downstream", buf
);
1827 node
->add_property ("solo-isolated", solo_isolated() ? "yes" : "no");
1828 node
->add_property ("solo-safe", _solo_safe
? "yes" : "no");
1830 node
->add_child_nocopy (_input
->state (full_state
));
1831 node
->add_child_nocopy (_output
->state (full_state
));
1832 node
->add_child_nocopy (_solo_control
->get_state ());
1833 node
->add_child_nocopy (_mute_control
->get_state ());
1834 node
->add_child_nocopy (_mute_master
->get_state ());
1836 XMLNode
* remote_control_node
= new XMLNode (X_("RemoteControl"));
1837 snprintf (buf
, sizeof (buf
), "%d", _remote_control_id
);
1838 remote_control_node
->add_property (X_("id"), buf
);
1839 node
->add_child_nocopy (*remote_control_node
);
1841 if (_comment
.length()) {
1842 XMLNode
*cmt
= node
->add_child ("Comment");
1843 cmt
->add_content (_comment
);
1847 node
->add_child_nocopy (_pannable
->state (full_state
));
1850 for (i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
1851 node
->add_child_nocopy((*i
)->state (full_state
));
1855 node
->add_child_copy (*_extra_xml
);
1862 Route::set_state (const XMLNode
& node
, int version
)
1864 return _set_state (node
, version
, true);
1868 Route::_set_state (const XMLNode
& node
, int version
, bool /*call_base*/)
1870 if (version
< 3000) {
1871 return _set_state_2X (node
, version
);
1875 XMLNodeConstIterator niter
;
1877 const XMLProperty
*prop
;
1879 if (node
.name() != "Route"){
1880 error
<< string_compose(_("Bad node sent to Route::set_state() [%1]"), node
.name()) << endmsg
;
1884 if ((prop
= node
.property (X_("name"))) != 0) {
1885 Route::set_name (prop
->value());
1888 if ((prop
= node
.property ("id")) != 0) {
1889 _id
= prop
->value ();
1892 if ((prop
= node
.property (X_("flags"))) != 0) {
1893 _flags
= Flag (string_2_enum (prop
->value(), _flags
));
1898 if (is_master() || is_monitor() || is_hidden()) {
1899 _mute_master
->set_solo_ignore (true);
1903 /* monitor bus does not get a panner, but if (re)created
1904 via XML, it will already have one by the time we
1905 call ::set_state(). so ... remove it.
1910 /* add all processors (except amp, which is always present) */
1912 nlist
= node
.children();
1913 XMLNode
processor_state (X_("processor_state"));
1915 Stateful::save_extra_xml (node
);
1917 for (niter
= nlist
.begin(); niter
!= nlist
.end(); ++niter
){
1921 if (child
->name() == IO::state_node_name
) {
1922 if ((prop
= child
->property (X_("direction"))) == 0) {
1926 if (prop
->value() == "Input") {
1927 _input
->set_state (*child
, version
);
1928 } else if (prop
->value() == "Output") {
1929 _output
->set_state (*child
, version
);
1933 if (child
->name() == X_("Processor")) {
1934 processor_state
.add_child_copy (*child
);
1938 if (child
->name() == X_("Pannable")) {
1940 _pannable
->set_state (*child
, version
);
1942 warning
<< string_compose (_("Pannable state found for route (%1) without a panner!"), name()) << endmsg
;
1947 set_processor_state (processor_state
);
1949 if ((prop
= node
.property ("self-solo")) != 0) {
1950 set_self_solo (string_is_affirmative (prop
->value()));
1953 if ((prop
= node
.property ("soloed-by-upstream")) != 0) {
1954 _soloed_by_others_upstream
= 0; // needed for mod_.... () to work
1955 mod_solo_by_others_upstream (atoi (prop
->value()));
1958 if ((prop
= node
.property ("soloed-by-downstream")) != 0) {
1959 _soloed_by_others_downstream
= 0; // needed for mod_.... () to work
1960 mod_solo_by_others_downstream (atoi (prop
->value()));
1963 if ((prop
= node
.property ("solo-isolated")) != 0) {
1964 set_solo_isolated (string_is_affirmative (prop
->value()), this);
1967 if ((prop
= node
.property ("solo-safe")) != 0) {
1968 set_solo_safe (string_is_affirmative (prop
->value()), this);
1971 if ((prop
= node
.property (X_("phase-invert"))) != 0) {
1972 set_phase_invert (boost::dynamic_bitset
<> (prop
->value ()));
1975 if ((prop
= node
.property (X_("denormal-protection"))) != 0) {
1976 set_denormal_protection (string_is_affirmative (prop
->value()));
1979 if ((prop
= node
.property (X_("active"))) != 0) {
1980 bool yn
= string_is_affirmative (prop
->value());
1981 _active
= !yn
; // force switch
1982 set_active (yn
, this);
1985 if ((prop
= node
.property (X_("meter-point"))) != 0) {
1986 MeterPoint mp
= MeterPoint (string_2_enum (prop
->value (), _meter_point
));
1987 set_meter_point (mp
, true);
1989 _meter
->set_display_to_user (_meter_point
== MeterCustom
);
1993 if ((prop
= node
.property (X_("order-keys"))) != 0) {
1997 string::size_type colon
, equal
;
1998 string remaining
= prop
->value();
2000 while (remaining
.length()) {
2002 if ((equal
= remaining
.find_first_of ('=')) == string::npos
|| equal
== remaining
.length()) {
2003 error
<< string_compose (_("badly formed order key string in state file! [%1] ... ignored."), remaining
)
2006 if (sscanf (remaining
.substr (equal
+1).c_str(), "%d", &n
) != 1) {
2007 error
<< string_compose (_("badly formed order key string in state file! [%1] ... ignored."), remaining
)
2010 set_order_key (remaining
.substr (0, equal
), n
);
2014 colon
= remaining
.find_first_of (':');
2016 if (colon
!= string::npos
) {
2017 remaining
= remaining
.substr (colon
+1);
2024 for (niter
= nlist
.begin(); niter
!= nlist
.end(); ++niter
){
2027 if (child
->name() == X_("Comment")) {
2029 /* XXX this is a terrible API design in libxml++ */
2031 XMLNode
*cmt
= *(child
->children().begin());
2032 _comment
= cmt
->content();
2034 } else if (child
->name() == Controllable::xml_node_name
&& (prop
= child
->property("name")) != 0) {
2035 if (prop
->value() == "solo") {
2036 _solo_control
->set_state (*child
, version
);
2039 } else if (child
->name() == X_("RemoteControl")) {
2040 if ((prop
= child
->property (X_("id"))) != 0) {
2042 sscanf (prop
->value().c_str(), "%d", &x
);
2043 set_remote_control_id (x
);
2046 } else if (child
->name() == X_("MuteMaster")) {
2047 _mute_master
->set_state (*child
, version
);
2055 Route::_set_state_2X (const XMLNode
& node
, int version
)
2058 XMLNodeConstIterator niter
;
2060 const XMLProperty
*prop
;
2062 /* 2X things which still remain to be handled:
2068 if (node
.name() != "Route") {
2069 error
<< string_compose(_("Bad node sent to Route::set_state() [%1]"), node
.name()) << endmsg
;
2073 if ((prop
= node
.property (X_("flags"))) != 0) {
2074 _flags
= Flag (string_2_enum (prop
->value(), _flags
));
2079 if ((prop
= node
.property (X_("phase-invert"))) != 0) {
2080 boost::dynamic_bitset
<> p (_input
->n_ports().n_audio ());
2081 if (string_is_affirmative (prop
->value ())) {
2084 set_phase_invert (p
);
2087 if ((prop
= node
.property (X_("denormal-protection"))) != 0) {
2088 set_denormal_protection (string_is_affirmative (prop
->value()));
2091 if ((prop
= node
.property (X_("soloed"))) != 0) {
2092 bool yn
= string_is_affirmative (prop
->value());
2094 /* XXX force reset of solo status */
2096 set_solo (yn
, this);
2099 if ((prop
= node
.property (X_("muted"))) != 0) {
2102 bool muted
= string_is_affirmative (prop
->value());
2108 if ((prop
= node
.property (X_("mute-affects-pre-fader"))) != 0) {
2110 if (string_is_affirmative (prop
->value())){
2111 mute_point
= mute_point
+ "PreFader";
2116 if ((prop
= node
.property (X_("mute-affects-post-fader"))) != 0) {
2118 if (string_is_affirmative (prop
->value())){
2121 mute_point
= mute_point
+ ",";
2124 mute_point
= mute_point
+ "PostFader";
2129 if ((prop
= node
.property (X_("mute-affects-control-outs"))) != 0) {
2131 if (string_is_affirmative (prop
->value())){
2134 mute_point
= mute_point
+ ",";
2137 mute_point
= mute_point
+ "Listen";
2142 if ((prop
= node
.property (X_("mute-affects-main-outs"))) != 0) {
2144 if (string_is_affirmative (prop
->value())){
2147 mute_point
= mute_point
+ ",";
2150 mute_point
= mute_point
+ "Main";
2154 _mute_master
->set_mute_points (mute_point
);
2155 _mute_master
->set_muted_by_self (true);
2159 if ((prop
= node
.property (X_("meter-point"))) != 0) {
2160 _meter_point
= MeterPoint (string_2_enum (prop
->value (), _meter_point
));
2163 /* do not carry over edit/mix groups from 2.X because (a) its hard (b) they
2164 don't mean the same thing.
2167 if ((prop
= node
.property (X_("order-keys"))) != 0) {
2171 string::size_type colon
, equal
;
2172 string remaining
= prop
->value();
2174 while (remaining
.length()) {
2176 if ((equal
= remaining
.find_first_of ('=')) == string::npos
|| equal
== remaining
.length()) {
2177 error
<< string_compose (_("badly formed order key string in state file! [%1] ... ignored."), remaining
)
2180 if (sscanf (remaining
.substr (equal
+1).c_str(), "%d", &n
) != 1) {
2181 error
<< string_compose (_("badly formed order key string in state file! [%1] ... ignored."), remaining
)
2184 set_order_key (remaining
.substr (0, equal
), n
);
2188 colon
= remaining
.find_first_of (':');
2190 if (colon
!= string::npos
) {
2191 remaining
= remaining
.substr (colon
+1);
2200 nlist
= node
.children ();
2201 for (niter
= nlist
.begin(); niter
!= nlist
.end(); ++niter
) {
2205 if (child
->name() == IO::state_node_name
) {
2207 /* there is a note in IO::set_state_2X() about why we have to call
2211 _input
->set_state_2X (*child
, version
, true);
2212 _output
->set_state_2X (*child
, version
, false);
2214 if ((prop
= child
->property (X_("name"))) != 0) {
2215 Route::set_name (prop
->value ());
2218 if ((prop
= child
->property (X_("id"))) != 0) {
2219 _id
= prop
->value ();
2222 if ((prop
= child
->property (X_("active"))) != 0) {
2223 bool yn
= string_is_affirmative (prop
->value());
2224 _active
= !yn
; // force switch
2225 set_active (yn
, this);
2228 if ((prop
= child
->property (X_("gain"))) != 0) {
2231 if (sscanf (prop
->value().c_str(), "%f", &val
) == 1) {
2232 _amp
->gain_control()->set_value (val
);
2236 /* Set up Panners in the IO */
2237 XMLNodeList io_nlist
= child
->children ();
2239 XMLNodeConstIterator io_niter
;
2242 for (io_niter
= io_nlist
.begin(); io_niter
!= io_nlist
.end(); ++io_niter
) {
2244 io_child
= *io_niter
;
2246 if (io_child
->name() == X_("Panner")) {
2247 _main_outs
->panner_shell()->set_state(*io_child
, version
);
2248 } else if (io_child
->name() == X_("Automation")) {
2249 /* IO's automation is for the fader */
2250 _amp
->set_automation_xml_state (*io_child
, Evoral::Parameter (GainAutomation
));
2256 XMLNodeList redirect_nodes
;
2258 for (niter
= nlist
.begin(); niter
!= nlist
.end(); ++niter
){
2262 if (child
->name() == X_("Send") || child
->name() == X_("Insert")) {
2263 redirect_nodes
.push_back(child
);
2268 set_processor_state_2X (redirect_nodes
, version
);
2270 Stateful::save_extra_xml (node
);
2272 for (niter
= nlist
.begin(); niter
!= nlist
.end(); ++niter
){
2275 if (child
->name() == X_("Comment")) {
2277 /* XXX this is a terrible API design in libxml++ */
2279 XMLNode
*cmt
= *(child
->children().begin());
2280 _comment
= cmt
->content();
2282 } else if (child
->name() == Controllable::xml_node_name
&& (prop
= child
->property("name")) != 0) {
2283 if (prop
->value() == X_("solo")) {
2284 _solo_control
->set_state (*child
, version
);
2285 } else if (prop
->value() == X_("mute")) {
2286 _mute_control
->set_state (*child
, version
);
2289 } else if (child
->name() == X_("RemoteControl")) {
2290 if ((prop
= child
->property (X_("id"))) != 0) {
2292 sscanf (prop
->value().c_str(), "%d", &x
);
2293 set_remote_control_id (x
);
2303 Route::get_processor_state ()
2305 XMLNode
* root
= new XMLNode (X_("redirects"));
2306 for (ProcessorList::iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
2307 root
->add_child_nocopy ((*i
)->state (true));
2314 Route::set_processor_state_2X (XMLNodeList
const & nList
, int version
)
2316 /* We don't bother removing existing processors not in nList, as this
2317 method will only be called when creating a Route from scratch, not
2318 for undo purposes. Just put processors in at the appropriate place
2322 for (XMLNodeConstIterator i
= nList
.begin(); i
!= nList
.end(); ++i
) {
2323 add_processor_from_xml_2X (**i
, version
);
2328 Route::set_processor_state (const XMLNode
& node
)
2330 const XMLNodeList
&nlist
= node
.children();
2331 XMLNodeConstIterator niter
;
2332 ProcessorList new_order
;
2333 bool must_configure
= false;
2335 for (niter
= nlist
.begin(); niter
!= nlist
.end(); ++niter
) {
2337 XMLProperty
* prop
= (*niter
)->property ("type");
2339 if (prop
->value() == "amp") {
2340 _amp
->set_state (**niter
, Stateful::current_state_version
);
2341 new_order
.push_back (_amp
);
2342 } else if (prop
->value() == "meter") {
2343 _meter
->set_state (**niter
, Stateful::current_state_version
);
2344 } else if (prop
->value() == "main-outs") {
2345 _main_outs
->set_state (**niter
, Stateful::current_state_version
);
2346 } else if (prop
->value() == "intreturn") {
2348 _intreturn
.reset (new InternalReturn (_session
));
2349 must_configure
= true;
2351 _intreturn
->set_state (**niter
, Stateful::current_state_version
);
2352 } else if (is_monitor() && prop
->value() == "monitor") {
2353 if (!_monitor_control
) {
2354 _monitor_control
.reset (new MonitorProcessor (_session
));
2355 must_configure
= true;
2357 _monitor_control
->set_state (**niter
, Stateful::current_state_version
);
2358 } else if (prop
->value() == "capture") {
2359 _capturing_processor
.reset (new CapturingProcessor (_session
));
2361 ProcessorList::iterator o
;
2363 for (o
= _processors
.begin(); o
!= _processors
.end(); ++o
) {
2364 XMLProperty
* id_prop
= (*niter
)->property(X_("id"));
2365 if (id_prop
&& (*o
)->id() == id_prop
->value()) {
2366 (*o
)->set_state (**niter
, Stateful::current_state_version
);
2367 new_order
.push_back (*o
);
2372 // If the processor (*niter) is not on the route then create it
2374 if (o
== _processors
.end()) {
2376 boost::shared_ptr
<Processor
> processor
;
2378 if (prop
->value() == "intsend") {
2380 processor
.reset (new InternalSend (_session
, _pannable
, _mute_master
, boost::shared_ptr
<Route
>(), Delivery::Role (0)));
2382 } else if (prop
->value() == "ladspa" || prop
->value() == "Ladspa" ||
2383 prop
->value() == "lv2" ||
2384 prop
->value() == "vst" ||
2385 prop
->value() == "audiounit") {
2387 processor
.reset (new PluginInsert(_session
));
2389 } else if (prop
->value() == "port") {
2391 processor
.reset (new PortInsert (_session
, _pannable
, _mute_master
));
2393 } else if (prop
->value() == "send") {
2395 processor
.reset (new Send (_session
, _pannable
, _mute_master
));
2398 error
<< string_compose(_("unknown Processor type \"%1\"; ignored"), prop
->value()) << endmsg
;
2402 if (processor
->set_state (**niter
, Stateful::current_state_version
) != 0) {
2403 /* This processor could not be configured. Turn it into a UnknownProcessor */
2404 processor
.reset (new UnknownProcessor (_session
, **niter
));
2407 /* we have to note the monitor send here, otherwise a new one will be created
2408 and the state of this one will be lost.
2410 boost::shared_ptr
<InternalSend
> isend
= boost::dynamic_pointer_cast
<InternalSend
> (processor
);
2411 if (isend
&& isend
->role() == Delivery::Listen
) {
2412 _monitor_send
= isend
;
2415 /* it doesn't matter if invisible processors are added here, as they
2416 will be sorted out by setup_invisible_processors () shortly.
2419 new_order
.push_back (processor
);
2420 must_configure
= true;
2426 Glib::RWLock::WriterLock
lm (_processor_lock
);
2427 _processors
= new_order
;
2429 if (must_configure
) {
2430 Glib::Mutex::Lock
lm (AudioEngine::instance()->process_lock ());
2431 configure_processors_unlocked (0);
2434 for (ProcessorList::const_iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
2436 (*i
)->ActiveChanged
.connect_same_thread (*this, boost::bind (&Session::update_latency_compensation
, &_session
, false));
2438 boost::shared_ptr
<PluginInsert
> pi
;
2440 if ((pi
= boost::dynamic_pointer_cast
<PluginInsert
>(*i
)) != 0) {
2441 if (pi
->has_no_inputs ()) {
2442 _have_internal_generator
= true;
2449 processors_changed (RouteProcessorChange ());
2450 set_processor_positions ();
2454 Route::curve_reallocate ()
2456 // _gain_automation_curve.finish_resize ();
2457 // _pan_automation_curve.finish_resize ();
2461 Route::silence (framecnt_t nframes
)
2463 Glib::RWLock::ReaderLock
lm (_processor_lock
, Glib::TRY_LOCK
);
2468 silence_unlocked (nframes
);
2472 Route::silence_unlocked (framecnt_t nframes
)
2474 /* Must be called with the processor lock held */
2478 _output
->silence (nframes
);
2480 for (ProcessorList::iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
2481 boost::shared_ptr
<PluginInsert
> pi
;
2483 if (!_active
&& (pi
= boost::dynamic_pointer_cast
<PluginInsert
> (*i
)) != 0) {
2484 // skip plugins, they don't need anything when we're not active
2488 (*i
)->silence (nframes
);
2491 if (nframes
== _session
.get_block_size()) {
2498 Route::add_internal_return ()
2501 _intreturn
.reset (new InternalReturn (_session
));
2502 add_processor (_intreturn
, PreFader
);
2507 Route::add_send_to_internal_return (InternalSend
* send
)
2509 Glib::RWLock::ReaderLock
rm (_processor_lock
);
2511 for (ProcessorList::const_iterator x
= _processors
.begin(); x
!= _processors
.end(); ++x
) {
2512 boost::shared_ptr
<InternalReturn
> d
= boost::dynamic_pointer_cast
<InternalReturn
>(*x
);
2515 return d
->add_send (send
);
2521 Route::remove_send_from_internal_return (InternalSend
* send
)
2523 Glib::RWLock::ReaderLock
rm (_processor_lock
);
2525 for (ProcessorList::const_iterator x
= _processors
.begin(); x
!= _processors
.end(); ++x
) {
2526 boost::shared_ptr
<InternalReturn
> d
= boost::dynamic_pointer_cast
<InternalReturn
>(*x
);
2529 return d
->remove_send (send
);
2534 /** Add a monitor send (if we don't already have one) but don't activate it */
2536 Route::listen_via_monitor ()
2538 /* master never sends to control outs */
2539 assert (!is_master ());
2541 /* make sure we have one */
2542 if (!_monitor_send
) {
2543 _monitor_send
.reset (new InternalSend (_session
, _pannable
, _mute_master
, _session
.monitor_out(), Delivery::Listen
));
2544 _monitor_send
->set_display_to_user (false);
2548 Glib::Mutex::Lock
lm (AudioEngine::instance()->process_lock ());
2549 configure_processors (0);
2554 /** Add an internal send to a route.
2555 * @param route route to send to.
2556 * @param placement placement for the send.
2559 Route::listen_via (boost::shared_ptr
<Route
> route
, Placement placement
)
2561 assert (route
!= _session
.monitor_out ());
2564 Glib::RWLock::ReaderLock
rm (_processor_lock
);
2566 for (ProcessorList::iterator x
= _processors
.begin(); x
!= _processors
.end(); ++x
) {
2568 boost::shared_ptr
<InternalSend
> d
= boost::dynamic_pointer_cast
<InternalSend
> (*x
);
2570 if (d
&& d
->target_route() == route
) {
2571 /* already listening via the specified IO: do nothing */
2578 boost::shared_ptr
<InternalSend
> listener (new InternalSend (_session
, _pannable
, _mute_master
, route
, Delivery::Aux
));
2579 add_processor (listener
, placement
);
2581 } catch (failed_constructor
& err
) {
2589 Route::drop_listen (boost::shared_ptr
<Route
> route
)
2591 ProcessorStreams err
;
2592 ProcessorList::iterator tmp
;
2594 Glib::RWLock::ReaderLock
rl(_processor_lock
);
2598 for (ProcessorList::iterator x
= _processors
.begin(); x
!= _processors
.end(); ) {
2600 boost::shared_ptr
<InternalSend
> d
= boost::dynamic_pointer_cast
<InternalSend
>(*x
);
2602 if (d
&& d
->target_route() == route
) {
2604 remove_processor (*x
, &err
);
2607 /* list could have been demolished while we dropped the lock
2617 if (route
== _session
.monitor_out()) {
2618 _monitor_send
.reset ();
2623 Route::set_comment (string cmt
, void *src
)
2626 comment_changed (src
);
2627 _session
.set_dirty ();
2631 Route::add_fed_by (boost::shared_ptr
<Route
> other
, bool via_sends_only
)
2633 FeedRecord
fr (other
, via_sends_only
);
2635 pair
<FedBy::iterator
,bool> result
= _fed_by
.insert (fr
);
2637 if (!result
.second
) {
2639 /* already a record for "other" - make sure sends-only information is correct */
2640 if (!via_sends_only
&& result
.first
->sends_only
) {
2641 FeedRecord
* frp
= const_cast<FeedRecord
*>(&(*result
.first
));
2642 frp
->sends_only
= false;
2646 return result
.second
;
2650 Route::clear_fed_by ()
2656 Route::feeds (boost::shared_ptr
<Route
> other
, bool* via_sends_only
)
2658 const FedBy
& fed_by (other
->fed_by());
2660 for (FedBy::iterator f
= fed_by
.begin(); f
!= fed_by
.end(); ++f
) {
2661 boost::shared_ptr
<Route
> sr
= f
->r
.lock();
2663 if (sr
&& (sr
.get() == this)) {
2665 if (via_sends_only
) {
2666 *via_sends_only
= f
->sends_only
;
2677 Route::direct_feeds (boost::shared_ptr
<Route
> other
, bool* only_send
)
2679 DEBUG_TRACE (DEBUG::Graph
, string_compose ("Feeds? %1\n", _name
));
2681 if (_output
->connected_to (other
->input())) {
2682 DEBUG_TRACE (DEBUG::Graph
, string_compose ("\tdirect FEEDS %2\n", other
->name()));
2691 for (ProcessorList::iterator r
= _processors
.begin(); r
!= _processors
.end(); ++r
) {
2693 boost::shared_ptr
<IOProcessor
> iop
;
2695 if ((iop
= boost::dynamic_pointer_cast
<IOProcessor
>(*r
)) != 0) {
2696 if (iop
->feeds (other
)) {
2697 DEBUG_TRACE (DEBUG::Graph
, string_compose ("\tIOP %1 does feed %2\n", iop
->name(), other
->name()));
2703 DEBUG_TRACE (DEBUG::Graph
, string_compose ("\tIOP %1 does NOT feed %2\n", iop
->name(), other
->name()));
2706 DEBUG_TRACE (DEBUG::Graph
, string_compose ("\tPROC %1 is not an IOP\n", (*r
)->name()));
2711 DEBUG_TRACE (DEBUG::Graph
, string_compose ("\tdoes NOT feed %1\n", other
->name()));
2715 /** Called from the (non-realtime) butler thread when the transport is stopped */
2717 Route::nonrealtime_handle_transport_stopped (bool /*abort_ignored*/, bool did_locate
, bool can_flush_processors
)
2719 framepos_t now
= _session
.transport_frame();
2722 Glib::RWLock::ReaderLock
lm (_processor_lock
);
2725 automation_snapshot (now
, true);
2728 Automatable::transport_stopped (now
);
2730 for (ProcessorList::iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
2732 if (!_have_internal_generator
&& (Config
->get_plugins_stop_with_transport() && can_flush_processors
)) {
2736 (*i
)->transport_stopped (now
);
2740 _roll_delay
= _initial_delay
;
2743 /** Called with the process lock held if change contains ConfigurationChanged */
2745 Route::input_change_handler (IOChange change
, void * /*src*/)
2747 if ((change
.type
& IOChange::ConfigurationChanged
)) {
2748 configure_processors (0);
2749 _phase_invert
.resize (_input
->n_ports().n_audio ());
2750 io_changed (); /* EMIT SIGNAL */
2755 Route::pans_required () const
2757 if (n_outputs().n_audio() < 2) {
2761 return max (n_inputs ().n_audio(), processor_max_streams
.n_audio());
2765 Route::no_roll (pframes_t nframes
, framepos_t start_frame
, framepos_t end_frame
,
2766 bool session_state_changing
, bool /*can_record*/, bool /*rec_monitors_input*/)
2768 Glib::RWLock::ReaderLock
lm (_processor_lock
, Glib::TRY_LOCK
);
2773 if (n_outputs().n_total() == 0) {
2777 if (!_active
|| n_inputs() == ChanCount::ZERO
) {
2778 silence_unlocked (nframes
);
2781 if (session_state_changing
) {
2782 if (_session
.transport_speed() != 0.0f
) {
2783 /* we're rolling but some state is changing (e.g. our diskstream contents)
2784 so we cannot use them. Be silent till this is over.
2786 XXX note the absurdity of ::no_roll() being called when we ARE rolling!
2788 silence_unlocked (nframes
);
2791 /* we're really not rolling, so we're either delivery silence or actually
2792 monitoring, both of which are safe to do while session_state_changing is true.
2796 _amp
->apply_gain_automation (false);
2797 passthru (start_frame
, end_frame
, nframes
, 0);
2803 Route::check_initial_delay (framecnt_t nframes
, framecnt_t
& transport_frame
)
2805 if (_roll_delay
> nframes
) {
2807 _roll_delay
-= nframes
;
2808 silence_unlocked (nframes
);
2809 /* transport frame is not legal for caller to use */
2812 } else if (_roll_delay
> 0) {
2814 nframes
-= _roll_delay
;
2815 silence_unlocked (_roll_delay
);
2816 transport_frame
+= _roll_delay
;
2818 /* shuffle all the port buffers for things that lead "out" of this Route
2819 to reflect that we just wrote _roll_delay frames of silence.
2822 Glib::RWLock::ReaderLock
lm (_processor_lock
);
2823 for (ProcessorList::iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
2824 boost::shared_ptr
<IOProcessor
> iop
= boost::dynamic_pointer_cast
<IOProcessor
> (*i
);
2826 iop
->increment_port_buffer_offset (_roll_delay
);
2829 _output
->increment_port_buffer_offset (_roll_delay
);
2839 Route::roll (pframes_t nframes
, framepos_t start_frame
, framepos_t end_frame
, int declick
,
2840 bool /*can_record*/, bool /*rec_monitors_input*/, bool& /* need_butler */)
2842 Glib::RWLock::ReaderLock
lm (_processor_lock
, Glib::TRY_LOCK
);
2847 automation_snapshot (_session
.transport_frame(), false);
2849 if (n_outputs().n_total() == 0) {
2853 if (!_active
|| n_inputs().n_total() == 0) {
2854 silence_unlocked (nframes
);
2858 framecnt_t unused
= 0;
2860 if ((nframes
= check_initial_delay (nframes
, unused
)) == 0) {
2866 passthru (start_frame
, end_frame
, nframes
, declick
);
2872 Route::silent_roll (pframes_t nframes
, framepos_t
/*start_frame*/, framepos_t
/*end_frame*/,
2873 bool /*can_record*/, bool /*rec_monitors_input*/, bool& /* need_butler */)
2880 Route::toggle_monitor_input ()
2882 for (PortSet::iterator i
= _input
->ports().begin(); i
!= _input
->ports().end(); ++i
) {
2883 i
->ensure_monitor_input( ! i
->monitoring_input());
2888 Route::has_external_redirects () const
2890 // FIXME: what about sends? - they don't return a signal back to ardour?
2892 boost::shared_ptr
<const PortInsert
> pi
;
2894 for (ProcessorList::const_iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
2896 if ((pi
= boost::dynamic_pointer_cast
<const PortInsert
>(*i
)) != 0) {
2898 for (PortSet::const_iterator port
= pi
->output()->ports().begin(); port
!= pi
->output()->ports().end(); ++port
) {
2900 string port_name
= port
->name();
2901 string client_name
= port_name
.substr (0, port_name
.find(':'));
2903 /* only say "yes" if the redirect is actually in use */
2905 if (client_name
!= "ardour" && pi
->active()) {
2916 Route::flush_processors ()
2918 /* XXX shouldn't really try to take this lock, since
2919 this is called from the RT audio thread.
2922 Glib::RWLock::ReaderLock
lm (_processor_lock
);
2924 for (ProcessorList::iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
2930 Route::set_meter_point (MeterPoint p
, bool force
)
2932 /* CAN BE CALLED FROM PROCESS CONTEXT */
2934 if (_meter_point
== p
&& !force
) {
2940 bool meter_was_visible_to_user
= _meter
->display_to_user ();
2943 Glib::RWLock::WriterLock
lm (_processor_lock
);
2945 if (_meter_point
!= MeterCustom
) {
2947 _meter
->set_display_to_user (false);
2949 setup_invisible_processors ();
2951 ProcessorList::iterator loc
= find (_processors
.begin(), _processors
.end(), _meter
);
2955 if (loc
== _processors
.begin()) {
2956 m_in
= _input
->n_ports();
2958 ProcessorList::iterator before
= loc
;
2960 m_in
= (*before
)->output_streams ();
2963 _meter
->reflect_inputs (m_in
);
2965 /* we do not need to reconfigure the processors, because the meter
2966 (a) is always ready to handle processor_max_streams
2967 (b) is always an N-in/N-out processor, and thus moving
2968 it doesn't require any changes to the other processors.
2973 // just make it visible and let the user move it
2975 _meter
->set_display_to_user (true);
2979 meter_change (); /* EMIT SIGNAL */
2981 bool const meter_visibly_changed
= (_meter
->display_to_user() != meter_was_visible_to_user
);
2983 processors_changed (RouteProcessorChange (RouteProcessorChange::MeterPointChange
, meter_visibly_changed
)); /* EMIT SIGNAL */
2987 Route::listen_position_changed ()
2990 Glib::RWLock::WriterLock
lm (_processor_lock
);
2991 ProcessorState
pstate (this);
2994 Glib::Mutex::Lock
lm (AudioEngine::instance()->process_lock ());
2996 if (configure_processors_unlocked (0)) {
2998 configure_processors_unlocked (0); // it worked before we tried to add it ...
3004 processors_changed (RouteProcessorChange ()); /* EMIT SIGNAL */
3005 _session
.set_dirty ();
3008 boost::shared_ptr
<CapturingProcessor
>
3009 Route::add_export_point()
3011 if (!_capturing_processor
) {
3013 _capturing_processor
.reset (new CapturingProcessor (_session
));
3014 _capturing_processor
->activate ();
3017 Glib::Mutex::Lock
lm (AudioEngine::instance()->process_lock ());
3018 configure_processors (0);
3023 return _capturing_processor
;
3027 Route::update_signal_latency ()
3029 framecnt_t l
= _output
->user_latency();
3031 for (ProcessorList::iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
3032 if ((*i
)->active ()) {
3033 l
+= (*i
)->signal_latency ();
3037 DEBUG_TRACE (DEBUG::Latency
, string_compose ("%1: internal signal latency = %2\n", _name
, l
));
3039 if (_signal_latency
!= l
) {
3040 _signal_latency
= l
;
3041 signal_latency_changed (); /* EMIT SIGNAL */
3044 return _signal_latency
;
3048 Route::set_user_latency (framecnt_t nframes
)
3050 _output
->set_user_latency (nframes
);
3051 _session
.update_latency_compensation ();
3055 Route::set_latency_compensation (framecnt_t longest_session_latency
)
3057 framecnt_t old
= _initial_delay
;
3059 if (_signal_latency
< longest_session_latency
) {
3060 _initial_delay
= longest_session_latency
- _signal_latency
;
3065 DEBUG_TRACE (DEBUG::Latency
, string_compose (
3066 "%1: compensate for maximum latency of %2,"
3067 "given own latency of %3, using initial delay of %4\n",
3068 name(), longest_session_latency
, _signal_latency
, _initial_delay
));
3070 if (_initial_delay
!= old
) {
3071 initial_delay_changed (); /* EMIT SIGNAL */
3074 if (_session
.transport_stopped()) {
3075 _roll_delay
= _initial_delay
;
3080 Route::automation_snapshot (framepos_t now
, bool force
)
3083 _pannable
->automation_snapshot (now
, force
);
3086 for (ProcessorList::iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
3087 (*i
)->automation_snapshot (now
, force
);
3091 Route::SoloControllable::SoloControllable (std::string name
, boost::shared_ptr
<Route
> r
)
3092 : AutomationControl (r
->session(), Evoral::Parameter (SoloAutomation
),
3093 boost::shared_ptr
<AutomationList
>(), name
)
3096 boost::shared_ptr
<AutomationList
> gl(new AutomationList(Evoral::Parameter(SoloAutomation
)));
3101 Route::SoloControllable::set_value (double val
)
3103 bool bval
= ((val
>= 0.5f
) ? true: false);
3105 boost::shared_ptr
<RouteList
> rl (new RouteList
);
3107 boost::shared_ptr
<Route
> r
= _route
.lock ();
3114 if (Config
->get_solo_control_is_listen_control()) {
3115 _session
.set_listen (rl
, bval
);
3117 _session
.set_solo (rl
, bval
);
3122 Route::SoloControllable::get_value () const
3124 boost::shared_ptr
<Route
> r
= _route
.lock ();
3129 if (Config
->get_solo_control_is_listen_control()) {
3130 return r
->listening_via_monitor() ? 1.0f
: 0.0f
;
3132 return r
->self_soloed() ? 1.0f
: 0.0f
;
3136 Route::MuteControllable::MuteControllable (std::string name
, boost::shared_ptr
<Route
> r
)
3137 : AutomationControl (r
->session(), Evoral::Parameter (MuteAutomation
),
3138 boost::shared_ptr
<AutomationList
>(), name
)
3141 boost::shared_ptr
<AutomationList
> gl(new AutomationList(Evoral::Parameter(MuteAutomation
)));
3146 Route::MuteControllable::set_value (double val
)
3148 bool bval
= ((val
>= 0.5f
) ? true: false);
3150 boost::shared_ptr
<RouteList
> rl (new RouteList
);
3152 boost::shared_ptr
<Route
> r
= _route
.lock ();
3158 _session
.set_mute (rl
, bval
);
3162 Route::MuteControllable::get_value () const
3164 boost::shared_ptr
<Route
> r
= _route
.lock ();
3169 return r
->muted() ? 1.0f
: 0.0f
;
3173 Route::set_block_size (pframes_t nframes
)
3175 for (ProcessorList::iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
3176 (*i
)->set_block_size (nframes
);
3179 _session
.ensure_buffers (n_process_buffers ());
3183 Route::protect_automation ()
3185 for (ProcessorList::iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
)
3186 (*i
)->protect_automation();
3190 Route::set_pending_declick (int declick
)
3193 /* this call is not allowed to turn off a pending declick unless "force" is true */
3195 _pending_declick
= declick
;
3197 // cerr << _name << ": after setting to " << declick << " pending declick = " << _pending_declick << endl;
3199 _pending_declick
= 0;
3204 /** Shift automation forwards from a particular place, thereby inserting time.
3205 * Adds undo commands for any shifts that are performed.
3207 * @param pos Position to start shifting from.
3208 * @param frames Amount to shift forwards by.
3212 Route::shift (framepos_t pos
, framecnt_t frames
)
3214 /* gain automation */
3216 boost::shared_ptr
<AutomationControl
> gc
= _amp
->gain_control();
3218 XMLNode
&before
= gc
->alist()->get_state ();
3219 gc
->alist()->shift (pos
, frames
);
3220 XMLNode
&after
= gc
->alist()->get_state ();
3221 _session
.add_command (new MementoCommand
<AutomationList
> (*gc
->alist().get(), &before
, &after
));
3224 /* pan automation */
3226 ControlSet::Controls
& c (_pannable
->controls());
3228 for (ControlSet::Controls::const_iterator ci
= c
.begin(); ci
!= c
.end(); ++ci
) {
3229 boost::shared_ptr
<AutomationControl
> pc
= boost::dynamic_pointer_cast
<AutomationControl
> (ci
->second
);
3231 boost::shared_ptr
<AutomationList
> al
= pc
->alist();
3232 XMLNode
& before
= al
->get_state ();
3233 al
->shift (pos
, frames
);
3234 XMLNode
& after
= al
->get_state ();
3235 _session
.add_command (new MementoCommand
<AutomationList
> (*al
.get(), &before
, &after
));
3240 /* redirect automation */
3242 Glib::RWLock::ReaderLock
lm (_processor_lock
);
3243 for (ProcessorList::iterator i
= _processors
.begin (); i
!= _processors
.end (); ++i
) {
3245 set
<Evoral::Parameter
> parameters
= (*i
)->what_can_be_automated();
3247 for (set
<Evoral::Parameter
>::const_iterator p
= parameters
.begin (); p
!= parameters
.end (); ++p
) {
3248 boost::shared_ptr
<AutomationControl
> ac
= (*i
)->automation_control (*p
);
3250 boost::shared_ptr
<AutomationList
> al
= ac
->alist();
3251 XMLNode
&before
= al
->get_state ();
3252 al
->shift (pos
, frames
);
3253 XMLNode
&after
= al
->get_state ();
3254 _session
.add_command (new MementoCommand
<AutomationList
> (*al
.get(), &before
, &after
));
3263 Route::save_as_template (const string
& path
, const string
& name
)
3265 XMLNode
& node (state (false));
3268 IO::set_name_in_state (*node
.children().front(), name
);
3270 tree
.set_root (&node
);
3271 return tree
.write (path
.c_str());
3276 Route::set_name (const string
& str
)
3282 name
= Route::ensure_track_or_route_name (str
, _session
);
3283 SessionObject::set_name (name
);
3285 ret
= (_input
->set_name(name
) && _output
->set_name(name
));
3288 /* rename the main outs. Leave other IO processors
3289 * with whatever name they already have, because its
3290 * just fine as it is (it will not contain the route
3291 * name if its a port insert, port send or port return).
3295 if (_main_outs
->set_name (name
)) {
3296 /* XXX returning false here is stupid because
3297 we already changed the route name.
3307 boost::shared_ptr
<Send
>
3308 Route::internal_send_for (boost::shared_ptr
<const Route
> target
) const
3310 Glib::RWLock::ReaderLock
lm (_processor_lock
);
3312 for (ProcessorList::const_iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
3313 boost::shared_ptr
<InternalSend
> send
;
3315 if ((send
= boost::dynamic_pointer_cast
<InternalSend
>(*i
)) != 0) {
3316 if (send
->target_route() == target
) {
3322 return boost::shared_ptr
<Send
>();
3325 /** @param c Audio channel index.
3326 * @param yn true to invert phase, otherwise false.
3329 Route::set_phase_invert (uint32_t c
, bool yn
)
3331 if (_phase_invert
[c
] != yn
) {
3332 _phase_invert
[c
] = yn
;
3333 phase_invert_changed (); /* EMIT SIGNAL */
3334 _session
.set_dirty ();
3339 Route::set_phase_invert (boost::dynamic_bitset
<> p
)
3341 if (_phase_invert
!= p
) {
3343 phase_invert_changed (); /* EMIT SIGNAL */
3344 _session
.set_dirty ();
3349 Route::phase_invert (uint32_t c
) const
3351 return _phase_invert
[c
];
3354 boost::dynamic_bitset
<>
3355 Route::phase_invert () const
3357 return _phase_invert
;
3361 Route::set_denormal_protection (bool yn
)
3363 if (_denormal_protection
!= yn
) {
3364 _denormal_protection
= yn
;
3365 denormal_protection_changed (); /* EMIT SIGNAL */
3370 Route::denormal_protection () const
3372 return _denormal_protection
;
3376 Route::set_active (bool yn
, void* src
)
3378 if (_route_group
&& src
!= _route_group
&& _route_group
->is_active() && _route_group
->is_route_active()) {
3379 _route_group
->foreach_route (boost::bind (&Route::set_active
, _1
, yn
, _route_group
));
3383 if (_active
!= yn
) {
3385 _input
->set_active (yn
);
3386 _output
->set_active (yn
);
3387 active_changed (); // EMIT SIGNAL
3394 Glib::RWLock::ReaderLock
rm (_processor_lock
, Glib::TRY_LOCK
);
3400 for (ProcessorList::iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
3402 boost::shared_ptr
<Send
> s
;
3403 boost::shared_ptr
<Return
> r
;
3405 if ((s
= boost::dynamic_pointer_cast
<Send
> (*i
)) != 0) {
3406 s
->meter()->meter();
3407 } else if ((r
= boost::dynamic_pointer_cast
<Return
> (*i
)) != 0) {
3408 r
->meter()->meter ();
3413 boost::shared_ptr
<Pannable
>
3414 Route::pannable() const
3419 boost::shared_ptr
<Panner
>
3420 Route::panner() const
3423 return _main_outs
->panner_shell()->panner();
3426 boost::shared_ptr
<PannerShell
>
3427 Route::panner_shell() const
3429 return _main_outs
->panner_shell();
3432 boost::shared_ptr
<AutomationControl
>
3433 Route::gain_control() const
3435 return _amp
->gain_control();
3438 boost::shared_ptr
<AutomationControl
>
3439 Route::get_control (const Evoral::Parameter
& param
)
3441 /* either we own the control or .... */
3443 boost::shared_ptr
<AutomationControl
> c
= boost::dynamic_pointer_cast
<AutomationControl
>(control (param
));
3447 /* maybe one of our processors does or ... */
3449 Glib::RWLock::ReaderLock
rm (_processor_lock
, Glib::TRY_LOCK
);
3450 for (ProcessorList::iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
3451 if ((c
= boost::dynamic_pointer_cast
<AutomationControl
>((*i
)->control (param
))) != 0) {
3459 /* nobody does so we'll make a new one */
3461 c
= boost::dynamic_pointer_cast
<AutomationControl
>(control_factory(param
));
3468 boost::shared_ptr
<Processor
>
3469 Route::nth_plugin (uint32_t n
)
3471 Glib::RWLock::ReaderLock
lm (_processor_lock
);
3472 ProcessorList::iterator i
;
3474 for (i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
3475 if (boost::dynamic_pointer_cast
<PluginInsert
> (*i
)) {
3482 return boost::shared_ptr
<Processor
> ();
3485 boost::shared_ptr
<Processor
>
3486 Route::nth_send (uint32_t n
)
3488 Glib::RWLock::ReaderLock
lm (_processor_lock
);
3489 ProcessorList::iterator i
;
3491 for (i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
3492 if (boost::dynamic_pointer_cast
<Send
> (*i
)) {
3499 return boost::shared_ptr
<Processor
> ();
3503 Route::has_io_processor_named (const string
& name
)
3505 Glib::RWLock::ReaderLock
lm (_processor_lock
);
3506 ProcessorList::iterator i
;
3508 for (i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
3509 if (boost::dynamic_pointer_cast
<Send
> (*i
) ||
3510 boost::dynamic_pointer_cast
<PortInsert
> (*i
)) {
3511 if ((*i
)->name() == name
) {
3520 MuteMaster::MutePoint
3521 Route::mute_points () const
3523 return _mute_master
->mute_points ();
3527 Route::set_processor_positions ()
3529 Glib::RWLock::ReaderLock
lm (_processor_lock
);
3531 bool had_amp
= false;
3532 for (ProcessorList::iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
3533 (*i
)->set_pre_fader (!had_amp
);
3534 if (boost::dynamic_pointer_cast
<Amp
> (*i
)) {
3540 /** Called when there is a proposed change to the input port count */
3542 Route::input_port_count_changing (ChanCount to
)
3544 list
<pair
<ChanCount
, ChanCount
> > c
= try_configure_processors (to
, 0);
3546 /* The processors cannot be configured with the new input arrangement, so
3552 /* The change is ok */
3557 Route::unknown_processors () const
3561 Glib::RWLock::ReaderLock
lm (_processor_lock
);
3562 for (ProcessorList::const_iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
3563 if (boost::dynamic_pointer_cast
<UnknownProcessor
const> (*i
)) {
3564 p
.push_back ((*i
)->name ());
3573 Route::update_port_latencies (PortSet
& from
, PortSet
& to
, bool playback
, framecnt_t our_latency
) const
3575 /* we assume that all our input ports feed all our output ports. its not
3576 universally true, but the alternative is way too corner-case to worry about.
3579 jack_latency_range_t all_connections
;
3581 all_connections
.min
= ~((jack_nframes_t
) 0);
3582 all_connections
.max
= 0;
3584 /* iterate over all "from" ports and determine the latency range for all of their
3585 connections to the "outside" (outside of this Route).
3588 for (PortSet::iterator p
= from
.begin(); p
!= from
.end(); ++p
) {
3590 jack_latency_range_t range
;
3592 p
->get_connected_latency_range (range
, playback
);
3594 all_connections
.min
= min (all_connections
.min
, range
.min
);
3595 all_connections
.max
= max (all_connections
.max
, range
.max
);
3598 /* set the "from" port latencies to the max/min range of all their connections */
3600 for (PortSet::iterator p
= from
.begin(); p
!= from
.end(); ++p
) {
3601 p
->set_private_latency_range (all_connections
, playback
);
3604 /* set the ports "in the direction of the flow" to the same value as above plus our own signal latency */
3606 all_connections
.min
+= our_latency
;
3607 all_connections
.max
+= our_latency
;
3609 for (PortSet::iterator p
= to
.begin(); p
!= to
.end(); ++p
) {
3610 p
->set_private_latency_range (all_connections
, playback
);
3613 return all_connections
.max
;
3617 Route::set_private_port_latencies (bool playback
) const
3619 framecnt_t own_latency
= 0;
3621 /* Processor list not protected by lock: MUST BE CALLED FROM PROCESS THREAD
3622 OR LATENCY CALLBACK.
3624 This is called (early) from the latency callback. It computes the REAL
3625 latency associated with each port and stores the result as the "private"
3626 latency of the port. A later call to Route::set_public_port_latencies()
3627 sets all ports to the same value to reflect the fact that we do latency
3628 compensation and so all signals are delayed by the same amount as they
3629 flow through ardour.
3632 for (ProcessorList::const_iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
3633 if ((*i
)->active ()) {
3634 own_latency
+= (*i
)->signal_latency ();
3639 /* playback: propagate latency from "outside the route" to outputs to inputs */
3640 return update_port_latencies (_output
->ports (), _input
->ports (), true, own_latency
);
3642 /* capture: propagate latency from "outside the route" to inputs to outputs */
3643 return update_port_latencies (_input
->ports (), _output
->ports (), false, own_latency
);
3648 Route::set_public_port_latencies (framecnt_t value
, bool playback
) const
3650 /* this is called to set the JACK-visible port latencies, which take
3651 latency compensation into account.
3654 jack_latency_range_t range
;
3660 const PortSet
& ports (_input
->ports());
3661 for (PortSet::const_iterator p
= ports
.begin(); p
!= ports
.end(); ++p
) {
3662 p
->set_public_latency_range (range
, playback
);
3667 const PortSet
& ports (_output
->ports());
3668 for (PortSet::const_iterator p
= ports
.begin(); p
!= ports
.end(); ++p
) {
3669 p
->set_public_latency_range (range
, playback
);
3674 /** Put the invisible processors in the right place in _processors.
3675 * Must be called with a writer lock on _processor_lock held.
3678 Route::setup_invisible_processors ()
3681 Glib::RWLock::WriterLock
lm (_processor_lock
, Glib::TRY_LOCK
);
3682 assert (!lm
.locked ());
3686 /* too early to be doing this stuff */
3690 /* we'll build this new list here and then use it */
3692 ProcessorList new_processors
;
3694 /* find visible processors */
3696 for (ProcessorList::iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
3697 if ((*i
)->display_to_user ()) {
3698 new_processors
.push_back (*i
);
3704 ProcessorList::iterator amp
= new_processors
.begin ();
3705 while (amp
!= new_processors
.end() && boost::dynamic_pointer_cast
<Amp
> (*amp
) == 0) {
3709 assert (amp
!= _processors
.end ());
3711 /* and the processor after the amp */
3713 ProcessorList::iterator after_amp
= amp
;
3719 switch (_meter_point
) {
3721 assert (!_meter
->display_to_user ());
3722 new_processors
.push_front (_meter
);
3725 assert (!_meter
->display_to_user ());
3726 new_processors
.insert (amp
, _meter
);
3728 case MeterPostFader
:
3729 /* do nothing here */
3732 /* do nothing here */
3735 /* the meter is visible, so we don't touch it here */
3742 assert (_main_outs
);
3743 assert (!_main_outs
->display_to_user ());
3744 new_processors
.push_back (_main_outs
);
3746 /* iterator for the main outs */
3748 ProcessorList::iterator main
= new_processors
.end();
3751 /* OUTPUT METERING */
3753 if (_meter
&& (_meter_point
== MeterOutput
|| _meter_point
== MeterPostFader
)) {
3754 assert (!_meter
->display_to_user ());
3756 /* add the processor just before or just after the main outs */
3758 ProcessorList::iterator meter_point
= main
;
3760 if (_meter_point
== MeterOutput
) {
3763 new_processors
.insert (meter_point
, _meter
);
3768 if (_monitor_send
&& !is_monitor ()) {
3769 assert (!_monitor_send
->display_to_user ());
3770 if (Config
->get_solo_control_is_listen_control()) {
3771 switch (Config
->get_listen_position ()) {
3772 case PreFaderListen
:
3773 switch (Config
->get_pfl_position ()) {
3774 case PFLFromBeforeProcessors
:
3775 new_processors
.push_front (_monitor_send
);
3777 case PFLFromAfterProcessors
:
3778 new_processors
.insert (amp
, _monitor_send
);
3781 _monitor_send
->set_can_pan (false);
3783 case AfterFaderListen
:
3784 switch (Config
->get_afl_position ()) {
3785 case AFLFromBeforeProcessors
:
3786 new_processors
.insert (after_amp
, _monitor_send
);
3788 case AFLFromAfterProcessors
:
3789 new_processors
.insert (new_processors
.end(), _monitor_send
);
3792 _monitor_send
->set_can_pan (true);
3796 new_processors
.insert (new_processors
.end(), _monitor_send
);
3797 _monitor_send
->set_can_pan (false);
3801 /* MONITOR CONTROL */
3803 if (_monitor_control
&& is_monitor ()) {
3804 assert (!_monitor_control
->display_to_user ());
3805 new_processors
.push_front (_monitor_control
);
3808 /* INTERNAL RETURN */
3810 /* doing this here means that any monitor control will come just after
3815 assert (!_intreturn
->display_to_user ());
3816 new_processors
.push_front (_intreturn
);
3819 /* EXPORT PROCESSOR */
3821 if (_capturing_processor
) {
3822 assert (!_capturing_processor
->display_to_user ());
3823 new_processors
.push_front (_capturing_processor
);
3826 _processors
= new_processors
;
3828 DEBUG_TRACE (DEBUG::Processors
, string_compose ("%1: setup_invisible_processors\n", _name
));
3829 for (ProcessorList::iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
3830 DEBUG_TRACE (DEBUG::Processors
, string_compose ("\t%1\n", (*i
)->name ()));
3835 Route::should_monitor () const
3837 switch (Config
->get_monitoring_model()) {
3838 case HardwareMonitoring
:
3839 case ExternalMonitoring
:
3840 return !record_enabled() || (_session
.config
.get_auto_input() && !_session
.actively_recording());
3852 Glib::Mutex::Lock
lm (AudioEngine::instance()->process_lock ());
3853 Glib::RWLock::ReaderLock
lp (_processor_lock
);
3857 for (ProcessorList::iterator i
= _processors
.begin(); i
!= _processors
.end(); ++i
) {
3858 boost::shared_ptr
<Delivery
> d
= boost::dynamic_pointer_cast
<Delivery
>(*i
);