]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/geometry/algorithms/detail/disjoint/linear_segment_or_box.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / geometry / algorithms / detail / disjoint / linear_segment_or_box.hpp
CommitLineData
7c673cae
FG
1// Boost.Geometry (aka GGL, Generic Geometry Library)
2
3// Copyright (c) 2007-2014 Barend Gehrels, Amsterdam, the Netherlands.
4// Copyright (c) 2008-2014 Bruno Lalande, Paris, France.
5// Copyright (c) 2009-2014 Mateusz Loskot, London, UK.
6// Copyright (c) 2013-2014 Adam Wulkiewicz, Lodz, Poland.
7
20effc67
TL
8// This file was modified by Oracle on 2013-2020.
9// Modifications copyright (c) 2013-2020, Oracle and/or its affiliates.
7c673cae
FG
10
11// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
12// Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle
13
14// Parts of Boost.Geometry are redesigned from Geodan's Geographic Library
15// (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands.
16
17// Use, modification and distribution is subject to the Boost Software License,
18// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
19// http://www.boost.org/LICENSE_1_0.txt)
20
21#ifndef BOOST_GEOMETRY_ALGORITHMS_DETAIL_DISJOINT_LINEAR_SEGMENT_OR_BOX_HPP
22#define BOOST_GEOMETRY_ALGORITHMS_DETAIL_DISJOINT_LINEAR_SEGMENT_OR_BOX_HPP
23
7c673cae 24
92f5a8d4
TL
25#include <boost/geometry/algorithms/detail/disjoint/multirange_geometry.hpp>
26#include <boost/geometry/algorithms/dispatch/disjoint.hpp>
27#include <boost/geometry/algorithms/not_implemented.hpp>
7c673cae 28#include <boost/geometry/core/closure.hpp>
7c673cae 29#include <boost/geometry/geometries/segment.hpp>
92f5a8d4 30#include <boost/geometry/util/range.hpp>
7c673cae
FG
31#include <boost/geometry/views/closeable_view.hpp>
32
7c673cae
FG
33
34namespace boost { namespace geometry
35{
36
37
38#ifndef DOXYGEN_NO_DETAIL
39namespace detail { namespace disjoint
40{
41
42
92f5a8d4
TL
43template
44<
45 typename SegmentOrBox,
46 typename Tag = typename tag<SegmentOrBox>::type
47>
48struct disjoint_point_segment_or_box
49 : not_implemented<Tag>
50{};
51
52template <typename Segment>
53struct disjoint_point_segment_or_box<Segment, segment_tag>
54{
55 template <typename Point, typename Strategy>
56 static inline bool apply(Point const& point, Segment const& segment, Strategy const& strategy)
57 {
58 return dispatch::disjoint
59 <
60 Point, Segment
61 >::apply(point, segment,
62 strategy.template get_point_in_geometry_strategy<Point, Segment>());
63 }
64};
65
66template <typename Box>
67struct disjoint_point_segment_or_box<Box, box_tag>
68{
69 template <typename Point, typename Strategy>
70 static inline bool apply(Point const& point, Box const& box, Strategy const& strategy)
71 {
72 return dispatch::disjoint
73 <
74 Point, Box
75 >::apply(point, box,
76 strategy.get_disjoint_point_box_strategy());
77 }
78};
79
80
7c673cae
FG
81template
82<
83 typename Range,
84 closure_selector Closure,
85 typename SegmentOrBox
86>
87struct disjoint_range_segment_or_box
88{
b32b8144
FG
89 template <typename Strategy>
90 static inline bool apply(Range const& range,
91 SegmentOrBox const& segment_or_box,
92 Strategy const& strategy)
7c673cae
FG
93 {
94 typedef typename closeable_view<Range const, Closure>::type view_type;
95
96 typedef typename ::boost::range_value<view_type>::type point_type;
97 typedef typename ::boost::range_iterator
98 <
99 view_type const
100 >::type const_iterator;
101
102 typedef typename ::boost::range_size<view_type>::type size_type;
103
104 typedef typename geometry::model::referring_segment
105 <
106 point_type const
107 > range_segment;
108
109 view_type view(range);
110
111 const size_type count = ::boost::size(view);
112
113 if ( count == 0 )
114 {
115 return false;
116 }
117 else if ( count == 1 )
118 {
92f5a8d4 119 return disjoint_point_segment_or_box
7c673cae 120 <
92f5a8d4 121 SegmentOrBox
7c673cae 122 >::apply(geometry::range::front<view_type const>(view),
b32b8144 123 segment_or_box,
92f5a8d4 124 strategy);
7c673cae
FG
125 }
126 else
127 {
128 const_iterator it0 = ::boost::begin(view);
129 const_iterator it1 = ::boost::begin(view) + 1;
130 const_iterator last = ::boost::end(view);
131
132 for ( ; it1 != last ; ++it0, ++it1 )
133 {
20effc67
TL
134 point_type const& p0 = *it0;
135 point_type const& p1 = *it1;
136 range_segment rng_segment(p0, p1);
7c673cae
FG
137 if ( !dispatch::disjoint
138 <
139 range_segment, SegmentOrBox
b32b8144 140 >::apply(rng_segment, segment_or_box, strategy) )
7c673cae
FG
141 {
142 return false;
143 }
144 }
145 return true;
146 }
147 }
148};
149
150
151
152
153template
154<
155 typename Linear,
156 typename SegmentOrBox,
157 typename Tag = typename tag<Linear>::type
158>
159struct disjoint_linear_segment_or_box
160 : not_implemented<Linear, SegmentOrBox>
161{};
162
163
164template <typename Linestring, typename SegmentOrBox>
165struct disjoint_linear_segment_or_box<Linestring, SegmentOrBox, linestring_tag>
166 : disjoint_range_segment_or_box<Linestring, closed, SegmentOrBox>
167{};
168
169
170template <typename MultiLinestring, typename SegmentOrBox>
171struct disjoint_linear_segment_or_box
172 <
173 MultiLinestring, SegmentOrBox, multi_linestring_tag
174 > : multirange_constant_size_geometry<MultiLinestring, SegmentOrBox>
175{};
176
177
178}} // namespace detail::disjoint
179#endif // DOXYGEN_NO_DETAIL
180
181
182#ifndef DOXYGEN_NO_DISPATCH
183namespace dispatch
184{
185
186
187template <typename Linear, typename Segment>
188struct disjoint<Linear, Segment, 2, linear_tag, segment_tag, false>
189 : detail::disjoint::disjoint_linear_segment_or_box<Linear, Segment>
190{};
191
192
193template <typename Linear, typename Box, std::size_t DimensionCount>
194struct disjoint<Linear, Box, DimensionCount, linear_tag, box_tag, false>
195 : detail::disjoint::disjoint_linear_segment_or_box<Linear, Box>
196{};
197
198
199} // namespace dispatch
200#endif // DOXYGEN_NO_DISPATCH
201
202
203}} // namespace boost::geometry
204
205
206#endif // BOOST_GEOMETRY_ALGORITHMS_DETAIL_DISJOINT_LINEAR_SEGMENT_OR_BOX_HPP