ebf309ac3b60d19da0116ee22510611ad0269ac3
[ardour.git] / libs / ardour / jack_slave.cc
1 /*
2     Copyright (C) 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 */
19
20 #include <iostream>
21
22 #include <errno.h>
23 #include <jack/jack.h>
24 #include <jack/transport.h>
25
26 #include "ardour/slave.h"
27 #include "ardour/session.h"
28
29 #include "i18n.h"
30
31 using namespace ARDOUR;
32 using namespace sigc;
33
34 JACK_Slave::JACK_Slave (jack_client_t* j)
35         : jack (j)
36 {
37         double x;
38         nframes_t p;
39         /* call this to initialize things */
40         speed_and_position (x, p);
41 }
42
43 JACK_Slave::~JACK_Slave ()
44 {
45 }
46
47 void
48 JACK_Slave::reset_client (jack_client_t* j)
49 {
50         jack = j;
51 }
52
53 bool
54 JACK_Slave::locked() const
55 {
56         return true;
57 }
58
59 bool
60 JACK_Slave::ok() const
61 {
62         return true;
63 }
64
65 bool 
66 JACK_Slave::speed_and_position (double& sp, nframes_t& position) 
67 {
68         jack_position_t pos;
69         jack_transport_state_t state;
70         state = jack_transport_query (jack, &pos);
71
72         switch (state) {
73         case JackTransportStopped:
74                 speed = 0;
75                 _starting = false;
76                 break;
77         case JackTransportRolling:
78                 speed = 1.0;
79                 _starting = false;
80                 break;
81         case JackTransportLooping:
82                 speed = 1.0;
83                 _starting = false;
84                 break;
85         case JackTransportStarting:
86                 _starting = true;
87                 // don't adjust speed here, just leave it as it was
88                 break;
89         default:
90                 cerr << "WARNING: Unknown JACK transport state: " << state << endl;
91         }
92
93         sp = speed;
94         position = pos.frame;
95         return true;
96 }