/* Copyright (C) 2000 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. $Id$ */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "i18n.h" using std::min; using std::max; using namespace ARDOUR; Source::Source (Session& s, string name) : _session (s) { _name = name; _timestamp = 0; } Source::Source (Session& s, const XMLNode& node) : _session (s) { _timestamp = 0; if (set_state (node)) { throw failed_constructor(); } } Source::~Source () { notify_callbacks (); } XMLNode& Source::get_state () { XMLNode *node = new XMLNode ("Source"); char buf[64]; node->add_property ("name", _name); _id.print (buf, sizeof (buf)); node->add_property ("id", buf); if (_timestamp != 0) { snprintf (buf, sizeof (buf), "%ld", _timestamp); node->add_property ("timestamp", buf); } return *node; } int Source::set_state (const XMLNode& node) { const XMLProperty* prop; if ((prop = node.property ("name")) != 0) { _name = prop->value(); } else { return -1; } if ((prop = node.property ("id")) != 0) { _id = prop->value (); } else { return -1; } if ((prop = node.property ("timestamp")) != 0) { sscanf (prop->value().c_str(), "%ld", &_timestamp); } return 0; }