Simplified path_parse implementation

path_parse and path_parse_from_string were redundant, replaced with overloaded path_parse function to achieve the same functionality.

Additional consistency cleanup in load_map.cpp.
This commit is contained in:
Colin Rundel 2012-08-28 17:14:02 -04:00
parent de5970f45e
commit 0e5f71408e
4 changed files with 56 additions and 85 deletions

View file

@ -28,6 +28,7 @@
#include <mapnik/attribute.hpp> #include <mapnik/attribute.hpp>
#include <mapnik/feature.hpp> #include <mapnik/feature.hpp>
#include <mapnik/value.hpp> #include <mapnik/value.hpp>
#include <mapnik/path_expression_grammar.hpp>
// boost // boost
#include <boost/shared_ptr.hpp> #include <boost/shared_ptr.hpp>
@ -40,17 +41,12 @@
namespace mapnik { namespace mapnik {
typedef boost::variant<std::string, attribute> path_component;
typedef std::vector<path_component> path_expression;
typedef boost::shared_ptr<path_expression> path_expression_ptr; typedef boost::shared_ptr<path_expression> path_expression_ptr;
template <typename Iterator> struct path_expression_grammar;
MAPNIK_DECL path_expression_ptr parse_path(std::string const & str); MAPNIK_DECL path_expression_ptr parse_path(std::string const & str);
MAPNIK_DECL bool parse_path_from_string(path_expression_ptr const& path, MAPNIK_DECL path_expression_ptr parse_path(std::string const & str,
std::string const & str,
path_expression_grammar<std::string::const_iterator> const& g); path_expression_grammar<std::string::const_iterator> const& g);
template <typename T> template <typename T>
struct path_processor struct path_processor
{ {

View file

@ -39,14 +39,16 @@
namespace mapnik namespace mapnik
{ {
using namespace boost; using namespace boost;
namespace qi = boost::spirit::qi; namespace qi = boost::spirit::qi;
namespace phoenix = boost::phoenix; namespace phoenix = boost::phoenix;
namespace standard_wide = boost::spirit::standard_wide; namespace standard_wide = boost::spirit::standard_wide;
using standard_wide::space_type; using standard_wide::space_type;
using standard_wide::space;
typedef boost::variant<std::string, attribute> path_component; typedef boost::variant<std::string, attribute> path_component;
typedef std::vector<path_component> path_expression;
template <typename Iterator> template <typename Iterator>
struct path_expression_grammar : qi::grammar<Iterator, std::vector<path_component>(), space_type> struct path_expression_grammar : qi::grammar<Iterator, std::vector<path_component>(), space_type>

View file

@ -899,13 +899,7 @@ void map_parser::parse_point_symbolizer(rule & rule, xml_node const & sym)
*file = ensure_relative_to_xml(file); *file = ensure_relative_to_xml(file);
std::string filename = *file; std::string filename = *file;
ensure_exists(filename); ensure_exists(filename);
path_expression_ptr expr(boost::make_shared<path_expression>()); symbol.set_filename( parse_path(filename, sym.get_tree().path_expr_grammar) );
if (!parse_path_from_string(expr, filename, sym.get_tree().path_expr_grammar))
{
throw mapnik::config_error("Failed to parse path_expression '" + filename + "'");
}
symbol.set_filename(expr);
optional<std::string> image_transform_wkt = sym.get_opt_attr<std::string>("transform"); optional<std::string> image_transform_wkt = sym.get_opt_attr<std::string>("transform");
if (image_transform_wkt) if (image_transform_wkt)
@ -928,14 +922,13 @@ void map_parser::parse_point_symbolizer(rule & rule, xml_node const & sym)
} }
} }
void map_parser::parse_markers_symbolizer(rule & rule, xml_node const& sym)
void map_parser::parse_markers_symbolizer(rule & rule, xml_node const& node)
{ {
try try
{ {
std::string filename(""); std::string filename("");
optional<std::string> file = node.get_opt_attr<std::string>("file"); optional<std::string> file = sym.get_opt_attr<std::string>("file");
optional<std::string> base = node.get_opt_attr<std::string>("base"); optional<std::string> base = sym.get_opt_attr<std::string>("base");
if (file && !file->empty()) if (file && !file->empty())
{ {
@ -951,7 +944,7 @@ void map_parser::parse_markers_symbolizer(rule & rule, xml_node const& node)
filename = ensure_relative_to_xml(file); filename = ensure_relative_to_xml(file);
} }
optional<std::string> marker_type = node.get_opt_attr<std::string>("marker-type"); optional<std::string> marker_type = sym.get_opt_attr<std::string>("marker-type");
if (marker_type) if (marker_type)
{ {
// TODO - revisit whether to officially deprecate marker-type // TODO - revisit whether to officially deprecate marker-type
@ -971,68 +964,67 @@ void map_parser::parse_markers_symbolizer(rule & rule, xml_node const& node)
} }
} }
markers_symbolizer sym; markers_symbolizer symbol;
if (!filename.empty()) if (!filename.empty())
{ {
ensure_exists(filename); ensure_exists(filename);
path_expression_ptr expr(boost::make_shared<path_expression>()); symbol.set_filename( parse_path(filename, sym.get_tree().path_expr_grammar) );
if (!parse_path_from_string(expr, filename, node.get_tree().path_expr_grammar))
{
throw mapnik::config_error("Failed to parse path_expression '" + filename + "'");
}
sym.set_filename(expr);
} }
// overall opacity to be applied to all paths // overall opacity to be applied to all paths
optional<float> opacity = node.get_opt_attr<float>("opacity"); optional<float> opacity = sym.get_opt_attr<float>("opacity");
if (opacity) sym.set_opacity(*opacity); if (opacity) symbol.set_opacity(*opacity);
optional<float> fill_opacity = node.get_opt_attr<float>("fill-opacity"); optional<float> fill_opacity = sym.get_opt_attr<float>("fill-opacity");
if (fill_opacity) sym.set_fill_opacity(*fill_opacity); if (fill_opacity) symbol.set_fill_opacity(*fill_opacity);
optional<std::string> image_transform_wkt = node.get_opt_attr<std::string>("transform"); optional<std::string> image_transform_wkt = sym.get_opt_attr<std::string>("transform");
if (image_transform_wkt) if (image_transform_wkt)
{ {
mapnik::transform_list_ptr tl = boost::make_shared<mapnik::transform_list>(); mapnik::transform_list_ptr tl = boost::make_shared<mapnik::transform_list>();
if (!mapnik::parse_transform(*tl, *image_transform_wkt, node.get_tree().transform_expr_grammar)) if (!mapnik::parse_transform(*tl, *image_transform_wkt, sym.get_tree().transform_expr_grammar))
{ {
throw mapnik::config_error("Failed to parse transform: '" + *image_transform_wkt + "'"); throw mapnik::config_error("Failed to parse transform: '" + *image_transform_wkt + "'");
} }
sym.set_image_transform(tl); symbol.set_image_transform(tl);
} }
optional<color> c = node.get_opt_attr<color>("fill"); optional<color> c = sym.get_opt_attr<color>("fill");
if (c) sym.set_fill(*c); if (c) symbol.set_fill(*c);
optional<double> spacing = node.get_opt_attr<double>("spacing");
if (spacing) sym.set_spacing(*spacing);
optional<double> max_error = node.get_opt_attr<double>("max-error");
if (max_error) sym.set_max_error(*max_error);
optional<boolean> allow_overlap = node.get_opt_attr<boolean>("allow-overlap");
optional<boolean> ignore_placement = node.get_opt_attr<boolean>("ignore-placement");
if (allow_overlap) sym.set_allow_overlap(*allow_overlap);
if (ignore_placement) sym.set_ignore_placement(*ignore_placement);
optional<expression_ptr> width = node.get_opt_attr<expression_ptr>("width"); optional<double> spacing = sym.get_opt_attr<double>("spacing");
if (width) sym.set_width(*width); if (spacing) symbol.set_spacing(*spacing);
optional<expression_ptr> height = node.get_opt_attr<expression_ptr>("height"); optional<double> max_error = sym.get_opt_attr<double>("max-error");
if (height) sym.set_height(*height); if (max_error) symbol.set_max_error(*max_error);
optional<boolean> allow_overlap = sym.get_opt_attr<boolean>("allow-overlap");
if (allow_overlap) symbol.set_allow_overlap(*allow_overlap);
optional<boolean> ignore_placement = sym.get_opt_attr<boolean>("ignore-placement");
if (ignore_placement) symbol.set_ignore_placement(*ignore_placement);
optional<expression_ptr> width = sym.get_opt_attr<expression_ptr>("width");
if (width) symbol.set_width(*width);
optional<expression_ptr> height = sym.get_opt_attr<expression_ptr>("height");
if (height) symbol.set_height(*height);
stroke strk; stroke strk;
if (parse_stroke(strk,node)) if (parse_stroke(strk,sym))
{ {
sym.set_stroke(strk); symbol.set_stroke(strk);
} }
marker_placement_e placement = node.get_attr<marker_placement_e>("placement",sym.get_marker_placement()); marker_placement_e placement = sym.get_attr<marker_placement_e>("placement",symbol.get_marker_placement());
sym.set_marker_placement(placement); symbol.set_marker_placement(placement);
parse_symbolizer_base(sym, node); parse_symbolizer_base(symbol, sym);
rule.append(sym); rule.append(symbol);
} }
catch (config_error const& ex) catch (config_error const& ex)
{ {
ex.append_context(node); ex.append_context(sym);
throw; throw;
} }
} }
@ -1060,12 +1052,7 @@ void map_parser::parse_line_pattern_symbolizer(rule & rule, xml_node const & sym
file = ensure_relative_to_xml(file); file = ensure_relative_to_xml(file);
ensure_exists(file); ensure_exists(file);
path_expression_ptr expr(boost::make_shared<path_expression>()); line_pattern_symbolizer symbol( parse_path(file, sym.get_tree().path_expr_grammar) );
if (!parse_path_from_string(expr, file, sym.get_tree().path_expr_grammar))
{
throw mapnik::config_error("Failed to parse path_expression '" + file + "'");
}
line_pattern_symbolizer symbol(expr);
parse_symbolizer_base(symbol, sym); parse_symbolizer_base(symbol, sym);
rule.append(symbol); rule.append(symbol);
@ -1102,12 +1089,7 @@ void map_parser::parse_polygon_pattern_symbolizer(rule & rule,
file = ensure_relative_to_xml(file); file = ensure_relative_to_xml(file);
ensure_exists(file); ensure_exists(file);
path_expression_ptr expr(boost::make_shared<path_expression>()); polygon_pattern_symbolizer symbol( parse_path(file, sym.get_tree().path_expr_grammar) );
if (!parse_path_from_string(expr, file, sym.get_tree().path_expr_grammar))
{
throw mapnik::config_error("Failed to parse path_expression '" + file + "'");
}
polygon_pattern_symbolizer symbol(expr);
// pattern alignment // pattern alignment
pattern_alignment_e p_alignment = sym.get_attr<pattern_alignment_e>("alignment",LOCAL_ALIGNMENT); pattern_alignment_e p_alignment = sym.get_attr<pattern_alignment_e>("alignment",LOCAL_ALIGNMENT);
@ -1254,12 +1236,7 @@ void map_parser::parse_shield_symbolizer(rule & rule, xml_node const& sym)
file = ensure_relative_to_xml(file); file = ensure_relative_to_xml(file);
ensure_exists(file); ensure_exists(file);
path_expression_ptr expr(boost::make_shared<path_expression>()); shield_symbol.set_filename( parse_path(file, sym.get_tree().path_expr_grammar) );
if (!parse_path_from_string(expr, file, sym.get_tree().path_expr_grammar))
{
throw mapnik::config_error("Failed to parse path_expression '" + file + "'");
}
shield_symbol.set_filename(expr);
parse_symbolizer_base(shield_symbol, sym); parse_symbolizer_base(shield_symbol, sym);
rule.append(shield_symbol); rule.append(shield_symbol);
} }

View file

@ -29,12 +29,18 @@ namespace mapnik {
path_expression_ptr parse_path(std::string const & str) path_expression_ptr parse_path(std::string const & str)
{ {
path_expression_ptr path = boost::make_shared<path_expression>();
path_expression_grammar<std::string::const_iterator> g; path_expression_grammar<std::string::const_iterator> g;
return parse_path(str,g);
}
path_expression_ptr parse_path(std::string const & str,
path_expression_grammar<std::string::const_iterator> const& g)
{
path_expression_ptr path = boost::make_shared<path_expression>();
std::string::const_iterator itr = str.begin(); std::string::const_iterator itr = str.begin();
std::string::const_iterator end = str.end(); std::string::const_iterator end = str.end();
bool r = qi::phrase_parse(itr, end, g, space, *path); bool r = qi::phrase_parse(itr, end, g, boost::spirit::standard_wide::space, *path);
if (r && itr == end) if (r && itr == end)
{ {
return path; return path;
@ -45,14 +51,4 @@ path_expression_ptr parse_path(std::string const & str)
} }
} }
bool parse_path_from_string(path_expression_ptr const& path,
std::string const & str,
path_expression_grammar<std::string::const_iterator> const& g)
{
std::string::const_iterator itr = str.begin();
std::string::const_iterator end = str.end();
bool r = qi::phrase_parse(itr, end, g, space, *path);
return (r && itr==end);
}
} }