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