fix compose mess, and a number of 64 bit printf specs
[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     $Id$
19 */
20
21 #include <iostream>
22
23 #include <errno.h>
24 #include <jack/jack.h>
25 #include <jack/transport.h>
26 #include <pbd/error.h>
27
28 #include <ardour/slave.h>
29 #include <ardour/session.h>
30
31 #include "i18n.h"
32
33 using namespace ARDOUR;
34 using namespace sigc;
35
36 JACK_Slave::JACK_Slave (jack_client_t* j)
37         : jack (j)
38 {
39         float x;
40         jack_nframes_t p;
41         /* call this to initialize things */
42         speed_and_position (x, p);
43 }
44
45 JACK_Slave::~JACK_Slave ()
46 {
47 }
48
49 bool
50 JACK_Slave::locked() const
51 {
52         return true;
53 }
54
55 bool
56 JACK_Slave::ok() const
57 {
58         return true;
59 }
60
61 bool 
62 JACK_Slave::speed_and_position (float& sp, jack_nframes_t& position) 
63 {
64         jack_position_t pos;
65         jack_transport_state_t state;
66
67         state = jack_transport_query (jack, &pos);
68
69         switch (state) {
70         case JackTransportStopped:
71                 speed = 0;
72                 _starting = false;
73                 break;
74         case JackTransportRolling:
75                 speed = 1.0;
76                 _starting = false;
77                 break;
78         case JackTransportLooping:
79                 speed = 1.0;
80                 _starting = false;
81                 break;
82         case JackTransportStarting:
83                 _starting = true;
84                 // don't adjust speed here, just leave it as it was
85                 break;
86         }
87
88         sp = speed;
89         position = pos.frame;
90         return true;
91 }