// Boost.Geometry Index // // Spatial query predicates definition and checks. // // Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland. // // Use, modification and distribution is subject to the Boost Software License, // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_GEOMETRY_INDEX_DETAIL_PREDICATES_HPP #define BOOST_GEOMETRY_INDEX_DETAIL_PREDICATES_HPP #include #include namespace boost { namespace geometry { namespace index { namespace detail { // ------------------------------------------------------------------ // // predicates // ------------------------------------------------------------------ // template struct satisfies_impl { satisfies_impl(Fun f) : fun(f) {} Fun * fun; }; template struct satisfies_impl { satisfies_impl(Fun const& f) : fun(f) {} Fun fun; }; template struct satisfies : satisfies_impl::value> { typedef satisfies_impl::value> base; satisfies(Fun const& f) : base(f) {} satisfies(base const& b) : base(b) {} }; // ------------------------------------------------------------------ // struct contains_tag {}; struct covered_by_tag {}; struct covers_tag {}; struct disjoint_tag {}; struct intersects_tag {}; struct overlaps_tag {}; struct touches_tag {}; struct within_tag {}; template struct spatial_predicate { spatial_predicate(Geometry const& g) : geometry(g) {} Geometry geometry; }; // ------------------------------------------------------------------ // // CONSIDER: separated nearest<> and path<> may be replaced by // nearest_predicate // where Tag = point_tag | path_tag // IMPROVEMENT: user-defined nearest predicate allowing to define // all or only geometrical aspects of the search template struct nearest { nearest(PointOrRelation const& por, unsigned k) : point_or_relation(por) , count(k) {} PointOrRelation point_or_relation; unsigned count; }; template struct path { path(SegmentOrLinestring const& g, unsigned k) : geometry(g) , count(k) {} SegmentOrLinestring geometry; unsigned count; }; // ------------------------------------------------------------------ // // predicate_check // ------------------------------------------------------------------ // template struct predicate_check { BOOST_MPL_ASSERT_MSG( (false), NOT_IMPLEMENTED_FOR_THIS_PREDICATE_OR_TAG, (predicate_check)); }; // ------------------------------------------------------------------ // template struct predicate_check, value_tag> { template static inline bool apply(satisfies const& p, Value const& v, Indexable const&) { return p.fun(v); } }; template struct predicate_check, value_tag> { template static inline bool apply(satisfies const& p, Value const& v, Indexable const&) { return !p.fun(v); } }; // ------------------------------------------------------------------ // template struct spatial_predicate_call { BOOST_MPL_ASSERT_MSG(false, NOT_IMPLEMENTED_FOR_THIS_TAG, (Tag)); }; template <> struct spatial_predicate_call { template static inline bool apply(G1 const& g1, G2 const& g2) { return geometry::within(g2, g1); } }; template <> struct spatial_predicate_call { template static inline bool apply(G1 const& g1, G2 const& g2) { return geometry::covered_by(g1, g2); } }; template <> struct spatial_predicate_call { template static inline bool apply(G1 const& g1, G2 const& g2) { return geometry::covered_by(g2, g1); } }; template <> struct spatial_predicate_call { template static inline bool apply(G1 const& g1, G2 const& g2) { return geometry::disjoint(g1, g2); } }; template <> struct spatial_predicate_call { template static inline bool apply(G1 const& g1, G2 const& g2) { return geometry::intersects(g1, g2); } }; template <> struct spatial_predicate_call { template static inline bool apply(G1 const& g1, G2 const& g2) { return geometry::overlaps(g1, g2); } }; template <> struct spatial_predicate_call { template static inline bool apply(G1 const& g1, G2 const& g2) { return geometry::touches(g1, g2); } }; template <> struct spatial_predicate_call { template static inline bool apply(G1 const& g1, G2 const& g2) { return geometry::within(g1, g2); } }; // ------------------------------------------------------------------ // // spatial predicate template struct predicate_check, value_tag> { typedef spatial_predicate Pred; template static inline bool apply(Pred const& p, Value const&, Indexable const& i) { return spatial_predicate_call::apply(i, p.geometry); } }; // negated spatial predicate template struct predicate_check, value_tag> { typedef spatial_predicate Pred; template static inline bool apply(Pred const& p, Value const&, Indexable const& i) { return !spatial_predicate_call::apply(i, p.geometry); } }; // ------------------------------------------------------------------ // template struct predicate_check, value_tag> { template static inline bool apply(nearest const&, Value const&, Box const&) { return true; } }; template struct predicate_check, value_tag> { template static inline bool apply(path const&, Value const&, Box const&) { return true; } }; // ------------------------------------------------------------------ // // predicates_check for bounds // ------------------------------------------------------------------ // template struct predicate_check, bounds_tag> { template static bool apply(satisfies const&, Value const&, Box const&) { return true; } }; // ------------------------------------------------------------------ // // NOT NEGATED // value_tag bounds_tag // --------------------------- // contains(I,G) contains(I,G) // covered_by(I,G) intersects(I,G) // covers(I,G) covers(I,G) // disjoint(I,G) !covered_by(I,G) // intersects(I,G) intersects(I,G) // overlaps(I,G) intersects(I,G) - possibly change to the version without border case, e.g. intersects_without_border(0,0x1,1, 1,1x2,2) should give false // touches(I,G) intersects(I,G) // within(I,G) intersects(I,G) - possibly change to the version without border case, e.g. intersects_without_border(0,0x1,1, 1,1x2,2) should give false // spatial predicate - default template struct predicate_check, bounds_tag> { typedef spatial_predicate Pred; template static inline bool apply(Pred const& p, Value const&, Indexable const& i) { return spatial_predicate_call::apply(i, p.geometry); } }; // spatial predicate - contains template struct predicate_check, bounds_tag> { typedef spatial_predicate Pred; template static inline bool apply(Pred const& p, Value const&, Indexable const& i) { return spatial_predicate_call::apply(i, p.geometry); } }; // spatial predicate - covers template struct predicate_check, bounds_tag> { typedef spatial_predicate Pred; template static inline bool apply(Pred const& p, Value const&, Indexable const& i) { return spatial_predicate_call::apply(i, p.geometry); } }; // spatial predicate - disjoint template struct predicate_check, bounds_tag> { typedef spatial_predicate Pred; template static inline bool apply(Pred const& p, Value const&, Indexable const& i) { return !spatial_predicate_call::apply(i, p.geometry); } }; // NEGATED // value_tag bounds_tag // --------------------------- // !contains(I,G) TRUE // !covered_by(I,G) !covered_by(I,G) // !covers(I,G) TRUE // !disjoint(I,G) !disjoint(I,G) // !intersects(I,G) !covered_by(I,G) // !overlaps(I,G) TRUE // !touches(I,G) !intersects(I,G) // !within(I,G) !within(I,G) // negated spatial predicate - default template struct predicate_check, bounds_tag> { typedef spatial_predicate Pred; template static inline bool apply(Pred const& p, Value const&, Indexable const& i) { return !spatial_predicate_call::apply(i, p.geometry); } }; // negated spatial predicate - contains template struct predicate_check, bounds_tag> { typedef spatial_predicate Pred; template static inline bool apply(Pred const& , Value const&, Indexable const& ) { return true; } }; // negated spatial predicate - covers template struct predicate_check, bounds_tag> { typedef spatial_predicate Pred; template static inline bool apply(Pred const& , Value const&, Indexable const& ) { return true; } }; // negated spatial predicate - intersects template struct predicate_check, bounds_tag> { typedef spatial_predicate Pred; template static inline bool apply(Pred const& p, Value const&, Indexable const& i) { return !spatial_predicate_call::apply(i, p.geometry); } }; // negated spatial predicate - overlaps template struct predicate_check, bounds_tag> { typedef spatial_predicate Pred; template static inline bool apply(Pred const& , Value const&, Indexable const& ) { return true; } }; // negated spatial predicate - touches template struct predicate_check, bounds_tag> { typedef spatial_predicate Pred; template static inline bool apply(Pred const& p, Value const&, Indexable const& i) { return !spatial_predicate_call::apply(i, p.geometry); } }; // ------------------------------------------------------------------ // template struct predicate_check, bounds_tag> { template static inline bool apply(nearest const&, Value const&, Box const&) { return true; } }; template struct predicate_check, bounds_tag> { template static inline bool apply(path const&, Value const&, Box const&) { return true; } }; // ------------------------------------------------------------------ // // predicates_length // ------------------------------------------------------------------ // template struct predicates_length { static const unsigned value = 1; }; //template //struct predicates_length< std::pair > //{ // static const unsigned value = 2; //}; //template //struct predicates_length< boost::tuple > //{ // static const unsigned value = boost::tuples::length< boost::tuple >::value; //}; template struct predicates_length< boost::tuples::cons > { static const unsigned value = boost::tuples::length< boost::tuples::cons >::value; }; // ------------------------------------------------------------------ // // predicates_element // ------------------------------------------------------------------ // template struct predicates_element { BOOST_MPL_ASSERT_MSG((I < 1), INVALID_INDEX, (predicates_element)); typedef T type; static type const& get(T const& p) { return p; } }; //template //struct predicates_element< I, std::pair > //{ // BOOST_MPL_ASSERT_MSG((I < 2), INVALID_INDEX, (predicates_element)); // // typedef F type; // static type const& get(std::pair const& p) { return p.first; } //}; // //template //struct predicates_element< 1, std::pair > //{ // typedef S type; // static type const& get(std::pair const& p) { return p.second; } //}; // //template //struct predicates_element< I, boost::tuple > //{ // typedef boost::tuple predicate_type; // // typedef typename boost::tuples::element::type type; // static type const& get(predicate_type const& p) { return boost::get(p); } //}; template struct predicates_element< I, boost::tuples::cons > { typedef boost::tuples::cons predicate_type; typedef typename boost::tuples::element::type type; static type const& get(predicate_type const& p) { return boost::get(p); } }; // ------------------------------------------------------------------ // // predicates_check // ------------------------------------------------------------------ // //template //struct predicates_check_pair {}; // //template //struct predicates_check_pair //{ // template // static inline bool apply(PairPredicates const& , Value const& , Indexable const& ) // { // return true; // } //}; // //template //struct predicates_check_pair //{ // template // static inline bool apply(PairPredicates const& p, Value const& v, Indexable const& i) // { // return predicate_check::apply(p.first, v, i); // } //}; // //template //struct predicates_check_pair //{ // template // static inline bool apply(PairPredicates const& p, Value const& v, Indexable const& i) // { // return predicate_check::apply(p.second, v, i); // } //}; // //template //struct predicates_check_pair //{ // template // static inline bool apply(PairPredicates const& p, Value const& v, Indexable const& i) // { // return predicate_check::apply(p.first, v, i) // && predicate_check::apply(p.second, v, i); // } //}; template struct predicates_check_tuple { template static inline bool apply(TuplePredicates const& p, Value const& v, Indexable const& i) { return predicate_check< typename boost::tuples::element::type, Tag >::apply(boost::get(p), v, i) && predicates_check_tuple::apply(p, v, i); } }; template struct predicates_check_tuple { template static inline bool apply(TuplePredicates const& , Value const& , Indexable const& ) { return true; } }; template struct predicates_check_impl { static const bool check = First < 1 && Last <= 1 && First <= Last; BOOST_MPL_ASSERT_MSG((check), INVALID_INDEXES, (predicates_check_impl)); template static inline bool apply(Predicate const& p, Value const& v, Indexable const& i) { return predicate_check::apply(p, v, i); } }; //template //struct predicates_check_impl, Tag, First, Last> //{ // BOOST_MPL_ASSERT_MSG((First < 2 && Last <= 2 && First <= Last), INVALID_INDEXES, (predicates_check_impl)); // // template // static inline bool apply(std::pair const& p, Value const& v, Indexable const& i) // { // return predicate_check::apply(p.first, v, i) // && predicate_check::apply(p.second, v, i); // } //}; // //template < // typename T0, typename T1, typename T2, typename T3, typename T4, // typename T5, typename T6, typename T7, typename T8, typename T9, // typename Tag, unsigned First, unsigned Last //> //struct predicates_check_impl< // boost::tuple, // Tag, First, Last //> //{ // typedef boost::tuple predicates_type; // // static const unsigned pred_len = boost::tuples::length::value; // BOOST_MPL_ASSERT_MSG((First < pred_len && Last <= pred_len && First <= Last), INVALID_INDEXES, (predicates_check_impl)); // // template // static inline bool apply(predicates_type const& p, Value const& v, Indexable const& i) // { // return predicates_check_tuple< // predicates_type, // Tag, First, Last // >::apply(p, v, i); // } //}; template struct predicates_check_impl< boost::tuples::cons, Tag, First, Last > { typedef boost::tuples::cons predicates_type; static const unsigned pred_len = boost::tuples::length::value; static const bool check = First < pred_len && Last <= pred_len && First <= Last; BOOST_MPL_ASSERT_MSG((check), INVALID_INDEXES, (predicates_check_impl)); template static inline bool apply(predicates_type const& p, Value const& v, Indexable const& i) { return predicates_check_tuple< predicates_type, Tag, First, Last >::apply(p, v, i); } }; template inline bool predicates_check(Predicates const& p, Value const& v, Indexable const& i) { return detail::predicates_check_impl ::apply(p, v, i); } // ------------------------------------------------------------------ // // nearest predicate helpers // ------------------------------------------------------------------ // // predicates_is_nearest template struct predicates_is_distance { static const unsigned value = 0; }; template struct predicates_is_distance< nearest > { static const unsigned value = 1; }; template struct predicates_is_distance< path > { static const unsigned value = 1; }; // predicates_count_nearest template struct predicates_count_distance { static const unsigned value = predicates_is_distance::value; }; //template //struct predicates_count_distance< std::pair > //{ // static const unsigned value = predicates_is_distance::value // + predicates_is_distance::value; //}; template struct predicates_count_distance_tuple { static const unsigned value = predicates_is_distance::type>::value + predicates_count_distance_tuple::value; }; template struct predicates_count_distance_tuple { static const unsigned value = predicates_is_distance::type>::value; }; //template //struct predicates_count_distance< boost::tuple > //{ // static const unsigned value = predicates_count_distance_tuple< // boost::tuple, // boost::tuples::length< boost::tuple >::value // >::value; //}; template struct predicates_count_distance< boost::tuples::cons > { static const unsigned value = predicates_count_distance_tuple< boost::tuples::cons, boost::tuples::length< boost::tuples::cons >::value >::value; }; // predicates_find_nearest template struct predicates_find_distance { static const unsigned value = predicates_is_distance::value ? 0 : 1; }; //template //struct predicates_find_distance< std::pair > //{ // static const unsigned value = predicates_is_distance::value ? 0 : // (predicates_is_distance::value ? 1 : 2); //}; template struct predicates_find_distance_tuple { static const bool is_found = predicates_find_distance_tuple::is_found || predicates_is_distance::type>::value; static const unsigned value = predicates_find_distance_tuple::is_found ? predicates_find_distance_tuple::value : (predicates_is_distance::type>::value ? N-1 : boost::tuples::length::value); }; template struct predicates_find_distance_tuple { static const bool is_found = predicates_is_distance::type>::value; static const unsigned value = is_found ? 0 : boost::tuples::length::value; }; //template //struct predicates_find_distance< boost::tuple > //{ // static const unsigned value = predicates_find_distance_tuple< // boost::tuple, // boost::tuples::length< boost::tuple >::value // >::value; //}; template struct predicates_find_distance< boost::tuples::cons > { static const unsigned value = predicates_find_distance_tuple< boost::tuples::cons, boost::tuples::length< boost::tuples::cons >::value >::value; }; }}}} // namespace boost::geometry::index::detail #endif // BOOST_GEOMETRY_INDEX_DETAIL_PREDICATES_HPP