merge fix for tempo branch
[ardour.git] / libs / backends / alsa / alsa_audiobackend.h
1 /*
2  * Copyright (C) 2014 Robin Gareus <robin@gareus.org>
3  * Copyright (C) 2013 Paul Davis
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19
20 #ifndef __libbackend_alsa_audiobackend_h__
21 #define __libbackend_alsa_audiobackend_h__
22
23 #include <string>
24 #include <vector>
25 #include <map>
26 #include <set>
27
28 #include <stdint.h>
29 #include <pthread.h>
30
31 #include <boost/shared_ptr.hpp>
32
33 #include "ardour/audio_backend.h"
34 #include "ardour/system_exec.h"
35 #include "ardour/types.h"
36
37 #include "zita-alsa-pcmi.h"
38 #include "alsa_rawmidi.h"
39 #include "alsa_sequencer.h"
40
41 namespace ARDOUR {
42
43 class AlsaAudioBackend;
44
45 class AlsaMidiEvent {
46         public:
47                 AlsaMidiEvent (const pframes_t timestamp, const uint8_t* data, size_t size);
48                 AlsaMidiEvent (const AlsaMidiEvent& other);
49                 ~AlsaMidiEvent ();
50                 size_t size () const { return _size; };
51                 pframes_t timestamp () const { return _timestamp; };
52                 const unsigned char* const_data () const { return _data; };
53                 unsigned char* data () { return _data; };
54                 bool operator< (const AlsaMidiEvent &other) const { return timestamp () < other.timestamp (); };
55         private:
56                 size_t _size;
57                 pframes_t _timestamp;
58                 uint8_t *_data;
59 };
60
61 typedef std::vector<boost::shared_ptr<AlsaMidiEvent> > AlsaMidiBuffer;
62
63 class AlsaPort {
64         protected:
65                 AlsaPort (AlsaAudioBackend &b, const std::string&, PortFlags);
66         public:
67                 virtual ~AlsaPort ();
68
69                 const std::string& name () const { return _name; }
70                 PortFlags flags () const { return _flags; }
71
72                 int set_name (const std::string &name) { _name = name; return 0; }
73
74                 virtual DataType type () const = 0;
75
76                 bool is_input ()     const { return flags () & IsInput; }
77                 bool is_output ()    const { return flags () & IsOutput; }
78                 bool is_physical ()  const { return flags () & IsPhysical; }
79                 bool is_terminal ()  const { return flags () & IsTerminal; }
80                 bool is_connected () const { return _connections.size () != 0; }
81                 bool is_connected (const AlsaPort *port) const;
82                 bool is_physically_connected () const;
83
84                 const std::vector<AlsaPort *>& get_connections () const { return _connections; }
85
86                 int connect (AlsaPort *port);
87                 int disconnect (AlsaPort *port);
88                 void disconnect_all ();
89
90                 virtual void* get_buffer (pframes_t nframes) = 0;
91
92                 const LatencyRange latency_range (bool for_playback) const
93                 {
94                         return for_playback ? _playback_latency_range : _capture_latency_range;
95                 }
96
97                 void set_latency_range (const LatencyRange &latency_range, bool for_playback)
98                 {
99                         if (for_playback)
100                         {
101                                 _playback_latency_range = latency_range;
102                         }
103                         else
104                         {
105                                 _capture_latency_range = latency_range;
106                         }
107                 }
108
109         private:
110                 AlsaAudioBackend &_alsa_backend;
111                 std::string _name;
112                 const PortFlags _flags;
113                 LatencyRange _capture_latency_range;
114                 LatencyRange _playback_latency_range;
115                 std::vector<AlsaPort*> _connections;
116
117                 void _connect (AlsaPort* , bool);
118                 void _disconnect (AlsaPort* , bool);
119
120 }; // class AlsaPort
121
122 class AlsaAudioPort : public AlsaPort {
123         public:
124                 AlsaAudioPort (AlsaAudioBackend &b, const std::string&, PortFlags);
125                 ~AlsaAudioPort ();
126
127                 DataType type () const { return DataType::AUDIO; };
128
129                 Sample* buffer () { return _buffer; }
130                 const Sample* const_buffer () const { return _buffer; }
131                 void* get_buffer (pframes_t nframes);
132
133         private:
134                 Sample _buffer[8192];
135 }; // class AlsaAudioPort
136
137 class AlsaMidiPort : public AlsaPort {
138         public:
139                 AlsaMidiPort (AlsaAudioBackend &b, const std::string&, PortFlags);
140                 ~AlsaMidiPort ();
141
142                 DataType type () const { return DataType::MIDI; };
143
144                 void* get_buffer (pframes_t nframes);
145                 const AlsaMidiBuffer * const_buffer () const { return & _buffer[_bufperiod]; }
146
147                 void next_period() { if (_n_periods > 1) { get_buffer(0); _bufperiod = (_bufperiod + 1) % _n_periods; } }
148                 void set_n_periods(int n) { if (n > 0 && n < 3) { _n_periods = n; } }
149
150         private:
151                 AlsaMidiBuffer _buffer[2];
152                 int _n_periods;
153                 int _bufperiod;
154 }; // class AlsaMidiPort
155
156 class AlsaAudioBackend : public AudioBackend {
157         friend class AlsaPort;
158         public:
159                 AlsaAudioBackend (AudioEngine& e, AudioBackendInfo& info);
160                 ~AlsaAudioBackend ();
161
162                 /* AUDIOBACKEND API */
163
164                 std::string name () const;
165                 bool is_realtime () const;
166
167                 std::vector<DeviceStatus> enumerate_devices () const;
168                 std::vector<float> available_sample_rates (const std::string& device) const;
169                 std::vector<uint32_t> available_buffer_sizes (const std::string& device) const;
170                 uint32_t available_input_channel_count (const std::string& device) const;
171                 uint32_t available_output_channel_count (const std::string& device) const;
172
173                 bool can_change_sample_rate_when_running () const;
174                 bool can_change_buffer_size_when_running () const;
175
176                 int set_device_name (const std::string&);
177                 int set_sample_rate (float);
178                 int set_buffer_size (uint32_t);
179                 int set_interleaved (bool yn);
180                 int set_input_channels (uint32_t);
181                 int set_output_channels (uint32_t);
182                 int set_systemic_input_latency (uint32_t);
183                 int set_systemic_output_latency (uint32_t);
184                 int set_systemic_midi_input_latency (std::string const, uint32_t);
185                 int set_systemic_midi_output_latency (std::string const, uint32_t);
186
187                 int reset_device () { return 0; };
188
189                 /* Retrieving parameters */
190                 std::string  device_name () const;
191                 float        sample_rate () const;
192                 uint32_t     buffer_size () const;
193                 bool         interleaved () const;
194                 uint32_t     input_channels () const;
195                 uint32_t     output_channels () const;
196                 uint32_t     systemic_input_latency () const;
197                 uint32_t     systemic_output_latency () const;
198                 uint32_t     systemic_midi_input_latency (std::string const) const;
199                 uint32_t     systemic_midi_output_latency (std::string const) const;
200
201                 bool can_set_systemic_midi_latencies () const { return true; }
202
203                 /* External control app */
204                 std::string control_app_name () const { return std::string (); }
205                 void launch_control_app () {}
206
207                 /* MIDI */
208                 std::vector<std::string> enumerate_midi_options () const;
209                 int set_midi_option (const std::string&);
210                 std::string midi_option () const;
211
212                 std::vector<DeviceStatus> enumerate_midi_devices () const;
213                 int set_midi_device_enabled (std::string const, bool);
214                 bool midi_device_enabled (std::string const) const;
215
216                 /* State Control */
217         protected:
218                 int _start (bool for_latency_measurement);
219         public:
220                 int stop ();
221                 int freewheel (bool);
222                 float dsp_load () const;
223                 size_t raw_buffer_size (DataType t);
224
225                 /* Process time */
226                 framepos_t sample_time ();
227                 framepos_t sample_time_at_cycle_start ();
228                 pframes_t samples_since_cycle_start ();
229
230                 int create_process_thread (boost::function<void()> func);
231                 int join_process_threads ();
232                 bool in_process_thread ();
233                 uint32_t process_thread_count ();
234
235                 void update_latencies ();
236
237                 /* PORTENGINE API */
238
239                 void* private_handle () const;
240                 const std::string& my_name () const;
241                 bool available () const;
242                 uint32_t port_name_size () const;
243
244                 int         set_port_name (PortHandle, const std::string&);
245                 std::string get_port_name (PortHandle) const;
246                 PortHandle  get_port_by_name (const std::string&) const;
247
248                 int get_ports (const std::string& port_name_pattern, DataType type, PortFlags flags, std::vector<std::string>&) const;
249
250                 DataType port_data_type (PortHandle) const;
251
252                 PortHandle register_port (const std::string& shortname, ARDOUR::DataType, ARDOUR::PortFlags);
253                 void unregister_port (PortHandle);
254
255                 int  connect (const std::string& src, const std::string& dst);
256                 int  disconnect (const std::string& src, const std::string& dst);
257                 int  connect (PortHandle, const std::string&);
258                 int  disconnect (PortHandle, const std::string&);
259                 int  disconnect_all (PortHandle);
260
261                 bool connected (PortHandle, bool process_callback_safe);
262                 bool connected_to (PortHandle, const std::string&, bool process_callback_safe);
263                 bool physically_connected (PortHandle, bool process_callback_safe);
264                 int  get_connections (PortHandle, std::vector<std::string>&, bool process_callback_safe);
265
266                 /* MIDI */
267                 int midi_event_get (pframes_t& timestamp, size_t& size, uint8_t** buf, void* port_buffer, uint32_t event_index);
268                 int midi_event_put (void* port_buffer, pframes_t timestamp, const uint8_t* buffer, size_t size);
269                 uint32_t get_midi_event_count (void* port_buffer);
270                 void     midi_clear (void* port_buffer);
271
272                 /* Monitoring */
273
274                 bool can_monitor_input () const;
275                 int  request_input_monitoring (PortHandle, bool);
276                 int  ensure_input_monitoring (PortHandle, bool);
277                 bool monitoring_input (PortHandle);
278
279                 /* Latency management */
280
281                 void         set_latency_range (PortHandle, bool for_playback, LatencyRange);
282                 LatencyRange get_latency_range (PortHandle, bool for_playback);
283
284                 /* Discovering physical ports */
285
286                 bool      port_is_physical (PortHandle) const;
287                 void      get_physical_outputs (DataType type, std::vector<std::string>&);
288                 void      get_physical_inputs (DataType type, std::vector<std::string>&);
289                 ChanCount n_physical_outputs () const;
290                 ChanCount n_physical_inputs () const;
291
292                 /* Getting access to the data buffer for a port */
293
294                 void* get_buffer (PortHandle, pframes_t);
295
296                 void* main_process_thread ();
297
298         private:
299                 std::string _instance_name;
300                 Alsa_pcmi *_pcmi;
301
302                 bool  _run; /* keep going or stop, ardour thread */
303                 bool  _active; /* is running, process thread */
304                 bool  _freewheel;
305                 bool  _freewheeling;
306                 bool  _measure_latency;
307
308                 uint64_t _last_process_start;
309
310                 static std::vector<std::string> _midi_options;
311                 static std::vector<AudioBackend::DeviceStatus> _audio_device_status;
312                 static std::vector<AudioBackend::DeviceStatus> _midi_device_status;
313
314                 mutable std::string _audio_device;
315                 std::string _midi_driver_option;
316
317                 /* audio device reservation */
318                 ARDOUR::SystemExec *_device_reservation;
319                 PBD::ScopedConnectionList _reservation_connection;
320                 void reservation_stdout (std::string, size_t);
321                 bool acquire_device(const char* device_name);
322                 void release_device();
323                 bool _reservation_succeeded;
324
325                 /* audio settings */
326                 float  _samplerate;
327                 size_t _samples_per_period;
328                 size_t _periods_per_cycle;
329                 static size_t _max_buffer_size;
330
331                 uint32_t _n_inputs;
332                 uint32_t _n_outputs;
333
334                 uint32_t _systemic_audio_input_latency;
335                 uint32_t _systemic_audio_output_latency;
336
337                 /* midi settings */
338                 struct AlsaMidiDeviceInfo {
339                         bool     enabled;
340                         uint32_t systemic_input_latency;
341                         uint32_t systemic_output_latency;
342                         AlsaMidiDeviceInfo()
343                                 : enabled (true)
344                                 , systemic_input_latency (0)
345                                 , systemic_output_latency (0)
346                         {}
347                 };
348
349                 mutable std::map<std::string, struct AlsaMidiDeviceInfo *> _midi_devices;
350                 struct AlsaMidiDeviceInfo * midi_device_info(std::string const) const;
351
352                 /* processing */
353                 float  _dsp_load;
354                 framecnt_t _processed_samples;
355                 pthread_t _main_thread;
356
357                 /* process threads */
358                 static void* alsa_process_thread (void *);
359                 std::vector<pthread_t> _threads;
360
361                 struct ThreadData {
362                         AlsaAudioBackend* engine;
363                         boost::function<void ()> f;
364                         size_t stacksize;
365
366                         ThreadData (AlsaAudioBackend* e, boost::function<void ()> fp, size_t stacksz)
367                                 : engine (e) , f (fp) , stacksize (stacksz) {}
368                 };
369
370                 /* port engine */
371                 PortHandle add_port (const std::string& shortname, ARDOUR::DataType, ARDOUR::PortFlags);
372                 int register_system_audio_ports ();
373                 int register_system_midi_ports ();
374                 void unregister_ports (bool system_only = false);
375
376                 std::vector<AlsaPort *> _ports;
377                 std::vector<AlsaPort *> _system_inputs;
378                 std::vector<AlsaPort *> _system_outputs;
379                 std::vector<AlsaPort *> _system_midi_in;
380                 std::vector<AlsaPort *> _system_midi_out;
381
382                 std::vector<AlsaMidiOut *> _rmidi_out;
383                 std::vector<AlsaMidiIn  *> _rmidi_in;
384
385                 struct PortConnectData {
386                         std::string a;
387                         std::string b;
388                         bool c;
389
390                         PortConnectData (const std::string& a, const std::string& b, bool c)
391                                 : a (a) , b (b) , c (c) {}
392                 };
393
394                 std::vector<PortConnectData *> _port_connection_queue;
395                 pthread_mutex_t _port_callback_mutex;
396                 bool _port_change_flag;
397
398                 void port_connect_callback (const std::string& a, const std::string& b, bool conn) {
399                         pthread_mutex_lock (&_port_callback_mutex);
400                         _port_connection_queue.push_back(new PortConnectData(a, b, conn));
401                         pthread_mutex_unlock (&_port_callback_mutex);
402                 }
403
404                 void port_connect_add_remove_callback () {
405                         pthread_mutex_lock (&_port_callback_mutex);
406                         _port_change_flag = true;
407                         pthread_mutex_unlock (&_port_callback_mutex);
408                 }
409
410                 bool valid_port (PortHandle port) const {
411                         return std::find (_ports.begin (), _ports.end (), (AlsaPort*)port) != _ports.end ();
412                 }
413
414                 AlsaPort * find_port (const std::string& port_name) const {
415                         for (std::vector<AlsaPort*>::const_iterator it = _ports.begin (); it != _ports.end (); ++it) {
416                                 if ((*it)->name () == port_name) {
417                                         return *it;
418                                 }
419                         }
420                         return NULL;
421                 }
422
423 }; // class AlsaAudioBackend
424
425 } // namespace
426
427 #endif /* __libbackend_alsa_audiobackend_h__ */