db1f59d19fa163381d4380d60ac27695aedba0e3
[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 #ifdef WAF_BUILD
24 #include "libardour-config.h"
25 #endif
26
27 #include <iostream>
28 #include <list>
29 #include <set>
30 #include <cmath>
31 #include <exception>
32 #include <string>
33
34 #include <glibmm/threads.h>
35
36 #include "pbd/signals.h"
37 #include "pbd/stacktrace.h"
38
39 #include <jack/weakjack.h>
40 #include <jack/jack.h>
41 #include <jack/transport.h>
42 #include <jack/thread.h>
43
44 #include "ardour/ardour.h"
45
46 #include "ardour/data_type.h"
47 #include "ardour/session_handle.h"
48 #include "ardour/types.h"
49 #include "ardour/chan_count.h"
50 #include "ardour/port_manager.h"
51
52 #ifdef HAVE_JACK_SESSION
53 #include <jack/session.h>
54 #endif
55
56 namespace ARDOUR {
57
58 class InternalPort;
59 class MidiPort;
60 class Port;
61 class Session;
62 class ProcessThread;
63 class AudioBackend;
64
65 class AudioEngine : public SessionHandlePtr, public PortManager
66 {
67 public:
68
69     static AudioEngine* create (const std::string&  client_name, const std::string& session_uuid);
70
71     virtual ~AudioEngine ();
72     
73     int discover_backends();
74     std::vector<std::string> available_backends() const;
75     std::string current_backend_name () const;
76     int set_backend (const std::string&);
77
78     ProcessThread* main_thread() const { return _main_thread; }
79     
80     std::string client_name() const { return backend_client_name; }
81
82     /* START BACKEND PROXY API 
83      *
84      * See audio_backend.h for full documentation and semantics. These wrappers
85      * just forward to a backend implementation.
86      */
87
88     int            start ();
89     int            stop ();
90     int            pause ();
91     int            freewheel (bool start_stop);
92     float          get_cpu_load() const ;
93     void           transport_start ();
94     void           transport_stop ();
95     TransportState transport_state ();
96     void           transport_locate (framepos_t pos);
97     framepos_t     transport_frame();
98     framecnt_t     sample_rate () const;
99     pframes_t      samples_per_cycle () const;
100     int            usecs_per_cycle () const;
101     size_t         raw_buffer_size (DataType t);
102     pframes_t      sample_time ();
103     pframes_t      sample_time_at_cycle_start ();
104     pframes_t      samples_since_cycle_start ();
105     bool           get_sync_offset (pframes_t& offset) const;
106     int            create_process_thread (boost::function<void()> func, pthread_t*, size_t stacksize);
107     bool           is_realtime() const;
108     bool           connected() const;
109
110     /* END BACKEND PROXY API */
111
112     bool freewheeling() const { return _freewheeling; }
113     bool running() const { return _running; }
114
115     Glib::Threads::Mutex& process_lock() { return _process_lock; }
116
117     int request_buffer_size (pframes_t);
118
119     framecnt_t processed_frames() const { return _processed_frames; }
120     
121     void set_session (Session *);
122     void remove_session (); // not a replacement for SessionHandle::session_going_away()
123     
124     class NoBackendAvailable : public std::exception {
125       public:
126         virtual const char *what() const throw() { return "could not connect to engine backend"; }
127     };
128     
129     void split_cycle (pframes_t offset);
130     
131     int  reset_timebase ();
132     
133     void update_latencies ();
134
135     
136     /* this signal is sent for every process() cycle while freewheeling.
137        (the regular process() call to session->process() is not made)
138     */
139     
140     PBD::Signal1<int, pframes_t> Freewheel;
141     
142     PBD::Signal0<void> Xrun;
143     
144     /* this signal is if the backend notifies us of a graph order event */
145     
146     PBD::Signal0<void> GraphReordered;
147     
148 #ifdef HAVE_JACK_SESSION
149     PBD::Signal1<void,jack_session_event_t *> JackSessionEvent;
150 #endif
151     
152     /* this signal is emitted if the sample rate changes */
153     
154     PBD::Signal1<void, framecnt_t> SampleRateChanged;
155     
156     /* this signal is sent if the backend ever disconnects us */
157     
158     PBD::Signal1<void,const char*> Halted;
159     
160     /* these two are emitted when the engine itself is
161        started and stopped
162     */
163     
164     PBD::Signal0<void> Running;
165     PBD::Signal0<void> Stopped;
166     
167     /** Emitted if a Port is registered or unregistered */
168     PBD::Signal0<void> PortRegisteredOrUnregistered;
169     
170     /** Emitted if a Port is connected or disconnected.
171      *  The Port parameters are the ports being connected / disconnected, or 0 if they are not known to Ardour.
172      *  The std::string parameters are the (long) port names.
173      *  The bool parameter is true if ports were connected, or false for disconnected.
174      */
175     PBD::Signal5<void, boost::weak_ptr<Port>, std::string, boost::weak_ptr<Port>, std::string, bool> PortConnectedOrDisconnected;
176     
177     std::string make_port_name_relative (std::string) const;
178     std::string make_port_name_non_relative (std::string) const;
179     bool port_is_mine (const std::string&) const;
180     
181     static AudioEngine* instance() { return _instance; }
182     static void destroy();
183     void died ();
184     
185     /* The backend will cause these at the appropriate time(s)
186      */
187     int  process_callback (pframes_t nframes);
188     int  buffer_size_change (pframes_t nframes);
189     int  sample_rate_change (pframes_t nframes);
190     void freewheel_callback (bool);
191     void timebase_callback (TransportState state, pframes_t nframes, framepos_t pos, int new_position);
192     int  sync_callback (TransportState state, framepos_t position);
193     int  port_registration_callback ();
194     void latency_callback (bool for_playback);
195     void halted_callback (const char* reason);
196
197     /* sets up the process callback thread */
198     static void thread_init_callback (void *);
199
200   private:
201     AudioEngine (const std::string&  client_name, const std::string& session_uuid);
202
203     static AudioEngine*       _instance;
204
205     AudioBackend*             _backend;
206     Glib::Threads::Mutex      _process_lock;
207     Glib::Threads::Cond        session_removed;
208     bool                       session_remove_pending;
209     frameoffset_t              session_removal_countdown;
210     gain_t                     session_removal_gain;
211     gain_t                     session_removal_gain_step;
212     bool                      _running;
213     bool                      _has_run;
214     mutable framecnt_t        _buffer_size;
215     std::map<DataType,size_t> _raw_buffer_sizes;
216     mutable framecnt_t        _frame_rate;
217     /// number of frames between each check for changes in monitor input
218     framecnt_t                 monitor_check_interval;
219     /// time of the last monitor check in frames
220     framecnt_t                 last_monitor_check;
221     /// the number of frames processed since start() was called
222     framecnt_t                _processed_frames;
223     bool                      _freewheeling;
224     bool                      _pre_freewheel_mmc_enabled;
225     int                       _usecs_per_cycle;
226     bool                       port_remove_in_progress;
227     Glib::Threads::Thread*     m_meter_thread;
228     ProcessThread*            _main_thread;
229     
230     std::string               backend_client_name;
231     std::string               backend_session_uuid;
232     
233     void meter_thread ();
234     void start_metering_thread ();
235     void stop_metering_thread ();
236     
237     static gint      m_meter_exit;
238     
239     void parameter_changed (const std::string&);
240     PBD::ScopedConnection config_connection;
241
242     typedef std::map<std::string,AudioBackend*> BackendMap;
243     BackendMap _backends;
244     AudioBackend* backend_discover (const std::string&);
245     void drop_backend ();
246 };
247         
248 } // namespace ARDOUR
249
250 #endif /* __ardour_audioengine_h__ */