2006-03-31 10:32:02 +00:00
|
|
|
/*****************************************************************************
|
2012-02-02 01:53:35 +00:00
|
|
|
*
|
2006-03-31 10:32:02 +00:00
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
2005-12-14 17:01:09 +00:00
|
|
|
*
|
2011-10-23 13:04:25 +00:00
|
|
|
* Copyright (C) 2011 Artem Pavlenko
|
2005-12-14 17:01:09 +00:00
|
|
|
*
|
2006-03-31 10:32:02 +00:00
|
|
|
* 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,
|
2005-12-14 17:01:09 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2006-03-31 10:32:02 +00:00
|
|
|
* 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
|
2005-12-14 17:01:09 +00:00
|
|
|
*
|
2006-03-31 10:32:02 +00:00
|
|
|
*****************************************************************************/
|
2005-12-14 17:01:09 +00:00
|
|
|
|
2012-04-08 00:45:01 +00:00
|
|
|
// mapnik
|
2012-02-12 11:46:07 +00:00
|
|
|
#include <mapnik/expression.hpp>
|
2009-12-16 20:02:06 +00:00
|
|
|
#include <mapnik/config_error.hpp>
|
|
|
|
#include <mapnik/unicode.hpp>
|
2013-01-25 06:04:17 +00:00
|
|
|
#include <mapnik/expression_node_types.hpp>
|
2012-03-11 22:24:28 +00:00
|
|
|
#include <mapnik/expression_grammar.hpp>
|
2013-01-08 22:17:31 +00:00
|
|
|
#include <boost/spirit/include/qi.hpp>
|
2009-12-16 20:02:06 +00:00
|
|
|
|
2010-01-26 23:03:42 +00:00
|
|
|
// boost
|
2012-02-25 00:34:39 +00:00
|
|
|
#include <boost/make_shared.hpp>
|
2005-12-14 17:01:09 +00:00
|
|
|
|
|
|
|
namespace mapnik
|
|
|
|
{
|
2009-12-16 20:02:06 +00:00
|
|
|
|
2012-08-29 16:59:52 +00:00
|
|
|
expression_ptr parse_expression(std::string const& str, std::string const& encoding)
|
2009-12-16 20:02:06 +00:00
|
|
|
{
|
2012-08-29 16:59:52 +00:00
|
|
|
transcoder tr(encoding);
|
|
|
|
expression_grammar<std::string::const_iterator> g(tr);
|
|
|
|
return parse_expression(str, g);
|
|
|
|
}
|
|
|
|
|
|
|
|
expression_ptr parse_expression(std::string const& str,
|
|
|
|
mapnik::expression_grammar<std::string::const_iterator> const& g)
|
|
|
|
{
|
|
|
|
expr_node node;
|
2012-02-25 00:34:39 +00:00
|
|
|
std::string::const_iterator itr = str.begin();
|
|
|
|
std::string::const_iterator end = str.end();
|
2012-08-29 16:59:52 +00:00
|
|
|
bool r = boost::spirit::qi::phrase_parse(itr, end, g, boost::spirit::standard_wide::space, node);
|
2013-01-25 06:04:17 +00:00
|
|
|
if (r && itr == end)
|
2009-12-16 20:02:06 +00:00
|
|
|
{
|
2012-08-29 19:35:48 +00:00
|
|
|
return boost::make_shared<expr_node>(node);
|
2012-02-25 00:34:39 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw config_error( "Failed to parse expression: \"" + str + "\"" );
|
2009-12-16 20:02:06 +00:00
|
|
|
}
|
2012-02-25 00:34:39 +00:00
|
|
|
}
|
|
|
|
|
2009-12-16 20:02:06 +00:00
|
|
|
|
2005-12-14 17:01:09 +00:00
|
|
|
}
|