// Boost.Geometry (aka GGL, Generic Geometry Library) // Copyright (c) 2007-2012 Barend Gehrels, Amsterdam, the Netherlands. // This file was modified by Oracle on 2017-2022. // Modifications copyright (c) 2017-2022, Oracle and/or its affiliates. // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle // 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_ALGORITHMS_DIFFERENCE_HPP #define BOOST_GEOMETRY_ALGORITHMS_DIFFERENCE_HPP #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace boost { namespace geometry { #ifndef DOXYGEN_NO_DETAIL namespace detail { namespace difference { // True if the result of difference can be different than Geometry1 template using is_subtractable_t = util::bool_constant < (geometry::topological_dimension::value <= geometry::topological_dimension::value) >; template < typename Geometry1, typename Geometry2, typename SingleOut, typename OutTag = typename detail::setop_insert_output_tag::type, bool ReturnGeometry1 = (! is_subtractable_t::value) > struct call_intersection_insert { template < typename OutputIterator, typename RobustPolicy, typename Strategy > static inline OutputIterator apply(Geometry1 const& geometry1, Geometry2 const& geometry2, RobustPolicy const& robust_policy, OutputIterator out, Strategy const& strategy) { return geometry::dispatch::intersection_insert < Geometry1, Geometry2, SingleOut, overlay_difference, geometry::detail::overlay::do_reverse::value>::value, geometry::detail::overlay::do_reverse::value, true>::value >::apply(geometry1, geometry2, robust_policy, out, strategy); } }; template struct call_intersection_insert { template static inline OutputIterator apply(Geometry1 const& geometry1, Geometry2 const& , RobustPolicy const& , OutputIterator out, Strategy const& ) { return geometry::detail::convert_to_output < Geometry1, SingleOut >::apply(geometry1, out); } }; template < typename Geometry1, typename Geometry2, typename SingleOut > struct call_intersection_insert_tupled_base { typedef typename geometry::detail::single_tag_from_base_tag < typename geometry::tag_cast < typename geometry::tag::type, pointlike_tag, linear_tag, areal_tag >::type >::type single_tag; typedef detail::expect_output < Geometry1, Geometry2, SingleOut, single_tag > expect_check; typedef typename geometry::detail::output_geometry_access < SingleOut, single_tag, single_tag > access; }; template < typename Geometry1, typename Geometry2, typename SingleOut > struct call_intersection_insert < Geometry1, Geometry2, SingleOut, detail::tupled_output_tag, false > : call_intersection_insert_tupled_base { typedef call_intersection_insert_tupled_base base_t; template < typename OutputIterator, typename RobustPolicy, typename Strategy > static inline OutputIterator apply(Geometry1 const& geometry1, Geometry2 const& geometry2, RobustPolicy const& robust_policy, OutputIterator out, Strategy const& strategy) { base_t::access::get(out) = call_intersection_insert < Geometry1, Geometry2, typename base_t::access::type >::apply(geometry1, geometry2, robust_policy, base_t::access::get(out), strategy); return out; } }; template < typename Geometry1, typename Geometry2, typename SingleOut > struct call_intersection_insert < Geometry1, Geometry2, SingleOut, detail::tupled_output_tag, true > : call_intersection_insert_tupled_base { typedef call_intersection_insert_tupled_base base_t; template < typename OutputIterator, typename RobustPolicy, typename Strategy > static inline OutputIterator apply(Geometry1 const& geometry1, Geometry2 const& , RobustPolicy const& , OutputIterator out, Strategy const& ) { base_t::access::get(out) = geometry::detail::convert_to_output < Geometry1, typename base_t::access::type >::apply(geometry1, base_t::access::get(out)); return out; } }; /*! \brief_calc2{difference} \brief_strategy \ingroup difference \details \details_calc2{difference_insert, spatial set theoretic difference} \brief_strategy. \details_inserter{difference} \tparam GeometryOut output geometry type, must be specified \tparam Geometry1 \tparam_geometry \tparam Geometry2 \tparam_geometry \tparam OutputIterator output iterator \tparam Strategy \tparam_strategy_overlay \param geometry1 \param_geometry \param geometry2 \param_geometry \param out \param_out{difference} \param strategy \param_strategy{difference} \return \return_out \qbk{distinguish,with strategy} */ template < typename GeometryOut, typename Geometry1, typename Geometry2, typename OutputIterator, typename Strategy > inline OutputIterator difference_insert(Geometry1 const& geometry1, Geometry2 const& geometry2, OutputIterator out, Strategy const& strategy) { concepts::check(); concepts::check(); //concepts::check(); geometry::detail::output_geometry_concept_check::apply(); typedef typename geometry::rescale_overlay_policy_type < Geometry1, Geometry2, typename Strategy::cs_tag >::type rescale_policy_type; rescale_policy_type robust_policy = geometry::get_rescale_policy( geometry1, geometry2, strategy); return geometry::detail::difference::call_intersection_insert < Geometry1, Geometry2, GeometryOut >::apply(geometry1, geometry2, robust_policy, out, strategy); } /*! \brief_calc2{difference} \ingroup difference \details \details_calc2{difference_insert, spatial set theoretic difference}. \details_insert{difference} \tparam GeometryOut output geometry type, must be specified \tparam Geometry1 \tparam_geometry \tparam Geometry2 \tparam_geometry \tparam OutputIterator output iterator \param geometry1 \param_geometry \param geometry2 \param_geometry \param out \param_out{difference} \return \return_out \qbk{[include reference/algorithms/difference_insert.qbk]} */ template < typename GeometryOut, typename Geometry1, typename Geometry2, typename OutputIterator > inline OutputIterator difference_insert(Geometry1 const& geometry1, Geometry2 const& geometry2, OutputIterator out) { typedef typename strategies::relate::services::default_strategy < Geometry1, Geometry2 >::type strategy_type; return difference_insert(geometry1, geometry2, out, strategy_type()); } template < typename Geometry, typename Collection, typename CastedTag = typename geometry::tag_cast < typename geometry::tag::type, pointlike_tag, linear_tag, areal_tag >::type > struct multi_output_type { BOOST_GEOMETRY_STATIC_ASSERT_FALSE( "Not implemented this Geometry type.", Geometry, CastedTag); }; template struct multi_output_type { using type = typename util::sequence_find_if < typename traits::geometry_types::type, util::is_multi_point >::type; }; template struct multi_output_type { using type = typename util::sequence_find_if < typename traits::geometry_types::type, util::is_multi_linestring >::type; }; template struct multi_output_type { using type = typename util::sequence_find_if < typename traits::geometry_types::type, util::is_multi_polygon >::type; }; }} // namespace detail::difference #endif // DOXYGEN_NO_DETAIL namespace resolve_collection { template < typename Geometry1, typename Geometry2, typename Collection, typename Tag1 = typename geometry::tag::type, typename Tag2 = typename geometry::tag::type, typename CollectionTag = typename geometry::tag::type > struct difference { template static void apply(Geometry1 const& geometry1, Geometry2 const& geometry2, Collection & output_collection, Strategy const& strategy) { using single_out = typename geometry::detail::output_geometry_value < Collection >::type; detail::difference::difference_insert( geometry1, geometry2, geometry::detail::output_geometry_back_inserter(output_collection), strategy); } }; template struct difference < Geometry1, Geometry2, Collection, geometry_collection_tag, geometry_collection_tag, geometry_collection_tag > { template static void apply(Geometry1 const& geometry1, Geometry2 const& geometry2, Collection& output_collection, Strategy const& strategy) { auto const rtree2 = detail::gc_make_rtree_iterators(geometry2, strategy); detail::visit_breadth_first([&](auto const& g1) { // multi-point, multi-linestring or multi_polygon typename detail::difference::multi_output_type < util::remove_cref_t, Collection >::type out; g1_minus_gc2(g1, rtree2, out, strategy); detail::intersection::gc_move_multi_back(output_collection, out); return true; }, geometry1); } private: // Implemented as separate function because msvc is unable to do nested lambda capture template static void g1_minus_gc2(G1 const& g1, Rtree2 const& rtree2, MultiOut& out, Strategy const& strategy) { { using single_out_t = typename geometry::detail::output_geometry_value::type; auto out_it = geometry::detail::output_geometry_back_inserter(out); geometry::detail::convert_to_output::apply(g1, out_it); } using box1_t = detail::gc_make_rtree_box_t; box1_t b1 = geometry::return_envelope(g1, strategy); detail::expand_by_epsilon(b1); for (auto qit = rtree2.qbegin(index::intersects(b1)); qit != rtree2.qend(); ++qit) { traits::iter_visit::apply([&](auto const& g2) { multi_out_minus_g2(out, g2, strategy); }, qit->second); if (boost::empty(out)) { return; } } } template < typename MultiOut, typename G2, typename Strategy, std::enable_if_t::value, int> = 0 > static void multi_out_minus_g2(MultiOut& out, G2 const& g2, Strategy const& strategy) { MultiOut result; difference::apply(out, g2, result, strategy); out = std::move(result); } template < typename MultiOut, typename G2, typename Strategy, std::enable_if_t<(! detail::difference::is_subtractable_t::value), int> = 0 > static void multi_out_minus_g2(MultiOut& , G2 const& , Strategy const& ) {} }; template struct difference < Geometry1, Geometry2, Collection, Tag1, geometry_collection_tag, geometry_collection_tag > { template static void apply(Geometry1 const& geometry1, Geometry2 const& geometry2, Collection & output_collection, Strategy const& strategy) { using gc_view_t = geometry::detail::geometry_collection_view; difference < gc_view_t, Geometry2, Collection >::apply(gc_view_t(geometry1), geometry2, output_collection, strategy); } }; template struct difference < Geometry1, Geometry2, Collection, geometry_collection_tag, Tag2, geometry_collection_tag > { template static void apply(Geometry1 const& geometry1, Geometry2 const& geometry2, Collection & output_collection, Strategy const& strategy) { using gc_view_t = geometry::detail::geometry_collection_view; difference < Geometry1, gc_view_t, Collection >::apply(geometry1, gc_view_t(geometry2), output_collection, strategy); } }; template struct difference < Geometry1, Geometry2, Collection, Tag1, Tag2, geometry_collection_tag > { template static void apply(Geometry1 const& geometry1, Geometry2 const& geometry2, Collection & output_collection, Strategy const& strategy) { using gc1_view_t = geometry::detail::geometry_collection_view; using gc2_view_t = geometry::detail::geometry_collection_view; difference < gc1_view_t, gc2_view_t, Collection >::apply(gc1_view_t(geometry1), gc2_view_t(geometry2), output_collection, strategy); } }; } // namespace resolve_collection namespace resolve_strategy { template < typename Strategy, bool IsUmbrella = strategies::detail::is_umbrella_strategy::value > struct difference { template static inline void apply(Geometry1 const& geometry1, Geometry2 const& geometry2, Collection & output_collection, Strategy const& strategy) { resolve_collection::difference < Geometry1, Geometry2, Collection >::apply(geometry1, geometry2, output_collection, strategy); } }; template struct difference { template static inline void apply(Geometry1 const& geometry1, Geometry2 const& geometry2, Collection & output_collection, Strategy const& strategy) { using strategies::relate::services::strategy_converter; difference < decltype(strategy_converter::get(strategy)) >::apply(geometry1, geometry2, output_collection, strategy_converter::get(strategy)); } }; template <> struct difference { template static inline void apply(Geometry1 const& geometry1, Geometry2 const& geometry2, Collection & output_collection, default_strategy) { typedef typename strategies::relate::services::default_strategy < Geometry1, Geometry2 >::type strategy_type; difference < strategy_type >::apply(geometry1, geometry2, output_collection, strategy_type()); } }; } // resolve_strategy namespace resolve_dynamic { template < typename Geometry1, typename Geometry2, typename Tag1 = typename geometry::tag::type, typename Tag2 = typename geometry::tag::type > struct difference { template static void apply(Geometry1 const& geometry1, Geometry2 const& geometry2, Collection& output_collection, Strategy const& strategy) { resolve_strategy::difference < Strategy >::apply(geometry1, geometry2, output_collection, strategy); } }; template struct difference { template static void apply(DynamicGeometry1 const& geometry1, Geometry2 const& geometry2, Collection& output_collection, Strategy const& strategy) { traits::visit::apply([&](auto const& g1) { resolve_strategy::difference < Strategy >::apply(g1, geometry2, output_collection, strategy); }, geometry1); } }; template struct difference { template static void apply(Geometry1 const& geometry1, DynamicGeometry2 const& geometry2, Collection& output_collection, Strategy const& strategy) { traits::visit::apply([&](auto const& g2) { resolve_strategy::difference < Strategy >::apply(geometry1, g2, output_collection, strategy); }, geometry2); } }; template struct difference { template static void apply(DynamicGeometry1 const& geometry1, DynamicGeometry2 const& geometry2, Collection& output_collection, Strategy const& strategy) { traits::visit::apply([&](auto const& g1, auto const& g2) { resolve_strategy::difference < Strategy >::apply(g1, g2, output_collection, strategy); }, geometry1, geometry2); } }; } // namespace resolve_dynamic /*! \brief_calc2{difference} \ingroup difference \details \details_calc2{difference, spatial set theoretic difference}. \tparam Geometry1 \tparam_geometry \tparam Geometry2 \tparam_geometry \tparam Collection \tparam_output_collection \tparam Strategy \tparam_strategy{Difference} \param geometry1 \param_geometry \param geometry2 \param_geometry \param output_collection the output collection \param strategy \param_strategy{difference} \qbk{distinguish,with strategy} \qbk{[include reference/algorithms/difference.qbk]} */ template < typename Geometry1, typename Geometry2, typename Collection, typename Strategy > inline void difference(Geometry1 const& geometry1, Geometry2 const& geometry2, Collection& output_collection, Strategy const& strategy) { resolve_dynamic::difference < Geometry1, Geometry2 >::apply(geometry1, geometry2, output_collection, strategy); } /*! \brief_calc2{difference} \ingroup difference \details \details_calc2{difference, spatial set theoretic difference}. \tparam Geometry1 \tparam_geometry \tparam Geometry2 \tparam_geometry \tparam Collection \tparam_output_collection \param geometry1 \param_geometry \param geometry2 \param_geometry \param output_collection the output collection \qbk{[include reference/algorithms/difference.qbk]} */ template < typename Geometry1, typename Geometry2, typename Collection > inline void difference(Geometry1 const& geometry1, Geometry2 const& geometry2, Collection& output_collection) { resolve_dynamic::difference < Geometry1, Geometry2 >::apply(geometry1, geometry2, output_collection, default_strategy()); } }} // namespace boost::geometry #endif // BOOST_GEOMETRY_ALGORITHMS_DIFFERENCE_HPP