ardour/libs/backends/dummy/dummy_audiobackend.cc

2242 lines
58 KiB
C++
Raw Normal View History

2014-04-28 15:29:35 -04:00
/*
* Copyright (C) 2014 Robin Gareus <robin@gareus.org>
* Copyright (C) 2013 Paul Davis
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <math.h>
#include <sys/time.h>
#include <regex.h>
#include <stdlib.h>
#include <glibmm.h>
#ifdef PLATFORM_WINDOWS
#include <windows.h>
#include <pbd/windows_timer_utils.h>
#endif
2014-04-28 15:29:35 -04:00
#include "dummy_audiobackend.h"
2014-09-23 19:04:19 -04:00
#include "dummy_midi_seq.h"
2014-04-28 15:29:35 -04:00
#include "pbd/error.h"
#include "pbd/compose.h"
#include "ardour/port_manager.h"
#include "pbd/i18n.h"
2014-04-28 15:29:35 -04:00
using namespace ARDOUR;
static std::string s_instance_name;
size_t DummyAudioBackend::_max_buffer_size = 8192;
std::vector<std::string> DummyAudioBackend::_midi_options;
std::vector<AudioBackend::DeviceStatus> DummyAudioBackend::_device_status;
2015-09-05 18:33:24 -04:00
std::vector<DummyAudioBackend::DriverSpeed> DummyAudioBackend::_driver_speed;
static int64_t _x_get_monotonic_usec() {
#ifdef PLATFORM_WINDOWS
return PBD::get_microseconds();
#endif
return g_get_monotonic_time();
}
DummyAudioBackend::DummyAudioBackend (AudioEngine& e, AudioBackendInfo& info)
: AudioBackend (e, info)
, _running (false)
, _freewheel (false)
, _freewheeling (false)
2015-09-05 18:33:24 -04:00
, _speedup (1.0)
, _device ("")
, _samplerate (48000)
, _samples_per_period (1024)
, _dsp_load (0)
, _n_inputs (0)
, _n_outputs (0)
, _n_midi_inputs (0)
, _n_midi_outputs (0)
, _midi_mode (MidiNoEvents)
, _systemic_input_latency (0)
, _systemic_output_latency (0)
, _processed_samples (0)
, _port_change_flag (false)
2014-04-28 15:29:35 -04:00
{
_instance_name = s_instance_name;
_device = _("Silence");
pthread_mutex_init (&_port_callback_mutex, 0);
if (_driver_speed.empty()) {
_driver_speed.push_back (DriverSpeed (_("Half Speed"), 2.0f));
_driver_speed.push_back (DriverSpeed (_("Normal Speed"), 1.0f));
_driver_speed.push_back (DriverSpeed (_("Double Speed"), 0.5f));
_driver_speed.push_back (DriverSpeed (_("5x Speed"), 0.2f));
_driver_speed.push_back (DriverSpeed (_("10x Speed"), 0.1f));
_driver_speed.push_back (DriverSpeed (_("15x Speed"), 0.06666f));
_driver_speed.push_back (DriverSpeed (_("20x Speed"), 0.05f));
_driver_speed.push_back (DriverSpeed (_("50x Speed"), 0.02f));
}
2014-04-28 15:29:35 -04:00
}
DummyAudioBackend::~DummyAudioBackend ()
{
pthread_mutex_destroy (&_port_callback_mutex);
2014-04-28 15:29:35 -04:00
}
/* AUDIOBACKEND API */
std::string
DummyAudioBackend::name () const
{
return X_("Dummy"); // internal name
2014-04-28 15:29:35 -04:00
}
bool
DummyAudioBackend::is_realtime () const
{
return false;
}
std::vector<AudioBackend::DeviceStatus>
DummyAudioBackend::enumerate_devices () const
{
if (_device_status.empty()) {
_device_status.push_back (DeviceStatus (_("Silence"), true));
_device_status.push_back (DeviceStatus (_("DC -6dBFS (+.5)"), true));
_device_status.push_back (DeviceStatus (_("Demolition"), true));
_device_status.push_back (DeviceStatus (_("Sine Wave"), true));
_device_status.push_back (DeviceStatus (_("Sine Wave 1K, 1/3 Oct"), true));
_device_status.push_back (DeviceStatus (_("Square Wave"), true));
_device_status.push_back (DeviceStatus (_("Impulses"), true));
_device_status.push_back (DeviceStatus (_("Uniform White Noise"), true));
_device_status.push_back (DeviceStatus (_("Gaussian White Noise"), true));
_device_status.push_back (DeviceStatus (_("Pink Noise"), true));
_device_status.push_back (DeviceStatus (_("Pink Noise (low CPU)"), true));
_device_status.push_back (DeviceStatus (_("Sine Sweep"), true));
_device_status.push_back (DeviceStatus (_("Sine Sweep Swell"), true));
_device_status.push_back (DeviceStatus (_("Square Sweep"), true));
_device_status.push_back (DeviceStatus (_("Square Sweep Swell"), true));
_device_status.push_back (DeviceStatus (_("LTC"), true));
2014-10-11 08:47:35 -04:00
_device_status.push_back (DeviceStatus (_("Loopback"), true));
}
return _device_status;
2014-04-28 15:29:35 -04:00
}
std::vector<float>
DummyAudioBackend::available_sample_rates (const std::string&) const
{
std::vector<float> sr;
sr.push_back (8000.0);
sr.push_back (22050.0);
sr.push_back (24000.0);
2014-04-28 15:29:35 -04:00
sr.push_back (44100.0);
sr.push_back (48000.0);
sr.push_back (88200.0);
sr.push_back (96000.0);
sr.push_back (176400.0);
sr.push_back (192000.0);
2014-04-28 15:29:35 -04:00
return sr;
}
std::vector<uint32_t>
DummyAudioBackend::available_buffer_sizes (const std::string&) const
{
std::vector<uint32_t> bs;
bs.push_back (4);
bs.push_back (8);
bs.push_back (16);
bs.push_back (32);
2014-04-28 15:29:35 -04:00
bs.push_back (64);
bs.push_back (128);
bs.push_back (256);
bs.push_back (512);
2014-04-28 15:29:35 -04:00
bs.push_back (1024);
bs.push_back (2048);
bs.push_back (4096);
bs.push_back (8192);
2014-04-28 15:29:35 -04:00
return bs;
}
uint32_t
DummyAudioBackend::available_input_channel_count (const std::string&) const
{
return 128;
}
uint32_t
DummyAudioBackend::available_output_channel_count (const std::string&) const
{
return 128;
}
bool
DummyAudioBackend::can_change_sample_rate_when_running () const
{
2017-08-03 21:39:27 -04:00
return false;
2014-04-28 15:29:35 -04:00
}
bool
DummyAudioBackend::can_change_buffer_size_when_running () const
{
return true;
2014-04-28 15:29:35 -04:00
}
2015-09-05 18:33:24 -04:00
std::vector<std::string>
DummyAudioBackend::enumerate_drivers () const
{
std::vector<std::string> speed_drivers;
for (std::vector<DriverSpeed>::const_iterator it = _driver_speed.begin () ; it != _driver_speed.end (); ++it) {
speed_drivers.push_back (it->name);
}
return speed_drivers;
}
std::string
DummyAudioBackend::driver_name () const
{
for (std::vector<DriverSpeed>::const_iterator it = _driver_speed.begin () ; it != _driver_speed.end (); ++it) {
2015-09-05 18:46:05 -04:00
if (rintf (1e6f * _speedup) == rintf (1e6f * it->speedup)) {
2015-09-05 18:33:24 -04:00
return it->name;
}
}
assert (0);
return _("Normal Speed");
}
int
DummyAudioBackend::set_driver (const std::string& d)
{
for (std::vector<DriverSpeed>::const_iterator it = _driver_speed.begin () ; it != _driver_speed.end (); ++it) {
if (d == it->name) {
_speedup = it->speedup;
return 0;
}
}
assert (0);
2015-09-05 18:33:24 -04:00
return -1;
}
2014-04-28 15:29:35 -04:00
int
DummyAudioBackend::set_device_name (const std::string& d)
2014-04-28 15:29:35 -04:00
{
_device = d;
return 0;
2014-04-28 15:29:35 -04:00
}
int
DummyAudioBackend::set_sample_rate (float sr)
2014-04-28 15:29:35 -04:00
{
if (sr <= 0) { return -1; }
_samplerate = sr;
engine.sample_rate_change (sr);
return 0;
2014-04-28 15:29:35 -04:00
}
int
DummyAudioBackend::set_buffer_size (uint32_t bs)
2014-04-28 15:29:35 -04:00
{
2015-09-08 09:14:02 -04:00
if (bs <= 0 || bs > _max_buffer_size) {
return -1;
}
_samples_per_period = bs;
2014-10-11 08:47:35 -04:00
/* update port latencies
* with 'Loopback' there is exactly once cycle latency,
* divide it between In + Out;
*/
LatencyRange lr;
lr.min = lr.max = _systemic_input_latency;
2014-10-11 08:47:35 -04:00
for (std::vector<DummyAudioPort*>::const_iterator it = _system_inputs.begin (); it != _system_inputs.end (); ++it) {
set_latency_range (*it, false, lr);
}
for (std::vector<DummyMidiPort*>::const_iterator it = _system_midi_in.begin (); it != _system_midi_in.end (); ++it) {
set_latency_range (*it, false, lr);
}
lr.min = lr.max = _systemic_output_latency;
2014-10-11 08:47:35 -04:00
for (std::vector<DummyAudioPort*>::const_iterator it = _system_outputs.begin (); it != _system_outputs.end (); ++it) {
set_latency_range (*it, true, lr);
}
for (std::vector<DummyMidiPort*>::const_iterator it = _system_midi_out.begin (); it != _system_midi_out.end (); ++it) {
set_latency_range (*it, true, lr);
}
engine.buffer_size_change (bs);
return 0;
2014-04-28 15:29:35 -04:00
}
int
DummyAudioBackend::set_interleaved (bool yn)
{
if (!yn) { return 0; }
return -1;
}
int
DummyAudioBackend::set_input_channels (uint32_t cc)
2014-04-28 15:29:35 -04:00
{
_n_inputs = cc;
return 0;
2014-04-28 15:29:35 -04:00
}
int
DummyAudioBackend::set_output_channels (uint32_t cc)
2014-04-28 15:29:35 -04:00
{
_n_outputs = cc;
return 0;
2014-04-28 15:29:35 -04:00
}
int
DummyAudioBackend::set_systemic_input_latency (uint32_t sl)
2014-04-28 15:29:35 -04:00
{
_systemic_input_latency = sl;
return 0;
2014-04-28 15:29:35 -04:00
}
int
DummyAudioBackend::set_systemic_output_latency (uint32_t sl)
2014-04-28 15:29:35 -04:00
{
_systemic_output_latency = sl;
return 0;
2014-04-28 15:29:35 -04:00
}
/* Retrieving parameters */
std::string
DummyAudioBackend::device_name () const
{
return _device;
2014-04-28 15:29:35 -04:00
}
float
DummyAudioBackend::sample_rate () const
{
return _samplerate;
2014-04-28 15:29:35 -04:00
}
uint32_t
DummyAudioBackend::buffer_size () const
{
return _samples_per_period;
2014-04-28 15:29:35 -04:00
}
bool
DummyAudioBackend::interleaved () const
{
return false;
}
uint32_t
DummyAudioBackend::input_channels () const
{
return _n_inputs;
2014-04-28 15:29:35 -04:00
}
uint32_t
DummyAudioBackend::output_channels () const
{
return _n_outputs;
2014-04-28 15:29:35 -04:00
}
uint32_t
DummyAudioBackend::systemic_input_latency () const
{
return _systemic_input_latency;
2014-04-28 15:29:35 -04:00
}
uint32_t
DummyAudioBackend::systemic_output_latency () const
{
return _systemic_output_latency;
2014-04-28 15:29:35 -04:00
}
2014-04-28 15:29:35 -04:00
/* MIDI */
std::vector<std::string>
DummyAudioBackend::enumerate_midi_options () const
{
if (_midi_options.empty()) {
2014-09-23 19:04:19 -04:00
_midi_options.push_back (_("1 in, 1 out, Silence"));
_midi_options.push_back (_("2 in, 2 out, Silence"));
_midi_options.push_back (_("8 in, 8 out, Silence"));
_midi_options.push_back (_("Midi Event Generators"));
_midi_options.push_back (_("8 in, 8 out, Loopback"));
_midi_options.push_back (_("MIDI to Audio, Loopback"));
_midi_options.push_back (_("No MIDI I/O"));
}
return _midi_options;
2014-04-28 15:29:35 -04:00
}
int
DummyAudioBackend::set_midi_option (const std::string& opt)
2014-04-28 15:29:35 -04:00
{
_midi_mode = MidiNoEvents;
2014-09-23 19:04:19 -04:00
if (opt == _("1 in, 1 out, Silence")) {
_n_midi_inputs = _n_midi_outputs = 1;
}
2014-09-23 19:04:19 -04:00
else if (opt == _("2 in, 2 out, Silence")) {
_n_midi_inputs = _n_midi_outputs = 2;
}
2014-09-23 19:04:19 -04:00
else if (opt == _("8 in, 8 out, Silence")) {
_n_midi_inputs = _n_midi_outputs = 8;
}
2014-09-23 19:04:19 -04:00
else if (opt == _("Midi Event Generators")) {
_n_midi_inputs = _n_midi_outputs = NUM_MIDI_EVENT_GENERATORS;
_midi_mode = MidiGenerator;
}
else if (opt == _("8 in, 8 out, Loopback")) {
_n_midi_inputs = _n_midi_outputs = 8;
_midi_mode = MidiLoopback;
2014-09-23 19:04:19 -04:00
}
else if (opt == _("MIDI to Audio, Loopback")) {
_n_midi_inputs = _n_midi_outputs = UINT32_MAX;
_midi_mode = MidiToAudio;
}
else {
_n_midi_inputs = _n_midi_outputs = 0;
}
2014-06-01 12:18:08 -04:00
return 0;
2014-04-28 15:29:35 -04:00
}
std::string
DummyAudioBackend::midi_option () const
{
2014-06-01 12:18:08 -04:00
return ""; // TODO
2014-04-28 15:29:35 -04:00
}
/* State Control */
static void * pthread_process (void *arg)
{
DummyAudioBackend *d = static_cast<DummyAudioBackend *>(arg);
d->main_process_thread ();
pthread_exit (0);
return 0;
}
2014-04-28 15:29:35 -04:00
int
DummyAudioBackend::_start (bool /*for_latency_measurement*/)
{
if (_running) {
PBD::error << _("DummyAudioBackend: already active.") << endmsg;
2015-10-02 11:51:17 -04:00
return BackendReinitializationError;
}
if (_ports.size () || _portmap.size ()) {
PBD::warning << _("DummyAudioBackend: recovering from unclean shutdown, port registry is not empty.") << endmsg;
for (PortIndex::const_iterator it = _ports.begin (); it != _ports.end (); ++it) {
PBD::info << _("DummyAudioBackend: port '") << (*it)->name () << "' exists." << endmsg;
}
for (PortMap::const_iterator it = _portmap.begin (); it != _portmap.end (); ++it) {
PBD::info << _("DummyAudioBackend: portmap '") << (*it).first << "' exists." << endmsg;
}
_system_inputs.clear();
2014-10-11 08:47:35 -04:00
_system_outputs.clear();
2014-09-23 19:04:19 -04:00
_system_midi_in.clear();
2014-10-11 08:47:35 -04:00
_system_midi_out.clear();
_ports.clear();
_portmap.clear();
}
if (register_system_ports()) {
PBD::error << _("DummyAudioBackend: failed to register system ports.") << endmsg;
2015-10-02 11:51:17 -04:00
return PortRegistrationError;
}
engine.sample_rate_change (_samplerate);
engine.buffer_size_change (_samples_per_period);
if (engine.reestablish_ports ()) {
PBD::error << _("DummyAudioBackend: Could not re-establish ports.") << endmsg;
stop ();
2015-10-02 11:51:17 -04:00
return PortReconnectError;
}
engine.reconnect_ports ();
_port_change_flag = false;
if (pthread_create (&_main_thread, NULL, pthread_process, this)) {
PBD::error << _("DummyAudioBackend: cannot start.") << endmsg;
}
int timeout = 5000;
while (!_running && --timeout > 0) { Glib::usleep (1000); }
if (timeout == 0 || !_running) {
PBD::error << _("DummyAudioBackend: failed to start process thread.") << endmsg;
2015-10-02 11:51:17 -04:00
return ProcessThreadStartError;
}
2015-10-02 11:51:17 -04:00
return NoError;
2014-04-28 15:29:35 -04:00
}
int
DummyAudioBackend::stop ()
{
void *status;
if (!_running) {
return 0;
}
_running = false;
if (pthread_join (_main_thread, &status)) {
PBD::error << _("DummyAudioBackend: failed to terminate.") << endmsg;
return -1;
}
unregister_ports();
return 0;
2014-04-28 15:29:35 -04:00
}
int
DummyAudioBackend::freewheel (bool onoff)
2014-04-28 15:29:35 -04:00
{
_freewheeling = onoff;
2014-04-28 15:29:35 -04:00
return 0;
}
float
DummyAudioBackend::dsp_load () const
{
return 100.f * _dsp_load;
2014-04-28 15:29:35 -04:00
}
size_t
DummyAudioBackend::raw_buffer_size (DataType t)
{
switch (t) {
case DataType::AUDIO:
2014-06-01 12:18:08 -04:00
return _samples_per_period * sizeof(Sample);
case DataType::MIDI:
return _max_buffer_size; // XXX not really limited
}
2014-04-28 15:29:35 -04:00
return 0;
}
/* Process time */
framepos_t
2014-04-28 15:29:35 -04:00
DummyAudioBackend::sample_time ()
{
return _processed_samples;
2014-04-28 15:29:35 -04:00
}
framepos_t
2014-04-28 15:29:35 -04:00
DummyAudioBackend::sample_time_at_cycle_start ()
{
return _processed_samples;
2014-04-28 15:29:35 -04:00
}
pframes_t
DummyAudioBackend::samples_since_cycle_start ()
{
return 0;
}
void *
DummyAudioBackend::dummy_process_thread (void *arg)
{
ThreadData* td = reinterpret_cast<ThreadData*> (arg);
boost::function<void ()> f = td->f;
delete td;
f ();
return 0;
}
2014-04-28 15:29:35 -04:00
int
DummyAudioBackend::create_process_thread (boost::function<void()> func)
{
pthread_t thread_id;
pthread_attr_t attr;
size_t stacksize = 100000;
pthread_attr_init (&attr);
pthread_attr_setstacksize (&attr, stacksize);
ThreadData* td = new ThreadData (this, func, stacksize);
if (pthread_create (&thread_id, &attr, dummy_process_thread, td)) {
PBD::error << _("AudioEngine: cannot create process thread.") << endmsg;
2014-06-01 12:18:08 -04:00
pthread_attr_destroy (&attr);
return -1;
}
2014-06-01 12:18:08 -04:00
pthread_attr_destroy (&attr);
_threads.push_back (thread_id);
return 0;
2014-04-28 15:29:35 -04:00
}
int
DummyAudioBackend::join_process_threads ()
{
int rv = 0;
for (std::vector<pthread_t>::const_iterator i = _threads.begin (); i != _threads.end (); ++i)
{
void *status;
if (pthread_join (*i, &status)) {
PBD::error << _("AudioEngine: cannot terminate process thread.") << endmsg;
rv -= 1;
}
}
_threads.clear ();
return rv;
2014-04-28 15:29:35 -04:00
}
bool
DummyAudioBackend::in_process_thread ()
{
if (pthread_equal (_main_thread, pthread_self()) != 0) {
return true;
}
for (std::vector<pthread_t>::const_iterator i = _threads.begin (); i != _threads.end (); ++i)
{
if (pthread_equal (*i, pthread_self ()) != 0) {
return true;
}
}
2014-04-28 15:29:35 -04:00
return false;
}
uint32_t
DummyAudioBackend::process_thread_count ()
{
return _threads.size ();
2014-04-28 15:29:35 -04:00
}
void
DummyAudioBackend::update_latencies ()
{
2014-06-11 16:01:21 -04:00
// trigger latency callback in RT thread (locked graph)
port_connect_add_remove_callback();
2014-04-28 15:29:35 -04:00
}
/* PORTENGINE API */
void*
DummyAudioBackend::private_handle () const
{
return NULL;
}
const std::string&
DummyAudioBackend::my_name () const
{
return _instance_name;
}
bool
DummyAudioBackend::available () const
{
return _running;
2014-04-28 15:29:35 -04:00
}
uint32_t
DummyAudioBackend::port_name_size () const
{
return 256;
}
int
DummyAudioBackend::set_port_name (PortEngine::PortHandle port, const std::string& name)
2014-04-28 15:29:35 -04:00
{
std::string newname (_instance_name + ":" + name);
if (!valid_port (port)) {
PBD::error << _("DummyBackend::set_port_name: Invalid Port(s)") << endmsg;
return -1;
}
if (find_port (newname)) {
PBD::error << _("DummyBackend::set_port_name: Port with given name already exists") << endmsg;
return -1;
}
DummyPort* p = static_cast<DummyPort*>(port);
_portmap.erase (p->name());
_portmap.insert (make_pair (newname, p));
return p->set_name (newname);
2014-04-28 15:29:35 -04:00
}
std::string
DummyAudioBackend::get_port_name (PortEngine::PortHandle port) const
2014-04-28 15:29:35 -04:00
{
if (!valid_port (port)) {
PBD::error << _("DummyBackend::get_port_name: Invalid Port(s)") << endmsg;
return std::string ();
}
return static_cast<DummyPort*>(port)->name ();
2014-04-28 15:29:35 -04:00
}
int
DummyAudioBackend::get_port_property (PortHandle port, const std::string& key, std::string& value, std::string& type) const
{
if (!valid_port (port)) {
PBD::warning << _("DummyBackend::get_port_property: Invalid Port(s)") << endmsg;
return -1;
}
if (key == "http://jackaudio.org/metadata/pretty-name") {
type = "";
value = static_cast<DummyPort*>(port)->pretty_name ();
if (!value.empty()) {
return 0;
}
}
return -1;
}
int
DummyAudioBackend::set_port_property (PortHandle port, const std::string& key, const std::string& value, const std::string& type)
{
if (!valid_port (port)) {
PBD::warning << _("DummyBackend::set_port_property: Invalid Port(s)") << endmsg;
return -1;
}
if (key == "http://jackaudio.org/metadata/pretty-name" && type.empty ()) {
static_cast<DummyPort*>(port)->set_pretty_name (value);
return 0;
}
return -1;
}
2014-04-28 15:29:35 -04:00
PortEngine::PortHandle
DummyAudioBackend::get_port_by_name (const std::string& name) const
2014-04-28 15:29:35 -04:00
{
PortHandle port = (PortHandle) find_port (name);
return port;
2014-04-28 15:29:35 -04:00
}
int
DummyAudioBackend::get_ports (
const std::string& port_name_pattern,
DataType type, PortFlags flags,
std::vector<std::string>& port_names) const
2014-04-28 15:29:35 -04:00
{
int rv = 0;
regex_t port_regex;
bool use_regexp = false;
if (port_name_pattern.size () > 0) {
if (!regcomp (&port_regex, port_name_pattern.c_str (), REG_EXTENDED|REG_NOSUB)) {
use_regexp = true;
}
}
for (PortIndex::const_iterator i = _ports.begin (); i != _ports.end (); ++i) {
DummyPort* port = *i;
if ((port->type () == type) && flags == (port->flags () & flags)) {
if (!use_regexp || !regexec (&port_regex, port->name ().c_str (), 0, NULL, 0)) {
port_names.push_back (port->name ());
++rv;
}
}
}
if (use_regexp) {
regfree (&port_regex);
}
return rv;
2014-04-28 15:29:35 -04:00
}
DataType
DummyAudioBackend::port_data_type (PortEngine::PortHandle port) const
2014-04-28 15:29:35 -04:00
{
if (!valid_port (port)) {
return DataType::NIL;
}
return static_cast<DummyPort*>(port)->type ();
2014-04-28 15:29:35 -04:00
}
PortEngine::PortHandle
DummyAudioBackend::register_port (
const std::string& name,
ARDOUR::DataType type,
ARDOUR::PortFlags flags)
{
if (name.size () == 0) { return 0; }
if (flags & IsPhysical) { return 0; }
if (!_running) {
PBD::info << _("DummyBackend::register_port: Engine is not running.") << endmsg;
}
return add_port (_instance_name + ":" + name, type, flags);
}
PortEngine::PortHandle
DummyAudioBackend::add_port (
const std::string& name,
ARDOUR::DataType type,
ARDOUR::PortFlags flags)
{
assert(name.size ());
if (find_port (name)) {
PBD::error << _("DummyBackend::register_port: Port already exists:")
<< " (" << name << ")" << endmsg;
return 0;
}
DummyPort* port = NULL;
switch (type) {
case DataType::AUDIO:
port = new DummyAudioPort (*this, name, flags);
break;
case DataType::MIDI:
port = new DummyMidiPort (*this, name, flags);
break;
default:
PBD::error << _("DummyBackend::register_port: Invalid Data Type.") << endmsg;
return 0;
}
_ports.insert (port);
_portmap.insert (make_pair (name, port));
return port;
2014-04-28 15:29:35 -04:00
}
void
DummyAudioBackend::unregister_port (PortEngine::PortHandle port_handle)
2014-04-28 15:29:35 -04:00
{
if (!_running) {
PBD::info << _("DummyBackend::unregister_port: Engine is not running.") << endmsg;
assert (!valid_port (port_handle));
return;
}
DummyPort* port = static_cast<DummyPort*>(port_handle);
PortIndex::iterator i = std::find (_ports.begin(), _ports.end(), static_cast<DummyPort*>(port_handle));
if (i == _ports.end ()) {
PBD::error << _("DummyBackend::unregister_port: Failed to find port") << endmsg;
return;
}
disconnect_all(port_handle);
2016-04-24 12:34:31 -04:00
_portmap.erase (port->name());
_ports.erase (i);
delete port;
2014-04-28 15:29:35 -04:00
}
int
DummyAudioBackend::register_system_ports()
{
LatencyRange lr;
enum DummyAudioPort::GeneratorType gt;
if (_device == _("Uniform White Noise")) {
gt = DummyAudioPort::UniformWhiteNoise;
} else if (_device == _("Gaussian White Noise")) {
gt = DummyAudioPort::GaussianWhiteNoise;
} else if (_device == _("Pink Noise")) {
gt = DummyAudioPort::PinkNoise;
} else if (_device == _("Pink Noise (low CPU)")) {
gt = DummyAudioPort::PonyNoise;
} else if (_device == _("Sine Wave")) {
gt = DummyAudioPort::SineWave;
} else if (_device == _("Sine Wave 1K, 1/3 Oct")) {
gt = DummyAudioPort::SineWaveOctaves;
} else if (_device == _("Square Wave")) {
gt = DummyAudioPort::SquareWave;
} else if (_device == _("Impulses")) {
gt = DummyAudioPort::KronekerDelta;
} else if (_device == _("Sine Sweep")) {
gt = DummyAudioPort::SineSweep;
} else if (_device == _("Sine Sweep Swell")) {
gt = DummyAudioPort::SineSweepSwell;
} else if (_device == _("Square Sweep")) {
gt = DummyAudioPort::SquareSweep;
} else if (_device == _("Square Sweep Swell")) {
gt = DummyAudioPort::SquareSweepSwell;
} else if (_device == _("LTC")) {
gt = DummyAudioPort::LTC;
2014-10-11 08:47:35 -04:00
} else if (_device == _("Loopback")) {
gt = DummyAudioPort::Loopback;
} else if (_device == _("Demolition")) {
gt = DummyAudioPort::Demolition;
} else if (_device == _("DC -6dBFS (+.5)")) {
gt = DummyAudioPort::DC05;
} else {
gt = DummyAudioPort::Silence;
}
if (_midi_mode == MidiToAudio) {
gt = DummyAudioPort::Loopback;
}
const int a_ins = _n_inputs > 0 ? _n_inputs : 8;
const int a_out = _n_outputs > 0 ? _n_outputs : 8;
const int m_ins = _n_midi_inputs == UINT_MAX ? 0 : _n_midi_inputs;
const int m_out = _n_midi_outputs == UINT_MAX ? a_ins : _n_midi_outputs;
2014-10-11 08:47:35 -04:00
/* audio ports */
lr.min = lr.max = _systemic_input_latency;
for (int i = 1; i <= a_ins; ++i) {
char tmp[64];
snprintf(tmp, sizeof(tmp), "system:capture_%d", i);
PortHandle p = add_port(std::string(tmp), DataType::AUDIO, static_cast<PortFlags>(IsOutput | IsPhysical | IsTerminal));
if (!p) return -1;
set_latency_range (p, false, lr);
_system_inputs.push_back (static_cast<DummyAudioPort*>(p));
std::string name = static_cast<DummyAudioPort*>(p)->setup_generator (gt, _samplerate, i - 1, a_ins);
if (!name.empty ()) {
static_cast<DummyAudioPort*>(p)->set_pretty_name (name);
}
}
lr.min = lr.max = _systemic_output_latency;
for (int i = 1; i <= a_out; ++i) {
char tmp[64];
snprintf(tmp, sizeof(tmp), "system:playback_%d", i);
PortHandle p = add_port(std::string(tmp), DataType::AUDIO, static_cast<PortFlags>(IsInput | IsPhysical | IsTerminal));
if (!p) return -1;
set_latency_range (p, true, lr);
2014-10-11 08:47:35 -04:00
_system_outputs.push_back (static_cast<DummyAudioPort*>(p));
}
/* midi ports */
lr.min = lr.max = _systemic_input_latency;
for (int i = 0; i < m_ins; ++i) {
char tmp[64];
snprintf(tmp, sizeof(tmp), "system:midi_capture_%d", i+1);
PortHandle p = add_port(std::string(tmp), DataType::MIDI, static_cast<PortFlags>(IsOutput | IsPhysical | IsTerminal));
if (!p) return -1;
set_latency_range (p, false, lr);
2014-09-23 19:04:19 -04:00
_system_midi_in.push_back (static_cast<DummyMidiPort*>(p));
if (_midi_mode == MidiGenerator) {
std::string name = static_cast<DummyMidiPort*>(p)->setup_generator (i % NUM_MIDI_EVENT_GENERATORS, _samplerate);
if (!name.empty ()) {
static_cast<DummyMidiPort*>(p)->set_pretty_name (name);
}
2014-09-23 19:04:19 -04:00
}
}
lr.min = lr.max = _systemic_output_latency;
for (int i = 1; i <= m_out; ++i) {
char tmp[64];
snprintf(tmp, sizeof(tmp), "system:midi_playback_%d", i);
PortHandle p = add_port(std::string(tmp), DataType::MIDI, static_cast<PortFlags>(IsInput | IsPhysical | IsTerminal));
if (!p) return -1;
set_latency_range (p, true, lr);
2014-10-11 08:47:35 -04:00
_system_midi_out.push_back (static_cast<DummyMidiPort*>(p));
if (_device == _("Loopback") && _midi_mode == MidiToAudio) {
std::stringstream ss;
ss << "Midi2Audio";
for (int apc = 0; apc < (int)_system_inputs.size(); ++apc) {
if ((apc % m_out) + 1 == i) {
ss << " >" << (apc + 1);
}
}
static_cast<DummyMidiPort*>(p)->set_pretty_name (ss.str());
}
}
return 0;
}
void
DummyAudioBackend::unregister_ports (bool system_only)
{
_system_inputs.clear();
2014-10-11 08:47:35 -04:00
_system_outputs.clear();
2014-09-23 19:04:19 -04:00
_system_midi_in.clear();
2014-10-11 08:47:35 -04:00
_system_midi_out.clear();
for (PortIndex::iterator i = _ports.begin (); i != _ports.end ();) {
PortIndex::iterator cur = i++;
DummyPort* port = *cur;
if (! system_only || (port->is_physical () && port->is_terminal ())) {
port->disconnect_all ();
2016-04-24 12:34:31 -04:00
_portmap.erase (port->name());
delete port;
_ports.erase (cur);
}
}
}
2014-04-28 15:29:35 -04:00
int
DummyAudioBackend::connect (const std::string& src, const std::string& dst)
{
DummyPort* src_port = find_port (src);
DummyPort* dst_port = find_port (dst);
if (!src_port) {
PBD::error << _("DummyBackend::connect: Invalid Source port:")
<< " (" << src <<")" << endmsg;
return -1;
}
if (!dst_port) {
PBD::error << _("DummyBackend::connect: Invalid Destination port:")
<< " (" << dst <<")" << endmsg;
return -1;
}
return src_port->connect (dst_port);
2014-04-28 15:29:35 -04:00
}
int
DummyAudioBackend::disconnect (const std::string& src, const std::string& dst)
{
DummyPort* src_port = find_port (src);
DummyPort* dst_port = find_port (dst);
if (!src_port || !dst_port) {
PBD::error << _("DummyBackend::disconnect: Invalid Port(s)") << endmsg;
return -1;
}
return src_port->disconnect (dst_port);
2014-04-28 15:29:35 -04:00
}
int
DummyAudioBackend::connect (PortEngine::PortHandle src, const std::string& dst)
2014-04-28 15:29:35 -04:00
{
DummyPort* dst_port = find_port (dst);
if (!valid_port (src)) {
PBD::error << _("DummyBackend::connect: Invalid Source Port Handle") << endmsg;
return -1;
}
if (!dst_port) {
PBD::error << _("DummyBackend::connect: Invalid Destination Port")
<< " (" << dst << ")" << endmsg;
return -1;
}
return static_cast<DummyPort*>(src)->connect (dst_port);
2014-04-28 15:29:35 -04:00
}
int
DummyAudioBackend::disconnect (PortEngine::PortHandle src, const std::string& dst)
2014-04-28 15:29:35 -04:00
{
DummyPort* dst_port = find_port (dst);
if (!valid_port (src) || !dst_port) {
PBD::error << _("DummyBackend::disconnect: Invalid Port(s)") << endmsg;
return -1;
}
return static_cast<DummyPort*>(src)->disconnect (dst_port);
2014-04-28 15:29:35 -04:00
}
int
DummyAudioBackend::disconnect_all (PortEngine::PortHandle port)
2014-04-28 15:29:35 -04:00
{
if (!valid_port (port)) {
PBD::error << _("DummyBackend::disconnect_all: Invalid Port") << endmsg;
return -1;
}
static_cast<DummyPort*>(port)->disconnect_all ();
return 0;
2014-04-28 15:29:35 -04:00
}
bool
DummyAudioBackend::connected (PortEngine::PortHandle port, bool /* process_callback_safe*/)
2014-04-28 15:29:35 -04:00
{
if (!valid_port (port)) {
PBD::error << _("DummyBackend::disconnect_all: Invalid Port") << endmsg;
return false;
}
return static_cast<DummyPort*>(port)->is_connected ();
2014-04-28 15:29:35 -04:00
}
bool
DummyAudioBackend::connected_to (PortEngine::PortHandle src, const std::string& dst, bool /*process_callback_safe*/)
2014-04-28 15:29:35 -04:00
{
DummyPort* dst_port = find_port (dst);
#ifndef NDEBUG
if (!valid_port (src) || !dst_port) {
PBD::error << _("DummyBackend::connected_to: Invalid Port") << endmsg;
return false;
}
#endif
return static_cast<DummyPort*>(src)->is_connected (dst_port);
2014-04-28 15:29:35 -04:00
}
bool
DummyAudioBackend::physically_connected (PortEngine::PortHandle port, bool /*process_callback_safe*/)
2014-04-28 15:29:35 -04:00
{
if (!valid_port (port)) {
PBD::error << _("DummyBackend::physically_connected: Invalid Port") << endmsg;
return false;
}
return static_cast<DummyPort*>(port)->is_physically_connected ();
2014-04-28 15:29:35 -04:00
}
int
DummyAudioBackend::get_connections (PortEngine::PortHandle port, std::vector<std::string>& names, bool /*process_callback_safe*/)
2014-04-28 15:29:35 -04:00
{
if (!valid_port (port)) {
PBD::error << _("DummyBackend::get_connections: Invalid Port") << endmsg;
return -1;
}
assert (0 == names.size ());
const std::set<DummyPort*>& connected_ports = static_cast<DummyPort*>(port)->get_connections ();
for (std::set<DummyPort*>::const_iterator i = connected_ports.begin (); i != connected_ports.end (); ++i) {
names.push_back ((*i)->name ());
}
return (int)names.size ();
2014-04-28 15:29:35 -04:00
}
/* MIDI */
int
DummyAudioBackend::midi_event_get (
pframes_t& timestamp,
size_t& size, uint8_t** buf, void* port_buffer,
uint32_t event_index)
{
assert (buf && port_buffer);
DummyMidiBuffer& source = * static_cast<DummyMidiBuffer*>(port_buffer);
if (event_index >= source.size ()) {
return -1;
}
DummyMidiEvent * const event = source[event_index].get ();
timestamp = event->timestamp ();
size = event->size ();
*buf = event->data ();
return 0;
2014-04-28 15:29:35 -04:00
}
int
DummyAudioBackend::midi_event_put (
void* port_buffer,
pframes_t timestamp,
const uint8_t* buffer, size_t size)
{
assert (buffer && port_buffer);
DummyMidiBuffer& dst = * static_cast<DummyMidiBuffer*>(port_buffer);
if (dst.size () && (pframes_t)dst.back ()->timestamp () > timestamp) {
// nevermind, ::get_buffer() sorts events, but always print warning
fprintf (stderr, "DummyMidiBuffer: it's too late for this event %d > %d.\n", (pframes_t)dst.back ()->timestamp (), timestamp);
}
dst.push_back (boost::shared_ptr<DummyMidiEvent>(new DummyMidiEvent (timestamp, buffer, size)));
#if 0 // DEBUG MIDI EVENTS
printf("DummyAudioBackend::midi_event_put %d, %zu: ", timestamp, size);
for (size_t xx = 0; xx < size; ++xx) {
printf(" %02x", buffer[xx]);
}
printf("\n");
#endif
return 0;
2014-04-28 15:29:35 -04:00
}
uint32_t
DummyAudioBackend::get_midi_event_count (void* port_buffer)
{
assert (port_buffer);
return static_cast<DummyMidiBuffer*>(port_buffer)->size ();
2014-04-28 15:29:35 -04:00
}
void
DummyAudioBackend::midi_clear (void* port_buffer)
{
assert (port_buffer);
DummyMidiBuffer * buf = static_cast<DummyMidiBuffer*>(port_buffer);
assert (buf);
buf->clear ();
2014-04-28 15:29:35 -04:00
}
/* Monitoring */
bool
DummyAudioBackend::can_monitor_input () const
{
return false;
}
int
DummyAudioBackend::request_input_monitoring (PortEngine::PortHandle, bool)
{
return -1;
}
int
DummyAudioBackend::ensure_input_monitoring (PortEngine::PortHandle, bool)
{
return -1;
}
bool
DummyAudioBackend::monitoring_input (PortEngine::PortHandle)
{
return false;
}
/* Latency management */
void
DummyAudioBackend::set_latency_range (PortEngine::PortHandle port, bool for_playback, LatencyRange latency_range)
2014-04-28 15:29:35 -04:00
{
if (!valid_port (port)) {
PBD::error << _("DummyPort::set_latency_range (): invalid port.") << endmsg;
}
static_cast<DummyPort*>(port)->set_latency_range (latency_range, for_playback);
2014-04-28 15:29:35 -04:00
}
LatencyRange
DummyAudioBackend::get_latency_range (PortEngine::PortHandle port, bool for_playback)
{
LatencyRange r;
if (!valid_port (port)) {
PBD::error << _("DummyPort::get_latency_range (): invalid port.") << endmsg;
r.min = 0;
r.max = 0;
return r;
}
DummyPort *p = static_cast<DummyPort*>(port);
assert(p);
r = p->latency_range (for_playback);
if (p->is_physical() && p->is_terminal()) {
if (p->is_input() && for_playback) {
const size_t l_in = _samples_per_period * .25;
2015-03-07 08:50:02 -05:00
r.min += l_in;
r.max += l_in;
}
if (p->is_output() && !for_playback) {
/* with 'Loopback' there is exactly once cycle latency, divide it between In + Out; */
const size_t l_in = _samples_per_period * .25;
const size_t l_out = _samples_per_period - l_in;
2015-03-07 08:50:02 -05:00
r.min += l_out;
r.max += l_out;
}
}
return r;
2014-04-28 15:29:35 -04:00
}
/* Discovering physical ports */
bool
DummyAudioBackend::port_is_physical (PortEngine::PortHandle port) const
2014-04-28 15:29:35 -04:00
{
if (!valid_port (port)) {
PBD::error << _("DummyPort::port_is_physical (): invalid port.") << endmsg;
return false;
}
return static_cast<DummyPort*>(port)->is_physical ();
2014-04-28 15:29:35 -04:00
}
void
DummyAudioBackend::get_physical_outputs (DataType type, std::vector<std::string>& port_names)
2014-04-28 15:29:35 -04:00
{
for (PortIndex::iterator i = _ports.begin (); i != _ports.end (); ++i) {
DummyPort* port = *i;
if ((port->type () == type) && port->is_input () && port->is_physical ()) {
port_names.push_back (port->name ());
}
}
2014-04-28 15:29:35 -04:00
}
void
DummyAudioBackend::get_physical_inputs (DataType type, std::vector<std::string>& port_names)
2014-04-28 15:29:35 -04:00
{
for (PortIndex::iterator i = _ports.begin (); i != _ports.end (); ++i) {
DummyPort* port = *i;
if ((port->type () == type) && port->is_output () && port->is_physical ()) {
port_names.push_back (port->name ());
}
}
2014-04-28 15:29:35 -04:00
}
ChanCount
DummyAudioBackend::n_physical_outputs () const
{
int n_midi = 0;
int n_audio = 0;
for (PortIndex::const_iterator i = _ports.begin (); i != _ports.end (); ++i) {
DummyPort* port = *i;
if (port->is_output () && port->is_physical ()) {
switch (port->type ()) {
case DataType::AUDIO: ++n_audio; break;
case DataType::MIDI: ++n_midi; break;
default: break;
}
}
}
2014-04-28 15:29:35 -04:00
ChanCount cc;
cc.set (DataType::AUDIO, n_audio);
cc.set (DataType::MIDI, n_midi);
2014-04-28 15:29:35 -04:00
return cc;
}
ChanCount
DummyAudioBackend::n_physical_inputs () const
{
int n_midi = 0;
int n_audio = 0;
for (PortIndex::const_iterator i = _ports.begin (); i != _ports.end (); ++i) {
DummyPort* port = *i;
if (port->is_input () && port->is_physical ()) {
switch (port->type ()) {
case DataType::AUDIO: ++n_audio; break;
case DataType::MIDI: ++n_midi; break;
default: break;
}
}
}
2014-04-28 15:29:35 -04:00
ChanCount cc;
cc.set (DataType::AUDIO, n_audio);
cc.set (DataType::MIDI, n_midi);
2014-04-28 15:29:35 -04:00
return cc;
}
/* Getting access to the data buffer for a port */
void*
DummyAudioBackend::get_buffer (PortEngine::PortHandle port, pframes_t nframes)
2014-04-28 15:29:35 -04:00
{
assert (port);
assert (valid_port (port));
return static_cast<DummyPort*>(port)->get_buffer (nframes);
}
/* Engine Process */
void *
DummyAudioBackend::main_process_thread ()
{
AudioEngine::thread_init_callback (this);
_running = true;
_processed_samples = 0;
manager.registration_callback();
manager.graph_order_callback();
int64_t clock1;
2015-05-01 09:58:17 -04:00
clock1 = -1;
while (_running) {
2017-08-03 21:39:27 -04:00
const size_t samples_per_period = _samples_per_period;
if (_freewheeling != _freewheel) {
_freewheel = _freewheeling;
engine.freewheel_callback (_freewheel);
}
// re-set input buffers, generate on demand.
for (std::vector<DummyAudioPort*>::const_iterator it = _system_inputs.begin (); it != _system_inputs.end (); ++it) {
(*it)->next_period();
}
2014-09-23 19:04:19 -04:00
for (std::vector<DummyMidiPort*>::const_iterator it = _system_midi_in.begin (); it != _system_midi_in.end (); ++it) {
(*it)->next_period();
}
2017-08-03 21:39:27 -04:00
if (engine.process_callback (samples_per_period)) {
return 0;
}
2017-08-03 21:39:27 -04:00
_processed_samples += samples_per_period;
2014-10-11 08:47:35 -04:00
if (_device == _("Loopback") && _midi_mode != MidiToAudio) {
2014-10-11 08:47:35 -04:00
int opn = 0;
int opc = _system_outputs.size();
for (std::vector<DummyAudioPort*>::const_iterator it = _system_inputs.begin (); it != _system_inputs.end (); ++it, ++opn) {
DummyAudioPort* op = _system_outputs[(opn % opc)];
2017-08-03 21:39:27 -04:00
(*it)->fill_wavetable ((const float*)op->get_buffer (samples_per_period), samples_per_period);
2014-10-11 08:47:35 -04:00
}
}
2014-10-11 08:47:35 -04:00
if (_midi_mode == MidiLoopback) {
int opn = 0;
int opc = _system_midi_out.size();
for (std::vector<DummyMidiPort*>::const_iterator it = _system_midi_in.begin (); it != _system_midi_in.end (); ++it, ++opn) {
DummyMidiPort* op = _system_midi_out[(opn % opc)];
op->get_buffer(0); // mix-down
(*it)->set_loopback (op->const_buffer());
}
2014-10-11 08:47:35 -04:00
}
else if (_midi_mode == MidiToAudio) {
int opn = 0;
int opc = _system_midi_out.size();
for (std::vector<DummyAudioPort*>::const_iterator it = _system_inputs.begin (); it != _system_inputs.end (); ++it, ++opn) {
DummyMidiPort* op = _system_midi_out[(opn % opc)];
op->get_buffer(0); // mix-down
2017-08-03 21:39:27 -04:00
(*it)->midi_to_wavetable (op->const_buffer(), samples_per_period);
}
}
2014-10-11 08:47:35 -04:00
if (!_freewheel) {
2017-08-03 21:39:27 -04:00
_dsp_load_calc.set_max_time (_samplerate, samples_per_period);
_dsp_load_calc.set_start_timestamp_us (clock1);
_dsp_load_calc.set_stop_timestamp_us (_x_get_monotonic_usec());
_dsp_load = _dsp_load_calc.get_dsp_load_unbound ();
const int64_t elapsed_time = _dsp_load_calc.elapsed_time_us ();
const int64_t nominal_time = _dsp_load_calc.get_max_time_us ();
if (elapsed_time < nominal_time) {
2015-09-05 18:33:24 -04:00
const int64_t sleepy = _speedup * (nominal_time - elapsed_time);
Glib::usleep (std::max ((int64_t) 100, sleepy));
} else {
Glib::usleep (100); // don't hog cpu
}
} else {
2014-09-24 11:18:20 -04:00
_dsp_load = 1.0f;
Glib::usleep (100); // don't hog cpu
}
2015-05-01 09:58:17 -04:00
/* beginning of next cycle */
clock1 = _x_get_monotonic_usec();
bool connections_changed = false;
bool ports_changed = false;
if (!pthread_mutex_trylock (&_port_callback_mutex)) {
if (_port_change_flag) {
ports_changed = true;
_port_change_flag = false;
}
if (!_port_connection_queue.empty ()) {
connections_changed = true;
}
while (!_port_connection_queue.empty ()) {
PortConnectData *c = _port_connection_queue.back ();
manager.connect_callback (c->a, c->b, c->c);
_port_connection_queue.pop_back ();
delete c;
}
pthread_mutex_unlock (&_port_callback_mutex);
}
if (ports_changed) {
manager.registration_callback();
}
if (connections_changed) {
manager.graph_order_callback();
}
2014-06-11 16:01:21 -04:00
if (connections_changed || ports_changed) {
engine.latency_callback(false);
engine.latency_callback(true);
}
}
_running = false;
2014-04-28 15:29:35 -04:00
return 0;
}
2014-04-28 15:29:35 -04:00
/******************************************************************************/
static boost::shared_ptr<DummyAudioBackend> _instance;
static boost::shared_ptr<AudioBackend> backend_factory (AudioEngine& e);
static int instantiate (const std::string& arg1, const std::string& /* arg2 */);
static int deinstantiate ();
static bool already_configured ();
static bool available ();
static ARDOUR::AudioBackendInfo _descriptor = {
_("None (Dummy)"),
instantiate,
deinstantiate,
backend_factory,
already_configured,
available
};
2014-04-28 15:29:35 -04:00
static boost::shared_ptr<AudioBackend>
backend_factory (AudioEngine& e)
{
if (!_instance) {
_instance.reset (new DummyAudioBackend (e, _descriptor));
2014-04-28 15:29:35 -04:00
}
return _instance;
}
static int
instantiate (const std::string& arg1, const std::string& /* arg2 */)
{
s_instance_name = arg1;
return 0;
}
static int
deinstantiate ()
{
_instance.reset ();
return 0;
}
static bool
already_configured ()
{
2015-09-04 19:15:28 -04:00
// special-case: unit-tests require backend to be pre-configured.
if (s_instance_name == "Unit-Test") {
return true;
}
2014-04-28 15:29:35 -04:00
return false;
}
static bool
available ()
{
return true;
}
2014-04-28 15:29:35 -04:00
extern "C" ARDOURBACKEND_API ARDOUR::AudioBackendInfo* descriptor ()
{
return &_descriptor;
}
/******************************************************************************/
DummyPort::DummyPort (DummyAudioBackend &b, const std::string& name, PortFlags flags)
: _dummy_backend (b)
, _name (name)
, _flags (flags)
2014-09-23 19:04:19 -04:00
, _rseed (0)
, _gen_cycle (false)
{
_capture_latency_range.min = 0;
_capture_latency_range.max = 0;
_playback_latency_range.min = 0;
_playback_latency_range.max = 0;
_dummy_backend.port_connect_add_remove_callback();
}
DummyPort::~DummyPort () {
disconnect_all ();
_dummy_backend.port_connect_add_remove_callback();
}
int DummyPort::connect (DummyPort *port)
{
if (!port) {
PBD::error << _("DummyPort::connect (): invalid (null) port") << endmsg;
return -1;
}
if (type () != port->type ()) {
PBD::error << _("DummyPort::connect (): wrong port-type") << endmsg;
return -1;
}
if (is_output () && port->is_output ()) {
PBD::error << _("DummyPort::connect (): cannot inter-connect output ports.") << endmsg;
return -1;
}
if (is_input () && port->is_input ()) {
PBD::error << _("DummyPort::connect (): cannot inter-connect input ports.") << endmsg;
return -1;
}
if (this == port) {
PBD::error << _("DummyPort::connect (): cannot self-connect ports.") << endmsg;
return -1;
}
if (is_connected (port)) {
#if 0 // don't bother to warn about this for now. just ignore it
PBD::error << _("DummyPort::connect (): ports are already connected:")
<< " (" << name () << ") -> (" << port->name () << ")"
<< endmsg;
#endif
return -1;
}
_connect (port, true);
return 0;
}
void DummyPort::_connect (DummyPort *port, bool callback)
{
_connections.insert (port);
if (callback) {
port->_connect (this, false);
_dummy_backend.port_connect_callback (name(), port->name(), true);
}
}
int DummyPort::disconnect (DummyPort *port)
{
if (!port) {
PBD::error << _("DummyPort::disconnect (): invalid (null) port") << endmsg;
return -1;
}
if (!is_connected (port)) {
PBD::error << _("DummyPort::disconnect (): ports are not connected:")
<< " (" << name () << ") -> (" << port->name () << ")"
<< endmsg;
return -1;
}
_disconnect (port, true);
return 0;
}
void DummyPort::_disconnect (DummyPort *port, bool callback)
{
std::set<DummyPort*>::iterator it = _connections.find (port);
assert (it != _connections.end ());
_connections.erase (it);
if (callback) {
port->_disconnect (this, false);
_dummy_backend.port_connect_callback (name(), port->name(), false);
}
}
void DummyPort::disconnect_all ()
{
while (!_connections.empty ()) {
std::set<DummyPort*>::iterator it = _connections.begin ();
(*it)->_disconnect (this, false);
_dummy_backend.port_connect_callback (name(), (*it)->name(), false);
_connections.erase (it);
}
}
bool
DummyPort::is_connected (const DummyPort *port) const
{
return _connections.find (const_cast<DummyPort *>(port)) != _connections.end ();
}
bool DummyPort::is_physically_connected () const
{
for (std::set<DummyPort*>::const_iterator it = _connections.begin (); it != _connections.end (); ++it) {
if ((*it)->is_physical ()) {
return true;
}
}
return false;
}
2014-09-23 19:04:19 -04:00
void DummyPort::setup_random_number_generator ()
{
#ifdef PLATFORM_WINDOWS
LARGE_INTEGER Count;
if (QueryPerformanceCounter (&Count)) {
_rseed = Count.QuadPart % UINT_MAX;
} else
#endif
{
2014-09-23 19:04:19 -04:00
_rseed = g_get_monotonic_time() % UINT_MAX;
}
_rseed = (_rseed + (uint64_t)this) % UINT_MAX;
if (_rseed == 0) _rseed = 1;
2014-09-23 19:04:19 -04:00
}
inline uint32_t
DummyPort::randi ()
{
// 31bit Park-Miller-Carta Pseudo-Random Number Generator
// http://www.firstpr.com.au/dsp/rand31/
uint32_t hi, lo;
lo = 16807 * (_rseed & 0xffff);
hi = 16807 * (_rseed >> 16);
lo += (hi & 0x7fff) << 16;
lo += hi >> 15;
#if 1
lo = (lo & 0x7fffffff) + (lo >> 31);
#else
if (lo > 0x7fffffff) { lo -= 0x7fffffff; }
#endif
return (_rseed = lo);
}
inline float
DummyPort::randf ()
{
return (randi() / 1073741824.f) - 1.f;
}
/******************************************************************************/
DummyAudioPort::DummyAudioPort (DummyAudioBackend &b, const std::string& name, PortFlags flags)
: DummyPort (b, name, flags)
, _gen_type (Silence)
, _b0 (0)
, _b1 (0)
, _b2 (0)
, _b3 (0)
, _b4 (0)
, _b5 (0)
, _b6 (0)
, _wavetable (0)
, _gen_period (0)
, _gen_offset (0)
, _gen_perio2 (0)
, _gen_count2 (0)
, _pass (false)
, _rn1 (0)
, _ltc (0)
, _ltcbuf (0)
{
memset (_buffer, 0, sizeof (_buffer));
}
DummyAudioPort::~DummyAudioPort () {
free(_wavetable);
ltc_encoder_free (_ltc);
delete _ltcbuf;
_wavetable = 0;
_ltc = 0;
_ltcbuf = 0;
}
static std::string format_hz (float freq) {
std::stringstream ss;
if (freq >= 10000) {
2016-07-24 10:47:19 -04:00
ss << std::setprecision (1) << std::fixed << freq / 1000 << "kHz";
} else if (freq >= 1000) {
2016-07-24 10:47:19 -04:00
ss << std::setprecision (2) << std::fixed << freq / 1000 << "kHz";
} else {
ss << std::setprecision (1) << std::fixed << freq << "Hz";
}
return ss.str ();
}
static size_t fit_wave (float freq, float rate, float precision = 0.001) {
const size_t max_mult = floor (freq * rate);
float minErr = 2;
size_t fact = 1;
for (size_t i = 1; i < max_mult; ++i) {
const float isc = rate * (float)i / freq; // ideal sample count
const float rsc = rintf (isc); // rounded sample count
const float err = fabsf (isc - rsc);
if (err < minErr) {
minErr = err;
fact = i;
}
if (err < precision) {
break;
}
}
//printf(" FIT %8.1f Hz / %8.1f Hz * %ld = %.0f (err: %e)\n", freq, rate, fact, fact * rate / freq, minErr);
return fact;
}
std::string
DummyAudioPort::setup_generator (GeneratorType const g, float const samplerate, int c, int total)
{
std::string name;
2014-09-23 19:04:19 -04:00
DummyPort::setup_random_number_generator();
_gen_type = g;
switch (_gen_type) {
case PinkNoise:
case PonyNoise:
case UniformWhiteNoise:
case GaussianWhiteNoise:
case DC05:
case Silence:
break;
case Demolition:
_gen_period = 3 * samplerate;
break;
case KronekerDelta:
_gen_period = (5 + randi() % (int)(samplerate / 20.f));
name = "Delta " + format_hz (samplerate / _gen_period);
break;
case SquareWave:
_gen_period = (5 + randi() % (int)(samplerate / 20.f)) & ~1;
name = "Square " + format_hz (samplerate / _gen_period);
break;
case SineWaveOctaves:
{
2016-05-22 13:36:54 -04:00
const int x = c - floor (((float)total / 2));
float f = powf (2.f, x / 3.f) * 1000.f;
f = std::max (10.f, std::min (samplerate *.5f, f));
const size_t mult = fit_wave (f, samplerate);
_gen_period = rintf ((float)mult * samplerate / f);
name = "Sine " + format_hz (samplerate * mult / (float)_gen_period);
_wavetable = (Sample*) malloc (_gen_period * sizeof(Sample));
for (uint32_t i = 0 ; i < _gen_period; ++i) {
_wavetable[i] = .12589f * sinf(2.0f * M_PI * (float)mult * (float)i / (float)(_gen_period)); // -18dBFS
}
}
break;
case SineWave:
_gen_period = 5 + randi() % (int)(samplerate / 20.f);
name = "Sine " + format_hz (samplerate / _gen_period);
_wavetable = (Sample*) malloc (_gen_period * sizeof(Sample));
for (uint32_t i = 0 ; i < _gen_period; ++i) {
_wavetable[i] = .12589f * sinf(2.0f * M_PI * (float)i / (float)_gen_period); // -18dBFS
}
break;
case SquareSweep:
case SquareSweepSwell:
case SineSweep:
case SineSweepSwell:
{
_gen_period = 5 * samplerate + randi() % (int)(samplerate * 10.f);
_gen_period &= ~1;
_gen_perio2 = 1 | (int)ceilf (_gen_period * .89f); // Volume Swell period
const double f_min = 20.;
const double f_max = samplerate * .5;
const double g_p2 = _gen_period * .5;
#ifdef LINEAR_SWEEP
const double b = (f_max - f_min) / (2. * samplerate * g_p2);
const double a = f_min / samplerate;
#else
const double b = log (f_max / f_min) / g_p2;
const double a = f_min / (b * samplerate);
#endif
2015-03-07 20:01:48 -05:00
const uint32_t g_p2i = rint(g_p2);
_wavetable = (Sample*) malloc (_gen_period * sizeof(Sample));
2015-03-07 20:01:48 -05:00
for (uint32_t i = 0 ; i < g_p2i; ++i) {
#ifdef LINEAR_SWEEP
const double phase = i * (a + b * i);
#else
const double phase = a * exp (b * i) - a;
#endif
_wavetable[i] = (float)sin (2. * M_PI * (phase - floor (phase)));
}
2015-03-07 20:01:48 -05:00
for (uint32_t i = g_p2i; i < _gen_period; ++i) {
const uint32_t j = _gen_period - i;
#ifdef LINEAR_SWEEP
const double phase = j * (a + b * j);
#else
const double phase = a * exp (b * j) - a;
#endif
2015-04-17 11:08:52 -04:00
_wavetable[i] = -(float)sin (2. * M_PI * (phase - floor (phase)));
}
if (_gen_type == SquareSweep) {
for (uint32_t i = 0 ; i < _gen_period; ++i) {
_wavetable[i] = _wavetable[i] < 0 ? -.40709f : .40709f;
}
}
else if (_gen_type == SquareSweepSwell) {
for (uint32_t i = 0 ; i < _gen_period; ++i) {
_wavetable[i] = _wavetable[i] < 0 ? -1 : 1;
}
}
}
break;
case LTC:
switch (c % 4) {
case 0:
_ltc = ltc_encoder_create (samplerate, 25, LTC_TV_625_50, 0);
name = "LTC25";
break;
case 1:
_ltc = ltc_encoder_create (samplerate, 30, LTC_TV_1125_60, 0);
name = "LTC30";
break;
case 2:
_ltc = ltc_encoder_create (samplerate, 30001.f / 1001.f, LTC_TV_525_60, 0);
name = "LTC29df";
break;
case 3:
_ltc = ltc_encoder_create (samplerate, 24, LTC_TV_FILM_24, 0);
2017-07-31 08:26:39 -04:00
name = "LTC24";
break;
}
_ltc_spd = 1.0;
_ltc_rand = floor((float)c / 4) * .001f;
if (c < 4) {
name += " (locked)";
} else {
name += " (varspd)";
}
SMPTETimecode tc;
tc.years = 0;
tc.months = 0;
tc.days = 0;
tc.hours = (3 * (c / 4)) % 24; // XXX
tc.mins = 0;
tc.secs = 0;
tc.frame = 0;
ltc_encoder_set_timecode (_ltc, &tc);
name += string_compose ("@%1h", (int)tc.hours);
_ltcbuf = new RingBuffer<Sample> (std::max (DummyAudioBackend::max_buffer_size() * 2.f, samplerate));
break;
2014-10-11 08:47:35 -04:00
case Loopback:
_wavetable = (Sample*) malloc (DummyAudioBackend::max_buffer_size() * sizeof(Sample));
break;
}
return name;
}
void DummyAudioPort::midi_to_wavetable (DummyMidiBuffer const * const src, size_t n_samples)
{
memset(_wavetable, 0, n_samples * sizeof(float));
/* generate an audio spike for every midi message
* to verify layency-compensation alignment
* (here: midi-out playback-latency + audio-in capture-latency)
*/
for (DummyMidiBuffer::const_iterator it = src->begin (); it != src->end (); ++it) {
const pframes_t t = (*it)->timestamp();
assert(t < n_samples);
// somewhat arbitrary mapping for quick visual feedback
float v = -.5f;
if ((*it)->size() == 3) {
const unsigned char *d = (*it)->const_data();
if ((d[0] & 0xf0) == 0x90) { // note on
v = .25f + d[2] / 512.f;
}
else if ((d[0] & 0xf0) == 0x80) { // note off
v = .3f - d[2] / 640.f;
}
else if ((d[0] & 0xf0) == 0xb0) { // CC
v = -.1f - d[2] / 256.f;
}
}
_wavetable[t] += v;
}
}
float DummyAudioPort::grandf ()
{
// Gaussian White Noise
// http://www.musicdsp.org/archive.php?classid=0#109
float x1, x2, r;
if (_pass) {
_pass = false;
return _rn1;
}
do {
x1 = randf ();
x2 = randf ();
r = x1 * x1 + x2 * x2;
} while ((r >= 1.0f) || (r < 1e-22f));
r = sqrtf (-2.f * logf (r) / r);
_pass = true;
_rn1 = r * x2;
return r * x1;
}
/* inspired by jack-demolition by Steve Harris */
static const float _demolition[] = {
0.0f, /* special case - 0dbFS white noise */
0.0f, /* zero, may cause denomrals following a signal */
0.73 / 1e45, /* very small - should be denormal when floated */
3.7f, /* arbitrary number > 0dBFS */
-4.3f, /* arbitrary negative number > 0dBFS */
4294967395.0f, /* 2^16 + 100 */
-4294967395.0f,
HUGE, /* Big, non-inf number */
INFINITY, /* +inf */
-INFINITY, /* -inf */
-NAN, /* -nan */
NAN, /* nan */
0.0f, /* some silence to check for recovery */
};
void DummyAudioPort::generate (const pframes_t n_samples)
{
Glib::Threads::Mutex::Lock lm (generator_lock);
if (_gen_cycle) {
return;
}
switch (_gen_type) {
case Silence:
memset (_buffer, 0, n_samples * sizeof (Sample));
break;
case DC05:
for (pframes_t i = 0 ; i < n_samples; ++i) {
_buffer[i] = 0.5f;
}
break;
case Demolition:
switch (_gen_count2) {
case 0: // noise
for (pframes_t i = 0 ; i < n_samples; ++i) {
_buffer[i] = randf();
}
break;
default:
for (pframes_t i = 0 ; i < n_samples; ++i) {
_buffer[i] = _demolition [_gen_count2];
}
break;
}
_gen_offset += n_samples;
if (_gen_offset > _gen_period) {
_gen_offset = 0;
_gen_count2 = (_gen_count2 + 1) % (sizeof (_demolition) / sizeof (float));
}
break;
case SquareWave:
assert(_gen_period > 0);
for (pframes_t i = 0 ; i < n_samples; ++i) {
if (_gen_offset < _gen_period * .5f) {
_buffer[i] = .40709f; // -6dBFS
} else {
_buffer[i] = -.40709f;
}
_gen_offset = (_gen_offset + 1) % _gen_period;
}
break;
case KronekerDelta:
assert(_gen_period > 0);
memset (_buffer, 0, n_samples * sizeof (Sample));
for (pframes_t i = 0; i < n_samples; ++i) {
if (_gen_offset == 0) {
2014-09-24 11:18:20 -04:00
_buffer[i] = 1.0f;
}
_gen_offset = (_gen_offset + 1) % _gen_period;
}
break;
case SineSweepSwell:
case SquareSweepSwell:
assert(_wavetable && _gen_period > 0);
{
const float vols = 2.f / (float)_gen_perio2;
for (pframes_t i = 0; i < n_samples; ++i) {
const float g = fabsf (_gen_count2 * vols - 1.f);
_buffer[i] = g * _wavetable[_gen_offset];
_gen_offset = (_gen_offset + 1) % _gen_period;
_gen_count2 = (_gen_count2 + 1) % _gen_perio2;
}
}
break;
2014-10-11 08:47:35 -04:00
case Loopback:
2017-08-03 21:39:27 -04:00
memcpy((void*)_buffer, (void*)_wavetable, n_samples * sizeof(Sample));
break;
case SineWave:
case SineWaveOctaves:
case SineSweep:
case SquareSweep:
assert(_wavetable && _gen_period > 0);
{
pframes_t written = 0;
while (written < n_samples) {
const uint32_t remain = n_samples - written;
const uint32_t to_copy = std::min(remain, _gen_period - _gen_offset);
memcpy((void*)&_buffer[written],
(void*)&_wavetable[_gen_offset],
to_copy * sizeof(Sample));
written += to_copy;
_gen_offset = (_gen_offset + to_copy) % _gen_period;
}
}
break;
case UniformWhiteNoise:
for (pframes_t i = 0 ; i < n_samples; ++i) {
_buffer[i] = .158489f * randf();
}
break;
case GaussianWhiteNoise:
for (pframes_t i = 0 ; i < n_samples; ++i) {
_buffer[i] = .089125f * grandf();
}
break;
case PinkNoise:
for (pframes_t i = 0 ; i < n_samples; ++i) {
// Paul Kellet's refined method
// http://www.musicdsp.org/files/pink.txt
// NB. If 'white' consists of uniform random numbers,
// the pink noise will have an almost gaussian distribution.
const float white = .0498f * randf ();
_b0 = .99886f * _b0 + white * .0555179f;
_b1 = .99332f * _b1 + white * .0750759f;
_b2 = .96900f * _b2 + white * .1538520f;
_b3 = .86650f * _b3 + white * .3104856f;
_b4 = .55000f * _b4 + white * .5329522f;
_b5 = -.7616f * _b5 - white * .0168980f;
2014-09-24 11:18:20 -04:00
_buffer[i] = _b0 + _b1 + _b2 + _b3 + _b4 + _b5 + _b6 + white * 0.5362f;
_b6 = white * 0.115926f;
}
break;
case PonyNoise:
for (pframes_t i = 0 ; i < n_samples; ++i) {
const float white = 0.0498f * randf ();
// Paul Kellet's economy method
// http://www.musicdsp.org/files/pink.txt
2014-09-24 11:18:20 -04:00
_b0 = 0.99765f * _b0 + white * 0.0990460f;
_b1 = 0.96300f * _b1 + white * 0.2965164f;
_b2 = 0.57000f * _b2 + white * 1.0526913f;
_buffer[i] = _b0 + _b1 + _b2 + white * 0.1848f;
}
break;
case LTC:
while (_ltcbuf->read_space () < n_samples) {
// we should pre-allocate (or add a zero-copy libltc API), whatever.
ltcsnd_sample_t* enc_buf = (ltcsnd_sample_t*) malloc (ltc_encoder_get_buffersize (_ltc) * sizeof (ltcsnd_sample_t));
for (int byteCnt = 0; byteCnt < 10; byteCnt++) {
if (_ltc_rand != 0.f) {
_ltc_spd += randf () * _ltc_rand;
_ltc_spd = std::min (1.5f, std::max (0.5f, _ltc_spd));
}
ltc_encoder_encode_byte (_ltc, byteCnt, _ltc_spd);
const int len = ltc_encoder_get_buffer (_ltc, enc_buf);
for (int i = 0; i < len; ++i) {
const float v1 = enc_buf[i] - 128;
Sample v = v1 * 0.002;
_ltcbuf->write (&v, 1);
}
}
ltc_encoder_inc_timecode (_ltc);
free (enc_buf);
}
_ltcbuf->read (_buffer, n_samples);
break;
}
_gen_cycle = true;
}
void* DummyAudioPort::get_buffer (pframes_t n_samples)
{
if (is_input ()) {
const std::set<DummyPort *>& connections = get_connections ();
std::set<DummyPort*>::const_iterator it = connections.begin ();
if (it == connections.end ()) {
memset (_buffer, 0, n_samples * sizeof (Sample));
} else {
DummyAudioPort * source = static_cast<DummyAudioPort*>(*it);
assert (source && source->is_output ());
if (source->is_physical() && source->is_terminal()) {
source->get_buffer(n_samples); // generate signal.
}
memcpy (_buffer, source->const_buffer (), n_samples * sizeof (Sample));
while (++it != connections.end ()) {
source = static_cast<DummyAudioPort*>(*it);
assert (source && source->is_output ());
Sample* dst = buffer ();
if (source->is_physical() && source->is_terminal()) {
source->get_buffer(n_samples); // generate signal.
}
const Sample* src = source->const_buffer ();
for (uint32_t s = 0; s < n_samples; ++s, ++dst, ++src) {
*dst += *src;
}
}
}
} else if (is_output () && is_physical () && is_terminal()) {
if (!_gen_cycle) {
generate(n_samples);
}
}
return _buffer;
}
DummyMidiPort::DummyMidiPort (DummyAudioBackend &b, const std::string& name, PortFlags flags)
: DummyPort (b, name, flags)
2014-09-23 19:04:19 -04:00
, _midi_seq_spb (0)
, _midi_seq_time (0)
, _midi_seq_pos (0)
{
_buffer.clear ();
_loopback.clear ();
}
DummyMidiPort::~DummyMidiPort () {
_buffer.clear ();
_loopback.clear ();
}
struct MidiEventSorter {
bool operator() (const boost::shared_ptr<DummyMidiEvent>& a, const boost::shared_ptr<DummyMidiEvent>& b) {
return *a < *b;
}
};
void DummyMidiPort::set_loopback (DummyMidiBuffer const * const src)
{
_loopback.clear ();
for (DummyMidiBuffer::const_iterator it = src->begin (); it != src->end (); ++it) {
_loopback.push_back (boost::shared_ptr<DummyMidiEvent>(new DummyMidiEvent (**it)));
}
}
std::string
DummyMidiPort::setup_generator (int seq_id, const float sr)
2014-09-23 19:04:19 -04:00
{
DummyPort::setup_random_number_generator();
_midi_seq_dat = DummyMidiData::sequences[seq_id % NUM_MIDI_EVENT_GENERATORS];
2014-09-24 11:18:20 -04:00
_midi_seq_spb = sr * .5f; // 120 BPM, beat_time 1.0 per beat.
2014-09-23 19:04:19 -04:00
_midi_seq_pos = 0;
_midi_seq_time = 0;
return DummyMidiData::sequence_names[seq_id];
2014-09-23 19:04:19 -04:00
}
void DummyMidiPort::midi_generate (const pframes_t n_samples)
{
Glib::Threads::Mutex::Lock lm (generator_lock);
if (_gen_cycle) {
return;
}
_buffer.clear ();
_gen_cycle = true;
if (_midi_seq_spb == 0 || !_midi_seq_dat) {
for (DummyMidiBuffer::const_iterator it = _loopback.begin (); it != _loopback.end (); ++it) {
_buffer.push_back (boost::shared_ptr<DummyMidiEvent>(new DummyMidiEvent (**it)));
}
2014-09-23 19:04:19 -04:00
return;
}
while (1) {
const int32_t ev_beat_time = _midi_seq_dat[_midi_seq_pos].beat_time * _midi_seq_spb - _midi_seq_time;
if (ev_beat_time < 0) {
break;
}
if ((pframes_t) ev_beat_time >= n_samples) {
break;
}
_buffer.push_back (boost::shared_ptr<DummyMidiEvent>(new DummyMidiEvent (
2014-12-29 08:09:46 -05:00
ev_beat_time,
_midi_seq_dat[_midi_seq_pos].event,
_midi_seq_dat[_midi_seq_pos].size
2014-09-23 19:04:19 -04:00
)));
++_midi_seq_pos;
if (_midi_seq_dat[_midi_seq_pos].event[0] == 0xff && _midi_seq_dat[_midi_seq_pos].event[1] == 0xff) {
_midi_seq_time -= _midi_seq_dat[_midi_seq_pos].beat_time * _midi_seq_spb;
_midi_seq_pos = 0;
}
}
_midi_seq_time += n_samples;
}
void* DummyMidiPort::get_buffer (pframes_t n_samples)
{
if (is_input ()) {
_buffer.clear ();
const std::set<DummyPort*>& connections = get_connections ();
for (std::set<DummyPort*>::const_iterator i = connections.begin ();
i != connections.end ();
++i) {
2014-09-23 19:04:19 -04:00
DummyMidiPort * source = static_cast<DummyMidiPort*>(*i);
if (source->is_physical() && source->is_terminal()) {
source->get_buffer(n_samples); // generate signal.
}
const DummyMidiBuffer *src = source->const_buffer ();
for (DummyMidiBuffer::const_iterator it = src->begin (); it != src->end (); ++it) {
_buffer.push_back (boost::shared_ptr<DummyMidiEvent>(new DummyMidiEvent (**it)));
}
}
std::stable_sort (_buffer.begin (), _buffer.end (), MidiEventSorter());
} else if (is_output () && is_physical () && is_terminal()) {
2014-09-23 19:04:19 -04:00
if (!_gen_cycle) {
midi_generate(n_samples);
}
}
return &_buffer;
}
DummyMidiEvent::DummyMidiEvent (const pframes_t timestamp, const uint8_t* data, size_t size)
: _size (size)
, _timestamp (timestamp)
, _data (0)
{
if (size > 0) {
_data = (uint8_t*) malloc (size);
memcpy (_data, data, size);
}
}
DummyMidiEvent::DummyMidiEvent (const DummyMidiEvent& other)
: _size (other.size ())
, _timestamp (other.timestamp ())
, _data (0)
{
if (other.size () && other.const_data ()) {
_data = (uint8_t*) malloc (other.size ());
memcpy (_data, other.const_data (), other.size ());
}
};
DummyMidiEvent::~DummyMidiEvent () {
free (_data);
};