Modify route _processor list set up so that the logic for placing `invisible' process...
[ardour.git] / libs / ardour / route.cc
1 /*
2     Copyright (C) 2000 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 #ifdef WAF_BUILD
21 #include "libardour-config.h"
22 #endif
23
24 #include <cmath>
25 #include <fstream>
26 #include <cassert>
27 #include <algorithm>
28
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"
35
36 #include "evoral/Curve.hpp"
37
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"
71
72 #include "i18n.h"
73
74 using namespace std;
75 using namespace ARDOUR;
76 using namespace PBD;
77
78 uint32_t Route::order_key_cnt = 0;
79 PBD::Signal1<void,string const&> Route::SyncOrderKeys;
80 PBD::Signal0<void> Route::RemoteControlIDChange;
81
82 Route::Route (Session& sess, string name, Flag flg, DataType default_type)
83         : SessionObject (sess, name)
84         , Automatable (sess)
85         , GraphNode( sess.route_graph )
86         , _active (true)
87         , _initial_delay (0)
88         , _roll_delay (0)
89         , _flags (flg)
90         , _pending_declick (true)
91         , _meter_point (MeterPostFader)
92         , _self_solo (false)
93         , _soloed_by_others_upstream (0)
94         , _soloed_by_others_downstream (0)
95         , _solo_isolated (0)
96         , _denormal_protection (false)
97         , _recordable (true)
98         , _silent (false)
99         , _declickable (false)
100         , _solo_control (new SoloControllable (X_("solo"), *this))
101         , _mute_control (new MuteControllable (X_("mute"), *this))
102         , _mute_master (new MuteMaster (sess, name))
103         , _have_internal_generator (false)
104         , _solo_safe (false)
105         , _default_type (default_type)
106         , _remote_control_id (0)
107         , _in_configure_processors (false)
108 {
109         processor_max_streams.reset();
110         order_keys[N_("signal")] = order_key_cnt++;
111 }
112
113 int
114 Route::init ()
115 {
116         /* add standard controls */
117
118         _solo_control->set_flags (Controllable::Flag (_solo_control->flags() | Controllable::Toggle));
119         _mute_control->set_flags (Controllable::Flag (_mute_control->flags() | Controllable::Toggle));
120
121         add_control (_solo_control);
122         add_control (_mute_control);
123
124         /* panning */
125         
126         Pannable* p = new Pannable (_session);
127 #ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
128         boost_debug_shared_ptr_mark_interesting (p, "Pannable");
129 #endif
130         _pannable.reset (p);
131
132         /* input and output objects */
133
134         _input.reset (new IO (_session, _name, IO::Input, _default_type));
135         _output.reset (new IO (_session, _name, IO::Output, _default_type));
136
137         _input->changed.connect_same_thread (*this, boost::bind (&Route::input_change_handler, this, _1, _2));
138         _output->changed.connect_same_thread (*this, boost::bind (&Route::output_change_handler, this, _1, _2));
139
140         _input->PortCountChanging.connect_same_thread (*this, boost::bind (&Route::input_port_count_changing, this, _1));
141
142         /* add amp processor  */
143
144         _amp.reset (new Amp (_session));
145         add_processor (_amp, PostFader);
146
147         /* create standard processors: meter, main outs, monitor out;
148            they will be added to _processors by setup_invisible_processors ()
149         */
150
151         _meter.reset (new PeakMeter (_session));
152         _meter->set_display_to_user (false);
153         _meter->activate ();
154
155         _main_outs.reset (new Delivery (_session, _output, _pannable, _mute_master, _name, Delivery::Main));
156         _main_outs->activate ();
157
158         if (is_monitor()) {
159                 /* where we listen to tracks */
160                 _intreturn.reset (new InternalReturn (_session));
161                 _intreturn->activate ();
162
163                 /* the thing that provides proper control over a control/monitor/listen bus 
164                    (such as per-channel cut, dim, solo, invert, etc).
165                  */
166                 _monitor_control.reset (new MonitorProcessor (_session));
167                 _monitor_control->activate ();
168
169                 /* no panning on the monitor main outs */
170
171 #ifdef PANNER_HACKS
172                 _main_outs->panner()->set_bypassed (true);
173 #endif
174         }
175
176         if (is_master() || is_monitor() || is_hidden()) {
177                 _mute_master->set_solo_ignore (true);
178         }
179
180         /* now that we have _meter, its safe to connect to this */
181
182         Metering::Meter.connect_same_thread (*this, (boost::bind (&Route::meter, this)));
183
184         {
185                 /* run a configure so that the invisible processors get set up */
186                 Glib::Mutex::Lock lm (AudioEngine::instance()->process_lock ());
187                 configure_processors (0);
188         }
189
190         return 0;
191 }
192
193 Route::~Route ()
194 {
195         DEBUG_TRACE (DEBUG::Destruction, string_compose ("route %1 destructor\n", _name));
196
197         /* do this early so that we don't get incoming signals as we are going through destruction 
198          */
199
200         drop_connections ();
201
202         /* don't use clear_processors here, as it depends on the session which may
203            be half-destroyed by now 
204         */
205
206         Glib::RWLock::WriterLock lm (_processor_lock);
207         for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
208                 (*i)->drop_references ();
209         }
210
211         _processors.clear ();
212 }
213
214 void
215 Route::set_remote_control_id (uint32_t id, bool notify_class_listeners)
216 {
217         if (id != _remote_control_id) {
218                 _remote_control_id = id;
219                 RemoteControlIDChanged ();
220                 if (notify_class_listeners) {
221                         RemoteControlIDChange ();
222                 }
223         }
224 }
225
226 uint32_t
227 Route::remote_control_id() const
228 {
229         return _remote_control_id;
230 }
231
232 int32_t
233 Route::order_key (std::string const & name) const
234 {
235         OrderKeys::const_iterator i = order_keys.find (name);
236         if (i == order_keys.end()) {
237                 return -1;
238         }
239
240         return i->second;
241 }
242
243 void
244 Route::set_order_key (std::string const & name, int32_t n)
245 {
246         bool changed = false;
247
248         /* This method looks more complicated than it should, but
249            it's important that we don't emit order_key_changed unless
250            it actually has, as expensive things happen on receipt of that
251            signal.
252         */
253
254         if (order_keys.find(name) == order_keys.end() || order_keys[name] != n) {
255                 order_keys[name] = n;
256                 changed = true;
257         }
258
259         if (Config->get_sync_all_route_ordering()) {
260                 for (OrderKeys::iterator x = order_keys.begin(); x != order_keys.end(); ++x) {
261                         if (x->second != n) {
262                                 x->second = n;
263                                 changed = true;
264                         }
265                 }
266         }
267
268         if (changed) {
269                 order_key_changed (); /* EMIT SIGNAL */
270                 _session.set_dirty ();
271         }
272 }
273
274 /** Set all order keys to be the same as that for `base', if such a key
275  *  exists in this route.
276  *  @param base Base key.
277  */
278 void
279 Route::sync_order_keys (std::string const & base)
280 {
281         if (order_keys.empty()) {
282                 return;
283         }
284
285         OrderKeys::iterator i;
286         int32_t key;
287
288         if ((i = order_keys.find (base)) == order_keys.end()) {
289                 /* key doesn't exist, use the first existing key (during session initialization) */
290                 i = order_keys.begin();
291                 key = i->second;
292                 ++i;
293         } else {
294                 /* key exists - use it and reset all others (actually, itself included) */
295                 key = i->second;
296                 i = order_keys.begin();
297         }
298
299         bool changed = false;
300         
301         for (; i != order_keys.end(); ++i) {
302                 if (i->second != key) {
303                         i->second = key;
304                         changed = true;
305                 }
306         }
307
308         if (changed) {
309                 order_key_changed (); /* EMIT SIGNAL */
310         }
311 }
312
313 string
314 Route::ensure_track_or_route_name(string name, Session &session)
315 {
316         string newname = name;
317
318         while (!session.io_name_is_legal (newname)) {
319                 newname = bump_name_once (newname, '.');
320         }
321
322         return newname;
323 }
324
325
326 void
327 Route::inc_gain (gain_t fraction, void *src)
328 {
329         _amp->inc_gain (fraction, src);
330 }
331
332 void
333 Route::set_gain (gain_t val, void *src)
334 {
335         if (src != 0 && _route_group && src != _route_group && _route_group->is_active() && _route_group->is_gain()) {
336
337                 if (_route_group->is_relative()) {
338
339                         gain_t usable_gain = _amp->gain();
340                         if (usable_gain < 0.000001f) {
341                                 usable_gain = 0.000001f;
342                         }
343
344                         gain_t delta = val;
345                         if (delta < 0.000001f) {
346                                 delta = 0.000001f;
347                         }
348
349                         delta -= usable_gain;
350
351                         if (delta == 0.0f)
352                                 return;
353
354                         gain_t factor = delta / usable_gain;
355
356                         if (factor > 0.0f) {
357                                 factor = _route_group->get_max_factor(factor);
358                                 if (factor == 0.0f) {
359                                         _amp->gain_control()->Changed(); /* EMIT SIGNAL */
360                                         return;
361                                 }
362                         } else {
363                                 factor = _route_group->get_min_factor(factor);
364                                 if (factor == 0.0f) {
365                                         _amp->gain_control()->Changed(); /* EMIT SIGNAL */
366                                         return;
367                                 }
368                         }
369
370                         _route_group->foreach_route (boost::bind (&Route::inc_gain, _1, factor, _route_group));
371
372                 } else {
373
374                         _route_group->foreach_route (boost::bind (&Route::set_gain, _1, val, _route_group));
375                 }
376
377                 return;
378         }
379
380         if (val == _amp->gain()) {
381                 return;
382         }
383
384         _amp->set_gain (val, src);
385 }
386
387 /** Process this route for one (sub) cycle (process thread)
388  *
389  * @param bufs Scratch buffers to use for the signal path
390  * @param start_frame Initial transport frame
391  * @param end_frame Final transport frame
392  * @param nframes Number of frames to output (to ports)
393  *
394  * Note that (end_frame - start_frame) may not be equal to nframes when the
395  * transport speed isn't 1.0 (eg varispeed).
396  */
397 void
398 Route::process_output_buffers (BufferSet& bufs,
399                                framepos_t start_frame, framepos_t end_frame, pframes_t nframes,
400                                bool /*with_processors*/, int declick,
401                                bool gain_automation_ok)
402 {
403         bool monitor;
404
405         bufs.is_silent (false);
406
407         switch (Config->get_monitoring_model()) {
408         case HardwareMonitoring:
409         case ExternalMonitoring:
410                 monitor = !record_enabled() || (_session.config.get_auto_input() && !_session.actively_recording());
411                 break;
412         default:
413                 monitor = true;
414         }
415
416         if (!declick) {
417                 declick = _pending_declick;
418         }
419
420         /* figure out if we're going to use gain automation */
421         if (gain_automation_ok) {
422                 _amp->setup_gain_automation (start_frame, end_frame, nframes);
423         } else {
424                 _amp->apply_gain_automation (false);
425         }
426         
427         /* tell main outs what to do about monitoring */
428         _main_outs->no_outs_cuz_we_no_monitor (!monitor);
429
430
431         /* -------------------------------------------------------------------------------------------
432            GLOBAL DECLICK (for transport changes etc.)
433            ----------------------------------------------------------------------------------------- */
434
435         if (declick > 0) {
436                 Amp::declick (bufs, nframes, 1);
437         } else if (declick < 0) {
438                 Amp::declick (bufs, nframes, -1);
439         }
440
441         _pending_declick = 0;
442
443         /* -------------------------------------------------------------------------------------------
444            DENORMAL CONTROL/PHASE INVERT
445            ----------------------------------------------------------------------------------------- */
446
447         if (_phase_invert.any ()) {
448
449                 int chn = 0;
450
451                 if (_denormal_protection || Config->get_denormal_protection()) {
452
453                         for (BufferSet::audio_iterator i = bufs.audio_begin(); i != bufs.audio_end(); ++i, ++chn) {
454                                 Sample* const sp = i->data();
455
456                                 if (_phase_invert[chn]) {
457                                         for (pframes_t nx = 0; nx < nframes; ++nx) {
458                                                 sp[nx]  = -sp[nx];
459                                                 sp[nx] += 1.0e-27f;
460                                         }
461                                 } else {
462                                         for (pframes_t nx = 0; nx < nframes; ++nx) {
463                                                 sp[nx] += 1.0e-27f;
464                                         }
465                                 }
466                         }
467
468                 } else {
469
470                         for (BufferSet::audio_iterator i = bufs.audio_begin(); i != bufs.audio_end(); ++i, ++chn) {
471                                 Sample* const sp = i->data();
472
473                                 if (_phase_invert[chn]) {
474                                         for (pframes_t nx = 0; nx < nframes; ++nx) {
475                                                 sp[nx] = -sp[nx];
476                                         }
477                                 }
478                         }
479                 }
480
481         } else {
482
483                 if (_denormal_protection || Config->get_denormal_protection()) {
484
485                         for (BufferSet::audio_iterator i = bufs.audio_begin(); i != bufs.audio_end(); ++i) {
486                                 Sample* const sp = i->data();
487                                 for (pframes_t nx = 0; nx < nframes; ++nx) {
488                                         sp[nx] += 1.0e-27f;
489                                 }
490                         }
491
492                 }
493         }
494
495         /* -------------------------------------------------------------------------------------------
496            and go ....
497            ----------------------------------------------------------------------------------------- */
498
499         for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
500
501                 if (boost::dynamic_pointer_cast<UnknownProcessor> (*i)) {
502                         break;
503                 }
504
505                 if (bufs.count() != (*i)->input_streams()) {
506                         cerr << _name << " bufs = " << bufs.count()
507                              << " input for " << (*i)->name() << " = " << (*i)->input_streams()
508                              << endl;
509                 }
510                 assert (bufs.count() == (*i)->input_streams());
511                 
512                 /* should we NOT run plugins here if the route is inactive?
513                    do we catch route != active somewhere higher?
514                 */
515
516                 (*i)->run (bufs, start_frame, end_frame, nframes, *i != _processors.back());
517                 bufs.set_count ((*i)->output_streams());
518         }
519 }
520
521 ChanCount
522 Route::n_process_buffers ()
523 {
524         return max (_input->n_ports(), processor_max_streams);
525 }
526
527 void
528 Route::passthru (framepos_t start_frame, framepos_t end_frame, pframes_t nframes, int declick)
529 {
530         BufferSet& bufs = _session.get_scratch_buffers (n_process_buffers());
531
532         _silent = false;
533
534         assert (bufs.available() >= input_streams());
535
536         if (_input->n_ports() == ChanCount::ZERO) {
537                 silence_unlocked (nframes);
538         }
539
540         bufs.set_count (input_streams());
541
542         if (is_monitor() && _session.listening() && !_session.is_auditioning()) {
543
544                 /* control/monitor bus ignores input ports when something is
545                    feeding the listen "stream". data will "arrive" into the
546                    route from the intreturn processor element.
547                 */
548                 bufs.silence (nframes, 0);
549
550         } else {
551
552                 for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
553
554                         BufferSet::iterator o = bufs.begin(*t);
555                         PortSet& ports (_input->ports());
556
557                         for (PortSet::iterator i = ports.begin(*t); i != ports.end(*t); ++i, ++o) {
558                                 o->read_from (i->get_buffer(nframes), nframes);
559                         }
560                 }
561         }
562
563         write_out_of_band_data (bufs, start_frame, end_frame, nframes);
564         process_output_buffers (bufs, start_frame, end_frame, nframes, true, declick, true);
565 }
566
567 void
568 Route::passthru_silence (framepos_t start_frame, framepos_t end_frame, pframes_t nframes, int declick)
569 {
570         BufferSet& bufs (_session.get_silent_buffers (n_process_buffers()));
571         bufs.set_count (_input->n_ports());
572         write_out_of_band_data (bufs, start_frame, end_frame, nframes);
573         process_output_buffers (bufs, start_frame, end_frame, nframes, true, declick, false);
574 }
575
576 void
577 Route::set_listen (bool yn, void* src)
578 {
579         if (_solo_safe) {
580                 return;
581         }
582
583         if (_monitor_send) {
584                 if (yn != _monitor_send->active()) {
585                         if (yn) {
586                                 _monitor_send->activate ();
587                                 _mute_master->set_soloed (true);
588                         } else {
589                                 _monitor_send->deactivate ();
590                                 _mute_master->set_soloed (false);
591                         }
592
593                         listen_changed (src); /* EMIT SIGNAL */
594                 }
595         }
596 }
597
598 bool
599 Route::listening_via_monitor () const
600 {
601         if (_monitor_send) {
602                 return _monitor_send->active ();
603         } else {
604                 return false;
605         }
606 }
607
608 void
609 Route::set_solo_safe (bool yn, void *src)
610 {
611         if (_solo_safe != yn) {
612                 _solo_safe = yn;
613                 solo_safe_changed (src);
614         } 
615 }
616
617 bool
618 Route::solo_safe() const
619 {
620         return _solo_safe;
621 }
622
623 void
624 Route::set_solo (bool yn, void *src)
625 {
626         if (_solo_safe) {
627                 return;
628         }
629
630         if (_route_group && src != _route_group && _route_group->is_active() && _route_group->is_solo()) {
631                 _route_group->foreach_route (boost::bind (&Route::set_solo, _1, yn, _route_group));
632                 return;
633         }
634
635         if (self_soloed() != yn) {
636                 set_self_solo (yn);
637                 set_mute_master_solo ();
638                 solo_changed (true, src); /* EMIT SIGNAL */
639                 _solo_control->Changed (); /* EMIT SIGNAL */
640         }
641 }
642
643 void
644 Route::set_self_solo (bool yn)
645 {
646         _self_solo = yn;
647 }
648
649 void
650 Route::mod_solo_by_others_upstream (int32_t delta)
651 {
652         if (_solo_safe) {
653                 return;
654         }
655
656         uint32_t old_sbu = _soloed_by_others_upstream;
657
658         if (delta < 0) {
659                 if (_soloed_by_others_upstream >= (uint32_t) abs (delta)) {
660                         _soloed_by_others_upstream += delta;
661                 } else {
662                         _soloed_by_others_upstream = 0;
663                 }
664         } else {
665                 _soloed_by_others_upstream += delta;
666         }
667
668         DEBUG_TRACE (DEBUG::Solo, string_compose ("%1 SbU delta %2 = %3 old = %4 sbd %5 ss %6 exclusive %7\n",
669                                                   name(), delta, _soloed_by_others_upstream, old_sbu, 
670                                                   _soloed_by_others_downstream, _self_solo, Config->get_exclusive_solo()));
671
672         /* push the inverse solo change to everything that feeds us. 
673            
674            This is important for solo-within-group. When we solo 1 track out of N that
675            feed a bus, that track will cause mod_solo_by_upstream (+1) to be called
676            on the bus. The bus then needs to call mod_solo_by_downstream (-1) on all
677            tracks that feed it. This will silence them if they were audible because
678            of a bus solo, but the newly soloed track will still be audible (because 
679            it is self-soloed).
680            
681            but .. do this only when we are being told to solo-by-upstream (i.e delta = +1),
682            not in reverse.
683          */
684
685         if ((_self_solo || _soloed_by_others_downstream) &&
686             ((old_sbu == 0 && _soloed_by_others_upstream > 0) || 
687              (old_sbu > 0 && _soloed_by_others_upstream == 0))) {
688                 
689                 if (delta > 0 || !Config->get_exclusive_solo()) {
690                         DEBUG_TRACE (DEBUG::Solo, "\t ... INVERT push\n");
691                         for (FedBy::iterator i = _fed_by.begin(); i != _fed_by.end(); ++i) {
692                                 boost::shared_ptr<Route> sr = i->r.lock();
693                                 if (sr) {
694                                         sr->mod_solo_by_others_downstream (-delta);
695                                 }
696                         }
697                 } 
698         }
699
700         set_mute_master_solo ();
701         solo_changed (false, this);
702 }
703
704 void
705 Route::mod_solo_by_others_downstream (int32_t delta)
706 {
707         if (_solo_safe) {
708                 return;
709         }
710
711         if (delta < 0) {
712                 if (_soloed_by_others_downstream >= (uint32_t) abs (delta)) {
713                         _soloed_by_others_downstream += delta;
714                 } else {
715                         _soloed_by_others_downstream = 0;
716                 }
717         } else {
718                 _soloed_by_others_downstream += delta;
719         }
720
721         DEBUG_TRACE (DEBUG::Solo, string_compose ("%1 SbD delta %2 = %3\n", name(), delta, _soloed_by_others_downstream));
722
723         set_mute_master_solo ();
724         solo_changed (false, this);
725 }
726
727 void
728 Route::set_mute_master_solo ()
729 {
730         _mute_master->set_soloed (self_soloed() || soloed_by_others_downstream() || soloed_by_others_upstream());
731 }
732
733 void
734 Route::set_solo_isolated (bool yn, void *src)
735 {
736         if (is_master() || is_monitor() || is_hidden()) {
737                 return;
738         }
739
740         if (_route_group && src != _route_group && _route_group->is_active() && _route_group->is_solo()) {
741                 _route_group->foreach_route (boost::bind (&Route::set_solo_isolated, _1, yn, _route_group));
742                 return;
743         }
744         
745         /* forward propagate solo-isolate status to everything fed by this route, but not those via sends only */
746
747         boost::shared_ptr<RouteList> routes = _session.get_routes ();
748         for (RouteList::iterator i = routes->begin(); i != routes->end(); ++i) {
749
750                 if ((*i).get() == this || (*i)->is_master() || (*i)->is_monitor() || (*i)->is_hidden()) {
751                         continue;
752                 }
753
754                 bool sends_only;
755                 bool does_feed = direct_feeds (*i, &sends_only); // we will recurse anyway, so don't use ::feeds()
756                 
757                 if (does_feed && !sends_only) {
758                         (*i)->set_solo_isolated (yn, (*i)->route_group());
759                 }
760         }
761
762         /* XXX should we back-propagate as well? (April 2010: myself and chris goddard think not) */
763
764         bool changed = false;
765
766         if (yn) {
767                 if (_solo_isolated == 0) {
768                         _mute_master->set_solo_ignore (true);
769                         changed = true;
770                 }
771                 _solo_isolated++;
772         } else {
773                 if (_solo_isolated > 0) {
774                         _solo_isolated--;
775                         if (_solo_isolated == 0) {
776                                 _mute_master->set_solo_ignore (false);
777                                 changed = true;
778                         }
779                 }
780         }
781
782         if (changed) {
783                 solo_isolated_changed (src);
784         }
785 }
786
787 bool
788 Route::solo_isolated () const
789 {
790         return _solo_isolated > 0;
791 }
792
793 void
794 Route::set_mute_points (MuteMaster::MutePoint mp)
795 {
796         _mute_master->set_mute_points (mp);
797         mute_points_changed (); /* EMIT SIGNAL */
798         
799         if (_mute_master->muted_by_self()) {
800                 mute_changed (this); /* EMIT SIGNAL */
801                 _mute_control->Changed (); /* EMIT SIGNAL */
802         }
803 }
804
805 void
806 Route::set_mute (bool yn, void *src)
807 {
808         if (_route_group && src != _route_group && _route_group->is_active() && _route_group->is_mute()) {
809                 _route_group->foreach_route (boost::bind (&Route::set_mute, _1, yn, _route_group));
810                 return;
811         }
812
813         if (muted() != yn) {
814                 _mute_master->set_muted_by_self (yn);
815                 mute_changed (src); /* EMIT SIGNAL */
816                 _mute_control->Changed (); /* EMIT SIGNAL */
817         }
818 }
819
820 bool
821 Route::muted () const
822 {
823         return _mute_master->muted_by_self();
824 }
825
826 #if 0
827 static void
828 dump_processors(const string& name, const list<boost::shared_ptr<Processor> >& procs)
829 {
830         cerr << name << " {" << endl;
831         for (list<boost::shared_ptr<Processor> >::const_iterator p = procs.begin();
832                         p != procs.end(); ++p) {
833                 cerr << "\t" << (*p)->name() << " ID = " << (*p)->id() << endl;
834         }
835         cerr << "}" << endl;
836 }
837 #endif
838
839 int
840 Route::add_processor (boost::shared_ptr<Processor> processor, Placement placement, ProcessorStreams* err)
841 {
842         ProcessorList::iterator loc;
843
844         /* XXX this is not thread safe - we don't hold the lock across determining the iter
845            to add before and actually doing the insertion. dammit.
846         */
847
848         if (placement == PreFader) {
849                 /* generic pre-fader: insert immediately before the amp */
850                 loc = find (_processors.begin(), _processors.end(), _amp);
851         } else {
852                 /* generic post-fader: insert right before the main outs */
853                 loc = find (_processors.begin(), _processors.end(), _main_outs);
854         }
855
856         return add_processor (processor, loc, err);
857 }
858
859
860 /** Add a processor to the route.
861  *  @param iter an iterator in _processors; the new processor will be inserted immediately before this location.
862  */
863 int
864 Route::add_processor (boost::shared_ptr<Processor> processor, ProcessorList::iterator iter, ProcessorStreams* err, bool activation_allowed)
865 {
866         assert (processor != _meter);
867         assert (processor != _main_outs);
868         
869         ChanCount old_pms = processor_max_streams;
870
871         if (!_session.engine().connected() || !processor) {
872                 return 1;
873         }
874
875         {
876                 Glib::RWLock::WriterLock lm (_processor_lock);
877                 ProcessorState pstate (this);
878
879                 boost::shared_ptr<PluginInsert> pi;
880                 boost::shared_ptr<PortInsert> porti;
881
882                 ProcessorList::iterator loc = find(_processors.begin(), _processors.end(), processor);
883
884                 if (processor == _amp) {
885                         // Ensure only one amp is in the list at any time
886                         if (loc != _processors.end()) {
887                                 if (iter == loc) { // Already in place, do nothing
888                                         return 0;
889                                 } else { // New position given, relocate
890                                         _processors.erase (loc);
891                                 }
892                         }
893
894                 } else {
895                         if (loc != _processors.end()) {
896                                 cerr << "ERROR: Processor added to route twice!" << endl;
897                                 return 1;
898                         }
899
900                         loc = iter;
901                 }
902
903                 _processors.insert (loc, processor);
904
905                 // Set up processor list channels.  This will set processor->[input|output]_streams(),
906                 // configure redirect ports properly, etc.
907
908                 {
909                         Glib::Mutex::Lock lm (AudioEngine::instance()->process_lock ());
910
911                         if (configure_processors_unlocked (err)) {
912                                 pstate.restore ();
913                                 configure_processors_unlocked (0); // it worked before we tried to add it ...
914                                 cerr << "configure failed\n";
915                                 return -1;
916                         }
917                 }
918
919                 if ((pi = boost::dynamic_pointer_cast<PluginInsert>(processor)) != 0) {
920
921                         if (pi->natural_input_streams() == ChanCount::ZERO) {
922                                 /* generator plugin */
923                                 _have_internal_generator = true;
924                         }
925
926                 }
927
928                 if (activation_allowed) {
929                         processor->activate ();
930                 }
931
932                 processor->ActiveChanged.connect_same_thread (*this, boost::bind (&Session::update_latency_compensation, &_session, false, false));
933
934                 _output->set_user_latency (0);
935         }
936
937         processors_changed (RouteProcessorChange ()); /* EMIT SIGNAL */
938         set_processor_positions ();
939
940         return 0;
941 }
942
943 bool
944 Route::add_processor_from_xml_2X (const XMLNode& node, int version)
945 {
946         const XMLProperty *prop;
947
948         try {
949                 boost::shared_ptr<Processor> processor;
950
951                 /* bit of a hack: get the `placement' property from the <Redirect> tag here
952                    so that we can add the processor in the right place (pre/post-fader)
953                 */
954
955                 XMLNodeList const & children = node.children ();
956                 XMLNodeList::const_iterator i = children.begin ();
957                 
958                 while (i != children.end() && (*i)->name() != X_("Redirect")) {
959                         ++i;
960                 }
961
962                 Placement placement = PreFader;
963
964                 if (i != children.end()) {
965                         if ((prop = (*i)->property (X_("placement"))) != 0) {
966                                 placement = Placement (string_2_enum (prop->value(), placement));
967                         }
968                 }
969
970                 if (node.name() == "Insert") {
971
972                         if ((prop = node.property ("type")) != 0) {
973
974                                 if (prop->value() == "ladspa" || prop->value() == "Ladspa" || 
975                                                 prop->value() == "lv2" ||
976                                                 prop->value() == "vst" ||
977                                                 prop->value() == "audiounit") {
978
979                                         processor.reset (new PluginInsert (_session));
980
981                                 } else {
982
983                                         processor.reset (new PortInsert (_session, _pannable, _mute_master));
984                                 }
985
986                         }
987
988                 } else if (node.name() == "Send") {
989
990                         processor.reset (new Send (_session, _pannable, _mute_master));
991
992                 } else {
993
994                         error << string_compose(_("unknown Processor type \"%1\"; ignored"), node.name()) << endmsg;
995                         return false;
996                 }
997
998                 if (processor->set_state (node, version)) {
999                         return false;
1000                 }
1001
1002                 return (add_processor (processor, placement) == 0);
1003         }
1004
1005         catch (failed_constructor &err) {
1006                 warning << _("processor could not be created. Ignored.") << endmsg;
1007                 return false;
1008         }
1009 }
1010
1011 int
1012 Route::add_processors (const ProcessorList& others, boost::shared_ptr<Processor> before, ProcessorStreams* err)
1013 {
1014         /* NOTE: this is intended to be used ONLY when copying
1015            processors from another Route. Hence the subtle
1016            differences between this and ::add_processor()
1017         */
1018
1019         ProcessorList::iterator loc;
1020
1021         if (before) {
1022                 loc = find(_processors.begin(), _processors.end(), before);
1023         } else {
1024                 /* nothing specified - at end */
1025                 loc = _processors.end ();
1026         }
1027
1028         ChanCount old_pms = processor_max_streams;
1029
1030         if (!_session.engine().connected()) {
1031                 return 1;
1032         }
1033
1034         if (others.empty()) {
1035                 return 0;
1036         }
1037
1038         {
1039                 Glib::RWLock::WriterLock lm (_processor_lock);
1040                 ProcessorState pstate (this);
1041
1042                 for (ProcessorList::const_iterator i = others.begin(); i != others.end(); ++i) {
1043
1044                         if (*i == _meter) {
1045                                 continue;
1046                         }
1047
1048                         boost::shared_ptr<PluginInsert> pi;
1049
1050                         if ((pi = boost::dynamic_pointer_cast<PluginInsert>(*i)) != 0) {
1051                                 pi->set_count (1);
1052                         }
1053
1054                         ProcessorList::iterator inserted = _processors.insert (loc, *i);
1055
1056                         if ((*i)->active()) {
1057                                 (*i)->activate ();
1058                         }
1059
1060                         {
1061                                 Glib::Mutex::Lock lm (AudioEngine::instance()->process_lock ());
1062                                 if (configure_processors_unlocked (err)) {
1063                                         pstate.restore ();
1064                                         configure_processors_unlocked (0); // it worked before we tried to add it ...
1065                                         return -1;
1066                                 }
1067                         }
1068
1069                         (*i)->ActiveChanged.connect_same_thread (*this, boost::bind (&Session::update_latency_compensation, &_session, false, false));
1070                 }
1071
1072                 _output->set_user_latency (0);
1073         }
1074
1075         processors_changed (RouteProcessorChange ()); /* EMIT SIGNAL */
1076         set_processor_positions ();
1077
1078         return 0;
1079 }
1080
1081 void
1082 Route::placement_range(Placement p, ProcessorList::iterator& start, ProcessorList::iterator& end)
1083 {
1084         if (p == PreFader) {
1085                 start = _processors.begin();
1086                 end = find(_processors.begin(), _processors.end(), _amp);
1087         } else {
1088                 start = find(_processors.begin(), _processors.end(), _amp);
1089                 ++start;
1090                 end = _processors.end();
1091         }
1092 }
1093
1094 /** Turn off all processors with a given placement
1095  * @param p Placement of processors to disable
1096  */
1097 void
1098 Route::disable_processors (Placement p)
1099 {
1100         Glib::RWLock::ReaderLock lm (_processor_lock);
1101
1102         ProcessorList::iterator start, end;
1103         placement_range(p, start, end);
1104
1105         for (ProcessorList::iterator i = start; i != end; ++i) {
1106                 (*i)->deactivate ();
1107         }
1108
1109         _session.set_dirty ();
1110 }
1111
1112 /** Turn off all redirects
1113  */
1114 void
1115 Route::disable_processors ()
1116 {
1117         Glib::RWLock::ReaderLock lm (_processor_lock);
1118
1119         for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
1120                 (*i)->deactivate ();
1121         }
1122
1123         _session.set_dirty ();
1124 }
1125
1126 /** Turn off all redirects with a given placement
1127  * @param p Placement of redirects to disable
1128  */
1129 void
1130 Route::disable_plugins (Placement p)
1131 {
1132         Glib::RWLock::ReaderLock lm (_processor_lock);
1133
1134         ProcessorList::iterator start, end;
1135         placement_range(p, start, end);
1136
1137         for (ProcessorList::iterator i = start; i != end; ++i) {
1138                 if (boost::dynamic_pointer_cast<PluginInsert> (*i)) {
1139                         (*i)->deactivate ();
1140                 }
1141         }
1142
1143         _session.set_dirty ();
1144 }
1145
1146 /** Turn off all plugins
1147  */
1148 void
1149 Route::disable_plugins ()
1150 {
1151         Glib::RWLock::ReaderLock lm (_processor_lock);
1152
1153         for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
1154                 if (boost::dynamic_pointer_cast<PluginInsert> (*i)) {
1155                         (*i)->deactivate ();
1156                 }
1157         }
1158
1159         _session.set_dirty ();
1160 }
1161
1162
1163 void
1164 Route::ab_plugins (bool forward)
1165 {
1166         Glib::RWLock::ReaderLock lm (_processor_lock);
1167
1168         if (forward) {
1169
1170                 /* forward = turn off all active redirects, and mark them so that the next time
1171                    we go the other way, we will revert them
1172                 */
1173
1174                 for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
1175                         if (!boost::dynamic_pointer_cast<PluginInsert> (*i)) {
1176                                 continue;
1177                         }
1178
1179                         if ((*i)->active()) {
1180                                 (*i)->deactivate ();
1181                                 (*i)->set_next_ab_is_active (true);
1182                         } else {
1183                                 (*i)->set_next_ab_is_active (false);
1184                         }
1185                 }
1186
1187         } else {
1188
1189                 /* backward = if the redirect was marked to go active on the next ab, do so */
1190
1191                 for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
1192
1193                         if (!boost::dynamic_pointer_cast<PluginInsert> (*i)) {
1194                                 continue;
1195                         }
1196
1197                         if ((*i)->get_next_ab_is_active()) {
1198                                 (*i)->activate ();
1199                         } else {
1200                                 (*i)->deactivate ();
1201                         }
1202                 }
1203         }
1204
1205         _session.set_dirty ();
1206 }
1207
1208
1209 /** Remove processors with a given placement.
1210  * @param p Placement of processors to remove.
1211  */
1212 void
1213 Route::clear_processors (Placement p)
1214 {
1215         const ChanCount old_pms = processor_max_streams;
1216
1217         if (!_session.engine().connected()) {
1218                 return;
1219         }
1220
1221         bool already_deleting = _session.deletion_in_progress();
1222         if (!already_deleting) {
1223                 _session.set_deletion_in_progress();
1224         }
1225
1226         {
1227                 Glib::RWLock::WriterLock lm (_processor_lock);
1228                 ProcessorList new_list;
1229                 ProcessorStreams err;
1230                 bool seen_amp = false;
1231
1232                 for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
1233
1234                         if (*i == _amp) {
1235                                 seen_amp = true;
1236                         }
1237
1238                         if ((*i) == _amp || (*i) == _meter || (*i) == _main_outs) {
1239
1240                                 /* you can't remove these */
1241
1242                                 new_list.push_back (*i);
1243
1244                         } else {
1245                                 if (seen_amp) {
1246
1247                                         switch (p) {
1248                                         case PreFader:
1249                                                 new_list.push_back (*i);
1250                                                 break;
1251                                         case PostFader:
1252                                                 (*i)->drop_references ();
1253                                                 break;
1254                                         }
1255
1256                                 } else {
1257
1258                                         switch (p) {
1259                                         case PreFader:
1260                                                 (*i)->drop_references ();
1261                                                 break;
1262                                         case PostFader:
1263                                                 new_list.push_back (*i);
1264                                                 break;
1265                                         }
1266                                 }
1267                         }
1268                 }
1269
1270                 _processors = new_list;
1271
1272                 {
1273                         Glib::Mutex::Lock lm (AudioEngine::instance()->process_lock ());
1274                         configure_processors_unlocked (&err); // this can't fail
1275                 }
1276         }
1277
1278         processor_max_streams.reset();
1279         _have_internal_generator = false;
1280         processors_changed (RouteProcessorChange ()); /* EMIT SIGNAL */
1281         set_processor_positions ();
1282
1283         if (!already_deleting) {
1284                 _session.clear_deletion_in_progress();
1285         }
1286 }
1287
1288 int
1289 Route::remove_processor (boost::shared_ptr<Processor> processor, ProcessorStreams* err)
1290 {
1291         /* these can never be removed */
1292
1293         if (processor == _amp || processor == _meter || processor == _main_outs) {
1294                 return 0;
1295         }
1296
1297         ChanCount old_pms = processor_max_streams;
1298
1299         if (!_session.engine().connected()) {
1300                 return 1;
1301         }
1302
1303         processor_max_streams.reset();
1304
1305         {
1306                 Glib::RWLock::WriterLock lm (_processor_lock);
1307                 ProcessorState pstate (this);
1308                 
1309                 ProcessorList::iterator i;
1310                 bool removed = false;
1311
1312                 for (i = _processors.begin(); i != _processors.end(); ) {
1313                         if (*i == processor) {
1314
1315                                 /* move along, see failure case for configure_processors()
1316                                    where we may need to reconfigure the processor.
1317                                 */
1318
1319                                 /* stop redirects that send signals to JACK ports
1320                                    from causing noise as a result of no longer being
1321                                    run.
1322                                 */
1323
1324                                 boost::shared_ptr<IOProcessor> iop;
1325
1326                                 if ((iop = boost::dynamic_pointer_cast<IOProcessor> (*i)) != 0) {
1327                                         if (iop->input()) {
1328                                                 iop->input()->disconnect (this);
1329                                         }
1330                                         if (iop->output()) {
1331                                                 iop->output()->disconnect (this);
1332                                         }
1333                                 }
1334
1335                                 i = _processors.erase (i);
1336                                 removed = true;
1337                                 break;
1338
1339                         } else {
1340                                 ++i;
1341                         }
1342
1343                         _output->set_user_latency (0);
1344                 }
1345
1346                 if (!removed) {
1347                         /* what? */
1348                         return 1;
1349                 }
1350
1351                 {
1352                         Glib::Mutex::Lock lm (AudioEngine::instance()->process_lock ());
1353                 
1354                         if (configure_processors_unlocked (err)) {
1355                                 pstate.restore ();
1356                                 /* we know this will work, because it worked before :) */
1357                                 configure_processors_unlocked (0);
1358                                 return -1;
1359                         }
1360                 }
1361
1362                 _have_internal_generator = false;
1363
1364                 for (i = _processors.begin(); i != _processors.end(); ++i) {
1365                         boost::shared_ptr<PluginInsert> pi;
1366
1367                         if ((pi = boost::dynamic_pointer_cast<PluginInsert>(*i)) != 0) {
1368                                 if (pi->is_generator()) {
1369                                         _have_internal_generator = true;
1370                                         break;
1371                                 }
1372                         }
1373                 }
1374         }
1375
1376         processor->drop_references ();
1377         processors_changed (RouteProcessorChange ()); /* EMIT SIGNAL */
1378         set_processor_positions ();
1379
1380         return 0;
1381 }
1382
1383 int
1384 Route::remove_processors (const ProcessorList& to_be_deleted, ProcessorStreams* err)
1385 {
1386         ProcessorList deleted;
1387
1388         if (!_session.engine().connected()) {
1389                 return 1;
1390         }
1391
1392         processor_max_streams.reset();
1393
1394         {
1395                 Glib::RWLock::WriterLock lm (_processor_lock);
1396                 ProcessorState pstate (this);
1397                 
1398                 ProcessorList::iterator i;
1399                 boost::shared_ptr<Processor> processor;
1400
1401                 for (i = _processors.begin(); i != _processors.end(); ) {
1402
1403                         processor = *i;
1404
1405                         /* these can never be removed */
1406
1407                         if (processor == _amp || processor == _meter || processor == _main_outs) {
1408                                 ++i;
1409                                 continue;
1410                         }
1411
1412                         /* see if its in the list of processors to delete */
1413
1414                         if (find (to_be_deleted.begin(), to_be_deleted.end(), processor) == to_be_deleted.end()) {
1415                                 ++i;
1416                                 continue;
1417                         }
1418
1419                         /* stop IOProcessors that send to JACK ports
1420                            from causing noise as a result of no longer being
1421                            run.
1422                         */
1423
1424                         boost::shared_ptr<IOProcessor> iop;
1425
1426                         if ((iop = boost::dynamic_pointer_cast<IOProcessor> (processor)) != 0) {
1427                                 iop->disconnect ();
1428                         }
1429
1430                         deleted.push_back (processor);
1431                         i = _processors.erase (i);
1432                 }
1433
1434                 if (deleted.empty()) {
1435                         /* none of those in the requested list were found */
1436                         return 0;
1437                 }
1438
1439                 _output->set_user_latency (0);
1440
1441                 {
1442                         Glib::Mutex::Lock lm (AudioEngine::instance()->process_lock ());
1443                 
1444                         if (configure_processors_unlocked (err)) {
1445                                 pstate.restore ();
1446                                 /* we know this will work, because it worked before :) */
1447                                 configure_processors_unlocked (0);
1448                                 return -1;
1449                         }
1450                 }
1451
1452                 _have_internal_generator = false;
1453
1454                 for (i = _processors.begin(); i != _processors.end(); ++i) {
1455                         boost::shared_ptr<PluginInsert> pi;
1456
1457                         if ((pi = boost::dynamic_pointer_cast<PluginInsert>(*i)) != 0) {
1458                                 if (pi->is_generator()) {
1459                                         _have_internal_generator = true;
1460                                         break;
1461                                 }
1462                         }
1463                 }
1464         }
1465
1466         /* now try to do what we need to so that those that were removed will be deleted */
1467
1468         for (ProcessorList::iterator i = deleted.begin(); i != deleted.end(); ++i) {
1469                 (*i)->drop_references ();
1470         }
1471
1472         processors_changed (RouteProcessorChange ()); /* EMIT SIGNAL */
1473         set_processor_positions ();
1474
1475         return 0;
1476 }
1477
1478 /** Caller must hold process lock */
1479 int
1480 Route::configure_processors (ProcessorStreams* err)
1481 {
1482         assert (!AudioEngine::instance()->process_lock().trylock());
1483         
1484         if (!_in_configure_processors) {
1485                 Glib::RWLock::WriterLock lm (_processor_lock);
1486                 return configure_processors_unlocked (err);
1487         }
1488         
1489         return 0;
1490 }
1491
1492 ChanCount
1493 Route::input_streams () const
1494 {
1495         return _input->n_ports ();
1496 }
1497
1498 list<pair<ChanCount, ChanCount> >
1499 Route::try_configure_processors (ChanCount in, ProcessorStreams* err)
1500 {
1501         Glib::RWLock::ReaderLock lm (_processor_lock);
1502
1503         return try_configure_processors_unlocked (in, err);
1504 }
1505
1506 list<pair<ChanCount, ChanCount> >
1507 Route::try_configure_processors_unlocked (ChanCount in, ProcessorStreams* err)
1508 {
1509         // Check each processor in order to see if we can configure as requested
1510         ChanCount out;
1511         list<pair<ChanCount, ChanCount> > configuration;
1512         uint32_t index = 0;
1513
1514         DEBUG_TRACE (DEBUG::Processors, string_compose ("%1: configure processors\n", _name));
1515         DEBUG_TRACE (DEBUG::Processors, "{\n");
1516
1517         for (ProcessorList::iterator p = _processors.begin(); p != _processors.end(); ++p, ++index) {
1518
1519                 if (boost::dynamic_pointer_cast<UnknownProcessor> (*p)) {
1520                         DEBUG_TRACE (DEBUG::Processors, "--- CONFIGURE ABORTED due to unknown processor.\n");
1521                         break;
1522                 }
1523                 
1524                 if ((*p)->can_support_io_configuration(in, out)) {
1525                         DEBUG_TRACE (DEBUG::Processors, string_compose ("\t%1 ID=%2 in=%3 out=%4\n",(*p)->name(), (*p)->id(), in, out));
1526                         configuration.push_back(make_pair(in, out));
1527                         in = out;
1528                 } else {
1529                         if (err) {
1530                                 err->index = index;
1531                                 err->count = in;
1532                         }
1533                         DEBUG_TRACE (DEBUG::Processors, "---- CONFIGURATION FAILED.\n");
1534                         DEBUG_TRACE (DEBUG::Processors, string_compose ("---- %1 cannot support in=%2 out=%3\n", (*p)->name(), in, out));
1535                         DEBUG_TRACE (DEBUG::Processors, "}\n");
1536                         return list<pair<ChanCount, ChanCount> > ();
1537                 }
1538         }
1539
1540         DEBUG_TRACE (DEBUG::Processors, "}\n");
1541         
1542         return configuration;
1543 }
1544
1545 /** Set the input/output configuration of each processor in the processors list.
1546  *  Caller must hold process lock.
1547  *  Return 0 on success, otherwise configuration is impossible.
1548  */
1549 int
1550 Route::configure_processors_unlocked (ProcessorStreams* err)
1551 {
1552         assert (!AudioEngine::instance()->process_lock().trylock());
1553
1554         if (_in_configure_processors) {
1555                 return 0;
1556         }
1557
1558         /* put invisible processors where they should be */
1559         setup_invisible_processors ();
1560
1561         _in_configure_processors = true;
1562
1563         list<pair<ChanCount, ChanCount> > configuration = try_configure_processors_unlocked (input_streams (), err);
1564
1565         if (configuration.empty ()) {
1566                 _in_configure_processors = false;
1567                 return -1;
1568         }
1569
1570         ChanCount out;
1571
1572         list< pair<ChanCount,ChanCount> >::iterator c = configuration.begin();
1573         for (ProcessorList::iterator p = _processors.begin(); p != _processors.end(); ++p, ++c) {
1574
1575                 if (boost::dynamic_pointer_cast<UnknownProcessor> (*p)) {
1576                         break;
1577                 }
1578                 
1579                 (*p)->configure_io(c->first, c->second);
1580                 processor_max_streams = ChanCount::max(processor_max_streams, c->first);
1581                 processor_max_streams = ChanCount::max(processor_max_streams, c->second);
1582                 out = c->second;
1583         }
1584
1585         if (_meter) {
1586                 _meter->reset_max_channels (processor_max_streams);
1587         }
1588
1589         /* make sure we have sufficient scratch buffers to cope with the new processor
1590            configuration */
1591         _session.ensure_buffers (n_process_buffers ());
1592
1593         DEBUG_TRACE (DEBUG::Processors, string_compose ("%1: configuration complete\n", _name));
1594
1595         _in_configure_processors = false;
1596         return 0;
1597 }
1598
1599 void
1600 Route::all_processors_flip ()
1601 {
1602         Glib::RWLock::ReaderLock lm (_processor_lock);
1603
1604         if (_processors.empty()) {
1605                 return;
1606         }
1607
1608         bool first_is_on = _processors.front()->active();
1609
1610         for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
1611                 if (first_is_on) {
1612                         (*i)->deactivate ();
1613                 } else {
1614                         (*i)->activate ();
1615                 }
1616         }
1617
1618         _session.set_dirty ();
1619 }
1620
1621 /** Set all processors with a given placement to a given active state.
1622  * @param p Placement of processors to change.
1623  * @param state New active state for those processors.
1624  */
1625 void
1626 Route::all_processors_active (Placement p, bool state)
1627 {
1628         Glib::RWLock::ReaderLock lm (_processor_lock);
1629
1630         if (_processors.empty()) {
1631                 return;
1632         }
1633         ProcessorList::iterator start, end;
1634         placement_range(p, start, end);
1635
1636         bool before_amp = true;
1637         for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
1638                 if ((*i) == _amp) {
1639                         before_amp = false;
1640                         continue;
1641                 }
1642                 if (p == PreFader && before_amp) {
1643                         if (state) {
1644                                 (*i)->activate ();
1645                         } else {
1646                                 (*i)->deactivate ();
1647                         }
1648                 }
1649         }
1650
1651         _session.set_dirty ();
1652 }
1653
1654 bool
1655 Route::processor_is_prefader (boost::shared_ptr<Processor> p)
1656 {
1657         bool pre_fader = true;
1658         Glib::RWLock::ReaderLock lm (_processor_lock);
1659
1660         for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
1661
1662                 /* semantic note: if p == amp, we want to return true, so test
1663                    for equality before checking if this is the amp
1664                 */
1665
1666                 if ((*i) == p) {
1667                         break;
1668                 }
1669
1670                 if ((*i) == _amp) {
1671                         pre_fader = false;
1672                         break;
1673                 }
1674         }
1675
1676         return pre_fader;
1677 }
1678
1679 int
1680 Route::reorder_processors (const ProcessorList& new_order, ProcessorStreams* err)
1681 {
1682         /* "new_order" is an ordered list of processors to be positioned according to "placement".
1683            NOTE: all processors in "new_order" MUST be marked as display_to_user(). There maybe additional
1684            processors in the current actual processor list that are hidden. Any visible processors
1685            in the current list but not in "new_order" will be assumed to be deleted.
1686         */
1687
1688         {
1689                 Glib::RWLock::WriterLock lm (_processor_lock);
1690                 ProcessorState pstate (this);
1691                 
1692                 ProcessorList::iterator oiter;
1693                 ProcessorList::const_iterator niter;
1694                 ProcessorList as_it_will_be;
1695
1696                 oiter = _processors.begin();
1697                 niter = new_order.begin();
1698
1699                 while (niter !=  new_order.end()) {
1700
1701                         /* if the next processor in the old list is invisible (i.e. should not be in the new order)
1702                            then append it to the temp list.
1703
1704                            Otherwise, see if the next processor in the old list is in the new list. if not,
1705                            its been deleted. If its there, append it to the temp list.
1706                         */
1707
1708                         if (oiter == _processors.end()) {
1709
1710                                 /* no more elements in the old list, so just stick the rest of
1711                                    the new order onto the temp list.
1712                                 */
1713
1714                                 as_it_will_be.insert (as_it_will_be.end(), niter, new_order.end());
1715                                 while (niter != new_order.end()) {
1716                                         ++niter;
1717                                 }
1718                                 break;
1719
1720                         } else {
1721
1722                                 if (!(*oiter)->display_to_user()) {
1723
1724                                         as_it_will_be.push_back (*oiter);
1725
1726                                 } else {
1727
1728                                         /* visible processor: check that its in the new order */
1729
1730                                         if (find (new_order.begin(), new_order.end(), (*oiter)) == new_order.end()) {
1731                                                 /* deleted: do nothing, shared_ptr<> will clean up */
1732                                         } else {
1733                                                 /* ignore this one, and add the next item from the new order instead */
1734                                                 as_it_will_be.push_back (*niter);
1735                                                 ++niter;
1736                                         }
1737                                 }
1738
1739                                 /* now remove from old order - its taken care of no matter what */
1740                                 oiter = _processors.erase (oiter);
1741                         }
1742
1743                 }
1744
1745                 _processors.insert (oiter, as_it_will_be.begin(), as_it_will_be.end());
1746
1747                 {
1748                         Glib::Mutex::Lock lm (AudioEngine::instance()->process_lock ());
1749                 
1750                         if (configure_processors_unlocked (err)) {
1751                                 pstate.restore ();
1752                                 return -1;
1753                         }
1754                 }
1755         }
1756
1757         processors_changed (RouteProcessorChange ()); /* EMIT SIGNAL */
1758         set_processor_positions ();
1759
1760         return 0;
1761 }
1762
1763 XMLNode&
1764 Route::get_state()
1765 {
1766         return state(true);
1767 }
1768
1769 XMLNode&
1770 Route::get_template()
1771 {
1772         return state(false);
1773 }
1774
1775 XMLNode&
1776 Route::state(bool full_state)
1777 {
1778         XMLNode *node = new XMLNode("Route");
1779         ProcessorList::iterator i;
1780         char buf[32];
1781
1782         id().print (buf, sizeof (buf));
1783         node->add_property("id", buf);
1784         node->add_property ("name", _name);
1785         node->add_property("default-type", _default_type.to_string());
1786
1787         if (_flags) {
1788                 node->add_property("flags", enum_2_string (_flags));
1789         }
1790
1791         node->add_property("active", _active?"yes":"no");
1792         string p;
1793         boost::to_string (_phase_invert, p);
1794         node->add_property("phase-invert", p);
1795         node->add_property("denormal-protection", _denormal_protection?"yes":"no");
1796         node->add_property("meter-point", enum_2_string (_meter_point));
1797
1798         if (_route_group) {
1799                 node->add_property("route-group", _route_group->name());
1800         }
1801
1802         string order_string;
1803         OrderKeys::iterator x = order_keys.begin();
1804
1805         while (x != order_keys.end()) {
1806                 order_string += string ((*x).first);
1807                 order_string += '=';
1808                 snprintf (buf, sizeof(buf), "%ld", (*x).second);
1809                 order_string += buf;
1810
1811                 ++x;
1812
1813                 if (x == order_keys.end()) {
1814                         break;
1815                 }
1816
1817                 order_string += ':';
1818         }
1819         node->add_property ("order-keys", order_string);
1820         node->add_property ("self-solo", (_self_solo ? "yes" : "no"));
1821         snprintf (buf, sizeof (buf), "%d", _soloed_by_others_upstream);
1822         node->add_property ("soloed-by-upstream", buf);
1823         snprintf (buf, sizeof (buf), "%d", _soloed_by_others_downstream);
1824         node->add_property ("soloed-by-downstream", buf);
1825         node->add_property ("solo-isolated", solo_isolated() ? "yes" : "no");
1826         node->add_property ("solo-safe", _solo_safe ? "yes" : "no");
1827
1828         node->add_child_nocopy (_input->state (full_state));
1829         node->add_child_nocopy (_output->state (full_state));
1830         node->add_child_nocopy (_solo_control->get_state ());
1831         node->add_child_nocopy (_mute_control->get_state ());
1832         node->add_child_nocopy (_mute_master->get_state ());
1833
1834         XMLNode* remote_control_node = new XMLNode (X_("RemoteControl"));
1835         snprintf (buf, sizeof (buf), "%d", _remote_control_id);
1836         remote_control_node->add_property (X_("id"), buf);
1837         node->add_child_nocopy (*remote_control_node);
1838
1839         if (_comment.length()) {
1840                 XMLNode *cmt = node->add_child ("Comment");
1841                 cmt->add_content (_comment);
1842         }
1843
1844         node->add_child_nocopy (_pannable->state (full_state));
1845
1846         for (i = _processors.begin(); i != _processors.end(); ++i) {
1847                 node->add_child_nocopy((*i)->state (full_state));
1848         }
1849
1850         if (_extra_xml){
1851                 node->add_child_copy (*_extra_xml);
1852         }
1853
1854         return *node;
1855 }
1856
1857 int
1858 Route::set_state (const XMLNode& node, int version)
1859 {
1860         return _set_state (node, version, true);
1861 }
1862
1863 int
1864 Route::_set_state (const XMLNode& node, int version, bool /*call_base*/)
1865 {
1866         if (version < 3000) {
1867                 return _set_state_2X (node, version);
1868         }
1869
1870         XMLNodeList nlist;
1871         XMLNodeConstIterator niter;
1872         XMLNode *child;
1873         const XMLProperty *prop;
1874
1875         if (node.name() != "Route"){
1876                 error << string_compose(_("Bad node sent to Route::set_state() [%1]"), node.name()) << endmsg;
1877                 return -1;
1878         }
1879
1880         if ((prop = node.property (X_("name"))) != 0) {
1881                 Route::set_name (prop->value());
1882         }
1883
1884         if ((prop = node.property ("id")) != 0) {
1885                 _id = prop->value ();
1886         }
1887
1888         if ((prop = node.property (X_("flags"))) != 0) {
1889                 _flags = Flag (string_2_enum (prop->value(), _flags));
1890         } else {
1891                 _flags = Flag (0);
1892         }
1893
1894         if (is_master() || is_monitor() || is_hidden()) {
1895                 _mute_master->set_solo_ignore (true);
1896         }
1897
1898         /* add all processors (except amp, which is always present) */
1899
1900         nlist = node.children();
1901         XMLNode processor_state (X_("processor_state"));
1902
1903         for (niter = nlist.begin(); niter != nlist.end(); ++niter){
1904
1905                 child = *niter;
1906
1907                 if (child->name() == IO::state_node_name) {
1908                         if ((prop = child->property (X_("direction"))) == 0) {
1909                                 continue;
1910                         }
1911
1912                         if (prop->value() == "Input") {
1913                                 _input->set_state (*child, version);
1914                         } else if (prop->value() == "Output") {
1915                                 _output->set_state (*child, version);
1916                         }
1917                 }
1918
1919                 if (child->name() == X_("Processor")) {
1920                         processor_state.add_child_copy (*child);
1921                 }
1922
1923
1924                 if (child->name() == X_("Pannable")) {
1925                         _pannable->set_state (*child, version);
1926                 }
1927         }
1928
1929         set_processor_state (processor_state);
1930
1931         if ((prop = node.property ("self-solo")) != 0) {
1932                 set_self_solo (string_is_affirmative (prop->value()));
1933         }
1934
1935         if ((prop = node.property ("soloed-by-upstream")) != 0) {
1936                 _soloed_by_others_upstream = 0; // needed for mod_.... () to work
1937                 mod_solo_by_others_upstream (atoi (prop->value()));
1938         }
1939
1940         if ((prop = node.property ("soloed-by-downstream")) != 0) {
1941                 _soloed_by_others_downstream = 0; // needed for mod_.... () to work
1942                 mod_solo_by_others_downstream (atoi (prop->value()));
1943         }
1944
1945         if ((prop = node.property ("solo-isolated")) != 0) {
1946                 set_solo_isolated (string_is_affirmative (prop->value()), this);
1947         }
1948
1949         if ((prop = node.property ("solo-safe")) != 0) {
1950                 set_solo_safe (string_is_affirmative (prop->value()), this);
1951         }
1952
1953         if ((prop = node.property (X_("phase-invert"))) != 0) {
1954                 set_phase_invert (boost::dynamic_bitset<> (prop->value ()));
1955         }
1956
1957         if ((prop = node.property (X_("denormal-protection"))) != 0) {
1958                 set_denormal_protection (string_is_affirmative (prop->value()));
1959         }
1960
1961         if ((prop = node.property (X_("active"))) != 0) {
1962                 bool yn = string_is_affirmative (prop->value());
1963                 _active = !yn; // force switch
1964                 set_active (yn, this);
1965         }
1966
1967         if ((prop = node.property (X_("meter-point"))) != 0) {
1968                 MeterPoint mp = MeterPoint (string_2_enum (prop->value (), _meter_point));
1969                 set_meter_point (mp, true);
1970                 if (_meter) {
1971                         _meter->set_display_to_user (_meter_point == MeterCustom);
1972                 }
1973         }
1974
1975         if ((prop = node.property (X_("order-keys"))) != 0) {
1976
1977                 int32_t n;
1978
1979                 string::size_type colon, equal;
1980                 string remaining = prop->value();
1981
1982                 while (remaining.length()) {
1983
1984                         if ((equal = remaining.find_first_of ('=')) == string::npos || equal == remaining.length()) {
1985                                 error << string_compose (_("badly formed order key string in state file! [%1] ... ignored."), remaining)
1986                                       << endmsg;
1987                         } else {
1988                                 if (sscanf (remaining.substr (equal+1).c_str(), "%d", &n) != 1) {
1989                                         error << string_compose (_("badly formed order key string in state file! [%1] ... ignored."), remaining)
1990                                               << endmsg;
1991                                 } else {
1992                                         set_order_key (remaining.substr (0, equal), n);
1993                                 }
1994                         }
1995
1996                         colon = remaining.find_first_of (':');
1997
1998                         if (colon != string::npos) {
1999                                 remaining = remaining.substr (colon+1);
2000                         } else {
2001                                 break;
2002                         }
2003                 }
2004         }
2005
2006         for (niter = nlist.begin(); niter != nlist.end(); ++niter){
2007                 child = *niter;
2008
2009                 if (child->name() == X_("Comment")) {
2010
2011                         /* XXX this is a terrible API design in libxml++ */
2012
2013                         XMLNode *cmt = *(child->children().begin());
2014                         _comment = cmt->content();
2015
2016                 } else if (child->name() == X_("Extra")) {
2017
2018                         _extra_xml = new XMLNode (*child);
2019
2020                 } else if (child->name() == Controllable::xml_node_name && (prop = child->property("name")) != 0) {
2021                         if (prop->value() == "solo") {
2022                                 _solo_control->set_state (*child, version);
2023                         }
2024
2025                 } else if (child->name() == X_("RemoteControl")) {
2026                         if ((prop = child->property (X_("id"))) != 0) {
2027                                 int32_t x;
2028                                 sscanf (prop->value().c_str(), "%d", &x);
2029                                 set_remote_control_id (x);
2030                         }
2031
2032                 } else if (child->name() == X_("MuteMaster")) {
2033                         _mute_master->set_state (*child, version);
2034                 }
2035         }
2036
2037         return 0;
2038 }
2039
2040 int
2041 Route::_set_state_2X (const XMLNode& node, int version)
2042 {
2043         XMLNodeList nlist;
2044         XMLNodeConstIterator niter;
2045         XMLNode *child;
2046         const XMLProperty *prop;
2047
2048         /* 2X things which still remain to be handled:
2049          * default-type
2050          * automation
2051          * controlouts
2052          */
2053
2054         if (node.name() != "Route") {
2055                 error << string_compose(_("Bad node sent to Route::set_state() [%1]"), node.name()) << endmsg;
2056                 return -1;
2057         }
2058
2059         if ((prop = node.property (X_("flags"))) != 0) {
2060                 _flags = Flag (string_2_enum (prop->value(), _flags));
2061         } else {
2062                 _flags = Flag (0);
2063         }
2064         
2065         if ((prop = node.property (X_("phase-invert"))) != 0) {
2066                 boost::dynamic_bitset<> p (_input->n_ports().n_audio ());
2067                 if (string_is_affirmative (prop->value ())) {
2068                         p.set ();
2069                 }                       
2070                 set_phase_invert (p);
2071         }
2072
2073         if ((prop = node.property (X_("denormal-protection"))) != 0) {
2074                 set_denormal_protection (string_is_affirmative (prop->value()));
2075         }
2076
2077         if ((prop = node.property (X_("soloed"))) != 0) {
2078                 bool yn = string_is_affirmative (prop->value());
2079
2080                 /* XXX force reset of solo status */
2081
2082                 set_solo (yn, this);
2083         }
2084
2085         if ((prop = node.property (X_("muted"))) != 0) {
2086                 
2087                 bool first = true;
2088                 bool muted = string_is_affirmative (prop->value());
2089                 
2090                 if (muted){
2091                   
2092                         string mute_point;
2093                         
2094                         if ((prop = node.property (X_("mute-affects-pre-fader"))) != 0) {
2095                           
2096                                 if (string_is_affirmative (prop->value())){
2097                                         mute_point = mute_point + "PreFader";
2098                                         first = false;
2099                                 }
2100                         }
2101                         
2102                         if ((prop = node.property (X_("mute-affects-post-fader"))) != 0) {
2103                           
2104                                 if (string_is_affirmative (prop->value())){
2105                                   
2106                                         if (!first) {
2107                                                 mute_point = mute_point + ",";
2108                                         }
2109                                         
2110                                         mute_point = mute_point + "PostFader";
2111                                         first = false;
2112                                 }
2113                         }
2114
2115                         if ((prop = node.property (X_("mute-affects-control-outs"))) != 0) {
2116                           
2117                                 if (string_is_affirmative (prop->value())){
2118                                   
2119                                         if (!first) {
2120                                                 mute_point = mute_point + ",";
2121                                         }
2122                                         
2123                                         mute_point = mute_point + "Listen";
2124                                         first = false;
2125                                 }
2126                         }
2127
2128                         if ((prop = node.property (X_("mute-affects-main-outs"))) != 0) {
2129                           
2130                                 if (string_is_affirmative (prop->value())){
2131                                   
2132                                         if (!first) {
2133                                                 mute_point = mute_point + ",";
2134                                         }
2135                                         
2136                                         mute_point = mute_point + "Main";
2137                                 }
2138                         }
2139                         
2140                         _mute_master->set_mute_points (mute_point);
2141                 }
2142         }
2143
2144         if ((prop = node.property (X_("meter-point"))) != 0) {
2145                 _meter_point = MeterPoint (string_2_enum (prop->value (), _meter_point));
2146         }
2147
2148         /* do not carry over edit/mix groups from 2.X because (a) its hard (b) they
2149            don't mean the same thing.
2150         */
2151
2152         if ((prop = node.property (X_("order-keys"))) != 0) {
2153
2154                 int32_t n;
2155
2156                 string::size_type colon, equal;
2157                 string remaining = prop->value();
2158
2159                 while (remaining.length()) {
2160
2161                         if ((equal = remaining.find_first_of ('=')) == string::npos || equal == remaining.length()) {
2162                                 error << string_compose (_("badly formed order key string in state file! [%1] ... ignored."), remaining)
2163                                         << endmsg;
2164                         } else {
2165                                 if (sscanf (remaining.substr (equal+1).c_str(), "%d", &n) != 1) {
2166                                         error << string_compose (_("badly formed order key string in state file! [%1] ... ignored."), remaining)
2167                                                 << endmsg;
2168                                 } else {
2169                                         set_order_key (remaining.substr (0, equal), n);
2170                                 }
2171                         }
2172
2173                         colon = remaining.find_first_of (':');
2174
2175                         if (colon != string::npos) {
2176                                 remaining = remaining.substr (colon+1);
2177                         } else {
2178                                 break;
2179                         }
2180                 }
2181         }
2182
2183         /* IOs */
2184
2185         nlist = node.children ();
2186         for (niter = nlist.begin(); niter != nlist.end(); ++niter) {
2187
2188                 child = *niter;
2189
2190                 if (child->name() == IO::state_node_name) {
2191
2192                         /* there is a note in IO::set_state_2X() about why we have to call
2193                            this directly.
2194                            */
2195
2196                         _input->set_state_2X (*child, version, true);
2197                         _output->set_state_2X (*child, version, false);
2198
2199                         if ((prop = child->property (X_("name"))) != 0) {
2200                                 Route::set_name (prop->value ());
2201                         }
2202
2203                         if ((prop = child->property (X_("id"))) != 0) {
2204                                 _id = prop->value ();
2205                         }
2206
2207                         if ((prop = child->property (X_("active"))) != 0) {
2208                                 bool yn = string_is_affirmative (prop->value());
2209                                 _active = !yn; // force switch
2210                                 set_active (yn, this);
2211                         }
2212                         
2213                         if ((prop = child->property (X_("gain"))) != 0) {
2214                                 gain_t val;
2215
2216                                 if (sscanf (prop->value().c_str(), "%f", &val) == 1) {
2217                                         _amp->gain_control()->set_value (val);
2218                                 }
2219                         }
2220                         
2221                         /* Set up Panners in the IO */
2222                         XMLNodeList io_nlist = child->children ();
2223                         
2224                         XMLNodeConstIterator io_niter;
2225                         XMLNode *io_child;
2226                         
2227                         for (io_niter = io_nlist.begin(); io_niter != io_nlist.end(); ++io_niter) {
2228
2229                                 io_child = *io_niter;
2230                                 
2231                                 if (io_child->name() == X_("Panner")) {
2232                                         _main_outs->panner_shell()->set_state(*io_child, version);
2233                                 } else if (io_child->name() == X_("Automation")) {
2234                                         /* IO's automation is for the fader */
2235                                         _amp->set_automation_xml_state (*io_child, Evoral::Parameter (GainAutomation));
2236                                 }
2237                         }
2238                 }
2239         }
2240
2241         XMLNodeList redirect_nodes;
2242
2243         for (niter = nlist.begin(); niter != nlist.end(); ++niter){
2244
2245                 child = *niter;
2246
2247                 if (child->name() == X_("Send") || child->name() == X_("Insert")) {
2248                         redirect_nodes.push_back(child);
2249                 }
2250
2251         }
2252
2253         set_processor_state_2X (redirect_nodes, version);
2254
2255         for (niter = nlist.begin(); niter != nlist.end(); ++niter){
2256                 child = *niter;
2257
2258                 if (child->name() == X_("Comment")) {
2259
2260                         /* XXX this is a terrible API design in libxml++ */
2261
2262                         XMLNode *cmt = *(child->children().begin());
2263                         _comment = cmt->content();
2264
2265                 } else if (child->name() == X_("extra")) {
2266
2267                         _extra_xml = new XMLNode (*child);
2268
2269                 } else if (child->name() == Controllable::xml_node_name && (prop = child->property("name")) != 0) {
2270                         if (prop->value() == X_("solo")) {
2271                                 _solo_control->set_state (*child, version);
2272                         } else if (prop->value() == X_("mute")) {
2273                                 _mute_control->set_state (*child, version);
2274                         }
2275                                 
2276                 } else if (child->name() == X_("RemoteControl")) {
2277                         if ((prop = child->property (X_("id"))) != 0) {
2278                                 int32_t x;
2279                                 sscanf (prop->value().c_str(), "%d", &x);
2280                                 set_remote_control_id (x);
2281                         }
2282
2283                 } 
2284         }
2285
2286         return 0;
2287 }
2288
2289 XMLNode&
2290 Route::get_processor_state ()
2291 {
2292         XMLNode* root = new XMLNode (X_("redirects"));
2293         for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
2294                 root->add_child_nocopy ((*i)->state (true));
2295         }
2296
2297         return *root;
2298 }
2299
2300 void
2301 Route::set_processor_state_2X (XMLNodeList const & nList, int version)
2302 {
2303         /* We don't bother removing existing processors not in nList, as this
2304            method will only be called when creating a Route from scratch, not
2305            for undo purposes.  Just put processors in at the appropriate place
2306            in the list.
2307         */
2308
2309         for (XMLNodeConstIterator i = nList.begin(); i != nList.end(); ++i) {
2310                 add_processor_from_xml_2X (**i, version);
2311         }
2312 }
2313
2314 void
2315 Route::set_processor_state (const XMLNode& node)
2316 {
2317         const XMLNodeList &nlist = node.children();
2318         XMLNodeConstIterator niter;
2319         ProcessorList new_order;
2320         bool must_configure = false;
2321
2322         for (niter = nlist.begin(); niter != nlist.end(); ++niter) {
2323
2324                 XMLProperty* prop = (*niter)->property ("type");
2325
2326                 if (prop->value() == "amp") {
2327                         _amp->set_state (**niter, Stateful::current_state_version);
2328                         new_order.push_back (_amp);
2329                 } else if (prop->value() == "meter") {
2330                         _meter->set_state (**niter, Stateful::current_state_version);
2331                 } else if (prop->value() == "main-outs") {
2332                         _main_outs->set_state (**niter, Stateful::current_state_version);
2333                 } else if (prop->value() == "intreturn") {
2334                         if (!_intreturn) {
2335                                 _intreturn.reset (new InternalReturn (_session));
2336                                 must_configure = true;
2337                         }
2338                         _intreturn->set_state (**niter, Stateful::current_state_version);
2339                 } else if (is_monitor() && prop->value() == "monitor") {
2340                         if (!_monitor_control) {
2341                                 _monitor_control.reset (new MonitorProcessor (_session));
2342                                 must_configure = true;
2343                         }
2344                         _monitor_control->set_state (**niter, Stateful::current_state_version);
2345                 } else {
2346                         ProcessorList::iterator o;
2347
2348                         for (o = _processors.begin(); o != _processors.end(); ++o) {
2349                                 XMLProperty* id_prop = (*niter)->property(X_("id"));
2350                                 if (id_prop && (*o)->id() == id_prop->value()) {
2351                                         (*o)->set_state (**niter, Stateful::current_state_version);
2352                                         new_order.push_back (*o);
2353                                         break;
2354                                 }
2355                         }
2356
2357                         // If the processor (*niter) is not on the route then create it 
2358                         
2359                         if (o == _processors.end()) {
2360                                 
2361                                 boost::shared_ptr<Processor> processor;
2362
2363                                 if (prop->value() == "intsend") {
2364                                         
2365                                         processor.reset (new InternalSend (_session, _pannable, _mute_master, boost::shared_ptr<Route>(), Delivery::Role (0)));
2366                                         
2367                                 } else if (prop->value() == "ladspa" || prop->value() == "Ladspa" ||
2368                                            prop->value() == "lv2" ||
2369                                            prop->value() == "vst" ||
2370                                            prop->value() == "audiounit") {
2371                                         
2372                                         processor.reset (new PluginInsert(_session));
2373                                         
2374                                 } else if (prop->value() == "port") {
2375                                         
2376                                         processor.reset (new PortInsert (_session, _pannable, _mute_master));
2377                                         
2378                                 } else if (prop->value() == "send") {
2379                                         
2380                                         processor.reset (new Send (_session, _pannable, _mute_master));
2381                                         
2382                                 } else {
2383                                         error << string_compose(_("unknown Processor type \"%1\"; ignored"), prop->value()) << endmsg;
2384                                         continue;
2385                                 }
2386
2387                                 if (processor->set_state (**niter, Stateful::current_state_version) != 0) {
2388                                         /* This processor could not be configured.  Turn it into a UnknownProcessor */
2389                                         processor.reset (new UnknownProcessor (_session, **niter));
2390                                 }
2391
2392                                 /* it doesn't matter if invisible processors are added here, as they
2393                                    will be sorted out by setup_invisible_processors () shortly.
2394                                 */
2395
2396                                 new_order.push_back (processor);
2397                                 must_configure = true;
2398                         }
2399                 }
2400         }
2401
2402         {
2403                 Glib::RWLock::WriterLock lm (_processor_lock);
2404                 _processors = new_order;
2405                 if (must_configure) {
2406                         Glib::Mutex::Lock lm (AudioEngine::instance()->process_lock ());
2407                         configure_processors_unlocked (0);
2408                 }
2409         }
2410
2411         processors_changed (RouteProcessorChange ());
2412         set_processor_positions ();
2413 }
2414
2415 void
2416 Route::curve_reallocate ()
2417 {
2418 //      _gain_automation_curve.finish_resize ();
2419 //      _pan_automation_curve.finish_resize ();
2420 }
2421
2422 void
2423 Route::silence (framecnt_t nframes)
2424 {
2425         Glib::RWLock::ReaderLock lm (_processor_lock, Glib::TRY_LOCK);
2426         if (!lm.locked()) {
2427                 return;
2428         }
2429
2430         silence_unlocked (nframes);
2431 }
2432
2433 void
2434 Route::silence_unlocked (framecnt_t nframes)
2435 {
2436         /* Must be called with the processor lock held */
2437         
2438         if (!_silent) {
2439
2440                 _output->silence (nframes);
2441
2442                 for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
2443                         boost::shared_ptr<PluginInsert> pi;
2444                         
2445                         if (!_active && (pi = boost::dynamic_pointer_cast<PluginInsert> (*i)) != 0) {
2446                                 // skip plugins, they don't need anything when we're not active
2447                                 continue;
2448                         }
2449                         
2450                         (*i)->silence (nframes);
2451                 }
2452                 
2453                 if (nframes == _session.get_block_size()) {
2454                         // _silent = true;
2455                 }
2456         }
2457 }
2458
2459 void
2460 Route::add_internal_return ()
2461 {
2462         if (!_intreturn) {
2463                 _intreturn.reset (new InternalReturn (_session));
2464                 add_processor (_intreturn, PreFader);
2465         }
2466 }
2467
2468 BufferSet*
2469 Route::get_return_buffer () const
2470 {
2471         Glib::RWLock::ReaderLock rm (_processor_lock);
2472
2473         for (ProcessorList::const_iterator x = _processors.begin(); x != _processors.end(); ++x) {
2474                 boost::shared_ptr<InternalReturn> d = boost::dynamic_pointer_cast<InternalReturn>(*x);
2475
2476                 if (d) {
2477                         BufferSet* bs = d->get_buffers ();
2478                         return bs;
2479                 }
2480         }
2481
2482         return 0;
2483 }
2484
2485 void
2486 Route::release_return_buffer () const
2487 {
2488         Glib::RWLock::ReaderLock rm (_processor_lock);
2489
2490         for (ProcessorList::const_iterator x = _processors.begin(); x != _processors.end(); ++x) {
2491                 boost::shared_ptr<InternalReturn> d = boost::dynamic_pointer_cast<InternalReturn>(*x);
2492
2493                 if (d) {
2494                         return d->release_buffers ();
2495                 }
2496         }
2497 }
2498
2499 /** Add a monitor send, if we don't already have one */
2500 int
2501 Route::listen_via_monitor ()
2502 {
2503         /* master never sends to control outs */
2504         assert (!is_master ());
2505         
2506         /* make sure we have one */
2507         if (!_monitor_send) {
2508                 _monitor_send.reset (new InternalSend (_session, _pannable, _mute_master, _session.monitor_out(), Delivery::Listen));
2509                 _monitor_send->activate ();
2510                 _monitor_send->set_display_to_user (false);
2511         }
2512         
2513         /* set it up */
2514         Glib::Mutex::Lock lm (AudioEngine::instance()->process_lock ());
2515         configure_processors (0);
2516
2517         return 0;
2518 }
2519
2520 /** Add an internal send to a route.  
2521  *  @param route route to send to.
2522  *  @param placement placement for the send.
2523  */
2524 int
2525 Route::listen_via (boost::shared_ptr<Route> route, Placement placement)
2526 {
2527         assert (route != _session.monitor_out ());
2528         
2529         {
2530                 Glib::RWLock::ReaderLock rm (_processor_lock);
2531
2532                 for (ProcessorList::iterator x = _processors.begin(); x != _processors.end(); ++x) {
2533
2534                         boost::shared_ptr<InternalSend> d = boost::dynamic_pointer_cast<InternalSend> (*x);
2535
2536                         if (d && d->target_route() == route) {
2537                                 /* already listening via the specified IO: do nothing */
2538                                 return 0;
2539                         }
2540                 }
2541         }
2542
2543         try {
2544                 boost::shared_ptr<InternalSend> listener (new InternalSend (_session, _pannable, _mute_master, route, Delivery::Aux));
2545                 add_processor (listener, placement);
2546
2547         } catch (failed_constructor& err) {
2548                 return -1;
2549         }
2550
2551         return 0;
2552 }
2553
2554 void
2555 Route::drop_listen (boost::shared_ptr<Route> route)
2556 {
2557         ProcessorStreams err;
2558         ProcessorList::iterator tmp;
2559
2560         Glib::RWLock::ReaderLock rl(_processor_lock);
2561         rl.acquire ();
2562
2563   again:
2564         for (ProcessorList::iterator x = _processors.begin(); x != _processors.end(); ) {
2565
2566                 boost::shared_ptr<InternalSend> d = boost::dynamic_pointer_cast<InternalSend>(*x);
2567
2568                 if (d && d->target_route() == route) {
2569                         rl.release ();
2570                         remove_processor (*x, &err);
2571                         rl.acquire ();
2572
2573                         /* list could have been demolished while we dropped the lock
2574                            so start over.
2575                         */
2576
2577                         goto again;
2578                 }
2579         }
2580
2581         rl.release ();
2582
2583         if (route == _session.monitor_out()) {
2584                 _monitor_send.reset ();
2585         }
2586 }
2587
2588 void
2589 Route::set_comment (string cmt, void *src)
2590 {
2591         _comment = cmt;
2592         comment_changed (src);
2593         _session.set_dirty ();
2594 }
2595
2596 bool
2597 Route::add_fed_by (boost::shared_ptr<Route> other, bool via_sends_only)
2598 {
2599         FeedRecord fr (other, via_sends_only);
2600
2601         pair<FedBy::iterator,bool> result =  _fed_by.insert (fr);
2602
2603         if (!result.second) {
2604
2605                 /* already a record for "other" - make sure sends-only information is correct */
2606                 if (!via_sends_only && result.first->sends_only) {
2607                         FeedRecord* frp = const_cast<FeedRecord*>(&(*result.first));
2608                         frp->sends_only = false;
2609                 }
2610         }
2611         
2612         return result.second;
2613 }
2614
2615 void
2616 Route::clear_fed_by ()
2617 {
2618         _fed_by.clear ();
2619 }
2620
2621 bool
2622 Route::feeds (boost::shared_ptr<Route> other, bool* via_sends_only)
2623 {
2624         const FedBy& fed_by (other->fed_by());
2625
2626         for (FedBy::iterator f = fed_by.begin(); f != fed_by.end(); ++f) {
2627                 boost::shared_ptr<Route> sr = f->r.lock();
2628
2629                 if (sr && (sr.get() == this)) {
2630
2631                         if (via_sends_only) {
2632                                 *via_sends_only = f->sends_only;
2633                         }
2634
2635                         return true;
2636                 }
2637         }
2638
2639         return false;
2640 }
2641
2642 bool
2643 Route::direct_feeds (boost::shared_ptr<Route> other, bool* only_send)
2644 {
2645         DEBUG_TRACE (DEBUG::Graph, string_compose ("Feeds? %1\n", _name));
2646
2647         if (_output->connected_to (other->input())) {
2648                 DEBUG_TRACE (DEBUG::Graph, string_compose ("\tdirect FEEDS %2\n", other->name()));
2649                 if (only_send) {
2650                         *only_send = false;
2651                 }
2652
2653                 return true;
2654         }
2655
2656         
2657         for (ProcessorList::iterator r = _processors.begin(); r != _processors.end(); ++r) {
2658
2659                 boost::shared_ptr<IOProcessor> iop;
2660
2661                 if ((iop = boost::dynamic_pointer_cast<IOProcessor>(*r)) != 0) {
2662                         if (iop->feeds (other)) {
2663                                 DEBUG_TRACE (DEBUG::Graph,  string_compose ("\tIOP %1 does feed %2\n", iop->name(), other->name()));
2664                                 if (only_send) {
2665                                         *only_send = true;
2666                                 }
2667                                 return true;
2668                         } else {
2669                                 DEBUG_TRACE (DEBUG::Graph,  string_compose ("\tIOP %1 does NOT feed %2\n", iop->name(), other->name()));
2670                         }
2671                 } else {
2672                         DEBUG_TRACE (DEBUG::Graph,  string_compose ("\tPROC %1 is not an IOP\n", (*r)->name()));
2673                 }
2674                         
2675         }
2676
2677         DEBUG_TRACE (DEBUG::Graph,  string_compose ("\tdoes NOT feed %1\n", other->name()));
2678         return false;
2679 }
2680
2681 /** Called from the (non-realtime) butler thread when the transport is stopped */
2682 void
2683 Route::nonrealtime_handle_transport_stopped (bool /*abort_ignored*/, bool did_locate, bool can_flush_processors)
2684 {
2685         framepos_t now = _session.transport_frame();
2686
2687         {
2688                 Glib::RWLock::ReaderLock lm (_processor_lock);
2689
2690                 if (!did_locate) {
2691                         automation_snapshot (now, true);
2692                 }
2693
2694                 Automatable::transport_stopped (now);
2695
2696                 for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
2697
2698                         if (Config->get_plugins_stop_with_transport() && can_flush_processors) {
2699                                 (*i)->flush ();
2700                         }
2701
2702                         (*i)->transport_stopped (now);
2703                 }
2704         }
2705
2706         _roll_delay = _initial_delay;
2707 }
2708
2709 /** Called with the process lock held if change contains ConfigurationChanged */
2710 void
2711 Route::input_change_handler (IOChange change, void * /*src*/)
2712 {
2713         if ((change.type & IOChange::ConfigurationChanged)) {
2714                 configure_processors (0);
2715                 _phase_invert.resize (_input->n_ports().n_audio ());
2716                 io_changed (); /* EMIT SIGNAL */
2717         }
2718 }
2719
2720 /** Called with the process lock held if change contains ConfigurationChanged */
2721 void
2722 Route::output_change_handler (IOChange change, void * /*src*/)
2723 {
2724         if ((change.type & IOChange::ConfigurationChanged)) {
2725
2726                 /* XXX resize all listeners to match _main_outs? */
2727
2728                 /* Auto-connect newly-created outputs, unless we're auto-connecting to master
2729                    and we are master (as an auto-connect in this situation would cause a
2730                    feedback loop)
2731                 */
2732                 AutoConnectOption ac = Config->get_output_auto_connect ();
2733                 if (ac == AutoConnectPhysical || (ac == AutoConnectMaster && !is_master ())) {
2734
2735                         ChanCount start = change.before;
2736                         
2737                         for (DataType::iterator i = DataType::begin(); i != DataType::end(); ++i) {
2738                                 if (change.before.get(*i) < change.after.get(*i)) {
2739                                         /* the existing ChanCounts don't matter for this call as they are only
2740                                            to do with matching input and output indices, and we are only changing
2741                                            outputs here.
2742                                         */
2743                                         ChanCount dummy;
2744
2745                                         /* only auto-connect the newly-created outputs, not the ones that were
2746                                            already there
2747                                         */
2748                                         start.set (*i, start.get (*i) + 1);
2749                                         
2750                                         _session.auto_connect_route (this, dummy, dummy, false, ChanCount(), change.before);
2751                                 }
2752                         }
2753                 }
2754
2755                 // configure_processors (0);
2756         }
2757 }
2758
2759 uint32_t
2760 Route::pans_required () const
2761 {
2762         if (n_outputs().n_audio() < 2) {
2763                 return 0;
2764         }
2765
2766         return max (n_inputs ().n_audio(), processor_max_streams.n_audio());
2767 }
2768
2769 int
2770 Route::no_roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame,
2771                 bool session_state_changing, bool /*can_record*/, bool /*rec_monitors_input*/)
2772 {
2773         Glib::RWLock::ReaderLock lm (_processor_lock, Glib::TRY_LOCK);
2774         if (!lm.locked()) {
2775                 return 0;
2776         }
2777
2778         if (n_outputs().n_total() == 0) {
2779                 return 0;
2780         }
2781
2782         if (!_active || n_inputs() == ChanCount::ZERO)  {
2783                 silence_unlocked (nframes);
2784                 return 0;
2785         }
2786         if (session_state_changing) {
2787                 if (_session.transport_speed() != 0.0f) {
2788                         /* we're rolling but some state is changing (e.g. our diskstream contents)
2789                            so we cannot use them. Be silent till this is over.
2790                            
2791                            XXX note the absurdity of ::no_roll() being called when we ARE rolling!
2792                         */
2793                         silence_unlocked (nframes);
2794                         return 0;
2795                 }
2796                 /* we're really not rolling, so we're either delivery silence or actually
2797                    monitoring, both of which are safe to do while session_state_changing is true.
2798                 */
2799         }
2800
2801         _amp->apply_gain_automation (false);
2802         passthru (start_frame, end_frame, nframes, 0);
2803
2804         return 0;
2805 }
2806
2807 framecnt_t
2808 Route::check_initial_delay (framecnt_t nframes, framecnt_t& transport_frame)
2809 {
2810         if (_roll_delay > nframes) {
2811
2812                 _roll_delay -= nframes;
2813                 silence_unlocked (nframes);
2814                 /* transport frame is not legal for caller to use */
2815                 return 0;
2816
2817         } else if (_roll_delay > 0) {
2818
2819                 nframes -= _roll_delay;
2820                 silence_unlocked (_roll_delay);
2821                 /* we've written _roll_delay of samples into the
2822                    output ports, so make a note of that for
2823                    future reference.
2824                 */
2825                 _main_outs->increment_output_offset (_roll_delay);
2826                 transport_frame += _roll_delay;
2827
2828                 _roll_delay = 0;
2829         }
2830
2831         return nframes;
2832 }
2833
2834 int
2835 Route::roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame, int declick,
2836              bool /*can_record*/, bool /*rec_monitors_input*/, bool& /* need_butler */)
2837 {
2838         Glib::RWLock::ReaderLock lm (_processor_lock, Glib::TRY_LOCK);
2839         if (!lm.locked()) {
2840                 return 0;
2841         }
2842         
2843         automation_snapshot (_session.transport_frame(), false);
2844
2845         if (n_outputs().n_total() == 0) {
2846                 return 0;
2847         }
2848
2849         if (!_active || n_inputs().n_total() == 0) {
2850                 silence_unlocked (nframes);
2851                 return 0;
2852         }
2853
2854         framecnt_t unused = 0;
2855
2856         if ((nframes = check_initial_delay (nframes, unused)) == 0) {
2857                 return 0;
2858         }
2859
2860         _silent = false;
2861
2862         passthru (start_frame, end_frame, nframes, declick);
2863
2864         return 0;
2865 }
2866
2867 int
2868 Route::silent_roll (pframes_t nframes, framepos_t /*start_frame*/, framepos_t /*end_frame*/,
2869                     bool /*can_record*/, bool /*rec_monitors_input*/, bool& /* need_butler */)
2870 {
2871         silence (nframes);
2872         return 0;
2873 }
2874
2875 void
2876 Route::toggle_monitor_input ()
2877 {
2878         for (PortSet::iterator i = _input->ports().begin(); i != _input->ports().end(); ++i) {
2879                 i->ensure_monitor_input( ! i->monitoring_input());
2880         }
2881 }
2882
2883 bool
2884 Route::has_external_redirects () const
2885 {
2886         // FIXME: what about sends? - they don't return a signal back to ardour?
2887
2888         boost::shared_ptr<const PortInsert> pi;
2889
2890         for (ProcessorList::const_iterator i = _processors.begin(); i != _processors.end(); ++i) {
2891
2892                 if ((pi = boost::dynamic_pointer_cast<const PortInsert>(*i)) != 0) {
2893
2894                         for (PortSet::const_iterator port = pi->output()->ports().begin(); port != pi->output()->ports().end(); ++port) {
2895
2896                                 string port_name = port->name();
2897                                 string client_name = port_name.substr (0, port_name.find(':'));
2898
2899                                 /* only say "yes" if the redirect is actually in use */
2900
2901                                 if (client_name != "ardour" && pi->active()) {
2902                                         return true;
2903                                 }
2904                         }
2905                 }
2906         }
2907
2908         return false;
2909 }
2910
2911 void
2912 Route::flush_processors ()
2913 {
2914         /* XXX shouldn't really try to take this lock, since
2915            this is called from the RT audio thread.
2916         */
2917
2918         Glib::RWLock::ReaderLock lm (_processor_lock);
2919
2920         for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
2921                 (*i)->flush ();
2922         }
2923 }
2924
2925 void
2926 Route::set_meter_point (MeterPoint p, bool force)
2927 {
2928         /* CAN BE CALLED FROM PROCESS CONTEXT */
2929
2930         if (_meter_point == p && !force) {
2931                 return;
2932         }
2933
2934         _meter_point = p;
2935         
2936         bool meter_was_visible_to_user = _meter->display_to_user ();
2937
2938         {
2939                 Glib::RWLock::WriterLock lm (_processor_lock);
2940         
2941                 if (_meter_point != MeterCustom) {
2942
2943                         _meter->set_display_to_user (false);
2944                         
2945                         setup_invisible_processors ();
2946                         
2947                         ProcessorList::iterator loc = find (_processors.begin(), _processors.end(), _meter);
2948
2949                         ChanCount m_in;
2950                         
2951                         if (loc == _processors.begin()) {
2952                                 m_in = _input->n_ports();
2953                         } else {
2954                                 ProcessorList::iterator before = loc;
2955                                 --before;
2956                                 m_in = (*before)->output_streams ();
2957                         }
2958                         
2959                         _meter->reflect_inputs (m_in);
2960                         
2961                         /* we do not need to reconfigure the processors, because the meter
2962                            (a) is always ready to handle processor_max_streams
2963                            (b) is always an N-in/N-out processor, and thus moving
2964                            it doesn't require any changes to the other processors.
2965                         */
2966                         
2967                 } else {
2968                         
2969                         // just make it visible and let the user move it
2970                         
2971                         _meter->set_display_to_user (true);
2972                 }
2973         }
2974
2975         meter_change (); /* EMIT SIGNAL */
2976
2977         bool const meter_visibly_changed = (_meter->display_to_user() != meter_was_visible_to_user);
2978         
2979         processors_changed (RouteProcessorChange (RouteProcessorChange::MeterPointChange, meter_visibly_changed)); /* EMIT SIGNAL */
2980 }
2981
2982 void
2983 Route::listen_position_changed ()
2984 {
2985         {
2986                 Glib::RWLock::WriterLock lm (_processor_lock);
2987                 ProcessorState pstate (this);
2988
2989                 {
2990                         Glib::Mutex::Lock lm (AudioEngine::instance()->process_lock ());
2991                         
2992                         if (configure_processors_unlocked (0)) {
2993                                 pstate.restore ();
2994                                 configure_processors_unlocked (0); // it worked before we tried to add it ...
2995                                 return;
2996                         }
2997                 }
2998         }
2999
3000         processors_changed (RouteProcessorChange ()); /* EMIT SIGNAL */
3001         _session.set_dirty ();
3002 }
3003
3004 boost::shared_ptr<CapturingProcessor>
3005 Route::add_export_point()
3006 {
3007         if (!_capturing_processor) {
3008                 
3009                 _capturing_processor.reset (new CapturingProcessor (_session));
3010                 _capturing_processor->activate ();
3011
3012                 {
3013                         Glib::Mutex::Lock lm (AudioEngine::instance()->process_lock ());
3014                         configure_processors (0);
3015                 }
3016
3017         }
3018         
3019         return _capturing_processor;
3020 }
3021
3022 framecnt_t
3023 Route::update_total_latency ()
3024 {
3025         framecnt_t old = _output->effective_latency();
3026         framecnt_t own_latency = _output->user_latency();
3027
3028         for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
3029                 if ((*i)->active ()) {
3030                         own_latency += (*i)->signal_latency ();
3031                 }
3032         }
3033
3034         DEBUG_TRACE (DEBUG::Latency, string_compose ("%1: internal redirect latency = %2\n", _name, own_latency));
3035
3036         _output->set_port_latency (own_latency);
3037
3038         if (_output->user_latency() == 0) {
3039
3040                 /* this (virtual) function is used for pure Routes,
3041                    not derived classes like AudioTrack.  this means
3042                    that the data processed here comes from an input
3043                    port, not prerecorded material, and therefore we
3044                    have to take into account any input latency.
3045                 */
3046
3047                 own_latency += _input->signal_latency ();
3048         }
3049
3050         if (old != own_latency) {
3051                 _output->set_latency_delay (own_latency);
3052                 signal_latency_changed (); /* EMIT SIGNAL */
3053         }
3054
3055         DEBUG_TRACE (DEBUG::Latency, string_compose ("%1: input latency = %2 total = %3\n", _name, _input->signal_latency(), own_latency));
3056
3057         return _output->effective_latency ();
3058 }
3059
3060 void
3061 Route::set_user_latency (framecnt_t nframes)
3062 {
3063         _output->set_user_latency (nframes);
3064         _session.update_latency_compensation (false, false);
3065 }
3066
3067 void
3068 Route::set_latency_delay (framecnt_t longest_session_latency)
3069 {
3070         framecnt_t old = _initial_delay;
3071
3072         if (_output->effective_latency() < longest_session_latency) {
3073                 _initial_delay = longest_session_latency - _output->effective_latency();
3074         } else {
3075                 _initial_delay = 0;
3076         }
3077
3078         if (_initial_delay != old) {
3079                 initial_delay_changed (); /* EMIT SIGNAL */
3080         }
3081
3082         if (_session.transport_stopped()) {
3083                 _roll_delay = _initial_delay;
3084         }
3085 }
3086
3087 void
3088 Route::automation_snapshot (framepos_t now, bool force)
3089 {
3090         _pannable->automation_snapshot (now, force);
3091         for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
3092                 (*i)->automation_snapshot (now, force);
3093         }
3094 }
3095
3096 Route::SoloControllable::SoloControllable (std::string name, Route& r)
3097         : AutomationControl (r.session(), Evoral::Parameter (SoloAutomation),
3098                              boost::shared_ptr<AutomationList>(), name)
3099         , route (r)
3100 {
3101         boost::shared_ptr<AutomationList> gl(new AutomationList(Evoral::Parameter(SoloAutomation)));
3102         set_list (gl);
3103 }
3104
3105 void
3106 Route::SoloControllable::set_value (double val)
3107 {
3108         bool bval = ((val >= 0.5f) ? true: false);
3109 # if 0
3110         this is how it should be done 
3111
3112         boost::shared_ptr<RouteList> rl (new RouteList);
3113         rl->push_back (route);
3114
3115         if (Config->get_solo_control_is_listen_control()) {
3116                 _session.set_listen (rl, bval);
3117         } else {
3118                 _session.set_solo (rl, bval);
3119         }
3120 #else
3121         route.set_solo (bval, this);
3122 #endif
3123 }
3124
3125 double
3126 Route::SoloControllable::get_value (void) const
3127 {
3128         if (Config->get_solo_control_is_listen_control()) {
3129                 return route.listening_via_monitor() ? 1.0f : 0.0f;
3130         } else {
3131                 return route.self_soloed() ? 1.0f : 0.0f;
3132         }
3133 }
3134
3135 Route::MuteControllable::MuteControllable (std::string name, Route& r)
3136         : AutomationControl (r.session(), Evoral::Parameter (MuteAutomation),
3137                              boost::shared_ptr<AutomationList>(), name)
3138         , route (r)
3139 {
3140         boost::shared_ptr<AutomationList> gl(new AutomationList(Evoral::Parameter(MuteAutomation)));
3141         set_list (gl);
3142 }
3143
3144 void
3145 Route::MuteControllable::set_value (double val)
3146 {
3147         bool bval = ((val >= 0.5f) ? true: false);
3148 # if 0
3149         this is how it should be done 
3150
3151         boost::shared_ptr<RouteList> rl (new RouteList);
3152         rl->push_back (route);
3153         _session.set_mute (rl, bval);
3154 #else
3155         route.set_mute (bval, this);
3156 #endif
3157 }
3158
3159 double
3160 Route::MuteControllable::get_value (void) const
3161 {
3162         return route.muted() ? 1.0f : 0.0f;
3163 }
3164
3165 void
3166 Route::set_block_size (pframes_t nframes)
3167 {
3168         for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
3169                 (*i)->set_block_size (nframes);
3170         }
3171         
3172         _session.ensure_buffers (n_process_buffers ());
3173 }
3174
3175 void
3176 Route::protect_automation ()
3177 {
3178         for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i)
3179                 (*i)->protect_automation();
3180 }
3181
3182 void
3183 Route::set_pending_declick (int declick)
3184 {
3185         if (_declickable) {
3186                 /* this call is not allowed to turn off a pending declick unless "force" is true */
3187                 if (declick) {
3188                         _pending_declick = declick;
3189                 }
3190                 // cerr << _name << ": after setting to " << declick << " pending declick = " << _pending_declick << endl;
3191         } else {
3192                 _pending_declick = 0;
3193         }
3194
3195 }
3196
3197 /** Shift automation forwards from a particular place, thereby inserting time.
3198  *  Adds undo commands for any shifts that are performed.
3199  *
3200  * @param pos Position to start shifting from.
3201  * @param frames Amount to shift forwards by.
3202  */
3203
3204 void
3205 Route::shift (framepos_t pos, framecnt_t frames)
3206 {
3207         /* gain automation */
3208         {
3209                 boost::shared_ptr<AutomationControl> gc = _amp->gain_control();
3210                 
3211                 XMLNode &before = gc->alist()->get_state ();
3212                 gc->alist()->shift (pos, frames);
3213                 XMLNode &after = gc->alist()->get_state ();
3214                 _session.add_command (new MementoCommand<AutomationList> (*gc->alist().get(), &before, &after));
3215         }
3216
3217         /* pan automation */
3218         {
3219                 ControlSet::Controls& c (_pannable->controls());
3220                 
3221                 for (ControlSet::Controls::const_iterator ci = c.begin(); ci != c.end(); ++ci) {
3222                         boost::shared_ptr<AutomationControl> pc = boost::dynamic_pointer_cast<AutomationControl> (ci->second);
3223                         if (pc) {
3224                                 boost::shared_ptr<AutomationList> al = pc->alist();
3225                                 XMLNode& before = al->get_state ();
3226                                 al->shift (pos, frames);
3227                                 XMLNode& after = al->get_state ();
3228                                 _session.add_command (new MementoCommand<AutomationList> (*al.get(), &before, &after));
3229                         }
3230                 }
3231         }
3232
3233         /* redirect automation */
3234         {
3235                 Glib::RWLock::ReaderLock lm (_processor_lock);
3236                 for (ProcessorList::iterator i = _processors.begin (); i != _processors.end (); ++i) {
3237
3238                         set<Evoral::Parameter> parameters = (*i)->what_can_be_automated();
3239
3240                         for (set<Evoral::Parameter>::const_iterator p = parameters.begin (); p != parameters.end (); ++p) {
3241                                 boost::shared_ptr<AutomationControl> ac = (*i)->automation_control (*p);
3242                                 if (ac) {
3243                                         boost::shared_ptr<AutomationList> al = ac->alist();
3244                                         XMLNode &before = al->get_state ();
3245                                         al->shift (pos, frames);
3246                                         XMLNode &after = al->get_state ();
3247                                         _session.add_command (new MementoCommand<AutomationList> (*al.get(), &before, &after));
3248                                 }
3249                         }
3250                 }
3251         }
3252 }
3253
3254
3255 int
3256 Route::save_as_template (const string& path, const string& name)
3257 {
3258         XMLNode& node (state (false));
3259         XMLTree tree;
3260
3261         IO::set_name_in_state (*node.children().front(), name);
3262
3263         tree.set_root (&node);
3264         return tree.write (path.c_str());
3265 }
3266
3267
3268 bool
3269 Route::set_name (const string& str)
3270 {
3271         bool ret;
3272         string ioproc_name;
3273         string name;
3274
3275         name = Route::ensure_track_or_route_name (str, _session);
3276         SessionObject::set_name (name);
3277
3278         ret = (_input->set_name(name) && _output->set_name(name));
3279
3280         if (ret) {
3281
3282                 Glib::RWLock::ReaderLock lm (_processor_lock);
3283
3284                 for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
3285
3286                         /* rename all I/O processors that have inputs or outputs */
3287
3288                         boost::shared_ptr<IOProcessor> iop = boost::dynamic_pointer_cast<IOProcessor> (*i);
3289
3290                         if (iop && (iop->output() || iop->input())) {
3291                                 if (!iop->set_name (name)) {
3292                                         ret = false;
3293                                 }
3294                         }
3295                 }
3296
3297         }
3298
3299         return ret;
3300 }
3301
3302 boost::shared_ptr<Send>
3303 Route::internal_send_for (boost::shared_ptr<const Route> target) const
3304 {
3305         Glib::RWLock::ReaderLock lm (_processor_lock);
3306
3307         for (ProcessorList::const_iterator i = _processors.begin(); i != _processors.end(); ++i) {
3308                 boost::shared_ptr<InternalSend> send;
3309
3310                 if ((send = boost::dynamic_pointer_cast<InternalSend>(*i)) != 0) {
3311                         if (send->target_route() == target) {
3312                                 return send;
3313                         }
3314                 }
3315         }
3316
3317         return boost::shared_ptr<Send>();
3318 }
3319
3320 /** @param c Audio channel index.
3321  *  @param yn true to invert phase, otherwise false.
3322  */
3323 void
3324 Route::set_phase_invert (uint32_t c, bool yn)
3325 {
3326         if (_phase_invert[c] != yn) {
3327                 _phase_invert[c] = yn;
3328                 phase_invert_changed (); /* EMIT SIGNAL */
3329                 _session.set_dirty ();
3330         }
3331 }
3332
3333 void
3334 Route::set_phase_invert (boost::dynamic_bitset<> p)
3335 {
3336         if (_phase_invert != p) {
3337                 _phase_invert = p;
3338                 phase_invert_changed (); /* EMIT SIGNAL */
3339                 _session.set_dirty ();
3340         }
3341 }
3342
3343 bool
3344 Route::phase_invert (uint32_t c) const
3345 {
3346         return _phase_invert[c];
3347 }
3348
3349 boost::dynamic_bitset<>
3350 Route::phase_invert () const
3351 {
3352         return _phase_invert;
3353 }
3354
3355 void
3356 Route::set_denormal_protection (bool yn)
3357 {
3358         if (_denormal_protection != yn) {
3359                 _denormal_protection = yn;
3360                 denormal_protection_changed (); /* EMIT SIGNAL */
3361         }
3362 }
3363
3364 bool
3365 Route::denormal_protection () const
3366 {
3367         return _denormal_protection;
3368 }
3369
3370 void
3371 Route::set_active (bool yn, void* src)
3372 {
3373         if (_route_group && src != _route_group && _route_group->is_active() && _route_group->is_route_active()) {
3374                 _route_group->foreach_route (boost::bind (&Route::set_active, _1, yn, _route_group));
3375                 return;
3376         }
3377         
3378         if (_active != yn) {
3379                 _active = yn;
3380                 _input->set_active (yn);
3381                 _output->set_active (yn);
3382                 active_changed (); // EMIT SIGNAL
3383         }
3384 }
3385
3386 void
3387 Route::meter ()
3388 {
3389         Glib::RWLock::ReaderLock rm (_processor_lock, Glib::TRY_LOCK);
3390
3391         assert (_meter);
3392
3393         _meter->meter ();
3394
3395         for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
3396
3397                 boost::shared_ptr<Send> s;
3398                 boost::shared_ptr<Return> r;
3399
3400                 if ((s = boost::dynamic_pointer_cast<Send> (*i)) != 0) {
3401                         s->meter()->meter();
3402                 } else if ((r = boost::dynamic_pointer_cast<Return> (*i)) != 0) {
3403                         r->meter()->meter ();
3404                 }
3405         }
3406 }
3407
3408 boost::shared_ptr<Pannable>
3409 Route::pannable() const
3410 {
3411         return _pannable;
3412 }
3413
3414 boost::shared_ptr<Panner>
3415 Route::panner() const
3416 {
3417         /* may be null ! */
3418         return _main_outs->panner_shell()->panner();
3419 }
3420
3421 boost::shared_ptr<PannerShell>
3422 Route::panner_shell() const
3423 {
3424         return _main_outs->panner_shell();
3425 }
3426
3427 boost::shared_ptr<AutomationControl>
3428 Route::gain_control() const
3429 {
3430         return _amp->gain_control();
3431 }
3432
3433 boost::shared_ptr<AutomationControl>
3434 Route::get_control (const Evoral::Parameter& param)
3435 {
3436         /* either we own the control or .... */
3437
3438         boost::shared_ptr<AutomationControl> c = boost::dynamic_pointer_cast<AutomationControl>(control (param));
3439
3440         if (!c) {
3441
3442                 /* maybe one of our processors does or ... */
3443
3444                 Glib::RWLock::ReaderLock rm (_processor_lock, Glib::TRY_LOCK);
3445                 for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
3446                         if ((c = boost::dynamic_pointer_cast<AutomationControl>((*i)->control (param))) != 0) {
3447                                 break;
3448                         }
3449                 }
3450         }
3451
3452         if (!c) {
3453
3454                 /* nobody does so we'll make a new one */
3455
3456                 c = boost::dynamic_pointer_cast<AutomationControl>(control_factory(param));
3457                 add_control(c);
3458         }
3459
3460         return c;
3461 }
3462
3463 boost::shared_ptr<Processor>
3464 Route::nth_plugin (uint32_t n)
3465 {
3466         Glib::RWLock::ReaderLock lm (_processor_lock);
3467         ProcessorList::iterator i;
3468
3469         for (i = _processors.begin(); i != _processors.end(); ++i) {
3470                 if (boost::dynamic_pointer_cast<PluginInsert> (*i)) {
3471                         if (n-- == 0) {
3472                                 return *i;
3473                         }
3474                 }
3475         }
3476
3477         return boost::shared_ptr<Processor> ();
3478 }
3479
3480 boost::shared_ptr<Processor>
3481 Route::nth_send (uint32_t n)
3482 {
3483         Glib::RWLock::ReaderLock lm (_processor_lock);
3484         ProcessorList::iterator i;
3485
3486         for (i = _processors.begin(); i != _processors.end(); ++i) {
3487                 if (boost::dynamic_pointer_cast<Send> (*i)) {
3488                         if (n-- == 0) {
3489                                 return *i;
3490                         }
3491                 } 
3492         }
3493
3494         return boost::shared_ptr<Processor> ();
3495 }
3496
3497 bool
3498 Route::has_io_processor_named (const string& name)
3499 {
3500         Glib::RWLock::ReaderLock lm (_processor_lock);
3501         ProcessorList::iterator i;
3502         
3503         for (i = _processors.begin(); i != _processors.end(); ++i) {
3504                 if (boost::dynamic_pointer_cast<Send> (*i) ||
3505                     boost::dynamic_pointer_cast<PortInsert> (*i)) {
3506                         if ((*i)->name() == name) {
3507                                 return true;
3508                         }
3509                 }
3510         }
3511         
3512         return false;
3513 }
3514
3515 MuteMaster::MutePoint
3516 Route::mute_points () const
3517 {
3518         return _mute_master->mute_points ();
3519 }
3520
3521 void
3522 Route::set_processor_positions ()
3523 {
3524         Glib::RWLock::ReaderLock lm (_processor_lock);
3525
3526         bool had_amp = false;
3527         for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
3528                 (*i)->set_pre_fader (!had_amp);
3529                 if (boost::dynamic_pointer_cast<Amp> (*i)) {
3530                         had_amp = true;
3531                 }
3532         }
3533 }
3534
3535 /** Called when there is a proposed change to the input port count */
3536 bool
3537 Route::input_port_count_changing (ChanCount to)
3538 {
3539         list<pair<ChanCount, ChanCount> > c = try_configure_processors (to, 0);
3540         if (c.empty()) {
3541                 /* The processors cannot be configured with the new input arrangement, so
3542                    block the change.
3543                 */
3544                 return true;
3545         }
3546
3547         /* The change is ok */
3548         return false;
3549 }
3550
3551 list<string>
3552 Route::unknown_processors () const
3553 {
3554         list<string> p;
3555         
3556         Glib::RWLock::ReaderLock lm (_processor_lock);
3557         for (ProcessorList::const_iterator i = _processors.begin(); i != _processors.end(); ++i) {
3558                 if (boost::dynamic_pointer_cast<UnknownProcessor const> (*i)) {
3559                         p.push_back ((*i)->name ());
3560                 }
3561         }
3562
3563         return p;
3564 }
3565
3566 void
3567 Route::set_latency_ranges (bool playback) const
3568 {
3569         framecnt_t own_latency = 0;
3570
3571         /* Processor list not protected by lock: MUST BE CALLED FROM PROCESS THREAD OR
3572            LATENCY CALLBACK
3573         */
3574
3575         for (ProcessorList::const_iterator i = _processors.begin(); i != _processors.end(); ++i) {
3576                 if ((*i)->active ()) {
3577                         own_latency += (*i)->signal_latency ();
3578                 }
3579         }
3580
3581         if (playback) {
3582                 update_port_latencies (_input->ports (), _output->ports (), true, own_latency);
3583         } else {
3584                 update_port_latencies (_output->ports (), _input->ports (), false, own_latency);
3585         }
3586 }
3587
3588 void
3589 Route::update_port_latencies (const PortSet& operands, const PortSet& feeders, bool playback, framecnt_t our_latency) const
3590 {
3591 #ifdef HAVE_JACK_NEW_LATENCY
3592
3593         /* we assume that all our input ports feed all our output ports. its not
3594            universally true, but the alternative is way too corner-case to worry about.
3595         */
3596         
3597         jack_latency_range_t all_connections;
3598         
3599         all_connections.min = ~((jack_nframes_t) 0);
3600         all_connections.max = 0;
3601         
3602         /* iterate over all feeder ports and determine their relevant latency, taking
3603            the maximum and minimum across all of them.
3604         */
3605         
3606         for (PortSet::const_iterator p = feeders.begin(); p != feeders.end(); ++p) {
3607                 
3608                 jack_latency_range_t range;
3609                 
3610                 p->get_connected_latency_range (range, playback);
3611                 
3612                 all_connections.min = min (all_connections.min, range.min);
3613                 all_connections.max = max (all_connections.max, range.max);
3614         }
3615         
3616         all_connections.min += our_latency;
3617         all_connections.max += our_latency;
3618
3619         for (PortSet::const_iterator p = operands.begin(); p != operands.end(); ++p) {
3620                 
3621                 p->set_latency_range (all_connections, playback);
3622                 
3623                 DEBUG_TRACE (DEBUG::Latency, string_compose ("Port %1 %5 latency range %2 .. %3 (including route latency of %4)\n",
3624                                                              p->name(),
3625                                                              all_connections.min,
3626                                                              all_connections.max,
3627                                                              our_latency,
3628                                                              (playback ? "PLAYBACK" : "CAPTURE")));
3629         }
3630 #endif
3631 }
3632
3633
3634 /** Put the invisible processors in the right place in _processors.
3635  *  Must be called with a writer lock on _processor_lock held.
3636  */
3637 void
3638 Route::setup_invisible_processors ()
3639 {
3640 #ifdef NDEBUG
3641         Glib::RWLock::WriterLock lm (_processor_lock, Glib::TryLock);
3642         assert (!lm.locked ());
3643 #endif
3644
3645         /* we'll build this new list here and then use it */
3646         
3647         ProcessorList new_processors;
3648
3649         /* find visible processors */
3650         
3651         for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
3652                 if ((*i)->display_to_user ()) {
3653                         new_processors.push_back (*i);
3654                 }
3655         }
3656
3657         /* find the amp */
3658
3659         ProcessorList::iterator amp = new_processors.begin ();
3660         while (amp != new_processors.end() && boost::dynamic_pointer_cast<Amp> (*amp) == 0) {
3661                 ++amp;
3662         }
3663
3664         assert (amp != _processors.end ());
3665
3666         /* and the processor after the amp */
3667
3668         ProcessorList::iterator after_amp = amp;
3669         ++after_amp;
3670
3671         /* METER */
3672
3673         if (_meter) {
3674                 switch (_meter_point) {
3675                 case MeterInput:
3676                         assert (!_meter->display_to_user ());
3677                         new_processors.push_front (_meter);
3678                         break;
3679                 case MeterPreFader:
3680                         assert (!_meter->display_to_user ());
3681                         new_processors.insert (amp, _meter);
3682                         break;
3683                 case MeterPostFader:
3684                         assert (!_meter->display_to_user ());
3685                         new_processors.insert (after_amp, _meter);
3686                         break;
3687                 case MeterCustom:
3688                         /* the meter is visible, so we don't touch it here */
3689                         break;
3690                 }
3691         }
3692
3693
3694         /* MAIN OUTS */
3695
3696         if (_main_outs) {
3697                 assert (!_main_outs->display_to_user ());
3698                 new_processors.push_back (_main_outs);
3699         }
3700
3701         /* MONITOR SEND */
3702
3703         if (_monitor_send && !is_monitor ()) {
3704                 assert (!_monitor_send->display_to_user ());
3705                 switch (Config->get_listen_position ()) {
3706                 case PreFaderListen:
3707                         switch (Config->get_pfl_position ()) {
3708                         case PFLFromBeforeProcessors:
3709                                 new_processors.push_front (_monitor_send);
3710                                 break;
3711                         case PFLFromAfterProcessors:
3712                                 new_processors.insert (amp, _monitor_send);
3713                                 break;
3714                         }
3715                         break;
3716                 case AfterFaderListen:
3717                         new_processors.insert (after_amp, _monitor_send);
3718                         break;
3719                 }
3720         }
3721
3722         /* MONITOR CONTROL */
3723
3724         if (_monitor_control && is_monitor ()) {
3725                 assert (!_monitor_control->display_to_user ());
3726                 new_processors.push_front (_monitor_control);
3727         }
3728         
3729         /* INTERNAL RETURN */
3730
3731         /* doing this here means that any monitor control will come just after
3732            the return.
3733         */
3734
3735         if (_intreturn) {
3736                 assert (!_intreturn->display_to_user ());
3737                 new_processors.push_front (_intreturn);
3738         }
3739
3740         /* EXPORT PROCESSOR */
3741         
3742         if (_capturing_processor) {
3743                 assert (!_capturing_processor->display_to_user ());
3744                 new_processors.push_front (_capturing_processor);
3745         }
3746
3747         _processors = new_processors;
3748
3749         DEBUG_TRACE (DEBUG::Processors, string_compose ("%1: setup_invisible_processors\n", _name));
3750         for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
3751                 DEBUG_TRACE (DEBUG::Processors, string_compose ("\t%1\n", (*i)->name ()));
3752         }
3753 }