fix abort-capture path, including many subtle issues with shared_ptr<>; remove old...
[ardour.git] / libs / ardour / session.cc
1 /*
2     Copyright (C) 1999-2004 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     $Id$
19 */
20
21 #include <algorithm>
22 #include <string>
23 #include <vector>
24 #include <sstream>
25 #include <fstream>
26 #include <cstdio> /* sprintf(3) ... grrr */
27 #include <cmath>
28 #include <cerrno>
29 #include <unistd.h>
30 #include <limits.h>
31
32 #include <sigc++/bind.h>
33 #include <sigc++/retype.h>
34
35 #include <glibmm/thread.h>
36 #include <glibmm/miscutils.h>
37
38 #include <pbd/error.h>
39 #include <glibmm/thread.h>
40 #include <pbd/pathscanner.h>
41 #include <pbd/stl_delete.h>
42 #include <pbd/basename.h>
43
44 #include <ardour/audioengine.h>
45 #include <ardour/configuration.h>
46 #include <ardour/session.h>
47 #include <ardour/audio_diskstream.h>
48 #include <ardour/utils.h>
49 #include <ardour/audioplaylist.h>
50 #include <ardour/audioregion.h>
51 #include <ardour/audiofilesource.h>
52 #include <ardour/destructive_filesource.h>
53 #include <ardour/auditioner.h>
54 #include <ardour/recent_sessions.h>
55 #include <ardour/redirect.h>
56 #include <ardour/send.h>
57 #include <ardour/insert.h>
58 #include <ardour/connection.h>
59 #include <ardour/slave.h>
60 #include <ardour/tempo.h>
61 #include <ardour/audio_track.h>
62 #include <ardour/cycle_timer.h>
63 #include <ardour/named_selection.h>
64 #include <ardour/crossfade.h>
65 #include <ardour/playlist.h>
66 #include <ardour/click.h>
67 #include <ardour/data_type.h>
68 #include <ardour/source_factory.h>
69 #include <ardour/region_factory.h>
70
71 #ifdef HAVE_LIBLO
72 #include <ardour/osc.h>
73 #endif
74
75 #include "i18n.h"
76
77 using namespace std;
78 using namespace ARDOUR;
79 using namespace PBD;
80 using boost::shared_ptr;
81
82 const char* Session::_template_suffix = X_(".template");
83 const char* Session::_statefile_suffix = X_(".ardour");
84 const char* Session::_pending_suffix = X_(".pending");
85 const char* Session::old_sound_dir_name = X_("sounds");
86 const char* Session::sound_dir_name = X_("audiofiles");
87 const char* Session::peak_dir_name = X_("peaks");
88 const char* Session::dead_sound_dir_name = X_("dead_sounds");
89 const char* Session::interchange_dir_name = X_("interchange");
90
91 Session::compute_peak_t                         Session::compute_peak                   = 0;
92 Session::apply_gain_to_buffer_t         Session::apply_gain_to_buffer   = 0;
93 Session::mix_buffers_with_gain_t        Session::mix_buffers_with_gain  = 0;
94 Session::mix_buffers_no_gain_t          Session::mix_buffers_no_gain    = 0;
95
96 sigc::signal<int> Session::AskAboutPendingState;
97 sigc::signal<void> Session::SendFeedback;
98
99 sigc::signal<void> Session::SMPTEOffsetChanged;
100 sigc::signal<void> Session::StartTimeChanged;
101 sigc::signal<void> Session::EndTimeChanged;
102
103 int
104 Session::find_session (string str, string& path, string& snapshot, bool& isnew)
105 {
106         struct stat statbuf;
107         char buf[PATH_MAX+1];
108
109         isnew = false;
110
111         if (!realpath (str.c_str(), buf) && (errno != ENOENT && errno != ENOTDIR)) {
112                 error << string_compose (_("Could not resolve path: %1 (%2)"), buf, strerror(errno)) << endmsg;
113                 return -1;
114         }
115
116         str = buf;
117         
118         /* check to see if it exists, and what it is */
119
120         if (stat (str.c_str(), &statbuf)) {
121                 if (errno == ENOENT) {
122                         isnew = true;
123                 } else {
124                         error << string_compose (_("cannot check session path %1 (%2)"), str, strerror (errno))
125                               << endmsg;
126                         return -1;
127                 }
128         }
129
130         if (!isnew) {
131
132                 /* it exists, so it must either be the name
133                    of the directory, or the name of the statefile
134                    within it.
135                 */
136
137                 if (S_ISDIR (statbuf.st_mode)) {
138
139                         string::size_type slash = str.find_last_of ('/');
140                 
141                         if (slash == string::npos) {
142                                 
143                                 /* a subdirectory of cwd, so statefile should be ... */
144
145                                 string tmp;
146                                 tmp = str;
147                                 tmp += '/';
148                                 tmp += str;
149                                 tmp += _statefile_suffix;
150
151                                 /* is it there ? */
152                                 
153                                 if (stat (tmp.c_str(), &statbuf)) {
154                                         error << string_compose (_("cannot check statefile %1 (%2)"), tmp, strerror (errno))
155                                               << endmsg;
156                                         return -1;
157                                 }
158
159                                 path = str;
160                                 snapshot = str;
161
162                         } else {
163
164                                 /* some directory someplace in the filesystem.
165                                    the snapshot name is the directory name
166                                    itself.
167                                 */
168
169                                 path = str;
170                                 snapshot = str.substr (slash+1);
171                                         
172                         }
173
174                 } else if (S_ISREG (statbuf.st_mode)) {
175                         
176                         string::size_type slash = str.find_last_of ('/');
177                         string::size_type suffix;
178
179                         /* remove the suffix */
180                         
181                         if (slash != string::npos) {
182                                 snapshot = str.substr (slash+1);
183                         } else {
184                                 snapshot = str;
185                         }
186
187                         suffix = snapshot.find (_statefile_suffix);
188                         
189                         if (suffix == string::npos) {
190                                 error << string_compose (_("%1 is not an Ardour snapshot file"), str) << endmsg;
191                                 return -1;
192                         }
193
194                         /* remove suffix */
195
196                         snapshot = snapshot.substr (0, suffix);
197                         
198                         if (slash == string::npos) {
199                                 
200                                 /* we must be in the directory where the 
201                                    statefile lives. get it using cwd().
202                                 */
203
204                                 char cwd[PATH_MAX+1];
205
206                                 if (getcwd (cwd, sizeof (cwd)) == 0) {
207                                         error << string_compose (_("cannot determine current working directory (%1)"), strerror (errno))
208                                               << endmsg;
209                                         return -1;
210                                 }
211
212                                 path = cwd;
213
214                         } else {
215
216                                 /* full path to the statefile */
217
218                                 path = str.substr (0, slash);
219                         }
220                                 
221                 } else {
222
223                         /* what type of file is it? */
224                         error << string_compose (_("unknown file type for session %1"), str) << endmsg;
225                         return -1;
226                 }
227
228         } else {
229
230                 /* its the name of a new directory. get the name
231                    as "dirname" does.
232                 */
233
234                 string::size_type slash = str.find_last_of ('/');
235
236                 if (slash == string::npos) {
237                         
238                         /* no slash, just use the name, but clean it up */
239                         
240                         path = legalize_for_path (str);
241                         snapshot = path;
242                         
243                 } else {
244                         
245                         path = str;
246                         snapshot = str.substr (slash+1);
247                 }
248         }
249
250         return 0;
251 }
252
253 Session::Session (AudioEngine &eng,
254                   string fullpath,
255                   string snapshot_name,
256                   string* mix_template)
257
258         : _engine (eng),
259           _mmc_port (default_mmc_port),
260           _mtc_port (default_mtc_port),
261           _midi_port (default_midi_port),
262           pending_events (2048),
263           midi_requests (128), // the size of this should match the midi request pool size
264           diskstreams (new DiskstreamList),
265           routes (new RouteList),
266           auditioner ((Auditioner*) 0),
267           _click_io ((IO*) 0),
268           main_outs (0)
269 {
270         bool new_session;
271
272         cerr << "Loading session " << fullpath << " using snapshot " << snapshot_name << " (1)" << endl;
273
274         n_physical_outputs = _engine.n_physical_outputs();
275         n_physical_inputs =  _engine.n_physical_inputs();
276
277         first_stage_init (fullpath, snapshot_name);
278         
279         new_session = !g_file_test (_path.c_str(), GFileTest (G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR));
280         if (new_session) {
281                 if (create (new_session, mix_template, _engine.frame_rate() * 60 * 5)) {
282                         cerr << "create failed\n";
283                         throw failed_constructor ();
284                 }
285         }
286         
287         if (second_stage_init (new_session)) {
288                 cerr << "2nd state failed\n";
289                 throw failed_constructor ();
290         }
291         
292         store_recent_sessions(_name, _path);
293         
294         bool was_dirty = dirty();
295
296         _state_of_the_state = StateOfTheState (_state_of_the_state & ~Dirty);
297
298         Config->ParameterChanged.connect (mem_fun (*this, &Session::config_changed));
299
300         if (was_dirty) {
301                 DirtyChanged (); /* EMIT SIGNAL */
302         }
303 }
304
305 Session::Session (AudioEngine &eng,
306                   string fullpath,
307                   string snapshot_name,
308                   AutoConnectOption input_ac,
309                   AutoConnectOption output_ac,
310                   uint32_t control_out_channels,
311                   uint32_t master_out_channels,
312                   uint32_t requested_physical_in,
313                   uint32_t requested_physical_out,
314                   nframes_t initial_length)
315
316         : _engine (eng),
317           _mmc_port (default_mmc_port),
318           _mtc_port (default_mtc_port),
319           _midi_port (default_midi_port),
320           pending_events (2048),
321           midi_requests (16),
322           diskstreams (new DiskstreamList),
323           routes (new RouteList),
324           main_outs (0)
325
326 {
327         bool new_session;
328
329         cerr << "Loading session " << fullpath << " using snapshot " << snapshot_name << " (2)" << endl;
330
331         n_physical_outputs = max (requested_physical_out, _engine.n_physical_outputs());
332         n_physical_inputs = max (requested_physical_in, _engine.n_physical_inputs());
333
334         first_stage_init (fullpath, snapshot_name);
335
336         new_session = !g_file_test (_path.c_str(), GFileTest (G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR));
337         if (new_session) {
338                 if (create (new_session, 0, initial_length)) {
339                         throw failed_constructor ();
340                 }
341         }
342
343         if (control_out_channels) {
344                 shared_ptr<Route> r (new Route (*this, _("monitor"), -1, control_out_channels, -1, control_out_channels, Route::ControlOut));
345                 RouteList rl;
346                 rl.push_back (r);
347                 add_routes (rl);
348                 _control_out = r;
349         }
350
351         if (master_out_channels) {
352                 shared_ptr<Route> r (new Route (*this, _("master"), -1, master_out_channels, -1, master_out_channels, Route::MasterOut));
353                 RouteList rl;
354                 rl.push_back (r);
355                 add_routes (rl);
356                 _master_out = r;
357         } else {
358                 /* prohibit auto-connect to master, because there isn't one */
359                 output_ac = AutoConnectOption (output_ac & ~AutoConnectMaster);
360         }
361
362         Config->set_input_auto_connect (input_ac);
363         Config->set_output_auto_connect (output_ac);
364
365         if (second_stage_init (new_session)) {
366                 throw failed_constructor ();
367         }
368         
369         store_recent_sessions(_name, _path);
370         
371         bool was_dirty = dirty ();
372
373         _state_of_the_state = StateOfTheState (_state_of_the_state & ~Dirty);
374
375         if (was_dirty) {
376                 DirtyChanged (); /* EMIT SIGNAL */
377         }
378 }
379
380 Session::~Session ()
381 {
382         /* if we got to here, leaving pending capture state around
383            is a mistake.
384         */
385
386         remove_pending_capture_state ();
387
388         _state_of_the_state = StateOfTheState (CannotSave|Deletion);
389         _engine.remove_session ();
390
391         GoingAway (); /* EMIT SIGNAL */
392         
393         /* do this */
394
395         notify_callbacks ();
396
397         /* clear history so that no references to objects are held any more */
398
399         history.clear ();
400
401         /* clear state tree so that no references to objects are held any more */
402         
403         if (state_tree) {
404                 delete state_tree;
405         }
406
407         terminate_butler_thread ();
408         terminate_midi_thread ();
409         
410         if (click_data && click_data != default_click) {
411                 delete [] click_data;
412         }
413
414         if (click_emphasis_data && click_emphasis_data != default_click_emphasis) {
415                 delete [] click_emphasis_data;
416         }
417
418         clear_clicks ();
419
420         for (vector<Sample*>::iterator i = _passthru_buffers.begin(); i != _passthru_buffers.end(); ++i) {
421                 free(*i);
422         }
423
424         for (vector<Sample*>::iterator i = _silent_buffers.begin(); i != _silent_buffers.end(); ++i) {
425                 free(*i);
426         }
427
428         for (vector<Sample*>::iterator i = _send_buffers.begin(); i != _send_buffers.end(); ++i) {
429                 free(*i);
430         }
431
432         AudioDiskstream::free_working_buffers();
433         
434 #undef TRACK_DESTRUCTION
435 #ifdef TRACK_DESTRUCTION
436         cerr << "delete named selections\n";
437 #endif /* TRACK_DESTRUCTION */
438         for (NamedSelectionList::iterator i = named_selections.begin(); i != named_selections.end(); ) {
439                 NamedSelectionList::iterator tmp;
440
441                 tmp = i;
442                 ++tmp;
443
444                 delete *i;
445                 i = tmp;
446         }
447
448 #ifdef TRACK_DESTRUCTION
449         cerr << "delete playlists\n";
450 #endif /* TRACK_DESTRUCTION */
451         for (PlaylistList::iterator i = playlists.begin(); i != playlists.end(); ) {
452                 PlaylistList::iterator tmp;
453
454                 tmp = i;
455                 ++tmp;
456
457                 delete *i;
458                 
459                 i = tmp;
460         }
461
462 #ifdef TRACK_DESTRUCTION
463         cerr << "delete audio regions\n";
464 #endif /* TRACK_DESTRUCTION */
465         
466         for (AudioRegionList::iterator i = audio_regions.begin(); i != audio_regions.end(); ++i) {
467                 i->second->drop_references ();
468         }
469
470         audio_regions.clear ();
471         
472 #ifdef TRACK_DESTRUCTION
473         cerr << "delete routes\n";
474 #endif /* TRACK_DESTRUCTION */
475         {
476                 RCUWriter<RouteList> writer (routes);
477                 boost::shared_ptr<RouteList> r = writer.get_copy ();
478                 for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
479                         (*i)->drop_references ();
480                 }
481                 r->clear ();
482                 /* writer goes out of scope and updates master */
483         }
484
485         routes.flush ();
486
487 #ifdef TRACK_DESTRUCTION
488         cerr << "delete diskstreams\n";
489 #endif /* TRACK_DESTRUCTION */
490        {
491                RCUWriter<DiskstreamList> dwriter (diskstreams);
492                boost::shared_ptr<DiskstreamList> dsl = dwriter.get_copy();
493                for (DiskstreamList::iterator i = dsl->begin(); i != dsl->end(); ++i) {
494                        (*i)->drop_references ();
495                }
496                dsl->clear ();
497        }
498        diskstreams.flush ();
499
500 #ifdef TRACK_DESTRUCTION
501         cerr << "delete audio sources\n";
502 #endif /* TRACK_DESTRUCTION */
503         for (AudioSourceList::iterator i = audio_sources.begin(); i != audio_sources.end(); ) {
504                 AudioSourceList::iterator tmp;
505
506                 tmp = i;
507                 ++tmp;
508
509                 i->second->drop_references ();
510
511                 i = tmp;
512         }
513
514         audio_sources.clear ();
515
516 #ifdef TRACK_DESTRUCTION
517         cerr << "delete mix groups\n";
518 #endif /* TRACK_DESTRUCTION */
519         for (list<RouteGroup *>::iterator i = mix_groups.begin(); i != mix_groups.end(); ) {
520                 list<RouteGroup*>::iterator tmp;
521
522                 tmp = i;
523                 ++tmp;
524
525                 delete *i;
526
527                 i = tmp;
528         }
529
530 #ifdef TRACK_DESTRUCTION
531         cerr << "delete edit groups\n";
532 #endif /* TRACK_DESTRUCTION */
533         for (list<RouteGroup *>::iterator i = edit_groups.begin(); i != edit_groups.end(); ) {
534                 list<RouteGroup*>::iterator tmp;
535                 
536                 tmp = i;
537                 ++tmp;
538
539                 delete *i;
540
541                 i = tmp;
542         }
543         
544 #ifdef TRACK_DESTRUCTION
545         cerr << "delete connections\n";
546 #endif /* TRACK_DESTRUCTION */
547         for (ConnectionList::iterator i = _connections.begin(); i != _connections.end(); ) {
548                 ConnectionList::iterator tmp;
549
550                 tmp = i;
551                 ++tmp;
552
553                 delete *i;
554
555                 i = tmp;
556         }
557
558         if (butler_mixdown_buffer) {
559                 delete [] butler_mixdown_buffer;
560         }
561
562         if (butler_gain_buffer) {
563                 delete [] butler_gain_buffer;
564         }
565
566         Crossfade::set_buffer_size (0);
567
568         if (mmc) {
569                 delete mmc;
570         }
571 }
572
573 void
574 Session::set_worst_io_latencies ()
575 {
576         _worst_output_latency = 0;
577         _worst_input_latency = 0;
578
579         if (!_engine.connected()) {
580                 return;
581         }
582
583         boost::shared_ptr<RouteList> r = routes.reader ();
584         
585         for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
586                 _worst_output_latency = max (_worst_output_latency, (*i)->output_latency());
587                 _worst_input_latency = max (_worst_input_latency, (*i)->input_latency());
588         }
589 }
590
591 void
592 Session::when_engine_running ()
593 {
594         string first_physical_output;
595
596         /* we don't want to run execute this again */
597
598         first_time_running.disconnect ();
599
600         set_block_size (_engine.frames_per_cycle());
601         set_frame_rate (_engine.frame_rate());
602
603         Config->map_parameters (mem_fun (*this, &Session::config_changed));
604
605         /* every time we reconnect, recompute worst case output latencies */
606
607         _engine.Running.connect (mem_fun (*this, &Session::set_worst_io_latencies));
608
609         if (synced_to_jack()) {
610                 _engine.transport_stop ();
611         }
612
613         if (Config->get_jack_time_master()) {
614                 _engine.transport_locate (_transport_frame);
615         }
616
617         _clicking = false;
618
619         try {
620                 XMLNode* child = 0;
621                 
622                 _click_io.reset (new ClickIO (*this, "click", 0, 0, -1, -1));
623
624                 if (state_tree && (child = find_named_node (*state_tree->root(), "Click")) != 0) {
625
626                         /* existing state for Click */
627                         
628                         if (_click_io->set_state (*child->children().front()) == 0) {
629                                 
630                                 _clicking = Config->get_clicking ();
631
632                         } else {
633
634                                 error << _("could not setup Click I/O") << endmsg;
635                                 _clicking = false;
636                         }
637
638                 } else {
639                         
640                         /* default state for Click */
641
642                         first_physical_output = _engine.get_nth_physical_output (0);
643                         
644                         if (first_physical_output.length()) {
645                                 if (_click_io->add_output_port (first_physical_output, this)) {
646                                         // relax, even though its an error
647                                 } else {
648                                         _clicking = Config->get_clicking ();
649                                 }
650                         }
651                 }
652         }
653
654         catch (failed_constructor& err) {
655                 error << _("cannot setup Click I/O") << endmsg;
656         }
657
658         set_worst_io_latencies ();
659
660         if (_clicking) {
661                 // XXX HOW TO ALERT UI TO THIS ? DO WE NEED TO?
662         }
663
664         if (auditioner == 0) {
665
666                 /* we delay creating the auditioner till now because
667                    it makes its own connections to ports named
668                    in the ARDOUR_RC config file. the engine has
669                    to be running for this to work.
670                 */
671
672                 try {
673                         auditioner.reset (new Auditioner (*this));
674                 }
675
676                 catch (failed_constructor& err) {
677                         warning << _("cannot create Auditioner: no auditioning of regions possible") << endmsg;
678                 }
679         }
680
681         /* Create a set of Connection objects that map
682            to the physical outputs currently available
683         */
684
685         /* ONE: MONO */
686
687         for (uint32_t np = 0; np < n_physical_outputs; ++np) {
688                 char buf[32];
689                 snprintf (buf, sizeof (buf), _("out %" PRIu32), np+1);
690
691                 Connection* c = new OutputConnection (buf, true);
692
693                 c->add_port ();
694                 c->add_connection (0, _engine.get_nth_physical_output (np));
695
696                 add_connection (c);
697         }
698
699         for (uint32_t np = 0; np < n_physical_inputs; ++np) {
700                 char buf[32];
701                 snprintf (buf, sizeof (buf), _("in %" PRIu32), np+1);
702
703                 Connection* c = new InputConnection (buf, true);
704
705                 c->add_port ();
706                 c->add_connection (0, _engine.get_nth_physical_input (np));
707
708                 add_connection (c);
709         }
710
711         /* TWO: STEREO */
712
713         for (uint32_t np = 0; np < n_physical_outputs; np +=2) {
714                 char buf[32];
715                 snprintf (buf, sizeof (buf), _("out %" PRIu32 "+%" PRIu32), np+1, np+2);
716
717                 Connection* c = new OutputConnection (buf, true);
718
719                 c->add_port ();
720                 c->add_port ();
721                 c->add_connection (0, _engine.get_nth_physical_output (np));
722                 c->add_connection (1, _engine.get_nth_physical_output (np+1));
723
724                 add_connection (c);
725         }
726
727         for (uint32_t np = 0; np < n_physical_inputs; np +=2) {
728                 char buf[32];
729                 snprintf (buf, sizeof (buf), _("in %" PRIu32 "+%" PRIu32), np+1, np+2);
730
731                 Connection* c = new InputConnection (buf, true);
732
733                 c->add_port ();
734                 c->add_port ();
735                 c->add_connection (0, _engine.get_nth_physical_input (np));
736                 c->add_connection (1, _engine.get_nth_physical_input (np+1));
737
738                 add_connection (c);
739         }
740
741         /* THREE MASTER */
742
743         if (_master_out) {
744
745                 /* create master/control ports */
746                 
747                 if (_master_out) {
748                         uint32_t n;
749
750                         /* force the master to ignore any later call to this */
751                         
752                         if (_master_out->pending_state_node) {
753                                 _master_out->ports_became_legal();
754                         }
755
756                         /* no panner resets till we are through */
757                         
758                         _master_out->defer_pan_reset ();
759                         
760                         while ((int) _master_out->n_inputs() < _master_out->input_maximum()) {
761                                 if (_master_out->add_input_port ("", this)) {
762                                         error << _("cannot setup master inputs") 
763                                               << endmsg;
764                                         break;
765                                 }
766                         }
767                         n = 0;
768                         while ((int) _master_out->n_outputs() < _master_out->output_maximum()) {
769                                 if (_master_out->add_output_port (_engine.get_nth_physical_output (n), this)) {
770                                         error << _("cannot setup master outputs")
771                                               << endmsg;
772                                         break;
773                                 }
774                                 n++;
775                         }
776
777                         _master_out->allow_pan_reset ();
778                         
779                 }
780
781                 Connection* c = new OutputConnection (_("Master Out"), true);
782
783                 for (uint32_t n = 0; n < _master_out->n_inputs (); ++n) {
784                         c->add_port ();
785                         c->add_connection ((int) n, _master_out->input(n)->name());
786                 }
787                 add_connection (c);
788         } 
789
790         hookup_io ();
791
792         /* catch up on send+insert cnts */
793
794         insert_cnt = 0;
795         
796         for (list<PortInsert*>::iterator i = _port_inserts.begin(); i != _port_inserts.end(); ++i) {
797                 uint32_t id;
798
799                 if (sscanf ((*i)->name().c_str(), "%*s %u", &id) == 1) {
800                         if (id > insert_cnt) {
801                                 insert_cnt = id;
802                         }
803                 }
804         }
805
806         send_cnt = 0;
807
808         for (list<Send*>::iterator i = _sends.begin(); i != _sends.end(); ++i) {
809                 uint32_t id;
810                 
811                 if (sscanf ((*i)->name().c_str(), "%*s %u", &id) == 1) {
812                         if (id > send_cnt) {
813                                 send_cnt = id;
814                         }
815                 }
816         }
817
818         _state_of_the_state = StateOfTheState (_state_of_the_state & ~(CannotSave|Dirty));
819
820         /* hook us up to the engine */
821
822         _engine.set_session (this);
823
824 #ifdef HAVE_LIBLO
825         /* and to OSC */
826
827         osc->set_session (*this);
828 #endif
829     
830         _state_of_the_state = Clean;
831
832         DirtyChanged (); /* EMIT SIGNAL */
833 }
834
835 void
836 Session::hookup_io ()
837 {
838         /* stop graph reordering notifications from
839            causing resorts, etc.
840         */
841
842         _state_of_the_state = StateOfTheState (_state_of_the_state | InitialConnecting);
843
844         /* Tell all IO objects to create their ports */
845
846         IO::enable_ports ();
847
848         if (_control_out) {
849                 uint32_t n;
850
851                 while ((int) _control_out->n_inputs() < _control_out->input_maximum()) {
852                         if (_control_out->add_input_port ("", this)) {
853                                 error << _("cannot setup control inputs")
854                                       << endmsg;
855                                 break;
856                         }
857                 }
858                 n = 0;
859                 while ((int) _control_out->n_outputs() < _control_out->output_maximum()) {
860                         if (_control_out->add_output_port (_engine.get_nth_physical_output (n), this)) {
861                                 error << _("cannot set up master outputs")
862                                       << endmsg;
863                                 break;
864                         }
865                         n++;
866                 }
867         }
868
869         /* Tell all IO objects to connect themselves together */
870
871         IO::enable_connecting ();
872
873         /* Now reset all panners */
874
875         IO::reset_panners ();
876
877         /* Anyone who cares about input state, wake up and do something */
878
879         IOConnectionsComplete (); /* EMIT SIGNAL */
880
881         _state_of_the_state = StateOfTheState (_state_of_the_state & ~InitialConnecting);
882
883         /* now handle the whole enchilada as if it was one
884            graph reorder event.
885         */
886
887         graph_reordered ();
888
889         /* update mixer solo state */
890
891         catch_up_on_solo();
892 }
893
894 void
895 Session::playlist_length_changed (Playlist* pl)
896 {
897         /* we can't just increase end_location->end() if pl->get_maximum_extent() 
898            if larger. if the playlist used to be the longest playlist,
899            and its now shorter, we have to decrease end_location->end(). hence,
900            we have to iterate over all diskstreams and check the 
901            playlists currently in use.
902         */
903         find_current_end ();
904 }
905
906 void
907 Session::diskstream_playlist_changed (boost::shared_ptr<Diskstream> dstream)
908 {
909         Playlist *playlist;
910
911         if ((playlist = dstream->playlist()) != 0) {
912           playlist->LengthChanged.connect (sigc::bind (mem_fun (this, &Session::playlist_length_changed), playlist));
913         }
914         
915         /* see comment in playlist_length_changed () */
916         find_current_end ();
917 }
918
919 bool
920 Session::record_enabling_legal () const
921 {
922         /* this used to be in here, but survey says.... we don't need to restrict it */
923         // if (record_status() == Recording) {
924         //      return false;
925         // }
926
927         if (Config->get_all_safe()) {
928                 return false;
929         }
930         return true;
931 }
932
933 void
934 Session::reset_input_monitor_state ()
935 {
936         if (transport_rolling()) {
937
938                 boost::shared_ptr<DiskstreamList> dsl = diskstreams.reader();
939
940                 for (DiskstreamList::iterator i = dsl->begin(); i != dsl->end(); ++i) {
941                         if ((*i)->record_enabled ()) {
942                                 //cerr << "switching to input = " << !auto_input << __FILE__ << __LINE__ << endl << endl;
943                                 (*i)->monitor_input (Config->get_monitoring_model() == HardwareMonitoring && !Config->get_auto_input());
944                         }
945                 }
946         } else {
947                 boost::shared_ptr<DiskstreamList> dsl = diskstreams.reader();
948
949                 for (DiskstreamList::iterator i = dsl->begin(); i != dsl->end(); ++i) {
950                         if ((*i)->record_enabled ()) {
951                                 //cerr << "switching to input = " << !Config->get_auto_input() << __FILE__ << __LINE__ << endl << endl;
952                                 (*i)->monitor_input (Config->get_monitoring_model() == HardwareMonitoring);
953                         }
954                 }
955         }
956 }
957
958 void
959 Session::auto_punch_start_changed (Location* location)
960 {
961         replace_event (Event::PunchIn, location->start());
962
963         if (get_record_enabled() && Config->get_punch_in()) {
964                 /* capture start has been changed, so save new pending state */
965                 save_state ("", true);
966         }
967 }       
968
969 void
970 Session::auto_punch_end_changed (Location* location)
971 {
972         nframes_t when_to_stop = location->end();
973         // when_to_stop += _worst_output_latency + _worst_input_latency;
974         replace_event (Event::PunchOut, when_to_stop);
975 }       
976
977 void
978 Session::auto_punch_changed (Location* location)
979 {
980         nframes_t when_to_stop = location->end();
981
982         replace_event (Event::PunchIn, location->start());
983         //when_to_stop += _worst_output_latency + _worst_input_latency;
984         replace_event (Event::PunchOut, when_to_stop);
985 }       
986
987 void
988 Session::auto_loop_changed (Location* location)
989 {
990         replace_event (Event::AutoLoop, location->end(), location->start());
991
992         if (transport_rolling() && play_loop) {
993
994                 //if (_transport_frame < location->start() || _transport_frame > location->end()) {
995
996                 if (_transport_frame > location->end()) {
997                         // relocate to beginning of loop
998                         clear_events (Event::LocateRoll);
999                         
1000                         request_locate (location->start(), true);
1001
1002                 }
1003                 else if (Config->get_seamless_loop() && !loop_changing) {
1004                         
1005                         // schedule a locate-roll to refill the diskstreams at the
1006                         // previous loop end
1007                         loop_changing = true;
1008
1009                         if (location->end() > last_loopend) {
1010                                 clear_events (Event::LocateRoll);
1011                                 Event *ev = new Event (Event::LocateRoll, Event::Add, last_loopend, last_loopend, 0, true);
1012                                 queue_event (ev);
1013                         }
1014
1015                 }
1016         }       
1017
1018         last_loopend = location->end();
1019         
1020 }
1021
1022 void
1023 Session::set_auto_punch_location (Location* location)
1024 {
1025         Location* existing;
1026
1027         if ((existing = _locations.auto_punch_location()) != 0 && existing != location) {
1028                 auto_punch_start_changed_connection.disconnect();
1029                 auto_punch_end_changed_connection.disconnect();
1030                 auto_punch_changed_connection.disconnect();
1031                 existing->set_auto_punch (false, this);
1032                 remove_event (existing->start(), Event::PunchIn);
1033                 clear_events (Event::PunchOut);
1034                 auto_punch_location_changed (0);
1035         }
1036
1037         set_dirty();
1038
1039         if (location == 0) {
1040                 return;
1041         }
1042         
1043         if (location->end() <= location->start()) {
1044                 error << _("Session: you can't use that location for auto punch (start <= end)") << endmsg;
1045                 return;
1046         }
1047
1048         auto_punch_start_changed_connection.disconnect();
1049         auto_punch_end_changed_connection.disconnect();
1050         auto_punch_changed_connection.disconnect();
1051                 
1052         auto_punch_start_changed_connection = location->start_changed.connect (mem_fun (this, &Session::auto_punch_start_changed));
1053         auto_punch_end_changed_connection = location->end_changed.connect (mem_fun (this, &Session::auto_punch_end_changed));
1054         auto_punch_changed_connection = location->changed.connect (mem_fun (this, &Session::auto_punch_changed));
1055
1056         location->set_auto_punch (true, this);
1057         auto_punch_location_changed (location);
1058 }
1059
1060 void
1061 Session::set_auto_loop_location (Location* location)
1062 {
1063         Location* existing;
1064
1065         if ((existing = _locations.auto_loop_location()) != 0 && existing != location) {
1066                 auto_loop_start_changed_connection.disconnect();
1067                 auto_loop_end_changed_connection.disconnect();
1068                 auto_loop_changed_connection.disconnect();
1069                 existing->set_auto_loop (false, this);
1070                 remove_event (existing->end(), Event::AutoLoop);
1071                 auto_loop_location_changed (0);
1072         }
1073         
1074         set_dirty();
1075
1076         if (location == 0) {
1077                 return;
1078         }
1079
1080         if (location->end() <= location->start()) {
1081                 error << _("Session: you can't use a mark for auto loop") << endmsg;
1082                 return;
1083         }
1084
1085         last_loopend = location->end();
1086         
1087         auto_loop_start_changed_connection.disconnect();
1088         auto_loop_end_changed_connection.disconnect();
1089         auto_loop_changed_connection.disconnect();
1090         
1091         auto_loop_start_changed_connection = location->start_changed.connect (mem_fun (this, &Session::auto_loop_changed));
1092         auto_loop_end_changed_connection = location->end_changed.connect (mem_fun (this, &Session::auto_loop_changed));
1093         auto_loop_changed_connection = location->changed.connect (mem_fun (this, &Session::auto_loop_changed));
1094
1095         location->set_auto_loop (true, this);
1096         auto_loop_location_changed (location);
1097 }
1098
1099 void
1100 Session::locations_added (Location* ignored)
1101 {
1102         set_dirty ();
1103 }
1104
1105 void
1106 Session::locations_changed ()
1107 {
1108         _locations.apply (*this, &Session::handle_locations_changed);
1109 }
1110
1111 void
1112 Session::handle_locations_changed (Locations::LocationList& locations)
1113 {
1114         Locations::LocationList::iterator i;
1115         Location* location;
1116         bool set_loop = false;
1117         bool set_punch = false;
1118
1119         for (i = locations.begin(); i != locations.end(); ++i) {
1120
1121                 location =* i;
1122
1123                 if (location->is_auto_punch()) {
1124                         set_auto_punch_location (location);
1125                         set_punch = true;
1126                 }
1127                 if (location->is_auto_loop()) {
1128                         set_auto_loop_location (location);
1129                         set_loop = true;
1130                 }
1131                 
1132         }
1133
1134         if (!set_loop) {
1135                 set_auto_loop_location (0);
1136         }
1137         if (!set_punch) {
1138                 set_auto_punch_location (0);
1139         }
1140
1141         set_dirty();
1142 }                                                    
1143
1144 void
1145 Session::enable_record ()
1146 {
1147         /* XXX really atomic compare+swap here */
1148         if (g_atomic_int_get (&_record_status) != Recording) {
1149                 g_atomic_int_set (&_record_status, Recording);
1150                 _last_record_location = _transport_frame;
1151                 send_mmc_in_another_thread (MIDI::MachineControl::cmdRecordStrobe);
1152
1153                 if (Config->get_monitoring_model() == HardwareMonitoring && Config->get_auto_input()) {
1154                         boost::shared_ptr<DiskstreamList> dsl = diskstreams.reader();
1155                         for (DiskstreamList::iterator i = dsl->begin(); i != dsl->end(); ++i) {
1156                                 if ((*i)->record_enabled ()) {
1157                                         (*i)->monitor_input (true);   
1158                                 }
1159                         }
1160                 }
1161
1162                 RecordStateChanged ();
1163         }
1164 }
1165
1166 void
1167 Session::disable_record (bool rt_context, bool force)
1168 {
1169         RecordState rs;
1170
1171         if ((rs = (RecordState) g_atomic_int_get (&_record_status)) != Disabled) {
1172
1173                 if (!Config->get_latched_record_enable () || force) {
1174                         g_atomic_int_set (&_record_status, Disabled);
1175                 } else {
1176                         if (rs == Recording) {
1177                                 g_atomic_int_set (&_record_status, Enabled);
1178                         }
1179                 }
1180
1181                 send_mmc_in_another_thread (MIDI::MachineControl::cmdRecordExit);
1182
1183                 if (Config->get_monitoring_model() == HardwareMonitoring && Config->get_auto_input()) {
1184                         boost::shared_ptr<DiskstreamList> dsl = diskstreams.reader();
1185                         
1186                         for (DiskstreamList::iterator i = dsl->begin(); i != dsl->end(); ++i) {
1187                                 if ((*i)->record_enabled ()) {
1188                                         (*i)->monitor_input (false);   
1189                                 }
1190                         }
1191                 }
1192                 
1193                 RecordStateChanged (); /* emit signal */
1194
1195                 if (!rt_context) {
1196                         remove_pending_capture_state ();
1197                 }
1198         }
1199 }
1200
1201 void
1202 Session::step_back_from_record ()
1203 {
1204         g_atomic_int_set (&_record_status, Enabled);
1205
1206         if (Config->get_monitoring_model() == HardwareMonitoring) {
1207                 boost::shared_ptr<DiskstreamList> dsl = diskstreams.reader();
1208                 
1209                 for (DiskstreamList::iterator i = dsl->begin(); i != dsl->end(); ++i) {
1210                         if (Config->get_auto_input() && (*i)->record_enabled ()) {
1211                                 //cerr << "switching from input" << __FILE__ << __LINE__ << endl << endl;
1212                                 (*i)->monitor_input (false);   
1213                         }
1214                 }
1215         }
1216 }
1217
1218 void
1219 Session::maybe_enable_record ()
1220 {
1221         g_atomic_int_set (&_record_status, Enabled);
1222
1223         /* this function is currently called from somewhere other than an RT thread.
1224            this save_state() call therefore doesn't impact anything.
1225         */
1226
1227         save_state ("", true);
1228
1229         if (_transport_speed) {
1230                 if (!Config->get_punch_in()) {
1231                         enable_record ();
1232                 } 
1233         } else {
1234                 send_mmc_in_another_thread (MIDI::MachineControl::cmdRecordPause);
1235                 RecordStateChanged (); /* EMIT SIGNAL */
1236         }
1237
1238         set_dirty();
1239 }
1240
1241 nframes_t
1242 Session::audible_frame () const
1243 {
1244         nframes_t ret;
1245         nframes_t offset;
1246         nframes_t tf;
1247
1248         /* the first of these two possible settings for "offset"
1249            mean that the audible frame is stationary until 
1250            audio emerges from the latency compensation
1251            "pseudo-pipeline".
1252
1253            the second means that the audible frame is stationary
1254            until audio would emerge from a physical port
1255            in the absence of any plugin latency compensation
1256         */
1257
1258         offset = _worst_output_latency;
1259
1260         if (offset > current_block_size) {
1261                 offset -= current_block_size;
1262         } else { 
1263                 /* XXX is this correct? if we have no external
1264                    physical connections and everything is internal
1265                    then surely this is zero? still, how
1266                    likely is that anyway?
1267                 */
1268                 offset = current_block_size;
1269         }
1270
1271         if (synced_to_jack()) {
1272                 tf = _engine.transport_frame();
1273         } else {
1274                 tf = _transport_frame;
1275         }
1276
1277         if (_transport_speed == 0) {
1278                 return tf;
1279         }
1280
1281         if (tf < offset) {
1282                 return 0;
1283         }
1284
1285         ret = tf;
1286
1287         if (!non_realtime_work_pending()) {
1288
1289                 /* MOVING */
1290
1291                 /* take latency into account */
1292                 
1293                 ret -= offset;
1294         }
1295
1296         return ret;
1297 }
1298
1299 void
1300 Session::set_frame_rate (nframes_t frames_per_second)
1301 {
1302         /** \fn void Session::set_frame_size(nframes_t)
1303                 the AudioEngine object that calls this guarantees 
1304                 that it will not be called while we are also in
1305                 ::process(). Its fine to do things that block
1306                 here.
1307         */
1308
1309         _base_frame_rate = frames_per_second;
1310
1311         sync_time_vars();
1312
1313         // XXX we need some equivalent to this, somehow
1314         // DestructiveFileSource::setup_standard_crossfades (frames_per_second);
1315
1316         set_dirty();
1317
1318         /* XXX need to reset/reinstantiate all LADSPA plugins */
1319 }
1320
1321 void
1322 Session::set_block_size (nframes_t nframes)
1323 {
1324         /* the AudioEngine guarantees 
1325            that it will not be called while we are also in
1326            ::process(). It is therefore fine to do things that block
1327            here.
1328         */
1329
1330         { 
1331                 vector<Sample*>::iterator i;
1332                 uint32_t np;
1333                         
1334                 current_block_size = nframes;
1335                 
1336                 for (np = 0, i = _passthru_buffers.begin(); i != _passthru_buffers.end(); ++i, ++np) {
1337                         free (*i);
1338                 }
1339
1340                 for (vector<Sample*>::iterator i = _silent_buffers.begin(); i != _silent_buffers.end(); ++i) {
1341                         free (*i);
1342                 }
1343
1344                 _passthru_buffers.clear ();
1345                 _silent_buffers.clear ();
1346
1347                 ensure_passthru_buffers (np);
1348
1349                 for (vector<Sample*>::iterator i = _send_buffers.begin(); i != _send_buffers.end(); ++i) {
1350                         free(*i);
1351
1352                         Sample *buf;
1353 #ifdef NO_POSIX_MEMALIGN
1354                         buf = (Sample *) malloc(current_block_size * sizeof(Sample));
1355 #else
1356                         posix_memalign((void **)&buf,16,current_block_size * 4);
1357 #endif                  
1358                         *i = buf;
1359
1360                         memset (*i, 0, sizeof (Sample) * current_block_size);
1361                 }
1362
1363                 
1364                 if (_gain_automation_buffer) {
1365                         delete [] _gain_automation_buffer;
1366                 }
1367                 _gain_automation_buffer = new gain_t[nframes];
1368
1369                 allocate_pan_automation_buffers (nframes, _npan_buffers, true);
1370
1371                 boost::shared_ptr<RouteList> r = routes.reader ();
1372
1373                 for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
1374                         (*i)->set_block_size (nframes);
1375                 }
1376                 
1377                 boost::shared_ptr<DiskstreamList> dsl = diskstreams.reader();
1378                 for (DiskstreamList::iterator i = dsl->begin(); i != dsl->end(); ++i) {
1379                         (*i)->set_block_size (nframes);
1380                 }
1381
1382                 set_worst_io_latencies ();
1383         }
1384 }
1385
1386 void
1387 Session::set_default_fade (float steepness, float fade_msecs)
1388 {
1389 #if 0
1390         nframes_t fade_frames;
1391         
1392         /* Don't allow fade of less 1 frame */
1393         
1394         if (fade_msecs < (1000.0 * (1.0/_current_frame_rate))) {
1395
1396                 fade_msecs = 0;
1397                 fade_frames = 0;
1398
1399         } else {
1400                 
1401                 fade_frames = (nframes_t) floor (fade_msecs * _current_frame_rate * 0.001);
1402                 
1403         }
1404
1405         default_fade_msecs = fade_msecs;
1406         default_fade_steepness = steepness;
1407
1408         {
1409                 // jlc, WTF is this!
1410                 Glib::RWLock::ReaderLock lm (route_lock);
1411                 AudioRegion::set_default_fade (steepness, fade_frames);
1412         }
1413
1414         set_dirty();
1415
1416         /* XXX have to do this at some point */
1417         /* foreach region using default fade, reset, then 
1418            refill_all_diskstream_buffers ();
1419         */
1420 #endif
1421 }
1422
1423 struct RouteSorter {
1424     bool operator() (boost::shared_ptr<Route> r1, boost::shared_ptr<Route> r2) {
1425             if (r1->fed_by.find (r2) != r1->fed_by.end()) {
1426                     return false;
1427             } else if (r2->fed_by.find (r1) != r2->fed_by.end()) {
1428                     return true;
1429             } else {
1430                     if (r1->fed_by.empty()) {
1431                             if (r2->fed_by.empty()) {
1432                                     /* no ardour-based connections inbound to either route. just use signal order */
1433                                     return r1->order_key(N_("signal")) < r2->order_key(N_("signal"));
1434                             } else {
1435                                     /* r2 has connections, r1 does not; run r1 early */
1436                                     return true;
1437                             }
1438                     } else {
1439                             return r1->order_key(N_("signal")) < r2->order_key(N_("signal"));
1440                     }
1441             }
1442     }
1443 };
1444
1445 static void
1446 trace_terminal (shared_ptr<Route> r1, shared_ptr<Route> rbase)
1447 {
1448         shared_ptr<Route> r2;
1449
1450         if ((r1->fed_by.find (rbase) != r1->fed_by.end()) && (rbase->fed_by.find (r1) != rbase->fed_by.end())) {
1451                 info << string_compose(_("feedback loop setup between %1 and %2"), r1->name(), rbase->name()) << endmsg;
1452                 return;
1453         } 
1454
1455         /* make a copy of the existing list of routes that feed r1 */
1456
1457         set<shared_ptr<Route> > existing = r1->fed_by;
1458
1459         /* for each route that feeds r1, recurse, marking it as feeding
1460            rbase as well.
1461         */
1462
1463         for (set<shared_ptr<Route> >::iterator i = existing.begin(); i != existing.end(); ++i) {
1464                 r2 =* i;
1465
1466                 /* r2 is a route that feeds r1 which somehow feeds base. mark
1467                    base as being fed by r2
1468                 */
1469
1470                 rbase->fed_by.insert (r2);
1471
1472                 if (r2 != rbase) {
1473
1474                         /* 2nd level feedback loop detection. if r1 feeds or is fed by r2,
1475                            stop here.
1476                          */
1477
1478                         if ((r1->fed_by.find (r2) != r1->fed_by.end()) && (r2->fed_by.find (r1) != r2->fed_by.end())) {
1479                                 continue;
1480                         }
1481
1482                         /* now recurse, so that we can mark base as being fed by
1483                            all routes that feed r2
1484                         */
1485
1486                         trace_terminal (r2, rbase);
1487                 }
1488
1489         }
1490 }
1491
1492 void
1493 Session::resort_routes ()
1494 {
1495         /* don't do anything here with signals emitted
1496            by Routes while we are being destroyed.
1497         */
1498
1499         if (_state_of_the_state & Deletion) {
1500                 return;
1501         }
1502
1503
1504         {
1505
1506                 RCUWriter<RouteList> writer (routes);
1507                 shared_ptr<RouteList> r = writer.get_copy ();
1508                 resort_routes_using (r);
1509                 /* writer goes out of scope and forces update */
1510         }
1511
1512 }
1513 void
1514 Session::resort_routes_using (shared_ptr<RouteList> r)
1515 {
1516         RouteList::iterator i, j;
1517         
1518         for (i = r->begin(); i != r->end(); ++i) {
1519                 
1520                 (*i)->fed_by.clear ();
1521                 
1522                 for (j = r->begin(); j != r->end(); ++j) {
1523                         
1524                         /* although routes can feed themselves, it will
1525                            cause an endless recursive descent if we
1526                            detect it. so don't bother checking for
1527                            self-feeding.
1528                         */
1529                         
1530                         if (*j == *i) {
1531                                 continue;
1532                         }
1533                         
1534                         if ((*j)->feeds (*i)) {
1535                                 (*i)->fed_by.insert (*j);
1536                         } 
1537                 }
1538         }
1539         
1540         for (i = r->begin(); i != r->end(); ++i) {
1541                 trace_terminal (*i, *i);
1542         }
1543         
1544         RouteSorter cmp;
1545         r->sort (cmp);
1546         
1547 #if 0
1548         cerr << "finished route resort\n";
1549         
1550         for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
1551                 cerr << " " << (*i)->name() << " signal order = " << (*i)->order_key ("signal") << endl;
1552         }
1553         cerr << endl;
1554 #endif
1555         
1556 }
1557
1558 list<boost::shared_ptr<AudioTrack> >
1559 Session::new_audio_track (int input_channels, int output_channels, TrackMode mode, uint32_t how_many)
1560 {
1561         char track_name[32];
1562         uint32_t track_id = 0;
1563         uint32_t n = 0;
1564         uint32_t channels_used = 0;
1565         string port;
1566         RouteList new_routes;
1567         list<boost::shared_ptr<AudioTrack> > ret;
1568
1569         /* count existing audio tracks */
1570
1571         {
1572                 shared_ptr<RouteList> r = routes.reader ();
1573
1574                 for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
1575                         if (dynamic_cast<AudioTrack*>((*i).get()) != 0) {
1576                                 if (!(*i)->hidden()) {
1577                                         n++;
1578                                         channels_used += (*i)->n_inputs();
1579                                 }
1580                         }
1581                 }
1582         }
1583
1584         vector<string> physinputs;
1585         vector<string> physoutputs;
1586         uint32_t nphysical_in;
1587         uint32_t nphysical_out;
1588
1589         _engine.get_physical_outputs (physoutputs);
1590         _engine.get_physical_inputs (physinputs);
1591
1592         while (how_many) {
1593
1594                 /* check for duplicate route names, since we might have pre-existing
1595                    routes with this name (e.g. create Audio1, Audio2, delete Audio1,
1596                    save, close,restart,add new route - first named route is now
1597                    Audio2)
1598                 */
1599                 
1600
1601                 do {
1602                         ++track_id;
1603
1604                         snprintf (track_name, sizeof(track_name), "Audio %" PRIu32, track_id);
1605
1606                         if (route_by_name (track_name) == 0) {
1607                                 break;
1608                         }
1609                         
1610                 } while (track_id < (UINT_MAX-1));
1611
1612                 if (Config->get_input_auto_connect() & AutoConnectPhysical) {
1613                         nphysical_in = min (n_physical_inputs, (uint32_t) physinputs.size());
1614                 } else {
1615                         nphysical_in = 0;
1616                 }
1617                 
1618                 if (Config->get_output_auto_connect() & AutoConnectPhysical) {
1619                         nphysical_out = min (n_physical_outputs, (uint32_t) physinputs.size());
1620                 } else {
1621                         nphysical_out = 0;
1622                 }
1623                 
1624                 try {
1625                         shared_ptr<AudioTrack> track (new AudioTrack (*this, track_name, Route::Flag (0), mode));
1626                         
1627                         if (track->ensure_io (input_channels, output_channels, false, this)) {
1628                                 error << string_compose (_("cannot configure %1 in/%2 out configuration for new audio track"),
1629                                                          input_channels, output_channels)
1630                                       << endmsg;
1631                         }
1632                         
1633                         if (nphysical_in) {
1634                                 for (uint32_t x = 0; x < track->n_inputs() && x < nphysical_in; ++x) {
1635                                         
1636                                         port = "";
1637                                         
1638                                         if (Config->get_input_auto_connect() & AutoConnectPhysical) {
1639                                                 port = physinputs[(channels_used+x)%nphysical_in];
1640                                         } 
1641                                         
1642                                         if (port.length() && track->connect_input (track->input (x), port, this)) {
1643                                                 break;
1644                                         }
1645                                 }
1646                         }
1647                         
1648                         for (uint32_t x = 0; x < track->n_outputs(); ++x) {
1649                                 
1650                                 port = "";
1651                                 
1652                                 if (nphysical_out && (Config->get_output_auto_connect() & AutoConnectPhysical)) {
1653                                         port = physoutputs[(channels_used+x)%nphysical_out];
1654                                 } else if (Config->get_output_auto_connect() & AutoConnectMaster) {
1655                                         if (_master_out) {
1656                                                 port = _master_out->input (x%_master_out->n_inputs())->name();
1657                                         }
1658                                 }
1659                                 
1660                                 if (port.length() && track->connect_output (track->output (x), port, this)) {
1661                                         break;
1662                                 }
1663                         }
1664                         
1665                         channels_used += track->n_inputs ();
1666
1667                         if (_control_out) {
1668                                 vector<string> cports;
1669                                 uint32_t ni = _control_out->n_inputs();
1670                                 
1671                                 for (n = 0; n < ni; ++n) {
1672                                         cports.push_back (_control_out->input(n)->name());
1673                                 }
1674                                 
1675                                 track->set_control_outs (cports);
1676                         }
1677                         
1678                         track->DiskstreamChanged.connect (mem_fun (this, &Session::resort_routes));
1679                         track->set_remote_control_id (ntracks());
1680
1681                         new_routes.push_back (track);
1682                         ret.push_back (track);
1683                 }
1684
1685                 catch (failed_constructor &err) {
1686                         error << _("Session: could not create new audio track.") << endmsg;
1687                         // XXX should we delete the tracks already created? 
1688                         ret.clear ();
1689                         return ret;
1690                 }
1691                 
1692                 --how_many;
1693         }
1694
1695         if (!new_routes.empty()) {
1696                 add_routes (new_routes, false);
1697                 save_state (_current_snapshot_name);
1698         }
1699
1700         return ret;
1701 }
1702
1703 Session::RouteList
1704 Session::new_audio_route (int input_channels, int output_channels, uint32_t how_many)
1705 {
1706         char bus_name[32];
1707         uint32_t bus_id = 1;
1708         uint32_t n = 0;
1709         string port;
1710         RouteList ret;
1711
1712         /* count existing audio busses */
1713
1714         {
1715                 shared_ptr<RouteList> r = routes.reader ();
1716
1717                 for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
1718                         if (dynamic_cast<AudioTrack*>((*i).get()) == 0) {
1719                                 if (!(*i)->hidden()) {
1720                                         bus_id++;
1721                                 }
1722                         }
1723                 }
1724         }
1725
1726         vector<string> physinputs;
1727         vector<string> physoutputs;
1728
1729         _engine.get_physical_outputs (physoutputs);
1730         _engine.get_physical_inputs (physinputs);
1731
1732         while (how_many) {
1733
1734                 do {
1735                         ++bus_id;
1736
1737                         snprintf (bus_name, sizeof(bus_name), "Bus %" PRIu32, bus_id);
1738
1739                         if (route_by_name (bus_name) == 0) {
1740                                 break;
1741                         }
1742
1743                 } while (bus_id < (UINT_MAX-1));
1744
1745                 try {
1746                         shared_ptr<Route> bus (new Route (*this, bus_name, -1, -1, -1, -1, Route::Flag(0), DataType::AUDIO));
1747                         
1748                         if (bus->ensure_io (input_channels, output_channels, false, this)) {
1749                                 error << string_compose (_("cannot configure %1 in/%2 out configuration for new audio track"),
1750                                                          input_channels, output_channels)
1751                                       << endmsg;
1752                         }
1753                         
1754                         for (uint32_t x = 0; x < bus->n_inputs(); ++x) {
1755                                 
1756                                 port = "";
1757                                 
1758                                 if (Config->get_input_auto_connect() & AutoConnectPhysical) {
1759                                         port = physinputs[((n+x)%n_physical_inputs)];
1760                                 } 
1761                                 
1762                                 if (port.length() && bus->connect_input (bus->input (x), port, this)) {
1763                                         break;
1764                                 }
1765                         }
1766                         
1767                         for (uint32_t x = 0; x < bus->n_outputs(); ++x) {
1768                                 
1769                                 port = "";
1770                                 
1771                                 if (Config->get_output_auto_connect() & AutoConnectPhysical) {
1772                                         port = physoutputs[((n+x)%n_physical_outputs)];
1773                                 } else if (Config->get_output_auto_connect() & AutoConnectMaster) {
1774                                         if (_master_out) {
1775                                                 port = _master_out->input (x%_master_out->n_inputs())->name();
1776                                         }
1777                                 }
1778                                 
1779                                 if (port.length() && bus->connect_output (bus->output (x), port, this)) {
1780                                         break;
1781                                 }
1782                         }
1783                         
1784                         if (_control_out) {
1785                                 vector<string> cports;
1786                                 uint32_t ni = _control_out->n_inputs();
1787                                 
1788                                 for (uint32_t n = 0; n < ni; ++n) {
1789                                         cports.push_back (_control_out->input(n)->name());
1790                                 }
1791                                 bus->set_control_outs (cports);
1792                         }
1793
1794                         ret.push_back (bus);
1795                 }
1796         
1797
1798                 catch (failed_constructor &err) {
1799                         error << _("Session: could not create new audio route.") << endmsg;
1800                         ret.clear ();
1801                         return ret;
1802                 }
1803
1804                 --how_many;
1805         }
1806
1807         if (!ret.empty()) {
1808                 add_routes (ret, false);
1809                 save_state (_current_snapshot_name);
1810         }
1811
1812         return ret;
1813
1814 }
1815
1816 void
1817 Session::add_routes (RouteList& new_routes, bool save)
1818 {
1819         { 
1820                 RCUWriter<RouteList> writer (routes);
1821                 shared_ptr<RouteList> r = writer.get_copy ();
1822                 r->insert (r->end(), new_routes.begin(), new_routes.end());
1823                 resort_routes_using (r);
1824         }
1825
1826         for (RouteList::iterator x = new_routes.begin(); x != new_routes.end(); ++x) {
1827                 
1828                 boost::weak_ptr<Route> wpr (*x);
1829
1830                 (*x)->solo_changed.connect (sigc::bind (mem_fun (*this, &Session::route_solo_changed), wpr));
1831                 (*x)->mute_changed.connect (mem_fun (*this, &Session::route_mute_changed));
1832                 (*x)->output_changed.connect (mem_fun (*this, &Session::set_worst_io_latencies_x));
1833                 (*x)->redirects_changed.connect (mem_fun (*this, &Session::update_latency_compensation_proxy));
1834                 
1835                 if ((*x)->master()) {
1836                         _master_out = (*x);
1837                 }
1838                 
1839                 if ((*x)->control()) {
1840                         _control_out = (*x);
1841                 }
1842         }
1843
1844         set_dirty();
1845
1846         if (save) {
1847                 save_state (_current_snapshot_name);
1848         }
1849
1850         RouteAdded (new_routes); /* EMIT SIGNAL */
1851 }
1852
1853 void
1854 Session::add_diskstream (boost::shared_ptr<Diskstream> dstream)
1855 {
1856         /* need to do this in case we're rolling at the time, to prevent false underruns */
1857         dstream->do_refill_with_alloc();
1858         
1859         { 
1860                 RCUWriter<DiskstreamList> writer (diskstreams);
1861                 boost::shared_ptr<DiskstreamList> ds = writer.get_copy();
1862                 ds->push_back (dstream);
1863         }
1864
1865         dstream->set_block_size (current_block_size);
1866
1867         dstream->PlaylistChanged.connect (sigc::bind (mem_fun (*this, &Session::diskstream_playlist_changed), dstream));
1868         /* this will connect to future changes, and check the current length */
1869         diskstream_playlist_changed (dstream);
1870
1871         dstream->prepare ();
1872 }
1873
1874 void
1875 Session::remove_route (shared_ptr<Route> route)
1876 {
1877         {       
1878                 RCUWriter<RouteList> writer (routes);
1879                 shared_ptr<RouteList> rs = writer.get_copy ();
1880                 rs->remove (route);
1881                 
1882                 /* deleting the master out seems like a dumb
1883                    idea, but its more of a UI policy issue
1884                    than our concern.
1885                 */
1886
1887                 if (route == _master_out) {
1888                         _master_out = shared_ptr<Route> ();
1889                 }
1890
1891                 if (route == _control_out) {
1892                         _control_out = shared_ptr<Route> ();
1893
1894                         /* cancel control outs for all routes */
1895
1896                         vector<string> empty;
1897
1898                         for (RouteList::iterator r = rs->begin(); r != rs->end(); ++r) {
1899                                 (*r)->set_control_outs (empty);
1900                         }
1901                 }
1902
1903                 update_route_solo_state ();
1904                 
1905                 /* writer goes out of scope, forces route list update */
1906         }
1907
1908         // FIXME: audio specific
1909         AudioTrack* at;
1910         boost::shared_ptr<AudioDiskstream> ds;
1911         
1912         if ((at = dynamic_cast<AudioTrack*>(route.get())) != 0) {
1913                 ds = at->audio_diskstream();
1914         }
1915         
1916         if (ds) {
1917
1918                 {
1919                         RCUWriter<DiskstreamList> dsl (diskstreams);
1920                         boost::shared_ptr<DiskstreamList> d = dsl.get_copy();
1921                         d->remove (ds);
1922                 }
1923         }
1924
1925         find_current_end ();
1926         
1927         update_latency_compensation (false, false);
1928         set_dirty();
1929         
1930         /* get rid of it from the dead wood collection in the route list manager */
1931
1932         /* XXX i think this is unsafe as it currently stands, but i am not sure. (pd, october 2nd, 2006) */
1933
1934         routes.flush ();
1935
1936         /* try to cause everyone to drop their references */
1937
1938         route->drop_references ();
1939
1940         /* save the new state of the world */
1941
1942         if (save_state (_current_snapshot_name)) {
1943                 save_history (_current_snapshot_name);
1944         }
1945 }       
1946
1947 void
1948 Session::route_mute_changed (void* src)
1949 {
1950         set_dirty ();
1951 }
1952
1953 void
1954 Session::route_solo_changed (void* src, boost::weak_ptr<Route> wpr)
1955 {      
1956         if (solo_update_disabled) {
1957                 // We know already
1958                 return;
1959         }
1960         
1961         bool is_track;
1962         boost::shared_ptr<Route> route = wpr.lock ();
1963
1964         if (!route) {
1965                 /* should not happen */
1966                 error << string_compose (_("programming error: %1"), X_("invalid route weak ptr passed to route_solo_changed")) << endmsg;
1967                 return;
1968         }
1969
1970         is_track = (boost::dynamic_pointer_cast<AudioTrack>(route) != 0);
1971         
1972         shared_ptr<RouteList> r = routes.reader ();
1973
1974         for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
1975                 
1976                 /* soloing a track mutes all other tracks, soloing a bus mutes all other busses */
1977                 
1978                 if (is_track) {
1979                         
1980                         /* don't mess with busses */
1981                         
1982                         if (dynamic_cast<AudioTrack*>((*i).get()) == 0) {
1983                                 continue;
1984                         }
1985                         
1986                 } else {
1987                         
1988                         /* don't mess with tracks */
1989                         
1990                         if (dynamic_cast<AudioTrack*>((*i).get()) != 0) {
1991                                 continue;
1992                         }
1993                 }
1994                 
1995                 if ((*i) != route &&
1996                     ((*i)->mix_group () == 0 ||
1997                      (*i)->mix_group () != route->mix_group () ||
1998                      !route->mix_group ()->is_active())) {
1999                         
2000                         if ((*i)->soloed()) {
2001                                 
2002                                 /* if its already soloed, and solo latching is enabled,
2003                                    then leave it as it is.
2004                                 */
2005                                 
2006                                 if (Config->get_solo_latched()) {
2007                                         continue;
2008                                 } 
2009                         }
2010                         
2011                         /* do it */
2012
2013                         solo_update_disabled = true;
2014                         (*i)->set_solo (false, src);
2015                         solo_update_disabled = false;
2016                 }
2017         }
2018         
2019         bool something_soloed = false;
2020         bool same_thing_soloed = false;
2021         bool signal = false;
2022
2023         for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
2024                 if ((*i)->soloed()) {
2025                         something_soloed = true;
2026                         if (dynamic_cast<AudioTrack*>((*i).get())) {
2027                                 if (is_track) {
2028                                         same_thing_soloed = true;
2029                                         break;
2030                                 }
2031                         } else {
2032                                 if (!is_track) {
2033                                         same_thing_soloed = true;
2034                                         break;
2035                                 }
2036                         }
2037                         break;
2038                 }
2039         }
2040         
2041         if (something_soloed != currently_soloing) {
2042                 signal = true;
2043                 currently_soloing = something_soloed;
2044         }
2045         
2046         modify_solo_mute (is_track, same_thing_soloed);
2047
2048         if (signal) {
2049                 SoloActive (currently_soloing);
2050         }
2051
2052         set_dirty();
2053 }
2054
2055 void
2056 Session::update_route_solo_state ()
2057 {
2058         bool mute = false;
2059         bool is_track = false;
2060         bool signal = false;
2061
2062         /* caller must hold RouteLock */
2063
2064         /* this is where we actually implement solo by changing
2065            the solo mute setting of each track.
2066         */
2067         
2068         shared_ptr<RouteList> r = routes.reader ();
2069
2070         for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
2071                 if ((*i)->soloed()) {
2072                         mute = true;
2073                         if (dynamic_cast<AudioTrack*>((*i).get())) {
2074                                 is_track = true;
2075                         }
2076                         break;
2077                 }
2078         }
2079
2080         if (mute != currently_soloing) {
2081                 signal = true;
2082                 currently_soloing = mute;
2083         }
2084
2085         if (!is_track && !mute) {
2086
2087                 /* nothing is soloed */
2088
2089                 for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
2090                         (*i)->set_solo_mute (false);
2091                 }
2092                 
2093                 if (signal) {
2094                         SoloActive (false);
2095                 }
2096
2097                 return;
2098         }
2099
2100         modify_solo_mute (is_track, mute);
2101
2102         if (signal) {
2103                 SoloActive (currently_soloing);
2104         }
2105 }
2106
2107 void
2108 Session::modify_solo_mute (bool is_track, bool mute)
2109 {
2110         shared_ptr<RouteList> r = routes.reader ();
2111
2112         for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
2113                 
2114                 if (is_track) {
2115                         
2116                         /* only alter track solo mute */
2117                         
2118                         if (dynamic_cast<AudioTrack*>((*i).get())) {
2119                                 if ((*i)->soloed()) {
2120                                         (*i)->set_solo_mute (!mute);
2121                                 } else {
2122                                         (*i)->set_solo_mute (mute);
2123                                 }
2124                         }
2125
2126                 } else {
2127
2128                         /* only alter bus solo mute */
2129
2130                         if (!dynamic_cast<AudioTrack*>((*i).get())) {
2131
2132                                 if ((*i)->soloed()) {
2133
2134                                         (*i)->set_solo_mute (false);
2135
2136                                 } else {
2137
2138                                         /* don't mute master or control outs
2139                                            in response to another bus solo
2140                                         */
2141                                         
2142                                         if ((*i) != _master_out &&
2143                                             (*i) != _control_out) {
2144                                                 (*i)->set_solo_mute (mute);
2145                                         }
2146                                 }
2147                         }
2148
2149                 }
2150         }
2151 }       
2152
2153
2154 void
2155 Session::catch_up_on_solo ()
2156 {
2157         /* this is called after set_state() to catch the full solo
2158            state, which can't be correctly determined on a per-route
2159            basis, but needs the global overview that only the session
2160            has.
2161         */
2162         update_route_solo_state();
2163 }       
2164                 
2165 shared_ptr<Route>
2166 Session::route_by_name (string name)
2167 {
2168         shared_ptr<RouteList> r = routes.reader ();
2169
2170         for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
2171                 if ((*i)->name() == name) {
2172                         return *i;
2173                 }
2174         }
2175
2176         return shared_ptr<Route> ((Route*) 0);
2177 }
2178
2179 shared_ptr<Route>
2180 Session::route_by_id (PBD::ID id)
2181 {
2182         shared_ptr<RouteList> r = routes.reader ();
2183
2184         for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
2185                 if ((*i)->id() == id) {
2186                         return *i;
2187                 }
2188         }
2189
2190         return shared_ptr<Route> ((Route*) 0);
2191 }
2192
2193 shared_ptr<Route>
2194 Session::route_by_remote_id (uint32_t id)
2195 {
2196         shared_ptr<RouteList> r = routes.reader ();
2197
2198         for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
2199                 if ((*i)->remote_control_id() == id) {
2200                         return *i;
2201                 }
2202         }
2203
2204         return shared_ptr<Route> ((Route*) 0);
2205 }
2206
2207 void
2208 Session::find_current_end ()
2209 {
2210         if (_state_of_the_state & Loading) {
2211                 return;
2212         }
2213
2214         nframes_t max = get_maximum_extent ();
2215
2216         if (max > end_location->end()) {
2217                 end_location->set_end (max);
2218                 set_dirty();
2219                 DurationChanged(); /* EMIT SIGNAL */
2220         }
2221 }
2222
2223 nframes_t
2224 Session::get_maximum_extent () const
2225 {
2226         nframes_t max = 0;
2227         nframes_t me; 
2228
2229         boost::shared_ptr<DiskstreamList> dsl = diskstreams.reader();
2230
2231         for (DiskstreamList::const_iterator i = dsl->begin(); i != dsl->end(); ++i) {
2232                 Playlist* pl = (*i)->playlist();
2233                 if ((me = pl->get_maximum_extent()) > max) {
2234                         max = me;
2235                 }
2236         }
2237
2238         return max;
2239 }
2240
2241 boost::shared_ptr<Diskstream>
2242 Session::diskstream_by_name (string name)
2243 {
2244         boost::shared_ptr<DiskstreamList> dsl = diskstreams.reader();
2245
2246         for (DiskstreamList::iterator i = dsl->begin(); i != dsl->end(); ++i) {
2247                 if ((*i)->name() == name) {
2248                         return *i;
2249                 }
2250         }
2251
2252         return boost::shared_ptr<Diskstream>((Diskstream*) 0);
2253 }
2254
2255 boost::shared_ptr<Diskstream>
2256 Session::diskstream_by_id (const PBD::ID& id)
2257 {
2258         boost::shared_ptr<DiskstreamList> dsl = diskstreams.reader();
2259
2260         for (DiskstreamList::iterator i = dsl->begin(); i != dsl->end(); ++i) {
2261                 if ((*i)->id() == id) {
2262                         return *i;
2263                 }
2264         }
2265
2266         return boost::shared_ptr<Diskstream>((Diskstream*) 0);
2267 }
2268
2269 /* AudioRegion management */
2270
2271 string
2272 Session::new_region_name (string old)
2273 {
2274         string::size_type last_period;
2275         uint32_t number;
2276         string::size_type len = old.length() + 64;
2277         char buf[len];
2278
2279         if ((last_period = old.find_last_of ('.')) == string::npos) {
2280                 
2281                 /* no period present - add one explicitly */
2282
2283                 old += '.';
2284                 last_period = old.length() - 1;
2285                 number = 0;
2286
2287         } else {
2288
2289                 number = atoi (old.substr (last_period+1).c_str());
2290
2291         }
2292
2293         while (number < (UINT_MAX-1)) {
2294
2295                 AudioRegionList::const_iterator i;
2296                 string sbuf;
2297
2298                 number++;
2299
2300                 snprintf (buf, len, "%s%" PRIu32, old.substr (0, last_period + 1).c_str(), number);
2301                 sbuf = buf;
2302
2303                 for (i = audio_regions.begin(); i != audio_regions.end(); ++i) {
2304                         if (i->second->name() == sbuf) {
2305                                 break;
2306                         }
2307                 }
2308                 
2309                 if (i == audio_regions.end()) {
2310                         break;
2311                 }
2312         }
2313
2314         if (number != (UINT_MAX-1)) {
2315                 return buf;
2316         } 
2317
2318         error << string_compose (_("cannot create new name for region \"%1\""), old) << endmsg;
2319         return old;
2320 }
2321
2322 int
2323 Session::region_name (string& result, string base, bool newlevel) const
2324 {
2325         char buf[16];
2326         string subbase;
2327
2328         if (base == "") {
2329                 
2330                 Glib::Mutex::Lock lm (region_lock);
2331
2332                 snprintf (buf, sizeof (buf), "%d", (int)audio_regions.size() + 1);
2333
2334                 
2335                 result = "region.";
2336                 result += buf;
2337
2338         } else {
2339
2340                 /* XXX this is going to be slow. optimize me later */
2341                 
2342                 if (newlevel) {
2343                         subbase = base;
2344                 } else {
2345                         string::size_type pos;
2346
2347                         pos = base.find_last_of ('.');
2348
2349                         /* pos may be npos, but then we just use entire base */
2350
2351                         subbase = base.substr (0, pos);
2352
2353                 }
2354
2355                 bool name_taken = true;
2356                 
2357                 {
2358                         Glib::Mutex::Lock lm (region_lock);
2359                         
2360                         for (int n = 1; n < 5000; ++n) {
2361                                 
2362                                 result = subbase;
2363                                 snprintf (buf, sizeof (buf), ".%d", n);
2364                                 result += buf;
2365                                 
2366                                 name_taken = false;
2367                                 
2368                                 for (AudioRegionList::const_iterator i = audio_regions.begin(); i != audio_regions.end(); ++i) {
2369                                         if (i->second->name() == result) {
2370                                                 name_taken = true;
2371                                                 break;
2372                                         }
2373                                 }
2374                                 
2375                                 if (!name_taken) {
2376                                         break;
2377                                 }
2378                         }
2379                 }
2380                         
2381                 if (name_taken) {
2382                         fatal << string_compose(_("too many regions with names like %1"), base) << endmsg;
2383                         /*NOTREACHED*/
2384                 }
2385         }
2386         return 0;
2387 }       
2388
2389 void
2390 Session::add_region (boost::shared_ptr<Region> region)
2391 {
2392         boost::shared_ptr<AudioRegion> ar;
2393         boost::shared_ptr<AudioRegion> oar;
2394         bool added = false;
2395
2396         { 
2397                 Glib::Mutex::Lock lm (region_lock);
2398
2399                 if ((ar = boost::dynamic_pointer_cast<AudioRegion> (region)) != 0) {
2400
2401                         AudioRegionList::iterator x;
2402
2403                         for (x = audio_regions.begin(); x != audio_regions.end(); ++x) {
2404
2405                                 oar = boost::dynamic_pointer_cast<AudioRegion> (x->second);
2406
2407                                 if (ar->region_list_equivalent (oar)) {
2408                                         break;
2409                                 }
2410                         }
2411
2412                         if (x == audio_regions.end()) {
2413
2414                                 pair<AudioRegionList::key_type,AudioRegionList::mapped_type> entry;
2415
2416                                 entry.first = region->id();
2417                                 entry.second = ar;
2418
2419                                 pair<AudioRegionList::iterator,bool> x = audio_regions.insert (entry);
2420
2421                                 
2422                                 if (!x.second) {
2423                                         return;
2424                                 }
2425
2426                                 added = true;
2427                         } 
2428
2429                 } else {
2430
2431                         fatal << _("programming error: ")
2432                               << X_("unknown region type passed to Session::add_region()")
2433                               << endmsg;
2434                         /*NOTREACHED*/
2435
2436                 }
2437         }
2438
2439         /* mark dirty because something has changed even if we didn't
2440            add the region to the region list.
2441         */
2442         
2443         set_dirty();
2444         
2445         if (added) {
2446                 region->GoingAway.connect (sigc::bind (mem_fun (*this, &Session::remove_region), region));
2447                 region->StateChanged.connect (sigc::bind (mem_fun (*this, &Session::region_changed), region));
2448                 AudioRegionAdded (ar); /* EMIT SIGNAL */
2449         }
2450 }
2451
2452 void
2453 Session::region_changed (Change what_changed, boost::shared_ptr<Region> region)
2454 {
2455         if (what_changed & Region::HiddenChanged) {
2456                 /* relay hidden changes */
2457                 RegionHiddenChange (region);
2458         }
2459 }
2460
2461 void
2462 Session::region_renamed (boost::shared_ptr<Region> region)
2463 {
2464         add_region (region);
2465 }
2466
2467 void
2468 Session::remove_region (boost::shared_ptr<Region> region)
2469 {
2470         AudioRegionList::iterator i;
2471         boost::shared_ptr<AudioRegion> ar;
2472         bool removed = false;
2473
2474         { 
2475                 Glib::Mutex::Lock lm (region_lock);
2476
2477                 if ((ar = boost::dynamic_pointer_cast<AudioRegion> (region)) != 0) {
2478                         if ((i = audio_regions.find (region->id())) != audio_regions.end()) {
2479                                 audio_regions.erase (i);
2480                                 removed = true;
2481                                 cerr << "done\n";
2482                         }
2483
2484                 } else {
2485
2486                         fatal << _("programming error: ") 
2487                               << X_("unknown region type passed to Session::remove_region()")
2488                               << endmsg;
2489                         /*NOTREACHED*/
2490                 }
2491         }
2492
2493         /* mark dirty because something has changed even if we didn't
2494            remove the region from the region list.
2495         */
2496
2497         set_dirty();
2498
2499         if (removed) {
2500                  AudioRegionRemoved(ar); /* EMIT SIGNAL */
2501         }
2502 }
2503
2504 boost::shared_ptr<AudioRegion>
2505 Session::find_whole_file_parent (boost::shared_ptr<AudioRegion> child)
2506 {
2507         AudioRegionList::iterator i;
2508         boost::shared_ptr<AudioRegion> region;
2509         Glib::Mutex::Lock lm (region_lock);
2510
2511         for (i = audio_regions.begin(); i != audio_regions.end(); ++i) {
2512
2513                 region = i->second;
2514
2515                 if (region->whole_file()) {
2516
2517                         if (child->source_equivalent (region)) {
2518                                 return region;
2519                         }
2520                 }
2521         } 
2522
2523         return boost::shared_ptr<AudioRegion> ((AudioRegion*) 0);
2524 }       
2525
2526 void
2527 Session::find_equivalent_playlist_regions (boost::shared_ptr<Region> region, vector<boost::shared_ptr<Region> >& result)
2528 {
2529         for (PlaylistList::iterator i = playlists.begin(); i != playlists.end(); ++i)
2530                 (*i)->get_region_list_equivalent_regions (region, result);
2531 }
2532
2533 int
2534 Session::destroy_region (boost::shared_ptr<Region> region)
2535 {
2536         boost::shared_ptr<AudioRegion> aregion;
2537
2538         if ((aregion = boost::dynamic_pointer_cast<AudioRegion> (region)) == 0) {
2539                 return 0;
2540         }
2541         
2542         if (aregion->playlist()) {
2543                 aregion->playlist()->destroy_region (region);
2544         }
2545
2546         vector<boost::shared_ptr<Source> > srcs;
2547         
2548         for (uint32_t n = 0; n < aregion->n_channels(); ++n) {
2549                 srcs.push_back (aregion->source (n));
2550         }
2551
2552         for (vector<boost::shared_ptr<Source> >::iterator i = srcs.begin(); i != srcs.end(); ++i) {
2553                 
2554                 if ((*i).use_count() == 1) {
2555                         boost::shared_ptr<AudioFileSource> afs = boost::dynamic_pointer_cast<AudioFileSource>(*i);
2556
2557                         if (afs) {
2558                                 (afs)->mark_for_remove ();
2559                         }
2560                         
2561                         (*i)->drop_references ();
2562                 }
2563         }
2564
2565         return 0;
2566 }
2567
2568 int
2569 Session::destroy_regions (list<boost::shared_ptr<Region> > regions)
2570 {
2571         for (list<boost::shared_ptr<Region> >::iterator i = regions.begin(); i != regions.end(); ++i) {
2572                 destroy_region (*i);
2573         }
2574         return 0;
2575 }
2576
2577 int
2578 Session::remove_last_capture ()
2579 {
2580         list<boost::shared_ptr<Region> > r;
2581         
2582         boost::shared_ptr<DiskstreamList> dsl = diskstreams.reader();
2583         
2584         for (DiskstreamList::iterator i = dsl->begin(); i != dsl->end(); ++i) {
2585                 list<boost::shared_ptr<Region> >& l = (*i)->last_capture_regions();
2586                 
2587                 if (!l.empty()) {
2588                         r.insert (r.end(), l.begin(), l.end());
2589                         l.clear ();
2590                 }
2591         }
2592
2593         destroy_regions (r);
2594         return 0;
2595 }
2596
2597 int
2598 Session::remove_region_from_region_list (boost::shared_ptr<Region> r)
2599 {
2600         remove_region (r);
2601         return 0;
2602 }
2603
2604 /* Source Management */
2605
2606 void
2607 Session::add_source (boost::shared_ptr<Source> source)
2608 {
2609         boost::shared_ptr<AudioFileSource> afs;
2610
2611         if ((afs = boost::dynamic_pointer_cast<AudioFileSource>(source)) != 0) {
2612
2613                 pair<AudioSourceList::key_type, AudioSourceList::mapped_type> entry;
2614                 pair<AudioSourceList::iterator,bool> result;
2615
2616                 entry.first = source->id();
2617                 entry.second = afs;
2618                 
2619                 {
2620                         Glib::Mutex::Lock lm (audio_source_lock);
2621                         result = audio_sources.insert (entry);
2622                 }
2623
2624                 if (!result.second) {
2625                         cerr << "\tNOT inserted ? " << result.second << endl;
2626                 }
2627
2628                 source->GoingAway.connect (sigc::bind (mem_fun (this, &Session::remove_source), boost::weak_ptr<Source> (source)));
2629                 set_dirty();
2630                 
2631                 SourceAdded (source); /* EMIT SIGNAL */
2632         } else {
2633                 cerr << "\tNOT AUDIO FILE\n";
2634         }
2635 }
2636
2637 void
2638 Session::remove_source (boost::weak_ptr<Source> src)
2639 {
2640         AudioSourceList::iterator i;
2641         boost::shared_ptr<Source> source = src.lock();
2642
2643         if (!source) {
2644                 return;
2645         } 
2646
2647         { 
2648                 Glib::Mutex::Lock lm (audio_source_lock);
2649                 
2650                 if ((i = audio_sources.find (source->id())) != audio_sources.end()) {
2651                         audio_sources.erase (i);
2652                 } 
2653         }
2654         
2655         if (!_state_of_the_state & InCleanup) {
2656                 
2657                 /* save state so we don't end up with a session file
2658                    referring to non-existent sources.
2659                 */
2660                 
2661                 save_state (_current_snapshot_name);
2662         }
2663         
2664         SourceRemoved(source); /* EMIT SIGNAL */
2665 }
2666
2667 boost::shared_ptr<Source>
2668 Session::source_by_id (const PBD::ID& id)
2669 {
2670         Glib::Mutex::Lock lm (audio_source_lock);
2671         AudioSourceList::iterator i;
2672         boost::shared_ptr<Source> source;
2673
2674         if ((i = audio_sources.find (id)) != audio_sources.end()) {
2675                 source = i->second;
2676         }
2677
2678         /* XXX search MIDI or other searches here */
2679         
2680         return source;
2681 }
2682
2683 string
2684 Session::peak_path_from_audio_path (string audio_path) const
2685 {
2686         string res;
2687
2688         res = peak_dir ();
2689         res += PBD::basename_nosuffix (audio_path);
2690         res += ".peak";
2691
2692         return res;
2693 }
2694
2695 string
2696 Session::change_audio_path_by_name (string path, string oldname, string newname, bool destructive)
2697 {
2698         string look_for;
2699         string old_basename = PBD::basename_nosuffix (oldname);
2700         string new_legalized = legalize_for_path (newname);
2701
2702         /* note: we know (or assume) the old path is already valid */
2703
2704         if (destructive) {
2705                 
2706                 /* destructive file sources have a name of the form:
2707
2708                     /path/to/Tnnnn-NAME(%[LR])?.wav
2709                   
2710                     the task here is to replace NAME with the new name.
2711                 */
2712                 
2713                 /* find last slash */
2714
2715                 string dir;
2716                 string prefix;
2717                 string::size_type slash;
2718                 string::size_type dash;
2719
2720                 if ((slash = path.find_last_of ('/')) == string::npos) {
2721                         return "";
2722                 }
2723
2724                 dir = path.substr (0, slash+1);
2725
2726                 /* '-' is not a legal character for the NAME part of the path */
2727
2728                 if ((dash = path.find_last_of ('-')) == string::npos) {
2729                         return "";
2730                 }
2731
2732                 prefix = path.substr (slash+1, dash-(slash+1));
2733
2734                 path = dir;
2735                 path += prefix;
2736                 path += '-';
2737                 path += new_legalized;
2738                 path += ".wav";  /* XXX gag me with a spoon */
2739                 
2740         } else {
2741                 
2742                 /* non-destructive file sources have a name of the form:
2743
2744                     /path/to/NAME-nnnnn(%[LR])?.wav
2745                   
2746                     the task here is to replace NAME with the new name.
2747                 */
2748                 
2749                 string dir;
2750                 string suffix;
2751                 string::size_type slash;
2752                 string::size_type dash;
2753                 string::size_type postfix;
2754
2755                 /* find last slash */
2756
2757                 if ((slash = path.find_last_of ('/')) == string::npos) {
2758                         return "";
2759                 }
2760
2761                 dir = path.substr (0, slash+1);
2762
2763                 /* '-' is not a legal character for the NAME part of the path */
2764
2765                 if ((dash = path.find_last_of ('-')) == string::npos) {
2766                         return "";
2767                 }
2768
2769                 suffix = path.substr (dash+1);
2770                 
2771                 // Suffix is now everything after the dash. Now we need to eliminate
2772                 // the nnnnn part, which is done by either finding a '%' or a '.'
2773
2774                 postfix = suffix.find_last_of ("%");
2775                 if (postfix == string::npos) {
2776                         postfix = suffix.find_last_of ('.');
2777                 }
2778
2779                 if (postfix != string::npos) {
2780                         suffix = suffix.substr (postfix);
2781                 } else {
2782                         error << "Logic error in Session::change_audio_path_by_name(), please report to the developers" << endl;
2783                         return "";
2784                 }
2785
2786                 const uint32_t limit = 10000;
2787                 char buf[PATH_MAX+1];
2788
2789                 for (uint32_t cnt = 1; cnt <= limit; ++cnt) {
2790
2791                         snprintf (buf, sizeof(buf), "%s%s-%u%s", dir.c_str(), newname.c_str(), cnt, suffix.c_str());
2792
2793                         if (access (buf, F_OK) != 0) {
2794                                 path = buf;
2795                                 break;
2796                         }
2797                         path = "";
2798                 }
2799
2800                 if (path == "") {
2801                         error << "FATAL ERROR! Could not find a " << endl;
2802                 }
2803
2804         }
2805
2806         return path;
2807 }
2808
2809 string
2810 Session::audio_path_from_name (string name, uint32_t nchan, uint32_t chan, bool destructive)
2811 {
2812         string spath;
2813         uint32_t cnt;
2814         char buf[PATH_MAX+1];
2815         const uint32_t limit = 10000;
2816         string legalized;
2817
2818         buf[0] = '\0';
2819         legalized = legalize_for_path (name);
2820
2821         /* find a "version" of the file name that doesn't exist in
2822            any of the possible directories.
2823         */
2824
2825         for (cnt = (destructive ? ++destructive_index : 1); cnt <= limit; ++cnt) {
2826
2827                 vector<space_and_path>::iterator i;
2828                 uint32_t existing = 0;
2829
2830                 for (i = session_dirs.begin(); i != session_dirs.end(); ++i) {
2831
2832                         spath = (*i).path;
2833
2834                         spath += sound_dir (false);
2835
2836                         if (destructive) {
2837                                 if (nchan < 2) {
2838                                         snprintf (buf, sizeof(buf), "%s/T%04d-%s.wav", spath.c_str(), cnt, legalized.c_str());
2839                                 } else if (nchan == 2) {
2840                                         if (chan == 0) {
2841                                                 snprintf (buf, sizeof(buf), "%s/T%04d-%s%%L.wav", spath.c_str(), cnt, legalized.c_str());
2842                                         } else {
2843                                                 snprintf (buf, sizeof(buf), "%s/T%04d-%s%%R.wav", spath.c_str(), cnt, legalized.c_str());
2844                                         }
2845                                 } else if (nchan < 26) {
2846                                         snprintf (buf, sizeof(buf), "%s/T%04d-%s%%%c.wav", spath.c_str(), cnt, legalized.c_str(), 'a' + chan);
2847                                 } else {
2848                                         snprintf (buf, sizeof(buf), "%s/T%04d-%s.wav", spath.c_str(), cnt, legalized.c_str());
2849                                 }
2850                         } else {
2851
2852                                 spath += '/';
2853                                 spath += legalized;
2854
2855                                 if (nchan < 2) {
2856                                         snprintf (buf, sizeof(buf), "%s-%u.wav", spath.c_str(), cnt);
2857                                 } else if (nchan == 2) {
2858                                         if (chan == 0) {
2859                                                 snprintf (buf, sizeof(buf), "%s-%u%%L.wav", spath.c_str(), cnt);
2860                                         } else {
2861                                                 snprintf (buf, sizeof(buf), "%s-%u%%R.wav", spath.c_str(), cnt);
2862                                         }
2863                                 } else if (nchan < 26) {
2864                                         snprintf (buf, sizeof(buf), "%s-%u%%%c.wav", spath.c_str(), cnt, 'a' + chan);
2865                                 } else {
2866                                         snprintf (buf, sizeof(buf), "%s-%u.wav", spath.c_str(), cnt);
2867                                 }
2868                         }
2869
2870                         if (g_file_test (buf, G_FILE_TEST_EXISTS)) {
2871                                 existing++;
2872                         } 
2873
2874                 }
2875
2876                 if (existing == 0) {
2877                         break;
2878                 }
2879
2880                 if (cnt > limit) {
2881                         error << string_compose(_("There are already %1 recordings for %2, which I consider too many."), limit, name) << endmsg;
2882                         throw failed_constructor();
2883                 }
2884         }
2885
2886         /* we now have a unique name for the file, but figure out where to
2887            actually put it.
2888         */
2889
2890         string foo = buf;
2891
2892         spath = discover_best_sound_dir ();
2893
2894         string::size_type pos = foo.find_last_of ('/');
2895         
2896         if (pos == string::npos) {
2897                 spath += foo;
2898         } else {
2899                 spath += foo.substr (pos + 1);
2900         }
2901
2902         return spath;
2903 }
2904
2905 boost::shared_ptr<AudioFileSource>
2906 Session::create_audio_source_for_session (AudioDiskstream& ds, uint32_t chan, bool destructive)
2907 {
2908         string spath = audio_path_from_name (ds.name(), ds.n_channels(), chan, destructive);
2909         return boost::dynamic_pointer_cast<AudioFileSource> (SourceFactory::createWritable (*this, spath, destructive, frame_rate()));
2910 }
2911
2912 /* Playlist management */
2913
2914 Playlist *
2915 Session::playlist_by_name (string name)
2916 {
2917         Glib::Mutex::Lock lm (playlist_lock);
2918         for (PlaylistList::iterator i = playlists.begin(); i != playlists.end(); ++i) {
2919                 if ((*i)->name() == name) {
2920                         return* i;
2921                 }
2922         }
2923         for (PlaylistList::iterator i = unused_playlists.begin(); i != unused_playlists.end(); ++i) {
2924                 if ((*i)->name() == name) {
2925                         return* i;
2926                 }
2927         }
2928         return 0;
2929 }
2930
2931 void
2932 Session::add_playlist (Playlist* playlist)
2933 {
2934         if (playlist->hidden()) {
2935                 return;
2936         }
2937
2938         { 
2939                 Glib::Mutex::Lock lm (playlist_lock);
2940                 if (find (playlists.begin(), playlists.end(), playlist) == playlists.end()) {
2941                         playlists.insert (playlists.begin(), playlist);
2942                         // playlist->ref();
2943                         playlist->InUse.connect (mem_fun (*this, &Session::track_playlist));
2944                         playlist->GoingAway.connect (sigc::bind (mem_fun (*this, &Session::remove_playlist), playlist));
2945                 }
2946         }
2947
2948         set_dirty();
2949
2950         PlaylistAdded (playlist); /* EMIT SIGNAL */
2951 }
2952
2953 void
2954 Session::track_playlist (Playlist* pl, bool inuse)
2955 {
2956         PlaylistList::iterator x;
2957
2958         { 
2959                 Glib::Mutex::Lock lm (playlist_lock);
2960
2961                 if (!inuse) {
2962                         //cerr << "shifting playlist to unused: " << pl->name() << endl;
2963
2964                         unused_playlists.insert (pl);
2965                         
2966                         if ((x = playlists.find (pl)) != playlists.end()) {
2967                                 playlists.erase (x);
2968                         }
2969
2970                         
2971                 } else {
2972                         //cerr << "shifting playlist to used: " << pl->name() << endl;
2973                         
2974                         playlists.insert (pl);
2975                         
2976                         if ((x = unused_playlists.find (pl)) != unused_playlists.end()) {
2977                                 unused_playlists.erase (x);
2978                         }
2979                 }
2980         }
2981 }
2982
2983 void
2984 Session::remove_playlist (Playlist* playlist)
2985 {
2986         if (_state_of_the_state & Deletion) {
2987                 return;
2988         }
2989
2990         { 
2991                 Glib::Mutex::Lock lm (playlist_lock);
2992                 // cerr << "removing playlist: " << playlist->name() << endl;
2993
2994                 PlaylistList::iterator i;
2995
2996                 i = find (playlists.begin(), playlists.end(), playlist);
2997
2998                 if (i != playlists.end()) {
2999                         playlists.erase (i);
3000                 }
3001
3002                 i = find (unused_playlists.begin(), unused_playlists.end(), playlist);
3003                 if (i != unused_playlists.end()) {
3004                         unused_playlists.erase (i);
3005                 }
3006                 
3007         }
3008
3009         set_dirty();
3010
3011         PlaylistRemoved (playlist); /* EMIT SIGNAL */
3012 }
3013
3014 void 
3015 Session::set_audition (boost::shared_ptr<Region> r)
3016 {
3017         pending_audition_region = r;
3018         post_transport_work = PostTransportWork (post_transport_work | PostTransportAudition);
3019         schedule_butler_transport_work ();
3020 }
3021
3022 void
3023 Session::audition_playlist ()
3024 {
3025         Event* ev = new Event (Event::Audition, Event::Add, Event::Immediate, 0, 0.0);
3026         ev->region.reset ();
3027         queue_event (ev);
3028 }
3029
3030 void
3031 Session::non_realtime_set_audition ()
3032 {
3033         if (!pending_audition_region) {
3034                 auditioner->audition_current_playlist ();
3035         } else {
3036                 auditioner->audition_region (pending_audition_region);
3037                 pending_audition_region.reset ();
3038         }
3039         AuditionActive (true); /* EMIT SIGNAL */
3040 }
3041
3042 void
3043 Session::audition_region (boost::shared_ptr<Region> r)
3044 {
3045         Event* ev = new Event (Event::Audition, Event::Add, Event::Immediate, 0, 0.0);
3046         ev->region = r;
3047         queue_event (ev);
3048 }
3049
3050 void
3051 Session::cancel_audition ()
3052 {
3053         if (auditioner->active()) {
3054                 auditioner->cancel_audition ();
3055                 AuditionActive (false); /* EMIT SIGNAL */
3056         }
3057 }
3058
3059 bool
3060 Session::RoutePublicOrderSorter::operator() (boost::shared_ptr<Route> a, boost::shared_ptr<Route> b)
3061 {
3062         return a->order_key(N_("signal")) < b->order_key(N_("signal"));
3063 }
3064
3065 void
3066 Session::remove_empty_sounds ()
3067 {
3068         PathScanner scanner;
3069
3070         vector<string *>* possible_audiofiles = scanner (sound_dir(), "\\.(wav|aiff|caf|w64)$", false, true);
3071         
3072         Glib::Mutex::Lock lm (audio_source_lock);
3073         
3074         regex_t compiled_tape_track_pattern;
3075         int err;
3076
3077         if ((err = regcomp (&compiled_tape_track_pattern, "/T[0-9][0-9][0-9][0-9]-", REG_EXTENDED|REG_NOSUB))) {
3078
3079                 char msg[256];
3080                 
3081                 regerror (err, &compiled_tape_track_pattern, msg, sizeof (msg));
3082                 
3083                 error << string_compose (_("Cannot compile tape track regexp for use (%1)"), msg) << endmsg;
3084                 return;
3085         }
3086
3087         for (vector<string *>::iterator i = possible_audiofiles->begin(); i != possible_audiofiles->end(); ++i) {
3088                 
3089                 /* never remove files that appear to be a tape track */
3090
3091                 if (regexec (&compiled_tape_track_pattern, (*i)->c_str(), 0, 0, 0) == 0) {
3092                         delete *i;
3093                         continue;
3094                 }
3095                         
3096                 if (AudioFileSource::is_empty (*this, *(*i))) {
3097
3098                         unlink ((*i)->c_str());
3099                         
3100                         string peak_path = peak_path_from_audio_path (**i);
3101                         unlink (peak_path.c_str());
3102                 }
3103
3104                 delete* i;
3105         }
3106
3107         delete possible_audiofiles;
3108 }
3109
3110 bool
3111 Session::is_auditioning () const
3112 {
3113         /* can be called before we have an auditioner object */
3114         if (auditioner) {
3115                 return auditioner->active();
3116         } else {
3117                 return false;
3118         }
3119 }
3120
3121 void
3122 Session::set_all_solo (bool yn)
3123 {
3124         shared_ptr<RouteList> r = routes.reader ();
3125         
3126         for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
3127                 if (!(*i)->hidden()) {
3128                         (*i)->set_solo (yn, this);
3129                 }
3130         }
3131
3132         set_dirty();
3133 }
3134                 
3135 void
3136 Session::set_all_mute (bool yn)
3137 {
3138         shared_ptr<RouteList> r = routes.reader ();
3139         
3140         for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
3141                 if (!(*i)->hidden()) {
3142                         (*i)->set_mute (yn, this);
3143                 }
3144         }
3145
3146         set_dirty();
3147 }
3148                 
3149 uint32_t
3150 Session::n_diskstreams () const
3151 {
3152         uint32_t n = 0;
3153
3154         boost::shared_ptr<DiskstreamList> dsl = diskstreams.reader();
3155
3156         for (DiskstreamList::const_iterator i = dsl->begin(); i != dsl->end(); ++i) {
3157                 if (!(*i)->hidden()) {
3158                         n++;
3159                 }
3160         }
3161         return n;
3162 }
3163
3164 void
3165 Session::graph_reordered ()
3166 {
3167         /* don't do this stuff if we are setting up connections
3168            from a set_state() call.
3169         */
3170
3171         if (_state_of_the_state & InitialConnecting) {
3172                 return;
3173         }
3174
3175         resort_routes ();
3176
3177         /* force all diskstreams to update their capture offset values to 
3178            reflect any changes in latencies within the graph.
3179         */
3180         
3181         boost::shared_ptr<DiskstreamList> dsl = diskstreams.reader();
3182
3183         for (DiskstreamList::iterator i = dsl->begin(); i != dsl->end(); ++i) {
3184                 (*i)->set_capture_offset ();
3185         }
3186 }
3187
3188 void
3189 Session::record_disenable_all ()
3190 {
3191         record_enable_change_all (false);
3192 }
3193
3194 void
3195 Session::record_enable_all ()
3196 {
3197         record_enable_change_all (true);
3198 }
3199
3200 void
3201 Session::record_enable_change_all (bool yn)
3202 {
3203         shared_ptr<RouteList> r = routes.reader ();
3204         
3205         for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
3206                 AudioTrack* at;
3207
3208                 if ((at = dynamic_cast<AudioTrack*>((*i).get())) != 0) {
3209                         at->set_record_enable (yn, this);
3210                 }
3211         }
3212         
3213         /* since we don't keep rec-enable state, don't mark session dirty */
3214 }
3215
3216 void
3217 Session::add_redirect (Redirect* redirect)
3218 {
3219         Send* send;
3220         Insert* insert;
3221         PortInsert* port_insert;
3222         PluginInsert* plugin_insert;
3223
3224         if ((insert = dynamic_cast<Insert *> (redirect)) != 0) {
3225                 if ((port_insert = dynamic_cast<PortInsert *> (insert)) != 0) {
3226                         _port_inserts.insert (_port_inserts.begin(), port_insert);
3227                 } else if ((plugin_insert = dynamic_cast<PluginInsert *> (insert)) != 0) {
3228                         _plugin_inserts.insert (_plugin_inserts.begin(), plugin_insert);
3229                 } else {
3230                         fatal << _("programming error: unknown type of Insert created!") << endmsg;
3231                         /*NOTREACHED*/
3232                 }
3233         } else if ((send = dynamic_cast<Send *> (redirect)) != 0) {
3234                 _sends.insert (_sends.begin(), send);
3235         } else {
3236                 fatal << _("programming error: unknown type of Redirect created!") << endmsg;
3237                 /*NOTREACHED*/
3238         }
3239
3240         redirect->GoingAway.connect (sigc::bind (mem_fun (*this, &Session::remove_redirect), redirect));
3241
3242         set_dirty();
3243 }
3244
3245 void
3246 Session::remove_redirect (Redirect* redirect)
3247 {
3248         Send* send;
3249         Insert* insert;
3250         PortInsert* port_insert;
3251         PluginInsert* plugin_insert;
3252
3253         if ((insert = dynamic_cast<Insert *> (redirect)) != 0) {
3254                 if ((port_insert = dynamic_cast<PortInsert *> (insert)) != 0) {
3255                         _port_inserts.remove (port_insert);
3256                 } else if ((plugin_insert = dynamic_cast<PluginInsert *> (insert)) != 0) {
3257                         _plugin_inserts.remove (plugin_insert);
3258                 } else {
3259                         fatal << _("programming error: unknown type of Insert deleted!") << endmsg;
3260                         /*NOTREACHED*/
3261                 }
3262         } else if ((send = dynamic_cast<Send *> (redirect)) != 0) {
3263                 _sends.remove (send);
3264         } else {
3265                 fatal << _("programming error: unknown type of Redirect deleted!") << endmsg;
3266                 /*NOTREACHED*/
3267         }
3268
3269         set_dirty();
3270 }
3271
3272 nframes_t
3273 Session::available_capture_duration ()
3274 {
3275         const double scale = 4096.0 / sizeof (Sample);
3276
3277         if (_total_free_4k_blocks * scale > (double) max_frames) {
3278                 return max_frames;
3279         }
3280         
3281         return (nframes_t) floor (_total_free_4k_blocks * scale);
3282 }
3283
3284 void
3285 Session::add_connection (ARDOUR::Connection* connection)
3286 {
3287         {
3288                 Glib::Mutex::Lock guard (connection_lock);
3289                 _connections.push_back (connection);
3290         }
3291         
3292         ConnectionAdded (connection); /* EMIT SIGNAL */
3293
3294         set_dirty();
3295 }
3296
3297 void
3298 Session::remove_connection (ARDOUR::Connection* connection)
3299 {
3300         bool removed = false;
3301
3302         {
3303                 Glib::Mutex::Lock guard (connection_lock);
3304                 ConnectionList::iterator i = find (_connections.begin(), _connections.end(), connection);
3305                 
3306                 if (i != _connections.end()) {
3307                         _connections.erase (i);
3308                         removed = true;
3309                 }
3310         }
3311
3312         if (removed) {
3313                  ConnectionRemoved (connection); /* EMIT SIGNAL */
3314         }
3315
3316         set_dirty();
3317 }
3318
3319 ARDOUR::Connection *
3320 Session::connection_by_name (string name) const
3321 {
3322         Glib::Mutex::Lock lm (connection_lock);
3323
3324         for (ConnectionList::const_iterator i = _connections.begin(); i != _connections.end(); ++i) {
3325                 if ((*i)->name() == name) {
3326                         return* i;
3327                 }
3328         }
3329
3330         return 0;
3331 }
3332
3333 void
3334 Session::tempo_map_changed (Change ignored)
3335 {
3336         clear_clicks ();
3337         set_dirty ();
3338 }
3339
3340 void
3341 Session::ensure_passthru_buffers (uint32_t howmany)
3342 {
3343         while (howmany > _passthru_buffers.size()) {
3344                 Sample *p;
3345 #ifdef NO_POSIX_MEMALIGN
3346                 p =  (Sample *) malloc(current_block_size * sizeof(Sample));
3347 #else
3348                 posix_memalign((void **)&p,16,current_block_size * 4);
3349 #endif                  
3350                 _passthru_buffers.push_back (p);
3351
3352                 *p = 0;
3353                 
3354 #ifdef NO_POSIX_MEMALIGN
3355                 p =  (Sample *) malloc(current_block_size * sizeof(Sample));
3356 #else
3357                 posix_memalign((void **)&p,16,current_block_size * 4);
3358 #endif                  
3359                 memset (p, 0, sizeof (Sample) * current_block_size);
3360                 _silent_buffers.push_back (p);
3361
3362                 *p = 0;
3363                 
3364 #ifdef NO_POSIX_MEMALIGN
3365                 p =  (Sample *) malloc(current_block_size * sizeof(Sample));
3366 #else
3367                 posix_memalign((void **)&p,16,current_block_size * 4);
3368 #endif                  
3369                 memset (p, 0, sizeof (Sample) * current_block_size);
3370                 _send_buffers.push_back (p);
3371                 
3372         }
3373         allocate_pan_automation_buffers (current_block_size, howmany, false);
3374 }
3375
3376 string
3377 Session::next_send_name ()
3378 {
3379         char buf[32];
3380         snprintf (buf, sizeof (buf), "send %" PRIu32, ++send_cnt);
3381         return buf;
3382 }
3383
3384 string
3385 Session::next_insert_name ()
3386 {
3387         char buf[32];
3388         snprintf (buf, sizeof (buf), "insert %" PRIu32, ++insert_cnt);
3389         return buf;
3390 }
3391
3392 /* Named Selection management */
3393
3394 NamedSelection *
3395 Session::named_selection_by_name (string name)
3396 {
3397         Glib::Mutex::Lock lm (named_selection_lock);
3398         for (NamedSelectionList::iterator i = named_selections.begin(); i != named_selections.end(); ++i) {
3399                 if ((*i)->name == name) {
3400                         return* i;
3401                 }
3402         }
3403         return 0;
3404 }
3405
3406 void
3407 Session::add_named_selection (NamedSelection* named_selection)
3408 {
3409         { 
3410                 Glib::Mutex::Lock lm (named_selection_lock);
3411                 named_selections.insert (named_selections.begin(), named_selection);
3412         }
3413
3414         set_dirty();
3415
3416          NamedSelectionAdded (); /* EMIT SIGNAL */
3417 }
3418
3419 void
3420 Session::remove_named_selection (NamedSelection* named_selection)
3421 {
3422         bool removed = false;
3423
3424         { 
3425                 Glib::Mutex::Lock lm (named_selection_lock);
3426
3427                 NamedSelectionList::iterator i = find (named_selections.begin(), named_selections.end(), named_selection);
3428
3429                 if (i != named_selections.end()) {
3430                         delete (*i);
3431                         named_selections.erase (i);
3432                         set_dirty();
3433                         removed = true;
3434                 }
3435         }
3436
3437         if (removed) {
3438                  NamedSelectionRemoved (); /* EMIT SIGNAL */
3439         }
3440 }
3441
3442 void
3443 Session::reset_native_file_format ()
3444 {
3445         boost::shared_ptr<DiskstreamList> dsl = diskstreams.reader();
3446
3447         for (DiskstreamList::iterator i = dsl->begin(); i != dsl->end(); ++i) {
3448                 (*i)->reset_write_sources (false);
3449         }
3450 }
3451
3452 bool
3453 Session::route_name_unique (string n) const
3454 {
3455         shared_ptr<RouteList> r = routes.reader ();
3456         
3457         for (RouteList::const_iterator i = r->begin(); i != r->end(); ++i) {
3458                 if ((*i)->name() == n) {
3459                         return false;
3460                 }
3461         }
3462         
3463         return true;
3464 }
3465
3466 int
3467 Session::cleanup_audio_file_source (boost::shared_ptr<AudioFileSource> fs)
3468 {
3469         return fs->move_to_trash (dead_sound_dir_name);
3470 }
3471
3472 uint32_t
3473 Session::n_playlists () const
3474 {
3475         Glib::Mutex::Lock lm (playlist_lock);
3476         return playlists.size();
3477 }
3478
3479 void
3480 Session::allocate_pan_automation_buffers (nframes_t nframes, uint32_t howmany, bool force)
3481 {
3482         if (!force && howmany <= _npan_buffers) {
3483                 return;
3484         }
3485
3486         if (_pan_automation_buffer) {
3487
3488                 for (uint32_t i = 0; i < _npan_buffers; ++i) {
3489                         delete [] _pan_automation_buffer[i];
3490                 }
3491
3492                 delete [] _pan_automation_buffer;
3493         }
3494
3495         _pan_automation_buffer = new pan_t*[howmany];
3496         
3497         for (uint32_t i = 0; i < howmany; ++i) {
3498                 _pan_automation_buffer[i] = new pan_t[nframes];
3499         }
3500
3501         _npan_buffers = howmany;
3502 }
3503
3504 int
3505 Session::freeze (InterThreadInfo& itt)
3506 {
3507         shared_ptr<RouteList> r = routes.reader ();
3508
3509         for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
3510
3511                 AudioTrack *at;
3512
3513                 if ((at = dynamic_cast<AudioTrack*>((*i).get())) != 0) {
3514                         /* XXX this is wrong because itt.progress will keep returning to zero at the start
3515                            of every track.
3516                         */
3517                         at->freeze (itt);
3518                 }
3519         }
3520
3521         return 0;
3522 }
3523
3524 int
3525 Session::write_one_audio_track (AudioTrack& track, nframes_t start, nframes_t len,      
3526                                bool overwrite, vector<boost::shared_ptr<AudioSource> >& srcs, InterThreadInfo& itt)
3527 {
3528         int ret = -1;
3529         Playlist* playlist;
3530         boost::shared_ptr<AudioFileSource> fsource;
3531         uint32_t x;
3532         char buf[PATH_MAX+1];
3533         string dir;
3534         uint32_t nchans;
3535         nframes_t position;
3536         nframes_t this_chunk;
3537         nframes_t to_do;
3538         vector<Sample*> buffers;
3539
3540         // any bigger than this seems to cause stack overflows in called functions
3541         const nframes_t chunk_size = (128 * 1024)/4;
3542
3543         g_atomic_int_set (&processing_prohibited, 1);
3544         
3545         /* call tree *MUST* hold route_lock */
3546         
3547         if ((playlist = track.diskstream()->playlist()) == 0) {
3548                 goto out;
3549         }
3550
3551         /* external redirects will be a problem */
3552
3553         if (track.has_external_redirects()) {
3554                 goto out;
3555         }
3556
3557         nchans = track.audio_diskstream()->n_channels();
3558         
3559         dir = discover_best_sound_dir ();
3560
3561         for (uint32_t chan_n=0; chan_n < nchans; ++chan_n) {
3562
3563                 for (x = 0; x < 99999; ++x) {
3564                         snprintf (buf, sizeof(buf), "%s/%s-%d-bounce-%" PRIu32 ".wav", dir.c_str(), playlist->name().c_str(), chan_n, x+1);
3565                         if (access (buf, F_OK) != 0) {
3566                                 break;
3567                         }
3568                 }
3569                 
3570                 if (x == 99999) {
3571                         error << string_compose (_("too many bounced versions of playlist \"%1\""), playlist->name()) << endmsg;
3572                         goto out;
3573                 }
3574                 
3575                 try {
3576                         fsource = boost::dynamic_pointer_cast<AudioFileSource> (SourceFactory::createWritable (*this, buf, false, frame_rate()));
3577                 }
3578                 
3579                 catch (failed_constructor& err) {
3580                         error << string_compose (_("cannot create new audio file \"%1\" for %2"), buf, track.name()) << endmsg;
3581                         goto out;
3582                 }
3583
3584                 srcs.push_back (fsource);
3585         }
3586
3587         /* XXX need to flush all redirects */
3588         
3589         position = start;
3590         to_do = len;
3591
3592         /* create a set of reasonably-sized buffers */
3593
3594         for (vector<Sample*>::iterator i = _passthru_buffers.begin(); i != _passthru_buffers.end(); ++i) {
3595                 Sample* b;
3596 #ifdef NO_POSIX_MEMALIGN
3597                 b =  (Sample *) malloc(chunk_size * sizeof(Sample));
3598 #else
3599                 posix_memalign((void **)&b,16,chunk_size * 4);
3600 #endif                  
3601                 buffers.push_back (b);
3602         }
3603
3604         while (to_do && !itt.cancel) {
3605                 
3606                 this_chunk = min (to_do, chunk_size);
3607                 
3608                 if (track.export_stuff (buffers, nchans, start, this_chunk)) {
3609                         goto out;
3610                 }
3611
3612                 uint32_t n = 0;
3613                 for (vector<boost::shared_ptr<AudioSource> >::iterator src=srcs.begin(); src != srcs.end(); ++src, ++n) {
3614                         boost::shared_ptr<AudioFileSource> afs = boost::dynamic_pointer_cast<AudioFileSource>(*src);
3615                         
3616                         if (afs) {
3617                                 if (afs->write (buffers[n], this_chunk) != this_chunk) {
3618                                         goto out;
3619                                 }
3620                         }
3621                 }
3622                 
3623                 start += this_chunk;
3624                 to_do -= this_chunk;
3625                 
3626                 itt.progress = (float) (1.0 - ((double) to_do / len));
3627
3628         }
3629
3630         if (!itt.cancel) {
3631                 
3632                 time_t now;
3633                 struct tm* xnow;
3634                 time (&now);
3635                 xnow = localtime (&now);
3636                 
3637                 for (vector<boost::shared_ptr<AudioSource> >::iterator src=srcs.begin(); src != srcs.end(); ++src) {
3638                         boost::shared_ptr<AudioFileSource> afs = boost::dynamic_pointer_cast<AudioFileSource>(*src);
3639
3640                         if (afs) {
3641                                 afs->update_header (position, *xnow, now);
3642                         }
3643                 }
3644                 
3645                 /* build peakfile for new source */
3646                 
3647                 for (vector<boost::shared_ptr<AudioSource> >::iterator src=srcs.begin(); src != srcs.end(); ++src) {
3648                         boost::shared_ptr<AudioFileSource> afs = boost::dynamic_pointer_cast<AudioFileSource>(*src);
3649                         if (afs) {
3650                                 afs->build_peaks ();
3651                         }
3652                 }
3653
3654                 /* construct a region to represent the bounced material */
3655
3656                 boost::shared_ptr<Region> aregion = RegionFactory::create (srcs, 0, srcs.front()->length(), 
3657                                                                            region_name_from_path (srcs.front()->name()));
3658
3659                 ret = 0;
3660         }
3661                 
3662   out:
3663         if (ret) {
3664                 for (vector<boost::shared_ptr<AudioSource> >::iterator src = srcs.begin(); src != srcs.end(); ++src) {
3665                         boost::shared_ptr<AudioFileSource> afs = boost::dynamic_pointer_cast<AudioFileSource>(*src);
3666
3667                         if (afs) {
3668                                 afs->mark_for_remove ();
3669                         }
3670
3671                         (*src)->drop_references ();
3672                 }
3673         }
3674
3675         for (vector<Sample*>::iterator i = buffers.begin(); i != buffers.end(); ++i) {
3676                 free(*i);
3677         }
3678
3679         g_atomic_int_set (&processing_prohibited, 0);
3680
3681         itt.done = true;
3682
3683         return ret;
3684 }
3685
3686 vector<Sample*>&
3687 Session::get_silent_buffers (uint32_t howmany)
3688 {
3689         for (uint32_t i = 0; i < howmany; ++i) {
3690                 memset (_silent_buffers[i], 0, sizeof (Sample) * current_block_size);
3691         }
3692         return _silent_buffers;
3693 }
3694
3695 uint32_t 
3696 Session::ntracks () const
3697 {
3698         uint32_t n = 0;
3699         shared_ptr<RouteList> r = routes.reader ();
3700
3701         for (RouteList::const_iterator i = r->begin(); i != r->end(); ++i) {
3702                 if (dynamic_cast<AudioTrack*> ((*i).get())) {
3703                         ++n;
3704                 }
3705         }
3706
3707         return n;
3708 }
3709
3710 uint32_t 
3711 Session::nbusses () const
3712 {
3713         uint32_t n = 0;
3714         shared_ptr<RouteList> r = routes.reader ();
3715
3716         for (RouteList::const_iterator i = r->begin(); i != r->end(); ++i) {
3717                 if (dynamic_cast<AudioTrack*> ((*i).get()) == 0) {
3718                         ++n;
3719                 }
3720         }
3721
3722         return n;
3723 }
3724
3725 void
3726 Session::add_curve(Curve *curve)
3727 {
3728     curves[curve->id()] = curve;
3729 }
3730
3731 void
3732 Session::add_automation_list(AutomationList *al)
3733 {
3734     automation_lists[al->id()] = al;
3735 }