append.hpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  1. // Boost.Geometry (aka GGL, Generic Geometry Library)
  2. // Copyright (c) 2007-2014 Barend Gehrels, Amsterdam, the Netherlands.
  3. // Copyright (c) 2008-2014 Bruno Lalande, Paris, France.
  4. // Copyright (c) 2009-2014 Mateusz Loskot, London, UK.
  5. // This file was modified by Oracle on 2014.
  6. // Modifications copyright (c) 2014, Oracle and/or its affiliates.
  7. // Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle
  8. // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
  9. // Parts of Boost.Geometry are redesigned from Geodan's Geographic Library
  10. // (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands.
  11. // Use, modification and distribution is subject to the Boost Software License,
  12. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  13. // http://www.boost.org/LICENSE_1_0.txt)
  14. #ifndef BOOST_GEOMETRY_ALGORITHMS_APPEND_HPP
  15. #define BOOST_GEOMETRY_ALGORITHMS_APPEND_HPP
  16. #include <boost/range.hpp>
  17. #include <boost/variant/apply_visitor.hpp>
  18. #include <boost/variant/static_visitor.hpp>
  19. #include <boost/variant/variant_fwd.hpp>
  20. #include <boost/geometry/algorithms/num_interior_rings.hpp>
  21. #include <boost/geometry/algorithms/detail/convert_point_to_point.hpp>
  22. #include <boost/geometry/core/access.hpp>
  23. #include <boost/geometry/core/mutable_range.hpp>
  24. #include <boost/geometry/core/point_type.hpp>
  25. #include <boost/geometry/core/tags.hpp>
  26. #include <boost/geometry/geometries/concepts/check.hpp>
  27. #include <boost/geometry/geometries/variant.hpp>
  28. #include <boost/geometry/util/range.hpp>
  29. namespace boost { namespace geometry
  30. {
  31. #ifndef DOXYGEN_NO_DETAIL
  32. namespace detail { namespace append
  33. {
  34. template <typename Geometry, typename Point>
  35. struct append_no_action
  36. {
  37. static inline void apply(Geometry& , Point const& ,
  38. int = 0, int = 0)
  39. {
  40. }
  41. };
  42. template <typename Geometry, typename Point>
  43. struct append_point
  44. {
  45. static inline void apply(Geometry& geometry, Point const& point,
  46. int = 0, int = 0)
  47. {
  48. typename geometry::point_type<Geometry>::type copy;
  49. geometry::detail::conversion::convert_point_to_point(point, copy);
  50. traits::push_back<Geometry>::apply(geometry, copy);
  51. }
  52. };
  53. template <typename Geometry, typename Range>
  54. struct append_range
  55. {
  56. typedef typename boost::range_value<Range>::type point_type;
  57. static inline void apply(Geometry& geometry, Range const& range,
  58. int = 0, int = 0)
  59. {
  60. for (typename boost::range_iterator<Range const>::type
  61. it = boost::begin(range);
  62. it != boost::end(range);
  63. ++it)
  64. {
  65. append_point<Geometry, point_type>::apply(geometry, *it);
  66. }
  67. }
  68. };
  69. template <typename Polygon, typename Point>
  70. struct point_to_polygon
  71. {
  72. typedef typename ring_type<Polygon>::type ring_type;
  73. static inline void apply(Polygon& polygon, Point const& point,
  74. int ring_index, int = 0)
  75. {
  76. if (ring_index == -1)
  77. {
  78. append_point<ring_type, Point>::apply(
  79. exterior_ring(polygon), point);
  80. }
  81. else if (ring_index < int(num_interior_rings(polygon)))
  82. {
  83. append_point<ring_type, Point>::apply(
  84. range::at(interior_rings(polygon), ring_index), point);
  85. }
  86. }
  87. };
  88. template <typename Polygon, typename Range>
  89. struct range_to_polygon
  90. {
  91. typedef typename ring_type<Polygon>::type ring_type;
  92. static inline void apply(Polygon& polygon, Range const& range,
  93. int ring_index, int = 0)
  94. {
  95. if (ring_index == -1)
  96. {
  97. append_range<ring_type, Range>::apply(
  98. exterior_ring(polygon), range);
  99. }
  100. else if (ring_index < int(num_interior_rings(polygon)))
  101. {
  102. append_range<ring_type, Range>::apply(
  103. range::at(interior_rings(polygon), ring_index), range);
  104. }
  105. }
  106. };
  107. }} // namespace detail::append
  108. #endif // DOXYGEN_NO_DETAIL
  109. #ifndef DOXYGEN_NO_DISPATCH
  110. namespace dispatch
  111. {
  112. namespace splitted_dispatch
  113. {
  114. template <typename Tag, typename Geometry, typename Point>
  115. struct append_point
  116. : detail::append::append_no_action<Geometry, Point>
  117. {};
  118. template <typename Geometry, typename Point>
  119. struct append_point<linestring_tag, Geometry, Point>
  120. : detail::append::append_point<Geometry, Point>
  121. {};
  122. template <typename Geometry, typename Point>
  123. struct append_point<ring_tag, Geometry, Point>
  124. : detail::append::append_point<Geometry, Point>
  125. {};
  126. template <typename Polygon, typename Point>
  127. struct append_point<polygon_tag, Polygon, Point>
  128. : detail::append::point_to_polygon<Polygon, Point>
  129. {};
  130. template <typename Tag, typename Geometry, typename Range>
  131. struct append_range
  132. : detail::append::append_no_action<Geometry, Range>
  133. {};
  134. template <typename Geometry, typename Range>
  135. struct append_range<linestring_tag, Geometry, Range>
  136. : detail::append::append_range<Geometry, Range>
  137. {};
  138. template <typename Geometry, typename Range>
  139. struct append_range<ring_tag, Geometry, Range>
  140. : detail::append::append_range<Geometry, Range>
  141. {};
  142. template <typename Polygon, typename Range>
  143. struct append_range<polygon_tag, Polygon, Range>
  144. : detail::append::range_to_polygon<Polygon, Range>
  145. {};
  146. } // namespace splitted_dispatch
  147. // Default: append a range (or linestring or ring or whatever) to any geometry
  148. template
  149. <
  150. typename Geometry, typename RangeOrPoint,
  151. typename TagRangeOrPoint = typename tag<RangeOrPoint>::type
  152. >
  153. struct append
  154. : splitted_dispatch::append_range<typename tag<Geometry>::type, Geometry, RangeOrPoint>
  155. {};
  156. // Specialization for point to append a point to any geometry
  157. template <typename Geometry, typename RangeOrPoint>
  158. struct append<Geometry, RangeOrPoint, point_tag>
  159. : splitted_dispatch::append_point<typename tag<Geometry>::type, Geometry, RangeOrPoint>
  160. {};
  161. } // namespace dispatch
  162. #endif // DOXYGEN_NO_DISPATCH
  163. #ifndef DOXYGEN_NO_DETAIL
  164. namespace detail { namespace append
  165. {
  166. template <typename MultiGeometry, typename RangeOrPoint>
  167. struct append_to_multigeometry
  168. {
  169. static inline void apply(MultiGeometry& multigeometry,
  170. RangeOrPoint const& range_or_point,
  171. int ring_index, int multi_index)
  172. {
  173. dispatch::append
  174. <
  175. typename boost::range_value<MultiGeometry>::type,
  176. RangeOrPoint
  177. >::apply(range::at(multigeometry, multi_index), range_or_point, ring_index);
  178. }
  179. };
  180. }} // namespace detail::append
  181. #endif // DOXYGEN_NO_DETAIL
  182. #ifndef DOXYGEN_NO_DISPATCH
  183. namespace dispatch
  184. {
  185. namespace splitted_dispatch
  186. {
  187. template <typename Geometry, typename Point>
  188. struct append_point<multi_point_tag, Geometry, Point>
  189. : detail::append::append_point<Geometry, Point>
  190. {};
  191. template <typename Geometry, typename Range>
  192. struct append_range<multi_point_tag, Geometry, Range>
  193. : detail::append::append_range<Geometry, Range>
  194. {};
  195. template <typename MultiGeometry, typename RangeOrPoint>
  196. struct append_point<multi_linestring_tag, MultiGeometry, RangeOrPoint>
  197. : detail::append::append_to_multigeometry<MultiGeometry, RangeOrPoint>
  198. {};
  199. template <typename MultiGeometry, typename RangeOrPoint>
  200. struct append_range<multi_linestring_tag, MultiGeometry, RangeOrPoint>
  201. : detail::append::append_to_multigeometry<MultiGeometry, RangeOrPoint>
  202. {};
  203. template <typename MultiGeometry, typename RangeOrPoint>
  204. struct append_point<multi_polygon_tag, MultiGeometry, RangeOrPoint>
  205. : detail::append::append_to_multigeometry<MultiGeometry, RangeOrPoint>
  206. {};
  207. template <typename MultiGeometry, typename RangeOrPoint>
  208. struct append_range<multi_polygon_tag, MultiGeometry, RangeOrPoint>
  209. : detail::append::append_to_multigeometry<MultiGeometry, RangeOrPoint>
  210. {};
  211. } // namespace splitted_dispatch
  212. } // namespace dispatch
  213. #endif // DOXYGEN_NO_DISPATCH
  214. namespace resolve_variant {
  215. template <typename Geometry>
  216. struct append
  217. {
  218. template <typename RangeOrPoint>
  219. static inline void apply(Geometry& geometry,
  220. RangeOrPoint const& range_or_point,
  221. int ring_index,
  222. int multi_index)
  223. {
  224. concept::check<Geometry>();
  225. dispatch::append<Geometry, RangeOrPoint>::apply(geometry,
  226. range_or_point,
  227. ring_index,
  228. multi_index);
  229. }
  230. };
  231. template <BOOST_VARIANT_ENUM_PARAMS(typename T)>
  232. struct append<boost::variant<BOOST_VARIANT_ENUM_PARAMS(T)> >
  233. {
  234. template <typename RangeOrPoint>
  235. struct visitor: boost::static_visitor<void>
  236. {
  237. RangeOrPoint const& m_range_or_point;
  238. int m_ring_index;
  239. int m_multi_index;
  240. visitor(RangeOrPoint const& range_or_point,
  241. int ring_index,
  242. int multi_index):
  243. m_range_or_point(range_or_point),
  244. m_ring_index(ring_index),
  245. m_multi_index(multi_index)
  246. {}
  247. template <typename Geometry>
  248. void operator()(Geometry& geometry) const
  249. {
  250. append<Geometry>::apply(geometry,
  251. m_range_or_point,
  252. m_ring_index,
  253. m_multi_index);
  254. }
  255. };
  256. template <typename RangeOrPoint>
  257. static inline void apply(boost::variant<BOOST_VARIANT_ENUM_PARAMS(T)>& variant_geometry,
  258. RangeOrPoint const& range_or_point,
  259. int ring_index,
  260. int multi_index)
  261. {
  262. boost::apply_visitor(
  263. visitor<RangeOrPoint>(
  264. range_or_point,
  265. ring_index,
  266. multi_index
  267. ),
  268. variant_geometry
  269. );
  270. }
  271. };
  272. } // namespace resolve_variant;
  273. /*!
  274. \brief Appends one or more points to a linestring, ring, polygon, multi-geometry
  275. \ingroup append
  276. \tparam Geometry \tparam_geometry
  277. \tparam RangeOrPoint Either a range or a point, fullfilling Boost.Range concept or Boost.Geometry Point Concept
  278. \param geometry \param_geometry
  279. \param range_or_point The point or range to add
  280. \param ring_index The index of the ring in case of a polygon:
  281. exterior ring (-1, the default) or interior ring index
  282. \param multi_index The index of the geometry to which the points are appended
  283. \qbk{[include reference/algorithms/append.qbk]}
  284. }
  285. */
  286. template <typename Geometry, typename RangeOrPoint>
  287. inline void append(Geometry& geometry, RangeOrPoint const& range_or_point,
  288. int ring_index = -1, int multi_index = 0)
  289. {
  290. resolve_variant::append<Geometry>
  291. ::apply(geometry, range_or_point, ring_index, multi_index);
  292. }
  293. }} // namespace boost::geometry
  294. #endif // BOOST_GEOMETRY_ALGORITHMS_APPEND_HPP