5f67a72c34
git-svn-id: svn://localhost/ardour2/branches/3.0@7335 d708f5d6-7413-0410-9779-e7cbd77b26cf
116 lines
2.6 KiB
C++
116 lines
2.6 KiB
C++
#include <cassert>
|
|
#include "pbd/failed_constructor.h"
|
|
#include "pbd/compose.h"
|
|
#include "pbd/xml++.h"
|
|
#include "ardour/user_bundle.h"
|
|
#include "ardour/port_set.h"
|
|
#include "ardour/io.h"
|
|
#include "ardour/session.h"
|
|
#include "ardour/audioengine.h"
|
|
#include "i18n.h"
|
|
|
|
ARDOUR::UserBundle::UserBundle (std::string const & n)
|
|
: Bundle (n)
|
|
{
|
|
|
|
}
|
|
|
|
ARDOUR::UserBundle::UserBundle (XMLNode const & node, bool i)
|
|
: Bundle (i)
|
|
{
|
|
if (set_state (node, Stateful::loading_state_version)) {
|
|
throw failed_constructor ();
|
|
}
|
|
}
|
|
|
|
int
|
|
ARDOUR::UserBundle::set_state (XMLNode const & node, int /*version*/)
|
|
{
|
|
XMLProperty const * name;
|
|
|
|
if ((name = node.property ("name")) == 0) {
|
|
PBD::error << _("Node for Bundle has no \"name\" property") << endmsg;
|
|
return -1;
|
|
}
|
|
|
|
set_name (name->value ());
|
|
|
|
XMLNodeList const channels = node.children ();
|
|
|
|
int n = 0;
|
|
for (XMLNodeConstIterator i = channels.begin(); i != channels.end(); ++i) {
|
|
|
|
if ((*i)->name() != "Channel") {
|
|
PBD::error << string_compose (_("Unknown node \"%s\" in Bundle"), (*i)->name()) << endmsg;
|
|
return -1;
|
|
}
|
|
|
|
if ((name = (*i)->property ("name")) == 0) {
|
|
PBD::error << _("Node for Channel has no \"name\" property") << endmsg;
|
|
return -1;
|
|
}
|
|
|
|
XMLProperty const * type;
|
|
if ((type = (*i)->property ("type")) == 0) {
|
|
PBD::error << _("Node for Channel has no \"type\" property") << endmsg;
|
|
return -1;
|
|
}
|
|
|
|
add_channel (name->value (), DataType (type->value()));
|
|
|
|
XMLNodeList const ports = (*i)->children ();
|
|
|
|
for (XMLNodeConstIterator j = ports.begin(); j != ports.end(); ++j) {
|
|
if ((*j)->name() != "Port") {
|
|
PBD::error << string_compose (_("Unknown node \"%s\" in Bundle"), (*j)->name()) << endmsg;
|
|
return -1;
|
|
}
|
|
|
|
if ((name = (*j)->property ("name")) == 0) {
|
|
PBD::error << _("Node for Port has no \"name\" property") << endmsg;
|
|
return -1;
|
|
}
|
|
|
|
add_port_to_channel (n, name->value ());
|
|
}
|
|
|
|
++n;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
XMLNode&
|
|
ARDOUR::UserBundle::get_state ()
|
|
{
|
|
XMLNode *node;
|
|
|
|
if (ports_are_inputs ()) {
|
|
node = new XMLNode ("InputBundle");
|
|
} else {
|
|
node = new XMLNode ("OutputBundle");
|
|
}
|
|
|
|
node->add_property ("name", name ());
|
|
|
|
{
|
|
Glib::Mutex::Lock lm (_channel_mutex);
|
|
|
|
for (std::vector<Channel>::iterator i = _channel.begin(); i != _channel.end(); ++i) {
|
|
XMLNode* c = new XMLNode ("Channel");
|
|
c->add_property ("name", i->name);
|
|
c->add_property ("type", i->type.to_string());
|
|
|
|
for (PortList::iterator j = i->ports.begin(); j != i->ports.end(); ++j) {
|
|
XMLNode* p = new XMLNode ("Port");
|
|
p->add_property ("name", *j);
|
|
c->add_child_nocopy (*p);
|
|
}
|
|
|
|
node->add_child_nocopy (*c);
|
|
}
|
|
}
|
|
|
|
return *node;
|
|
}
|