/***************************************************************************** * * This file is part of Mapnik (c++ mapping toolkit) * * Copyright (C) 2011 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 * *****************************************************************************/ #ifndef MAPNIK_PATH_EXPRESSIONS_GRAMMAR_HPP #define MAPNIK_PATH_EXPRESSIONS_GRAMMAR_HPP // mapnik #include #include #include // boost #include #include // spirit2 #include #include // fusion #include // phoenix #include #include #include #include #include #include // stl #include #include namespace mapnik { using namespace boost; namespace qi = boost::spirit::qi; namespace phoenix = boost::phoenix; namespace standard_wide = boost::spirit::standard_wide; using standard_wide::space_type; using standard_wide::space; template struct path_expression_grammar : qi::grammar(), space_type> { path_expression_grammar() : path_expression_grammar::base_type(expr) { using boost::phoenix::construct; using standard_wide::char_; using qi::_1; using qi::_val; using qi::lit; using qi::lexeme; using phoenix::push_back; expr = * ( str [ push_back(_val, _1)] | ( '[' >> attr [ push_back(_val, construct( _1 )) ] >> ']') ) ; attr %= +(char_ - ']'); str %= lexeme[+(char_ -'[')]; } qi::rule() , space_type> expr; qi::rule attr; qi::rule str; }; } #endif // MAPNIK_PATH_EXPRESSIONS_GRAMMAR_HPP