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