mapnik/src/expression.cpp

69 lines
2.1 KiB
C++
Raw Normal View History

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)
*
* Copyright (C) 2011 Artem Pavlenko
*
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,
* 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
*
2006-03-31 12:32:02 +02:00
*****************************************************************************/
//$Id$
2012-02-12 12:46:07 +01:00
#include <mapnik/expression.hpp>
2010-03-24 19:01:53 +01:00
#include <mapnik/expression_grammar.hpp>
2009-12-16 21:02:06 +01:00
#include <mapnik/config_error.hpp>
#include <mapnik/unicode.hpp>
// boost
#include <boost/algorithm/string.hpp>
namespace mapnik
{
2009-12-16 21:02:06 +01:00
2012-02-12 12:46:07 +01:00
class expression_factory
2009-12-16 21:02:06 +01:00
{
public:
static expression_ptr compile(std::string const& str,transcoder const& tr)
{
2010-06-02 13:03:30 +02:00
expression_ptr expr(new expr_node(true));
2012-02-02 02:53:35 +01:00
2010-06-02 13:03:30 +02:00
std::string::const_iterator itr = str.begin();
std::string::const_iterator end = str.end();
mapnik::expression_grammar<std::string::const_iterator> g(tr);
2012-02-02 02:53:35 +01:00
2010-06-02 13:03:30 +02:00
bool r = boost::spirit::qi::phrase_parse(itr,end,g, boost::spirit::standard_wide::space,*expr);
if (r && itr==end)
{
return expr;
}
else
{
2012-02-02 02:53:35 +01:00
throw config_error( "Failed to parse expression: \"" + str + "\"" );
2010-06-02 13:03:30 +02:00
}
2009-12-16 21:02:06 +01:00
}
};
expression_ptr parse_expression (std::string const& wkt,std::string const& encoding)
{
transcoder tr(encoding);
2012-02-12 12:46:07 +01:00
return expression_factory::compile(wkt,tr);
2009-12-16 21:02:06 +01:00
}
expression_ptr parse_expression (std::string const& wkt)
{
return parse_expression(wkt,"utf8");
}
}