/* This file is part of Ingen. * Copyright (C) 2007-2009 Dave Robillard * * Ingen 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. * * Ingen 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 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., * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include #include "raul/TableImpl.hpp" #include "interface/GraphObject.hpp" #include "ObjectModel.hpp" using namespace std; using namespace Raul; namespace Ingen { namespace Client { ObjectModel::ObjectModel(const Path& path) : ResourceImpl(path) , _path(path) { } ObjectModel::~ObjectModel() { } /** Get a variable for this object. * * @return Metadata value with key @a key, empty string otherwise. */ const Atom& ObjectModel::get_variable(const URI& key) const { static const Atom null_atom; Properties::const_iterator i = _variables.find(key); if (i != _variables.end()) return i->second; else return null_atom; } /** Get a variable for this object. * * @return Metadata value with key @a key, empty string otherwise. */ Atom& ObjectModel::get_variable(URI& key) { static Atom null_atom; Properties::iterator i = _variables.find(key); if (i != _variables.end()) return i->second; else return null_atom; } bool ObjectModel::polyphonic() const { const Raul::Atom& polyphonic = get_variable("ingen:polyphonic"); return (polyphonic.is_valid() && polyphonic.get_bool()); } /** Merge the data of @a model with self, as much as possible. * * This will merge the two models, but with any conflict take the value in * @a model as correct. The paths of the two models MUST be equal. */ void ObjectModel::set(SharedPtr o) { assert(_path == o->path()); if (o->_parent) _parent = o->_parent; for (Properties::const_iterator v = o->properties().begin(); v != o->properties().end(); ++v) { const Raul::Atom& mine = get_property(v->first); if (mine.is_valid()) cerr << "WARNING: " << _path << "Client/Server property mismatch: " << v->first << endl; ResourceImpl::set_property(v->first, v->second); signal_variable.emit(v->first, v->second); } for (Properties::const_iterator v = o->variables().begin(); v != o->variables().end(); ++v) { Properties::const_iterator mine = _variables.find(v->first); if (mine != _variables.end()) cerr << "WARNING: " << _path << "Client/Server variable mismatch: " << v->first << endl; _variables[v->first] = v->second; signal_variable.emit(v->first, v->second); } } } // namespace Client } // namespace Ingen