123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254 |
- // Boost.Geometry (aka GGL, Generic Geometry Library)
- // Copyright (c) 2014-2020, Oracle and/or its affiliates.
- // Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle
- // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
- // Licensed under the Boost Software License version 1.0.
- // http://www.boost.org/users/license.html
- #ifndef BOOST_GEOMETRY_STRATEGIES_COMPARABLE_DISTANCE_RESULT_HPP
- #define BOOST_GEOMETRY_STRATEGIES_COMPARABLE_DISTANCE_RESULT_HPP
- #include <boost/variant/variant_fwd.hpp>
- #include <boost/geometry/algorithms/detail/distance/default_strategies.hpp>
- #include <boost/geometry/core/point_type.hpp>
- #include <boost/geometry/strategies/default_strategy.hpp>
- #include <boost/geometry/strategies/distance.hpp>
- #include <boost/geometry/util/select_most_precise.hpp>
- #include <boost/geometry/util/sequence.hpp>
- #include <boost/geometry/util/type_traits.hpp>
- namespace boost { namespace geometry
- {
- namespace resolve_strategy
- {
-
- template
- <
- typename Geometry1, typename Geometry2, typename Strategy,
- bool AreGeometries = (util::is_geometry<Geometry1>::value
- && util::is_geometry<Geometry2>::value)
- >
- struct comparable_distance_result
- : strategy::distance::services::return_type
- <
- typename strategy::distance::services::comparable_type
- <
- Strategy
- >::type,
- typename point_type<Geometry1>::type,
- typename point_type<Geometry2>::type
- >
- {};
- template <typename Geometry1, typename Geometry2, bool AreGeometries>
- struct comparable_distance_result<Geometry1, Geometry2, default_strategy, AreGeometries>
- : comparable_distance_result
- <
- Geometry1,
- Geometry2,
- typename detail::distance::default_strategy
- <
- Geometry1, Geometry2
- >::type
- >
- {};
- // Workaround for VS2015
- #if defined(_MSC_VER) && (_MSC_VER < 1910)
- template <typename Geometry1, typename Geometry2, typename Strategy>
- struct comparable_distance_result<Geometry1, Geometry2, Strategy, false>
- {
- typedef int type;
- };
- template <typename Geometry1, typename Geometry2>
- struct comparable_distance_result<Geometry1, Geometry2, default_strategy, false>
- {
- typedef int type;
- };
- #endif
- } // namespace resolve_strategy
- #ifndef DOXYGEN_NO_DETAIL
- namespace detail { namespace distance
- {
- template <typename Strategy = geometry::default_strategy>
- struct more_precise_comparable_distance_result
- {
- template <typename Curr, typename Next>
- struct predicate
- : std::is_same
- <
- typename resolve_strategy::comparable_distance_result
- <
- typename util::sequence_element<0, Curr>::type,
- typename util::sequence_element<1, Curr>::type,
- Strategy
- >::type,
- typename geometry::select_most_precise
- <
- typename resolve_strategy::comparable_distance_result
- <
- typename util::sequence_element<0, Curr>::type,
- typename util::sequence_element<1, Curr>::type,
- Strategy
- >::type,
- typename resolve_strategy::comparable_distance_result
- <
- typename util::sequence_element<0, Next>::type,
- typename util::sequence_element<1, Next>::type,
- Strategy
- >::type
- >::type
- >
- {};
- };
- }} // namespace detail::distance
- #endif //DOXYGEN_NO_DETAIL
- namespace resolve_variant
- {
- template <typename Geometry1, typename Geometry2, typename Strategy>
- struct comparable_distance_result
- : resolve_strategy::comparable_distance_result
- <
- Geometry1,
- Geometry2,
- Strategy
- >
- {};
- template
- <
- typename Geometry1,
- BOOST_VARIANT_ENUM_PARAMS(typename T),
- typename Strategy
- >
- struct comparable_distance_result
- <
- Geometry1, boost::variant<BOOST_VARIANT_ENUM_PARAMS(T)>, Strategy
- >
- {
- // Select the most precise distance strategy result type
- // for all variant type combinations.
- // TODO: We should ignore the combinations that are not valid
- // but is_implemented is not ready for prime time.
- typedef typename util::select_combination_element
- <
- util::type_sequence<Geometry1>,
- util::type_sequence<BOOST_VARIANT_ENUM_PARAMS(T)>,
- detail::distance::more_precise_comparable_distance_result
- <
- Strategy
- >::template predicate
- >::type elements;
- typedef typename resolve_strategy::comparable_distance_result
- <
- typename util::sequence_element<0, elements>::type,
- typename util::sequence_element<1, elements>::type,
- Strategy
- >::type type;
- };
- // Distance arguments are commutative
- template
- <
- BOOST_VARIANT_ENUM_PARAMS(typename T),
- typename Geometry2,
- typename Strategy
- >
- struct comparable_distance_result
- <
- boost::variant<BOOST_VARIANT_ENUM_PARAMS(T)>, Geometry2, Strategy
- >
- : public comparable_distance_result
- <
- Geometry2, boost::variant<BOOST_VARIANT_ENUM_PARAMS(T)>, Strategy
- >
- {};
- template
- <
- BOOST_VARIANT_ENUM_PARAMS(typename T),
- BOOST_VARIANT_ENUM_PARAMS(typename U),
- typename Strategy
- >
- struct comparable_distance_result
- <
- boost::variant<BOOST_VARIANT_ENUM_PARAMS(T)>,
- boost::variant<BOOST_VARIANT_ENUM_PARAMS(U)>,
- Strategy
- >
- {
- // Select the most precise distance strategy result type
- // for all variant type combinations.
- // TODO: We should ignore the combinations that are not valid
- // but is_implemented is not ready for prime time.
- typedef typename util::select_combination_element
- <
- util::type_sequence<BOOST_VARIANT_ENUM_PARAMS(T)>,
- util::type_sequence<BOOST_VARIANT_ENUM_PARAMS(U)>,
- detail::distance::more_precise_comparable_distance_result
- <
- Strategy
- >::template predicate
- >::type elements;
- typedef typename resolve_strategy::comparable_distance_result
- <
- typename util::sequence_element<0, elements>::type,
- typename util::sequence_element<1, elements>::type,
- Strategy
- >::type type;
- };
- } // namespace resolve_variant
- /*!
- \brief Meta-function defining return type of comparable_distance function
- \ingroup distance
- */
- template
- <
- typename Geometry1,
- typename Geometry2 = Geometry1,
- typename Strategy = void
- >
- struct comparable_distance_result
- : resolve_variant::comparable_distance_result
- <
- Geometry1, Geometry2, Strategy
- >
- {};
- template <typename Geometry1, typename Geometry2>
- struct comparable_distance_result<Geometry1, Geometry2, void>
- : comparable_distance_result<Geometry1, Geometry2, default_strategy>
- {};
- }} // namespace boost::geometry
- #endif // BOOST_GEOMETRY_STRATEGIES_COMPARABLE_DISTANCE_RESULT_HPP
|