/* Copyright (C) 2000-2006 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 #include #include #include #include #include #include #include #include "pbd/xml++.h" #include "pbd/replace_all.h" #include "pbd/unknown_type.h" #include "pbd/enumwriter.h" #include "ardour/audioengine.h" #include "ardour/buffer.h" #include "ardour/io.h" #include "ardour/route.h" #include "ardour/port.h" #include "ardour/audio_port.h" #include "ardour/midi_port.h" #include "ardour/session.h" #include "ardour/cycle_timer.h" #include "ardour/panner.h" #include "ardour/buffer_set.h" #include "ardour/meter.h" #include "ardour/amp.h" #include "ardour/user_bundle.h" #include "i18n.h" #include /* A bug in OS X's cmath that causes isnan() and isinf() to be "undeclared". the following works around that */ #if defined(__APPLE__) && defined(__MACH__) extern "C" int isnan (double); extern "C" int isinf (double); #endif #define BLOCK_PROCESS_CALLBACK() Glib::Mutex::Lock em (_session.engine().process_lock()) using namespace std; using namespace ARDOUR; using namespace PBD; const string IO::state_node_name = "IO"; bool IO::connecting_legal = false; sigc::signal IO::ConnectingLegal; sigc::signal IO::PortCountChanged; /** @param default_type The type of port that will be created by ensure_io * and friends if no type is explicitly requested (to avoid breakage). */ IO::IO (Session& s, const string& name, Direction dir, DataType default_type) : SessionObject (s, name) , _direction (dir) , _default_type (default_type) { _active = true; pending_state_node = 0; setup_bundles (); } IO::IO (Session& s, const XMLNode& node, DataType dt) : SessionObject(s, "unnamed io") , _direction (Input) , _default_type (dt) { _active = true; pending_state_node = 0; set_state (node); setup_bundles (); } IO::~IO () { Glib::Mutex::Lock lm (io_lock); BLOCK_PROCESS_CALLBACK (); for (PortSet::iterator i = _ports.begin(); i != _ports.end(); ++i) { _session.engine().unregister_port (*i); } } void IO::silence (nframes_t nframes) { /* io_lock, not taken: function must be called from Session::process() calltree */ for (PortSet::iterator i = _ports.begin(); i != _ports.end(); ++i) { i->get_buffer(nframes).silence (nframes); } } void IO::check_bundles_connected () { check_bundles (_bundles_connected, ports()); } void IO::check_bundles (std::vector& list, const PortSet& ports) { std::vector new_list; for (std::vector::iterator i = list.begin(); i != list.end(); ++i) { uint32_t const N = i->bundle->nchannels (); if (_ports.num_ports (default_type()) < N) { continue; } bool ok = true; for (uint32_t j = 0; j < N; ++j) { /* Every port on bundle channel j must be connected to our input j */ Bundle::PortList const pl = i->bundle->channel_ports (j); for (uint32_t k = 0; k < pl.size(); ++k) { if (ports.port(j)->connected_to (pl[k]) == false) { ok = false; break; } } if (ok == false) { break; } } if (ok) { new_list.push_back (*i); } else { i->changed.disconnect (); } } list = new_list; } int IO::disconnect (Port* our_port, string other_port, void* src) { if (other_port.length() == 0 || our_port == 0) { return 0; } { BLOCK_PROCESS_CALLBACK (); { Glib::Mutex::Lock lm (io_lock); /* check that our_port is really one of ours */ if ( ! _ports.contains(our_port)) { return -1; } /* disconnect it from the source */ if (our_port->disconnect (other_port)) { error << string_compose(_("IO: cannot disconnect port %1 from %2"), our_port->name(), other_port) << endmsg; return -1; } check_bundles_connected (); } } changed (ConnectionsChanged, src); /* EMIT SIGNAL */ _session.set_dirty (); return 0; } int IO::connect (Port* our_port, string other_port, void* src) { if (other_port.length() == 0 || our_port == 0) { return 0; } { BLOCK_PROCESS_CALLBACK (); { Glib::Mutex::Lock lm (io_lock); /* check that our_port is really one of ours */ if ( ! _ports.contains(our_port) ) { return -1; } /* connect it to the source */ if (our_port->connect (other_port)) { return -1; } } } changed (ConnectionsChanged, src); /* EMIT SIGNAL */ _session.set_dirty (); return 0; } int IO::remove_port (Port* port, void* src) { IOChange change (NoChange); { BLOCK_PROCESS_CALLBACK (); { Glib::Mutex::Lock lm (io_lock); if (_ports.remove(port)) { change = IOChange (change|ConfigurationChanged); if (port->connected()) { change = IOChange (change|ConnectionsChanged); } _session.engine().unregister_port (*port); check_bundles_connected (); } } PortCountChanged (n_ports()); /* EMIT SIGNAL */ } if (change & ConfigurationChanged) { setup_bundles (); } if (change != NoChange) { changed (change, src); _session.set_dirty (); return 0; } return -1; } /** Add an output port. * * @param destination Name of input port to connect new port to. * @param src Source for emitted ConfigurationChanged signal. * @param type Data type of port. Default value (NIL) will use this IO's default type. */ int IO::add_port (string destination, void* src, DataType type) { Port* our_port; if (type == DataType::NIL) { type = _default_type; } { BLOCK_PROCESS_CALLBACK (); { Glib::Mutex::Lock lm (io_lock); /* Create a new output port */ string portname = build_legal_port_name (type); if (_direction == Input) { if ((our_port = _session.engine().register_input_port (type, portname)) == 0) { error << string_compose(_("IO: cannot register input port %1"), portname) << endmsg; return -1; } } else { if ((our_port = _session.engine().register_output_port (type, portname)) == 0) { error << string_compose(_("IO: cannot register output port %1"), portname) << endmsg; return -1; } } _ports.add (our_port); } PortCountChanged (n_ports()); /* EMIT SIGNAL */ } if (destination.length()) { if (our_port->connect (destination)) { return -1; } } // pan_changed (src); /* EMIT SIGNAL */ changed (ConfigurationChanged, src); /* EMIT SIGNAL */ setup_bundles (); _session.set_dirty (); return 0; } int IO::disconnect (void* src) { { BLOCK_PROCESS_CALLBACK (); { Glib::Mutex::Lock lm (io_lock); for (PortSet::iterator i = _ports.begin(); i != _ports.end(); ++i) { i->disconnect_all (); } check_bundles_connected (); } } changed (ConnectionsChanged, src); /* EMIT SIGNAL */ return 0; } bool IO::ensure_ports_locked (ChanCount count, bool clear, void* /*src*/) { Port* port = 0; bool changed = false; for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) { const size_t n = count.get(*t); /* remove unused ports */ for (size_t i = n_ports().get(*t); i > n; --i) { port = _ports.port(*t, i-1); assert(port); _ports.remove(port); _session.engine().unregister_port (*port); changed = true; } /* 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; } } } catch (AudioEngine::PortRegistrationFailure& err) { /* pass it on */ throw AudioEngine::PortRegistrationFailure(); } _ports.add (port); changed = true; } } if (changed) { check_bundles_connected (); 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 (); } } return changed; } int IO::ensure_ports (ChanCount count, bool clear, bool lockit, void* src) { bool changed = false; if (count == n_ports() && !clear) { return 0; } if (lockit) { BLOCK_PROCESS_CALLBACK (); Glib::Mutex::Lock im (io_lock); changed = ensure_ports_locked (count, clear, src); } else { changed = ensure_ports_locked (count, clear, src); } if (changed) { this->changed (ConfigurationChanged, src); /* EMIT SIGNAL */ setup_bundles (); _session.set_dirty (); } return 0; } int IO::ensure_io (ChanCount count, bool clear, void* src) { return ensure_ports (count, clear, true, src); } XMLNode& IO::get_state (void) { return state (true); } XMLNode& IO::state (bool /*full_state*/) { XMLNode* node = new XMLNode (state_node_name); char buf[64]; string str; vector::iterator ci; int n; LocaleGuard lg (X_("POSIX")); Glib::Mutex::Lock lm (io_lock); node->add_property("name", _name); id().print (buf, sizeof (buf)); node->add_property("id", buf); node->add_property ("direction", enum_2_string (_direction)); node->add_property ("default-type", _default_type.to_string()); for (std::vector::iterator i = _bundles_connected.begin(); i != _bundles_connected.end(); ++i) { XMLNode* n = new XMLNode ("Bundle"); n->add_property ("name", i->bundle->name ()); node->add_child_nocopy (*n); } for (PortSet::iterator i = _ports.begin(); i != _ports.end(); ++i) { vector connections; XMLNode* pnode = new XMLNode (X_("Port")); pnode->add_property (X_("type"), i->type().to_string()); pnode->add_property (X_("name"), i->name()); if (i->get_connections (connections)) { for (n = 0, ci = connections.begin(); ci != connections.end(); ++ci, ++n) { /* if its a connection to our own port, return only the port name, not the whole thing. this allows connections to be re-established even when our client name is different. */ XMLNode* cnode = new XMLNode (X_("Connection")); cnode->add_property (X_("other"), _session.engine().make_port_name_relative (*ci)); pnode->add_child_nocopy (*cnode); } } node->add_child_nocopy (*pnode); } return *node; } int IO::set_state (const XMLNode& node) { const XMLProperty* prop; XMLNodeConstIterator iter; LocaleGuard lg (X_("POSIX")); /* force use of non-localized representation of decimal point, since we use it a lot in XML files and so forth. */ if (node.name() != state_node_name) { error << string_compose(_("incorrect XML node \"%1\" passed to IO object"), node.name()) << endmsg; return -1; } if ((prop = node.property ("name")) != 0) { set_name (prop->value()); } if ((prop = node.property (X_("default-type"))) != 0) { _default_type = DataType(prop->value()); assert(_default_type != DataType::NIL); } if ((prop = node.property ("id")) != 0) { _id = prop->value (); } if ((prop = node.property ("direction")) != 0) { _direction = (Direction) string_2_enum (prop->value(), _direction); } if (create_ports (node)) { return -1; } if (connecting_legal) { if (make_connections (node)) { return -1; } } else { pending_state_node = new XMLNode (node); connection_legal_c = ConnectingLegal.connect (mem_fun (*this, &IO::connecting_became_legal)); } return 0; } int IO::connecting_became_legal () { int ret; assert (pending_state_node); connection_legal_c.disconnect (); ret = make_connections (*pending_state_node); delete pending_state_node; pending_state_node = 0; return ret; } boost::shared_ptr IO::find_possible_bundle (const string &desired_name) { static const string digits = "0123456789"; const string &default_name = (_direction == Input ? _("in") : _("out")); const string &bundle_type_name = (_direction == Input ? _("input") : _("output")); boost::shared_ptr c = _session.bundle_by_name (desired_name); if (!c) { int bundle_number, mask; string possible_name; bool stereo = false; string::size_type last_non_digit_pos; error << string_compose(_("Unknown bundle \"%1\" listed for %2 of %3"), desired_name, bundle_type_name, _name) << endmsg; // find numeric suffix of desired name bundle_number = 0; last_non_digit_pos = desired_name.find_last_not_of(digits); if (last_non_digit_pos != string::npos) { stringstream s; s << desired_name.substr(last_non_digit_pos); s >> bundle_number; } // see if it's a stereo connection e.g. "in 3+4" if (last_non_digit_pos > 1 && desired_name[last_non_digit_pos] == '+') { int left_bundle_number = 0; string::size_type left_last_non_digit_pos; left_last_non_digit_pos = desired_name.find_last_not_of(digits, last_non_digit_pos-1); if (left_last_non_digit_pos != string::npos) { stringstream s; s << desired_name.substr(left_last_non_digit_pos, last_non_digit_pos-1); s >> left_bundle_number; if (left_bundle_number > 0 && left_bundle_number + 1 == bundle_number) { bundle_number--; stereo = true; } } } // make 0-based if (bundle_number) bundle_number--; // find highest set bit mask = 1; while ((mask <= bundle_number) && (mask <<= 1)) {} // "wrap" bundle number into largest possible power of 2 // that works... while (mask) { if (bundle_number & mask) { bundle_number &= ~mask; stringstream s; s << default_name << " " << bundle_number + 1; if (stereo) { s << "+" << bundle_number + 2; } possible_name = s.str(); if ((c = _session.bundle_by_name (possible_name)) != 0) { break; } } mask >>= 1; } if (c) { info << string_compose (_("Bundle %1 was not available - \"%2\" used instead"), desired_name, possible_name) << endmsg; } else { error << string_compose(_("No %1 bundles available as a replacement"), bundle_type_name) << endmsg; } } return c; } int IO::get_port_counts (const XMLNode& node, ChanCount& n, boost::shared_ptr& c) { XMLProperty const * prop; XMLNodeConstIterator iter; uint32_t n_audio = 0; uint32_t n_midi = 0; ChanCount cnt; n = n_ports(); if ((prop = node.property ("connection")) != 0) { if ((c = find_possible_bundle (prop->value())) != 0) { n = ChanCount::max (n, ChanCount(c->type(), c->nchannels())); } return 0; } for (iter = node.children().begin(); iter != node.children().end(); ++iter) { if ((*iter)->name() == X_("Bundle")) { if ((c = find_possible_bundle (prop->value())) != 0) { n = ChanCount::max (n, ChanCount(c->type(), c->nchannels())); return 0; } else { return -1; } } if ((*iter)->name() == X_("Port")) { prop = (*iter)->property (X_("type")); if (!prop) { continue; } if (prop->value() == X_("audio")) { cnt.set_audio (++n_audio); } else if (prop->value() == X_("midi")) { cnt.set_midi (++n_midi); } } } n = ChanCount::max (n, cnt); return 0; } int IO::create_ports (const XMLNode& node) { ChanCount n; boost::shared_ptr c; get_port_counts (node, n, c); if (ensure_ports (n, true, true, this)) { error << string_compose(_("%1: cannot create I/O ports"), _name) << endmsg; return -1; } /* XXX use c */ return 0; } int IO::make_connections (const XMLNode& node) { const XMLProperty* prop; for (XMLNodeConstIterator i = node.children().begin(); i != node.children().end(); ++i) { if ((*i)->name() == "Bundle") { XMLProperty const * prop = (*i)->property ("name"); if (prop) { boost::shared_ptr b = find_possible_bundle (prop->value()); if (b) { connect_ports_to_bundle (b, this); } } return 0; } if ((*i)->name() == "Port") { prop = (*i)->property (X_("name")); if (!prop) { continue; } Port* p = port_by_name (prop->value()); if (p) { for (XMLNodeConstIterator c = (*i)->children().begin(); c != (*i)->children().end(); ++c) { XMLNode* cnode = (*c); if (cnode->name() != X_("Connection")) { continue; } if ((prop = cnode->property (X_("other"))) == 0) { continue; } if (prop) { p->connect (prop->value()); } } } } } return 0; } int IO::set_ports (const string& str) { vector ports; int i; int n; uint32_t nports; if ((nports = count (str.begin(), str.end(), '{')) == 0) { return 0; } // FIXME: audio-only if (ensure_ports (ChanCount(DataType::AUDIO, nports), true, true, this)) { return -1; } string::size_type start, end, ostart; ostart = 0; start = 0; end = 0; i = 0; while ((start = str.find_first_of ('{', ostart)) != string::npos) { start += 1; if ((end = str.find_first_of ('}', start)) == string::npos) { error << string_compose(_("IO: badly formed string in XML node for inputs \"%1\""), str) << endmsg; return -1; } if ((n = parse_io_string (str.substr (start, end - start), ports)) < 0) { error << string_compose(_("bad input string in XML node \"%1\""), str) << endmsg; return -1; } else if (n > 0) { for (int x = 0; x < n; ++x) { connect (nth (i), ports[x], this); } } ostart = end+1; i++; } return 0; } int IO::parse_io_string (const string& str, vector& ports) { string::size_type pos, opos; if (str.length() == 0) { return 0; } pos = 0; opos = 0; ports.clear (); while ((pos = str.find_first_of (',', opos)) != string::npos) { ports.push_back (str.substr (opos, pos - opos)); opos = pos + 1; } if (opos < str.length()) { ports.push_back (str.substr(opos)); } return ports.size(); } int IO::parse_gain_string (const string& str, vector& ports) { string::size_type pos, opos; pos = 0; opos = 0; ports.clear (); while ((pos = str.find_first_of (',', opos)) != string::npos) { ports.push_back (str.substr (opos, pos - opos)); opos = pos + 1; } if (opos < str.length()) { ports.push_back (str.substr(opos)); } return ports.size(); } bool IO::set_name (const string& requested_name) { string name = requested_name; if (name == _name) { return true; } /* replace all colons in the name. i wish we didn't have to do this */ if (replace_all (name, ":", "-")) { warning << _("you cannot use colons to name objects with I/O connections") << endmsg; } for (PortSet::iterator i = _ports.begin(); i != _ports.end(); ++i) { string current_name = i->name(); current_name.replace (current_name.find (_name), _name.length(), name); i->set_name (current_name); } bool const r = SessionObject::set_name (name); setup_bundles (); return r; } void IO::set_port_latency (nframes_t nframes) { Glib::Mutex::Lock lm (io_lock); for (PortSet::iterator i = _ports.begin(); i != _ports.end(); ++i) { i->set_latency (nframes); } } nframes_t IO::latency () const { nframes_t max_latency; nframes_t latency; max_latency = 0; /* io lock not taken - must be protected by other means */ for (PortSet::const_iterator i = _ports.begin(); i != _ports.end(); ++i) { if ((latency = i->total_latency ()) > max_latency) { max_latency = latency; } } return max_latency; } void IO::update_port_total_latencies () { /* io_lock, not taken: function must be called from Session::process() calltree */ for (PortSet::iterator i = _ports.begin(); i != _ports.end(); ++i) { _session.engine().update_total_latency (*i); } } int IO::connect_ports_to_bundle (boost::shared_ptr c, void* src) { { BLOCK_PROCESS_CALLBACK (); Glib::Mutex::Lock lm2 (io_lock); c->connect (_bundle, _session.engine()); /* If this is a UserBundle, make a note of what we've done */ boost::shared_ptr ub = boost::dynamic_pointer_cast (c); if (ub) { /* See if we already know about this one */ std::vector::iterator i = _bundles_connected.begin(); while (i != _bundles_connected.end() && i->bundle != ub) { ++i; } if (i == _bundles_connected.end()) { /* We don't, so make a note */ _bundles_connected.push_back (UserBundleInfo (this, ub)); } } } changed (IOChange (ConfigurationChanged|ConnectionsChanged), src); /* EMIT SIGNAL */ return 0; } int IO::disconnect_ports_from_bundle (boost::shared_ptr c, void* src) { { BLOCK_PROCESS_CALLBACK (); Glib::Mutex::Lock lm2 (io_lock); c->disconnect (_bundle, _session.engine()); /* If this is a UserBundle, make a note of what we've done */ boost::shared_ptr ub = boost::dynamic_pointer_cast (c); if (ub) { std::vector::iterator i = _bundles_connected.begin(); while (i != _bundles_connected.end() && i->bundle != ub) { ++i; } if (i != _bundles_connected.end()) { _bundles_connected.erase (i); } } } changed (IOChange (ConfigurationChanged|ConnectionsChanged), src); /* EMIT SIGNAL */ return 0; } int IO::disable_connecting () { connecting_legal = false; return 0; } int IO::enable_connecting () { connecting_legal = true; return ConnectingLegal (); } void IO::bundle_changed (Bundle::Change /*c*/) { //XXX // connect_input_ports_to_bundle (_input_bundle, this); } string IO::build_legal_port_name (DataType type) { const int name_size = jack_port_name_size(); int limit; string suffix; if (type == DataType::AUDIO) { suffix = _("audio"); } else if (type == DataType::MIDI) { suffix = _("midi"); } else { throw unknown_type(); } /* note that if "in" or "out" are translated it will break a session across locale switches because a port's connection list will show (old) translated names, but the current port name will use the (new) translated name. */ if (_direction == Input) { suffix += X_("_in"); } else { suffix += X_("_out"); } // allow up to 4 digits for the output port number, plus the slash, suffix and extra space limit = name_size - _session.engine().client_name().length() - (suffix.length() + 5); char buf1[name_size+1]; char buf2[name_size+1]; snprintf (buf1, name_size+1, ("%.*s/%s"), limit, _name.c_str(), suffix.c_str()); int port_number = find_port_hole (buf1); snprintf (buf2, name_size+1, "%s %d", buf1, port_number); return string (buf2); } int32_t IO::find_port_hole (const char* base) { /* CALLER MUST HOLD IO LOCK */ uint32_t n; if (_ports.empty()) { return 1; } /* we only allow up to 4 characters for the port number */ for (n = 1; n < 9999; ++n) { char buf[jack_port_name_size()]; PortSet::iterator i = _ports.begin(); snprintf (buf, jack_port_name_size(), _("%s %u"), base, n); for ( ; i != _ports.end(); ++i) { if (i->name() == buf) { break; } } if (i == _ports.end()) { break; } } return n; } AudioPort* IO::audio(uint32_t n) const { return _ports.nth_audio_port (n); } MidiPort* IO::midi(uint32_t n) const { return _ports.nth_midi_port (n); } /** * Setup bundles that describe our inputs and outputs. Also creates bundles if necessary. */ void IO::setup_bundles () { char buf[32]; if (!_bundle) { _bundle.reset (new Bundle (_direction == Input)); } _bundle->suspend_signals (); _bundle->set_type (default_type ()); _bundle->remove_channels (); if (_direction == Input) { snprintf(buf, sizeof (buf), _("%s in"), _name.c_str()); } else { snprintf(buf, sizeof (buf), _("%s out"), _name.c_str()); } _bundle->set_name (buf); uint32_t const ni = _ports.num_ports(); for (uint32_t i = 0; i < ni; ++i) { _bundle->add_channel (bundle_channel_name (i, ni)); _bundle->set_port (i, _session.engine().make_port_name_non_relative (_ports.port(i)->name())); } _bundle->resume_signals (); } /** @return Bundles connected to our ports */ BundleList IO::bundles_connected () { BundleList bundles; /* User bundles */ for (std::vector::iterator i = _bundles_connected.begin(); i != _bundles_connected.end(); ++i) { bundles.push_back (i->bundle); } /* Session bundles */ boost::shared_ptr b = _session.bundles (); for (ARDOUR::BundleList::iterator i = b->begin(); i != b->end(); ++i) { if ((*i)->connected_to (_bundle, _session.engine())) { bundles.push_back (*i); } } /* Route bundles */ boost::shared_ptr r = _session.get_routes (); if (_direction == Input) { for (ARDOUR::RouteList::iterator i = r->begin(); i != r->end(); ++i) { if ((*i)->output()->bundle()->connected_to (_bundle, _session.engine())) { bundles.push_back ((*i)->output()->bundle()); } } } else { for (ARDOUR::RouteList::iterator i = r->begin(); i != r->end(); ++i) { if ((*i)->input()->bundle()->connected_to (_bundle, _session.engine())) { bundles.push_back ((*i)->input()->bundle()); } } } return bundles; } IO::UserBundleInfo::UserBundleInfo (IO* io, boost::shared_ptr b) { bundle = b; changed = b->Changed.connect ( sigc::mem_fun (*io, &IO::bundle_changed) ); } std::string IO::bundle_channel_name (uint32_t c, uint32_t n) const { char buf[32]; switch (n) { case 1: return _("mono"); case 2: return c == 0 ? _("L") : _("R"); default: snprintf (buf, sizeof(buf), _("%d"), (c + 1)); return buf; } return ""; } string IO::name_from_state (const XMLNode& node) { const XMLProperty* prop; if ((prop = node.property ("name")) != 0) { return prop->value(); } return string(); } void IO::set_name_in_state (XMLNode& node, const string& new_name) { const XMLProperty* prop; if ((prop = node.property ("name")) != 0) { node.add_property ("name", new_name); } } bool IO::connected_to (boost::shared_ptr other) const { if (!other) { /* do we have any connections at all? */ for (PortSet::const_iterator p = _ports.begin(); p != _ports.end(); ++p) { if (p->connected()) { return true; } } return false; } assert (_direction != other->direction()); uint32_t i, j; uint32_t no = n_ports().n_total(); uint32_t ni = other->n_ports ().n_total(); for (i = 0; i < no; ++i) { for (j = 0; j < ni; ++j) { if (nth(i)->connected_to (other->nth(j)->name())) { return true; } } } return false; } void IO::process_input (boost::shared_ptr proc, sframes_t start_frame, sframes_t end_frame, nframes_t nframes) { BufferSet bufs; /* don't read the data into new buffers - just use the port buffers directly */ bufs.attach_buffers (_ports, nframes, 0); proc->run (bufs, start_frame, end_frame, nframes); } void IO::collect_input (BufferSet& bufs, nframes_t nframes, ChanCount offset) { assert(bufs.available() >= _ports.count()); if (_ports.count() == ChanCount::ZERO) { return; } bufs.set_count (_ports.count()); for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) { PortSet::iterator i = _ports.begin(*t); BufferSet::iterator b = bufs.begin(*t); for (uint32_t off = 0; off < offset.get(*t); ++off, ++b) { if (b == bufs.end(*t)) { continue; } } for ( ; i != _ports.end(*t); ++i, ++b) { Buffer& bb (i->get_buffer (nframes)); b->read_from (bb, nframes); } } } void IO::copy_to_outputs (BufferSet& bufs, DataType type, nframes_t nframes, nframes_t offset) { // Copy any buffers 1:1 to outputs PortSet::iterator o = _ports.begin(type); BufferSet::iterator i = bufs.begin(type); BufferSet::iterator prev = i; while (i != bufs.end(type) && o != _ports.end (type)) { Buffer& port_buffer (o->get_buffer (nframes)); port_buffer.read_from (*i, nframes, offset); prev = i; ++i; ++o; } // Copy last buffer to any extra outputs while (o != _ports.end(type)) { Buffer& port_buffer (o->get_buffer (nframes)); port_buffer.read_from (*prev, nframes, offset); ++o; } } Port* 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) { const Port& p(*i); if (p.name() == str) { return const_cast(&p); } } return 0; }