2006-10-03 10:39:43 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
2006-10-04 13:22:18 +02:00
|
|
|
// mapnik
|
2007-10-08 19:42:41 +02:00
|
|
|
#include <mapnik/load_map.hpp>
|
|
|
|
|
2007-09-25 20:47:12 +02:00
|
|
|
#include <mapnik/image_reader.hpp>
|
2006-10-04 13:22:18 +02:00
|
|
|
#include <mapnik/color.hpp>
|
|
|
|
#include <mapnik/color_factory.hpp>
|
|
|
|
#include <mapnik/filter_factory.hpp>
|
|
|
|
#include <mapnik/layer.hpp>
|
|
|
|
#include <mapnik/datasource_cache.hpp>
|
2007-09-25 20:47:12 +02:00
|
|
|
#include <mapnik/font_engine_freetype.hpp>
|
2008-06-29 12:58:48 +02:00
|
|
|
#include <mapnik/font_set.hpp>
|
2006-10-04 13:22:18 +02:00
|
|
|
|
2007-09-25 20:47:12 +02:00
|
|
|
#include <mapnik/ptree_helpers.hpp>
|
|
|
|
#include <mapnik/libxml2_loader.hpp>
|
2007-10-08 19:42:41 +02:00
|
|
|
|
|
|
|
// boost
|
|
|
|
#include <boost/optional.hpp>
|
|
|
|
#include <boost/algorithm/string.hpp>
|
|
|
|
#include <boost/lexical_cast.hpp>
|
|
|
|
#include <boost/tokenizer.hpp>
|
|
|
|
#include <boost/property_tree/ptree.hpp>
|
|
|
|
#include <boost/property_tree/xml_parser.hpp>
|
|
|
|
#include <boost/static_assert.hpp>
|
|
|
|
// stl
|
|
|
|
#include <iostream>
|
2006-10-03 10:39:43 +02:00
|
|
|
|
2006-10-04 13:22:18 +02:00
|
|
|
using boost::lexical_cast;
|
|
|
|
using boost::bad_lexical_cast;
|
|
|
|
using boost::tokenizer;
|
2007-09-25 20:47:12 +02:00
|
|
|
using boost::property_tree::ptree;
|
|
|
|
|
|
|
|
using std::cerr;
|
|
|
|
using std::endl;
|
2006-10-03 10:39:43 +02:00
|
|
|
|
|
|
|
namespace mapnik
|
|
|
|
{
|
2007-10-05 13:27:00 +02:00
|
|
|
using boost::optional;
|
|
|
|
|
|
|
|
class map_parser : boost::noncopyable {
|
|
|
|
public:
|
|
|
|
map_parser( bool strict ) :
|
|
|
|
strict_( strict ),
|
|
|
|
font_manager_(font_engine_) {}
|
|
|
|
|
|
|
|
void parse_map( Map & map, ptree const & sty);
|
|
|
|
private:
|
|
|
|
void parse_style( Map & map, ptree const & sty);
|
|
|
|
void parse_layer( Map & map, ptree const & lay);
|
2008-06-29 12:58:48 +02:00
|
|
|
|
|
|
|
void parse_fontset(Map & map, ptree const & fset);
|
|
|
|
void parse_font(FontSet & fset, ptree const & f);
|
|
|
|
|
2007-10-05 13:27:00 +02:00
|
|
|
void parse_rule( feature_type_style & style, ptree const & r);
|
|
|
|
|
|
|
|
void parse_point_symbolizer( rule_type & rule, ptree const & sym);
|
|
|
|
void parse_line_pattern_symbolizer( rule_type & rule, ptree const & sym);
|
|
|
|
void parse_polygon_pattern_symbolizer( rule_type & rule, ptree const & sym);
|
|
|
|
void parse_text_symbolizer( rule_type & rule, ptree const & sym);
|
|
|
|
void parse_shield_symbolizer( rule_type & rule, ptree const & sym);
|
|
|
|
void parse_line_symbolizer( rule_type & rule, ptree const & sym);
|
|
|
|
void parse_polygon_symbolizer( rule_type & rule, ptree const & sym);
|
|
|
|
void parse_building_symbolizer( rule_type & rule, ptree const & sym );
|
2007-11-02 13:50:15 +01:00
|
|
|
void parse_markers_symbolizer( rule_type & rule, ptree const & sym );
|
2007-10-05 13:27:00 +02:00
|
|
|
|
2008-06-29 12:58:48 +02:00
|
|
|
void ensure_font_face( const std::string & face_name );
|
2007-10-05 13:27:00 +02:00
|
|
|
|
|
|
|
bool strict_;
|
2007-12-17 15:21:04 +01:00
|
|
|
std::map<std::string,parameters> datasource_templates_;
|
2007-10-05 13:27:00 +02:00
|
|
|
freetype_engine font_engine_;
|
|
|
|
face_manager<freetype_engine> font_manager_;
|
2007-12-17 15:21:04 +01:00
|
|
|
std::map<std::string,std::string> file_sources_;
|
2008-06-29 12:58:48 +02:00
|
|
|
std::map<std::string,FontSet> fontsets_;
|
2007-09-25 20:47:12 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
void load_map(Map & map, std::string const& filename, bool strict)
|
2006-10-03 10:39:43 +02:00
|
|
|
{
|
|
|
|
ptree pt;
|
2007-09-25 20:47:12 +02:00
|
|
|
#ifdef HAVE_LIBXML2
|
|
|
|
read_xml2(filename, pt);
|
|
|
|
#else
|
|
|
|
try
|
|
|
|
{
|
|
|
|
read_xml(filename, pt);
|
|
|
|
}
|
|
|
|
catch (const boost::property_tree::xml_parser_error & ex)
|
2006-10-03 10:39:43 +02:00
|
|
|
{
|
2007-09-25 20:47:12 +02:00
|
|
|
throw config_error( ex.what() );
|
2006-10-03 10:39:43 +02:00
|
|
|
}
|
2007-09-25 20:47:12 +02:00
|
|
|
#endif
|
2009-01-16 00:51:07 +01:00
|
|
|
map_parser parser( strict );
|
|
|
|
parser.parse_map(map, pt);
|
|
|
|
}
|
|
|
|
|
|
|
|
void load_map_string(Map & map, std::string const& str, bool strict)
|
|
|
|
{
|
|
|
|
ptree pt;
|
|
|
|
#ifdef HAVE_LIBXML2
|
|
|
|
read_xml2_string(str, pt);
|
|
|
|
#else
|
|
|
|
throw config_error( "load_map_string() only supported with libxml2 parser" );
|
|
|
|
#endif
|
2007-09-25 20:47:12 +02:00
|
|
|
|
|
|
|
map_parser parser( strict );
|
|
|
|
parser.parse_map(map, pt);
|
|
|
|
}
|
|
|
|
|
|
|
|
void map_parser::parse_map( Map & map, ptree const & pt )
|
|
|
|
{
|
|
|
|
try
|
2006-10-03 10:39:43 +02:00
|
|
|
{
|
2007-09-25 20:47:12 +02:00
|
|
|
ptree const & map_node = pt.get_child("Map");
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2009-01-14 13:10:24 +01:00
|
|
|
optional<color> bgcolor = get_opt_attr<color>(map_node, "bgcolor");
|
2007-09-25 20:47:12 +02:00
|
|
|
if (bgcolor) {
|
|
|
|
map.set_background( * bgcolor );
|
|
|
|
}
|
|
|
|
|
|
|
|
map.set_srs( get_attr(map_node, "srs", map.srs() ));
|
2008-09-21 12:14:38 +02:00
|
|
|
|
|
|
|
optional<unsigned> buffer_size = get_opt_attr<unsigned>(map_node,"buffer_size");
|
|
|
|
if (buffer_size)
|
|
|
|
{
|
|
|
|
map.set_buffer_size(*buffer_size);
|
|
|
|
}
|
2007-09-25 20:47:12 +02:00
|
|
|
}
|
|
|
|
catch (const config_error & ex)
|
|
|
|
{
|
|
|
|
ex.append_context("in node Map");
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
|
|
|
ptree::const_iterator itr = map_node.begin();
|
|
|
|
ptree::const_iterator end = map_node.end();
|
|
|
|
|
|
|
|
for (; itr != end; ++itr)
|
|
|
|
{
|
|
|
|
ptree::value_type const& v = *itr;
|
|
|
|
|
|
|
|
if (v.first == "Style")
|
|
|
|
{
|
|
|
|
parse_style( map, v.second );
|
|
|
|
}
|
|
|
|
else if (v.first == "Layer")
|
|
|
|
{
|
|
|
|
parse_layer(map, v.second );
|
|
|
|
}
|
2008-06-29 12:58:48 +02:00
|
|
|
else if (v.first == "FontSet")
|
|
|
|
{
|
|
|
|
parse_fontset(map, v.second);
|
|
|
|
}
|
2007-12-17 15:21:04 +01:00
|
|
|
else if (v.first == "FileSource")
|
|
|
|
{
|
|
|
|
std::string name = get_attr<string>( v.second, "name");
|
|
|
|
std::string value = get_own<string>( v.second, "");
|
|
|
|
file_sources_[name] = value;
|
|
|
|
}
|
|
|
|
else if (v.first == "Datasource")
|
|
|
|
{
|
|
|
|
std::string name = get_attr(v.second, "name", string("Unnamed"));
|
|
|
|
parameters params;
|
|
|
|
ptree::const_iterator paramIter = v.second.begin();
|
|
|
|
ptree::const_iterator endParam = v.second.end();
|
|
|
|
for (; paramIter != endParam; ++paramIter)
|
|
|
|
{
|
|
|
|
ptree const& param = paramIter->second;
|
|
|
|
|
|
|
|
if (paramIter->first == "Parameter")
|
|
|
|
{
|
|
|
|
std::string name = get_attr<string>(param, "name");
|
|
|
|
std::string value = get_own<string>( param,
|
|
|
|
"datasource parameter");
|
|
|
|
params[name] = value;
|
|
|
|
}
|
|
|
|
else if( paramIter->first != "<xmlattr>" )
|
|
|
|
{
|
|
|
|
throw config_error(std::string("Unknown child node in ") +
|
|
|
|
"'Datasource'. Expected 'Parameter' but got '" +
|
|
|
|
paramIter->first + "'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
datasource_templates_[name] = params;
|
|
|
|
}
|
2007-09-25 20:47:12 +02:00
|
|
|
else if (v.first != "<xmlcomment>" &&
|
|
|
|
v.first != "<xmlattr>")
|
|
|
|
{
|
|
|
|
throw config_error(std::string("Unknown child node in 'Map'. ") +
|
|
|
|
"Expected 'Style' or 'Layer' but got '" + v.first + "'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-11-08 22:11:12 +01:00
|
|
|
catch (const boost::property_tree::ptree_bad_path &)
|
2007-09-25 20:47:12 +02:00
|
|
|
{
|
|
|
|
throw config_error("Not a map file. Node 'Map' not found.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void map_parser::parse_style( Map & map, ptree const & sty )
|
|
|
|
{
|
|
|
|
string name("<missing name>");
|
|
|
|
try
|
|
|
|
{
|
|
|
|
name = get_attr<string>(sty, "name");
|
|
|
|
feature_type_style style;
|
|
|
|
|
|
|
|
ptree::const_iterator ruleIter = sty.begin();
|
|
|
|
ptree::const_iterator endRule = sty.end();
|
|
|
|
|
|
|
|
for (; ruleIter!=endRule; ++ruleIter)
|
|
|
|
{
|
|
|
|
ptree::value_type const& rule_tag = *ruleIter;
|
|
|
|
if (rule_tag.first == "Rule")
|
|
|
|
{
|
|
|
|
parse_rule( style, rule_tag.second );
|
|
|
|
}
|
|
|
|
else if (rule_tag.first != "<xmlcomment>" &&
|
|
|
|
rule_tag.first != "<xmlattr>" )
|
|
|
|
{
|
|
|
|
throw config_error(std::string("Unknown child node in 'Style'.") +
|
|
|
|
"Expected 'Rule' but got '" + rule_tag.first + "'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
map.insert_style(name, style);
|
|
|
|
|
|
|
|
} catch (const config_error & ex) {
|
|
|
|
if ( ! name.empty() ) {
|
|
|
|
ex.append_context(string("in style '") + name + "'");
|
|
|
|
}
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-29 12:58:48 +02:00
|
|
|
void map_parser::parse_fontset( Map & map, ptree const & fset )
|
|
|
|
{
|
|
|
|
string name("<missing name>");
|
|
|
|
try
|
|
|
|
{
|
|
|
|
name = get_attr<string>(fset, "name");
|
|
|
|
FontSet fontset(name);
|
|
|
|
|
|
|
|
ptree::const_iterator itr = fset.begin();
|
|
|
|
ptree::const_iterator end = fset.end();
|
|
|
|
|
|
|
|
for (; itr != end; ++itr)
|
|
|
|
{
|
|
|
|
ptree::value_type const& font_tag = *itr;
|
|
|
|
|
|
|
|
if (font_tag.first == "Font")
|
|
|
|
{
|
|
|
|
parse_font(fontset, font_tag.second);
|
|
|
|
}
|
|
|
|
else if (font_tag.first != "<xmlcomment>" &&
|
|
|
|
font_tag.first != "<xmlattr>" )
|
|
|
|
{
|
|
|
|
throw config_error(std::string("Unknown child node in 'FontSet'.") +
|
|
|
|
"Expected 'Font' but got '" + font_tag.first + "'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
map.insert_fontset(name, fontset);
|
|
|
|
|
|
|
|
// XXX Hack because map object isn't accessible by text_symbolizer
|
|
|
|
// when it's parsed
|
|
|
|
fontsets_.insert(pair<std::string, FontSet>(name, fontset));
|
|
|
|
} catch (const config_error & ex) {
|
|
|
|
if ( ! name.empty() ) {
|
|
|
|
ex.append_context(string("in FontSet '") + name + "'");
|
|
|
|
}
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void map_parser::parse_font(FontSet & fset, ptree const & f)
|
|
|
|
{
|
2009-01-17 21:52:24 +01:00
|
|
|
std::string face_name = get_attr(f, "face_name", string());
|
2008-06-29 12:58:48 +02:00
|
|
|
|
2009-01-17 21:52:24 +01:00
|
|
|
if ( strict_ )
|
2008-06-29 12:58:48 +02:00
|
|
|
{
|
2009-01-17 21:52:24 +01:00
|
|
|
ensure_font_face( face_name );
|
2008-06-29 12:58:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fset.add_face_name(face_name);
|
|
|
|
}
|
|
|
|
|
2007-09-25 20:47:12 +02:00
|
|
|
void map_parser::parse_layer( Map & map, ptree const & lay )
|
|
|
|
{
|
|
|
|
std::string name;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
name = get_attr(lay, "name", string("Unnamed"));
|
2009-01-11 19:55:29 +01:00
|
|
|
|
2007-09-25 20:47:12 +02:00
|
|
|
// XXX if no projection is given inherit from map? [DS]
|
|
|
|
std::string srs = get_attr(lay, "srs", map.srs());
|
|
|
|
|
|
|
|
Layer lyr(name, srs);
|
|
|
|
|
|
|
|
optional<boolean> status = get_opt_attr<boolean>(lay, "status");
|
|
|
|
if (status)
|
|
|
|
{
|
|
|
|
lyr.setActive( * status );
|
|
|
|
}
|
|
|
|
|
2009-01-11 19:55:29 +01:00
|
|
|
optional<std::string> title = get_opt_attr<string>(lay, "title");
|
|
|
|
if (title)
|
|
|
|
{
|
|
|
|
lyr.set_title( * title );
|
|
|
|
}
|
|
|
|
|
|
|
|
optional<std::string> abstract = get_opt_attr<string>(lay, "abstract");
|
|
|
|
if (abstract)
|
|
|
|
{
|
|
|
|
lyr.set_abstract( * abstract );
|
|
|
|
}
|
|
|
|
|
|
|
|
optional<double> minZoom = get_opt_attr<double>(lay, "minzoom");
|
|
|
|
if (minZoom)
|
|
|
|
{
|
|
|
|
lyr.setMinZoom( * minZoom );
|
|
|
|
}
|
|
|
|
|
|
|
|
optional<double> maxZoom = get_opt_attr<double>(lay, "maxzoom");
|
|
|
|
if (maxZoom)
|
|
|
|
{
|
|
|
|
lyr.setMaxZoom( * maxZoom );
|
|
|
|
}
|
|
|
|
|
|
|
|
optional<boolean> queryable = get_opt_attr<boolean>(lay, "queryable");
|
|
|
|
if (queryable)
|
|
|
|
{
|
|
|
|
lyr.setQueryable( * queryable );
|
|
|
|
}
|
|
|
|
|
2007-09-25 20:47:12 +02:00
|
|
|
optional<boolean> clear_cache =
|
|
|
|
get_opt_attr<boolean>(lay, "clear_label_cache");
|
|
|
|
if (clear_cache)
|
|
|
|
{
|
|
|
|
lyr.set_clear_label_cache( * clear_cache );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ptree::const_iterator itr2 = lay.begin();
|
|
|
|
ptree::const_iterator end2 = lay.end();
|
|
|
|
|
|
|
|
for(; itr2 != end2; ++itr2)
|
|
|
|
{
|
|
|
|
ptree::value_type const& child = *itr2;
|
|
|
|
|
|
|
|
if (child.first == "StyleName")
|
|
|
|
{
|
|
|
|
// TODO check references [DS]
|
|
|
|
lyr.add_style(child.second.data());
|
|
|
|
}
|
|
|
|
else if (child.first == "Datasource")
|
|
|
|
{
|
|
|
|
parameters params;
|
2007-12-17 15:21:04 +01:00
|
|
|
optional<std::string> base = get_opt_attr<std::string>( child.second, "base" );
|
|
|
|
if( base )
|
|
|
|
{
|
|
|
|
std::map<std::string,parameters>::const_iterator base_itr = datasource_templates_.find(*base);
|
|
|
|
if (base_itr!=datasource_templates_.end())
|
|
|
|
params = base_itr->second;
|
|
|
|
}
|
|
|
|
|
2007-09-25 20:47:12 +02:00
|
|
|
ptree::const_iterator paramIter = child.second.begin();
|
|
|
|
ptree::const_iterator endParam = child.second.end();
|
|
|
|
for (; paramIter != endParam; ++paramIter)
|
2006-10-03 10:39:43 +02:00
|
|
|
{
|
2007-09-25 20:47:12 +02:00
|
|
|
ptree const& param = paramIter->second;
|
|
|
|
|
|
|
|
if (paramIter->first == "Parameter")
|
2006-10-09 22:49:56 +02:00
|
|
|
{
|
2007-09-25 20:47:12 +02:00
|
|
|
std::string name = get_attr<string>(param, "name");
|
|
|
|
std::string value = get_own<string>( param,
|
|
|
|
"datasource parameter");
|
|
|
|
params[name] = value;
|
2006-10-09 22:49:56 +02:00
|
|
|
}
|
2007-12-17 15:21:04 +01:00
|
|
|
else if( paramIter->first != "<xmlattr>" )
|
2006-10-03 10:39:43 +02:00
|
|
|
{
|
2007-09-25 20:47:12 +02:00
|
|
|
throw config_error(std::string("Unknown child node in ") +
|
|
|
|
"'Datasource'. Expected 'Parameter' but got '" +
|
|
|
|
paramIter->first + "'");
|
2006-10-03 10:39:43 +02:00
|
|
|
}
|
|
|
|
}
|
2007-09-25 20:47:12 +02:00
|
|
|
//now we're ready to create datasource
|
|
|
|
try
|
|
|
|
{
|
|
|
|
boost::shared_ptr<datasource> ds =
|
|
|
|
datasource_cache::instance()->create(params);
|
|
|
|
lyr.set_datasource(ds);
|
|
|
|
}
|
|
|
|
catch (const mapnik::datasource_exception & ex )
|
|
|
|
{
|
|
|
|
throw config_error( ex.what() );
|
|
|
|
}
|
2008-02-12 21:03:04 +01:00
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
//throw config_error("exception...");
|
|
|
|
}
|
2007-09-25 20:47:12 +02:00
|
|
|
}
|
|
|
|
else if (child.first != "<xmlattr>" &&
|
|
|
|
child.first != "<xmlcomment>")
|
|
|
|
{
|
|
|
|
throw config_error(std::string("Unknown child node in 'Layer'. ") +
|
|
|
|
"Expected 'StyleName' or 'Datasource' but got '" +
|
|
|
|
child.first + "'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
map.addLayer(lyr);
|
|
|
|
|
|
|
|
} catch (const config_error & ex) {
|
|
|
|
if ( ! name.empty() ) {
|
|
|
|
ex.append_context(string("in layer '") + name + "'");
|
|
|
|
}
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void map_parser::parse_rule( feature_type_style & style, ptree const & r )
|
|
|
|
{
|
|
|
|
std::string name;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
name = get_attr( r, "name", string());
|
|
|
|
std::string title = get_attr( r, "title", string());
|
|
|
|
|
|
|
|
rule_type rule(name,title);
|
|
|
|
|
|
|
|
optional<std::string> filter_expr =
|
|
|
|
get_opt_child<string>( r, "Filter");
|
|
|
|
if (filter_expr)
|
|
|
|
{
|
2008-02-26 12:43:49 +01:00
|
|
|
// can we use encoding defined for XML document for filter expressions?
|
|
|
|
rule.set_filter(create_filter(*filter_expr,"utf8"));
|
2007-09-25 20:47:12 +02:00
|
|
|
}
|
2008-02-26 12:43:49 +01:00
|
|
|
|
2007-09-25 20:47:12 +02:00
|
|
|
optional<std::string> else_filter =
|
|
|
|
get_opt_child<string>(r, "ElseFilter");
|
|
|
|
if (else_filter)
|
|
|
|
{
|
|
|
|
rule.set_else(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
optional<double> min_scale =
|
|
|
|
get_opt_child<double>(r, "MinScaleDenominator");
|
|
|
|
if (min_scale)
|
|
|
|
{
|
|
|
|
rule.set_min_scale(*min_scale);
|
|
|
|
}
|
|
|
|
|
|
|
|
optional<double> max_scale =
|
|
|
|
get_opt_child<double>(r, "MaxScaleDenominator");
|
|
|
|
if (max_scale)
|
|
|
|
{
|
|
|
|
rule.set_max_scale(*max_scale);
|
|
|
|
}
|
|
|
|
|
|
|
|
ptree::const_iterator symIter = r.begin();
|
|
|
|
ptree::const_iterator endSym = r.end();
|
|
|
|
|
|
|
|
for( ;symIter != endSym; ++symIter)
|
|
|
|
{
|
|
|
|
ptree::value_type const& sym = *symIter;
|
|
|
|
|
|
|
|
if ( sym.first == "PointSymbolizer")
|
|
|
|
{
|
|
|
|
parse_point_symbolizer( rule, sym.second );
|
|
|
|
}
|
|
|
|
else if ( sym.first == "LinePatternSymbolizer")
|
|
|
|
{
|
|
|
|
parse_line_pattern_symbolizer( rule, sym.second );
|
|
|
|
}
|
|
|
|
else if ( sym.first == "PolygonPatternSymbolizer")
|
|
|
|
{
|
|
|
|
parse_polygon_pattern_symbolizer( rule, sym.second );
|
|
|
|
}
|
|
|
|
else if ( sym.first == "TextSymbolizer")
|
|
|
|
{
|
|
|
|
parse_text_symbolizer( rule, sym.second );
|
|
|
|
}
|
|
|
|
else if ( sym.first == "ShieldSymbolizer")
|
|
|
|
{
|
|
|
|
parse_shield_symbolizer( rule, sym.second );
|
|
|
|
}
|
|
|
|
else if ( sym.first == "LineSymbolizer")
|
|
|
|
{
|
|
|
|
parse_line_symbolizer( rule, sym.second );
|
|
|
|
}
|
|
|
|
else if ( sym.first == "PolygonSymbolizer")
|
|
|
|
{
|
|
|
|
parse_polygon_symbolizer( rule, sym.second );
|
|
|
|
}
|
|
|
|
else if ( sym.first == "BuildingSymbolizer")
|
|
|
|
{
|
|
|
|
parse_building_symbolizer( rule, sym.second );
|
|
|
|
}
|
|
|
|
else if ( sym.first == "RasterSymbolizer")
|
|
|
|
{
|
|
|
|
rule.append(raster_symbolizer());
|
|
|
|
}
|
2007-11-02 13:50:15 +01:00
|
|
|
else if ( sym.first == "MarkersSymbolizer")
|
|
|
|
{
|
|
|
|
rule.append(markers_symbolizer());
|
|
|
|
}
|
|
|
|
|
2007-09-25 20:47:12 +02:00
|
|
|
else if ( sym.first != "MinScaleDenominator" &&
|
|
|
|
sym.first != "MaxScaleDenominator" &&
|
|
|
|
sym.first != "Filter" &&
|
|
|
|
sym.first != "ElseFilter" &&
|
|
|
|
sym.first != "<xmlcomment>" &&
|
|
|
|
sym.first != "<xmlattr>" )
|
|
|
|
{
|
|
|
|
throw config_error(std::string("Unknown symbolizer '") +
|
|
|
|
sym.first + "'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
style.add_rule(rule);
|
|
|
|
|
|
|
|
}
|
|
|
|
catch (const config_error & ex)
|
|
|
|
{
|
|
|
|
if ( ! name.empty() )
|
|
|
|
{
|
|
|
|
ex.append_context(string("in rule '") + name + "'");
|
|
|
|
}
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void map_parser::parse_point_symbolizer( rule_type & rule, ptree const & sym )
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
optional<std::string> file = get_opt_attr<string>(sym, "file");
|
2007-12-17 15:21:04 +01:00
|
|
|
optional<std::string> base = get_opt_attr<string>(sym, "base");
|
2007-09-25 20:47:12 +02:00
|
|
|
optional<std::string> type = get_opt_attr<string>(sym, "type");
|
|
|
|
optional<boolean> allow_overlap =
|
|
|
|
get_opt_attr<boolean>(sym, "allow_overlap");
|
2008-09-19 10:27:32 +02:00
|
|
|
optional<float> opacity =
|
|
|
|
get_opt_attr<float>(sym, "opacity");
|
2007-09-25 20:47:12 +02:00
|
|
|
|
|
|
|
optional<unsigned> width = get_opt_attr<unsigned>(sym, "width");
|
|
|
|
optional<unsigned> height = get_opt_attr<unsigned>(sym, "height");
|
|
|
|
|
|
|
|
if (file && type && width && height)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2007-12-17 15:21:04 +01:00
|
|
|
if( base )
|
|
|
|
{
|
|
|
|
std::map<std::string,std::string>::const_iterator itr = file_sources_.find(*base);
|
|
|
|
if (itr!=file_sources_.end())
|
|
|
|
{
|
|
|
|
*file = itr->second + "/" + *file;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
point_symbolizer symbol(*file,*type,*width,*height);
|
|
|
|
if (allow_overlap)
|
|
|
|
{
|
|
|
|
symbol.set_allow_overlap( * allow_overlap );
|
|
|
|
}
|
2008-09-19 10:27:32 +02:00
|
|
|
if (opacity)
|
|
|
|
{
|
|
|
|
symbol.set_opacity( * opacity );
|
|
|
|
}
|
2007-12-17 15:21:04 +01:00
|
|
|
rule.append(symbol);
|
2006-10-03 10:39:43 +02:00
|
|
|
}
|
2007-09-25 20:47:12 +02:00
|
|
|
catch (ImageReaderException const & ex )
|
|
|
|
{
|
|
|
|
string msg("Failed to load image file '" + * file +
|
|
|
|
"': " + ex.what());
|
|
|
|
if (strict_)
|
2006-10-03 10:39:43 +02:00
|
|
|
{
|
2007-09-25 20:47:12 +02:00
|
|
|
throw config_error(msg);
|
2006-10-03 10:39:43 +02:00
|
|
|
}
|
2007-09-25 20:47:12 +02:00
|
|
|
else
|
2006-10-03 10:39:43 +02:00
|
|
|
{
|
2007-09-25 20:47:12 +02:00
|
|
|
clog << "### WARNING: " << msg << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else if (file || type || width || height)
|
|
|
|
{
|
|
|
|
std::ostringstream os;
|
|
|
|
os << "Missing required attributes: ";
|
|
|
|
if ( ! file ) os << "file ";
|
|
|
|
if ( ! type ) os << "type ";
|
|
|
|
if ( ! width ) os << "width ";
|
|
|
|
if ( ! height ) os << "height ";
|
|
|
|
throw config_error( os.str() );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rule.append(point_symbolizer());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (const config_error & ex)
|
|
|
|
{
|
|
|
|
ex.append_context("in PointSymbolizer");
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void map_parser::parse_line_pattern_symbolizer( rule_type & rule, ptree const & sym )
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
std::string file = get_attr<string>(sym, "file");
|
2007-12-17 15:21:04 +01:00
|
|
|
optional<std::string> base = get_opt_attr<string>(sym, "base");
|
2007-09-25 20:47:12 +02:00
|
|
|
std::string type = get_attr<string>(sym, "type");
|
|
|
|
unsigned width = get_attr<unsigned>(sym, "width");
|
|
|
|
unsigned height = get_attr<unsigned>(sym, "height");
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2007-12-17 15:21:04 +01:00
|
|
|
if( base )
|
|
|
|
{
|
|
|
|
std::map<std::string,std::string>::const_iterator itr = file_sources_.find(*base);
|
|
|
|
if (itr!=file_sources_.end())
|
|
|
|
{
|
|
|
|
file = itr->second + "/" + file;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rule.append(line_pattern_symbolizer(file,type,width,height));
|
2007-09-25 20:47:12 +02:00
|
|
|
}
|
|
|
|
catch (ImageReaderException const & ex )
|
|
|
|
{
|
|
|
|
string msg("Failed to load image file '" + file +
|
|
|
|
"': " + ex.what());
|
|
|
|
if (strict_)
|
|
|
|
{
|
|
|
|
throw config_error(msg);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
clog << "### WARNING: " << msg << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (const config_error & ex)
|
|
|
|
{
|
|
|
|
ex.append_context("in LinePatternSymbolizer");
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void map_parser::parse_polygon_pattern_symbolizer( rule_type & rule,
|
|
|
|
ptree const & sym )
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
std::string file = get_attr<string>(sym, "file");
|
2007-12-17 15:21:04 +01:00
|
|
|
optional<std::string> base = get_opt_attr<string>(sym, "base");
|
2007-09-25 20:47:12 +02:00
|
|
|
std::string type = get_attr<string>(sym, "type");
|
|
|
|
unsigned width = get_attr<unsigned>(sym, "width");
|
|
|
|
unsigned height = get_attr<unsigned>(sym, "height");
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2007-12-17 15:21:04 +01:00
|
|
|
if( base )
|
|
|
|
{
|
|
|
|
std::map<std::string,std::string>::iterator itr = file_sources_.find(*base);
|
|
|
|
if (itr!=file_sources_.end())
|
|
|
|
{
|
|
|
|
file = itr->second + "/" + file;
|
|
|
|
}
|
|
|
|
}
|
2007-09-25 20:47:12 +02:00
|
|
|
rule.append(polygon_pattern_symbolizer(file,type,width,height));
|
|
|
|
}
|
|
|
|
catch (ImageReaderException const & ex )
|
|
|
|
{
|
|
|
|
string msg("Failed to load image file '" + file +
|
|
|
|
"': " + ex.what());
|
|
|
|
if (strict_)
|
|
|
|
{
|
|
|
|
throw config_error(msg);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
clog << "### WARNING: " << msg << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (const config_error & ex)
|
|
|
|
{
|
|
|
|
ex.append_context("in PolygonPatternSymbolizer");
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void map_parser::parse_text_symbolizer( rule_type & rule, ptree const & sym )
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
std::string name = get_attr<string>(sym, "name");
|
2008-06-29 12:40:08 +02:00
|
|
|
|
2008-06-29 12:58:48 +02:00
|
|
|
optional<std::string> face_name =
|
|
|
|
get_opt_attr<std::string>(sym, "face_name");
|
|
|
|
|
|
|
|
optional<std::string> fontset_name =
|
|
|
|
get_opt_attr<std::string>(sym, "fontset_name");
|
2008-06-29 12:58:29 +02:00
|
|
|
|
2008-06-29 12:58:48 +02:00
|
|
|
unsigned size = get_attr(sym, "size", 10U);
|
|
|
|
|
2009-01-14 13:10:24 +01:00
|
|
|
color c = get_attr(sym, "fill", color(0,0,0));
|
2008-06-29 12:58:48 +02:00
|
|
|
|
|
|
|
text_symbolizer text_symbol = text_symbolizer(name, size, c);
|
|
|
|
|
|
|
|
if (fontset_name && face_name)
|
|
|
|
{
|
|
|
|
throw config_error(std::string("Can't have both face_name and fontset_name"));
|
|
|
|
}
|
|
|
|
else if (fontset_name)
|
|
|
|
{
|
|
|
|
std::map<std::string,FontSet>::const_iterator itr = fontsets_.find(*fontset_name);
|
|
|
|
if (itr != fontsets_.end())
|
|
|
|
{
|
|
|
|
text_symbol.set_fontset(itr->second);
|
|
|
|
}
|
2009-01-17 21:52:24 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
throw config_error("Unable to find any fontset named '" + *fontset_name + "'");
|
|
|
|
}
|
2008-06-29 12:58:48 +02:00
|
|
|
}
|
|
|
|
else if (face_name)
|
|
|
|
{
|
2009-01-17 21:52:24 +01:00
|
|
|
if ( strict_ )
|
|
|
|
{
|
|
|
|
ensure_font_face(*face_name);
|
|
|
|
}
|
|
|
|
text_symbol.set_face_name(*face_name);
|
2008-06-29 12:58:48 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw config_error(std::string("Must have face_name or fontset_name"));
|
|
|
|
}
|
2007-09-25 20:47:12 +02:00
|
|
|
|
|
|
|
int dx = get_attr(sym, "dx", 0);
|
|
|
|
int dy = get_attr(sym, "dy", 0);
|
|
|
|
text_symbol.set_displacement(dx,dy);
|
|
|
|
|
|
|
|
label_placement_e placement =
|
|
|
|
get_attr<label_placement_e>(sym, "placement", POINT_PLACEMENT);
|
|
|
|
text_symbol.set_label_placement( placement );
|
|
|
|
|
|
|
|
// halo fill and radius
|
2009-01-14 13:10:24 +01:00
|
|
|
optional<color> halo_fill = get_opt_attr<color>(sym, "halo_fill");
|
2007-09-25 20:47:12 +02:00
|
|
|
if (halo_fill)
|
|
|
|
{
|
|
|
|
text_symbol.set_halo_fill( * halo_fill );
|
|
|
|
}
|
|
|
|
optional<unsigned> halo_radius =
|
|
|
|
get_opt_attr<unsigned>(sym, "halo_radius");
|
|
|
|
if (halo_radius)
|
|
|
|
{
|
|
|
|
text_symbol.set_halo_radius(*halo_radius);
|
|
|
|
}
|
|
|
|
|
|
|
|
// text ratio and wrap width
|
|
|
|
optional<unsigned> text_ratio =
|
|
|
|
get_opt_attr<unsigned>(sym, "text_ratio");
|
|
|
|
|
|
|
|
optional<unsigned> wrap_width =
|
|
|
|
get_opt_attr<unsigned>(sym, "wrap_width");
|
|
|
|
if (wrap_width)
|
|
|
|
{
|
|
|
|
text_symbol.set_wrap_width(*wrap_width);
|
|
|
|
}
|
|
|
|
|
|
|
|
// spacing between repeated labels on lines
|
|
|
|
optional<unsigned> spacing = get_opt_attr<unsigned>(sym, "spacing");
|
|
|
|
if (spacing)
|
|
|
|
{
|
|
|
|
text_symbol.set_label_spacing(*spacing);
|
|
|
|
}
|
|
|
|
|
|
|
|
// minimum distance between labels
|
|
|
|
optional<unsigned> min_distance =
|
|
|
|
get_opt_attr<unsigned>(sym, "min_distance");
|
|
|
|
if (min_distance)
|
|
|
|
{
|
|
|
|
text_symbol.set_minimum_distance(*min_distance);
|
|
|
|
}
|
|
|
|
|
2007-11-05 11:32:01 +01:00
|
|
|
// don't render labels around edges
|
|
|
|
optional<boolean> avoid_edges =
|
|
|
|
get_opt_attr<boolean>(sym, "avoid_edges");
|
|
|
|
if (avoid_edges)
|
|
|
|
{
|
|
|
|
text_symbol.set_avoid_edges( * avoid_edges);
|
|
|
|
}
|
|
|
|
|
2007-09-25 20:47:12 +02:00
|
|
|
// allow_overlap
|
|
|
|
optional<boolean> allow_overlap =
|
|
|
|
get_opt_attr<boolean>(sym, "allow_overlap");
|
|
|
|
if (allow_overlap)
|
|
|
|
{
|
|
|
|
text_symbol.set_allow_overlap( * allow_overlap );
|
|
|
|
}
|
2007-11-02 13:50:15 +01:00
|
|
|
|
|
|
|
// max_char_angle_delta
|
|
|
|
optional<double> max_char_angle_delta =
|
|
|
|
get_opt_attr<double>(sym, "max_char_angle_delta");
|
|
|
|
if (max_char_angle_delta)
|
|
|
|
{
|
|
|
|
text_symbol.set_max_char_angle_delta( * max_char_angle_delta);
|
|
|
|
}
|
|
|
|
|
2007-09-25 20:47:12 +02:00
|
|
|
rule.append(text_symbol);
|
|
|
|
}
|
|
|
|
catch (const config_error & ex)
|
|
|
|
{
|
|
|
|
ex.append_context("in TextSymbolizer");
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void map_parser::parse_shield_symbolizer( rule_type & rule, ptree const & sym )
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
std::string name = get_attr<string>(sym, "name");
|
2008-07-30 01:21:39 +02:00
|
|
|
|
|
|
|
optional<std::string> face_name =
|
|
|
|
get_opt_attr<std::string>(sym, "face_name");
|
|
|
|
|
|
|
|
optional<std::string> fontset_name =
|
|
|
|
get_opt_attr<std::string>(sym, "fontset_name");
|
|
|
|
|
2007-09-25 20:47:12 +02:00
|
|
|
unsigned size = get_attr(sym, "size", 10U);
|
2009-01-14 13:10:24 +01:00
|
|
|
color fill = get_attr(sym, "fill", color(0,0,0));
|
2007-09-25 20:47:12 +02:00
|
|
|
|
|
|
|
std::string image_file = get_attr<string>(sym, "file");
|
2007-12-17 15:21:04 +01:00
|
|
|
optional<std::string> base = get_opt_attr<string>(sym, "base");
|
2007-09-25 20:47:12 +02:00
|
|
|
std::string type = get_attr<string>(sym, "type");
|
|
|
|
unsigned width = get_attr<unsigned>(sym, "width");
|
|
|
|
unsigned height = get_attr<unsigned>(sym, "height");
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2007-12-17 15:21:04 +01:00
|
|
|
if( base )
|
|
|
|
{
|
|
|
|
std::map<std::string,std::string>::const_iterator itr = file_sources_.find(*base);
|
|
|
|
if (itr!=file_sources_.end())
|
|
|
|
{
|
|
|
|
image_file = itr->second + "/" + image_file;
|
|
|
|
}
|
|
|
|
}
|
2008-07-30 01:21:39 +02:00
|
|
|
shield_symbolizer shield_symbol(name,size,fill,
|
2007-12-17 15:21:04 +01:00
|
|
|
image_file,type,width,height);
|
2008-07-30 01:21:39 +02:00
|
|
|
|
|
|
|
if (fontset_name && face_name)
|
|
|
|
{
|
|
|
|
throw config_error(std::string("Can't have both face_name and fontset_name"));
|
|
|
|
}
|
|
|
|
else if (fontset_name)
|
|
|
|
{
|
|
|
|
std::map<std::string,FontSet>::const_iterator itr = fontsets_.find(*fontset_name);
|
|
|
|
if (itr != fontsets_.end())
|
|
|
|
{
|
|
|
|
shield_symbol.set_fontset(itr->second);
|
|
|
|
}
|
2009-01-17 21:52:24 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
throw config_error("Unable to find any fontset named '" + *fontset_name + "'");
|
|
|
|
}
|
2008-07-30 01:21:39 +02:00
|
|
|
}
|
|
|
|
else if (face_name)
|
|
|
|
{
|
2009-01-17 21:52:24 +01:00
|
|
|
if ( strict_ )
|
|
|
|
{
|
|
|
|
ensure_font_face(*face_name);
|
|
|
|
}
|
|
|
|
shield_symbol.set_face_name(*face_name);
|
2008-07-30 01:21:39 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw config_error(std::string("Must have face_name or fontset_name"));
|
|
|
|
}
|
2008-09-15 10:48:21 +02:00
|
|
|
// text displacement
|
|
|
|
int dx = get_attr(sym, "dx", 0);
|
|
|
|
int dy = get_attr(sym, "dy", 0);
|
|
|
|
shield_symbol.set_displacement(dx,dy);
|
|
|
|
|
|
|
|
label_placement_e placement =
|
|
|
|
get_attr<label_placement_e>(sym, "placement", POINT_PLACEMENT);
|
|
|
|
shield_symbol.set_label_placement( placement );
|
|
|
|
|
2008-09-21 12:14:38 +02:00
|
|
|
// don't render shields around edges
|
|
|
|
optional<boolean> avoid_edges =
|
|
|
|
get_opt_attr<boolean>(sym, "avoid_edges");
|
|
|
|
if (avoid_edges)
|
|
|
|
{
|
|
|
|
shield_symbol.set_avoid_edges( *avoid_edges);
|
|
|
|
}
|
|
|
|
|
2008-09-15 10:48:21 +02:00
|
|
|
// halo fill and radius
|
2009-01-14 13:10:24 +01:00
|
|
|
optional<color> halo_fill = get_opt_attr<color>(sym, "halo_fill");
|
2008-09-15 10:48:21 +02:00
|
|
|
if (halo_fill)
|
|
|
|
{
|
|
|
|
shield_symbol.set_halo_fill( * halo_fill );
|
|
|
|
}
|
|
|
|
optional<unsigned> halo_radius =
|
|
|
|
get_opt_attr<unsigned>(sym, "halo_radius");
|
|
|
|
if (halo_radius)
|
|
|
|
{
|
|
|
|
shield_symbol.set_halo_radius(*halo_radius);
|
|
|
|
}
|
|
|
|
|
2007-09-25 20:47:12 +02:00
|
|
|
// minimum distance between labels
|
|
|
|
optional<unsigned> min_distance =
|
|
|
|
get_opt_attr<unsigned>(sym, "min_distance");
|
|
|
|
if (min_distance)
|
|
|
|
{
|
|
|
|
shield_symbol.set_minimum_distance(*min_distance);
|
|
|
|
}
|
|
|
|
rule.append(shield_symbol);
|
|
|
|
}
|
|
|
|
catch (ImageReaderException const & ex )
|
|
|
|
{
|
2007-12-17 15:21:04 +01:00
|
|
|
string msg("Failed to load image file '" + image_file +
|
2007-09-25 20:47:12 +02:00
|
|
|
"': " + ex.what());
|
2007-12-17 15:21:04 +01:00
|
|
|
if (strict_)
|
|
|
|
{
|
|
|
|
throw config_error(msg);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
clog << "### WARNING: " << msg << endl;
|
|
|
|
}
|
2007-09-25 20:47:12 +02:00
|
|
|
}
|
2007-12-17 15:21:04 +01:00
|
|
|
|
2007-09-25 20:47:12 +02:00
|
|
|
}
|
|
|
|
catch (const config_error & ex)
|
|
|
|
{
|
|
|
|
ex.append_context("in ShieldSymbolizer");
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void map_parser::parse_line_symbolizer( rule_type & rule, ptree const & sym )
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
stroke strk;
|
|
|
|
ptree::const_iterator cssIter = sym.begin();
|
|
|
|
ptree::const_iterator endCss = sym.end();
|
|
|
|
|
|
|
|
for(; cssIter != endCss; ++cssIter)
|
|
|
|
{
|
|
|
|
ptree const & css = cssIter->second;
|
|
|
|
std::string css_name = get_attr<string>(css, "name");
|
|
|
|
if (css_name == "stroke")
|
|
|
|
{
|
2009-01-14 13:10:24 +01:00
|
|
|
color c = get_css<color>(css, css_name);
|
2007-09-25 20:47:12 +02:00
|
|
|
strk.set_color(c);
|
|
|
|
}
|
|
|
|
else if (css_name == "stroke-width")
|
|
|
|
{
|
|
|
|
float width = get_css<float>(css, css_name);
|
|
|
|
strk.set_width(width);
|
|
|
|
}
|
|
|
|
else if (css_name == "stroke-opacity")
|
|
|
|
{
|
|
|
|
float opacity = get_css<float>(css, css_name);
|
|
|
|
strk.set_opacity(opacity);
|
|
|
|
}
|
|
|
|
else if (css_name == "stroke-linejoin")
|
|
|
|
{
|
|
|
|
line_join_e line_join = get_css<line_join_e>(css, css_name);
|
|
|
|
strk.set_line_join( line_join );
|
|
|
|
}
|
|
|
|
else if (css_name == "stroke-linecap")
|
|
|
|
{
|
|
|
|
line_cap_e line_cap = get_css<line_cap_e>(css, css_name);
|
|
|
|
strk.set_line_cap( line_cap );
|
|
|
|
}
|
|
|
|
else if (css_name == "stroke-dasharray")
|
|
|
|
{
|
|
|
|
tokenizer<> tok ( css.data() );
|
|
|
|
std::vector<float> dash_array;
|
|
|
|
tokenizer<>::iterator itr = tok.begin();
|
|
|
|
for (; itr != tok.end(); ++itr)
|
|
|
|
{
|
|
|
|
try
|
2006-10-03 10:39:43 +02:00
|
|
|
{
|
2007-09-25 20:47:12 +02:00
|
|
|
float f = boost::lexical_cast<float>(*itr);
|
|
|
|
dash_array.push_back(f);
|
|
|
|
}
|
2007-11-08 22:11:12 +01:00
|
|
|
catch ( boost::bad_lexical_cast &)
|
2007-09-25 20:47:12 +02:00
|
|
|
{
|
|
|
|
throw config_error(std::string("Failed to parse CSS ") +
|
|
|
|
"parameter '" + css_name + "'. Expected a " +
|
|
|
|
"list of floats but got '" + css.data() + "'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (dash_array.size())
|
|
|
|
{
|
|
|
|
size_t size = dash_array.size();
|
|
|
|
if ( size % 2)
|
|
|
|
{
|
|
|
|
for (size_t i=0; i < size ;++i)
|
2006-10-03 10:39:43 +02:00
|
|
|
{
|
2007-09-25 20:47:12 +02:00
|
|
|
dash_array.push_back(dash_array[i]);
|
2006-10-03 10:39:43 +02:00
|
|
|
}
|
|
|
|
}
|
2007-09-25 20:47:12 +02:00
|
|
|
std::vector<float>::const_iterator pos = dash_array.begin();
|
|
|
|
while (pos != dash_array.end())
|
|
|
|
{
|
|
|
|
strk.add_dash(*pos,*(pos + 1));
|
|
|
|
pos +=2;
|
|
|
|
}
|
2006-10-03 10:39:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-09-25 20:47:12 +02:00
|
|
|
rule.append(line_symbolizer(strk));
|
|
|
|
}
|
|
|
|
catch (const config_error & ex)
|
|
|
|
{
|
|
|
|
ex.append_context("in LineSymbolizer");
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void map_parser::parse_polygon_symbolizer( rule_type & rule, ptree const & sym )
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
polygon_symbolizer poly_sym;
|
|
|
|
|
|
|
|
ptree::const_iterator cssIter = sym.begin();
|
|
|
|
ptree::const_iterator endCss = sym.end();
|
|
|
|
|
|
|
|
for(; cssIter != endCss; ++cssIter)
|
|
|
|
{
|
|
|
|
ptree const & css = cssIter->second;
|
|
|
|
std::string css_name = get_attr<string>(css, "name");
|
|
|
|
if (css_name == "fill")
|
|
|
|
{
|
2009-01-14 13:10:24 +01:00
|
|
|
color c = get_css<color>(css, css_name);
|
2007-09-25 20:47:12 +02:00
|
|
|
poly_sym.set_fill(c);
|
|
|
|
}
|
|
|
|
else if (css_name == "fill-opacity")
|
|
|
|
{
|
|
|
|
float opacity = get_css<float>(css, css_name);
|
|
|
|
poly_sym.set_opacity(opacity);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rule.append(poly_sym);
|
|
|
|
|
|
|
|
}
|
|
|
|
catch (const config_error & ex)
|
|
|
|
{
|
|
|
|
ex.append_context("in PolygonSymbolizer");
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void map_parser::parse_building_symbolizer( rule_type & rule, ptree const & sym )
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
building_symbolizer building_sym;
|
|
|
|
|
|
|
|
ptree::const_iterator cssIter = sym.begin();
|
|
|
|
ptree::const_iterator endCss = sym.end();
|
|
|
|
|
|
|
|
for(; cssIter != endCss; ++cssIter)
|
|
|
|
{
|
|
|
|
ptree const& css = cssIter->second;
|
|
|
|
|
|
|
|
std::string css_name = get_attr<string>(css, "name");
|
|
|
|
std::string data = css.data();
|
|
|
|
if (css_name == "fill")
|
|
|
|
{
|
2009-01-14 13:10:24 +01:00
|
|
|
color c = get_css<color>(css, css_name);
|
2007-09-25 20:47:12 +02:00
|
|
|
building_sym.set_fill(c);
|
|
|
|
}
|
|
|
|
else if (css_name == "fill-opacity")
|
|
|
|
{
|
|
|
|
float opacity = get_css<float>(css, css_name);
|
|
|
|
building_sym.set_opacity(opacity);
|
|
|
|
}
|
2007-10-05 13:27:00 +02:00
|
|
|
else if (css_name == "height")
|
|
|
|
{
|
|
|
|
float height = get_css<float>(css,css_name);
|
|
|
|
building_sym.set_height(height);
|
|
|
|
}
|
2007-09-25 20:47:12 +02:00
|
|
|
}
|
|
|
|
rule.append(building_sym);
|
|
|
|
}
|
|
|
|
catch (const config_error & ex)
|
|
|
|
{
|
|
|
|
ex.append_context("in BuildingSymbolizer");
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-29 12:58:48 +02:00
|
|
|
void map_parser::ensure_font_face( const std::string & face_name )
|
2007-09-25 20:47:12 +02:00
|
|
|
{
|
2008-06-29 12:58:48 +02:00
|
|
|
if ( ! font_manager_.get_face( face_name ) )
|
2007-09-25 20:47:12 +02:00
|
|
|
{
|
|
|
|
throw config_error("Failed to find font face '" +
|
2008-06-29 12:58:48 +02:00
|
|
|
face_name + "'");
|
2006-10-03 10:39:43 +02:00
|
|
|
}
|
2007-09-25 20:47:12 +02:00
|
|
|
}
|
|
|
|
} // end of namespace mapnik
|