coreaudio: per-port parser for incoming MIDI, copied from ALSA Raw MIDI support
[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/dsp_load_calculator.h"
35 #include "ardour/types.h"
36
37 #include "coreaudio_pcmio.h"
38 #include "coremidi_io.h"
39
40 namespace ARDOUR {
41
42 class CoreAudioBackend;
43
44 class CoreMidiEvent {
45         public:
46                 CoreMidiEvent (const pframes_t timestamp, const uint8_t* data, size_t size);
47                 CoreMidiEvent (const CoreMidiEvent& other);
48                 ~CoreMidiEvent ();
49                 size_t size () const { return _size; };
50                 pframes_t timestamp () const { return _timestamp; };
51                 const unsigned char* const_data () const { return _data; };
52                 unsigned char* data () { return _data; };
53                 bool operator< (const CoreMidiEvent &other) const { return timestamp () < other.timestamp (); };
54         private:
55                 size_t _size;
56                 pframes_t _timestamp;
57                 uint8_t *_data;
58 };
59
60 typedef std::vector<boost::shared_ptr<CoreMidiEvent> > CoreMidiBuffer;
61
62 class CoreBackendPort {
63         protected:
64                 CoreBackendPort (CoreAudioBackend &b, const std::string&, PortFlags);
65         public:
66                 virtual ~CoreBackendPort ();
67
68                 const std::string& name () const { return _name; }
69                 const std::string& pretty_name () const { return _pretty_name; }
70                 PortFlags flags () const { return _flags; }
71
72                 int set_name (const std::string &name) { _name = name; return 0; }
73                 int set_pretty_name (const std::string &name) { _pretty_name = name; return 0; }
74
75                 virtual DataType type () const = 0;
76
77                 bool is_input ()     const { return flags () & IsInput; }
78                 bool is_output ()    const { return flags () & IsOutput; }
79                 bool is_physical ()  const { return flags () & IsPhysical; }
80                 bool is_terminal ()  const { return flags () & IsTerminal; }
81                 bool is_connected () const { return _connections.size () != 0; }
82                 bool is_connected (const CoreBackendPort *port) const;
83                 bool is_physically_connected () const;
84
85                 const std::vector<CoreBackendPort *>& get_connections () const { return _connections; }
86
87                 int connect (CoreBackendPort *port);
88                 int disconnect (CoreBackendPort *port);
89                 void disconnect_all ();
90
91                 virtual void* get_buffer (pframes_t nframes) = 0;
92
93                 const LatencyRange latency_range (bool for_playback) const
94                 {
95                         return for_playback ? _playback_latency_range : _capture_latency_range;
96                 }
97
98                 void set_latency_range (const LatencyRange &latency_range, bool for_playback)
99                 {
100                         if (for_playback)
101                         {
102                                 _playback_latency_range = latency_range;
103                         }
104                         else
105                         {
106                                 _capture_latency_range = latency_range;
107                         }
108                 }
109
110         private:
111                 CoreAudioBackend &_osx_backend;
112                 std::string _name;
113                 std::string _pretty_name;
114                 const PortFlags _flags;
115                 LatencyRange _capture_latency_range;
116                 LatencyRange _playback_latency_range;
117                 std::vector<CoreBackendPort*> _connections;
118
119                 void _connect (CoreBackendPort* , bool);
120                 void _disconnect (CoreBackendPort* , bool);
121
122 }; // class CoreBackendPort
123
124 class CoreAudioPort : public CoreBackendPort {
125         public:
126                 CoreAudioPort (CoreAudioBackend &b, const std::string&, PortFlags);
127                 ~CoreAudioPort ();
128
129                 DataType type () const { return DataType::AUDIO; };
130
131                 Sample* buffer () { return _buffer; }
132                 const Sample* const_buffer () const { return _buffer; }
133                 void* get_buffer (pframes_t nframes);
134
135         private:
136                 Sample _buffer[8192];
137 }; // class CoreAudioPort
138
139 class CoreMidiPort : public CoreBackendPort {
140         public:
141                 CoreMidiPort (CoreAudioBackend &b, const std::string&, PortFlags);
142                 ~CoreMidiPort ();
143
144                 DataType type () const { return DataType::MIDI; };
145
146                 void* get_buffer (pframes_t nframes);
147                 const CoreMidiBuffer * const_buffer () const { return & _buffer[_bufperiod]; }
148
149                 void next_period() { if (_n_periods > 1) { get_buffer(0); _bufperiod = (_bufperiod + 1) % _n_periods; } }
150                 void set_n_periods(int n) { if (n > 0 && n < 3) { _n_periods = n; } }
151
152         void parse_events (const uint64_t time, const uint8_t *data, const size_t size);
153
154         private:
155                 CoreMidiBuffer _buffer[2];
156                 int _n_periods;
157                 int _bufperiod;
158
159         int queue_event (void* port_buffer, pframes_t timestamp, const uint8_t* buffer, size_t size);
160         bool process_byte (const uint64_t, const uint8_t);
161
162         void record_byte(uint8_t byte) {
163                 if (_total_bytes < sizeof(_parser_buffer)) {
164                         _parser_buffer[_total_bytes] = byte;
165                 } else {
166                         ++_unbuffered_bytes;
167                 }
168                 ++_total_bytes;
169         }
170
171         void prepare_byte_event(const uint64_t time, const uint8_t byte) {
172                 _parser_buffer[0] = byte;
173                 _event.prepare(time, 1);
174         }
175
176         bool prepare_buffered_event(const uint64_t time) {
177                 const bool result = _unbuffered_bytes == 0;
178                 if (result) {
179                         _event.prepare(time, _total_bytes);
180                 }
181                 _total_bytes = 0;
182                 _unbuffered_bytes = 0;
183                 if (_status_byte >= 0xf0) {
184                         _expected_bytes = 0;
185                         _status_byte = 0;
186                 }
187                 return result;
188         }
189
190         struct ParserEvent {
191                 uint64_t _time;
192                 size_t _size;
193                 bool _pending;
194                 ParserEvent (const uint64_t time, const size_t size)
195                         : _time(time)
196                         , _size(size)
197                         , _pending(false) {}
198
199                 void prepare(const uint64_t time, const size_t size) {
200                         _time = time;
201                         _size = size;
202                         _pending = true;
203                 }
204         } _event;
205
206         bool    _first_time;
207         size_t  _unbuffered_bytes;
208         size_t  _total_bytes;
209         size_t  _expected_bytes;
210         uint8_t _status_byte;
211         uint8_t _parser_buffer[1024];
212
213 }; // class CoreMidiPort
214
215 class CoreAudioBackend : public AudioBackend {
216         friend class CoreBackendPort;
217         public:
218                 CoreAudioBackend (AudioEngine& e, AudioBackendInfo& info);
219                 ~CoreAudioBackend ();
220
221                 /* AUDIOBACKEND API */
222
223                 std::string name () const;
224                 bool is_realtime () const;
225
226                 bool use_separate_input_and_output_devices () const { return true; }
227                 std::vector<DeviceStatus> enumerate_devices () const;
228                 std::vector<DeviceStatus> enumerate_input_devices () const;
229                 std::vector<DeviceStatus> enumerate_output_devices () const;
230
231                 std::vector<float> available_sample_rates (const std::string& device) const;
232                 std::vector<float> available_sample_rates2 (const std::string&, const std::string&) const;
233                 std::vector<uint32_t> available_buffer_sizes (const std::string& device) const;
234                 std::vector<uint32_t> available_buffer_sizes2 (const std::string&, const std::string&) const;
235                 uint32_t available_input_channel_count (const std::string& device) const;
236                 uint32_t available_output_channel_count (const std::string& device) const;
237
238                 bool can_change_sample_rate_when_running () const;
239                 bool can_change_buffer_size_when_running () const;
240
241                 int set_device_name (const std::string&);
242                 int set_input_device_name (const std::string&);
243                 int set_output_device_name (const std::string&);
244                 int set_sample_rate (float);
245                 int set_buffer_size (uint32_t);
246                 int set_interleaved (bool yn);
247                 int set_input_channels (uint32_t);
248                 int set_output_channels (uint32_t);
249                 int set_systemic_input_latency (uint32_t);
250                 int set_systemic_output_latency (uint32_t);
251                 int set_systemic_midi_input_latency (std::string const, uint32_t) { return 0; }
252                 int set_systemic_midi_output_latency (std::string const, uint32_t) { return 0; }
253
254                 int reset_device () { return 0; };
255
256                 /* Retrieving parameters */
257                 std::string  device_name () const;
258                 std::string  input_device_name () const;
259                 std::string  output_device_name () const;
260                 float        sample_rate () const;
261                 uint32_t     buffer_size () const;
262                 bool         interleaved () const;
263                 uint32_t     input_channels () const;
264                 uint32_t     output_channels () const;
265                 uint32_t     systemic_input_latency () const;
266                 uint32_t     systemic_output_latency () const;
267                 uint32_t     systemic_midi_input_latency (std::string const) const { return 0; }
268                 uint32_t     systemic_midi_output_latency (std::string const) const { return 0; }
269
270                 bool can_set_systemic_midi_latencies () const { return false; /* XXX */}
271
272                 /* External control app */
273                 std::string control_app_name () const { return std::string ("Apple"); }
274                 void launch_control_app ();
275
276                 /* MIDI */
277                 std::vector<std::string> enumerate_midi_options () const;
278                 int set_midi_option (const std::string&);
279                 std::string midi_option () const;
280
281                 std::vector<DeviceStatus> enumerate_midi_devices () const {
282                         return std::vector<AudioBackend::DeviceStatus> ();
283                 }
284                 int set_midi_device_enabled (std::string const, bool) {
285                         return true;
286                 }
287                 bool midi_device_enabled (std::string const) const {
288                         return false;
289                 }
290
291                 // really private, but needing static access:
292                 int process_callback(uint32_t, uint64_t);
293                 void error_callback();
294                 void xrun_callback();
295                 void buffer_size_callback();
296                 void sample_rate_callback();
297                 void hw_changed_callback();
298
299         protected:
300                 /* State Control */
301                 int _start (bool for_latency_measurement);
302         public:
303                 int stop ();
304                 int freewheel (bool);
305                 float dsp_load () const;
306                 size_t raw_buffer_size (DataType t);
307
308                 /* Process time */
309                 framepos_t sample_time ();
310                 framepos_t sample_time_at_cycle_start ();
311                 pframes_t samples_since_cycle_start ();
312
313                 int create_process_thread (boost::function<void()> func);
314                 int join_process_threads ();
315                 bool in_process_thread ();
316                 uint32_t process_thread_count ();
317
318                 void update_latencies ();
319
320                 /* PORTENGINE API */
321
322                 void* private_handle () const;
323                 const std::string& my_name () const;
324                 bool available () const;
325                 uint32_t port_name_size () const;
326
327                 int         set_port_name (PortHandle, const std::string&);
328                 std::string get_port_name (PortHandle) const;
329                 PortHandle  get_port_by_name (const std::string&) const;
330                 int get_port_property (PortHandle, const std::string& key, std::string& value, std::string& type) const;
331
332                 int get_ports (const std::string& port_name_pattern, DataType type, PortFlags flags, std::vector<std::string>&) const;
333
334                 DataType port_data_type (PortHandle) const;
335
336                 PortHandle register_port (const std::string& shortname, ARDOUR::DataType, ARDOUR::PortFlags);
337                 void unregister_port (PortHandle);
338
339                 int  connect (const std::string& src, const std::string& dst);
340                 int  disconnect (const std::string& src, const std::string& dst);
341                 int  connect (PortHandle, const std::string&);
342                 int  disconnect (PortHandle, const std::string&);
343                 int  disconnect_all (PortHandle);
344
345                 bool connected (PortHandle, bool process_callback_safe);
346                 bool connected_to (PortHandle, const std::string&, bool process_callback_safe);
347                 bool physically_connected (PortHandle, bool process_callback_safe);
348                 int  get_connections (PortHandle, std::vector<std::string>&, bool process_callback_safe);
349
350                 /* MIDI */
351                 int midi_event_get (pframes_t& timestamp, size_t& size, uint8_t** buf, void* port_buffer, uint32_t event_index);
352                 int midi_event_put (void* port_buffer, pframes_t timestamp, const uint8_t* buffer, size_t size);
353
354                 uint32_t get_midi_event_count (void* port_buffer);
355                 void     midi_clear (void* port_buffer);
356
357                 /* Monitoring */
358
359                 bool can_monitor_input () const;
360                 int  request_input_monitoring (PortHandle, bool);
361                 int  ensure_input_monitoring (PortHandle, bool);
362                 bool monitoring_input (PortHandle);
363
364                 /* Latency management */
365
366                 void         set_latency_range (PortHandle, bool for_playback, LatencyRange);
367                 LatencyRange get_latency_range (PortHandle, bool for_playback);
368
369                 /* Discovering physical ports */
370
371                 bool      port_is_physical (PortHandle) const;
372                 void      get_physical_outputs (DataType type, std::vector<std::string>&);
373                 void      get_physical_inputs (DataType type, std::vector<std::string>&);
374                 ChanCount n_physical_outputs () const;
375                 ChanCount n_physical_inputs () const;
376
377                 /* Getting access to the data buffer for a port */
378
379                 void* get_buffer (PortHandle, pframes_t);
380
381                 void* freewheel_thread ();
382                 void pre_process ();
383                 void coremidi_rediscover ();
384
385         private:
386                 std::string _instance_name;
387                 CoreAudioPCM *_pcmio;
388                 CoreMidiIo *_midiio;
389
390                 bool  _run; /* keep going or stop, ardour thread */
391                 bool  _active_ca; /* is running, process thread */
392                 bool  _active_fw; /* is running, process thread */
393                 bool  _preinit;
394                 bool  _freewheeling;
395                 bool  _freewheel;
396                 bool  _freewheel_ack;
397                 bool  _reinit_thread_callback;
398                 bool  _measure_latency;
399
400                 uint64_t _last_process_start;
401
402                 pthread_mutex_t _process_callback_mutex;
403
404                 pthread_mutex_t _freewheel_mutex;
405                 pthread_cond_t  _freewheel_signal;
406
407                 static std::vector<std::string> _midi_options;
408                 static std::vector<AudioBackend::DeviceStatus> _input_audio_device_status;
409                 static std::vector<AudioBackend::DeviceStatus> _output_audio_device_status;
410                 static std::vector<AudioBackend::DeviceStatus> _duplex_audio_device_status;
411                 static std::vector<AudioBackend::DeviceStatus> _midi_device_status;
412
413                 mutable std::string _input_audio_device;
414                 mutable std::string _output_audio_device;
415                 std::string _midi_driver_option;
416
417                 /* audio settings */
418                 float  _samplerate;
419                 size_t _samples_per_period;
420                 static size_t _max_buffer_size;
421
422                 uint32_t _n_inputs;
423                 uint32_t _n_outputs;
424
425                 uint32_t _systemic_audio_input_latency;
426                 uint32_t _systemic_audio_output_latency;
427
428                 /* coreaudio specific  */
429                 uint32_t name_to_id(std::string) const;
430
431                 /* processing */
432                 float  _dsp_load;
433                 ARDOUR::DSPLoadCalculator  _dsp_load_calc;
434                 uint64_t _processed_samples;
435
436                 pthread_t _main_thread;
437                 pthread_t _freeewheel_thread;
438
439                 /* process threads */
440                 static void* coreaudio_process_thread (void *);
441                 std::vector<pthread_t> _threads;
442
443                 struct ThreadData {
444                         CoreAudioBackend* engine;
445                         boost::function<void ()> f;
446                         size_t stacksize;
447
448                         ThreadData (CoreAudioBackend* e, boost::function<void ()> fp, size_t stacksz)
449                                 : engine (e) , f (fp) , stacksize (stacksz) {}
450                 };
451
452                 /* port engine */
453                 PortHandle add_port (const std::string& shortname, ARDOUR::DataType, ARDOUR::PortFlags);
454                 int register_system_audio_ports ();
455                 void unregister_ports (bool system_only = false);
456
457                 std::vector<CoreBackendPort *> _ports;
458                 std::vector<CoreBackendPort *> _system_inputs;
459                 std::vector<CoreBackendPort *> _system_outputs;
460                 std::vector<CoreBackendPort *> _system_midi_in;
461                 std::vector<CoreBackendPort *> _system_midi_out;
462
463                 struct PortConnectData {
464                         std::string a;
465                         std::string b;
466                         bool c;
467
468                         PortConnectData (const std::string& a, const std::string& b, bool c)
469                                 : a (a) , b (b) , c (c) {}
470                 };
471
472                 std::vector<PortConnectData *> _port_connection_queue;
473                 pthread_mutex_t _port_callback_mutex;
474                 bool _port_change_flag;
475
476                 void port_connect_callback (const std::string& a, const std::string& b, bool conn) {
477                         pthread_mutex_lock (&_port_callback_mutex);
478                         _port_connection_queue.push_back(new PortConnectData(a, b, conn));
479                         pthread_mutex_unlock (&_port_callback_mutex);
480                 }
481
482                 void port_connect_add_remove_callback () {
483                         pthread_mutex_lock (&_port_callback_mutex);
484                         _port_change_flag = true;
485                         pthread_mutex_unlock (&_port_callback_mutex);
486                 }
487
488                 bool valid_port (PortHandle port) const {
489                         return std::find (_ports.begin (), _ports.end (), (CoreBackendPort*)port) != _ports.end ();
490                 }
491
492                 CoreBackendPort * find_port (const std::string& port_name) const {
493                         for (std::vector<CoreBackendPort*>::const_iterator it = _ports.begin (); it != _ports.end (); ++it) {
494                                 if ((*it)->name () == port_name) {
495                                         return *it;
496                                 }
497                         }
498                         return NULL;
499                 }
500
501                 CoreBackendPort * find_port_in (std::vector<CoreBackendPort *> plist, const std::string& port_name) const {
502                         for (std::vector<CoreBackendPort*>::const_iterator it = plist.begin (); it != plist.end (); ++it) {
503                                 if ((*it)->name () == port_name) {
504                                         return *it;
505                                 }
506                         }
507                         return NULL;
508                 }
509
510 }; // class CoreAudioBackend
511
512 } // namespace
513
514 #endif /* __libbackend_coreaudio_backend_h__ */