equal_to.hpp 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. // Boost.Geometry Index
  2. //
  3. // Copyright (c) 2011-2014 Adam Wulkiewicz, Lodz, Poland.
  4. //
  5. // Use, modification and distribution is subject to the Boost Software License,
  6. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  7. // http://www.boost.org/LICENSE_1_0.txt)
  8. #ifndef BOOST_GEOMETRY_INDEX_EQUAL_TO_HPP
  9. #define BOOST_GEOMETRY_INDEX_EQUAL_TO_HPP
  10. #include <boost/geometry/algorithms/equals.hpp>
  11. #include <boost/geometry/index/indexable.hpp>
  12. namespace boost { namespace geometry { namespace index { namespace detail {
  13. template <typename Geometry,
  14. typename Tag = typename geometry::tag<Geometry>::type>
  15. struct equals
  16. {
  17. inline static bool apply(Geometry const& g1, Geometry const& g2)
  18. {
  19. return geometry::equals(g1, g2);
  20. }
  21. };
  22. template <typename Geometry, typename Tag>
  23. struct equals<Geometry *, Tag>
  24. {
  25. inline static bool apply(const Geometry * g1, const Geometry * g2)
  26. {
  27. return g1 == g2;
  28. }
  29. };
  30. template <typename T>
  31. struct equals<T, void>
  32. {
  33. inline static bool apply(T const& v1, T const& v2)
  34. {
  35. return v1 == v2;
  36. }
  37. };
  38. template <typename Tuple, size_t I, size_t N>
  39. struct tuple_equals
  40. {
  41. inline static bool apply(Tuple const& t1, Tuple const& t2)
  42. {
  43. typedef typename boost::tuples::element<I, Tuple>::type T;
  44. return equals<T>::apply(boost::get<I>(t1), boost::get<I>(t2))
  45. && tuple_equals<Tuple, I+1, N>::apply(t1, t2);
  46. }
  47. };
  48. template <typename Tuple, size_t I>
  49. struct tuple_equals<Tuple, I, I>
  50. {
  51. inline static bool apply(Tuple const&, Tuple const&)
  52. {
  53. return true;
  54. }
  55. };
  56. // TODO: Consider this: Since equal_to<> is using geometry::equals() it's possible that
  57. // two compared Indexables are not exactly the same! They will be spatially equal
  58. // but not strictly equal. Consider 2 Segments with reversed order of points.
  59. // Therefore it's possible that during the Value removal different value will be
  60. // removed than the one that was passed.
  61. /*!
  62. \brief The function object comparing Values.
  63. It compares Geometries using geometry::equals() function. Other types are compared using operator==.
  64. The default version handles Values which are Indexables.
  65. This template is also specialized for std::pair<T1, T2> and boost::tuple<...>.
  66. \tparam Value The type of objects which are compared by this function object.
  67. \tparam IsIndexable If true, Values are compared using boost::geometry::equals() functions.
  68. */
  69. template <typename Value,
  70. bool IsIndexable = is_indexable<Value>::value>
  71. struct equal_to
  72. {
  73. /*! \brief The type of result returned by function object. */
  74. typedef bool result_type;
  75. /*!
  76. \brief Compare values. If Value is a Geometry geometry::equals() function is used.
  77. \param l First value.
  78. \param r Second value.
  79. \return true if values are equal.
  80. */
  81. inline bool operator()(Value const& l, Value const& r) const
  82. {
  83. return detail::equals<Value>::apply(l ,r);
  84. }
  85. };
  86. /*!
  87. \brief The function object comparing Values.
  88. This specialization compares values of type std::pair<T1, T2>.
  89. It compares pairs' first values, then second values.
  90. \tparam T1 The first type.
  91. \tparam T2 The second type.
  92. */
  93. template <typename T1, typename T2>
  94. struct equal_to<std::pair<T1, T2>, false>
  95. {
  96. /*! \brief The type of result returned by function object. */
  97. typedef bool result_type;
  98. /*!
  99. \brief Compare values. If pair<> Value member is a Geometry geometry::equals() function is used.
  100. \param l First value.
  101. \param r Second value.
  102. \return true if values are equal.
  103. */
  104. inline bool operator()(std::pair<T1, T2> const& l, std::pair<T1, T2> const& r) const
  105. {
  106. return detail::equals<T1>::apply(l.first, r.first)
  107. && detail::equals<T2>::apply(l.second, r.second);
  108. }
  109. };
  110. /*!
  111. \brief The function object comparing Values.
  112. This specialization compares values of type boost::tuple<...>.
  113. It compares all members of the tuple from the first one to the last one.
  114. */
  115. template <typename T0, typename T1, typename T2, typename T3, typename T4,
  116. typename T5, typename T6, typename T7, typename T8, typename T9>
  117. struct equal_to<boost::tuple<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9>, false>
  118. {
  119. typedef boost::tuple<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> value_type;
  120. /*! \brief The type of result returned by function object. */
  121. typedef bool result_type;
  122. /*!
  123. \brief Compare values. If tuple<> Value member is a Geometry geometry::equals() function is used.
  124. \param l First value.
  125. \param r Second value.
  126. \return true if values are equal.
  127. */
  128. inline bool operator()(value_type const& l, value_type const& r) const
  129. {
  130. return detail::tuple_equals<
  131. value_type, 0, boost::tuples::length<value_type>::value
  132. >::apply(l ,r);
  133. }
  134. };
  135. }}}} // namespace boost::geometry::index::detail
  136. #if !defined(BOOST_NO_CXX11_HDR_TUPLE) && !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
  137. #include <tuple>
  138. namespace boost { namespace geometry { namespace index { namespace detail {
  139. template <typename Tuple, size_t I, size_t N>
  140. struct std_tuple_equals
  141. {
  142. inline static bool apply(Tuple const& t1, Tuple const& t2)
  143. {
  144. typedef typename std::tuple_element<I, Tuple>::type T;
  145. return equals<T>::apply(std::get<I>(t1), std::get<I>(t2))
  146. && std_tuple_equals<Tuple, I+1, N>::apply(t1, t2);
  147. }
  148. };
  149. template <typename Tuple, size_t I>
  150. struct std_tuple_equals<Tuple, I, I>
  151. {
  152. inline static bool apply(Tuple const&, Tuple const&)
  153. {
  154. return true;
  155. }
  156. };
  157. /*!
  158. \brief The function object comparing Values.
  159. This specialization compares values of type std::tuple<Args...>.
  160. It's defined if the compiler supports tuples and variadic templates.
  161. It compares all members of the tuple from the first one to the last one.
  162. */
  163. template <typename ...Args>
  164. struct equal_to<std::tuple<Args...>, false>
  165. {
  166. typedef std::tuple<Args...> value_type;
  167. /*! \brief The type of result returned by function object. */
  168. typedef bool result_type;
  169. /*!
  170. \brief Compare values. If tuple<> Value member is a Geometry geometry::equals() function is used.
  171. \param l First value.
  172. \param r Second value.
  173. \return true if values are equal.
  174. */
  175. bool operator()(value_type const& l, value_type const& r) const
  176. {
  177. return detail::std_tuple_equals<
  178. value_type, 0, std::tuple_size<value_type>::value
  179. >::apply(l ,r);
  180. }
  181. };
  182. }}}} // namespace boost::geometry::index::detail
  183. #endif // !defined(BOOST_NO_CXX11_HDR_TUPLE) && !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
  184. namespace boost { namespace geometry { namespace index {
  185. /*!
  186. \brief The function object comparing Values.
  187. The default version handles Values which are Indexables, std::pair<T1, T2>, boost::tuple<...>
  188. and std::tuple<...> if STD tuples and variadic templates are supported.
  189. All members are compared from left to right, Geometries using boost::geometry::equals() function,
  190. other types using operator==.
  191. \tparam Value The type of objects which are compared by this function object.
  192. */
  193. template <typename Value>
  194. struct equal_to
  195. : detail::equal_to<Value>
  196. {
  197. /*! \brief The type of result returned by function object. */
  198. typedef typename detail::equal_to<Value>::result_type result_type;
  199. /*!
  200. \brief Compare Values.
  201. \param l First value.
  202. \param r Second value.
  203. \return true if Values are equal.
  204. */
  205. inline bool operator()(Value const& l, Value const& r) const
  206. {
  207. return detail::equal_to<Value>::operator()(l ,r);
  208. }
  209. };
  210. }}} // namespace boost::geometry::index
  211. #endif // BOOST_GEOMETRY_INDEX_EQUAL_TO_HPP