mapnik/src/svg/output/process_symbolizers.cpp

117 lines
4.3 KiB
C++
Raw Normal View History

2010-08-10 08:25:09 +00:00
/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2011 Artem Pavlenko
2010-08-10 08:25:09 +00: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
*
*****************************************************************************/
#if defined(SVG_RENDERER)
2010-08-10 08:25:09 +00:00
// mapnik
2014-07-23 21:02:36 +00:00
#include <mapnik/feature.hpp>
#include <mapnik/svg/output/svg_renderer.hpp>
2014-07-24 21:31:59 +00:00
#include <mapnik/svg/geometry_svg_generator_impl.hpp>
#include <mapnik/svg/output/svg_output_grammars.hpp>
#include <boost/spirit/include/karma.hpp>
#include <mapnik/svg/output/svg_output_attributes.hpp>
2010-08-10 08:25:09 +00:00
2012-02-02 01:53:35 +00:00
namespace mapnik {
2010-08-10 08:25:09 +00:00
struct symbol_type_dispatch : public util::static_visitor<bool>
{
template <typename Symbolizer>
bool operator()(Symbolizer const& sym) const
{
return false;
}
bool operator()(line_symbolizer const& sym) const
{
return true;
}
bool operator()(polygon_symbolizer const& sym) const
{
return true;
}
};
bool is_path_based(symbolizer const& sym)
{
return util::apply_visitor(symbol_type_dispatch(), sym);
}
2014-07-24 21:31:59 +00:00
template <typename OutputIterator, typename PathType>
void generate_path(OutputIterator & output_iterator, PathType const& path, svg::path_output_attributes const& path_attributes)
{
using path_dash_array_grammar = svg::svg_path_dash_array_grammar<OutputIterator>;
using path_attributes_grammar = svg::svg_path_attributes_grammar<OutputIterator>;
static const path_attributes_grammar attributes_grammar;
static const path_dash_array_grammar dash_array_grammar;
static const svg::svg_path_generator<OutputIterator,PathType> svg_path_grammer;
boost::spirit::karma::lit_type lit;
boost::spirit::karma::generate(output_iterator, lit("<path ") << svg_path_grammer, path);
boost::spirit::karma::generate(output_iterator, lit(" ") << dash_array_grammar, path_attributes.stroke_dasharray());
boost::spirit::karma::generate(output_iterator, lit(" ") << attributes_grammar << lit("/>\n"), path_attributes);
}
template <typename OutputIterator>
bool svg_renderer<OutputIterator>::process(rule::symbolizers const& syms,
mapnik::feature_impl & feature,
proj_transform const& prj_trans)
{
// svg renderer supports processing of multiple symbolizers.
using path_type = coord_transform<view_transform, geometry_type>;
2010-08-10 08:25:09 +00:00
bool process_path = false;
// process each symbolizer to collect its (path) information.
// path information (attributes from line_ and polygon_ symbolizers)
// is collected with the path_attributes_ data member.
2013-12-11 15:25:23 +00:00
for (auto const& sym : syms)
{
if (is_path_based(sym))
{
process_path = true;
}
util::apply_visitor(symbol_dispatch(*this, feature, prj_trans), sym);
}
2010-08-10 08:25:09 +00:00
if (process_path)
{
// generate path output for each geometry of the current feature.
2013-12-11 15:25:23 +00:00
for (auto & geom : feature.paths())
{
if(geom.size() > 0)
{
path_type path(common_.t_, geom, prj_trans);
2014-07-24 21:31:59 +00:00
generate_path(generator_.output_iterator_, path, path_attributes_);
}
}
// set the previously collected values back to their defaults
// for the feature that will be processed next.
path_attributes_.reset();
}
return true;
}
2010-08-10 08:25:09 +00:00
template bool svg_renderer<std::ostream_iterator<char> >::process(rule::symbolizers const& syms,
mapnik::feature_impl & feature,
proj_transform const& prj_trans);
2010-08-10 08:25:09 +00:00
}
#endif