mapnik/include/mapnik/geometry_correct.hpp
2015-11-07 17:53:09 -08:00

91 lines
2.4 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_GEOMETRY_CORRECT_HPP
#define MAPNIK_GEOMETRY_CORRECT_HPP
#include <mapnik/geometry.hpp>
#include <mapnik/geometry_adapters.hpp>
#include <mapnik/util/variant.hpp>
#pragma GCC diagnostic push
#include <mapnik/warning_ignore.hpp>
#include <boost/geometry/algorithms/correct.hpp>
#pragma GCC diagnostic pop
#include <type_traits>
namespace mapnik { namespace geometry {
namespace detail {
struct geometry_correct
{
using result_type = void;
template <typename T>
result_type operator() (geometry<T> & geom) const
{
mapnik::util::apply_visitor(*this, geom);
}
template <typename T>
result_type operator() (geometry_collection<T> & collection) const
{
for (auto & geom : collection)
{
(*this)(geom);
}
}
template <typename T>
result_type operator() (polygon<T> & poly) const
{
boost::geometry::correct(poly);
}
template <typename T>
result_type operator() (multi_polygon<T> & multi_poly) const
{
boost::geometry::correct(multi_poly);
}
template <typename T>
result_type operator() (T &) const
{
//no-op
}
};
}
template <typename GeomType>
inline void correct(GeomType & geom)
{
static_assert(!std::is_const<GeomType>::value,"mapnik::geometry::correct on const& is invalid");
detail::geometry_correct()(geom);
}
}}
#endif // MAPNIK_GEOMETRY_CORRECT_HPP