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