71 lines
2.2 KiB
C++
71 lines
2.2 KiB
C++
/*****************************************************************************
|
|
*
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
*
|
|
* Copyright (C) 2012 Artem Pavlenko
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*
|
|
*****************************************************************************/
|
|
// mapnik
|
|
#include <mapnik/formatting/base.hpp>
|
|
#include <mapnik/formatting/list.hpp>
|
|
#include <mapnik/formatting/registry.hpp>
|
|
#include <mapnik/xml_node.hpp>
|
|
|
|
// boost
|
|
#include <boost/property_tree/ptree.hpp>
|
|
|
|
namespace mapnik {
|
|
namespace formatting {
|
|
|
|
void node::to_xml(boost::property_tree::ptree &xml) const
|
|
{
|
|
//TODO: Should this throw a config_error?
|
|
#ifdef MAPNIK_DEBUG
|
|
std::cerr << "Error: Trying to write unsupported node type to XML.\n";
|
|
#endif
|
|
}
|
|
|
|
node_ptr node::from_xml(xml_node const& xml)
|
|
{
|
|
list_node *list = new list_node();
|
|
node_ptr list_ptr(list);
|
|
xml_node::const_iterator itr = xml.begin();
|
|
xml_node::const_iterator end = xml.end();
|
|
for (; itr != end; ++itr) {
|
|
if (itr->name() == "Placement")
|
|
{
|
|
continue;
|
|
}
|
|
node_ptr n = registry::instance()->from_xml(*itr);
|
|
if (n) list->push_back(n);
|
|
}
|
|
if (list->get_children().size() == 1) {
|
|
return list->get_children()[0];
|
|
} else if (list->get_children().size() > 1) {
|
|
return list_ptr;
|
|
} else {
|
|
return node_ptr();
|
|
}
|
|
}
|
|
|
|
void node::add_expressions(expression_set &output) const
|
|
{
|
|
//Do nothing by default
|
|
}
|
|
|
|
} //ns formatting
|
|
} //ns mapnik
|