0b423a7e28740a0442d554eeab4fb7e7b309cde2
[ardour.git] / libs / ardour / ardour / audioengine.h
1 /*
2     Copyright (C) 2002-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 #ifndef __ardour_audioengine_h__
21 #define __ardour_audioengine_h__
22
23 #include <list>
24 #include <set>
25 #include <cmath>
26 #include <exception>
27 #include <string>
28
29 #include <sigc++/signal.h>
30
31 #include <glibmm/thread.h>
32
33 #include <pbd/rcu.h>
34
35 #include <ardour/ardour.h>
36 #include <jack/jack.h>
37 #include <jack/transport.h>
38 #include <ardour/types.h>
39 #include <ardour/data_type.h>
40
41 namespace ARDOUR {
42
43 class Session;
44 class Port;
45
46 class AudioEngine : public sigc::trackable
47 {
48    public:
49         AudioEngine (std::string client_name);
50         virtual ~AudioEngine ();
51         
52         jack_client_t* jack() const { return _jack; }
53         bool connected() const { return _jack != 0; }
54
55         bool is_realtime () const;
56
57         std::string client_name() const { return jack_client_name; }
58
59         int reconnect_to_jack ();
60         int disconnect_from_jack();
61
62         bool will_reconnect_at_halt ();
63         void set_reconnect_at_halt (bool);
64
65         int stop (bool forever = false);
66         int start ();
67         bool running() const { return _running; }
68
69         Glib::Mutex& process_lock() { return _process_lock; }
70
71         nframes_t frame_rate();
72         nframes_t frames_per_cycle();
73
74         int usecs_per_cycle () const { return _usecs_per_cycle; }
75
76         bool get_sync_offset (nframes_t& offset) const;
77
78         nframes_t frames_since_cycle_start () {
79                 if (!_running || !_jack) return 0;
80                 return jack_frames_since_cycle_start (_jack);
81         }
82         nframes_t frame_time () {
83                 if (!_running || !_jack) return 0;
84                 return jack_frame_time (_jack);
85         }
86
87         nframes_t transport_frame () const {
88                 if (!_running || !_jack) return 0;
89                 return jack_get_current_transport_frame (_jack);
90         }
91         
92         int request_buffer_size (nframes_t);
93         
94         nframes_t set_monitor_check_interval (nframes_t);
95
96         float get_cpu_load() { 
97                 if (!_running || !_jack) return 0;
98                 return jack_cpu_load (_jack);
99         }
100
101         void set_session (Session *);
102         void remove_session ();
103
104         class PortRegistrationFailure : public std::exception {
105           public:
106                 virtual const char *what() const throw() { return "failed port registration"; }
107         };
108
109         class NoBackendAvailable : public std::exception {
110           public:
111                 virtual const char *what() const throw() { return "could not connect to engine backend"; }
112         };
113
114         Port *register_input_port (DataType type, const std::string& portname);
115         Port *register_output_port (DataType type, const std::string& portname);
116         int   unregister_port (Port *);
117         
118         int connect (const std::string& source, const std::string& destination);
119         int disconnect (const std::string& source, const std::string& destination);
120         int disconnect (Port *);
121         
122         const char ** get_ports (const std::string& port_name_pattern, const std::string& type_name_pattern, uint32_t flags);
123
124         uint32_t n_physical_outputs () const;
125         uint32_t n_physical_inputs () const;
126
127         void get_physical_outputs (std::vector<std::string>&);
128         void get_physical_inputs (std::vector<std::string>&);
129
130         std::string get_nth_physical_output (uint32_t n) {
131                 return get_nth_physical (n, JackPortIsInput);
132         }
133
134         std::string get_nth_physical_input (uint32_t n) {
135                 return get_nth_physical (n, JackPortIsOutput);
136         }
137
138         nframes_t get_port_total_latency (const Port&);
139         void update_total_latencies ();
140
141         /* the caller may not delete the object pointed to by 
142            the return value
143         */
144
145         Port *get_port_by_name (const std::string& name, bool keep = true);
146
147         enum TransportState {
148                 TransportStopped = JackTransportStopped,
149                 TransportRolling = JackTransportRolling,
150                 TransportLooping = JackTransportLooping,
151                 TransportStarting = JackTransportStarting
152         };
153
154         void transport_start ();
155         void transport_stop ();
156         void transport_locate (nframes_t);
157         TransportState transport_state ();
158
159         int  reset_timebase ();
160
161         /* start/stop freewheeling */
162
163         int freewheel (bool onoff);
164         bool freewheeling() const { return _freewheeling; }
165
166         /* this signal is sent for every process() cycle while freewheeling.
167            the regular process() call to session->process() is not made.
168         */
169
170         sigc::signal<int,nframes_t> Freewheel;
171
172         sigc::signal<void> Xrun;
173
174         /* this signal is if JACK notifies us of a graph order event */
175
176         sigc::signal<void> GraphReordered;
177
178         /* this signal is emitted if the sample rate changes */
179
180         sigc::signal<void,nframes_t> SampleRateChanged;
181
182         /* this signal is sent if JACK ever disconnects us */
183
184         sigc::signal<void> Halted;
185
186         /* these two are emitted when the engine itself is
187            started and stopped
188         */
189
190         sigc::signal<void> Running;
191         sigc::signal<void> Stopped;
192
193         std::string make_port_name_relative (std::string);
194         std::string make_port_name_non_relative (std::string);
195
196   private:
197         ARDOUR::Session      *session;
198         jack_client_t       *_jack;
199         std::string           jack_client_name;
200         Glib::Mutex           _process_lock;
201         Glib::Cond            session_removed;
202         bool                  session_remove_pending;
203         bool                 _running;
204         bool                 _has_run;
205         nframes_t       _buffer_size;
206         nframes_t       _frame_rate;
207         nframes_t        monitor_check_interval;
208         nframes_t        last_monitor_check;
209         nframes_t       _processed_frames;
210         bool                 _freewheeling;
211         bool                 _freewheel_thread_registered;
212         sigc::slot<int,nframes_t>  freewheel_action;
213         bool                  reconnect_on_halt;
214         int                  _usecs_per_cycle;
215
216         typedef std::set<Port*> Ports;
217         SerializedRCUManager<Ports> ports;
218
219         int    process_callback (nframes_t nframes);
220         void   remove_all_ports ();
221
222         typedef std::pair<std::string,std::string> PortConnection;
223         typedef std::list<PortConnection> PortConnections;
224
225         PortConnections port_connections;
226         void   remove_connections_for (Port*);
227
228         std::string get_nth_physical (uint32_t which, int flags);
229
230         static int  _xrun_callback (void *arg);
231         static int  _graph_order_callback (void *arg);
232         static int  _process_callback (nframes_t nframes, void *arg);
233         static int  _sample_rate_callback (nframes_t nframes, void *arg);
234         static int  _bufsize_callback (nframes_t nframes, void *arg);
235         static void _jack_timebase_callback (jack_transport_state_t, nframes_t, jack_position_t*, int, void*);
236         static int  _jack_sync_callback (jack_transport_state_t, jack_position_t*, void *arg);
237         static void _freewheel_callback (int , void *arg);
238
239         void jack_timebase_callback (jack_transport_state_t, nframes_t, jack_position_t*, int);
240         int  jack_sync_callback (jack_transport_state_t, jack_position_t*);
241         int  jack_bufsize_callback (nframes_t);
242         int  jack_sample_rate_callback (nframes_t);
243
244         static void halted (void *);
245
246         int connect_to_jack (std::string client_name);
247
248         void meter_thread ();
249         void start_metering_thread ();
250         void stop_metering_thread ();
251
252         Glib::Thread*    m_meter_thread;
253         static gint      m_meter_exit;
254 };
255
256 } // namespace ARDOUR
257
258 #endif /* __ardour_audioengine_h__ */