123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623 |
- #ifndef BOOST_GEOMETRY_ALGORITHMS_FOR_EACH_HPP
- #define BOOST_GEOMETRY_ALGORITHMS_FOR_EACH_HPP
- #include <boost/range/begin.hpp>
- #include <boost/range/end.hpp>
- #include <boost/range/reference.hpp>
- #include <boost/range/value_type.hpp>
- #include <boost/geometry/algorithms/not_implemented.hpp>
- #include <boost/geometry/core/closure.hpp>
- #include <boost/geometry/core/exterior_ring.hpp>
- #include <boost/geometry/core/interior_rings.hpp>
- #include <boost/geometry/core/point_type.hpp>
- #include <boost/geometry/core/tag_cast.hpp>
- #include <boost/geometry/core/tags.hpp>
- #include <boost/geometry/geometries/concepts/check.hpp>
- #include <boost/geometry/geometries/segment.hpp>
- #include <boost/geometry/views/detail/indexed_point_view.hpp>
- namespace boost { namespace geometry
- {
- #ifndef DOXYGEN_NO_DETAIL
- namespace detail { namespace for_each
- {
- struct fe_point_point
- {
- template <typename Point, typename Functor>
- static inline bool apply(Point& point, Functor&& f)
- {
- return f(point);
- }
- };
- struct fe_segment_point
- {
- template <typename Point, typename Functor>
- static inline bool apply(Point& , Functor&& )
- {
-
-
-
-
- return true;
- }
- };
- struct fe_point_segment
- {
- template <typename Segment, typename Functor>
- static inline bool apply(Segment& s, Functor&& f)
- {
-
-
- geometry::detail::indexed_point_view<Segment, 0> p0(s);
- geometry::detail::indexed_point_view<Segment, 1> p1(s);
- return f(p0) && f(p1);
- }
- };
- struct fe_segment_segment
- {
- template <typename Segment, typename Functor>
- static inline bool apply(Segment& s, Functor&& f)
- {
-
-
- return f(s);
- }
- };
- template <typename Range>
- struct fe_range_value
- {
- typedef util::transcribe_const_t
- <
- Range,
- typename boost::range_value<Range>::type
- > type;
- };
- template <typename Range>
- struct fe_point_type
- {
- typedef util::transcribe_const_t
- <
- Range,
- typename point_type<Range>::type
- > type;
- };
- template <typename Range>
- struct fe_point_type_is_referencable
- {
- static const bool value =
- std::is_const<Range>::value
- || std::is_same
- <
- typename boost::range_reference<Range>::type,
- typename fe_point_type<Range>::type&
- >::value;
- };
- template
- <
- typename Range,
- bool UseReferences = fe_point_type_is_referencable<Range>::value
- >
- struct fe_point_call_f
- {
- template <typename Iterator, typename Functor>
- static inline bool apply(Iterator it, Functor&& f)
- {
-
-
- typedef typename fe_point_type<Range>::type point_type;
- point_type& p = *it;
- return f(p);
- }
- };
- template <typename Range>
- struct fe_point_call_f<Range, false>
- {
- template <typename Iterator, typename Functor>
- static inline bool apply(Iterator it, Functor&& f)
- {
-
-
- typedef typename fe_point_type<Range>::type point_type;
- point_type p = *it;
- bool result = f(p);
- *it = p;
- return result;
- }
- };
- struct fe_point_range
- {
- template <typename Range, typename Functor>
- static inline bool apply(Range& range, Functor&& f)
- {
- auto const end = boost::end(range);
- for (auto it = boost::begin(range); it != end; ++it)
- {
- if (! fe_point_call_f<Range>::apply(it, f))
- {
- return false;
- }
- }
- return true;
- }
- };
- template
- <
- typename Range,
- bool UseReferences = fe_point_type_is_referencable<Range>::value
- >
- struct fe_segment_call_f
- {
- template <typename Iterator, typename Functor>
- static inline bool apply(Iterator it0, Iterator it1, Functor&& f)
- {
-
-
-
-
-
- typedef typename fe_point_type<Range>::type point_type;
- point_type& p0 = *it0;
- point_type& p1 = *it1;
- model::referring_segment<point_type> s(p0, p1);
- return f(s);
- }
- };
- template <typename Range>
- struct fe_segment_call_f<Range, false>
- {
- template <typename Iterator, typename Functor>
- static inline bool apply(Iterator it0, Iterator it1, Functor&& f)
- {
-
-
- typedef typename fe_point_type<Range>::type point_type;
- point_type p0 = *it0;
- point_type p1 = *it1;
- model::referring_segment<point_type> s(p0, p1);
- bool result = f(s);
- *it0 = p0;
- *it1 = p1;
- return result;
- }
- };
- template <closure_selector Closure>
- struct fe_segment_range_with_closure
- {
- template <typename Range, typename Functor>
- static inline bool apply(Range& range, Functor&& f)
- {
- auto it = boost::begin(range);
- auto const end = boost::end(range);
- if (it == end)
- {
- return true;
- }
- auto previous = it++;
- if (it == end)
- {
- return fe_segment_call_f<Range>::apply(previous, previous, f);
- }
- while (it != end)
- {
- if (! fe_segment_call_f<Range>::apply(previous, it, f))
- {
- return false;
- }
- previous = it++;
- }
- return true;
- }
- };
- template <>
- struct fe_segment_range_with_closure<open>
- {
- template <typename Range, typename Functor>
- static inline bool apply(Range& range, Functor&& f)
- {
- if (! fe_segment_range_with_closure<closed>::apply(range, f))
- {
- return false;
- }
- auto const begin = boost::begin(range);
- auto end = boost::end(range);
- if (begin == end)
- {
- return true;
- }
- --end;
- if (begin == end)
- {
-
- return true;
- }
- return fe_segment_call_f<Range>::apply(end, begin, f);
- }
- };
- struct fe_segment_range
- {
- template <typename Range, typename Functor>
- static inline bool apply(Range& range, Functor&& f)
- {
- return fe_segment_range_with_closure
- <
- closure<Range>::value
- >::apply(range, f);
- }
- };
- template <typename RangePolicy>
- struct for_each_polygon
- {
- template <typename Polygon, typename Functor>
- static inline bool apply(Polygon& poly, Functor&& f)
- {
- if (! RangePolicy::apply(exterior_ring(poly), f))
- {
- return false;
- }
- auto&& rings = interior_rings(poly);
- auto const end = boost::end(rings);
- for (auto it = boost::begin(rings); it != end; ++it)
- {
-
- if (! RangePolicy::apply(*it, f))
- {
- return false;
- }
- }
- return true;
- }
- };
- template <typename SinglePolicy>
- struct for_each_multi
- {
- template <typename MultiGeometry, typename Functor>
- static inline bool apply(MultiGeometry& multi, Functor&& f)
- {
- auto const end = boost::end(multi);
- for (auto it = boost::begin(multi); it != end; ++it)
- {
-
- if (! SinglePolicy::apply(*it, f))
- {
- return false;
- }
- }
- return true;
- }
- };
- }}
- #endif
- #ifndef DOXYGEN_NO_DISPATCH
- namespace dispatch
- {
- template
- <
- typename Geometry,
- typename Tag = typename tag_cast<typename tag<Geometry>::type, multi_tag>::type
- >
- struct for_each_point: not_implemented<Tag>
- {};
- template <typename Point>
- struct for_each_point<Point, point_tag>
- : detail::for_each::fe_point_point
- {};
- template <typename Segment>
- struct for_each_point<Segment, segment_tag>
- : detail::for_each::fe_point_segment
- {};
- template <typename Linestring>
- struct for_each_point<Linestring, linestring_tag>
- : detail::for_each::fe_point_range
- {};
- template <typename Ring>
- struct for_each_point<Ring, ring_tag>
- : detail::for_each::fe_point_range
- {};
- template <typename Polygon>
- struct for_each_point<Polygon, polygon_tag>
- : detail::for_each::for_each_polygon
- <
- detail::for_each::fe_point_range
- >
- {};
- template <typename MultiGeometry>
- struct for_each_point<MultiGeometry, multi_tag>
- : detail::for_each::for_each_multi
- <
-
- for_each_point
- <
- typename detail::for_each::fe_range_value
- <
- MultiGeometry
- >::type
- >
- >
- {};
- template
- <
- typename Geometry,
- typename Tag = typename tag<Geometry>::type
- >
- struct for_each_segment: not_implemented<Tag>
- {};
- template <typename Point>
- struct for_each_segment<Point, point_tag>
- : detail::for_each::fe_segment_point
- {};
- template <typename Segment>
- struct for_each_segment<Segment, segment_tag>
- : detail::for_each::fe_segment_segment
- {};
- template <typename Linestring>
- struct for_each_segment<Linestring, linestring_tag>
- : detail::for_each::fe_segment_range
- {};
- template <typename Ring>
- struct for_each_segment<Ring, ring_tag>
- : detail::for_each::fe_segment_range
- {};
- template <typename Polygon>
- struct for_each_segment<Polygon, polygon_tag>
- : detail::for_each::for_each_polygon
- <
- detail::for_each::fe_segment_range
- >
- {};
- template <typename MultiPoint>
- struct for_each_segment<MultiPoint, multi_point_tag>
- : detail::for_each::fe_segment_point
- {};
- template <typename MultiLinestring>
- struct for_each_segment<MultiLinestring, multi_linestring_tag>
- : detail::for_each::for_each_multi
- <
- detail::for_each::fe_segment_range
- >
- {};
- template <typename MultiPolygon>
- struct for_each_segment<MultiPolygon, multi_polygon_tag>
- : detail::for_each::for_each_multi
- <
- detail::for_each::for_each_polygon
- <
- detail::for_each::fe_segment_range
- >
- >
- {};
- }
- #endif
- template<typename Geometry, typename UnaryPredicate>
- inline bool all_points_of(Geometry& geometry, UnaryPredicate p)
- {
- concepts::check<Geometry>();
- return dispatch::for_each_point<Geometry>::apply(geometry, p);
- }
- template<typename Geometry, typename UnaryPredicate>
- inline bool all_segments_of(Geometry const& geometry, UnaryPredicate p)
- {
- concepts::check<Geometry const>();
- return dispatch::for_each_segment<Geometry const>::apply(geometry, p);
- }
- template<typename Geometry, typename UnaryPredicate>
- inline bool any_point_of(Geometry& geometry, UnaryPredicate p)
- {
- concepts::check<Geometry>();
- return ! dispatch::for_each_point<Geometry>::apply(geometry, [&](auto&& pt)
- {
- return ! p(pt);
- });
- }
- template<typename Geometry, typename UnaryPredicate>
- inline bool any_segment_of(Geometry const& geometry, UnaryPredicate p)
- {
- concepts::check<Geometry const>();
- return ! dispatch::for_each_segment<Geometry const>::apply(geometry, [&](auto&& s)
- {
- return ! p(s);
- });
- }
- template<typename Geometry, typename UnaryPredicate>
- inline bool none_point_of(Geometry& geometry, UnaryPredicate p)
- {
- concepts::check<Geometry>();
- return dispatch::for_each_point<Geometry>::apply(geometry, [&](auto&& pt)
- {
- return ! p(pt);
- });
- }
- template<typename Geometry, typename UnaryPredicate>
- inline bool none_segment_of(Geometry const& geometry, UnaryPredicate p)
- {
- concepts::check<Geometry const>();
- return dispatch::for_each_segment<Geometry const>::apply(geometry, [&](auto&& s)
- {
- return ! p(s);
- });
- }
- template<typename Geometry, typename Functor>
- inline Functor for_each_point(Geometry& geometry, Functor f)
- {
- concepts::check<Geometry>();
- dispatch::for_each_point<Geometry>::apply(geometry, [&](auto&& pt)
- {
- f(pt);
-
- return true;
- });
- return f;
- }
- template<typename Geometry, typename Functor>
- inline Functor for_each_segment(Geometry& geometry, Functor f)
- {
- concepts::check<Geometry>();
- dispatch::for_each_segment<Geometry>::apply(geometry, [&](auto&& s)
- {
- f(s);
-
- return true;
- });
- return f;
- }
- }}
- #endif
|