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