Use RCU to for IO::_ports (#9730) 1/2
This removes the _io_lock in favor of a RCU. The reason for this change is to ensure data structure consistency, notably iterators. Previously adding/removing ports invalidated iterators, which caused [rare] crashes, since IO::ports() simply returned a PortSet reference. (This breaks API)
This commit is contained in:
parent
8718a1ba99
commit
2e23ec4422
@ -71,8 +71,8 @@ public:
|
||||
|
||||
void clear();
|
||||
|
||||
void attach_buffers (PortSet& ports);
|
||||
void get_backend_port_addresses (PortSet &, samplecnt_t);
|
||||
void attach_buffers (PortSet const& ports);
|
||||
void get_backend_port_addresses (PortSet&, samplecnt_t);
|
||||
|
||||
/* the capacity here is a size_t and has a different interpretation depending
|
||||
on the DataType of the buffers. for audio, its a sample count. for MIDI
|
||||
|
@ -31,6 +31,7 @@
|
||||
|
||||
#include "pbd/fastlog.h"
|
||||
#include "pbd/undo.h"
|
||||
#include "pbd/rcu.h"
|
||||
#include "pbd/statefuldestructible.h"
|
||||
#include "pbd/controllable.h"
|
||||
#include "pbd/enum_convert.h"
|
||||
@ -131,25 +132,18 @@ public:
|
||||
void set_public_port_latencies (samplecnt_t value, bool playback) const;
|
||||
void set_public_port_latency_from_connections () const;
|
||||
|
||||
PortSet& ports() { return _ports; }
|
||||
const PortSet& ports() const { return _ports; }
|
||||
std::shared_ptr<PortSet> ports ();
|
||||
std::shared_ptr<PortSet const> ports () const;
|
||||
|
||||
bool has_port (std::shared_ptr<Port>) const;
|
||||
|
||||
std::shared_ptr<Port> nth (uint32_t n) const {
|
||||
if (n < _ports.num_ports()) {
|
||||
return _ports.port(n);
|
||||
} else {
|
||||
return std::shared_ptr<Port> ();
|
||||
}
|
||||
}
|
||||
|
||||
std::shared_ptr<Port> nth (uint32_t n) const;
|
||||
std::shared_ptr<Port> port_by_name (const std::string& str) const;
|
||||
|
||||
std::shared_ptr<AudioPort> audio(uint32_t n) const;
|
||||
std::shared_ptr<MidiPort> midi(uint32_t n) const;
|
||||
|
||||
const ChanCount& n_ports () const { return _ports.count(); }
|
||||
const ChanCount& n_ports () const;
|
||||
|
||||
/* The process lock will be held on emission of this signal if
|
||||
* IOChange contains ConfigurationChanged. In other cases,
|
||||
@ -212,8 +206,7 @@ protected:
|
||||
bool _sendish;
|
||||
|
||||
private:
|
||||
mutable Glib::Threads::RWLock _io_lock;
|
||||
PortSet _ports;
|
||||
SerializedRCUManager<PortSet> _ports;
|
||||
|
||||
void reestablish_port_subscriptions ();
|
||||
PBD::ScopedConnectionList _port_connections;
|
||||
@ -244,8 +237,8 @@ private:
|
||||
|
||||
int ensure_ports_locked (ChanCount, bool clear, bool& changed);
|
||||
|
||||
std::string build_legal_port_name (DataType type);
|
||||
int32_t find_port_hole (const char* base);
|
||||
std::string build_legal_port_name (std::shared_ptr<PortSet const>, DataType type);
|
||||
int32_t find_port_hole (std::shared_ptr<PortSet const>, const char* base);
|
||||
|
||||
void setup_bundle ();
|
||||
std::string bundle_channel_name (uint32_t, uint32_t, DataType) const;
|
||||
|
@ -41,7 +41,7 @@ class MidiPort;
|
||||
* and once in a vector of all port (_all_ports). This is to speed up the
|
||||
* fairly common case of iterating over all ports.
|
||||
*/
|
||||
class LIBARDOUR_API PortSet : public boost::noncopyable {
|
||||
class LIBARDOUR_API PortSet {
|
||||
public:
|
||||
PortSet();
|
||||
|
||||
|
@ -102,7 +102,7 @@ BufferSet::clear()
|
||||
* XXX: this *is* called in a process context; I'm not sure quite what `should not' means above.
|
||||
*/
|
||||
void
|
||||
BufferSet::attach_buffers (PortSet& ports)
|
||||
BufferSet::attach_buffers (PortSet const& ports)
|
||||
{
|
||||
const ChanCount& count (ports.count());
|
||||
|
||||
|
@ -262,10 +262,10 @@ Delivery::run (BufferSet& bufs, samplepos_t start_sample, samplepos_t end_sample
|
||||
return;
|
||||
}
|
||||
|
||||
PortSet& ports (_output->ports());
|
||||
std::shared_ptr<PortSet> ports (_output->ports());
|
||||
gain_t tgain;
|
||||
|
||||
if (ports.num_ports () == 0) {
|
||||
if (ports->num_ports () == 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
@ -274,7 +274,7 @@ Delivery::run (BufferSet& bufs, samplepos_t start_sample, samplepos_t end_sample
|
||||
*/
|
||||
|
||||
// TODO delayline -- latency-compensation
|
||||
output_buffers().get_backend_port_addresses (ports, nframes);
|
||||
output_buffers().get_backend_port_addresses (*ports, nframes);
|
||||
|
||||
// this Delivery processor is not a derived type, and thus we assume
|
||||
// we really can modify the buffers passed in (it is almost certainly
|
||||
@ -555,10 +555,8 @@ Delivery::non_realtime_transport_stop (samplepos_t now, bool flush)
|
||||
}
|
||||
|
||||
if (_output) {
|
||||
PortSet& ports (_output->ports());
|
||||
|
||||
for (PortSet::iterator i = ports.begin(); i != ports.end(); ++i) {
|
||||
i->transport_stopped ();
|
||||
for (auto const& p : *_output->ports()) {
|
||||
p->transport_stopped ();
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -567,10 +565,8 @@ void
|
||||
Delivery::realtime_locate (bool for_loop_end)
|
||||
{
|
||||
if (_output) {
|
||||
PortSet& ports (_output->ports());
|
||||
|
||||
for (PortSet::iterator i = ports.begin(); i != ports.end(); ++i) {
|
||||
i->realtime_locate (for_loop_end);
|
||||
for (auto const& p : *_output->ports()) {
|
||||
p->realtime_locate (for_loop_end);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -601,6 +597,7 @@ Delivery::target_gain ()
|
||||
case Listen:
|
||||
mp = MuteMaster::Listen;
|
||||
break;
|
||||
case DirectOuts:
|
||||
case Send:
|
||||
case Insert:
|
||||
case Aux:
|
||||
@ -673,7 +670,7 @@ Delivery::output_changed (IOChange change, void* /*src*/)
|
||||
{
|
||||
if (change.type & IOChange::ConfigurationChanged) {
|
||||
reset_panner ();
|
||||
_output_buffers->attach_buffers (_output->ports ());
|
||||
_output_buffers->attach_buffers (*_output->ports ());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -80,6 +80,7 @@ IO::IO (Session& s, const string& name, Direction dir, DataType default_type, bo
|
||||
, _direction (dir)
|
||||
, _default_type (default_type)
|
||||
, _sendish (sendish)
|
||||
, _ports (new PortSet)
|
||||
{
|
||||
_active = true;
|
||||
setup_bundle ();
|
||||
@ -90,6 +91,7 @@ IO::IO (Session& s, const XMLNode& node, DataType dt, bool sendish)
|
||||
, _direction (Input)
|
||||
, _default_type (dt)
|
||||
, _sendish (sendish)
|
||||
, _ports (new PortSet)
|
||||
{
|
||||
_active = true;
|
||||
|
||||
@ -99,42 +101,38 @@ IO::IO (Session& s, const XMLNode& node, DataType dt, bool sendish)
|
||||
|
||||
IO::~IO ()
|
||||
{
|
||||
DEBUG_TRACE (DEBUG::Ports, string_compose ("IO %1 unregisters %2 ports\n", name(), _ports.num_ports()));
|
||||
DEBUG_TRACE (DEBUG::Ports, string_compose ("IO %1 unregisters %2 ports\n", name(), ports()->num_ports()));
|
||||
|
||||
BLOCK_PROCESS_CALLBACK ();
|
||||
Glib::Threads::RWLock::WriterLock wl (_io_lock);
|
||||
|
||||
for (PortSet::iterator i = _ports.begin(); i != _ports.end(); ++i) {
|
||||
_session.engine().unregister_port (*i);
|
||||
for (auto const& p : *ports()) {
|
||||
_session.engine().unregister_port (p);
|
||||
}
|
||||
}
|
||||
|
||||
std::shared_ptr<PortSet>
|
||||
IO::ports () {
|
||||
return std::const_pointer_cast<PortSet> (_ports.reader ());
|
||||
}
|
||||
|
||||
std::shared_ptr<PortSet const>
|
||||
IO::ports () const {
|
||||
return _ports.reader ();
|
||||
}
|
||||
|
||||
void
|
||||
IO::connection_change (std::shared_ptr<Port> a, std::shared_ptr<Port> b)
|
||||
{
|
||||
if (_session.deletion_in_progress ()) {
|
||||
return;
|
||||
}
|
||||
/* this could be called from within our own ::disconnect() method(s)
|
||||
or from somewhere that operates directly on a port. so, we don't
|
||||
know for sure if we can take this lock or not. if we fail,
|
||||
we assume that its safely locked by our own ::disconnect().
|
||||
*/
|
||||
|
||||
Glib::Threads::RWLock::WriterLock wl (_io_lock, Glib::Threads::TRY_LOCK);
|
||||
|
||||
if (wl.locked()) {
|
||||
/* we took the lock, so we cannot be here from inside
|
||||
* ::disconnect()
|
||||
*/
|
||||
wl.release (); // release lock before emitting signal
|
||||
if (_ports.contains (a) || _ports.contains (b)) {
|
||||
changed (IOChange (IOChange::ConnectionsChanged), this); /* EMIT SIGNAL */
|
||||
}
|
||||
} else {
|
||||
/* we didn't get the lock, so assume that we're inside
|
||||
* ::disconnect(), and it will call changed() appropriately.
|
||||
*/
|
||||
/* Note:
|
||||
* this could be called from within our own ::disconnect() method(s)
|
||||
* or from somewhere that operates directly on a port.
|
||||
*/
|
||||
std::shared_ptr<PortSet const> ports = _ports.reader();
|
||||
if (ports->contains (a) || ports->contains (b)) {
|
||||
changed (IOChange (IOChange::ConnectionsChanged), this); /* EMIT SIGNAL */
|
||||
}
|
||||
}
|
||||
|
||||
@ -143,9 +141,9 @@ IO::silence (samplecnt_t nframes)
|
||||
{
|
||||
/* io_lock, not taken: function must be called from Session::process() calltree */
|
||||
|
||||
for (PortSet::iterator i = _ports.begin(); i != _ports.end(); ++i) {
|
||||
if (i->port_handle ()) {
|
||||
i->get_buffer(nframes).silence (nframes);
|
||||
for (auto const& p : *ports ()) {
|
||||
if (p->port_handle ()) {
|
||||
p->get_buffer (nframes).silence (nframes);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -157,24 +155,19 @@ IO::disconnect (std::shared_ptr<Port> our_port, string other_port, void* src)
|
||||
return 0;
|
||||
}
|
||||
|
||||
{
|
||||
Glib::Threads::RWLock::ReaderLock rl (_io_lock);
|
||||
/* check that our_port is really one of ours */
|
||||
if (!ports()->contains (our_port)) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* check that our_port is really one of ours */
|
||||
/* disconnect it from the source */
|
||||
|
||||
if ( ! _ports.contains(our_port)) {
|
||||
return -1;
|
||||
}
|
||||
DEBUG_TRACE (DEBUG::PortConnectIO,
|
||||
string_compose("IO::disconnect %1 from %2\n", our_port->name(), other_port));
|
||||
|
||||
/* disconnect it from the source */
|
||||
|
||||
DEBUG_TRACE (DEBUG::PortConnectIO,
|
||||
string_compose("IO::disconnect %1 from %2\n", our_port->name(), other_port));
|
||||
|
||||
if (our_port->disconnect (other_port)) {
|
||||
error << string_compose(_("IO: cannot disconnect port %1 from %2"), our_port->name(), other_port) << endmsg;
|
||||
return -1;
|
||||
}
|
||||
if (our_port->disconnect (other_port)) {
|
||||
error << string_compose(_("IO: cannot disconnect port %1 from %2"), our_port->name(), other_port) << endmsg;
|
||||
return -1;
|
||||
}
|
||||
|
||||
changed (IOChange (IOChange::ConnectionsChanged), src); /* EMIT SIGNAL */
|
||||
@ -191,24 +184,19 @@ IO::connect (std::shared_ptr<Port> our_port, string other_port, void* src)
|
||||
return 0;
|
||||
}
|
||||
|
||||
{
|
||||
Glib::Threads::RWLock::ReaderLock rl (_io_lock);
|
||||
|
||||
/* check that our_port is really one of ours */
|
||||
|
||||
if ( ! _ports.contains(our_port) ) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* connect it to the source */
|
||||
|
||||
DEBUG_TRACE (DEBUG::PortConnectIO,
|
||||
string_compose("IO::connect %1 to %2\n", our_port->name(), other_port));
|
||||
|
||||
if (our_port->connect (other_port)) {
|
||||
return -1;
|
||||
}
|
||||
/* check that our_port is really one of ours */
|
||||
if (!ports()->contains (our_port)) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* connect it to the source */
|
||||
DEBUG_TRACE (DEBUG::PortConnectIO,
|
||||
string_compose("IO::connect %1 to %2\n", our_port->name(), other_port));
|
||||
|
||||
if (our_port->connect (other_port)) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
changed (IOChange (IOChange::ConnectionsChanged), src); /* EMIT SIGNAL */
|
||||
_session.set_dirty ();
|
||||
return 0;
|
||||
@ -223,7 +211,7 @@ IO::can_add_port (DataType type) const
|
||||
case DataType::AUDIO:
|
||||
return true;
|
||||
case DataType::MIDI:
|
||||
return _ports.count ().n_midi() < 1;
|
||||
return ports()->count ().n_midi() < 1;
|
||||
}
|
||||
abort(); /*NOTREACHED*/
|
||||
return false;
|
||||
@ -232,7 +220,7 @@ IO::can_add_port (DataType type) const
|
||||
int
|
||||
IO::remove_port (std::shared_ptr<Port> port, void* src)
|
||||
{
|
||||
ChanCount before = _ports.count ();
|
||||
ChanCount before = ports()->count ();
|
||||
ChanCount after = before;
|
||||
after.set (port->type(), after.get (port->type()) - 1);
|
||||
|
||||
@ -247,26 +235,28 @@ IO::remove_port (std::shared_ptr<Port> port, void* src)
|
||||
BLOCK_PROCESS_CALLBACK ();
|
||||
|
||||
{
|
||||
Glib::Threads::RWLock::WriterLock wl (_io_lock);
|
||||
RCUWriter<PortSet> writer (_ports);
|
||||
std::shared_ptr<PortSet> p = writer.get_copy ();
|
||||
|
||||
if (_ports.remove(port)) {
|
||||
if (p->remove (port)) {
|
||||
change.type = IOChange::Type (change.type | IOChange::ConfigurationChanged);
|
||||
change.before = before;
|
||||
change.after = _ports.count ();
|
||||
change.after = p->count ();
|
||||
|
||||
if (port->connected()) {
|
||||
change.type = IOChange::Type (change.type | IOChange::ConnectionsChanged);
|
||||
}
|
||||
|
||||
_session.engine().unregister_port (port);
|
||||
}
|
||||
_session.engine().unregister_port (port);
|
||||
}
|
||||
|
||||
PortCountChanged (n_ports()); /* EMIT SIGNAL */
|
||||
|
||||
if (change.type != IOChange::NoChange) {
|
||||
changed (change, src);
|
||||
_buffers.attach_buffers (_ports);
|
||||
std::shared_ptr<PortSet const> ports = _ports.reader();
|
||||
_buffers.attach_buffers (*ports);
|
||||
}
|
||||
}
|
||||
|
||||
@ -302,7 +292,7 @@ IO::add_port (string destination, void* src, DataType type)
|
||||
return -1;
|
||||
}
|
||||
|
||||
ChanCount before = _ports.count ();
|
||||
ChanCount before = ports()->count ();
|
||||
ChanCount after = before;
|
||||
after.set (type, after.get (type) + 1);
|
||||
|
||||
@ -316,13 +306,13 @@ IO::add_port (string destination, void* src, DataType type)
|
||||
{
|
||||
BLOCK_PROCESS_CALLBACK ();
|
||||
|
||||
|
||||
/* Create a new port */
|
||||
{
|
||||
Glib::Threads::RWLock::WriterLock wl (_io_lock);
|
||||
RCUWriter<PortSet> writer (_ports);
|
||||
std::shared_ptr<PortSet> p = writer.get_copy ();
|
||||
change.before = p->count ();
|
||||
|
||||
/* Create a new port */
|
||||
|
||||
string portname = build_legal_port_name (type);
|
||||
string portname = build_legal_port_name (p, type);
|
||||
|
||||
if (_direction == Input) {
|
||||
if ((our_port = _session.engine().register_input_port (type, portname)) == 0) {
|
||||
@ -336,15 +326,15 @@ IO::add_port (string destination, void* src, DataType type)
|
||||
}
|
||||
}
|
||||
|
||||
change.before = _ports.count ();
|
||||
_ports.add (our_port);
|
||||
p->add (our_port);
|
||||
change.after = p->count ();
|
||||
}
|
||||
|
||||
PortCountChanged (n_ports()); /* EMIT SIGNAL */
|
||||
|
||||
change.type = IOChange::ConfigurationChanged;
|
||||
change.after = _ports.count ();
|
||||
changed (change, src); /* EMIT SIGNAL */
|
||||
_buffers.attach_buffers (_ports);
|
||||
_buffers.attach_buffers (*ports());
|
||||
}
|
||||
|
||||
if (!destination.empty()) {
|
||||
@ -363,12 +353,8 @@ IO::add_port (string destination, void* src, DataType type)
|
||||
int
|
||||
IO::disconnect (void* src)
|
||||
{
|
||||
{
|
||||
Glib::Threads::RWLock::ReaderLock rl (_io_lock);
|
||||
|
||||
for (PortSet::iterator i = _ports.begin(); i != _ports.end(); ++i) {
|
||||
i->disconnect_all ();
|
||||
}
|
||||
for (auto const& p : *ports()) {
|
||||
p->disconnect_all ();
|
||||
}
|
||||
|
||||
changed (IOChange (IOChange::ConnectionsChanged), src); /* EMIT SIGNAL */
|
||||
@ -385,83 +371,90 @@ IO::ensure_ports_locked (ChanCount count, bool clear, bool& changed)
|
||||
#endif
|
||||
|
||||
std::shared_ptr<Port> port;
|
||||
vector<std::shared_ptr<Port> > deleted_ports;
|
||||
|
||||
changed = false;
|
||||
changed = false;
|
||||
|
||||
for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
|
||||
{
|
||||
RCUWriter<PortSet> writer (_ports);
|
||||
std::shared_ptr<PortSet> p = writer.get_copy ();
|
||||
|
||||
const size_t n = count.get(*t);
|
||||
for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
|
||||
|
||||
/* remove unused ports */
|
||||
for (size_t i = n_ports().get(*t); i > n; --i) {
|
||||
port = _ports.port(*t, i-1);
|
||||
const size_t n = count.get (*t);
|
||||
|
||||
assert(port);
|
||||
_ports.remove(port);
|
||||
const ChanCount n_ports = p->count ();
|
||||
|
||||
/* hold a reference to the port so that we can ensure
|
||||
* that this thread, and not a JACK notification thread,
|
||||
* holds the final reference.
|
||||
/* remove unused ports */
|
||||
vector<std::shared_ptr<Port> > deleted_ports;
|
||||
for (size_t i = n_ports.get (*t); i > n; --i) {
|
||||
port = p->port (*t, i-1);
|
||||
|
||||
assert (port);
|
||||
p->remove (port);
|
||||
|
||||
/* hold a reference to the port so that we can ensure
|
||||
* that this thread, and not a JACK notification thread,
|
||||
* holds the final reference.
|
||||
*/
|
||||
|
||||
deleted_ports.push_back (port);
|
||||
_session.engine().unregister_port (port);
|
||||
|
||||
changed = true;
|
||||
}
|
||||
|
||||
/* this will drop the final reference to the deleted ports,
|
||||
* which will in turn call their destructors, which will in
|
||||
* turn call the backend to unregister them.
|
||||
*
|
||||
* There will no connect/disconnect or register/unregister
|
||||
* callbacks from the backend until we get here, because
|
||||
* they are driven by the Port destructor. The destructor
|
||||
* will not execute until we drop the final reference,
|
||||
* which all happens right .... here.
|
||||
*/
|
||||
deleted_ports.clear ();
|
||||
|
||||
deleted_ports.push_back (port);
|
||||
_session.engine().unregister_port (port);
|
||||
/* create any necessary new ports */
|
||||
while (p->count ().get(*t) < n) {
|
||||
|
||||
changed = true;
|
||||
}
|
||||
string portname = build_legal_port_name (p, *t);
|
||||
|
||||
/* this will drop the final reference to the deleted ports,
|
||||
* which will in turn call their destructors, which will in
|
||||
* turn call the backend to unregister them.
|
||||
*
|
||||
* There will no connect/disconnect or register/unregister
|
||||
* callbacks from the backend until we get here, because
|
||||
* they are driven by the Port destructor. The destructor
|
||||
* will not execute until we drop the final reference,
|
||||
* which all happens right .... here.
|
||||
*/
|
||||
deleted_ports.clear ();
|
||||
try {
|
||||
|
||||
/* create any necessary new ports */
|
||||
while (n_ports().get(*t) < n) {
|
||||
|
||||
string portname = build_legal_port_name (*t);
|
||||
|
||||
try {
|
||||
|
||||
if (_direction == Input) {
|
||||
if ((port = _session.engine().register_input_port (*t, portname)) == 0) {
|
||||
error << string_compose(_("IO: cannot register input port %1"), portname) << endmsg;
|
||||
return -1;
|
||||
}
|
||||
} else {
|
||||
if ((port = _session.engine().register_output_port (*t, portname)) == 0) {
|
||||
error << string_compose(_("IO: cannot register output port %1"), portname) << endmsg;
|
||||
return -1;
|
||||
if (_direction == Input) {
|
||||
if ((port = _session.engine().register_input_port (*t, portname)) == 0) {
|
||||
error << string_compose(_("IO: cannot register input port %1"), portname) << endmsg;
|
||||
return -1;
|
||||
}
|
||||
} else {
|
||||
if ((port = _session.engine().register_output_port (*t, portname)) == 0) {
|
||||
error << string_compose(_("IO: cannot register output port %1"), portname) << endmsg;
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
} catch (AudioEngine::PortRegistrationFailure& err) {
|
||||
/* pass it on */
|
||||
throw;
|
||||
}
|
||||
}
|
||||
|
||||
catch (AudioEngine::PortRegistrationFailure& err) {
|
||||
/* pass it on */
|
||||
throw;
|
||||
p->add (port);
|
||||
changed = true;
|
||||
}
|
||||
|
||||
_ports.add (port);
|
||||
changed = true;
|
||||
}
|
||||
/* end of RCUWriter scope */
|
||||
}
|
||||
|
||||
if (changed) {
|
||||
PortCountChanged (n_ports()); /* EMIT SIGNAL */
|
||||
const ChanCount n_ports = ports ()->count ();
|
||||
PortCountChanged (n_ports); /* EMIT SIGNAL */
|
||||
_session.set_dirty ();
|
||||
}
|
||||
|
||||
if (clear) {
|
||||
/* disconnect all existing ports so that we get a fresh start */
|
||||
for (PortSet::iterator i = _ports.begin(); i != _ports.end(); ++i) {
|
||||
i->disconnect_all ();
|
||||
for (auto const& p : *ports ()) {
|
||||
p->disconnect_all ();
|
||||
}
|
||||
}
|
||||
|
||||
@ -476,28 +469,24 @@ IO::ensure_ports (ChanCount count, bool clear, void* src)
|
||||
assert (!AudioEngine::instance()->process_lock().trylock());
|
||||
#endif
|
||||
|
||||
bool changed = false;
|
||||
|
||||
if (count == n_ports() && !clear) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
bool changed = false;
|
||||
IOChange change;
|
||||
|
||||
change.before = _ports.count ();
|
||||
change.before = ports()->count ();
|
||||
|
||||
{
|
||||
Glib::Threads::RWLock::WriterLock wl (_io_lock);
|
||||
if (ensure_ports_locked (count, clear, changed)) {
|
||||
return -1;
|
||||
}
|
||||
if (ensure_ports_locked (count, clear, changed)) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (changed) {
|
||||
change.after = _ports.count ();
|
||||
change.after = ports()->count ();
|
||||
change.type = IOChange::ConfigurationChanged;
|
||||
this->changed (change, src); /* EMIT SIGNAL */
|
||||
_buffers.attach_buffers (_ports);
|
||||
_buffers.attach_buffers (*ports());
|
||||
setup_bundle ();
|
||||
_session.set_dirty ();
|
||||
}
|
||||
@ -509,8 +498,8 @@ void
|
||||
IO::reestablish_port_subscriptions ()
|
||||
{
|
||||
_port_connections.drop_connections ();
|
||||
for (PortSet::iterator i = _ports.begin(); i != _ports.end(); ++i) {
|
||||
i->ConnectedOrDisconnected.connect_same_thread (*this, boost::bind (&IO::connection_change, this, _1, _2));
|
||||
for (auto const& p : *ports ()) {
|
||||
p->ConnectedOrDisconnected.connect_same_thread (*this, boost::bind (&IO::connection_change, this, _1, _2));
|
||||
}
|
||||
}
|
||||
|
||||
@ -535,7 +524,6 @@ XMLNode&
|
||||
IO::state () const
|
||||
{
|
||||
XMLNode* node = new XMLNode (state_node_name);
|
||||
Glib::Threads::RWLock::WriterLock wl (_io_lock);
|
||||
|
||||
node->set_property ("name", name());
|
||||
node->set_property ("id", id ());
|
||||
@ -546,8 +534,8 @@ IO::state () const
|
||||
node->set_property("pretty-name", _pretty_name_prefix);
|
||||
}
|
||||
|
||||
for (PortSet::const_iterator i = _ports.begin(); i != _ports.end(); ++i) {
|
||||
node->add_child_nocopy (i->get_state ());
|
||||
for (auto const& p : *_ports.reader ()) {
|
||||
node->add_child_nocopy (p->get_state ());
|
||||
}
|
||||
|
||||
return *node;
|
||||
@ -595,9 +583,11 @@ IO::set_state (const XMLNode& node, int version)
|
||||
* This is needed to properly restore connections when creating
|
||||
* external sends from templates because the IO name changes.
|
||||
*/
|
||||
PortSet::iterator i = _ports.begin();
|
||||
XMLNodeConstIterator x = node.children().begin();
|
||||
for (; i != _ports.end() && x != node.children().end(); ++i, ++x) {
|
||||
std::shared_ptr<PortSet const> ports = _ports.reader ();
|
||||
|
||||
PortSet::const_iterator i = ports->begin();
|
||||
XMLNodeConstIterator x = node.children().begin();
|
||||
for (; i != ports->end() && x != node.children().end(); ++i, ++x) {
|
||||
if ((*x)->name() == "Port") {
|
||||
(*x)->remove_property (X_("name"));
|
||||
(*x)->set_property (X_("name"), i->name());
|
||||
@ -1125,11 +1115,11 @@ IO::set_name (const string& requested_name)
|
||||
|
||||
name = legalize_io_name (name);
|
||||
|
||||
for (PortSet::iterator i = _ports.begin(); i != _ports.end(); ++i) {
|
||||
string current_name = i->name();
|
||||
for (auto const& p : *ports ()) {
|
||||
string current_name = p->name();
|
||||
assert (current_name.find (_name) != std::string::npos);
|
||||
current_name.replace (current_name.find (_name), _name.val().length(), name);
|
||||
i->set_name (current_name);
|
||||
p->set_name (current_name);
|
||||
}
|
||||
|
||||
bool const r = SessionObject::set_name (name);
|
||||
@ -1156,11 +1146,11 @@ IO::apply_pretty_name ()
|
||||
if (_pretty_name_prefix.empty ()) {
|
||||
return;
|
||||
}
|
||||
for (PortSet::iterator i = _ports.begin (); i != _ports.end(); ++i, ++pn) {
|
||||
(*i)->set_pretty_name (string_compose (("%1/%2 %3"),
|
||||
_pretty_name_prefix,
|
||||
_direction == Output ? S_("IO|Out") : S_("IO|In"),
|
||||
pn));
|
||||
for (auto const& p : *ports ()) {
|
||||
p->set_pretty_name (string_compose (("%1/%2 %3"),
|
||||
_pretty_name_prefix,
|
||||
_direction == Output ? S_("IO|Out") : S_("IO|In"),
|
||||
pn++));
|
||||
}
|
||||
}
|
||||
|
||||
@ -1169,8 +1159,8 @@ IO::set_private_port_latencies (samplecnt_t value, bool playback)
|
||||
{
|
||||
LatencyRange lat;
|
||||
lat.min = lat.max = value;
|
||||
for (PortSet::iterator i = _ports.begin (); i != _ports.end(); ++i) {
|
||||
i->set_private_latency_range (lat, playback);
|
||||
for (auto const& p : *ports ()) {
|
||||
p->set_private_latency_range (lat, playback);
|
||||
}
|
||||
}
|
||||
|
||||
@ -1184,11 +1174,13 @@ IO::set_public_port_latency_from_connections () const
|
||||
lr.min = ~((pframes_t) 0);
|
||||
lr.max = 0;
|
||||
|
||||
for (PortSet::const_iterator i = _ports.begin(); i != _ports.end(); ++i) {
|
||||
if (i->connected()) {
|
||||
std::shared_ptr<PortSet const> ps = ports ();
|
||||
|
||||
for (auto const& p : *ps) {
|
||||
if (p->connected()) {
|
||||
connected = true;
|
||||
}
|
||||
i->collect_latency_from_backend (lr, playback);
|
||||
p->collect_latency_from_backend (lr, playback);
|
||||
}
|
||||
|
||||
if (!connected) {
|
||||
@ -1196,8 +1188,8 @@ IO::set_public_port_latency_from_connections () const
|
||||
lr.min = lr.max = latency ();
|
||||
}
|
||||
|
||||
for (PortSet::const_iterator i = _ports.begin (); i != _ports.end(); ++i) {
|
||||
i->set_public_latency_range (lr, playback);
|
||||
for (auto const& p : *ps) {
|
||||
p->set_public_latency_range (lr, playback);
|
||||
}
|
||||
}
|
||||
|
||||
@ -1206,8 +1198,8 @@ IO::set_public_port_latencies (samplecnt_t value, bool playback) const
|
||||
{
|
||||
LatencyRange lat;
|
||||
lat.min = lat.max = value;
|
||||
for (PortSet::const_iterator i = _ports.begin (); i != _ports.end(); ++i) {
|
||||
i->set_public_latency_range (lat, playback);
|
||||
for (auto const& p : *_ports.reader ()) {
|
||||
p->set_public_latency_range (lat, playback);
|
||||
}
|
||||
}
|
||||
|
||||
@ -1216,11 +1208,9 @@ IO::latency () const
|
||||
{
|
||||
samplecnt_t max_latency = 0;
|
||||
|
||||
Glib::Threads::RWLock::ReaderLock rl (_io_lock);
|
||||
|
||||
for (PortSet::const_iterator i = _ports.begin(); i != _ports.end(); ++i) {
|
||||
for (auto const& p : *_ports.reader ()) {
|
||||
samplecnt_t latency;
|
||||
if ((latency = i->private_latency_range (_direction == Output).max) > max_latency) {
|
||||
if ((latency = p->private_latency_range (_direction == Output).max) > max_latency) {
|
||||
DEBUG_TRACE (DEBUG::LatencyIO, string_compose ("port %1 has %2 latency of %3 - use\n",
|
||||
name(),
|
||||
((_direction == Output) ? "PLAYBACK" : "CAPTURE"),
|
||||
@ -1230,7 +1220,7 @@ IO::latency () const
|
||||
}
|
||||
|
||||
DEBUG_TRACE (DEBUG::LatencyIO, string_compose ("%1: max %4 latency from %2 ports = %3\n",
|
||||
name(), _ports.num_ports(), max_latency,
|
||||
name(), ports()->num_ports(), max_latency,
|
||||
((_direction == Output) ? "PLAYBACK" : "CAPTURE")));
|
||||
return max_latency;
|
||||
}
|
||||
@ -1272,27 +1262,27 @@ IO::connected_latency (bool for_playback) const
|
||||
* -> Route::update_signal_latency ()
|
||||
* -> IO::connected_latency ()
|
||||
*/
|
||||
Glib::Threads::RWLock::ReaderLock rl (_io_lock);
|
||||
std::shared_ptr<PortSet const> ps = ports ();
|
||||
|
||||
samplecnt_t max_latency = 0;
|
||||
bool connected = false;
|
||||
|
||||
/* if output is not connected to anything, use private latency */
|
||||
for (PortSet::const_iterator i = _ports.begin(); i != _ports.end(); ++i) {
|
||||
if (i->connected()) {
|
||||
for (auto const& p : *ps) {
|
||||
if (p->connected()) {
|
||||
connected = true;
|
||||
max_latency = 0;
|
||||
break;
|
||||
}
|
||||
samplecnt_t latency;
|
||||
if ((latency = i->private_latency_range (for_playback).max) > max_latency) {
|
||||
if ((latency = p->private_latency_range (for_playback).max) > max_latency) {
|
||||
max_latency = latency;
|
||||
}
|
||||
}
|
||||
if (connected) {
|
||||
for (PortSet::const_iterator i = _ports.begin(); i != _ports.end(); ++i) {
|
||||
for (auto const& p : *ps) {
|
||||
LatencyRange lr;
|
||||
i->get_connected_latency_range (lr, for_playback);
|
||||
p->get_connected_latency_range (lr, for_playback);
|
||||
if (lr.max > max_latency) {
|
||||
max_latency = lr.max;
|
||||
}
|
||||
@ -1312,19 +1302,14 @@ IO::connect_ports_to_bundle (std::shared_ptr<Bundle> c, bool exclusive,
|
||||
{
|
||||
BLOCK_PROCESS_CALLBACK ();
|
||||
|
||||
{
|
||||
Glib::Threads::RWLock::ReaderLock rl (_io_lock);
|
||||
|
||||
if (exclusive) {
|
||||
for (PortSet::iterator i = _ports.begin(); i != _ports.end(); ++i) {
|
||||
i->disconnect_all ();
|
||||
}
|
||||
if (exclusive) {
|
||||
for (auto const& p : *ports ()) {
|
||||
p->disconnect_all ();
|
||||
}
|
||||
|
||||
c->connect (_bundle, _session.engine(), allow_partial);
|
||||
|
||||
}
|
||||
|
||||
c->connect (_bundle, _session.engine(), allow_partial);
|
||||
|
||||
changed (IOChange (IOChange::ConnectionsChanged), src); /* EMIT SIGNAL */
|
||||
return 0;
|
||||
}
|
||||
@ -1334,14 +1319,9 @@ IO::disconnect_ports_from_bundle (std::shared_ptr<Bundle> c, void* src)
|
||||
{
|
||||
BLOCK_PROCESS_CALLBACK ();
|
||||
|
||||
{
|
||||
Glib::Threads::RWLock::ReaderLock rl (_io_lock);
|
||||
c->disconnect (_bundle, _session.engine());
|
||||
|
||||
c->disconnect (_bundle, _session.engine());
|
||||
|
||||
/* If this is a UserBundle, make a note of what we've done */
|
||||
|
||||
}
|
||||
/* If this is a UserBundle, make a note of what we've done */
|
||||
|
||||
changed (IOChange (IOChange::ConnectionsChanged), src); /* EMIT SIGNAL */
|
||||
return 0;
|
||||
@ -1354,7 +1334,7 @@ IO::bundle_changed (Bundle::Change /*c*/)
|
||||
|
||||
|
||||
string
|
||||
IO::build_legal_port_name (DataType type)
|
||||
IO::build_legal_port_name (std::shared_ptr<PortSet const> ports, DataType type)
|
||||
{
|
||||
const int name_size = AudioEngine::instance()->port_name_size();
|
||||
int limit;
|
||||
@ -1401,20 +1381,20 @@ IO::build_legal_port_name (DataType type)
|
||||
|
||||
snprintf (&buf1[0], name_size+1, ("%.*s/%s"), limit, nom.c_str(), suffix.c_str());
|
||||
|
||||
int port_number = find_port_hole (&buf1[0]);
|
||||
int port_number = find_port_hole (ports, &buf1[0]);
|
||||
snprintf (&buf2[0], name_size+1, "%s %d", &buf1[0], port_number);
|
||||
|
||||
return string (&buf2[0]);
|
||||
}
|
||||
|
||||
int32_t
|
||||
IO::find_port_hole (const char* base)
|
||||
IO::find_port_hole (std::shared_ptr<PortSet const> ports, const char* base)
|
||||
{
|
||||
/* CALLER MUST HOLD IO LOCK */
|
||||
|
||||
uint32_t n;
|
||||
|
||||
if (_ports.empty()) {
|
||||
if (ports->empty()) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
@ -1423,35 +1403,33 @@ IO::find_port_hole (const char* base)
|
||||
|
||||
for (n = 1; n < 9999; ++n) {
|
||||
std::vector<char> buf (AudioEngine::instance()->port_name_size());
|
||||
PortSet::iterator i = _ports.begin();
|
||||
PortSet::const_iterator i = ports->begin ();
|
||||
|
||||
snprintf (&buf[0], buf.size()+1, _("%s %u"), base, n);
|
||||
|
||||
for ( ; i != _ports.end(); ++i) {
|
||||
if (string(i->name()) == string(&buf[0])) {
|
||||
for ( ; i != ports->end (); ++i) {
|
||||
if (string (i->name()) == string (&buf[0])) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (i == _ports.end()) {
|
||||
if (i == ports->end()) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
return n;
|
||||
}
|
||||
|
||||
|
||||
std::shared_ptr<AudioPort>
|
||||
IO::audio(uint32_t n) const
|
||||
{
|
||||
return _ports.nth_audio_port (n);
|
||||
|
||||
return ports()->nth_audio_port (n);
|
||||
}
|
||||
|
||||
std::shared_ptr<MidiPort>
|
||||
IO::midi(uint32_t n) const
|
||||
{
|
||||
return _ports.nth_midi_port (n);
|
||||
return ports()->nth_midi_port (n);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -1470,16 +1448,16 @@ IO::setup_bundle ()
|
||||
|
||||
_bundle->set_name (string_compose ("%1 %2", _name, _direction == Input ? _("in") : _("out")));
|
||||
|
||||
std::shared_ptr<PortSet const> ports = _ports.reader();
|
||||
|
||||
int c = 0;
|
||||
for (DataType::iterator i = DataType::begin(); i != DataType::end(); ++i) {
|
||||
|
||||
uint32_t const N = _ports.count().get (*i);
|
||||
uint32_t const N = ports->count().get (*i);
|
||||
for (uint32_t j = 0; j < N; ++j) {
|
||||
_bundle->add_channel (bundle_channel_name (j, N, *i), *i);
|
||||
_bundle->set_port (c, _session.engine().make_port_name_non_relative (_ports.port(*i, j)->name()));
|
||||
_bundle->set_port (c, _session.engine().make_port_name_non_relative (ports->port (*i, j)->name()));
|
||||
++c;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
reestablish_port_subscriptions ();
|
||||
@ -1589,9 +1567,7 @@ IO::set_name_in_state (XMLNode& node, const string& new_name)
|
||||
bool
|
||||
IO::connected () const
|
||||
{
|
||||
/* do we have any connections at all? */
|
||||
|
||||
for (PortSet::const_iterator p = _ports.begin(); p != _ports.end(); ++p) {
|
||||
for (auto const& p : *_ports.reader ()) {
|
||||
if (p->connected()) {
|
||||
return true;
|
||||
}
|
||||
@ -1629,29 +1605,30 @@ IO::connected_to (std::shared_ptr<const IO> other) const
|
||||
bool
|
||||
IO::connected_to (const string& str) const
|
||||
{
|
||||
for (PortSet::const_iterator i = _ports.begin(); i != _ports.end(); ++i) {
|
||||
if (i->connected_to (str)) {
|
||||
for (auto const& p : *_ports.reader ()) {
|
||||
if (p->connected_to (str)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
void
|
||||
IO::collect_input (BufferSet& bufs, pframes_t nframes, ChanCount offset)
|
||||
{
|
||||
assert(bufs.available() >= _ports.count());
|
||||
std::shared_ptr<PortSet> ps = ports ();
|
||||
|
||||
if (_ports.count() == ChanCount::ZERO) {
|
||||
assert (bufs.available() >= ps->count());
|
||||
|
||||
if (ps->count() == ChanCount::ZERO) {
|
||||
return;
|
||||
}
|
||||
|
||||
bufs.set_count (_ports.count());
|
||||
bufs.set_count (ps->count());
|
||||
|
||||
for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
|
||||
PortSet::iterator i = _ports.begin(*t);
|
||||
BufferSet::iterator b = bufs.begin(*t);
|
||||
PortSet::iterator i = ps->begin (*t);
|
||||
BufferSet::iterator b = bufs.begin (*t);
|
||||
|
||||
for (uint32_t off = 0; off < offset.get(*t); ++off, ++b) {
|
||||
if (b == bufs.end(*t)) {
|
||||
@ -1659,7 +1636,7 @@ IO::collect_input (BufferSet& bufs, pframes_t nframes, ChanCount offset)
|
||||
}
|
||||
}
|
||||
|
||||
for ( ; i != _ports.end(*t); ++i, ++b) {
|
||||
for ( ; i != ps->end (*t); ++i, ++b) {
|
||||
const Buffer& bb (i->get_buffer (nframes));
|
||||
b->read_from (bb, nframes);
|
||||
}
|
||||
@ -1669,15 +1646,16 @@ IO::collect_input (BufferSet& bufs, pframes_t nframes, ChanCount offset)
|
||||
void
|
||||
IO::copy_to_outputs (BufferSet& bufs, DataType type, pframes_t nframes, samplecnt_t offset)
|
||||
{
|
||||
PortSet::iterator o = _ports.begin(type);
|
||||
BufferSet::iterator i = bufs.begin(type);
|
||||
std::shared_ptr<PortSet> ps = ports ();
|
||||
|
||||
PortSet::iterator o = ps->begin (type);
|
||||
BufferSet::iterator i = bufs.begin (type);
|
||||
BufferSet::iterator prev = i;
|
||||
|
||||
assert(i != bufs.end(type)); // or second loop will crash
|
||||
|
||||
// Copy any buffers 1:1 to outputs
|
||||
|
||||
while (i != bufs.end(type) && o != _ports.end (type)) {
|
||||
/* Copy any buffers 1:1 to outputs */
|
||||
while (i != bufs.end (type) && o != ps->end (type)) {
|
||||
Buffer& port_buffer (o->get_buffer (nframes));
|
||||
port_buffer.read_from (*i, nframes, offset);
|
||||
prev = i;
|
||||
@ -1685,9 +1663,8 @@ IO::copy_to_outputs (BufferSet& bufs, DataType type, pframes_t nframes, samplecn
|
||||
++o;
|
||||
}
|
||||
|
||||
// Copy last buffer to any extra outputs
|
||||
|
||||
while (o != _ports.end(type)) {
|
||||
/* Copy last buffer to any extra outputs */
|
||||
while (o != ps->end (type)) {
|
||||
Buffer& port_buffer (o->get_buffer (nframes));
|
||||
port_buffer.read_from (*prev, nframes, offset);
|
||||
++o;
|
||||
@ -1699,7 +1676,7 @@ IO::flush_buffers (pframes_t nframes)
|
||||
{
|
||||
/* when port is both externally and internally connected,
|
||||
* make data available to downstream internal ports */
|
||||
for (auto const& p : _ports) {
|
||||
for (auto const& p : *ports ()) {
|
||||
p->flush_buffers (nframes);
|
||||
}
|
||||
}
|
||||
@ -1709,21 +1686,19 @@ IO::port_by_name (const std::string& str) const
|
||||
{
|
||||
/* to be called only from ::set_state() - no locking */
|
||||
|
||||
for (PortSet::const_iterator i = _ports.begin(); i != _ports.end(); ++i) {
|
||||
|
||||
if (i->name() == str) {
|
||||
return std::const_pointer_cast<Port> (*i);
|
||||
for (auto const& p : *_ports.reader ()) {
|
||||
if (p->name() == str) {
|
||||
return std::const_pointer_cast<Port> (p);
|
||||
}
|
||||
}
|
||||
|
||||
return std::shared_ptr<Port> ();
|
||||
}
|
||||
|
||||
bool
|
||||
IO::physically_connected () const
|
||||
{
|
||||
for (PortSet::const_iterator i = _ports.begin(); i != _ports.end(); ++i) {
|
||||
if (i->physically_connected()) {
|
||||
for (auto const& p : *_ports.reader ()) {
|
||||
if (p->physically_connected()) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@ -1734,18 +1709,31 @@ IO::physically_connected () const
|
||||
bool
|
||||
IO::has_ext_connection () const
|
||||
{
|
||||
for (PortSet::const_iterator i = _ports.begin(); i != _ports.end(); ++i) {
|
||||
if (i->has_ext_connection()) {
|
||||
for (auto const& p : *_ports.reader ()) {
|
||||
if (p->has_ext_connection()) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
bool
|
||||
IO::has_port (std::shared_ptr<Port> p) const
|
||||
{
|
||||
Glib::Threads::RWLock::ReaderLock rl (_io_lock);
|
||||
return _ports.contains (p);
|
||||
return ports()->contains (p);
|
||||
}
|
||||
|
||||
std::shared_ptr<Port>
|
||||
IO::nth (uint32_t n) const {
|
||||
std::shared_ptr<PortSet const> ports = _ports.reader ();
|
||||
if (n < ports->num_ports ()) {
|
||||
return ports->port (n);
|
||||
} else {
|
||||
return std::shared_ptr<Port> ();
|
||||
}
|
||||
}
|
||||
|
||||
const ChanCount&
|
||||
IO::n_ports () const {
|
||||
return ports()->count();
|
||||
}
|
||||
|
@ -271,14 +271,14 @@ IOPlug::set_public_latency (bool playback)
|
||||
/* Step1: set private port latency
|
||||
* compare to Route::set_private_port_latencies, Route::update_port_latencies
|
||||
*/
|
||||
PortSet& from = playback ? _output->ports () : _input->ports ();
|
||||
PortSet& to = playback ? _input->ports () : _output->ports ();
|
||||
std::shared_ptr<PortSet> from = playback ? _output->ports () : _input->ports ();
|
||||
std::shared_ptr<PortSet> to = playback ? _input->ports () : _output->ports ();
|
||||
|
||||
LatencyRange all_connections;
|
||||
all_connections.min = ~((pframes_t) 0);
|
||||
all_connections.max = 0;
|
||||
|
||||
for (auto const& p : from) {
|
||||
for (auto const& p : *from) {
|
||||
if (!p->connected ()) {
|
||||
continue;
|
||||
}
|
||||
@ -294,14 +294,14 @@ IOPlug::set_public_latency (bool playback)
|
||||
}
|
||||
|
||||
/* set the "from" port latencies to the max/min range of all their connections */
|
||||
for (auto const& p : from) {
|
||||
for (auto const& p : *from) {
|
||||
p->set_private_latency_range (all_connections, playback);
|
||||
}
|
||||
|
||||
all_connections.min += _plugin_signal_latency;
|
||||
all_connections.max += _plugin_signal_latency;
|
||||
|
||||
for (auto const& p : to) {
|
||||
for (auto const& p : *to) {
|
||||
p->set_private_latency_range (all_connections, playback);
|
||||
}
|
||||
|
||||
|
@ -475,9 +475,8 @@ MidiTrack::non_realtime_locate (samplepos_t spos)
|
||||
void
|
||||
MidiTrack::push_midi_input_to_step_edit_ringbuffer (samplecnt_t nframes)
|
||||
{
|
||||
PortSet& ports (_input->ports());
|
||||
|
||||
for (PortSet::iterator p = ports.begin(DataType::MIDI); p != ports.end(DataType::MIDI); ++p) {
|
||||
std::shared_ptr<PortSet> ports (_input->ports());
|
||||
for (PortSet::iterator p = ports->begin (DataType::MIDI); p != ports->end (DataType::MIDI); ++p) {
|
||||
|
||||
Buffer& b (p->get_buffer (nframes));
|
||||
const MidiBuffer* const mb = dynamic_cast<MidiBuffer*>(&b);
|
||||
@ -874,9 +873,8 @@ MidiTrack::map_input_active (bool yn)
|
||||
return;
|
||||
}
|
||||
|
||||
PortSet& ports (_input->ports());
|
||||
|
||||
for (PortSet::iterator p = ports.begin(DataType::MIDI); p != ports.end(DataType::MIDI); ++p) {
|
||||
std::shared_ptr<PortSet> ports (_input->ports());
|
||||
for (PortSet::iterator p = ports->begin (DataType::MIDI); p != ports->end (DataType::MIDI); ++p) {
|
||||
std::shared_ptr<MidiPort> mp = std::dynamic_pointer_cast<MidiPort> (*p);
|
||||
if (yn != mp->input_active()) {
|
||||
mp->set_input_active (yn);
|
||||
@ -947,10 +945,8 @@ MidiTrack::monitoring_changed (bool self, Controllable::GroupControlDisposition
|
||||
* port level.
|
||||
*/
|
||||
|
||||
PortSet& ports (_output->ports());
|
||||
|
||||
for (PortSet::iterator p = ports.begin(); p != ports.end(); ++p) {
|
||||
std::shared_ptr<MidiPort> mp = std::dynamic_pointer_cast<MidiPort> (*p);
|
||||
for (auto const& p : *_output->ports()) {
|
||||
std::shared_ptr<MidiPort> mp = std::dynamic_pointer_cast<MidiPort> (p);
|
||||
if (mp) {
|
||||
mp->require_resolve ();
|
||||
}
|
||||
|
@ -147,8 +147,8 @@ PortInsert::run (BufferSet& bufs, samplepos_t start_sample, samplepos_t end_samp
|
||||
|
||||
if (_input->n_ports().n_audio() != 0) {
|
||||
|
||||
AudioBuffer& outbuf (_output->ports().nth_audio_port(0)->get_audio_buffer (nframes));
|
||||
Sample* in = _input->ports().nth_audio_port(0)->get_audio_buffer (nframes).data();
|
||||
AudioBuffer& outbuf (_output->ports()->nth_audio_port(0)->get_audio_buffer (nframes));
|
||||
Sample* in = _input->ports()->nth_audio_port(0)->get_audio_buffer (nframes).data();
|
||||
Sample* out = outbuf.data();
|
||||
|
||||
_mtdm->process (nframes, in, out);
|
||||
|
@ -5180,10 +5180,10 @@ Route::set_private_port_latencies (bool playback) const
|
||||
|
||||
if (playback) {
|
||||
/* playback: propagate latency from "outside the route" to outputs to inputs */
|
||||
return update_port_latencies (_output->ports (), _input->ports (), true, own_latency);
|
||||
return update_port_latencies (*_output->ports (), *_input->ports (), true, own_latency);
|
||||
} else {
|
||||
/* capture: propagate latency from "outside the route" to inputs to outputs */
|
||||
return update_port_latencies (_input->ports (), _output->ports (), false, own_latency);
|
||||
return update_port_latencies (*_input->ports (), *_output->ports (), false, own_latency);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1179,8 +1179,8 @@ Session::add_monitor_section ()
|
||||
_master_out->output()->disconnect (this);
|
||||
|
||||
for (uint32_t n = 0; n < limit; ++n) {
|
||||
std::shared_ptr<AudioPort> p = _monitor_out->input()->ports().nth_audio_port (n);
|
||||
std::shared_ptr<AudioPort> o = _master_out->output()->ports().nth_audio_port (n);
|
||||
std::shared_ptr<AudioPort> p = _monitor_out->input()->ports()->nth_audio_port (n);
|
||||
std::shared_ptr<AudioPort> o = _master_out->output()->ports()->nth_audio_port (n);
|
||||
|
||||
if (o) {
|
||||
string connect_to = o->name();
|
||||
@ -1246,7 +1246,7 @@ Session::auto_connect_monitor_bus ()
|
||||
|
||||
for (uint32_t n = 0; n < limit; ++n) {
|
||||
|
||||
std::shared_ptr<Port> p = _monitor_out->output()->ports().port(DataType::AUDIO, n);
|
||||
std::shared_ptr<Port> p = _monitor_out->output()->ports()->port(DataType::AUDIO, n);
|
||||
string connect_to;
|
||||
if (outputs[DataType::AUDIO].size() > (n % mod)) {
|
||||
connect_to = outputs[DataType::AUDIO][n % mod];
|
||||
@ -1326,8 +1326,8 @@ Session::reset_monitor_section ()
|
||||
_monitor_out->output()->ensure_io (mon_chn, false, this);
|
||||
|
||||
for (uint32_t n = 0; n < limit; ++n) {
|
||||
std::shared_ptr<AudioPort> p = _monitor_out->input()->ports().nth_audio_port (n);
|
||||
std::shared_ptr<AudioPort> o = _master_out->output()->ports().nth_audio_port (n);
|
||||
std::shared_ptr<AudioPort> p = _monitor_out->input()->ports()->nth_audio_port (n);
|
||||
std::shared_ptr<AudioPort> o = _master_out->output()->ports()->nth_audio_port (n);
|
||||
|
||||
if (o) {
|
||||
string connect_to = o->name();
|
||||
@ -1372,7 +1372,7 @@ Session::reset_monitor_section ()
|
||||
|
||||
for (uint32_t n = 0; n < limit; ++n) {
|
||||
|
||||
std::shared_ptr<Port> p = _monitor_out->output()->ports().port(DataType::AUDIO, n);
|
||||
std::shared_ptr<Port> p = _monitor_out->output()->ports()->port(DataType::AUDIO, n);
|
||||
string connect_to;
|
||||
if (outputs[DataType::AUDIO].size() > (n % mod)) {
|
||||
connect_to = outputs[DataType::AUDIO][n % mod];
|
||||
@ -3447,7 +3447,7 @@ Session::new_route_from_template (uint32_t how_many, PresentationInfo::order_t i
|
||||
if (!io) {
|
||||
continue;
|
||||
}
|
||||
for (auto const& p : io->ports()) {
|
||||
for (auto const& p : *io->ports()) {
|
||||
p->reconnect ();
|
||||
}
|
||||
}
|
||||
@ -3456,7 +3456,7 @@ Session::new_route_from_template (uint32_t how_many, PresentationInfo::order_t i
|
||||
if (!io) {
|
||||
continue;
|
||||
}
|
||||
for (auto const& p : io->ports()) {
|
||||
for (auto const& p : *io->ports()) {
|
||||
p->reconnect ();
|
||||
}
|
||||
}
|
||||
@ -4388,9 +4388,7 @@ Session::set_exclusive_input_active (std::shared_ptr<RouteList> rl, bool onoff,
|
||||
|
||||
for (RouteList::iterator rt = rl->begin(); rt != rl->end(); ++rt) {
|
||||
|
||||
PortSet& ps ((*rt)->input()->ports());
|
||||
|
||||
for (PortSet::iterator p = ps.begin(); p != ps.end(); ++p) {
|
||||
for (auto const& p : *(*rt)->input()->ports()) {
|
||||
p->get_connections (connections);
|
||||
}
|
||||
|
||||
@ -7791,7 +7789,7 @@ Session::auto_connect (const AutoConnectRequest& ar)
|
||||
port = physinputs[(in_offset.get(*t) + i) % nphysical_in];
|
||||
}
|
||||
|
||||
if (!port.empty() && route->input()->connect (route->input()->ports().port(*t, i), port, this)) {
|
||||
if (!port.empty() && route->input()->connect (route->input()->ports()->port(*t, i), port, this)) {
|
||||
DEBUG_TRACE (DEBUG::PortConnectAuto, "Failed to auto-connect input.");
|
||||
break;
|
||||
}
|
||||
@ -7812,12 +7810,12 @@ Session::auto_connect (const AutoConnectRequest& ar)
|
||||
} else if ((*t) == DataType::AUDIO && (Config->get_output_auto_connect() & AutoConnectMaster)) {
|
||||
/* master bus is audio only */
|
||||
if (_master_out && _master_out->n_inputs().get(*t) > 0) {
|
||||
port = _master_out->input()->ports().port(*t,
|
||||
port = _master_out->input()->ports()->port(*t,
|
||||
i % _master_out->input()->n_ports().get(*t))->name();
|
||||
}
|
||||
}
|
||||
|
||||
if (!port.empty() && route->output()->connect (route->output()->ports().port(*t, i), port, this)) {
|
||||
if (!port.empty() && route->output()->connect (route->output()->ports()->port(*t, i), port, this)) {
|
||||
DEBUG_TRACE (DEBUG::PortConnectAuto, "Failed to auto-connect output.");
|
||||
break;
|
||||
}
|
||||
|
@ -314,11 +314,12 @@ bool
|
||||
Track::can_record()
|
||||
{
|
||||
bool will_record = true;
|
||||
for (PortSet::iterator i = _input->ports().begin(); i != _input->ports().end() && will_record; ++i) {
|
||||
if (!i->connected())
|
||||
for (auto const& p : *_input->ports()) {
|
||||
if (!p->connected()) {
|
||||
will_record = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return will_record;
|
||||
}
|
||||
|
||||
@ -513,16 +514,16 @@ Track::playlist ()
|
||||
void
|
||||
Track::request_input_monitoring (bool m)
|
||||
{
|
||||
for (PortSet::iterator i = _input->ports().begin(); i != _input->ports().end(); ++i) {
|
||||
AudioEngine::instance()->request_input_monitoring ((*i)->name(), m);
|
||||
for (auto const& p : *_input->ports()) {
|
||||
AudioEngine::instance()->request_input_monitoring (p->name(), m);
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
Track::ensure_input_monitoring (bool m)
|
||||
{
|
||||
for (PortSet::iterator i = _input->ports().begin(); i != _input->ports().end(); ++i) {
|
||||
AudioEngine::instance()->ensure_input_monitoring ((*i)->name(), m);
|
||||
for (auto const& p : *_input->ports()) {
|
||||
AudioEngine::instance()->ensure_input_monitoring (p->name(), m);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -6402,16 +6402,16 @@ OSC::cue_new_aux (string name, string dest_1, string dest_2, uint32_t count, lo_
|
||||
if (aux) {
|
||||
std::shared_ptr<Route> r = std::dynamic_pointer_cast<Route>(aux);
|
||||
if (dest_1.size()) {
|
||||
PortSet& ports = r->output()->ports ();
|
||||
std::shared_ptr<PortSet> ports = r->output()->ports ();
|
||||
if (atoi( dest_1.c_str())) {
|
||||
dest_1 = string_compose ("system:playback_%1", dest_1);
|
||||
}
|
||||
r->output ()->connect (*(ports.begin()), dest_1, this);
|
||||
r->output ()->connect (*(ports->begin()), dest_1, this);
|
||||
if (count == 2) {
|
||||
if (atoi( dest_2.c_str())) {
|
||||
dest_2 = string_compose ("system:playback_%1", dest_2);
|
||||
}
|
||||
PortSet::iterator i = ports.begin();
|
||||
PortSet::iterator i = ports->begin();
|
||||
++i;
|
||||
r->output ()->connect (*(i), dest_2, this);
|
||||
}
|
||||
@ -6467,8 +6467,8 @@ OSC::cue_connect_aux (std::string dest, lo_message msg)
|
||||
if (atoi( dest.c_str())) {
|
||||
dest = string_compose ("system:playback_%1", dest);
|
||||
}
|
||||
PortSet& ports = rt->output()->ports ();
|
||||
rt->output ()->connect (*(ports.begin()), dest, this);
|
||||
std::shared_ptr<PortSet> ports = rt->output()->ports ();
|
||||
rt->output ()->connect (*(ports->begin()), dest, this);
|
||||
session->set_dirty();
|
||||
ret = 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user