/***************************************************************************** * * This file is part of Mapnik (c++ mapping toolkit) * * Copyright (C) 2017 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 #include // stl #include #include namespace mapnik { namespace svg { template bool parse_path(const char* wkt, PathType& p) { using namespace boost::spirit; using iterator_type = char const*; iterator_type first = wkt; iterator_type last = wkt + std::strlen(wkt); bool relative = false; using space_type = mapnik::svg::grammar::space_type; #if BOOST_VERSION >= 106700 auto const grammar = x3::with(p) [ x3::with(relative) [mapnik::svg::svg_path_grammar()]]; #else auto const grammar = x3::with(std::ref(p)) [ x3::with(std::ref(relative)) [mapnik::svg::svg_path_grammar()]]; #endif try { if (!x3::phrase_parse(first, last, grammar, space_type()) || first != last) { throw std::runtime_error("Failed to parse svg-path"); } } catch (...) { return false; } return true; } template bool MAPNIK_DECL parse_path(const char*, svg_converter_type&); } // namespace svg } // namespace mapnik