ardour
audio_backend.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2013 Paul Davis
3 
4  This program is free software; you can redistribute it and/or modify
5  it under the terms of the GNU General Public License as published by
6  the Free Software Foundation; either version 2 of the License, or
7  (at your option) any later version.
8 
9  This program is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  GNU General Public License for more details.
13 
14  You should have received a copy of the GNU General Public License
15  along with this program; if not, write to the Free Software
16  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 
18 */
19 
20 #ifndef __libardour_audiobackend_h__
21 #define __libardour_audiobackend_h__
22 
23 #include <string>
24 #include <vector>
25 
26 #include <stdint.h>
27 #include <stdlib.h>
28 
29 #include <boost/function.hpp>
30 
32 #include "ardour/types.h"
33 #include "ardour/audioengine.h"
34 #include "ardour/port_engine.h"
35 
36 #ifdef ARDOURBACKEND_DLL_EXPORTS // defined if we are building the ARDOUR Panners DLLs (instead of using them)
37  #define ARDOURBACKEND_API LIBARDOUR_DLL_EXPORT
38 #else
39  #define ARDOURBACKEND_API LIBARDOUR_DLL_IMPORT
40 #endif
41 #define ARDOURBACKEND_LOCAL LIBARDOUR_DLL_LOCAL
42 
43 namespace ARDOUR {
44 
46  const char* name;
47 
52  int (*instantiate) (const std::string& arg1, const std::string& arg2);
53 
56  int (*deinstantiate) (void);
57 
64 
72  bool (*already_configured)();
73 
80  bool (*available)();
81 };
82 
84  public:
85 
86  AudioBackend (AudioEngine& e, AudioBackendInfo& i) : PortEngine (e), _info (i), engine (e) {}
87  virtual ~AudioBackend () {}
88 
92  AudioBackendInfo& info() const { return _info; }
93 
99  virtual std::string name() const = 0;
100 
105  virtual bool is_realtime () const = 0;
106 
107  /* Discovering devices and parameters */
108 
117  virtual bool requires_driver_selection() const { return false; }
118 
126  virtual std::vector<std::string> enumerate_drivers() const { return std::vector<std::string>(); }
127 
134  virtual int set_driver (const std::string& /*drivername*/) { return 0; }
135 
139  struct DeviceStatus {
140  std::string name;
141  bool available;
142 
143  DeviceStatus (const std::string& s, bool avail) : name (s), available (avail) {}
144  };
145 
153  virtual std::vector<DeviceStatus> enumerate_devices () const = 0;
154 
162  virtual std::vector<float> available_sample_rates (const std::string& device) const = 0;
163 
164  /* Returns the default sample rate that will be shown to the user when
165  * configuration options are first presented. If the derived class
166  * needs or wants to override this, it can. It also MUST override this
167  * if there is any chance that an SR of 44.1kHz is not in the list
168  * returned by available_sample_rates()
169  */
170  virtual float default_sample_rate () const {
171  return 44100.0;
172  }
173 
181  virtual std::vector<uint32_t> available_buffer_sizes (const std::string& device) const = 0;
182 
183  /* Returns the default buffer size that will be shown to the user when
184  * configuration options are first presented. If the derived class
185  * needs or wants to override this, it can. It also MUST override this
186  * if there is any chance that a buffer size of 1024 is not in the list
187  * returned by available_buffer_sizes()
188  */
189  virtual uint32_t default_buffer_size (const std::string& device) const {
190  return 1024;
191  }
192 
199  virtual uint32_t available_input_channel_count (const std::string& device) const = 0;
200 
207  virtual uint32_t available_output_channel_count (const std::string& device) const = 0;
208 
209  /* Return true if the derived class can change the sample rate of the
210  * device in use while the device is already being used. Return false
211  * otherwise. (example: JACK cannot do this as of September 2013)
212  */
213  virtual bool can_change_sample_rate_when_running () const = 0;
214  /* Return true if the derived class can change the buffer size of the
215  * device in use while the device is already being used. Return false
216  * otherwise.
217  */
218  virtual bool can_change_buffer_size_when_running () const = 0;
219 
220  /* Set the hardware parameters.
221  *
222  * If called when the current state is stopped or paused,
223  * the changes will not take effect until the state changes to running.
224  *
225  * If called while running, the state will change as fast as the
226  * implementation allows.
227  *
228  * All set_*() methods return zero on success, non-zero otherwise.
229  */
230 
233  virtual int set_device_name (const std::string&) = 0;
236  virtual int drop_device() {return 0;};
239  virtual int set_sample_rate (float) = 0;
248  virtual int set_buffer_size (uint32_t) = 0;
257  virtual int set_interleaved (bool yn) = 0;
260  virtual int set_input_channels (uint32_t) = 0;
263  virtual int set_output_channels (uint32_t) = 0;
268  virtual int set_systemic_input_latency (uint32_t) = 0;
273  virtual int set_systemic_output_latency (uint32_t) = 0;
277  virtual int set_systemic_midi_input_latency (std::string const, uint32_t) = 0;
281  virtual int set_systemic_midi_output_latency (std::string const, uint32_t) = 0;
282 
283  /* Retrieving parameters */
284 
285  virtual std::string device_name () const = 0;
286  virtual float sample_rate () const = 0;
287  virtual uint32_t buffer_size () const = 0;
288  virtual bool interleaved () const = 0;
289  virtual uint32_t input_channels () const = 0;
290  virtual uint32_t output_channels () const = 0;
291  virtual uint32_t systemic_input_latency () const = 0;
292  virtual uint32_t systemic_output_latency () const = 0;
293  virtual uint32_t systemic_midi_input_latency (std::string const) const = 0;
294  virtual uint32_t systemic_midi_output_latency (std::string const) const = 0;
295 
299  virtual std::string driver_name() const { return std::string(); }
300 
306  virtual std::string control_app_name() const = 0;
311  virtual void launch_control_app () = 0;
312 
313  /* @return a vector of strings that describe the available
314  * MIDI options.
315  *
316  * These can be presented to the user to decide which
317  * MIDI drivers, options etc. can be used. The returned strings
318  * should be thought of as the key to a map of possible
319  * approaches to handling MIDI within the backend. Ensure that
320  * the strings will make sense to the user.
321  */
322  virtual std::vector<std::string> enumerate_midi_options () const = 0;
323 
324  /* Request the use of the MIDI option named @param option, which
325  * should be one of the strings returned by enumerate_midi_options()
326  *
327  * @return zero if successful, non-zero otherwise
328  */
329  virtual int set_midi_option (const std::string& option) = 0;
330 
331  virtual std::string midi_option () const = 0;
332 
334  virtual std::vector<DeviceStatus> enumerate_midi_devices () const = 0;
335 
337  virtual int set_midi_device_enabled (std::string const, bool) = 0;
338 
340  virtual bool midi_device_enabled (std::string const) const = 0;
341 
343  virtual bool can_set_systemic_midi_latencies () const = 0;
344 
345  /* State Control */
346 
377  int start (bool for_latency_measurement=false) {
378  return _start (for_latency_measurement);
379  }
380 
395  virtual int stop () = 0;
396 
401  virtual int reset_device() = 0;
402 
419  virtual int freewheel (bool start_stop) = 0;
420 
431  virtual float dsp_load() const = 0;
432 
433  /* Transport Control (JACK is the only audio API that currently offers
434  the concept of shared transport control)
435  */
436 
439  virtual void transport_start () {}
442  virtual void transport_stop () {}
445  virtual TransportState transport_state () const { return TransportStopped; }
448  virtual void transport_locate (framepos_t /*pos*/) {}
452  virtual framepos_t transport_frame() const { return 0; }
453 
462  virtual int set_time_master (bool /*yn*/) { return 0; }
463 
464  virtual int usecs_per_cycle () const { return 1000000 * (buffer_size() / sample_rate()); }
465  virtual size_t raw_buffer_size (DataType t) = 0;
466 
467  /* Process time */
468 
480  virtual framepos_t sample_time () = 0;
481 
485  virtual framepos_t sample_time_at_cycle_start () = 0;
486 
493  virtual pframes_t samples_since_cycle_start () = 0;
494 
510  virtual bool get_sync_offset (pframes_t& /*offset*/) const { return false; }
511 
518  virtual int create_process_thread (boost::function<void()> func) = 0;
519 
524  virtual int join_process_threads () = 0;
525 
528  virtual bool in_process_thread () = 0;
529 
532  static size_t thread_stack_size () { return 100000; }
533 
536  virtual uint32_t process_thread_count () = 0;
537 
538  virtual void update_latencies () = 0;
539 
549  virtual bool speed_and_position (double& speed, framepos_t& position) {
550  speed = 0.0;
551  position = 0;
552  return false;
553  }
554 
555  protected:
558 
559  virtual int _start (bool for_latency_measurement) = 0;
560 };
561 
562 } // namespace
563 
564 #endif /* __libardour_audiobackend_h__ */
565 
virtual void transport_stop()
int start(bool for_latency_measurement=false)
virtual framepos_t transport_frame() const
AudioBackendInfo & _info
virtual bool speed_and_position(double &speed, framepos_t &position)
uint32_t pframes_t
Definition: types.h:61
AudioBackendInfo & info() const
Definition: audio_backend.h:92
virtual std::string driver_name() const
virtual uint32_t default_buffer_size(const std::string &device) const
Definition: getopt.h:74
virtual std::vector< std::string > enumerate_drivers() const
Definition: amp.h:29
virtual int set_driver(const std::string &)
virtual bool get_sync_offset(pframes_t &) const
virtual int drop_device()
virtual TransportState transport_state() const
int64_t framepos_t
Definition: types.h:66
virtual void transport_start()
#define LIBARDOUR_API
static size_t thread_stack_size()
const char * name
AudioBackend(AudioEngine &e, AudioBackendInfo &i)
Definition: audio_backend.h:86
virtual int usecs_per_cycle() const
LIBARDOUR_API PBD::PropertyDescriptor< framepos_t > position
Definition: region.cc:65
virtual int set_time_master(bool)
DeviceStatus(const std::string &s, bool avail)
AudioEngine & engine
virtual bool requires_driver_selection() const
virtual void transport_locate(framepos_t)
TransportState
Definition: types.h:600
virtual float default_sample_rate() const