correct name of Midi-UI thread memory-pool and request-queue
[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                 bool can_change_systemic_latency_when_running () const { return true; }
188
189                 int set_device_name (const std::string&);
190                 int set_input_device_name (const std::string&);
191                 int set_output_device_name (const std::string&);
192                 int set_sample_rate (float);
193                 int set_buffer_size (uint32_t);
194                 int set_peridod_size (uint32_t);
195                 int set_interleaved (bool yn);
196                 int set_input_channels (uint32_t);
197                 int set_output_channels (uint32_t);
198                 int set_systemic_input_latency (uint32_t);
199                 int set_systemic_output_latency (uint32_t);
200                 int set_systemic_midi_input_latency (std::string const, uint32_t);
201                 int set_systemic_midi_output_latency (std::string const, uint32_t);
202
203                 int reset_device () { return 0; };
204
205                 /* Retrieving parameters */
206                 std::string  device_name () const;
207                 std::string  input_device_name () const;
208                 std::string  output_device_name () const;
209                 float        sample_rate () const;
210                 uint32_t     buffer_size () const;
211                 uint32_t     period_size () const;
212                 bool         interleaved () const;
213                 uint32_t     input_channels () const;
214                 uint32_t     output_channels () const;
215                 uint32_t     systemic_input_latency () const;
216                 uint32_t     systemic_output_latency () const;
217                 uint32_t     systemic_midi_input_latency (std::string const) const;
218                 uint32_t     systemic_midi_output_latency (std::string const) const;
219
220                 bool can_set_systemic_midi_latencies () const { return true; }
221
222                 /* External control app */
223                 std::string control_app_name () const { return std::string (); }
224                 void launch_control_app () {}
225
226                 /* MIDI */
227                 std::vector<std::string> enumerate_midi_options () const;
228                 int set_midi_option (const std::string&);
229                 std::string midi_option () const;
230
231                 std::vector<DeviceStatus> enumerate_midi_devices () const;
232                 int set_midi_device_enabled (std::string const, bool);
233                 bool midi_device_enabled (std::string const) const;
234
235                 /* State Control */
236         protected:
237                 int _start (bool for_latency_measurement);
238         public:
239                 int stop ();
240                 int freewheel (bool);
241                 float dsp_load () const;
242                 size_t raw_buffer_size (DataType t);
243
244                 /* Process time */
245                 framepos_t sample_time ();
246                 framepos_t sample_time_at_cycle_start ();
247                 pframes_t samples_since_cycle_start ();
248
249                 int create_process_thread (boost::function<void()> func);
250                 int join_process_threads ();
251                 bool in_process_thread ();
252                 uint32_t process_thread_count ();
253
254                 void update_latencies ();
255
256                 /* PORTENGINE API */
257
258                 void* private_handle () const;
259                 const std::string& my_name () const;
260                 bool available () const;
261                 uint32_t port_name_size () const;
262
263                 int         set_port_name (PortHandle, const std::string&);
264                 std::string get_port_name (PortHandle) const;
265                 PortHandle  get_port_by_name (const std::string&) const;
266
267                 int get_ports (const std::string& port_name_pattern, DataType type, PortFlags flags, std::vector<std::string>&) const;
268
269                 DataType port_data_type (PortHandle) const;
270
271                 PortHandle register_port (const std::string& shortname, ARDOUR::DataType, ARDOUR::PortFlags);
272                 void unregister_port (PortHandle);
273
274                 int  connect (const std::string& src, const std::string& dst);
275                 int  disconnect (const std::string& src, const std::string& dst);
276                 int  connect (PortHandle, const std::string&);
277                 int  disconnect (PortHandle, const std::string&);
278                 int  disconnect_all (PortHandle);
279
280                 bool connected (PortHandle, bool process_callback_safe);
281                 bool connected_to (PortHandle, const std::string&, bool process_callback_safe);
282                 bool physically_connected (PortHandle, bool process_callback_safe);
283                 int  get_connections (PortHandle, std::vector<std::string>&, bool process_callback_safe);
284
285                 /* MIDI */
286                 int midi_event_get (pframes_t& timestamp, size_t& size, uint8_t** buf, void* port_buffer, uint32_t event_index);
287                 int midi_event_put (void* port_buffer, pframes_t timestamp, const uint8_t* buffer, size_t size);
288                 uint32_t get_midi_event_count (void* port_buffer);
289                 void     midi_clear (void* port_buffer);
290
291                 /* Monitoring */
292
293                 bool can_monitor_input () const;
294                 int  request_input_monitoring (PortHandle, bool);
295                 int  ensure_input_monitoring (PortHandle, bool);
296                 bool monitoring_input (PortHandle);
297
298                 /* Latency management */
299
300                 void         set_latency_range (PortHandle, bool for_playback, LatencyRange);
301                 LatencyRange get_latency_range (PortHandle, bool for_playback);
302
303                 /* Discovering physical ports */
304
305                 bool      port_is_physical (PortHandle) const;
306                 void      get_physical_outputs (DataType type, std::vector<std::string>&);
307                 void      get_physical_inputs (DataType type, std::vector<std::string>&);
308                 ChanCount n_physical_outputs () const;
309                 ChanCount n_physical_inputs () const;
310
311                 /* Getting access to the data buffer for a port */
312
313                 void* get_buffer (PortHandle, pframes_t);
314
315                 void* main_process_thread ();
316
317         private:
318                 std::string _instance_name;
319                 Alsa_pcmi *_pcmi;
320
321                 bool  _run; /* keep going or stop, ardour thread */
322                 bool  _active; /* is running, process thread */
323                 bool  _freewheel;
324                 bool  _freewheeling;
325                 bool  _measure_latency;
326
327                 uint64_t _last_process_start;
328
329                 static std::vector<std::string> _midi_options;
330                 static std::vector<AudioBackend::DeviceStatus> _input_audio_device_status;
331                 static std::vector<AudioBackend::DeviceStatus> _output_audio_device_status;
332                 static std::vector<AudioBackend::DeviceStatus> _duplex_audio_device_status;
333                 static std::vector<AudioBackend::DeviceStatus> _midi_device_status;
334                 static ARDOUR::ALSADeviceInfo _input_audio_device_info;
335                 static ARDOUR::ALSADeviceInfo _output_audio_device_info;
336
337                 mutable std::string _input_audio_device;
338                 mutable std::string _output_audio_device;
339                 std::string _midi_driver_option;
340
341                 /* audio device reservation */
342                 ARDOUR::SystemExec *_device_reservation;
343                 PBD::ScopedConnectionList _reservation_connection;
344                 void reservation_stdout (std::string, size_t);
345                 bool acquire_device(const char* device_name);
346                 void release_device();
347                 bool _reservation_succeeded;
348
349                 /* audio settings */
350                 float  _samplerate;
351                 size_t _samples_per_period;
352                 size_t _periods_per_cycle;
353                 static size_t _max_buffer_size;
354
355                 uint32_t _n_inputs;
356                 uint32_t _n_outputs;
357
358                 uint32_t _systemic_audio_input_latency;
359                 uint32_t _systemic_audio_output_latency;
360
361                 /* midi settings */
362                 struct AlsaMidiDeviceInfo {
363                         bool     enabled;
364                         uint32_t systemic_input_latency;
365                         uint32_t systemic_output_latency;
366                         AlsaMidiDeviceInfo()
367                                 : enabled (true)
368                                 , systemic_input_latency (0)
369                                 , systemic_output_latency (0)
370                         {}
371                 };
372
373                 mutable std::map<std::string, struct AlsaMidiDeviceInfo *> _midi_devices;
374                 struct AlsaMidiDeviceInfo * midi_device_info(std::string const) const;
375
376                 /* processing */
377                 float  _dsp_load;
378                 ARDOUR::DSPLoadCalculator  _dsp_load_calc;
379                 framecnt_t _processed_samples;
380                 pthread_t _main_thread;
381
382                 /* process threads */
383                 static void* alsa_process_thread (void *);
384                 std::vector<pthread_t> _threads;
385
386                 struct ThreadData {
387                         AlsaAudioBackend* engine;
388                         boost::function<void ()> f;
389                         size_t stacksize;
390
391                         ThreadData (AlsaAudioBackend* e, boost::function<void ()> fp, size_t stacksz)
392                                 : engine (e) , f (fp) , stacksize (stacksz) {}
393                 };
394
395                 /* port engine */
396                 PortHandle add_port (const std::string& shortname, ARDOUR::DataType, ARDOUR::PortFlags);
397                 int register_system_audio_ports ();
398                 int register_system_midi_ports (const std::string device = "");
399                 void unregister_ports (bool system_only = false);
400
401                 std::vector<AlsaPort *> _ports;
402                 std::vector<AlsaPort *> _system_inputs;
403                 std::vector<AlsaPort *> _system_outputs;
404                 std::vector<AlsaPort *> _system_midi_in;
405                 std::vector<AlsaPort *> _system_midi_out;
406
407                 std::vector<AlsaMidiOut *> _rmidi_out;
408                 std::vector<AlsaMidiIn  *> _rmidi_in;
409
410                 unsigned _midi_ins;
411                 unsigned _midi_outs;
412
413                 struct PortConnectData {
414                         std::string a;
415                         std::string b;
416                         bool c;
417
418                         PortConnectData (const std::string& a, const std::string& b, bool c)
419                                 : a (a) , b (b) , c (c) {}
420                 };
421
422                 std::vector<PortConnectData *> _port_connection_queue;
423                 pthread_mutex_t _port_callback_mutex;
424                 bool _port_change_flag;
425
426                 void port_connect_callback (const std::string& a, const std::string& b, bool conn) {
427                         pthread_mutex_lock (&_port_callback_mutex);
428                         _port_connection_queue.push_back(new PortConnectData(a, b, conn));
429                         pthread_mutex_unlock (&_port_callback_mutex);
430                 }
431
432                 void port_connect_add_remove_callback () {
433                         pthread_mutex_lock (&_port_callback_mutex);
434                         _port_change_flag = true;
435                         pthread_mutex_unlock (&_port_callback_mutex);
436                 }
437
438                 bool valid_port (PortHandle port) const {
439                         return std::find (_ports.begin (), _ports.end (), (AlsaPort*)port) != _ports.end ();
440                 }
441
442                 AlsaPort * find_port (const std::string& port_name) const {
443                         for (std::vector<AlsaPort*>::const_iterator it = _ports.begin (); it != _ports.end (); ++it) {
444                                 if ((*it)->name () == port_name) {
445                                         return *it;
446                                 }
447                         }
448                         return NULL;
449                 }
450
451                 void update_systemic_audio_latencies ();
452                 void update_systemic_midi_latencies ();
453
454 }; // class AlsaAudioBackend
455
456 } // namespace
457
458 #endif /* __libbackend_alsa_audiobackend_h__ */