fixes for various bugs including dangling ref to route in session, opening sessions...
[ardour.git] / libs / ardour / audioengine.cc
1 /*
2     Copyright (C) 2002 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18     $Id$
19 */
20
21 #include <unistd.h>
22 #include <cerrno>
23 #include <vector>
24
25 #include <glibmm/timer.h>
26 #include <pbd/pthread_utils.h>
27
28 #include <ardour/audioengine.h>
29 #include <ardour/buffer.h>
30 #include <ardour/port.h>
31 #include <ardour/session.h>
32 #include <ardour/cycle_timer.h>
33 #include <ardour/utils.h>
34 #ifdef VST_SUPPORT
35 #include <fst.h>
36 #endif
37
38 #include <ardour/timestamps.h>
39
40 #include "i18n.h"
41
42 using namespace std;
43 using namespace ARDOUR;
44 using namespace PBD;
45
46 nframes_t Port::_short_over_length = 2;
47 nframes_t Port::_long_over_length = 10;
48
49 AudioEngine::AudioEngine (string client_name) 
50         : ports (new Ports)
51 {
52         session = 0;
53         session_remove_pending = false;
54         _running = false;
55         _has_run = false;
56         last_monitor_check = 0;
57         monitor_check_interval = max_frames;
58         _processed_frames = 0;
59         _freewheeling = false;
60         _usecs_per_cycle = 0;
61         _jack = 0;
62         _frame_rate = 0;
63         _buffer_size = 0;
64         _freewheeling = false;
65         _freewheel_thread_registered = false;
66
67         m_meter_thread = 0;
68         m_meter_exit = false;
69
70         if (connect_to_jack (client_name)) {
71                 throw NoBackendAvailable ();
72         }
73
74         start_metering_thread();
75
76 }
77
78 AudioEngine::~AudioEngine ()
79 {
80         if (_running) {
81                 jack_client_close (_jack);
82         }
83
84         if(m_meter_thread) {
85                 g_atomic_int_inc(&m_meter_exit);
86         }
87 }
88
89 void
90 _thread_init_callback (void *arg)
91 {
92         /* make sure that anybody who needs to know about this thread
93            knows about it.
94         */
95
96         PBD::ThreadCreatedWithRequestSize (pthread_self(), X_("Audioengine"), 4096);
97 }
98
99 int
100 AudioEngine::start ()
101 {
102         if (!_running) {
103
104                 if (session) {
105                         nframes_t blocksize = jack_get_buffer_size (_jack);
106
107                         session->set_block_size (blocksize);
108                         session->set_frame_rate (jack_get_sample_rate (_jack));
109
110                         /* page in as much of the session process code as we
111                            can before we really start running.
112                         */
113
114                         session->process (blocksize);
115                         session->process (blocksize);
116                         session->process (blocksize);
117                         session->process (blocksize);
118                         session->process (blocksize);
119                         session->process (blocksize);
120                         session->process (blocksize);
121                         session->process (blocksize);
122                 }
123
124                 _processed_frames = 0;
125                 last_monitor_check = 0;
126
127                 jack_on_shutdown (_jack, halted, this);
128                 jack_set_graph_order_callback (_jack, _graph_order_callback, this);
129                 jack_set_thread_init_callback (_jack, _thread_init_callback, this);
130                 jack_set_process_callback (_jack, _process_callback, this);
131                 jack_set_sample_rate_callback (_jack, _sample_rate_callback, this);
132                 jack_set_buffer_size_callback (_jack, _bufsize_callback, this);
133                 jack_set_xrun_callback (_jack, _xrun_callback, this);
134                 jack_set_sync_callback (_jack, _jack_sync_callback, this);
135                 jack_set_freewheel_callback (_jack, _freewheel_callback, this);
136
137                 if (Config->get_jack_time_master()) {
138                         jack_set_timebase_callback (_jack, 0, _jack_timebase_callback, this);
139                 }
140
141                 if (jack_activate (_jack) == 0) {
142                         _running = true;
143                         _has_run = true;
144                         Running(); /* EMIT SIGNAL */
145                 } else {
146                         error << _("cannot activate JACK client") << endmsg;
147                 }
148         }
149
150         return _running ? 0 : -1;
151 }
152
153 int
154 AudioEngine::stop ()
155 {
156         if (_running) {
157                 _running = false;
158                 jack_deactivate (_jack);
159                 Stopped(); /* EMIT SIGNAL */
160         }
161
162         return _running ? -1 : 0;
163 }
164
165
166         
167 bool
168 AudioEngine::get_sync_offset (nframes_t& offset) const
169 {
170
171 #ifdef HAVE_JACK_VIDEO_SUPPORT
172
173         jack_position_t pos;
174         
175         (void) jack_transport_query (_jack, &pos);
176
177         if (pos.valid & JackVideoFrameOffset) {
178                 offset = pos.video_offset;
179                 return true;
180         }
181
182 #endif
183
184         return false;
185 }
186
187 void
188 AudioEngine::_jack_timebase_callback (jack_transport_state_t state, nframes_t nframes,
189                                       jack_position_t* pos, int new_position, void *arg)
190 {
191         static_cast<AudioEngine*> (arg)->jack_timebase_callback (state, nframes, pos, new_position);
192 }
193
194 void
195 AudioEngine::jack_timebase_callback (jack_transport_state_t state, nframes_t nframes,
196                                      jack_position_t* pos, int new_position)
197 {
198         if (session && session->synced_to_jack()) {
199                 session->jack_timebase_callback (state, nframes, pos, new_position);
200         }
201 }
202
203 int
204 AudioEngine::_jack_sync_callback (jack_transport_state_t state, jack_position_t* pos, void* arg)
205 {
206         return static_cast<AudioEngine*> (arg)->jack_sync_callback (state, pos);
207 }
208
209 int
210 AudioEngine::jack_sync_callback (jack_transport_state_t state, jack_position_t* pos)
211 {
212         if (session) {
213                 return session->jack_sync_callback (state, pos);
214         } else {
215                 return true;
216         }
217 }
218
219 int
220 AudioEngine::_xrun_callback (void *arg)
221 {
222          static_cast<AudioEngine *>(arg)->Xrun (); /* EMIT SIGNAL */
223         return 0;
224 }
225
226 int
227 AudioEngine::_graph_order_callback (void *arg)
228 {
229         static_cast<AudioEngine *>(arg)->GraphReordered (); /* EMIT SIGNAL */
230         return 0;
231 }
232
233 int
234 AudioEngine::_process_callback (nframes_t nframes, void *arg)
235 {
236         return static_cast<AudioEngine *> (arg)->process_callback (nframes);
237 }
238
239 void
240 AudioEngine::_freewheel_callback (int onoff, void *arg)
241 {
242         static_cast<AudioEngine*>(arg)->_freewheeling = onoff;
243 }
244
245 int
246 AudioEngine::process_callback (nframes_t nframes)
247 {
248         // CycleTimer ct ("AudioEngine::process");
249         Glib::Mutex::Lock tm (_process_lock, Glib::TRY_LOCK);
250         nframes_t next_processed_frames;
251         
252         /* handle wrap around of total frames counter */
253
254         if (max_frames - _processed_frames < nframes) {
255                 next_processed_frames = nframes - (max_frames - _processed_frames);
256         } else {
257                 next_processed_frames = _processed_frames + nframes;
258         }
259         
260         if (!tm.locked() || session == 0) {
261                 _processed_frames = next_processed_frames;
262                 return 0;
263         }
264
265         if (session_remove_pending) {
266                 session = 0;
267                 session_remove_pending = false;
268                 session_removed.signal();
269                 _processed_frames = next_processed_frames;
270                 return 0;
271         }
272
273         if (_freewheeling) {
274                 if (Freewheel (nframes)) {
275                         _freewheeling = false;
276                         jack_set_freewheel (_jack, false);
277                 }
278                 return 0;
279         }
280
281         session->process (nframes);
282
283         if (!_running) {
284                 /* we were zombified, maybe because a ladspa plugin took
285                    too long, or jackd exited, or something like that.
286                 */
287                 
288                 _processed_frames = next_processed_frames;
289                 return 0;
290         }
291
292         if (last_monitor_check + monitor_check_interval < next_processed_frames) {
293
294                 boost::shared_ptr<Ports> p = ports.reader();
295
296                 for (Ports::iterator i = p->begin(); i != p->end(); ++i) {
297                         
298                         Port *port = (*i);
299                         bool x;
300                         
301                         if (port->_last_monitor != (x = port->monitoring_input ())) {
302                                 port->_last_monitor = x;
303                                 /* XXX I think this is dangerous, due to 
304                                    a likely mutex in the signal handlers ...
305                                 */
306                                  port->MonitorInputChanged (x); /* EMIT SIGNAL */
307                         }
308                 }
309                 last_monitor_check = next_processed_frames;
310         }
311
312         _processed_frames = next_processed_frames;
313         return 0;
314 }
315
316 int
317 AudioEngine::_sample_rate_callback (nframes_t nframes, void *arg)
318 {
319         return static_cast<AudioEngine *> (arg)->jack_sample_rate_callback (nframes);
320 }
321
322 int
323 AudioEngine::jack_sample_rate_callback (nframes_t nframes)
324 {
325         _frame_rate = nframes;
326         _usecs_per_cycle = (int) floor ((((double) frames_per_cycle() / nframes)) * 1000000.0);
327         
328         /* check for monitor input change every 1/10th of second */
329
330         monitor_check_interval = nframes / 10;
331         last_monitor_check = 0;
332         
333         if (session) {
334                 session->set_frame_rate (nframes);
335         }
336
337         SampleRateChanged (nframes); /* EMIT SIGNAL */
338
339         return 0;
340 }
341
342 int
343 AudioEngine::_bufsize_callback (nframes_t nframes, void *arg)
344 {
345         return static_cast<AudioEngine *> (arg)->jack_bufsize_callback (nframes);
346 }
347
348 int
349 AudioEngine::jack_bufsize_callback (nframes_t nframes)
350 {
351         _buffer_size = nframes;
352         _usecs_per_cycle = (int) floor ((((double) nframes / frame_rate())) * 1000000.0);
353         last_monitor_check = 0;
354
355         boost::shared_ptr<Ports> p = ports.reader();
356
357         for (Ports::iterator i = p->begin(); i != p->end(); ++i) {
358                 (*i)->reset();
359         }
360
361         if (session) {
362                 session->set_block_size (_buffer_size);
363         }
364
365         return 0;
366 }
367
368 void
369 AudioEngine::start_metering_thread ()
370 {
371         if(m_meter_thread == 0) {
372                 m_meter_thread = Glib::Thread::create (sigc::mem_fun(this, &AudioEngine::meter_thread), false);
373         }
374 }
375
376 void
377 AudioEngine::meter_thread ()
378 {
379         while (g_atomic_int_get(&m_meter_exit) != true) {
380         Glib::usleep (10000); /* 1/100th sec interval */
381         IO::update_meters ();
382         }
383         return;
384 }
385
386 void 
387 AudioEngine::set_session (Session *s)
388 {
389         if (!session) {
390                 session = s;
391         }
392 }
393
394 void 
395 AudioEngine::remove_session ()
396 {
397         Glib::Mutex::Lock lm (_process_lock);
398
399         if (_running) {
400
401                 if (session) {
402                         session_remove_pending = true;
403                         session_removed.wait(_process_lock);
404                 } 
405
406         } else {
407
408                 session = 0;
409
410         }
411         
412         remove_all_ports ();
413
414 }
415
416 Port *
417 AudioEngine::register_input_port (DataType type, const string& portname)
418 {
419         if (!_running) {
420                 if (!_has_run) {
421                         fatal << _("register input port called before engine was started") << endmsg;
422                         /*NOTREACHED*/
423                 } else {
424                         return 0;
425                 }
426         }
427
428         jack_port_t *p = jack_port_register (_jack, portname.c_str(), type.to_jack_type(), JackPortIsInput, 0);
429
430         if (p) {
431
432                 Port *newport;
433
434                 if ((newport = new Port (p)) != 0) {
435                         RCUWriter<Ports> writer (ports);
436                         boost::shared_ptr<Ports> ps = writer.get_copy ();
437                         ps->insert (ps->begin(), newport);
438                         /* writer goes out of scope, forces update */
439                 }
440
441                 return newport;
442
443         } else {
444
445                 _process_lock.unlock();
446                 throw PortRegistrationFailure();
447         }
448
449         return 0;
450 }
451
452 Port *
453 AudioEngine::register_output_port (DataType type, const string& portname)
454 {
455         if (!_running) {
456                 if (!_has_run) {
457                         fatal << _("register output port called before engine was started") << endmsg;
458                         /*NOTREACHED*/
459                 } else {
460                         return 0;
461                 }
462         }
463
464         jack_port_t *p;
465
466         if ((p = jack_port_register (_jack, portname.c_str(),
467                 type.to_jack_type(), JackPortIsOutput, 0)) != 0) {
468
469                 Port *newport = 0;
470
471                 {
472                         RCUWriter<Ports> writer (ports);
473                         boost::shared_ptr<Ports> ps = writer.get_copy ();
474                         
475                         newport = new Port (p);
476                         ps->insert (ps->begin(), newport);
477
478                         /* writer goes out of scope, forces update */
479                 }
480
481                 return newport;
482
483         } else {
484
485                 _process_lock.unlock();
486                 throw PortRegistrationFailure ();
487         }
488
489         return 0;
490 }
491
492
493 int          
494 AudioEngine::unregister_port (Port *port)
495 {
496         if (!_running) { 
497                 /* probably happening when the engine has been halted by JACK,
498                    in which case, there is nothing we can do here.
499                 */
500                 return 0;
501         }
502
503         if (port) {
504
505                 int ret = jack_port_unregister (_jack, port->_port);
506                 
507                 if (ret == 0) {
508                         
509                         {
510
511                                 RCUWriter<Ports> writer (ports);
512                                 boost::shared_ptr<Ports> ps = writer.get_copy ();
513                                 
514                                 for (Ports::iterator i = ps->begin(); i != ps->end(); ++i) {
515                                         if ((*i) == port) {
516                                                 ps->erase (i);
517                                                 break;
518                                         }
519                                 }
520
521                                 /* writer goes out of scope, forces update */
522                         }
523
524                         remove_connections_for (port);
525                 }
526
527                 return ret;
528
529         } else {
530                 return -1;
531         }
532 }
533
534 int 
535 AudioEngine::connect (const string& source, const string& destination)
536 {
537         if (!_running) {
538                 if (!_has_run) {
539                         fatal << _("connect called before engine was started") << endmsg;
540                         /*NOTREACHED*/
541                 } else {
542                         return -1;
543                 }
544         }
545         
546         string s = make_port_name_non_relative (source);
547         string d = make_port_name_non_relative (destination);
548
549         int ret = jack_connect (_jack, s.c_str(), d.c_str());
550
551         if (ret == 0) {
552                 pair<string,string> c (s, d);
553                 port_connections.push_back (c);
554         } else {
555                 error << string_compose(_("AudioEngine: cannot connect %1 (%2) to %3 (%4)"), 
556                                  source, s, destination, d) 
557                       << endmsg;
558         }
559
560         return ret;
561 }
562
563 int 
564 AudioEngine::disconnect (const string& source, const string& destination)
565 {
566         if (!_running) {
567                 if (!_has_run) {
568                         fatal << _("disconnect called before engine was started") << endmsg;
569                         /*NOTREACHED*/
570                 } else {
571                         return -1;
572                 }
573         }
574         
575         string s = make_port_name_non_relative (source);
576         string d = make_port_name_non_relative (destination);
577
578         int ret = jack_disconnect (_jack, s.c_str(), d.c_str());
579
580         if (ret == 0) {
581                 pair<string,string> c (s, d);
582                 PortConnections::iterator i;
583                 
584                 if ((i = find (port_connections.begin(), port_connections.end(), c)) != port_connections.end()) {
585                         port_connections.erase (i);
586                 }
587         }
588          
589         return ret;
590 }
591
592 int
593 AudioEngine::disconnect (Port *port)
594 {
595         if (!_running) {
596                 if (!_has_run) {
597                         fatal << _("disconnect called before engine was started") << endmsg;
598                         /*NOTREACHED*/
599                 } else {
600                         return -1;
601                 }
602         }
603
604         int ret = jack_port_disconnect (_jack, port->_port);
605
606         if (ret == 0) {
607                 remove_connections_for (port);
608         }
609
610         return ret;
611
612 }
613
614 nframes_t
615 AudioEngine::frame_rate ()
616 {
617         if (_jack) {
618                 if (_frame_rate == 0) {
619                         return (_frame_rate = jack_get_sample_rate (_jack));
620                 } else {
621                         return _frame_rate;
622                 }
623         } else {
624                 fatal << X_("programming error: AudioEngine::frame_rate() called while disconnected from JACK")
625                       << endmsg;
626                 /*NOTREACHED*/
627                 return 0;
628         }
629 }
630
631 nframes_t
632 AudioEngine::frames_per_cycle ()
633 {
634         if (_jack) {
635                 if (_buffer_size == 0) {
636                         return (_buffer_size = jack_get_buffer_size (_jack));
637                 } else {
638                         return _buffer_size;
639                 }
640         } else {
641                 fatal << X_("programming error: AudioEngine::frame_rate() called while disconnected from JACK")
642                       << endmsg;
643                 /*NOTREACHED*/
644                 return 0;
645         }
646 }
647
648 Port *
649 AudioEngine::get_port_by_name (const string& portname, bool keep)
650 {
651         Glib::Mutex::Lock lm (_process_lock);
652
653         if (!_running) {
654                 if (!_has_run) {
655                         fatal << _("get_port_by_name() called before engine was started") << endmsg;
656                         /*NOTREACHED*/
657                 } else {
658                         return 0;
659                 }
660         }
661         
662         /* check to see if we have a Port for this name already */
663
664         boost::shared_ptr<Ports> pr = ports.reader();
665         
666         for (Ports::iterator i = pr->begin(); i != pr->end(); ++i) {
667                 if (portname == (*i)->name()) {
668                         return (*i);
669                 }
670         }
671
672         jack_port_t *p;
673
674         if ((p = jack_port_by_name (_jack, portname.c_str())) != 0) {
675                 Port *newport = new Port (p);
676
677                 {
678                         if (keep && newport->is_mine (_jack)) {
679                                 RCUWriter<Ports> writer (ports);
680                                 boost::shared_ptr<Ports> ps = writer.get_copy ();
681                                 ps->insert (newport);
682                                 /* writer goes out of scope, forces update */
683                         }
684                 }
685
686                 return newport;
687
688         } else {
689
690                 return 0;
691         }
692 }
693
694 const char **
695 AudioEngine::get_ports (const string& port_name_pattern, const string& type_name_pattern, uint32_t flags)
696 {
697         if (!_running) {
698                 if (!_has_run) {
699                         fatal << _("get_ports called before engine was started") << endmsg;
700                         /*NOTREACHED*/
701                 } else {
702                         return 0;
703                 }
704         }
705         return jack_get_ports (_jack, port_name_pattern.c_str(), type_name_pattern.c_str(), flags);
706 }
707
708 void
709 AudioEngine::halted (void *arg)
710 {
711         AudioEngine *ae = reinterpret_cast<AudioEngine *> (arg);
712
713         ae->_running = false;
714         ae->_jack = 0;
715
716         ae->_buffer_size = 0;
717         ae->_frame_rate = 0;
718
719         ae->Halted(); /* EMIT SIGNAL */
720 }
721
722 uint32_t
723 AudioEngine::n_physical_outputs () const
724 {
725         const char ** ports;
726         uint32_t i = 0;
727
728         if (!_jack) {
729                 return 0;
730         }
731
732         if ((ports = jack_get_ports (_jack, NULL, NULL, JackPortIsPhysical|JackPortIsInput)) == 0) {
733                 return 0;
734         }
735
736         if (ports) {
737                 for (i = 0; ports[i]; ++i);
738                 free (ports);
739         }
740         return i;
741 }
742
743 uint32_t
744 AudioEngine::n_physical_inputs () const
745 {
746         const char ** ports;
747         uint32_t i = 0;
748         
749         if (!_jack) {
750                 return 0;
751         }
752         
753         if ((ports = jack_get_ports (_jack, NULL, NULL, JackPortIsPhysical|JackPortIsOutput)) == 0) {
754                 return 0;
755         }
756
757         if (ports) {
758                 for (i = 0; ports[i]; ++i);
759                 free (ports);
760         }
761         return i;
762 }
763
764 void
765 AudioEngine::get_physical_inputs (vector<string>& ins)
766 {
767         const char ** ports;
768         uint32_t i = 0;
769         
770         if (!_jack) {
771                 return;
772         }
773         
774         if ((ports = jack_get_ports (_jack, NULL, NULL, JackPortIsPhysical|JackPortIsOutput)) == 0) {
775                 return;
776         }
777
778         if (ports) {
779                 for (i = 0; ports[i]; ++i) {
780                         ins.push_back (ports[i]);
781                 }
782                 free (ports);
783         }
784 }
785
786 void
787 AudioEngine::get_physical_outputs (vector<string>& outs)
788 {
789         const char ** ports;
790         uint32_t i = 0;
791         
792         if (!_jack) {
793                 return;
794         }
795         
796         if ((ports = jack_get_ports (_jack, NULL, NULL, JackPortIsPhysical|JackPortIsInput)) == 0) {
797                 return;
798         }
799
800         if (ports) {
801                 for (i = 0; ports[i]; ++i) {
802                         outs.push_back (ports[i]);
803                 }
804                 free (ports);
805         }
806 }
807
808 string
809 AudioEngine::get_nth_physical (uint32_t n, int flag)
810 {
811         const char ** ports;
812         uint32_t i;
813         string ret;
814
815         if (!_running || !_jack) {
816                 if (!_has_run) {
817                         fatal << _("get_nth_physical called before engine was started") << endmsg;
818                         /*NOTREACHED*/
819                 } else {
820                         return "";
821                 }
822         }
823
824         ports = jack_get_ports (_jack, NULL, NULL, JackPortIsPhysical|flag);
825         
826         if (ports == 0) {
827                 return "";
828         }
829
830         for (i = 0; i < n && ports[i]; ++i);
831
832         if (ports[i]) {
833                 ret = ports[i];
834         }
835
836         free ((char *) ports);
837
838         return ret;
839 }
840
841 nframes_t
842 AudioEngine::get_port_total_latency (const Port& port)
843 {
844         if (!_jack) {
845                 fatal << _("get_port_total_latency() called with no JACK client connection") << endmsg;
846                 /*NOTREACHED*/
847         }
848
849         if (!_running) {
850                 if (!_has_run) {
851                         fatal << _("get_port_total_latency() called before engine was started") << endmsg;
852                         /*NOTREACHED*/
853                 } 
854         }
855
856         return jack_port_get_total_latency (_jack, port._port);
857 }
858
859 void
860 AudioEngine::transport_stop ()
861 {
862         // cerr << "tell JACK to stop\n";
863         if (_jack) {
864                 jack_transport_stop (_jack);
865         }
866 }
867
868 void
869 AudioEngine::transport_start ()
870 {
871         // cerr << "tell JACK to start\n";
872         if (_jack) {
873                 jack_transport_start (_jack);
874         }
875 }
876
877 void
878 AudioEngine::transport_locate (nframes_t where)
879 {
880         // cerr << "tell JACK to locate to " << where << endl;
881         if (_jack) {
882                 jack_transport_locate (_jack, where);
883         }
884 }
885
886 AudioEngine::TransportState
887 AudioEngine::transport_state ()
888 {
889         if (_jack) {
890                 jack_position_t pos;
891                 return (TransportState) jack_transport_query (_jack, &pos);
892         } else {
893                 return (TransportState) JackTransportStopped;
894         }
895 }
896
897 int
898 AudioEngine::reset_timebase ()
899 {
900         if (_jack) {
901                 if (Config->get_jack_time_master()) {
902                         return jack_set_timebase_callback (_jack, 0, _jack_timebase_callback, this);
903                 } else {
904                         return jack_release_timebase (_jack);
905                 }
906         } else {
907                 return -1;
908         }
909 }
910
911 int
912 AudioEngine::freewheel (bool onoff)
913 {
914         if (_jack) {
915
916                 if (onoff) {
917                         _freewheel_thread_registered = false;
918                 }
919
920                 return jack_set_freewheel (_jack, onoff);
921
922         } else {
923                 return -1;
924         }
925 }
926
927 void
928 AudioEngine::remove_all_ports ()
929 {
930         /* process lock MUST be held */
931
932         if (_jack) {
933                 boost::shared_ptr<Ports> p = ports.reader();
934
935                 for (Ports::iterator i = p->begin(); i != p->end(); ++i) {
936                         jack_port_unregister (_jack, (*i)->_port);
937                 }
938         }
939
940         {
941                 RCUWriter<Ports> writer (ports);
942                 boost::shared_ptr<Ports> ps = writer.get_copy ();
943                 ps->clear ();
944         }
945
946         port_connections.clear ();
947 }
948
949 void
950 AudioEngine::remove_connections_for (Port* port)
951 {
952         for (PortConnections::iterator i = port_connections.begin(); i != port_connections.end(); ) {
953                 PortConnections::iterator tmp;
954                 
955                 tmp = i;
956                 ++tmp;
957                 
958                 if ((*i).first == port->name()) {
959                         port_connections.erase (i);
960                 }
961
962                 i = tmp;
963         }
964 }
965
966 #ifdef HAVE_JACK_CLIENT_OPEN
967
968 int
969 AudioEngine::connect_to_jack (string client_name)
970 {
971         jack_options_t options = JackNullOption;
972         jack_status_t status;
973         const char *server_name = NULL;
974
975         jack_client_name = client_name; /* might be reset below */
976
977         _jack = jack_client_open (jack_client_name.c_str(), options, &status, server_name);
978         
979         if (_jack == NULL) {
980
981                 if (status & JackServerFailed) {
982                         error << _("Unable to connect to JACK server") << endmsg;
983                 }
984                 
985                 error << string_compose (_("Could not connect to JACK server as  \"%1\""), jack_client_name) <<  endmsg;
986                 return -1;
987         }
988
989         if (status & JackServerStarted) {
990                 info << _("JACK server started") << endmsg;
991         }
992
993         if (status & JackNameNotUnique) {
994                 jack_client_name = jack_get_client_name (_jack);
995         }
996         
997         return 0;
998 }
999
1000 #else
1001
1002 int
1003 AudioEngine::connect_to_jack (string client_name)
1004 {
1005         jack_client_name = client_name;
1006
1007         if ((_jack = jack_client_new (client_name.c_str())) == NULL) {
1008                 return -1;
1009         }
1010
1011         return 0;
1012 }
1013
1014 #endif /* HAVE_JACK_CLIENT_OPEN */
1015
1016 int 
1017 AudioEngine::disconnect_from_jack ()
1018 {
1019         if (_jack == 0) {
1020                 return 0;
1021         }
1022
1023         if (jack_client_close (_jack)) {
1024                 error << _("cannot shutdown connection to JACK") << endmsg;
1025         }
1026
1027         _buffer_size = 0;
1028         _frame_rate = 0;
1029
1030         if (_running) {
1031                 _running = false;
1032                 Stopped(); /* EMIT SIGNAL */
1033         }
1034
1035         _jack = 0;
1036         return 0;
1037 }
1038
1039 int
1040 AudioEngine::reconnect_to_jack ()
1041 {
1042         if (_jack) {
1043                 disconnect_from_jack ();
1044                 /* XXX give jackd a chance */
1045                 Glib::usleep (250000);
1046         }
1047
1048         if (connect_to_jack (jack_client_name)) {
1049                 error << _("failed to connect to JACK") << endmsg;
1050                 return -1;
1051         }
1052
1053         Ports::iterator i;
1054
1055         boost::shared_ptr<Ports> p = ports.reader ();
1056
1057         for (i = p->begin(); i != p->end(); ++i) {
1058
1059                 /* XXX hack hack hack */
1060
1061                 string long_name = (*i)->name();
1062                 string short_name;
1063                 
1064                 short_name = long_name.substr (long_name.find_last_of (':') + 1);
1065
1066                 if (((*i)->_port = jack_port_register (_jack, short_name.c_str(), (*i)->type(), (*i)->flags(), 0)) == 0) {
1067                         error << string_compose (_("could not reregister %1"), (*i)->name()) << endmsg;
1068                         break;
1069                 } else {
1070                 }
1071
1072                 (*i)->reset ();
1073
1074                 if ((*i)->flags() & JackPortIsOutput) {
1075                         (*i)->silence (jack_get_buffer_size (_jack), 0);
1076                 }
1077         }
1078
1079         if (i != p->end()) {
1080                 /* failed */
1081                 for (Ports::iterator i = p->begin(); i != p->end(); ++i) {
1082                         jack_port_unregister (_jack, (*i)->_port);
1083                 }
1084                 return -1;
1085         } 
1086
1087
1088         if (session) {
1089                 nframes_t blocksize = jack_get_buffer_size (_jack);
1090                 session->set_block_size (blocksize);
1091                 session->set_frame_rate (jack_get_sample_rate (_jack));
1092         }
1093
1094         last_monitor_check = 0;
1095         
1096         jack_on_shutdown (_jack, halted, this);
1097         jack_set_graph_order_callback (_jack, _graph_order_callback, this);
1098         jack_set_thread_init_callback (_jack, _thread_init_callback, this);
1099         jack_set_process_callback (_jack, _process_callback, this);
1100         jack_set_sample_rate_callback (_jack, _sample_rate_callback, this);
1101         jack_set_buffer_size_callback (_jack, _bufsize_callback, this);
1102         jack_set_xrun_callback (_jack, _xrun_callback, this);
1103         jack_set_sync_callback (_jack, _jack_sync_callback, this);
1104         jack_set_freewheel_callback (_jack, _freewheel_callback, this);
1105         
1106         if (Config->get_jack_time_master()) {
1107                 jack_set_timebase_callback (_jack, 0, _jack_timebase_callback, this);
1108         }
1109         
1110         if (jack_activate (_jack) == 0) {
1111                 _running = true;
1112                 _has_run = true;
1113         } else {
1114                 return -1;
1115         }
1116
1117         /* re-establish connections */
1118         
1119         for (PortConnections::iterator i = port_connections.begin(); i != port_connections.end(); ++i) {
1120                 
1121                 int err;
1122                 
1123                 if ((err = jack_connect (_jack, (*i).first.c_str(), (*i).second.c_str())) != 0) {
1124                         if (err != EEXIST) {
1125                                 error << string_compose (_("could not reconnect %1 and %2 (err = %3)"),
1126                                                   (*i).first, (*i).second, err)
1127                                       << endmsg;
1128                         }
1129                 }
1130         }
1131
1132         Running (); /* EMIT SIGNAL*/
1133
1134         return 0;
1135 }
1136
1137 int
1138 AudioEngine::request_buffer_size (nframes_t nframes)
1139 {
1140         if (_jack) {
1141                 int ret = jack_set_buffer_size (_jack, nframes);
1142                 return ret;
1143         } else {
1144                 return -1;
1145         }
1146 }
1147
1148 void
1149 AudioEngine::update_total_latencies ()
1150 {
1151 #ifdef HAVE_JACK_RECOMPUTE_LATENCIES
1152         jack_recompute_total_latencies (_jack);
1153 #endif
1154 }
1155                 
1156 string
1157 AudioEngine::make_port_name_relative (string portname)
1158 {
1159         string::size_type len;
1160         string::size_type n;
1161         
1162         len = portname.length();
1163
1164         for (n = 0; n < len; ++n) {
1165                 if (portname[n] == ':') {
1166                         break;
1167                 }
1168         }
1169         
1170         if ((n != len) && (portname.substr (0, n) == jack_client_name)) {
1171                 return portname.substr (n+1);
1172         }
1173
1174         return portname;
1175 }
1176
1177 string
1178 AudioEngine::make_port_name_non_relative (string portname)
1179 {
1180         string str;
1181
1182         if (portname.find_first_of (':') != string::npos) {
1183                 return portname;
1184         }
1185
1186         str  = jack_client_name;
1187         str += ':';
1188         str += portname;
1189         
1190         return str;
1191 }
1192