dummy-backend, fix physical ports in/out convention.
[ardour.git] / libs / backends / dummy / dummy_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_dummy_audiobackend_h__
21 #define __libbackend_dummy_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/types.h"
34 #include "ardour/audio_backend.h"
35
36 namespace ARDOUR {
37
38 class DummyAudioBackend;
39
40 class DummyMidiEvent {
41         public:
42                 DummyMidiEvent (const pframes_t timestamp, const uint8_t* data, size_t size);
43                 DummyMidiEvent (const DummyMidiEvent& other);
44                 ~DummyMidiEvent ();
45                 size_t size () const { return _size; };
46                 pframes_t timestamp () const { return _timestamp; };
47                 const unsigned char* const_data () const { return _data; };
48                 unsigned char* data () { return _data; };
49                 bool operator< (const DummyMidiEvent &other) const { return timestamp () < other.timestamp (); };
50         private:
51                 size_t _size;
52                 pframes_t _timestamp;
53                 uint8_t *_data;
54 };
55
56 typedef std::vector<boost::shared_ptr<DummyMidiEvent> > DummyMidiBuffer;
57
58 class DummyPort {
59         protected:
60                 DummyPort (DummyAudioBackend &b, const std::string&, PortFlags);
61         public:
62                 virtual ~DummyPort ();
63
64                 const std::string& name () const { return _name; }
65                 PortFlags flags () const { return _flags; }
66
67                 int set_name (const std::string &name) { _name = name; return 0; }
68
69                 virtual DataType type () const = 0;
70
71                 bool is_input ()     const { return flags () & IsInput; }
72                 bool is_output ()    const { return flags () & IsOutput; }
73                 bool is_physical ()  const { return flags () & IsPhysical; }
74                 bool is_terminal ()  const { return flags () & IsTerminal; }
75                 bool is_connected () const { return _connections.size () != 0; }
76                 bool is_connected (const DummyPort *port) const;
77                 bool is_physically_connected () const;
78
79                 const std::vector<DummyPort *>& get_connections () const { return _connections; }
80
81                 int connect (DummyPort *port);
82                 int disconnect (DummyPort *port);
83                 void disconnect_all ();
84
85                 virtual void* get_buffer (pframes_t nframes) = 0;
86
87                 const LatencyRange& latency_range (bool for_playback) const
88                 {
89                         return for_playback ? _playback_latency_range : _capture_latency_range;
90                 }
91
92                 void set_latency_range (const LatencyRange &latency_range, bool for_playback)
93                 {
94                         if (for_playback)
95                         {
96                                 _playback_latency_range = latency_range;
97                         }
98                         else
99                         {
100                                 _capture_latency_range = latency_range;
101                         }
102                 }
103
104         private:
105                 DummyAudioBackend &_dummy_backend;
106                 std::string _name;
107                 const PortFlags _flags;
108                 LatencyRange _capture_latency_range;
109                 LatencyRange _playback_latency_range;
110                 std::vector<DummyPort*> _connections;
111
112                 void _connect (DummyPort* , bool);
113                 void _disconnect (DummyPort* , bool);
114
115 }; // class DummyPort
116
117 class DummyAudioPort : public DummyPort {
118         public:
119                 DummyAudioPort (DummyAudioBackend &b, const std::string&, PortFlags);
120                 ~DummyAudioPort ();
121
122                 DataType type () const { return DataType::AUDIO; };
123
124                 Sample* buffer () { return _buffer; }
125                 const Sample* const_buffer () const { return _buffer; }
126                 void* get_buffer (pframes_t nframes);
127
128         private:
129                 Sample _buffer[8192];
130 }; // class DummyAudioPort
131
132 class DummyMidiPort : public DummyPort {
133         public:
134                 DummyMidiPort (DummyAudioBackend &b, const std::string&, PortFlags);
135                 ~DummyMidiPort ();
136
137                 DataType type () const { return DataType::MIDI; };
138
139                 void* get_buffer (pframes_t nframes);
140                 const DummyMidiBuffer const_buffer () const { return _buffer; }
141
142         private:
143                 DummyMidiBuffer _buffer;
144 }; // class DummyMidiPort
145
146 class DummyAudioBackend : public AudioBackend {
147         friend class DummyPort;
148         public:
149                  DummyAudioBackend (AudioEngine& e, AudioBackendInfo& info);
150                 ~DummyAudioBackend ();
151
152                 /* AUDIOBACKEND API */
153
154                 std::string name () const;
155                 bool is_realtime () const;
156
157                 std::vector<DeviceStatus> enumerate_devices () const;
158                 std::vector<float> available_sample_rates (const std::string& device) const;
159                 std::vector<uint32_t> available_buffer_sizes (const std::string& device) const;
160                 uint32_t available_input_channel_count (const std::string& device) const;
161                 uint32_t available_output_channel_count (const std::string& device) const;
162
163                 bool can_change_sample_rate_when_running () const;
164                 bool can_change_buffer_size_when_running () const;
165
166                 int set_device_name (const std::string&);
167                 int set_sample_rate (float);
168                 int set_buffer_size (uint32_t);
169                 int set_interleaved (bool yn);
170                 int set_input_channels (uint32_t);
171                 int set_output_channels (uint32_t);
172                 int set_systemic_input_latency (uint32_t);
173                 int set_systemic_output_latency (uint32_t);
174
175                 /* Retrieving parameters */
176                 std::string  device_name () const;
177                 float        sample_rate () const;
178                 uint32_t     buffer_size () const;
179                 bool         interleaved () const;
180                 uint32_t     input_channels () const;
181                 uint32_t     output_channels () const;
182                 uint32_t     systemic_input_latency () const;
183                 uint32_t     systemic_output_latency () const;
184
185                 /* External control app */
186                 std::string control_app_name () const { return std::string (); }
187                 void launch_control_app () {}
188
189                 /* MIDI */
190                 std::vector<std::string> enumerate_midi_options () const;
191                 int set_midi_option (const std::string&);
192                 std::string midi_option () const;
193
194                 /* State Control */
195         protected:
196                 int _start (bool for_latency_measurement);
197         public:
198                 int stop ();
199                 int freewheel (bool);
200                 float dsp_load () const;
201                 size_t raw_buffer_size (DataType t);
202
203                 /* Process time */
204                 pframes_t sample_time ();
205                 pframes_t sample_time_at_cycle_start ();
206                 pframes_t samples_since_cycle_start ();
207
208                 int create_process_thread (boost::function<void()> func);
209                 int join_process_threads ();
210                 bool in_process_thread ();
211                 uint32_t process_thread_count ();
212
213                 void update_latencies ();
214
215                 /* PORTENGINE API */
216
217                 void* private_handle () const;
218                 const std::string& my_name () const;
219                 bool available () const;
220                 uint32_t port_name_size () const;
221
222                 int         set_port_name (PortHandle, const std::string&);
223                 std::string get_port_name (PortHandle) const;
224                 PortHandle  get_port_by_name (const std::string&) const;
225
226                 int get_ports (const std::string& port_name_pattern, DataType type, PortFlags flags, std::vector<std::string>&) const;
227
228                 DataType port_data_type (PortHandle) const;
229
230                 PortHandle register_port (const std::string& shortname, ARDOUR::DataType, ARDOUR::PortFlags);
231                 void unregister_port (PortHandle);
232
233                 int  connect (const std::string& src, const std::string& dst);
234                 int  disconnect (const std::string& src, const std::string& dst);
235                 int  connect (PortHandle, const std::string&);
236                 int  disconnect (PortHandle, const std::string&);
237                 int  disconnect_all (PortHandle);
238
239                 bool connected (PortHandle, bool process_callback_safe);
240                 bool connected_to (PortHandle, const std::string&, bool process_callback_safe);
241                 bool physically_connected (PortHandle, bool process_callback_safe);
242                 int  get_connections (PortHandle, std::vector<std::string>&, bool process_callback_safe);
243
244                 /* MIDI */
245                 int midi_event_get (pframes_t& timestamp, size_t& size, uint8_t** buf, void* port_buffer, uint32_t event_index);
246                 int midi_event_put (void* port_buffer, pframes_t timestamp, const uint8_t* buffer, size_t size);
247                 uint32_t get_midi_event_count (void* port_buffer);
248                 void     midi_clear (void* port_buffer);
249
250                 /* Monitoring */
251
252                 bool can_monitor_input () const;
253                 int  request_input_monitoring (PortHandle, bool);
254                 int  ensure_input_monitoring (PortHandle, bool);
255                 bool monitoring_input (PortHandle);
256
257                 /* Latency management */
258
259                 void         set_latency_range (PortHandle, bool for_playback, LatencyRange);
260                 LatencyRange get_latency_range (PortHandle, bool for_playback);
261
262                 /* Discovering physical ports */
263
264                 bool      port_is_physical (PortHandle) const;
265                 void      get_physical_outputs (DataType type, std::vector<std::string>&);
266                 void      get_physical_inputs (DataType type, std::vector<std::string>&);
267                 ChanCount n_physical_outputs () const;
268                 ChanCount n_physical_inputs () const;
269
270                 /* Getting access to the data buffer for a port */
271
272                 void* get_buffer (PortHandle, pframes_t);
273
274                 void* main_process_thread ();
275
276         private:
277                 std::string _instance_name;
278                 bool  _running;
279                 bool  _freewheeling;
280
281                 float  _samplerate;
282                 size_t _samples_per_period;
283                 float  _dsp_load;
284                 static size_t _max_buffer_size;
285
286                 uint32_t _n_inputs;
287                 uint32_t _n_outputs;
288
289                 uint32_t _n_midi_inputs;
290                 uint32_t _n_midi_outputs;
291
292                 uint32_t _systemic_input_latency;
293                 uint32_t _systemic_output_latency;
294
295                 uint64_t _processed_samples;
296
297                 pthread_t _main_thread;
298
299                 /* process threads */
300                 static void* dummy_process_thread (void *);
301                 std::vector<pthread_t> _threads;
302
303                 struct ThreadData {
304                         DummyAudioBackend* engine;
305                         boost::function<void ()> f;
306                         size_t stacksize;
307
308                         ThreadData (DummyAudioBackend* e, boost::function<void ()> fp, size_t stacksz)
309                                 : engine (e) , f (fp) , stacksize (stacksz) {}
310                 };
311
312                 /* port engine */
313                 PortHandle add_port (const std::string& shortname, ARDOUR::DataType, ARDOUR::PortFlags);
314                 int register_system_ports ();
315                 void unregister_system_ports ();
316
317                 std::vector<DummyPort *> _ports;
318
319
320                 struct PortConnectData {
321                         std::string a;
322                         std::string b;
323                         bool c;
324
325                         PortConnectData (const std::string& a, const std::string& b, bool c)
326                                 : a (a) , b (b) , c (c) {}
327                 };
328
329                 std::vector<PortConnectData *> _port_connection_queue;
330                 pthread_mutex_t _port_callback_mutex;
331
332                 void port_connect_callback (const std::string& a, const std::string& b, bool conn) {
333                         pthread_mutex_lock (&_port_callback_mutex);
334                         _port_connection_queue.push_back(new PortConnectData(a, b, conn));
335                         pthread_mutex_unlock (&_port_callback_mutex);
336                 }
337
338                 bool valid_port (PortHandle port) const {
339                         return std::find (_ports.begin (), _ports.end (), (DummyPort*)port) != _ports.end ();
340                 }
341
342                 DummyPort * find_port (const std::string& port_name) const {
343                         for (std::vector<DummyPort*>::const_iterator it = _ports.begin (); it != _ports.end (); ++it) {
344                                 if ((*it)->name () == port_name) {
345                                         return *it;
346                                 }
347                         }
348                         return NULL;
349                 }
350
351 }; // class DummyAudioBackend
352
353 } // namespace
354
355 #endif /* __libbackend_dummy_audiobackend_h__ */