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