////////////////////////////////////////////////////////////////////////////// // // (C) Copyright Ion Gaztanaga 2005-2015. Distributed under 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) // // See http://www.boost.org/libs/container for documentation. // ////////////////////////////////////////////////////////////////////////////// #ifndef BOOST_CONTAINER_TREE_HPP #define BOOST_CONTAINER_TREE_HPP #ifndef BOOST_CONFIG_HPP # include #endif #if defined(BOOST_HAS_PRAGMA_ONCE) # pragma once #endif #include #include // container #include #include #include #include // container/detail #include //algo_equal(), algo_lexicographical_compare #include #include #include #include #include #include #include // intrusive #include #include #include #include #include // intrusive/detail #include //pair #include //tree_value_compare // move #include // move/detail #if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) #include #endif #include // other #include #include namespace boost { namespace container { namespace dtl { using boost::intrusive::tree_value_compare; template struct intrusive_tree_hook; template struct intrusive_tree_hook { typedef typename dtl::bi::make_set_base_hook < dtl::bi::void_pointer , dtl::bi::link_mode , dtl::bi::optimize_size >::type type; }; template struct intrusive_tree_hook { typedef typename dtl::bi::make_avl_set_base_hook < dtl::bi::void_pointer , dtl::bi::link_mode , dtl::bi::optimize_size >::type type; }; template struct intrusive_tree_hook { typedef typename dtl::bi::make_bs_set_base_hook < dtl::bi::void_pointer , dtl::bi::link_mode >::type type; }; template struct intrusive_tree_hook { typedef typename dtl::bi::make_bs_set_base_hook < dtl::bi::void_pointer , dtl::bi::link_mode >::type type; }; //This trait is used to type-pun std::pair because in C++03 //compilers std::pair is useless for C++11 features template struct tree_internal_data_type { typedef T type; }; template struct tree_internal_data_type< std::pair > { typedef pair::type, T2> type; }; //The node to be store in the tree template struct tree_node : public intrusive_tree_hook::type { public: typedef typename intrusive_tree_hook ::type hook_type; typedef T value_type; typedef typename tree_internal_data_type::type internal_type; typedef tree_node< T, VoidPointer , tree_type_value, OptimizeSize> node_t; typedef typename boost::container::dtl::aligned_storage ::value>::type storage_t; storage_t m_storage; #if defined(BOOST_GCC) && (BOOST_GCC >= 40600) && (BOOST_GCC < 80000) #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wstrict-aliasing" #define BOOST_CONTAINER_DISABLE_ALIASING_WARNING # endif BOOST_CONTAINER_FORCEINLINE T &get_data() { return *reinterpret_cast(this->m_storage.data); } BOOST_CONTAINER_FORCEINLINE const T &get_data() const { return *reinterpret_cast(this->m_storage.data); } BOOST_CONTAINER_FORCEINLINE T *get_data_ptr() { return reinterpret_cast(this->m_storage.data); } BOOST_CONTAINER_FORCEINLINE const T *get_data_ptr() const { return reinterpret_cast(this->m_storage.data); } BOOST_CONTAINER_FORCEINLINE internal_type &get_real_data() { return *reinterpret_cast(this->m_storage.data); } BOOST_CONTAINER_FORCEINLINE const internal_type &get_real_data() const { return *reinterpret_cast(this->m_storage.data); } BOOST_CONTAINER_FORCEINLINE internal_type *get_real_data_ptr() { return reinterpret_cast(this->m_storage.data); } BOOST_CONTAINER_FORCEINLINE const internal_type *get_real_data_ptr() const { return reinterpret_cast(this->m_storage.data); } BOOST_CONTAINER_FORCEINLINE ~tree_node() { reinterpret_cast(this->m_storage.data)->~internal_type(); } #if defined(BOOST_CONTAINER_DISABLE_ALIASING_WARNING) #pragma GCC diagnostic pop #undef BOOST_CONTAINER_DISABLE_ALIASING_WARNING # endif BOOST_CONTAINER_FORCEINLINE void destroy_header() { static_cast(this)->~hook_type(); } template BOOST_CONTAINER_FORCEINLINE void do_assign(const std::pair &p) { const_cast(this->get_real_data().first) = p.first; this->get_real_data().second = p.second; } template BOOST_CONTAINER_FORCEINLINE void do_assign(const pair &p) { const_cast(this->get_real_data().first) = p.first; this->get_real_data().second = p.second; } template BOOST_CONTAINER_FORCEINLINE void do_assign(const V &v) { this->get_real_data() = v; } template BOOST_CONTAINER_FORCEINLINE void do_move_assign(std::pair &p) { const_cast(this->get_real_data().first) = ::boost::move(p.first); this->get_real_data().second = ::boost::move(p.second); } template BOOST_CONTAINER_FORCEINLINE void do_move_assign(pair &p) { const_cast(this->get_real_data().first) = ::boost::move(p.first); this->get_real_data().second = ::boost::move(p.second); } template BOOST_CONTAINER_FORCEINLINE void do_move_assign(V &v) { this->get_real_data() = ::boost::move(v); } }; template struct iiterator_node_value_type< tree_node > { typedef T type; }; template class insert_equal_end_hint_functor { Icont &icont_; public: BOOST_CONTAINER_FORCEINLINE insert_equal_end_hint_functor(Icont &icont) : icont_(icont) {} BOOST_CONTAINER_FORCEINLINE void operator()(Node &n) { this->icont_.insert_equal(this->icont_.cend(), n); } }; template class push_back_functor { Icont &icont_; public: BOOST_CONTAINER_FORCEINLINE push_back_functor(Icont &icont) : icont_(icont) {} BOOST_CONTAINER_FORCEINLINE void operator()(Node &n) { this->icont_.push_back(n); } }; }//namespace dtl { namespace dtl { template< class NodeType, class NodeCompareType , class SizeType, class HookType , boost::container::tree_type_enum tree_type_value> struct intrusive_tree_dispatch; template struct intrusive_tree_dispatch { typedef typename dtl::bi::make_rbtree ,dtl::bi::base_hook ,dtl::bi::constant_time_size ,dtl::bi::size_type >::type type; }; template struct intrusive_tree_dispatch { typedef typename dtl::bi::make_avltree ,dtl::bi::base_hook ,dtl::bi::constant_time_size ,dtl::bi::size_type >::type type; }; template struct intrusive_tree_dispatch { typedef typename dtl::bi::make_sgtree ,dtl::bi::base_hook ,dtl::bi::floating_point ,dtl::bi::size_type >::type type; }; template struct intrusive_tree_dispatch { typedef typename dtl::bi::make_splaytree ,dtl::bi::base_hook ,dtl::bi::constant_time_size ,dtl::bi::size_type >::type type; }; template struct intrusive_tree_type { private: typedef typename boost::container:: allocator_traits::value_type value_type; typedef typename boost::container:: allocator_traits::void_pointer void_pointer; typedef typename boost::container:: allocator_traits::size_type size_type; typedef typename dtl::tree_node < value_type, void_pointer , tree_type_value, OptimizeSize> node_t; typedef value_to_node_compare node_compare_type; //Deducing the hook type from node_t (e.g. node_t::hook_type) would //provoke an early instantiation of node_t that could ruin recursive //tree definitions, so retype the complete type to avoid any problem. typedef typename intrusive_tree_hook ::type hook_type; public: typedef typename intrusive_tree_dispatch < node_t, node_compare_type , size_type, hook_type , tree_type_value>::type type; }; //Trait to detect manually rebalanceable tree types template struct is_manually_balanceable { static const bool value = true; }; template<> struct is_manually_balanceable { static const bool value = false; }; template<> struct is_manually_balanceable { static const bool value = false; }; //Proxy traits to implement different operations depending on the //is_manually_balanceable<>::value template< boost::container::tree_type_enum tree_type_value , bool IsManuallyRebalanceable = is_manually_balanceable::value> struct intrusive_tree_proxy { template BOOST_CONTAINER_FORCEINLINE static void rebalance(Icont &) {} }; template struct intrusive_tree_proxy { template BOOST_CONTAINER_FORCEINLINE static void rebalance(Icont &c) { c.rebalance(); } }; } //namespace dtl { namespace dtl { //This functor will be used with Intrusive clone functions to obtain //already allocated nodes from a intrusive container instead of //allocating new ones. When the intrusive container runs out of nodes //the node holder is used instead. template class RecyclingCloner { typedef typename AllocHolder::intrusive_container intrusive_container; typedef typename AllocHolder::Node node_t; typedef typename AllocHolder::NodePtr node_ptr_type; public: RecyclingCloner(AllocHolder &holder, intrusive_container &itree) : m_holder(holder), m_icont(itree) {} BOOST_CONTAINER_FORCEINLINE static void do_assign(node_ptr_type &p, const node_t &other, bool_) { p->do_move_assign(const_cast(other).get_real_data()); } BOOST_CONTAINER_FORCEINLINE static void do_assign(node_ptr_type &p, const node_t &other, bool_) { p->do_assign(other.get_real_data()); } node_ptr_type operator()(const node_t &other) const { if(node_ptr_type p = m_icont.unlink_leftmost_without_rebalance()){ //First recycle a node (this can't throw) BOOST_TRY{ //This can throw this->do_assign(p, other, bool_()); return p; } BOOST_CATCH(...){ //If there is an exception destroy the whole source m_holder.destroy_node(p); while((p = m_icont.unlink_leftmost_without_rebalance())){ m_holder.destroy_node(p); } BOOST_RETHROW } BOOST_CATCH_END } else{ return m_holder.create_node(other.get_real_data()); } } AllocHolder &m_holder; intrusive_container &m_icont; }; template struct key_node_compare : public boost::intrusive::detail::ebo_functor_holder { BOOST_CONTAINER_FORCEINLINE explicit key_node_compare(const KeyCompare &comp) : base_t(comp) {} typedef boost::intrusive::detail::ebo_functor_holder base_t; typedef KeyCompare key_compare; typedef KeyOfValue key_of_value; typedef typename KeyOfValue::type key_type; template BOOST_CONTAINER_FORCEINLINE static const key_type & key_from(const tree_node &n) { return key_of_value()(n.get_data()); } template BOOST_CONTAINER_FORCEINLINE static const T & key_from(const T &t) { return t; } BOOST_CONTAINER_FORCEINLINE const key_compare &key_comp() const { return static_cast(*this); } BOOST_CONTAINER_FORCEINLINE key_compare &key_comp() { return static_cast(*this); } BOOST_CONTAINER_FORCEINLINE bool operator()(const key_type &key1, const key_type &key2) const { return this->key_comp()(key1, key2); } template BOOST_CONTAINER_FORCEINLINE bool operator()(const key_type &key1, const U &nonkey2) const { return this->key_comp()(key1, this->key_from(nonkey2)); } template BOOST_CONTAINER_FORCEINLINE bool operator()(const U &nonkey1, const key_type &key2) const { return this->key_comp()(this->key_from(nonkey1), key2); } template BOOST_CONTAINER_FORCEINLINE bool operator()(const U &nonkey1, const V &nonkey2) const { return this->key_comp()(this->key_from(nonkey1), this->key_from(nonkey2)); } }; template struct get_tree_opt { typedef Options type; }; template<> struct get_tree_opt { typedef tree_assoc_defaults type; }; template struct real_key_of_value { typedef KeyOfValue type; }; template struct real_key_of_value { typedef dtl::identity type; }; template struct real_key_of_value, int> { typedef dtl::select1st type; }; template struct real_key_of_value, int> { typedef dtl::select1st type; }; template class tree : public dtl::node_alloc_holder < typename real_allocator::type , typename dtl::intrusive_tree_type < typename real_allocator::type , tree_value_compare ::type>::pointer, Compare, typename real_key_of_value::type> , get_tree_opt::type::tree_type , get_tree_opt::type::optimize_size >::type > { typedef tree < T, KeyOfValue , Compare, Allocator, Options> ThisType; public: typedef typename real_allocator::type allocator_type; private: typedef allocator_traits allocator_traits_t; typedef typename real_key_of_value::type key_of_value_t; typedef tree_value_compare < typename allocator_traits_t::pointer , Compare , key_of_value_t> ValComp; typedef typename get_tree_opt::type options_type; typedef typename dtl::intrusive_tree_type < allocator_type, ValComp , options_type::tree_type , options_type::optimize_size >::type Icont; typedef dtl::node_alloc_holder AllocHolder; typedef typename AllocHolder::NodePtr NodePtr; typedef typename AllocHolder::NodeAlloc NodeAlloc; typedef boost::container:: allocator_traits allocator_traits_type; typedef typename AllocHolder::ValAlloc ValAlloc; typedef typename AllocHolder::Node Node; typedef typename Icont::iterator iiterator; typedef typename Icont::const_iterator iconst_iterator; typedef dtl::allocator_destroyer Destroyer; typedef typename AllocHolder::alloc_version alloc_version; typedef intrusive_tree_proxy intrusive_tree_proxy_t; BOOST_COPYABLE_AND_MOVABLE(tree) public: typedef typename key_of_value_t::type key_type; typedef T value_type; typedef Compare key_compare; typedef ValComp value_compare; typedef typename boost::container:: allocator_traits::pointer pointer; typedef typename boost::container:: allocator_traits::const_pointer const_pointer; typedef typename boost::container:: allocator_traits::reference reference; typedef typename boost::container:: allocator_traits::const_reference const_reference; typedef typename boost::container:: allocator_traits::size_type size_type; typedef typename boost::container:: allocator_traits::difference_type difference_type; typedef dtl::iterator_from_iiterator iterator; typedef dtl::iterator_from_iiterator const_iterator; typedef boost::container::reverse_iterator reverse_iterator; typedef boost::container::reverse_iterator const_reverse_iterator; typedef node_handle < NodeAlloc, void> node_type; typedef insert_return_type_base insert_return_type; typedef NodeAlloc stored_allocator_type; private: typedef key_node_compare KeyNodeCompare; public: BOOST_CONTAINER_FORCEINLINE tree() : AllocHolder() {} BOOST_CONTAINER_FORCEINLINE explicit tree(const key_compare& comp) : AllocHolder(ValComp(comp)) {} BOOST_CONTAINER_FORCEINLINE explicit tree(const key_compare& comp, const allocator_type& a) : AllocHolder(ValComp(comp), a) {} BOOST_CONTAINER_FORCEINLINE explicit tree(const allocator_type& a) : AllocHolder(a) {} template tree(bool unique_insertion, InputIterator first, InputIterator last) : AllocHolder(value_compare(key_compare())) { this->tree_construct(unique_insertion, first, last); //AllocHolder clears in case of exception } template tree(bool unique_insertion, InputIterator first, InputIterator last, const key_compare& comp) : AllocHolder(value_compare(comp)) { this->tree_construct(unique_insertion, first, last); //AllocHolder clears in case of exception } template tree(bool unique_insertion, InputIterator first, InputIterator last, const key_compare& comp, const allocator_type& a) : AllocHolder(value_compare(comp), a) { this->tree_construct(unique_insertion, first, last); //AllocHolder clears in case of exception } //construct with ordered range template tree( ordered_range_t, InputIterator first, InputIterator last) : AllocHolder(value_compare(key_compare())) { this->tree_construct(ordered_range_t(), first, last); } template tree( ordered_range_t, InputIterator first, InputIterator last, const key_compare& comp) : AllocHolder(value_compare(comp)) { this->tree_construct(ordered_range_t(), first, last); } template tree( ordered_range_t, InputIterator first, InputIterator last , const key_compare& comp, const allocator_type& a) : AllocHolder(value_compare(comp), a) { this->tree_construct(ordered_range_t(), first, last); } private: template void tree_construct(bool unique_insertion, InputIterator first, InputIterator last) { //Use cend() as hint to achieve linear time for //ordered ranges as required by the standard //for the constructor if(unique_insertion){ const const_iterator end_it(this->cend()); for ( ; first != last; ++first){ this->insert_unique_convertible(end_it, *first); } } else{ this->tree_construct_non_unique(first, last); } } template void tree_construct_non_unique(InputIterator first, InputIterator last #if !defined(BOOST_CONTAINER_DOXYGEN_INVOKED) , typename dtl::enable_if_or < void , dtl::is_same , dtl::is_input_iterator >::type * = 0 #endif ) { //Use cend() as hint to achieve linear time for //ordered ranges as required by the standard //for the constructor const const_iterator end_it(this->cend()); for ( ; first != last; ++first){ this->insert_equal_convertible(end_it, *first); } } template void tree_construct_non_unique(InputIterator first, InputIterator last #if !defined(BOOST_CONTAINER_DOXYGEN_INVOKED) , typename dtl::disable_if_or < void , dtl::is_same , dtl::is_input_iterator >::type * = 0 #endif ) { //Optimized allocation and construction this->allocate_many_and_construct ( first, boost::container::iterator_distance(first, last) , insert_equal_end_hint_functor(this->icont())); } template void tree_construct( ordered_range_t, InputIterator first, InputIterator last #if !defined(BOOST_CONTAINER_DOXYGEN_INVOKED) , typename dtl::disable_if_or < void , dtl::is_same , dtl::is_input_iterator >::type * = 0 #endif ) { //Optimized allocation and construction this->allocate_many_and_construct ( first, boost::container::iterator_distance(first, last) , dtl::push_back_functor(this->icont())); //AllocHolder clears in case of exception } template void tree_construct( ordered_range_t, InputIterator first, InputIterator last #if !defined(BOOST_CONTAINER_DOXYGEN_INVOKED) , typename dtl::enable_if_or < void , dtl::is_same , dtl::is_input_iterator >::type * = 0 #endif ) { for ( ; first != last; ++first){ this->push_back_impl(*first); } } public: BOOST_CONTAINER_FORCEINLINE tree(const tree& x) : AllocHolder(x, x.value_comp()) { this->icont().clone_from (x.icont(), typename AllocHolder::cloner(*this), Destroyer(this->node_alloc())); } BOOST_CONTAINER_FORCEINLINE tree(BOOST_RV_REF(tree) x) BOOST_NOEXCEPT_IF(boost::container::dtl::is_nothrow_move_constructible::value) : AllocHolder(BOOST_MOVE_BASE(AllocHolder, x), x.value_comp()) {} BOOST_CONTAINER_FORCEINLINE tree(const tree& x, const allocator_type &a) : AllocHolder(x.value_comp(), a) { this->icont().clone_from (x.icont(), typename AllocHolder::cloner(*this), Destroyer(this->node_alloc())); //AllocHolder clears in case of exception } tree(BOOST_RV_REF(tree) x, const allocator_type &a) : AllocHolder(x.value_comp(), a) { if(this->node_alloc() == x.node_alloc()){ this->icont().swap(x.icont()); } else{ this->icont().clone_from (boost::move(x.icont()), typename AllocHolder::move_cloner(*this), Destroyer(this->node_alloc())); } //AllocHolder clears in case of exception } BOOST_CONTAINER_FORCEINLINE ~tree() {} //AllocHolder clears the tree tree& operator=(BOOST_COPY_ASSIGN_REF(tree) x) { if (BOOST_LIKELY(this != &x)) { NodeAlloc &this_alloc = this->get_stored_allocator(); const NodeAlloc &x_alloc = x.get_stored_allocator(); dtl::bool_:: propagate_on_container_copy_assignment::value> flag; if(flag && this_alloc != x_alloc){ this->clear(); } this->AllocHolder::copy_assign_alloc(x); //Transfer all the nodes to a temporary tree //If anything goes wrong, all the nodes will be destroyed //automatically Icont other_tree(::boost::move(this->icont())); //Now recreate the source tree reusing nodes stored by other_tree this->icont().clone_from (x.icont() , RecyclingCloner(*this, other_tree) , Destroyer(this->node_alloc())); //If there are remaining nodes, destroy them NodePtr p; while((p = other_tree.unlink_leftmost_without_rebalance())){ AllocHolder::destroy_node(p); } } return *this; } tree& operator=(BOOST_RV_REF(tree) x) BOOST_NOEXCEPT_IF( (allocator_traits_type::propagate_on_container_move_assignment::value || allocator_traits_type::is_always_equal::value) && boost::container::dtl::is_nothrow_move_assignable::value) { if (BOOST_LIKELY(this != &x)) { NodeAlloc &this_alloc = this->node_alloc(); NodeAlloc &x_alloc = x.node_alloc(); const bool propagate_alloc = allocator_traits:: propagate_on_container_move_assignment::value; const bool allocators_equal = this_alloc == x_alloc; (void)allocators_equal; //Resources can be transferred if both allocators are //going to be equal after this function (either propagated or already equal) if(propagate_alloc || allocators_equal){ //Destroy this->clear(); //Move allocator if needed this->AllocHolder::move_assign_alloc(x); //Obtain resources this->icont() = boost::move(x.icont()); } //Else do a one by one move else{ //Transfer all the nodes to a temporary tree //If anything goes wrong, all the nodes will be destroyed //automatically Icont other_tree(::boost::move(this->icont())); //Now recreate the source tree reusing nodes stored by other_tree this->icont().clone_from (::boost::move(x.icont()) , RecyclingCloner(*this, other_tree) , Destroyer(this->node_alloc())); //If there are remaining nodes, destroy them NodePtr p; while((p = other_tree.unlink_leftmost_without_rebalance())){ AllocHolder::destroy_node(p); } } } return *this; } public: // accessors: BOOST_CONTAINER_FORCEINLINE value_compare value_comp() const { return this->icont().value_comp().predicate(); } BOOST_CONTAINER_FORCEINLINE key_compare key_comp() const { return this->icont().value_comp().predicate().key_comp(); } BOOST_CONTAINER_FORCEINLINE allocator_type get_allocator() const { return allocator_type(this->node_alloc()); } BOOST_CONTAINER_FORCEINLINE const stored_allocator_type &get_stored_allocator() const { return this->node_alloc(); } BOOST_CONTAINER_FORCEINLINE stored_allocator_type &get_stored_allocator() { return this->node_alloc(); } BOOST_CONTAINER_FORCEINLINE iterator begin() { return iterator(this->icont().begin()); } BOOST_CONTAINER_FORCEINLINE const_iterator begin() const { return this->cbegin(); } BOOST_CONTAINER_FORCEINLINE iterator end() { return iterator(this->icont().end()); } BOOST_CONTAINER_FORCEINLINE const_iterator end() const { return this->cend(); } BOOST_CONTAINER_FORCEINLINE reverse_iterator rbegin() { return reverse_iterator(end()); } BOOST_CONTAINER_FORCEINLINE const_reverse_iterator rbegin() const { return this->crbegin(); } BOOST_CONTAINER_FORCEINLINE reverse_iterator rend() { return reverse_iterator(begin()); } BOOST_CONTAINER_FORCEINLINE const_reverse_iterator rend() const { return this->crend(); } //! Effects: Returns a const_iterator to the first element contained in the container. //! //! Throws: Nothing. //! //! Complexity: Constant. BOOST_CONTAINER_FORCEINLINE const_iterator cbegin() const { return const_iterator(this->non_const_icont().begin()); } //! Effects: Returns a const_iterator to the end of the container. //! //! Throws: Nothing. //! //! Complexity: Constant. BOOST_CONTAINER_FORCEINLINE const_iterator cend() const { return const_iterator(this->non_const_icont().end()); } //! Effects: Returns a const_reverse_iterator pointing to the beginning //! of the reversed container. //! //! Throws: Nothing. //! //! Complexity: Constant. BOOST_CONTAINER_FORCEINLINE const_reverse_iterator crbegin() const { return const_reverse_iterator(cend()); } //! Effects: Returns a const_reverse_iterator pointing to the end //! of the reversed container. //! //! Throws: Nothing. //! //! Complexity: Constant. BOOST_CONTAINER_FORCEINLINE const_reverse_iterator crend() const { return const_reverse_iterator(cbegin()); } BOOST_CONTAINER_FORCEINLINE bool empty() const { return !this->size(); } BOOST_CONTAINER_FORCEINLINE size_type size() const { return this->icont().size(); } BOOST_CONTAINER_FORCEINLINE size_type max_size() const { return AllocHolder::max_size(); } BOOST_CONTAINER_FORCEINLINE void swap(ThisType& x) BOOST_NOEXCEPT_IF( allocator_traits_type::is_always_equal::value && boost::container::dtl::is_nothrow_swappable::value ) { AllocHolder::swap(x); } public: typedef typename Icont::insert_commit_data insert_commit_data; // insert/erase std::pair insert_unique_check (const key_type& key, insert_commit_data &data) { std::pair ret = this->icont().insert_unique_check(key, KeyNodeCompare(key_comp()), data); return std::pair(iterator(ret.first), ret.second); } std::pair insert_unique_check (const_iterator hint, const key_type& key, insert_commit_data &data) { BOOST_ASSERT((priv_is_linked)(hint)); std::pair ret = this->icont().insert_unique_check(hint.get(), key, KeyNodeCompare(key_comp()), data); return std::pair(iterator(ret.first), ret.second); } template iterator insert_unique_commit (BOOST_FWD_REF(MovableConvertible) v, insert_commit_data &data) { NodePtr tmp = AllocHolder::create_node(boost::forward(v)); scoped_destroy_deallocator destroy_deallocator(tmp, this->node_alloc()); iterator ret(this->icont().insert_unique_commit(*tmp, data)); destroy_deallocator.release(); return ret; } template std::pair insert_unique(BOOST_FWD_REF(MovableConvertible) v) { insert_commit_data data; std::pair ret = this->insert_unique_check(key_of_value_t()(v), data); if(ret.second){ ret.first = this->insert_unique_commit(boost::forward(v), data); } return ret; } private: template iiterator priv_insert_or_assign_commit (BOOST_FWD_REF(KeyConvertible) key, BOOST_FWD_REF(M) obj, insert_commit_data &data) { NodePtr tmp = AllocHolder::create_node(boost::forward(key), boost::forward(obj)); scoped_destroy_deallocator destroy_deallocator(tmp, this->node_alloc()); iiterator ret(this->icont().insert_unique_commit(*tmp, data)); destroy_deallocator.release(); return ret; } bool priv_is_linked(const_iterator const position) const { iiterator const cur(position.get()); return cur == this->icont().end() || cur == this->icont().root() || iiterator(cur).go_parent().go_left() == cur || iiterator(cur).go_parent().go_right() == cur; } template void push_back_impl(BOOST_FWD_REF(MovableConvertible) v) { NodePtr tmp(AllocHolder::create_node(boost::forward(v))); //push_back has no-throw guarantee so avoid any deallocator/destroyer this->icont().push_back(*tmp); } std::pair emplace_unique_impl(NodePtr p) { value_type &v = p->get_data(); insert_commit_data data; scoped_destroy_deallocator destroy_deallocator(p, this->node_alloc()); std::pair ret = this->insert_unique_check(key_of_value_t()(v), data); if(!ret.second){ return ret; } //No throw insertion part, release rollback destroy_deallocator.release(); return std::pair ( iterator(this->icont().insert_unique_commit(*p, data)) , true ); } iterator emplace_unique_hint_impl(const_iterator hint, NodePtr p) { BOOST_ASSERT((priv_is_linked)(hint)); value_type &v = p->get_data(); insert_commit_data data; std::pair ret = this->insert_unique_check(hint, key_of_value_t()(v), data); if(!ret.second){ Destroyer(this->node_alloc())(p); return ret.first; } return iterator(this->icont().insert_unique_commit(*p, data)); } public: #if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) template BOOST_CONTAINER_FORCEINLINE std::pair emplace_unique(BOOST_FWD_REF(Args)... args) { return this->emplace_unique_impl(AllocHolder::create_node(boost::forward(args)...)); } template BOOST_CONTAINER_FORCEINLINE iterator emplace_hint_unique(const_iterator hint, BOOST_FWD_REF(Args)... args) { return this->emplace_unique_hint_impl(hint, AllocHolder::create_node(boost::forward(args)...)); } template iterator emplace_equal(BOOST_FWD_REF(Args)... args) { NodePtr tmp(AllocHolder::create_node(boost::forward(args)...)); scoped_destroy_deallocator destroy_deallocator(tmp, this->node_alloc()); iterator ret(this->icont().insert_equal(this->icont().end(), *tmp)); destroy_deallocator.release(); return ret; } template iterator emplace_hint_equal(const_iterator hint, BOOST_FWD_REF(Args)... args) { BOOST_ASSERT((priv_is_linked)(hint)); NodePtr tmp(AllocHolder::create_node(boost::forward(args)...)); scoped_destroy_deallocator destroy_deallocator(tmp, this->node_alloc()); iterator ret(this->icont().insert_equal(hint.get(), *tmp)); destroy_deallocator.release(); return ret; } template BOOST_CONTAINER_FORCEINLINE std::pair try_emplace (const_iterator hint, BOOST_FWD_REF(KeyType) key, BOOST_FWD_REF(Args)... args) { insert_commit_data data; const key_type & k = key; //Support emulated rvalue references std::pair ret = hint == const_iterator() ? this->icont().insert_unique_check( k, KeyNodeCompare(key_comp()), data) : this->icont().insert_unique_check(hint.get(), k, KeyNodeCompare(key_comp()), data); if(ret.second){ ret.first = this->icont().insert_unique_commit (*AllocHolder::create_node(try_emplace_t(), boost::forward(key), boost::forward(args)...), data); } return std::pair(iterator(ret.first), ret.second); } #else // !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) #define BOOST_CONTAINER_TREE_EMPLACE_CODE(N) \ BOOST_MOVE_TMPL_LT##N BOOST_MOVE_CLASS##N BOOST_MOVE_GT##N \ std::pair emplace_unique(BOOST_MOVE_UREF##N)\ { return this->emplace_unique_impl(AllocHolder::create_node(BOOST_MOVE_FWD##N)); }\ \ BOOST_MOVE_TMPL_LT##N BOOST_MOVE_CLASS##N BOOST_MOVE_GT##N \ iterator emplace_hint_unique(const_iterator hint BOOST_MOVE_I##N BOOST_MOVE_UREF##N)\ { return this->emplace_unique_hint_impl(hint, AllocHolder::create_node(BOOST_MOVE_FWD##N)); }\ \ BOOST_MOVE_TMPL_LT##N BOOST_MOVE_CLASS##N BOOST_MOVE_GT##N \ iterator emplace_equal(BOOST_MOVE_UREF##N)\ {\ NodePtr tmp(AllocHolder::create_node(BOOST_MOVE_FWD##N));\ scoped_destroy_deallocator destroy_deallocator(tmp, this->node_alloc());\ iterator ret(this->icont().insert_equal(this->icont().end(), *tmp));\ destroy_deallocator.release();\ return ret;\ }\ \ BOOST_MOVE_TMPL_LT##N BOOST_MOVE_CLASS##N BOOST_MOVE_GT##N \ iterator emplace_hint_equal(const_iterator hint BOOST_MOVE_I##N BOOST_MOVE_UREF##N)\ {\ BOOST_ASSERT((priv_is_linked)(hint));\ NodePtr tmp(AllocHolder::create_node(BOOST_MOVE_FWD##N));\ scoped_destroy_deallocator destroy_deallocator(tmp, this->node_alloc());\ iterator ret(this->icont().insert_equal(hint.get(), *tmp));\ destroy_deallocator.release();\ return ret;\ }\ \ template \ BOOST_CONTAINER_FORCEINLINE std::pair\ try_emplace(const_iterator hint, BOOST_FWD_REF(KeyType) key BOOST_MOVE_I##N BOOST_MOVE_UREF##N)\ {\ insert_commit_data data;\ const key_type & k = key;\ std::pair ret =\ hint == const_iterator() ? this->icont().insert_unique_check( k, KeyNodeCompare(key_comp()), data)\ : this->icont().insert_unique_check(hint.get(), k, KeyNodeCompare(key_comp()), data);\ if(ret.second){\ ret.first = this->icont().insert_unique_commit\ (*AllocHolder::create_node(try_emplace_t(), boost::forward(key) BOOST_MOVE_I##N BOOST_MOVE_FWD##N), data);\ }\ return std::pair(iterator(ret.first), ret.second);\ }\ // BOOST_MOVE_ITERATE_0TO9(BOOST_CONTAINER_TREE_EMPLACE_CODE) #undef BOOST_CONTAINER_TREE_EMPLACE_CODE #endif // !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) template iterator insert_unique_convertible(const_iterator hint, BOOST_FWD_REF(MovableConvertible) v) { BOOST_ASSERT((priv_is_linked)(hint)); insert_commit_data data; std::pair ret = this->insert_unique_check(hint, key_of_value_t()(v), data); if(!ret.second) return ret.first; return this->insert_unique_commit(boost::forward(v), data); } BOOST_MOVE_CONVERSION_AWARE_CATCH_1ARG(insert_unique, value_type, iterator, this->insert_unique_convertible, const_iterator, const_iterator) template void insert_unique(InputIterator first, InputIterator last) { for( ; first != last; ++first) this->insert_unique(*first); } iterator insert_equal(const value_type& v) { NodePtr tmp(AllocHolder::create_node(v)); scoped_destroy_deallocator destroy_deallocator(tmp, this->node_alloc()); iterator ret(this->icont().insert_equal(this->icont().end(), *tmp)); destroy_deallocator.release(); return ret; } template iterator insert_equal(BOOST_FWD_REF(MovableConvertible) v) { NodePtr tmp(AllocHolder::create_node(boost::forward(v))); scoped_destroy_deallocator destroy_deallocator(tmp, this->node_alloc()); iterator ret(this->icont().insert_equal(this->icont().end(), *tmp)); destroy_deallocator.release(); return ret; } template iterator insert_equal_convertible(const_iterator hint, BOOST_FWD_REF(MovableConvertible) v) { BOOST_ASSERT((priv_is_linked)(hint)); NodePtr tmp(AllocHolder::create_node(boost::forward(v))); scoped_destroy_deallocator destroy_deallocator(tmp, this->node_alloc()); iterator ret(this->icont().insert_equal(hint.get(), *tmp)); destroy_deallocator.release(); return ret; } BOOST_MOVE_CONVERSION_AWARE_CATCH_1ARG(insert_equal, value_type, iterator, this->insert_equal_convertible, const_iterator, const_iterator) template void insert_equal(InputIterator first, InputIterator last) { for( ; first != last; ++first) this->insert_equal(*first); } template std::pair insert_or_assign(const_iterator hint, BOOST_FWD_REF(KeyType) key, BOOST_FWD_REF(M) obj) { insert_commit_data data; const key_type & k = key; //Support emulated rvalue references std::pair ret = hint == const_iterator() ? this->icont().insert_unique_check(k, KeyNodeCompare(key_comp()), data) : this->icont().insert_unique_check(hint.get(), k, KeyNodeCompare(key_comp()), data); if(ret.second){ ret.first = this->priv_insert_or_assign_commit(boost::forward(key), boost::forward(obj), data); } else{ ret.first->get_data().second = boost::forward(obj); } return std::pair(iterator(ret.first), ret.second); } iterator erase(const_iterator position) { BOOST_ASSERT(position != this->cend() && (priv_is_linked)(position)); return iterator(this->icont().erase_and_dispose(position.get(), Destroyer(this->node_alloc()))); } BOOST_CONTAINER_FORCEINLINE size_type erase(const key_type& k) { return AllocHolder::erase_key(k, KeyNodeCompare(key_comp()), alloc_version()); } iterator erase(const_iterator first, const_iterator last) { BOOST_ASSERT(first == last || (first != this->cend() && (priv_is_linked)(first))); BOOST_ASSERT(first == last || (priv_is_linked)(last)); return iterator(AllocHolder::erase_range(first.get(), last.get(), alloc_version())); } node_type extract(const key_type& k) { iterator const it = this->find(k); if(this->end() != it){ return this->extract(it); } return node_type(); } node_type extract(const_iterator position) { BOOST_ASSERT(position != this->cend() && (priv_is_linked)(position)); iiterator const iit(position.get()); this->icont().erase(iit); return node_type(iit.operator->(), this->node_alloc()); } insert_return_type insert_unique_node(BOOST_RV_REF_BEG_IF_CXX11 node_type BOOST_RV_REF_END_IF_CXX11 nh) { return this->insert_unique_node(this->end(), boost::move(nh)); } insert_return_type insert_unique_node(const_iterator hint, BOOST_RV_REF_BEG_IF_CXX11 node_type BOOST_RV_REF_END_IF_CXX11 nh) { insert_return_type irt; //inserted == false, node.empty() if(!nh.empty()){ insert_commit_data data; std::pair ret = this->insert_unique_check(hint, key_of_value_t()(nh.value()), data); if(ret.second){ irt.inserted = true; irt.position = iterator(this->icont().insert_unique_commit(*nh.get(), data)); nh.release(); } else{ irt.position = ret.first; irt.node = boost::move(nh); } } else{ irt.position = this->end(); } return BOOST_MOVE_RET(insert_return_type, irt); } iterator insert_equal_node(BOOST_RV_REF_BEG_IF_CXX11 node_type BOOST_RV_REF_END_IF_CXX11 nh) { if(nh.empty()){ return this->end(); } else{ NodePtr const p(nh.release()); return iterator(this->icont().insert_equal(*p)); } } iterator insert_equal_node(const_iterator hint, BOOST_RV_REF_BEG_IF_CXX11 node_type BOOST_RV_REF_END_IF_CXX11 nh) { if(nh.empty()){ return this->end(); } else{ NodePtr const p(nh.release()); return iterator(this->icont().insert_equal(hint.get(), *p)); } } template BOOST_CONTAINER_FORCEINLINE void merge_unique(tree& source) { return this->icont().merge_unique(source.icont()); } template BOOST_CONTAINER_FORCEINLINE void merge_equal(tree& source) { return this->icont().merge_equal(source.icont()); } BOOST_CONTAINER_FORCEINLINE void clear() { AllocHolder::clear(alloc_version()); } // search operations. Const and non-const overloads even if no iterator is returned // so splay implementations can to their rebalancing when searching in non-const versions BOOST_CONTAINER_FORCEINLINE iterator find(const key_type& k) { return iterator(this->icont().find(k, KeyNodeCompare(key_comp()))); } BOOST_CONTAINER_FORCEINLINE const_iterator find(const key_type& k) const { return const_iterator(this->non_const_icont().find(k, KeyNodeCompare(key_comp()))); } template BOOST_CONTAINER_FORCEINLINE typename dtl::enable_if_transparent::type find(const K& k) { return iterator(this->icont().find(k, KeyNodeCompare(key_comp()))); } template BOOST_CONTAINER_FORCEINLINE typename dtl::enable_if_transparent::type find(const K& k) const { return const_iterator(this->non_const_icont().find(k, KeyNodeCompare(key_comp()))); } BOOST_CONTAINER_FORCEINLINE size_type count(const key_type& k) const { return size_type(this->icont().count(k, KeyNodeCompare(key_comp()))); } template BOOST_CONTAINER_FORCEINLINE typename dtl::enable_if_transparent::type count(const K& k) const { return size_type(this->icont().count(k, KeyNodeCompare(key_comp()))); } BOOST_CONTAINER_FORCEINLINE bool contains(const key_type& x) const { return this->find(x) != this->cend(); } template BOOST_CONTAINER_FORCEINLINE typename dtl::enable_if_transparent::type contains(const K& x) const { return this->find(x) != this->cend(); } BOOST_CONTAINER_FORCEINLINE iterator lower_bound(const key_type& k) { return iterator(this->icont().lower_bound(k, KeyNodeCompare(key_comp()))); } BOOST_CONTAINER_FORCEINLINE const_iterator lower_bound(const key_type& k) const { return const_iterator(this->non_const_icont().lower_bound(k, KeyNodeCompare(key_comp()))); } template BOOST_CONTAINER_FORCEINLINE typename dtl::enable_if_transparent::type lower_bound(const K& k) { return iterator(this->icont().lower_bound(k, KeyNodeCompare(key_comp()))); } template BOOST_CONTAINER_FORCEINLINE typename dtl::enable_if_transparent::type lower_bound(const K& k) const { return const_iterator(this->non_const_icont().lower_bound(k, KeyNodeCompare(key_comp()))); } BOOST_CONTAINER_FORCEINLINE iterator upper_bound(const key_type& k) { return iterator(this->icont().upper_bound(k, KeyNodeCompare(key_comp()))); } BOOST_CONTAINER_FORCEINLINE const_iterator upper_bound(const key_type& k) const { return const_iterator(this->non_const_icont().upper_bound(k, KeyNodeCompare(key_comp()))); } template BOOST_CONTAINER_FORCEINLINE typename dtl::enable_if_transparent::type upper_bound(const K& k) { return iterator(this->icont().upper_bound(k, KeyNodeCompare(key_comp()))); } template BOOST_CONTAINER_FORCEINLINE typename dtl::enable_if_transparent::type upper_bound(const K& k) const { return const_iterator(this->non_const_icont().upper_bound(k, KeyNodeCompare(key_comp()))); } std::pair equal_range(const key_type& k) { std::pair ret = this->icont().equal_range(k, KeyNodeCompare(key_comp())); return std::pair(iterator(ret.first), iterator(ret.second)); } std::pair equal_range(const key_type& k) const { std::pair ret = this->non_const_icont().equal_range(k, KeyNodeCompare(key_comp())); return std::pair (const_iterator(ret.first), const_iterator(ret.second)); } template BOOST_CONTAINER_FORCEINLINE typename dtl::enable_if_transparent >::type equal_range(const K& k) { std::pair ret = this->icont().equal_range(k, KeyNodeCompare(key_comp())); return std::pair(iterator(ret.first), iterator(ret.second)); } template BOOST_CONTAINER_FORCEINLINE typename dtl::enable_if_transparent >::type equal_range(const K& k) const { std::pair ret = this->non_const_icont().equal_range(k, KeyNodeCompare(key_comp())); return std::pair (const_iterator(ret.first), const_iterator(ret.second)); } std::pair lower_bound_range(const key_type& k) { std::pair ret = this->icont().lower_bound_range(k, KeyNodeCompare(key_comp())); return std::pair(iterator(ret.first), iterator(ret.second)); } std::pair lower_bound_range(const key_type& k) const { std::pair ret = this->non_const_icont().lower_bound_range(k, KeyNodeCompare(key_comp())); return std::pair (const_iterator(ret.first), const_iterator(ret.second)); } template BOOST_CONTAINER_FORCEINLINE typename dtl::enable_if_transparent >::type lower_bound_range(const K& k) { std::pair ret = this->icont().lower_bound_range(k, KeyNodeCompare(key_comp())); return std::pair(iterator(ret.first), iterator(ret.second)); } template BOOST_CONTAINER_FORCEINLINE typename dtl::enable_if_transparent >::type lower_bound_range(const K& k) const { std::pair ret = this->non_const_icont().lower_bound_range(k, KeyNodeCompare(key_comp())); return std::pair (const_iterator(ret.first), const_iterator(ret.second)); } BOOST_CONTAINER_FORCEINLINE void rebalance() { intrusive_tree_proxy_t::rebalance(this->icont()); } BOOST_CONTAINER_FORCEINLINE friend bool operator==(const tree& x, const tree& y) { return x.size() == y.size() && ::boost::container::algo_equal(x.begin(), x.end(), y.begin()); } BOOST_CONTAINER_FORCEINLINE friend bool operator<(const tree& x, const tree& y) { return ::boost::container::algo_lexicographical_compare(x.begin(), x.end(), y.begin(), y.end()); } BOOST_CONTAINER_FORCEINLINE friend bool operator!=(const tree& x, const tree& y) { return !(x == y); } BOOST_CONTAINER_FORCEINLINE friend bool operator>(const tree& x, const tree& y) { return y < x; } BOOST_CONTAINER_FORCEINLINE friend bool operator<=(const tree& x, const tree& y) { return !(y < x); } BOOST_CONTAINER_FORCEINLINE friend bool operator>=(const tree& x, const tree& y) { return !(x < y); } BOOST_CONTAINER_FORCEINLINE friend void swap(tree& x, tree& y) BOOST_NOEXCEPT_IF( allocator_traits_type::is_always_equal::value && boost::container::dtl::is_nothrow_swappable::value ) { x.swap(y); } }; } //namespace dtl { } //namespace container { template struct has_trivial_destructor_after_move; //!has_trivial_destructor_after_move<> == true_type //!specialization for optimizations template struct has_trivial_destructor_after_move < ::boost::container::dtl::tree > { typedef typename ::boost::container::dtl::tree::allocator_type allocator_type; typedef typename ::boost::container::allocator_traits::pointer pointer; static const bool value = ::boost::has_trivial_destructor_after_move::value && ::boost::has_trivial_destructor_after_move::value && ::boost::has_trivial_destructor_after_move::value; }; } //namespace boost { #include #endif //BOOST_CONTAINER_TREE_HPP