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>
|
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
|
|
|
|
#include <boost/algorithm/string.hpp>
|
2012-02-25 01:34:39 +01:00
|
|
|
#include <boost/make_shared.hpp>
|
2005-12-14 18:01:09 +01:00
|
|
|
|
|
|
|
namespace mapnik
|
|
|
|
{
|
2009-12-16 21:02:06 +01:00
|
|
|
|
2012-02-25 01:34:39 +01:00
|
|
|
expression_ptr expression_factory::compile(std::string const& str,transcoder const& tr)
|
2009-12-16 21:02:06 +01:00
|
|
|
{
|
2012-02-25 01:34:39 +01:00
|
|
|
expression_ptr expr(boost::make_shared<expr_node>(true));
|
|
|
|
std::string::const_iterator itr = str.begin();
|
|
|
|
std::string::const_iterator end = str.end();
|
|
|
|
mapnik::expression_grammar<std::string::const_iterator> g(tr);
|
|
|
|
bool r = boost::spirit::qi::phrase_parse(itr,end,g, boost::spirit::standard_wide::space,*expr);
|
|
|
|
if (r && itr==end)
|
2009-12-16 21:02:06 +01:00
|
|
|
{
|
2012-02-25 01:34:39 +01:00
|
|
|
return expr;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw config_error( "Failed to parse expression: \"" + str + "\"" );
|
2009-12-16 21:02:06 +01:00
|
|
|
}
|
2012-02-25 01:34:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool expression_factory::parse_from_string(expression_ptr const& expr,
|
2012-03-13 15:56:11 +01:00
|
|
|
std::string const& str,
|
|
|
|
mapnik::expression_grammar<std::string::const_iterator> const& g)
|
2012-02-25 01:34:39 +01:00
|
|
|
{
|
|
|
|
std::string::const_iterator itr = str.begin();
|
|
|
|
std::string::const_iterator end = str.end();
|
|
|
|
bool r = boost::spirit::qi::phrase_parse(itr,end,g, boost::spirit::standard_wide::space,*expr);
|
|
|
|
return (r && itr==end);
|
|
|
|
}
|
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");
|
|
|
|
}
|
2005-12-14 18:01:09 +01:00
|
|
|
}
|