mapnik/include/mapnik/vertex_processor.hpp

102 lines
2.6 KiB
C++

/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2015 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
*
*****************************************************************************/
#ifndef MAPNIK_VERTEX_PROCESSOR_HPP
#define MAPNIK_VERTEX_PROCESSOR_HPP
#include <mapnik/geometry_impl.hpp>
namespace mapnik { namespace new_geometry {
template <typename T>
struct vertex_processor
{
using processor_type = T;
vertex_processor(processor_type& proc)
: proc_(proc) {}
void operator() (geometry const& geom)
{
util::apply_visitor(*this, geom);
}
void operator() (geometry_empty const&)
{
// no-op
}
void operator() (point const& pt)
{
point_vertex_adapter va(pt);
proc_(va);
}
void operator() (line_string const& line)
{
line_string_vertex_adapter va(line);
proc_(va);
}
void operator() (polygon const& poly)
{
polygon_vertex_adapter va(poly);
proc_(va);
}
void operator() (multi_point const& multi_pt)
{
for (auto const& pt : multi_pt)
{
point_vertex_adapter va(pt);
proc_(va);
}
}
void operator() (multi_line_string const& multi_line)
{
for (auto const& line : multi_line)
{
line_string_vertex_adapter va(line);
proc_(va);
}
}
void operator() (multi_polygon const& multi_poly)
{
for ( auto const& poly : multi_poly)
{
polygon_vertex_adapter va(poly);
proc_(va);
}
}
void operator() (geometry_collection const& collection)
{
for (auto const& geom : collection)
{
operator()(geom);
}
}
processor_type & proc_;
};
}}
#endif // MAPNIK_VERTEX_PROCESSOR_HPP