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