make sure to check relative paths behavior up front, and handle background-image properly - closes #702
This commit is contained in:
parent
9491fef0dd
commit
a79018d0a0
1 changed files with 40 additions and 84 deletions
|
@ -174,6 +174,14 @@ void map_parser::parse_map( Map & map, ptree const & pt )
|
||||||
{
|
{
|
||||||
parameters extra_attr;
|
parameters extra_attr;
|
||||||
|
|
||||||
|
// Check if relative paths should be interpreted as relative to/from XML location
|
||||||
|
// Default is true, and map_parser::ensure_relative_to_xml will be called to modify path
|
||||||
|
optional<boolean> paths_from_xml = get_opt_attr<boolean>(map_node, "paths_from_xml");
|
||||||
|
if (paths_from_xml)
|
||||||
|
{
|
||||||
|
relative_to_xml_ = *paths_from_xml;
|
||||||
|
}
|
||||||
|
|
||||||
optional<color> bgcolor = get_opt_attr<color>(map_node, "background-color");
|
optional<color> bgcolor = get_opt_attr<color>(map_node, "background-color");
|
||||||
if (bgcolor)
|
if (bgcolor)
|
||||||
{
|
{
|
||||||
|
@ -183,7 +191,7 @@ void map_parser::parse_map( Map & map, ptree const & pt )
|
||||||
optional<std::string> image_filename = get_opt_attr<string>(map_node, "background-image");
|
optional<std::string> image_filename = get_opt_attr<string>(map_node, "background-image");
|
||||||
if (image_filename)
|
if (image_filename)
|
||||||
{
|
{
|
||||||
map.set_background_image(*image_filename);
|
map.set_background_image(ensure_relative_to_xml(image_filename));
|
||||||
}
|
}
|
||||||
|
|
||||||
map.set_srs( get_attr(map_node, "srs", map.srs() ));
|
map.set_srs( get_attr(map_node, "srs", map.srs() ));
|
||||||
|
@ -201,14 +209,6 @@ void map_parser::parse_map( Map & map, ptree const & pt )
|
||||||
freetype_engine::register_fonts( ensure_relative_to_xml(font_directory), false);
|
freetype_engine::register_fonts( ensure_relative_to_xml(font_directory), false);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if relative paths should be interpreted as relative to/from XML location
|
|
||||||
// Default is true, and map_parser::ensure_relative_to_xml will be called to modify path
|
|
||||||
optional<boolean> paths_from_xml = get_opt_attr<boolean>(map_node, "paths_from_xml");
|
|
||||||
if (paths_from_xml)
|
|
||||||
{
|
|
||||||
relative_to_xml_ = *paths_from_xml;
|
|
||||||
}
|
|
||||||
|
|
||||||
optional<std::string> min_version_string = get_opt_attr<std::string>(map_node, "minimum_version");
|
optional<std::string> min_version_string = get_opt_attr<std::string>(map_node, "minimum_version");
|
||||||
|
|
||||||
if (min_version_string)
|
if (min_version_string)
|
||||||
|
@ -560,7 +560,6 @@ void map_parser::parse_layer( Map & map, ptree const & lay )
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( relative_to_xml_ ) {
|
|
||||||
boost::optional<std::string> base_param = params.get<std::string>("base");
|
boost::optional<std::string> base_param = params.get<std::string>("base");
|
||||||
boost::optional<std::string> file_param = params.get<std::string>("file");
|
boost::optional<std::string> file_param = params.get<std::string>("file");
|
||||||
|
|
||||||
|
@ -571,12 +570,6 @@ void map_parser::parse_layer( Map & map, ptree const & lay )
|
||||||
else if (file_param){
|
else if (file_param){
|
||||||
params["file"] = ensure_relative_to_xml(file_param);
|
params["file"] = ensure_relative_to_xml(file_param);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
#ifdef MAPNIK_DEBUG
|
|
||||||
else {
|
|
||||||
std::clog << "\nFound relative paths in xml, leaving unchanged...\n";
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//now we are ready to create datasource
|
//now we are ready to create datasource
|
||||||
try
|
try
|
||||||
|
@ -777,15 +770,7 @@ void map_parser::parse_point_symbolizer( rule & rule, ptree const & sym )
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( relative_to_xml_ )
|
|
||||||
{
|
|
||||||
*file = ensure_relative_to_xml(file);
|
*file = ensure_relative_to_xml(file);
|
||||||
}
|
|
||||||
#ifdef MAPNIK_DEBUG
|
|
||||||
else {
|
|
||||||
std::clog << "\nFound relative paths in xml, leaving unchanged...\n";
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
point_symbolizer symbol(parse_path(*file));
|
point_symbolizer symbol(parse_path(*file));
|
||||||
|
|
||||||
|
@ -887,16 +872,7 @@ void map_parser::parse_markers_symbolizer( rule & rule, ptree const & sym )
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( relative_to_xml_ )
|
filename = ensure_relative_to_xml(file);
|
||||||
{
|
|
||||||
*file = ensure_relative_to_xml(file);
|
|
||||||
}
|
|
||||||
#ifdef MAPNIK_DEBUG
|
|
||||||
else {
|
|
||||||
std::clog << "\nFound relative paths in xml, leaving unchanged...\n";
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
filename = *file;
|
|
||||||
}
|
}
|
||||||
catch (...)
|
catch (...)
|
||||||
{
|
{
|
||||||
|
@ -1003,16 +979,8 @@ void map_parser::parse_line_pattern_symbolizer( rule & rule, ptree const & sym )
|
||||||
file = itr->second + "/" + file;
|
file = itr->second + "/" + file;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ( relative_to_xml_ )
|
|
||||||
{
|
|
||||||
file = ensure_relative_to_xml(file);
|
|
||||||
}
|
|
||||||
#ifdef MAPNIK_DEBUG
|
|
||||||
else {
|
|
||||||
std::clog << "\nFound relative paths in xml, leaving unchanged...\n";
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
file = ensure_relative_to_xml(file);
|
||||||
|
|
||||||
line_pattern_symbolizer symbol(parse_path(file));
|
line_pattern_symbolizer symbol(parse_path(file));
|
||||||
|
|
||||||
|
@ -1058,15 +1026,8 @@ void map_parser::parse_polygon_pattern_symbolizer( rule & rule,
|
||||||
file = itr->second + "/" + file;
|
file = itr->second + "/" + file;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ( relative_to_xml_ )
|
|
||||||
{
|
|
||||||
file = ensure_relative_to_xml(file);
|
file = ensure_relative_to_xml(file);
|
||||||
}
|
|
||||||
#ifdef MAPNIK_DEBUG
|
|
||||||
else {
|
|
||||||
std::clog << "\nFound relative paths in xml, leaving unchanged...\n";
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
polygon_pattern_symbolizer symbol(parse_path(file));
|
polygon_pattern_symbolizer symbol(parse_path(file));
|
||||||
|
|
||||||
|
@ -1345,15 +1306,7 @@ void map_parser::parse_shield_symbolizer( rule & rule, ptree const & sym )
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( relative_to_xml_ )
|
|
||||||
{
|
|
||||||
image_file = ensure_relative_to_xml(image_file);
|
image_file = ensure_relative_to_xml(image_file);
|
||||||
}
|
|
||||||
#ifdef MAPNIK_DEBUG
|
|
||||||
else {
|
|
||||||
std::clog << "\nFound relative paths in xml, leaving unchanged...\n";
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
shield_symbolizer shield_symbol(parse_expression(name, "utf8"),size,fill,parse_path(image_file));
|
shield_symbolizer shield_symbol(parse_expression(name, "utf8"),size,fill,parse_path(image_file));
|
||||||
|
|
||||||
|
@ -1922,23 +1875,26 @@ void map_parser::ensure_font_face( const std::string & face_name )
|
||||||
|
|
||||||
std::string map_parser::ensure_relative_to_xml( boost::optional<std::string> opt_path )
|
std::string map_parser::ensure_relative_to_xml( boost::optional<std::string> opt_path )
|
||||||
{
|
{
|
||||||
|
if (relative_to_xml_)
|
||||||
|
{
|
||||||
boost::filesystem::path xml_path = filename_;
|
boost::filesystem::path xml_path = filename_;
|
||||||
boost::filesystem::path rel_path = *opt_path;
|
boost::filesystem::path rel_path = *opt_path;
|
||||||
if ( !rel_path.has_root_path() )
|
if ( !rel_path.has_root_path() )
|
||||||
{
|
{
|
||||||
#if (BOOST_FILESYSTEM_VERSION == 3)
|
#if (BOOST_FILESYSTEM_VERSION == 3)
|
||||||
boost::filesystem::path full = boost::filesystem::absolute(xml_path.branch_path()/rel_path).normalize();
|
boost::filesystem::path full = boost::filesystem::absolute(xml_path.branch_path()/rel_path).normalize();
|
||||||
#else // v2
|
#else // v2
|
||||||
boost::filesystem::path full = boost::filesystem::complete(xml_path.branch_path()/rel_path).normalize();
|
boost::filesystem::path full = boost::filesystem::complete(xml_path.branch_path()/rel_path).normalize();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MAPNIK_DEBUG
|
#ifdef MAPNIK_DEBUG
|
||||||
std::clog << "\nModifying relative paths to be relative to xml...\n";
|
std::clog << "\nModifying relative paths to be relative to xml...\n";
|
||||||
std::clog << "original base path: " << *opt_path << "\n";
|
std::clog << "original base path: " << *opt_path << "\n";
|
||||||
std::clog << "relative base path: " << full.string() << "\n";
|
std::clog << "relative base path: " << full.string() << "\n";
|
||||||
#endif
|
#endif
|
||||||
return full.string();
|
return full.string();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return *opt_path;
|
return *opt_path;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue