2012-08-29 19:44:04 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
2015-06-16 12:49:16 +02:00
|
|
|
* Copyright (C) 2015 Artem Pavlenko
|
2012-08-29 19:44:04 +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
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
// mapnik
|
|
|
|
#include <mapnik/color.hpp>
|
|
|
|
#include <mapnik/color_factory.hpp>
|
|
|
|
#include <mapnik/config_error.hpp>
|
|
|
|
#include <mapnik/css_color_grammar.hpp>
|
|
|
|
|
|
|
|
namespace mapnik {
|
|
|
|
|
|
|
|
color parse_color(std::string const& str)
|
|
|
|
{
|
2014-05-08 09:45:18 +02:00
|
|
|
// TODO - early return for @color?
|
2014-04-30 19:42:05 +02:00
|
|
|
static const css_color_grammar<std::string::const_iterator> g;
|
2012-08-29 19:44:04 +02:00
|
|
|
color c;
|
|
|
|
std::string::const_iterator first = str.begin();
|
|
|
|
std::string::const_iterator last = str.end();
|
2014-01-26 23:00:58 +01:00
|
|
|
boost::spirit::ascii::space_type space;
|
2012-08-29 19:44:04 +02:00
|
|
|
bool result = boost::spirit::qi::phrase_parse(first, last, g,
|
2014-01-26 23:00:58 +01:00
|
|
|
space,
|
2012-08-29 19:44:04 +02:00
|
|
|
c);
|
|
|
|
if (result && (first == last))
|
2014-01-26 23:00:58 +01:00
|
|
|
{
|
2014-05-06 01:02:42 +02:00
|
|
|
return c;
|
2014-01-26 23:00:58 +01:00
|
|
|
}
|
2012-08-29 19:44:04 +02:00
|
|
|
else
|
2014-01-26 23:00:58 +01:00
|
|
|
{
|
2015-07-13 13:48:34 +02:00
|
|
|
throw config_error("Failed to parse color: \"" + str + "\"");
|
2014-01-26 23:00:58 +01:00
|
|
|
}
|
2012-08-29 19:44:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|