move karma out of header to radically speed up compile times of files including image_filter_types.hpp

This commit is contained in:
Dane Springmeyer 2013-01-04 00:07:57 -08:00
parent 24cb20051e
commit 70ef017f8c
3 changed files with 71 additions and 30 deletions

View file

@ -26,9 +26,10 @@
// boost
#include <boost/variant.hpp>
#include <boost/config/warning_disable.hpp>
#include <boost/spirit/include/karma.hpp>
// stl
#include <iostream>
#include <vector>
namespace mapnik { namespace filter {
@ -121,36 +122,9 @@ inline std::ostream& operator<< (std::ostream& os, invert)
return os;
}
template <typename Out>
struct to_string_visitor : boost::static_visitor<void>
{
to_string_visitor(Out & out)
: out_(out) {}
inline std::ostream& operator<< (std::ostream& os, filter_type const& filter);
template <typename T>
void operator () (T const& filter_tag)
{
out_ << filter_tag;
}
Out & out_;
};
inline std::ostream& operator<< (std::ostream& os, filter_type const& filter)
{
to_string_visitor<std::ostream> visitor(os);
boost::apply_visitor(visitor, filter);
return os;
}
template <typename OutputIterator, typename Container>
bool generate_image_filters(OutputIterator& sink, Container const& v)
{
using boost::spirit::karma::stream;
using boost::spirit::karma::generate;
bool r = generate(sink, stream % ' ', v);
return r;
}
bool generate_image_filters(std::back_insert_iterator<std::string> & sink, std::vector<filter_type> const& v);
}}

View file

@ -100,6 +100,7 @@ else: # unix, non-macos
source = Split(
"""
image_filter_types.cpp
miniz_png.cpp
color.cpp
css_color_grammar.cpp

View file

@ -0,0 +1,66 @@
/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2012 Artem Pavlenko
*
* 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/image_filter_types.hpp>
// boost
#include <boost/spirit/include/karma.hpp>
#include <boost/variant.hpp>
// stl
#include <vector>
namespace mapnik {
namespace filter {
template <typename Out>
struct to_string_visitor : boost::static_visitor<void>
{
to_string_visitor(Out & out)
: out_(out) {}
template <typename T>
void operator () (T const& filter_tag)
{
out_ << filter_tag;
}
Out & out_;
};
inline std::ostream& operator<< (std::ostream& os, filter_type const& filter)
{
to_string_visitor<std::ostream> visitor(os);
boost::apply_visitor(visitor, filter);
return os;
}
bool generate_image_filters(std::back_insert_iterator<std::string>& sink, std::vector<filter_type> const& filters)
{
using boost::spirit::karma::stream;
using boost::spirit::karma::generate;
bool r = generate(sink, stream % ' ', filters);
return r;
}
}}