implement ALSA period/cycle setting
[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/dsp_load_calculator.h"
35 #include "ardour/system_exec.h"
36 #include "ardour/types.h"
37
38 #include "ardouralsautil/deviceinfo.h"
39
40 #include "zita-alsa-pcmi.h"
41 #include "alsa_rawmidi.h"
42 #include "alsa_sequencer.h"
43
44 namespace ARDOUR {
45
46 class AlsaAudioBackend;
47
48 class AlsaMidiEvent {
49         public:
50                 AlsaMidiEvent (const pframes_t timestamp, const uint8_t* data, size_t size);
51                 AlsaMidiEvent (const AlsaMidiEvent& other);
52                 ~AlsaMidiEvent ();
53                 size_t size () const { return _size; };
54                 pframes_t timestamp () const { return _timestamp; };
55                 const unsigned char* const_data () const { return _data; };
56                 unsigned char* data () { return _data; };
57                 bool operator< (const AlsaMidiEvent &other) const { return timestamp () < other.timestamp (); };
58         private:
59                 size_t _size;
60                 pframes_t _timestamp;
61                 uint8_t *_data;
62 };
63
64 typedef std::vector<boost::shared_ptr<AlsaMidiEvent> > AlsaMidiBuffer;
65
66 class AlsaPort {
67         protected:
68                 AlsaPort (AlsaAudioBackend &b, const std::string&, PortFlags);
69         public:
70                 virtual ~AlsaPort ();
71
72                 const std::string& name () const { return _name; }
73                 PortFlags flags () const { return _flags; }
74
75                 int set_name (const std::string &name) { _name = name; return 0; }
76
77                 virtual DataType type () const = 0;
78
79                 bool is_input ()     const { return flags () & IsInput; }
80                 bool is_output ()    const { return flags () & IsOutput; }
81                 bool is_physical ()  const { return flags () & IsPhysical; }
82                 bool is_terminal ()  const { return flags () & IsTerminal; }
83                 bool is_connected () const { return _connections.size () != 0; }
84                 bool is_connected (const AlsaPort *port) const;
85                 bool is_physically_connected () const;
86
87                 const std::vector<AlsaPort *>& get_connections () const { return _connections; }
88
89                 int connect (AlsaPort *port);
90                 int disconnect (AlsaPort *port);
91                 void disconnect_all ();
92
93                 virtual void* get_buffer (pframes_t nframes) = 0;
94
95                 const LatencyRange latency_range (bool for_playback) const
96                 {
97                         return for_playback ? _playback_latency_range : _capture_latency_range;
98                 }
99
100                 void set_latency_range (const LatencyRange &latency_range, bool for_playback)
101                 {
102                         if (for_playback)
103                         {
104                                 _playback_latency_range = latency_range;
105                         }
106                         else
107                         {
108                                 _capture_latency_range = latency_range;
109                         }
110                 }
111
112         private:
113                 AlsaAudioBackend &_alsa_backend;
114                 std::string _name;
115                 const PortFlags _flags;
116                 LatencyRange _capture_latency_range;
117                 LatencyRange _playback_latency_range;
118                 std::vector<AlsaPort*> _connections;
119
120                 void _connect (AlsaPort* , bool);
121                 void _disconnect (AlsaPort* , bool);
122
123 }; // class AlsaPort
124
125 class AlsaAudioPort : public AlsaPort {
126         public:
127                 AlsaAudioPort (AlsaAudioBackend &b, const std::string&, PortFlags);
128                 ~AlsaAudioPort ();
129
130                 DataType type () const { return DataType::AUDIO; };
131
132                 Sample* buffer () { return _buffer; }
133                 const Sample* const_buffer () const { return _buffer; }
134                 void* get_buffer (pframes_t nframes);
135
136         private:
137                 Sample _buffer[8192];
138 }; // class AlsaAudioPort
139
140 class AlsaMidiPort : public AlsaPort {
141         public:
142                 AlsaMidiPort (AlsaAudioBackend &b, const std::string&, PortFlags);
143                 ~AlsaMidiPort ();
144
145                 DataType type () const { return DataType::MIDI; };
146
147                 void* get_buffer (pframes_t nframes);
148                 const AlsaMidiBuffer * const_buffer () const { return & _buffer[_bufperiod]; }
149
150                 void next_period() { if (_n_periods > 1) { get_buffer(0); _bufperiod = (_bufperiod + 1) % _n_periods; } }
151                 void set_n_periods(int n) { if (n > 0 && n < 4) { _n_periods = n; } }
152
153         private:
154                 AlsaMidiBuffer _buffer[3];
155                 int _n_periods;
156                 int _bufperiod;
157 }; // class AlsaMidiPort
158
159 class AlsaAudioBackend : public AudioBackend {
160         friend class AlsaPort;
161         public:
162                 AlsaAudioBackend (AudioEngine& e, AudioBackendInfo& info);
163                 ~AlsaAudioBackend ();
164
165                 /* AUDIOBACKEND API */
166
167                 std::string name () const;
168                 bool is_realtime () const;
169
170                 bool use_separate_input_and_output_devices () const { return true; }
171                 bool can_set_period_size () const { return true; }
172
173                 std::vector<DeviceStatus> enumerate_devices () const;
174                 std::vector<DeviceStatus> enumerate_input_devices () const;
175                 std::vector<DeviceStatus> enumerate_output_devices () const;
176                 std::vector<float> available_sample_rates (const std::string& device) const;
177                 std::vector<float> available_sample_rates2 (const std::string&, const std::string&) const;
178                 std::vector<uint32_t> available_buffer_sizes (const std::string& device) const;
179                 std::vector<uint32_t> available_buffer_sizes2 (const std::string&, const std::string&) const;
180                 std::vector<uint32_t> available_period_sizes (const std::string& driver) const;
181                 uint32_t available_input_channel_count (const std::string& device) const;
182                 uint32_t available_output_channel_count (const std::string& device) const;
183
184                 bool can_change_sample_rate_when_running () const;
185                 bool can_change_buffer_size_when_running () const;
186
187                 int set_device_name (const std::string&);
188                 int set_input_device_name (const std::string&);
189                 int set_output_device_name (const std::string&);
190                 int set_sample_rate (float);
191                 int set_buffer_size (uint32_t);
192                 int set_peridod_size (uint32_t);
193                 int set_interleaved (bool yn);
194                 int set_input_channels (uint32_t);
195                 int set_output_channels (uint32_t);
196                 int set_systemic_input_latency (uint32_t);
197                 int set_systemic_output_latency (uint32_t);
198                 int set_systemic_midi_input_latency (std::string const, uint32_t);
199                 int set_systemic_midi_output_latency (std::string const, uint32_t);
200
201                 int reset_device () { return 0; };
202
203                 /* Retrieving parameters */
204                 std::string  device_name () const;
205                 std::string  input_device_name () const;
206                 std::string  output_device_name () const;
207                 float        sample_rate () const;
208                 uint32_t     buffer_size () const;
209                 uint32_t     period_size () const;
210                 bool         interleaved () const;
211                 uint32_t     input_channels () const;
212                 uint32_t     output_channels () const;
213                 uint32_t     systemic_input_latency () const;
214                 uint32_t     systemic_output_latency () const;
215                 uint32_t     systemic_midi_input_latency (std::string const) const;
216                 uint32_t     systemic_midi_output_latency (std::string const) const;
217
218                 bool can_set_systemic_midi_latencies () const { return true; }
219
220                 /* External control app */
221                 std::string control_app_name () const { return std::string (); }
222                 void launch_control_app () {}
223
224                 /* MIDI */
225                 std::vector<std::string> enumerate_midi_options () const;
226                 int set_midi_option (const std::string&);
227                 std::string midi_option () const;
228
229                 std::vector<DeviceStatus> enumerate_midi_devices () const;
230                 int set_midi_device_enabled (std::string const, bool);
231                 bool midi_device_enabled (std::string const) const;
232
233                 /* State Control */
234         protected:
235                 int _start (bool for_latency_measurement);
236         public:
237                 int stop ();
238                 int freewheel (bool);
239                 float dsp_load () const;
240                 size_t raw_buffer_size (DataType t);
241
242                 /* Process time */
243                 framepos_t sample_time ();
244                 framepos_t sample_time_at_cycle_start ();
245                 pframes_t samples_since_cycle_start ();
246
247                 int create_process_thread (boost::function<void()> func);
248                 int join_process_threads ();
249                 bool in_process_thread ();
250                 uint32_t process_thread_count ();
251
252                 void update_latencies ();
253
254                 /* PORTENGINE API */
255
256                 void* private_handle () const;
257                 const std::string& my_name () const;
258                 bool available () const;
259                 uint32_t port_name_size () const;
260
261                 int         set_port_name (PortHandle, const std::string&);
262                 std::string get_port_name (PortHandle) const;
263                 PortHandle  get_port_by_name (const std::string&) const;
264
265                 int get_ports (const std::string& port_name_pattern, DataType type, PortFlags flags, std::vector<std::string>&) const;
266
267                 DataType port_data_type (PortHandle) const;
268
269                 PortHandle register_port (const std::string& shortname, ARDOUR::DataType, ARDOUR::PortFlags);
270                 void unregister_port (PortHandle);
271
272                 int  connect (const std::string& src, const std::string& dst);
273                 int  disconnect (const std::string& src, const std::string& dst);
274                 int  connect (PortHandle, const std::string&);
275                 int  disconnect (PortHandle, const std::string&);
276                 int  disconnect_all (PortHandle);
277
278                 bool connected (PortHandle, bool process_callback_safe);
279                 bool connected_to (PortHandle, const std::string&, bool process_callback_safe);
280                 bool physically_connected (PortHandle, bool process_callback_safe);
281                 int  get_connections (PortHandle, std::vector<std::string>&, bool process_callback_safe);
282
283                 /* MIDI */
284                 int midi_event_get (pframes_t& timestamp, size_t& size, uint8_t** buf, void* port_buffer, uint32_t event_index);
285                 int midi_event_put (void* port_buffer, pframes_t timestamp, const uint8_t* buffer, size_t size);
286                 uint32_t get_midi_event_count (void* port_buffer);
287                 void     midi_clear (void* port_buffer);
288
289                 /* Monitoring */
290
291                 bool can_monitor_input () const;
292                 int  request_input_monitoring (PortHandle, bool);
293                 int  ensure_input_monitoring (PortHandle, bool);
294                 bool monitoring_input (PortHandle);
295
296                 /* Latency management */
297
298                 void         set_latency_range (PortHandle, bool for_playback, LatencyRange);
299                 LatencyRange get_latency_range (PortHandle, bool for_playback);
300
301                 /* Discovering physical ports */
302
303                 bool      port_is_physical (PortHandle) const;
304                 void      get_physical_outputs (DataType type, std::vector<std::string>&);
305                 void      get_physical_inputs (DataType type, std::vector<std::string>&);
306                 ChanCount n_physical_outputs () const;
307                 ChanCount n_physical_inputs () const;
308
309                 /* Getting access to the data buffer for a port */
310
311                 void* get_buffer (PortHandle, pframes_t);
312
313                 void* main_process_thread ();
314
315         private:
316                 std::string _instance_name;
317                 Alsa_pcmi *_pcmi;
318
319                 bool  _run; /* keep going or stop, ardour thread */
320                 bool  _active; /* is running, process thread */
321                 bool  _freewheel;
322                 bool  _freewheeling;
323                 bool  _measure_latency;
324
325                 uint64_t _last_process_start;
326
327                 static std::vector<std::string> _midi_options;
328                 static std::vector<AudioBackend::DeviceStatus> _input_audio_device_status;
329                 static std::vector<AudioBackend::DeviceStatus> _output_audio_device_status;
330                 static std::vector<AudioBackend::DeviceStatus> _duplex_audio_device_status;
331                 static std::vector<AudioBackend::DeviceStatus> _midi_device_status;
332                 static ARDOUR::ALSADeviceInfo _input_audio_device_info;
333                 static ARDOUR::ALSADeviceInfo _output_audio_device_info;
334
335                 mutable std::string _input_audio_device;
336                 mutable std::string _output_audio_device;
337                 std::string _midi_driver_option;
338
339                 /* audio device reservation */
340                 ARDOUR::SystemExec *_device_reservation;
341                 PBD::ScopedConnectionList _reservation_connection;
342                 void reservation_stdout (std::string, size_t);
343                 bool acquire_device(const char* device_name);
344                 void release_device();
345                 bool _reservation_succeeded;
346
347                 /* audio settings */
348                 float  _samplerate;
349                 size_t _samples_per_period;
350                 size_t _periods_per_cycle;
351                 static size_t _max_buffer_size;
352
353                 uint32_t _n_inputs;
354                 uint32_t _n_outputs;
355
356                 uint32_t _systemic_audio_input_latency;
357                 uint32_t _systemic_audio_output_latency;
358
359                 /* midi settings */
360                 struct AlsaMidiDeviceInfo {
361                         bool     enabled;
362                         uint32_t systemic_input_latency;
363                         uint32_t systemic_output_latency;
364                         AlsaMidiDeviceInfo()
365                                 : enabled (true)
366                                 , systemic_input_latency (0)
367                                 , systemic_output_latency (0)
368                         {}
369                 };
370
371                 mutable std::map<std::string, struct AlsaMidiDeviceInfo *> _midi_devices;
372                 struct AlsaMidiDeviceInfo * midi_device_info(std::string const) const;
373
374                 /* processing */
375                 float  _dsp_load;
376                 ARDOUR::DSPLoadCalculator  _dsp_load_calc;
377                 framecnt_t _processed_samples;
378                 pthread_t _main_thread;
379
380                 /* process threads */
381                 static void* alsa_process_thread (void *);
382                 std::vector<pthread_t> _threads;
383
384                 struct ThreadData {
385                         AlsaAudioBackend* engine;
386                         boost::function<void ()> f;
387                         size_t stacksize;
388
389                         ThreadData (AlsaAudioBackend* e, boost::function<void ()> fp, size_t stacksz)
390                                 : engine (e) , f (fp) , stacksize (stacksz) {}
391                 };
392
393                 /* port engine */
394                 PortHandle add_port (const std::string& shortname, ARDOUR::DataType, ARDOUR::PortFlags);
395                 int register_system_audio_ports ();
396                 int register_system_midi_ports ();
397                 void unregister_ports (bool system_only = false);
398
399                 std::vector<AlsaPort *> _ports;
400                 std::vector<AlsaPort *> _system_inputs;
401                 std::vector<AlsaPort *> _system_outputs;
402                 std::vector<AlsaPort *> _system_midi_in;
403                 std::vector<AlsaPort *> _system_midi_out;
404
405                 std::vector<AlsaMidiOut *> _rmidi_out;
406                 std::vector<AlsaMidiIn  *> _rmidi_in;
407
408                 struct PortConnectData {
409                         std::string a;
410                         std::string b;
411                         bool c;
412
413                         PortConnectData (const std::string& a, const std::string& b, bool c)
414                                 : a (a) , b (b) , c (c) {}
415                 };
416
417                 std::vector<PortConnectData *> _port_connection_queue;
418                 pthread_mutex_t _port_callback_mutex;
419                 bool _port_change_flag;
420
421                 void port_connect_callback (const std::string& a, const std::string& b, bool conn) {
422                         pthread_mutex_lock (&_port_callback_mutex);
423                         _port_connection_queue.push_back(new PortConnectData(a, b, conn));
424                         pthread_mutex_unlock (&_port_callback_mutex);
425                 }
426
427                 void port_connect_add_remove_callback () {
428                         pthread_mutex_lock (&_port_callback_mutex);
429                         _port_change_flag = true;
430                         pthread_mutex_unlock (&_port_callback_mutex);
431                 }
432
433                 bool valid_port (PortHandle port) const {
434                         return std::find (_ports.begin (), _ports.end (), (AlsaPort*)port) != _ports.end ();
435                 }
436
437                 AlsaPort * find_port (const std::string& port_name) const {
438                         for (std::vector<AlsaPort*>::const_iterator it = _ports.begin (); it != _ports.end (); ++it) {
439                                 if ((*it)->name () == port_name) {
440                                         return *it;
441                                 }
442                         }
443                         return NULL;
444                 }
445
446 }; // class AlsaAudioBackend
447
448 } // namespace
449
450 #endif /* __libbackend_alsa_audiobackend_h__ */