// Copyright (c) 2016 CNRS and LIRIS' Establishments (France). // All rights reserved. // // This file is part of CGAL (www.cgal.org) // // $URL: https://github.com/CGAL/cgal/blob/v5.1/Generalized_map/include/CGAL/Generalized_map_storages.h $ // $Id: Generalized_map_storages.h daab969 2020-04-08T09:23:59+02:00 Guillaume Damiand // SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial // // Author(s) : Guillaume Damiand // #ifndef CGAL_GENERALIZED_MAP_STORAGES_H #define CGAL_GENERALIZED_MAP_STORAGES_H 1 #include #include #include #include #include #if (BOOST_GCC >= 40900) _Pragma("GCC diagnostic push") _Pragma("GCC diagnostic ignored \"-Warray-bounds\"") #endif namespace CGAL { namespace internal { template struct Combinatorial_map_helper; } /** @file Generalized_map_storages.h * Definition of storages for dD Generalized map. */ // Storage of darts with compact container, alpha with handles template class Generalized_map_storage_1 { public: typedef Generalized_map_storage_1 Self; typedef CGAL::Tag_false Use_index; typedef internal::Combinatorial_map_helper Helper; typedef typename Items_::template Dart_wrapper Dart_wrapper; typedef typename internal::template Get_dart_info::type Dart_info; typedef typename internal::template Get_darts_with_id::type Darts_with_id; typedef CGAL::Dart Dart; typedef std::allocator_traits Allocator_traits; typedef typename Allocator_traits::template rebind_alloc Dart_allocator; typedef Compact_container Dart_container; typedef typename Dart_container::iterator Dart_handle; typedef typename Dart_container::const_iterator Dart_const_handle; typedef typename Dart_container::size_type size_type; typedef std::nullptr_t Null_handle_type; static const Null_handle_type null_handle; typedef Items_ Items; typedef Alloc_ Alloc; template struct Container_for_attributes : public Compact_container::template rebind_alloc > {}; /// Typedef for attributes typedef typename internal::template Get_attributes_tuple::type Attributes; template struct Attribute_type: public Helper::template Attribute_type {}; template struct Attribute_handle: public Helper::template Attribute_handle {}; template struct Attribute_const_handle: public Helper::template Attribute_const_handle {}; template struct Attribute_range: public Helper::template Attribute_range {}; template struct Attribute_const_range: public Helper::template Attribute_const_range {}; /// Number of marks static const size_type NB_MARKS = 32; /// The dimension of the generalized map. static const unsigned int dimension = d_; typedef Handle_hash_function Hash_function; // Init void init_storage() { null_dart_handle=nullptr; } /** Return if this dart is free for adimension. * @param dh a dart handle * @param i the dimension. * @return true iff dh is linked with nullptr for \em adimension. */ template bool is_free(Dart_const_handle dh) const { CGAL_assertion( dh!=nullptr ); CGAL_assertion(i <= dimension); return dh->mf[i]==dh; } bool is_free(Dart_const_handle dh, unsigned int i) const { CGAL_assertion( dh!=nullptr ); CGAL_assertion(i <= dimension); return dh->mf[i]==dh; } bool is_perforated(Dart_const_handle /*dh*/) const { return false; } /// Set simultaneously all the marks of this dart to a given value. void set_dart_marks(Dart_const_handle ADart, const std::bitset& amarks) const { CGAL_assertion( ADart!=nullptr ); ADart->set_marks(amarks); } /// Return all the marks of a dart. std::bitset get_dart_marks(Dart_const_handle ADart) const { CGAL_assertion( ADart!=nullptr ); return ADart->get_marks(); } /// Return the mark value of dart a given mark number. bool get_dart_mark(Dart_const_handle ADart, size_type amark) const { CGAL_assertion( ADart!=nullptr ); return ADart->get_mark(amark); } /// Set the mark of a given mark number to a given value. void set_dart_mark(Dart_const_handle ADart, size_type amark, bool avalue) const { CGAL_assertion( ADart!=nullptr ); ADart->set_mark(amark, avalue); } /// Flip the mark of a given mark number to a given value. void flip_dart_mark(Dart_const_handle ADart, size_type amark) const { CGAL_assertion( ADart!=nullptr ); ADart->flip_mark(amark); } // Access to alpha maps Dart_handle get_alpha(Dart_handle ADart, int B1) { CGAL_assertion(ADart!=nullptr && B1>=0 && B1<=(int)dimension); return ADart->mf[B1]; } Dart_const_handle get_alpha(Dart_const_handle ADart, int B1) const { CGAL_assertion(ADart!=nullptr && B1>=0 && B1<=(int)dimension); return ADart->mf[B1]; } template Dart_handle get_alpha(Dart_handle ADart) { CGAL_assertion(ADart!=nullptr && B1>=0 && B1<=(int)dimension); return ADart->mf[B1]; } template Dart_const_handle get_alpha(Dart_const_handle ADart) const { CGAL_assertion(ADart!=nullptr && B1>=0 && B1<=(int)dimension); return ADart->mf[B1]; } // return a handle on the i-attribute template typename Attribute_handle::type attribute(Dart_handle ADart) { CGAL_static_assertion_msg(Helper::template Dimension_index::value>=0, "attribute called but i-attributes are disabled."); return std::get::value> (ADart->mattribute_handles); } template typename Attribute_const_handle::type attribute(Dart_const_handle ADart) const { CGAL_static_assertion_msg(Helper::template Dimension_index::value>=0, "attribute called but i-attributes are disabled."); return std::get::value> (ADart->mattribute_handles); } // Copy a given attribute template typename Attribute_handle::type copy_attribute (typename Attribute_const_handle::type ah) { CGAL_static_assertion_msg(Helper::template Dimension_index::value>=0, "copy_attribute called but i-attributes are disabled."); typename Attribute_handle::type res= std::get::value> (mattribute_containers).emplace(*ah); this->template init_attribute_ref_counting(res); return res; } // Test if a given attribute is valid template bool is_valid_attribute(typename Attribute_const_handle::type ah) const { CGAL_assertion( ah!=nullptr ); return ah->is_valid(); } // accessors and modifiers to the attribute ref counting given its handle template std::size_t get_attribute_ref_counting (typename Attribute_const_handle::type ah) const { CGAL_assertion( ah!=nullptr ); return ah->get_nb_refs(); } template void init_attribute_ref_counting(typename Attribute_handle::type ah) { CGAL_assertion( ah!=nullptr ); ah->mrefcounting=0; } template void inc_attribute_ref_counting(typename Attribute_handle::type ah) { CGAL_assertion( ah!=nullptr ); ah->inc_nb_refs(); } template void dec_attribute_ref_counting(typename Attribute_handle::type ah) { CGAL_assertion( ah!=nullptr ); ah->dec_nb_refs(); } // get the attribute given its handle template typename Attribute_type::type& get_attribute(typename Attribute_handle::type ah) { CGAL_assertion( ah!=nullptr ); return *ah; } template const typename Attribute_type::type& get_attribute(typename Attribute_const_handle::type ah) const { CGAL_assertion( ah!=nullptr ); return *ah; } // Get the dart of the given attribute template Dart_handle dart_of_attribute(typename Attribute_handle::type ah) { CGAL_assertion( ah!=nullptr ); return ah->dart(); } template Dart_const_handle dart_of_attribute(typename Attribute_const_handle::type ah) const { CGAL_assertion( ah!=nullptr ); return ah->dart(); } // Set the dart of the given attribute template void set_dart_of_attribute(typename Attribute_handle::type ah, Dart_handle adart) { CGAL_assertion( ah!=nullptr ); ah->set_dart(adart); } // Get the information associated with a given dart Dart_info& info(Dart_handle adart) { return adart->info(); } const Dart_info& info(Dart_const_handle adart) const { return adart->info(); } // Get the info of the given attribute template typename Attribute_type::type::Info & info_of_attribute(typename Attribute_handle::type ah) { CGAL_assertion( ah!=nullptr ); return ah->info(); } template const typename Attribute_type::type::Info & info_of_attribute(typename Attribute_const_handle::type ah) const { CGAL_assertion( ah!=nullptr ); return ah->info(); } // Get the info of the i-cell attribute associated with the given dart template typename Attribute_type::type::Info & info(Dart_handle adart) { CGAL_assertion( adart!=nullptr ); CGAL_assertion( attribute(adart)!=nullptr ); return info_of_attribute(attribute(adart)); } template const typename Attribute_type::type::Info & info(Dart_const_handle adart) const { CGAL_assertion( adart!=nullptr ); CGAL_assertion( attribute(adart)!=nullptr ); return info_of_attribute(attribute(adart)); } // Get the dart of the i-cell attribute associated with the given dart template Dart_handle dart(Dart_handle adart) { CGAL_assertion( adart!=nullptr ); CGAL_assertion( attribute(adart)!=nullptr ); return dart_of_attribute(attribute(adart)); } template Dart_const_handle dart(Dart_const_handle adart) const { CGAL_assertion( adart!=nullptr ); CGAL_assertion( attribute(adart)!=nullptr ); return dart_of_attribute(attribute(adart)); } // Debug function void display_dart(Dart_const_handle ADart) const { std::cout< void display_attribute(typename Attribute_const_handle::type ah) const { std::cout<< std::get::value> (mattribute_containers).index(ah); } protected: // Set the handle on the i th attribute template void basic_set_dart_attribute(Dart_handle dh, typename Attribute_handle::type ah) { std::get::value> (dh->mattribute_handles) = ah; } /** Link a dart with a given dart for a given dimension. * @param adart the dart to link. * @param adart2 the dart to link with. * @param i the dimension. */ template void dart_link_alpha(Dart_handle adart, Dart_handle adart2) { CGAL_assertion(i <= dimension); CGAL_assertion(adart!=nullptr && adart2!=nullptr); adart->mf[i] = adart2; } void dart_link_alpha(Dart_handle adart, Dart_handle adart2, unsigned int i) { CGAL_assertion(i <= dimension); CGAL_assertion(adart!=nullptr && adart2!=nullptr); adart->mf[i] = adart2; } /** Unlink a dart for a given dimension. * @param adart a dart. * @param i the dimension. */ template void dart_unlink_alpha(Dart_handle adart) { CGAL_assertion(adart!=nullptr && i <= dimension); adart->mf[i] = adart; } void dart_unlink_alpha(Dart_handle adart, unsigned int i) { CGAL_assertion(adart!=nullptr && i <= dimension); adart->mf[i] = adart; } protected: Dart_handle null_dart_handle; // To be compatible with combinatorial map /// Dart container. Dart_container mdarts; /// Tuple of attributes containers typename Helper::Attribute_containers mattribute_containers; }; /// null_handle template < unsigned int d_, class Items_, class Alloc_ > const typename Generalized_map_storage_1::Null_handle_type Generalized_map_storage_1::null_handle = nullptr; } // namespace CGAL #if (BOOST_GCC >= 40900) _Pragma("GCC diagnostic pop") #endif #endif // CGAL_GENERALIZED_MAP_STORAGES_H // // EOF //