5e243656ead78ba7e4b7d7025b9b0dadc19afdbe
[ardour.git] / libs / backends / coreaudio / coreaudio_backend.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_coreaudio_backend_h__
21 #define __libbackend_coreaudio_backend_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/types.h"
35
36 #include "coreaudio_pcmio.h"
37 #include "coremidi_io.h"
38
39 namespace ARDOUR {
40
41 class CoreAudioBackend;
42
43 class CoreMidiEvent {
44         public:
45                 CoreMidiEvent (const pframes_t timestamp, const uint8_t* data, size_t size);
46                 CoreMidiEvent (const CoreMidiEvent& other);
47                 ~CoreMidiEvent ();
48                 size_t size () const { return _size; };
49                 pframes_t timestamp () const { return _timestamp; };
50                 const unsigned char* const_data () const { return _data; };
51                 unsigned char* data () { return _data; };
52                 bool operator< (const CoreMidiEvent &other) const { return timestamp () < other.timestamp (); };
53         private:
54                 size_t _size;
55                 pframes_t _timestamp;
56                 uint8_t *_data;
57 };
58
59 typedef std::vector<boost::shared_ptr<CoreMidiEvent> > CoreMidiBuffer;
60
61 class CoreBackendPort {
62         protected:
63                 CoreBackendPort (CoreAudioBackend &b, const std::string&, PortFlags);
64         public:
65                 virtual ~CoreBackendPort ();
66
67                 const std::string& name () const { return _name; }
68                 PortFlags flags () const { return _flags; }
69
70                 int set_name (const std::string &name) { _name = name; return 0; }
71
72                 virtual DataType type () const = 0;
73
74                 bool is_input ()     const { return flags () & IsInput; }
75                 bool is_output ()    const { return flags () & IsOutput; }
76                 bool is_physical ()  const { return flags () & IsPhysical; }
77                 bool is_terminal ()  const { return flags () & IsTerminal; }
78                 bool is_connected () const { return _connections.size () != 0; }
79                 bool is_connected (const CoreBackendPort *port) const;
80                 bool is_physically_connected () const;
81
82                 const std::vector<CoreBackendPort *>& get_connections () const { return _connections; }
83
84                 int connect (CoreBackendPort *port);
85                 int disconnect (CoreBackendPort *port);
86                 void disconnect_all ();
87
88                 virtual void* get_buffer (pframes_t nframes) = 0;
89
90                 const LatencyRange& latency_range (bool for_playback) const
91                 {
92                         return for_playback ? _playback_latency_range : _capture_latency_range;
93                 }
94
95                 void set_latency_range (const LatencyRange &latency_range, bool for_playback)
96                 {
97                         if (for_playback)
98                         {
99                                 _playback_latency_range = latency_range;
100                         }
101                         else
102                         {
103                                 _capture_latency_range = latency_range;
104                         }
105                 }
106
107         private:
108                 CoreAudioBackend &_osx_backend;
109                 std::string _name;
110                 const PortFlags _flags;
111                 LatencyRange _capture_latency_range;
112                 LatencyRange _playback_latency_range;
113                 std::vector<CoreBackendPort*> _connections;
114
115                 void _connect (CoreBackendPort* , bool);
116                 void _disconnect (CoreBackendPort* , bool);
117
118 }; // class CoreBackendPort
119
120 class CoreAudioPort : public CoreBackendPort {
121         public:
122                 CoreAudioPort (CoreAudioBackend &b, const std::string&, PortFlags);
123                 ~CoreAudioPort ();
124
125                 DataType type () const { return DataType::AUDIO; };
126
127                 Sample* buffer () { return _buffer; }
128                 const Sample* const_buffer () const { return _buffer; }
129                 void* get_buffer (pframes_t nframes);
130
131         private:
132                 Sample _buffer[8192];
133 }; // class CoreAudioPort
134
135 class CoreMidiPort : public CoreBackendPort {
136         public:
137                 CoreMidiPort (CoreAudioBackend &b, const std::string&, PortFlags);
138                 ~CoreMidiPort ();
139
140                 DataType type () const { return DataType::MIDI; };
141
142                 void* get_buffer (pframes_t nframes);
143                 const CoreMidiBuffer * const_buffer () const { return & _buffer[_bufperiod]; }
144
145                 void next_period() { if (_n_periods > 1) { get_buffer(0); _bufperiod = (_bufperiod + 1) % _n_periods; } }
146                 void set_n_periods(int n) { if (n > 0 && n < 3) { _n_periods = n; } }
147
148         private:
149                 CoreMidiBuffer _buffer[2];
150                 int _n_periods;
151                 int _bufperiod;
152 }; // class CoreMidiPort
153
154 class CoreAudioBackend : public AudioBackend {
155         friend class CoreBackendPort;
156         public:
157                 CoreAudioBackend (AudioEngine& e, AudioBackendInfo& info);
158                 ~CoreAudioBackend ();
159
160                 /* AUDIOBACKEND API */
161
162                 std::string name () const;
163                 bool is_realtime () const;
164
165                 std::vector<DeviceStatus> enumerate_devices () const;
166                 std::vector<float> available_sample_rates (const std::string& device) const;
167                 std::vector<uint32_t> available_buffer_sizes (const std::string& device) const;
168                 uint32_t available_input_channel_count (const std::string& device) const;
169                 uint32_t available_output_channel_count (const std::string& device) const;
170
171                 bool can_change_sample_rate_when_running () const;
172                 bool can_change_buffer_size_when_running () const;
173
174                 int set_device_name (const std::string&);
175                 int set_sample_rate (float);
176                 int set_buffer_size (uint32_t);
177                 int set_interleaved (bool yn);
178                 int set_input_channels (uint32_t);
179                 int set_output_channels (uint32_t);
180                 int set_systemic_input_latency (uint32_t);
181                 int set_systemic_output_latency (uint32_t);
182                 int set_systemic_midi_input_latency (std::string const, uint32_t);
183                 int set_systemic_midi_output_latency (std::string const, uint32_t);
184
185                 int reset_device () { return 0; };
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 false; /* XXX */}
200
201                 /* External control app */
202                 std::string control_app_name () const { return std::string ("Apple"); }
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                 // really private, but needing static access:
215                 int process_callback();
216                 void error_callback();
217                 void hw_changed_callback();
218
219         protected:
220                 /* State Control */
221                 int _start (bool for_latency_measurement);
222         public:
223                 int stop ();
224                 int freewheel (bool);
225                 float dsp_load () const;
226                 size_t raw_buffer_size (DataType t);
227
228                 /* Process time */
229                 framepos_t sample_time ();
230                 framepos_t sample_time_at_cycle_start ();
231                 pframes_t samples_since_cycle_start ();
232
233                 int create_process_thread (boost::function<void()> func);
234                 int join_process_threads ();
235                 bool in_process_thread ();
236                 uint32_t process_thread_count ();
237
238                 void update_latencies ();
239
240                 /* PORTENGINE API */
241
242                 void* private_handle () const;
243                 const std::string& my_name () const;
244                 bool available () const;
245                 uint32_t port_name_size () const;
246
247                 int         set_port_name (PortHandle, const std::string&);
248                 std::string get_port_name (PortHandle) const;
249                 PortHandle  get_port_by_name (const std::string&) const;
250
251                 int get_ports (const std::string& port_name_pattern, DataType type, PortFlags flags, std::vector<std::string>&) const;
252
253                 DataType port_data_type (PortHandle) const;
254
255                 PortHandle register_port (const std::string& shortname, ARDOUR::DataType, ARDOUR::PortFlags);
256                 void unregister_port (PortHandle);
257
258                 int  connect (const std::string& src, const std::string& dst);
259                 int  disconnect (const std::string& src, const std::string& dst);
260                 int  connect (PortHandle, const std::string&);
261                 int  disconnect (PortHandle, const std::string&);
262                 int  disconnect_all (PortHandle);
263
264                 bool connected (PortHandle, bool process_callback_safe);
265                 bool connected_to (PortHandle, const std::string&, bool process_callback_safe);
266                 bool physically_connected (PortHandle, bool process_callback_safe);
267                 int  get_connections (PortHandle, std::vector<std::string>&, bool process_callback_safe);
268
269                 /* MIDI */
270                 int midi_event_get (pframes_t& timestamp, size_t& size, uint8_t** buf, void* port_buffer, uint32_t event_index);
271                 int midi_event_put (void* port_buffer, pframes_t timestamp, const uint8_t* buffer, size_t size);
272                 uint32_t get_midi_event_count (void* port_buffer);
273                 void     midi_clear (void* port_buffer);
274
275                 /* Monitoring */
276
277                 bool can_monitor_input () const;
278                 int  request_input_monitoring (PortHandle, bool);
279                 int  ensure_input_monitoring (PortHandle, bool);
280                 bool monitoring_input (PortHandle);
281
282                 /* Latency management */
283
284                 void         set_latency_range (PortHandle, bool for_playback, LatencyRange);
285                 LatencyRange get_latency_range (PortHandle, bool for_playback);
286
287                 /* Discovering physical ports */
288
289                 bool      port_is_physical (PortHandle) const;
290                 void      get_physical_outputs (DataType type, std::vector<std::string>&);
291                 void      get_physical_inputs (DataType type, std::vector<std::string>&);
292                 ChanCount n_physical_outputs () const;
293                 ChanCount n_physical_inputs () const;
294
295                 /* Getting access to the data buffer for a port */
296
297                 void* get_buffer (PortHandle, pframes_t);
298
299                 void* freewheel_thread ();
300                 void post_process ();
301                 void coremidi_rediscover ();
302
303         private:
304                 std::string _instance_name;
305                 CoreAudioPCM *_pcmio;
306                 CoreMidiIo *_midiio;
307
308                 bool  _run; /* keep going or stop, ardour thread */
309                 bool  _active_ca; /* is running, process thread */
310                 bool  _active_fw; /* is running, process thread */
311                 bool  _preinit;
312                 bool  _freewheeling;
313                 bool  _freewheel;
314                 bool  _freewheel_ack;
315                 bool  _reinit_thread_callback;
316                 bool  _measure_latency;
317                 pthread_mutex_t _process_callback_mutex;
318
319                 static std::vector<std::string> _midi_options;
320                 static std::vector<AudioBackend::DeviceStatus> _audio_device_status;
321                 static std::vector<AudioBackend::DeviceStatus> _midi_device_status;
322
323                 mutable std::string _audio_device;
324                 std::string _midi_driver_option;
325
326                 /* audio settings */
327                 float  _samplerate;
328                 size_t _samples_per_period;
329                 static size_t _max_buffer_size;
330
331                 uint32_t _n_inputs;
332                 uint32_t _n_outputs;
333
334                 uint32_t _systemic_audio_input_latency;
335                 uint32_t _systemic_audio_output_latency;
336
337                 /* coreaudio specific  */
338                 uint32_t name_to_id(std::string) const;
339
340                 /* midi settings */
341                 struct CoreMidiDeviceInfo {
342                         bool     enabled;
343                         uint32_t systemic_input_latency;
344                         uint32_t systemic_output_latency;
345                         CoreMidiDeviceInfo()
346                                 : enabled (true)
347                                 , systemic_input_latency (0)
348                                 , systemic_output_latency (0)
349                         {}
350                 };
351
352                 mutable std::map<std::string, struct CoreMidiDeviceInfo *> _midi_devices;
353                 struct CoreMidiDeviceInfo * midi_device_info(std::string const) const;
354
355                 /* processing */
356                 float  _dsp_load;
357                 uint64_t _processed_samples;
358
359                 pthread_t _main_thread;
360                 pthread_t _freeewheel_thread;
361
362                 /* process threads */
363                 static void* coreaudio_process_thread (void *);
364                 std::vector<pthread_t> _threads;
365
366                 struct ThreadData {
367                         CoreAudioBackend* engine;
368                         boost::function<void ()> f;
369                         size_t stacksize;
370
371                         ThreadData (CoreAudioBackend* e, boost::function<void ()> fp, size_t stacksz)
372                                 : engine (e) , f (fp) , stacksize (stacksz) {}
373                 };
374
375                 /* port engine */
376                 PortHandle add_port (const std::string& shortname, ARDOUR::DataType, ARDOUR::PortFlags);
377                 int register_system_audio_ports ();
378                 int register_system_midi_ports ();
379                 void unregister_ports (bool system_only = false);
380
381                 std::vector<CoreBackendPort *> _ports;
382                 std::vector<CoreBackendPort *> _system_inputs;
383                 std::vector<CoreBackendPort *> _system_outputs;
384                 std::vector<CoreBackendPort *> _system_midi_in;
385                 std::vector<CoreBackendPort *> _system_midi_out;
386
387                 struct PortConnectData {
388                         std::string a;
389                         std::string b;
390                         bool c;
391
392                         PortConnectData (const std::string& a, const std::string& b, bool c)
393                                 : a (a) , b (b) , c (c) {}
394                 };
395
396                 std::vector<PortConnectData *> _port_connection_queue;
397                 pthread_mutex_t _port_callback_mutex;
398                 bool _port_change_flag;
399
400                 void port_connect_callback (const std::string& a, const std::string& b, bool conn) {
401                         pthread_mutex_lock (&_port_callback_mutex);
402                         _port_connection_queue.push_back(new PortConnectData(a, b, conn));
403                         pthread_mutex_unlock (&_port_callback_mutex);
404                 }
405
406                 void port_connect_add_remove_callback () {
407                         pthread_mutex_lock (&_port_callback_mutex);
408                         _port_change_flag = true;
409                         pthread_mutex_unlock (&_port_callback_mutex);
410                 }
411
412                 bool valid_port (PortHandle port) const {
413                         return std::find (_ports.begin (), _ports.end (), (CoreBackendPort*)port) != _ports.end ();
414                 }
415
416                 CoreBackendPort * find_port (const std::string& port_name) const {
417                         for (std::vector<CoreBackendPort*>::const_iterator it = _ports.begin (); it != _ports.end (); ++it) {
418                                 if ((*it)->name () == port_name) {
419                                         return *it;
420                                 }
421                         }
422                         return NULL;
423                 }
424
425 }; // class CoreAudioBackend
426
427 } // namespace
428
429 #endif /* __libbackend_coreaudio_backend_h__ */