| 
									
										
										
										
											2009-08-30 16:42:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | // Copyright (C) 2003-2004 Jeremy B. Maitin-Shepard.
 | 
					
						
							| 
									
										
										
										
											2011-06-04 16:17:07 +00:00
										 |  |  | // Copyright (C) 2005-2011 Daniel James
 | 
					
						
							| 
									
										
										
										
											2009-08-30 16:42:28 +00:00
										 |  |  | // 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)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef BOOST_UNORDERED_DETAIL_ALL_HPP_INCLUDED
 | 
					
						
							|  |  |  | #define BOOST_UNORDERED_DETAIL_ALL_HPP_INCLUDED
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-04 07:03:04 +00:00
										 |  |  | #include <boost/unordered/detail/buckets.hpp>
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | #include <boost/unordered/detail/util.hpp>
 | 
					
						
							|  |  |  | #include <boost/type_traits/aligned_storage.hpp>
 | 
					
						
							|  |  |  | #include <boost/type_traits/alignment_of.hpp>
 | 
					
						
							|  |  |  | #include <cmath>
 | 
					
						
							| 
									
										
										
										
											2009-08-30 16:42:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-05 19:02:29 +00:00
										 |  |  | #if defined(BOOST_MSVC)
 | 
					
						
							|  |  |  | #pragma warning(push)
 | 
					
						
							|  |  |  | #pragma warning(disable:4127) // conditional expression is constant
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-17 10:30:19 +00:00
										 |  |  | #if defined(BOOST_UNORDERED_DEPRECATED_EQUALITY)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(__EDG__)
 | 
					
						
							|  |  |  | #elif defined(_MSC_VER) || defined(__BORLANDC__) || defined(__DMC__)
 | 
					
						
							|  |  |  | #pragma message("Warning: BOOST_UNORDERED_DEPRECATED_EQUALITY is no longer supported.")
 | 
					
						
							|  |  |  | #elif defined(__GNUC__) || defined(__HP_aCC) || \
 | 
					
						
							|  |  |  |     defined(__SUNPRO_CC) || defined(__IBMCPP__) | 
					
						
							|  |  |  | #warning "BOOST_UNORDERED_DEPRECATED_EQUALITY is no longer supported."
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | namespace boost { namespace unordered { namespace detail { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  |     // convert double to std::size_t
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-07 08:19:53 +00:00
										 |  |  |     inline std::size_t double_to_size(double f) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     { | 
					
						
							|  |  |  |         return f >= static_cast<double>( | 
					
						
							|  |  |  |             (std::numeric_limits<std::size_t>::max)()) ? | 
					
						
							|  |  |  |             (std::numeric_limits<std::size_t>::max)() : | 
					
						
							|  |  |  |             static_cast<std::size_t>(f); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // The space used to store values in a node.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     template <typename ValueType> | 
					
						
							|  |  |  |     struct value_base | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         typedef ValueType value_type; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         typename boost::aligned_storage< | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             sizeof(value_type), | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |             boost::alignment_of<value_type>::value>::type data_; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         void* address() { | 
					
						
							|  |  |  |             return this; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         value_type& value() { | 
					
						
							|  |  |  |             return *(ValueType*) this; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         value_type* value_ptr() { | 
					
						
							|  |  |  |             return (ValueType*) this; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     private: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         value_base& operator=(value_base const&); | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:10 +00:00
										 |  |  |     template <typename NodeAlloc> | 
					
						
							|  |  |  |     struct copy_nodes | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         typedef boost::unordered::detail::allocator_traits<NodeAlloc> | 
					
						
							|  |  |  |             node_allocator_traits; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         node_constructor<NodeAlloc> constructor; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         explicit copy_nodes(NodeAlloc& a) : constructor(a) {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         typename node_allocator_traits::pointer create( | 
					
						
							|  |  |  |                 typename node_allocator_traits::value_type::value_type const& v) | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:53 +00:00
										 |  |  |             constructor.construct_with_value2(v); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:10 +00:00
										 |  |  |             return constructor.release(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     template <typename NodeAlloc> | 
					
						
							|  |  |  |     struct move_nodes | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         typedef boost::unordered::detail::allocator_traits<NodeAlloc> | 
					
						
							|  |  |  |             node_allocator_traits; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         node_constructor<NodeAlloc> constructor; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         explicit move_nodes(NodeAlloc& a) : constructor(a) {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         typename node_allocator_traits::pointer create( | 
					
						
							|  |  |  |                 typename node_allocator_traits::value_type::value_type& v) | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:53 +00:00
										 |  |  |             constructor.construct_with_value2(boost::move(v)); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:10 +00:00
										 |  |  |             return constructor.release(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:31 +00:00
										 |  |  |     template <typename Buckets> | 
					
						
							|  |  |  |     struct assign_nodes | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         node_holder<typename Buckets::node_allocator> holder; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         explicit assign_nodes(Buckets& b) : holder(b) {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         typename Buckets::node_pointer create( | 
					
						
							|  |  |  |                 typename Buckets::value_type const& v) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             return holder.copy_of(v); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     template <typename Buckets> | 
					
						
							|  |  |  |     struct move_assign_nodes | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         node_holder<typename Buckets::node_allocator> holder; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         explicit move_assign_nodes(Buckets& b) : holder(b) {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         typename Buckets::node_pointer create( | 
					
						
							|  |  |  |                 typename Buckets::value_type& v) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             return holder.move_copy_of(v); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     }; | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     template <typename Types> | 
					
						
							|  |  |  |     struct table : | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         boost::unordered::detail::functions< | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             typename Types::hasher, | 
					
						
							|  |  |  |             typename Types::key_equal> | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |     private: | 
					
						
							|  |  |  |         table(table const&); | 
					
						
							|  |  |  |         table& operator=(table const&); | 
					
						
							|  |  |  |     public: | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         typedef typename Types::node node; | 
					
						
							|  |  |  |         typedef typename Types::bucket bucket; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         typedef typename Types::hasher hasher; | 
					
						
							|  |  |  |         typedef typename Types::key_equal key_equal; | 
					
						
							|  |  |  |         typedef typename Types::key_type key_type; | 
					
						
							|  |  |  |         typedef typename Types::extractor extractor; | 
					
						
							|  |  |  |         typedef typename Types::value_type value_type; | 
					
						
							|  |  |  |         typedef typename Types::table table_impl; | 
					
						
							|  |  |  |         typedef typename Types::link_pointer link_pointer; | 
					
						
							| 
									
										
										
										
											2012-02-18 15:47:59 +00:00
										 |  |  |         typedef typename Types::policy policy; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         typedef boost::unordered::detail::functions< | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             typename Types::hasher, | 
					
						
							|  |  |  |             typename Types::key_equal> functions; | 
					
						
							| 
									
										
										
										
											2013-05-13 23:12:46 +00:00
										 |  |  |         typedef typename functions::set_hash_functions set_hash_functions; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:55 +00:00
										 |  |  |         typedef typename Types::allocator allocator; | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         typedef typename boost::unordered::detail:: | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:55 +00:00
										 |  |  |             rebind_wrap<allocator, node>::type node_allocator; | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         typedef typename boost::unordered::detail:: | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:55 +00:00
										 |  |  |             rebind_wrap<allocator, bucket>::type bucket_allocator; | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         typedef boost::unordered::detail::allocator_traits<node_allocator> | 
					
						
							|  |  |  |             node_allocator_traits; | 
					
						
							|  |  |  |         typedef boost::unordered::detail::allocator_traits<bucket_allocator> | 
					
						
							|  |  |  |             bucket_allocator_traits; | 
					
						
							|  |  |  |         typedef typename node_allocator_traits::pointer | 
					
						
							|  |  |  |             node_pointer; | 
					
						
							|  |  |  |         typedef typename node_allocator_traits::const_pointer | 
					
						
							|  |  |  |             const_node_pointer; | 
					
						
							|  |  |  |         typedef typename bucket_allocator_traits::pointer | 
					
						
							|  |  |  |             bucket_pointer; | 
					
						
							|  |  |  |         typedef boost::unordered::detail::node_constructor<node_allocator> | 
					
						
							|  |  |  |             node_constructor; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         typedef boost::unordered::iterator_detail:: | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:15 +00:00
										 |  |  |             iterator<node> iterator; | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         typedef boost::unordered::iterator_detail:: | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:15 +00:00
										 |  |  |             c_iterator<node, const_node_pointer> c_iterator; | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         typedef boost::unordered::iterator_detail:: | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:15 +00:00
										 |  |  |             l_iterator<node, policy> l_iterator; | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         typedef boost::unordered::iterator_detail:: | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:15 +00:00
										 |  |  |             cl_iterator<node, const_node_pointer, policy> cl_iterator; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         ////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         // Members
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         boost::unordered::detail::compressed<bucket_allocator, node_allocator> | 
					
						
							|  |  |  |             allocators_; | 
					
						
							|  |  |  |         std::size_t bucket_count_; | 
					
						
							|  |  |  |         std::size_t size_; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         float mlf_; | 
					
						
							| 
									
										
										
										
											2012-09-17 18:57:58 +00:00
										 |  |  |         std::size_t max_load_; | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         bucket_pointer buckets_; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  |         // Data access
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         bucket_allocator const& bucket_alloc() const | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             return allocators_.first(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         node_allocator const& node_alloc() const | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             return allocators_.second(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         bucket_allocator& bucket_alloc() | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             return allocators_.first(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         node_allocator& node_alloc() | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             return allocators_.second(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         std::size_t max_bucket_count() const | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             // -1 to account for the start bucket.
 | 
					
						
							|  |  |  |             return policy::prev_bucket_count( | 
					
						
							|  |  |  |                 bucket_allocator_traits::max_size(bucket_alloc()) - 1); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         bucket_pointer get_bucket(std::size_t bucket_index) const | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-09-17 18:59:03 +00:00
										 |  |  |             BOOST_ASSERT(buckets_); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |             return buckets_ + static_cast<std::ptrdiff_t>(bucket_index); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:45 +00:00
										 |  |  |         link_pointer get_previous_start() const | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |             return get_bucket(bucket_count_)->first_from_start(); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:45 +00:00
										 |  |  |         link_pointer get_previous_start(std::size_t bucket_index) const | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |             return get_bucket(bucket_index)->next_; | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-17 18:59:03 +00:00
										 |  |  |         iterator begin() const | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:15 +00:00
										 |  |  |             return size_ ? iterator(get_previous_start()->next_) : iterator(); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-17 18:59:03 +00:00
										 |  |  |         iterator begin(std::size_t bucket_index) const | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-09-17 18:59:03 +00:00
										 |  |  |             if (!size_) return iterator(); | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:45 +00:00
										 |  |  |             link_pointer prev = get_previous_start(bucket_index); | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:15 +00:00
										 |  |  |             return prev ? iterator(prev->next_) : iterator(); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:29 +00:00
										 |  |  |          | 
					
						
							|  |  |  |         std::size_t hash_to_bucket(std::size_t hash) const | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             return policy::to_bucket(bucket_count_, hash); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         float load_factor() const | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |             BOOST_ASSERT(bucket_count_ != 0); | 
					
						
							|  |  |  |             return static_cast<float>(size_) | 
					
						
							|  |  |  |                 / static_cast<float>(bucket_count_); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         std::size_t bucket_size(std::size_t index) const | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-09-17 18:59:03 +00:00
										 |  |  |             iterator it = begin(index); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |             if (!it.node_) return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             std::size_t count = 0; | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:29 +00:00
										 |  |  |             while(it.node_ && hash_to_bucket(it.node_->hash_) == index) | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |             { | 
					
						
							|  |  |  |                 ++count; | 
					
						
							|  |  |  |                 ++it; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             return count; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         ////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  |         // Load methods
 | 
					
						
							| 
									
										
										
										
											2009-08-30 16:42:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         std::size_t max_size() const | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             using namespace std; | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |             // size < mlf_ * count
 | 
					
						
							| 
									
										
										
										
											2011-10-07 08:19:53 +00:00
										 |  |  |             return boost::unordered::detail::double_to_size(ceil( | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |                     static_cast<double>(mlf_) * | 
					
						
							|  |  |  |                     static_cast<double>(max_bucket_count()) | 
					
						
							| 
									
										
										
										
											2011-08-17 07:43:43 +00:00
										 |  |  |                 )) - 1; | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-08-30 16:42:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:05:15 +00:00
										 |  |  |         void recalculate_max_load() | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         { | 
					
						
							|  |  |  |             using namespace std; | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |             // From 6.3.1/13:
 | 
					
						
							|  |  |  |             // Only resize when size >= mlf_ * count
 | 
					
						
							| 
									
										
										
										
											2012-09-17 18:57:58 +00:00
										 |  |  |             max_load_ = buckets_ ? boost::unordered::detail::double_to_size(ceil( | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |                     static_cast<double>(mlf_) * | 
					
						
							|  |  |  |                     static_cast<double>(bucket_count_) | 
					
						
							| 
									
										
										
										
											2012-09-17 18:57:58 +00:00
										 |  |  |                 )) : 0; | 
					
						
							| 
									
										
										
										
											2011-08-17 07:43:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2012-09-03 20:05:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         void max_load_factor(float z) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             BOOST_ASSERT(z > 0); | 
					
						
							|  |  |  |             mlf_ = (std::max)(z, minimum_max_load_factor); | 
					
						
							| 
									
										
										
										
											2012-09-17 18:57:58 +00:00
										 |  |  |             recalculate_max_load(); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         std::size_t min_buckets_for_size(std::size_t size) const | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |             BOOST_ASSERT(mlf_ >= minimum_max_load_factor); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |      | 
					
						
							|  |  |  |             using namespace std; | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |             // From 6.3.1/13:
 | 
					
						
							|  |  |  |             // size < mlf_ * count
 | 
					
						
							|  |  |  |             // => count > size / mlf_
 | 
					
						
							|  |  |  |             //
 | 
					
						
							|  |  |  |             // Or from rehash post-condition:
 | 
					
						
							|  |  |  |             // count > size / mlf_
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:28:26 +00:00
										 |  |  |             return policy::new_bucket_count( | 
					
						
							| 
									
										
										
										
											2011-10-07 08:19:53 +00:00
										 |  |  |                 boost::unordered::detail::double_to_size(floor( | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                     static_cast<double>(size) / | 
					
						
							|  |  |  |                     static_cast<double>(mlf_))) + 1); | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-08-30 16:42:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         ////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  |         // Constructors
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-11 21:18:43 +00:00
										 |  |  |         table(std::size_t num_buckets, | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |                 hasher const& hf, | 
					
						
							|  |  |  |                 key_equal const& eq, | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 node_allocator const& a) : | 
					
						
							| 
									
										
										
										
											2011-04-17 00:31:35 +00:00
										 |  |  |             functions(hf, eq), | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |             allocators_(a,a), | 
					
						
							|  |  |  |             bucket_count_(policy::new_bucket_count(num_buckets)), | 
					
						
							|  |  |  |             size_(0), | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |             mlf_(1.0f), | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |             max_load_(0), | 
					
						
							|  |  |  |             buckets_() | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         {} | 
					
						
							| 
									
										
										
										
											2009-08-30 16:42:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         table(table const& x, node_allocator const& a) : | 
					
						
							| 
									
										
										
										
											2011-04-17 00:31:35 +00:00
										 |  |  |             functions(x), | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |             allocators_(a,a), | 
					
						
							|  |  |  |             bucket_count_(x.min_buckets_for_size(x.size_)), | 
					
						
							|  |  |  |             size_(0), | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |             mlf_(x.mlf_), | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |             max_load_(0), | 
					
						
							|  |  |  |             buckets_() | 
					
						
							| 
									
										
										
										
											2012-09-03 20:03:55 +00:00
										 |  |  |         {} | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         table(table& x, boost::unordered::detail::move_tag m) : | 
					
						
							| 
									
										
										
										
											2013-05-13 23:13:04 +00:00
										 |  |  |             functions(x, m), | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |             allocators_(x.allocators_, m), | 
					
						
							|  |  |  |             bucket_count_(x.bucket_count_), | 
					
						
							|  |  |  |             size_(x.size_), | 
					
						
							| 
									
										
										
										
											2011-08-14 18:53:29 +00:00
										 |  |  |             mlf_(x.mlf_), | 
					
						
							| 
									
										
										
										
											2012-09-03 20:05:15 +00:00
										 |  |  |             max_load_(x.max_load_), | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |             buckets_(x.buckets_) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             x.buckets_ = bucket_pointer(); | 
					
						
							|  |  |  |             x.size_ = 0; | 
					
						
							| 
									
										
										
										
											2012-09-17 18:57:58 +00:00
										 |  |  |             x.max_load_ = 0; | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-08-30 16:42:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         table(table& x, node_allocator const& a, | 
					
						
							| 
									
										
										
										
											2013-05-13 23:13:04 +00:00
										 |  |  |                 boost::unordered::detail::move_tag m) : | 
					
						
							|  |  |  |             functions(x, m), | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |             allocators_(a, a), | 
					
						
							|  |  |  |             bucket_count_(x.bucket_count_), | 
					
						
							|  |  |  |             size_(0), | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |             mlf_(x.mlf_), | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |             max_load_(x.max_load_), | 
					
						
							|  |  |  |             buckets_() | 
					
						
							| 
									
										
										
										
											2012-09-03 20:03:55 +00:00
										 |  |  |         {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         ////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:03:55 +00:00
										 |  |  |         // Initialisation.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         void init(table const& x) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             if (x.size_) { | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |                 create_buckets(bucket_count_); | 
					
						
							|  |  |  |                 copy_nodes<node_allocator> copy(node_alloc()); | 
					
						
							| 
									
										
										
										
											2012-09-17 18:59:03 +00:00
										 |  |  |                 table_impl::fill_buckets(x.begin(), *this, copy); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:03:55 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         void move_init(table& x) | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |             if(node_alloc() == x.node_alloc()) { | 
					
						
							|  |  |  |                 move_buckets_from(x); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |             else if(x.size_) { | 
					
						
							| 
									
										
										
										
											2012-09-03 20:05:15 +00:00
										 |  |  |                 // TODO: Could pick new bucket size?
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |                 create_buckets(bucket_count_); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:03:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |                 move_nodes<node_allocator> move(node_alloc()); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:03:35 +00:00
										 |  |  |                 node_holder<node_allocator> nodes(x); | 
					
						
							| 
									
										
										
										
											2012-09-17 18:59:29 +00:00
										 |  |  |                 table_impl::fill_buckets(nodes.begin(), *this, move); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         ////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  |         // Create buckets
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         void create_buckets(std::size_t new_count) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             boost::unordered::detail::array_constructor<bucket_allocator> | 
					
						
							|  |  |  |                 constructor(bucket_alloc()); | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |             // Creates an extra bucket to act as the start node.
 | 
					
						
							|  |  |  |             constructor.construct(bucket(), new_count + 1); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |             if (buckets_) | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 // Copy the nodes to the new buckets, including the dummy
 | 
					
						
							|  |  |  |                 // node if there is one.
 | 
					
						
							|  |  |  |                 (constructor.get() + | 
					
						
							|  |  |  |                     static_cast<std::ptrdiff_t>(new_count))->next_ = | 
					
						
							|  |  |  |                         (buckets_ + static_cast<std::ptrdiff_t>( | 
					
						
							|  |  |  |                             bucket_count_))->next_; | 
					
						
							| 
									
										
										
										
											2012-09-03 20:05:15 +00:00
										 |  |  |                 destroy_buckets(); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |             else if (bucket::extra_node) | 
					
						
							|  |  |  |             { | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |                 node_constructor a(node_alloc()); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |                 a.construct(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 (constructor.get() + | 
					
						
							| 
									
										
										
										
											2012-09-13 19:50:31 +00:00
										 |  |  |                     static_cast<std::ptrdiff_t>(new_count))->next_ = | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |                         a.release(); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |             bucket_count_ = new_count; | 
					
						
							|  |  |  |             buckets_ = constructor.release(); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:05:15 +00:00
										 |  |  |             recalculate_max_load(); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  |         // Swap and Move
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:05:39 +00:00
										 |  |  |         void swap_allocators(table& other, false_type) | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2013-08-08 20:27:40 +00:00
										 |  |  |             boost::unordered::detail::ignore_unused_variable_warning(other); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:05:39 +00:00
										 |  |  |             // According to 23.2.1.8, if propagate_on_container_swap is
 | 
					
						
							|  |  |  |             // false the behaviour is undefined unless the allocators
 | 
					
						
							|  |  |  |             // are equal.
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |             BOOST_ASSERT(node_alloc() == other.node_alloc()); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:05:39 +00:00
										 |  |  |         void swap_allocators(table& other, true_type) | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         { | 
					
						
							|  |  |  |             allocators_.swap(other.allocators_); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:05:39 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Only swaps the allocators if propagate_on_container_swap
 | 
					
						
							|  |  |  |         void swap(table& x) | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2013-05-13 23:12:46 +00:00
										 |  |  |             set_hash_functions op1(*this, x); | 
					
						
							|  |  |  |             set_hash_functions op2(x, *this); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:05:39 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             // I think swap can throw if Propagate::value,
 | 
					
						
							|  |  |  |             // since the allocators' swap can throw. Not sure though.
 | 
					
						
							|  |  |  |             swap_allocators(x, | 
					
						
							|  |  |  |                 boost::unordered::detail::integral_constant<bool, | 
					
						
							|  |  |  |                     allocator_traits<node_allocator>:: | 
					
						
							|  |  |  |                     propagate_on_container_swap::value>()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             boost::swap(buckets_, x.buckets_); | 
					
						
							|  |  |  |             boost::swap(bucket_count_, x.bucket_count_); | 
					
						
							|  |  |  |             boost::swap(size_, x.size_); | 
					
						
							|  |  |  |             std::swap(mlf_, x.mlf_); | 
					
						
							|  |  |  |             std::swap(max_load_, x.max_load_); | 
					
						
							|  |  |  |             op1.commit(); | 
					
						
							|  |  |  |             op2.commit(); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         void move_buckets_from(table& other) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             BOOST_ASSERT(node_alloc() == other.node_alloc()); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |             BOOST_ASSERT(!buckets_); | 
					
						
							|  |  |  |             buckets_ = other.buckets_; | 
					
						
							|  |  |  |             bucket_count_ = other.bucket_count_; | 
					
						
							|  |  |  |             size_ = other.size_; | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |             other.buckets_ = bucket_pointer(); | 
					
						
							|  |  |  |             other.size_ = 0; | 
					
						
							| 
									
										
										
										
											2012-09-17 18:57:58 +00:00
										 |  |  |             other.max_load_ = 0; | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  |         // Delete/destruct
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ~table() | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |             delete_buckets(); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |         void delete_node(link_pointer prev) | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |             node_pointer n = static_cast<node_pointer>(prev->next_); | 
					
						
							|  |  |  |             prev->next_ = n->next_; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |             boost::unordered::detail::destroy_value_impl(node_alloc(), | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |                 n->value_ptr()); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |             node_allocator_traits::destroy(node_alloc(), | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |                     boost::addressof(*n)); | 
					
						
							|  |  |  |             node_allocator_traits::deallocate(node_alloc(), n, 1); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |             --size_; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |         std::size_t delete_nodes(link_pointer prev, link_pointer end) | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |             BOOST_ASSERT(prev->next_ != end); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |             std::size_t count = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |             do { | 
					
						
							|  |  |  |                 delete_node(prev); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |                 ++count; | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |             } while (prev->next_ != end); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             return count; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         void delete_buckets() | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |             if(buckets_) { | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |                 if (size_) delete_nodes(get_previous_start(), link_pointer()); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:06:00 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 if (bucket::extra_node) { | 
					
						
							|  |  |  |                     node_pointer n = static_cast<node_pointer>( | 
					
						
							|  |  |  |                             get_bucket(bucket_count_)->next_); | 
					
						
							|  |  |  |                     node_allocator_traits::destroy(node_alloc(), | 
					
						
							|  |  |  |                             boost::addressof(*n)); | 
					
						
							|  |  |  |                     node_allocator_traits::deallocate(node_alloc(), n, 1); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:05:15 +00:00
										 |  |  |                 destroy_buckets(); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |                 buckets_ = bucket_pointer(); | 
					
						
							| 
									
										
										
										
											2012-09-17 18:57:58 +00:00
										 |  |  |                 max_load_ = 0; | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |             BOOST_ASSERT(!size_); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         void clear() | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |             if (!size_) return; | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |             delete_nodes(get_previous_start(), link_pointer()); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |             clear_buckets(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |             BOOST_ASSERT(!size_); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         void clear_buckets() | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |             bucket_pointer end = get_bucket(bucket_count_); | 
					
						
							|  |  |  |             for(bucket_pointer it = buckets_; it != end; ++it) | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |             { | 
					
						
							|  |  |  |                 it->next_ = node_pointer(); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:05:15 +00:00
										 |  |  |         void destroy_buckets() | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             bucket_pointer end = get_bucket(bucket_count_ + 1); | 
					
						
							|  |  |  |             for(bucket_pointer it = buckets_; it != end; ++it) | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 bucket_allocator_traits::destroy(bucket_alloc(), | 
					
						
							|  |  |  |                     boost::addressof(*it)); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             bucket_allocator_traits::deallocate(bucket_alloc(), | 
					
						
							|  |  |  |                 buckets_, bucket_count_ + 1); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:06:00 +00:00
										 |  |  |         ////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |         // Fix buckets after delete
 | 
					
						
							|  |  |  |         //
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:06:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |         std::size_t fix_bucket(std::size_t bucket_index, link_pointer prev) | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |             link_pointer end = prev->next_; | 
					
						
							|  |  |  |             std::size_t bucket_index2 = bucket_index; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (end) | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |             { | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:29 +00:00
										 |  |  |                 bucket_index2 = hash_to_bucket( | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |                     static_cast<node_pointer>(end)->hash_); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |                 // If begin and end are in the same bucket, then
 | 
					
						
							|  |  |  |                 // there's nothing to do.
 | 
					
						
							|  |  |  |                 if (bucket_index == bucket_index2) return bucket_index2; | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |                 // Update the bucket containing end.
 | 
					
						
							|  |  |  |                 get_bucket(bucket_index2)->next_ = prev; | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |             // Check if this bucket is now empty.
 | 
					
						
							|  |  |  |             bucket_pointer this_bucket = get_bucket(bucket_index); | 
					
						
							|  |  |  |             if (this_bucket->next_ == prev) | 
					
						
							|  |  |  |                 this_bucket->next_ = link_pointer(); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |             return bucket_index2; | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         // Assignment
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-11 21:19:05 +00:00
										 |  |  |         void assign(table const& x) | 
					
						
							| 
									
										
										
										
											2011-08-14 18:53:29 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:31 +00:00
										 |  |  |             if (this != boost::addressof(x)) | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 assign(x, | 
					
						
							|  |  |  |                     boost::unordered::detail::integral_constant<bool, | 
					
						
							|  |  |  |                         allocator_traits<node_allocator>:: | 
					
						
							|  |  |  |                         propagate_on_container_copy_assignment::value>()); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2011-08-14 18:53:29 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         void assign(table const& x, false_type) | 
					
						
							| 
									
										
										
										
											2011-08-11 21:19:05 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:31 +00:00
										 |  |  |             // Strong exception safety.
 | 
					
						
							| 
									
										
										
										
											2013-05-13 23:12:46 +00:00
										 |  |  |             set_hash_functions new_func_this(*this, x); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:31 +00:00
										 |  |  |             new_func_this.commit(); | 
					
						
							|  |  |  |             mlf_ = x.mlf_; | 
					
						
							| 
									
										
										
										
											2012-09-03 20:05:15 +00:00
										 |  |  |             recalculate_max_load(); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |             if (!size_ && !x.size_) return; | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-17 18:57:58 +00:00
										 |  |  |             if (x.size_ >= max_load_) { | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |                 create_buckets(min_buckets_for_size(x.size_)); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:31 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |             else { | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |                 clear_buckets(); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:31 +00:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             // assign_nodes takes ownership of the container's elements,
 | 
					
						
							|  |  |  |             // assigning to them if possible, and deleting any that are
 | 
					
						
							|  |  |  |             // left over.
 | 
					
						
							|  |  |  |             assign_nodes<table> assign(*this); | 
					
						
							| 
									
										
										
										
											2012-09-17 18:59:03 +00:00
										 |  |  |             table_impl::fill_buckets(x.begin(), *this, assign); | 
					
						
							| 
									
										
										
										
											2011-08-14 18:53:29 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         void assign(table const& x, true_type) | 
					
						
							| 
									
										
										
										
											2011-08-14 18:53:29 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |             if (node_alloc() == x.node_alloc()) { | 
					
						
							|  |  |  |                 allocators_.assign(x.allocators_); | 
					
						
							|  |  |  |                 assign(x, false_type()); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:31 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |             else { | 
					
						
							| 
									
										
										
										
											2013-05-13 23:12:46 +00:00
										 |  |  |                 set_hash_functions new_func_this(*this, x); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 // Delete everything with current allocators before assigning
 | 
					
						
							|  |  |  |                 // the new ones.
 | 
					
						
							| 
									
										
										
										
											2012-09-17 18:58:28 +00:00
										 |  |  |                 delete_buckets(); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |                 allocators_.assign(x.allocators_); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 // Copy over other data, all no throw.
 | 
					
						
							|  |  |  |                 new_func_this.commit(); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |                 mlf_ = x.mlf_; | 
					
						
							|  |  |  |                 bucket_count_ = min_buckets_for_size(x.size_); | 
					
						
							|  |  |  |                 max_load_ = 0; | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 // Finally copy the elements.
 | 
					
						
							|  |  |  |                 if (x.size_) { | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |                     create_buckets(bucket_count_); | 
					
						
							|  |  |  |                     copy_nodes<node_allocator> copy(node_alloc()); | 
					
						
							| 
									
										
										
										
											2012-09-17 18:59:03 +00:00
										 |  |  |                     table_impl::fill_buckets(x.begin(), *this, copy); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:31 +00:00
										 |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2011-08-11 21:19:05 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         void move_assign(table& x) | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:31 +00:00
										 |  |  |             if (this != boost::addressof(x)) | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 move_assign(x, | 
					
						
							|  |  |  |                     boost::unordered::detail::integral_constant<bool, | 
					
						
							|  |  |  |                         allocator_traits<node_allocator>:: | 
					
						
							|  |  |  |                         propagate_on_container_move_assignment::value>()); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2011-08-14 18:53:29 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         void move_assign(table& x, true_type) | 
					
						
							| 
									
										
										
										
											2011-08-14 18:53:29 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-09-17 18:58:28 +00:00
										 |  |  |             delete_buckets(); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |             allocators_.move_assign(x.allocators_); | 
					
						
							| 
									
										
										
										
											2011-08-14 18:53:29 +00:00
										 |  |  |             move_assign_no_alloc(x); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         void move_assign(table& x, false_type) | 
					
						
							| 
									
										
										
										
											2011-08-14 18:53:29 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |             if (node_alloc() == x.node_alloc()) { | 
					
						
							| 
									
										
										
										
											2012-09-17 18:58:28 +00:00
										 |  |  |                 delete_buckets(); | 
					
						
							| 
									
										
										
										
											2011-08-14 18:53:29 +00:00
										 |  |  |                 move_assign_no_alloc(x); | 
					
						
							| 
									
										
										
										
											2011-08-11 21:19:05 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |             else { | 
					
						
							| 
									
										
										
										
											2013-05-13 23:12:46 +00:00
										 |  |  |                 set_hash_functions new_func_this(*this, x); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:31 +00:00
										 |  |  |                 new_func_this.commit(); | 
					
						
							|  |  |  |                 mlf_ = x.mlf_; | 
					
						
							| 
									
										
										
										
											2012-09-03 20:05:15 +00:00
										 |  |  |                 recalculate_max_load(); | 
					
						
							| 
									
										
										
										
											2011-08-14 18:53:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |                 if (!size_ && !x.size_) return; | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-17 18:57:58 +00:00
										 |  |  |                 if (x.size_ >= max_load_) { | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |                     create_buckets(min_buckets_for_size(x.size_)); | 
					
						
							| 
									
										
										
										
											2011-08-14 18:53:03 +00:00
										 |  |  |                 } | 
					
						
							|  |  |  |                 else { | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |                     clear_buckets(); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:31 +00:00
										 |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // move_assign_nodes takes ownership of the container's
 | 
					
						
							|  |  |  |                 // elements, assigning to them if possible, and deleting
 | 
					
						
							|  |  |  |                 // any that are left over.
 | 
					
						
							|  |  |  |                 move_assign_nodes<table> assign(*this); | 
					
						
							| 
									
										
										
										
											2012-09-17 18:59:29 +00:00
										 |  |  |                 node_holder<node_allocator> nodes(x); | 
					
						
							|  |  |  |                 table_impl::fill_buckets(nodes.begin(), *this, assign); | 
					
						
							| 
									
										
										
										
											2011-08-11 21:19:05 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2011-08-14 18:53:29 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |         void move_assign_no_alloc(table& x) | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2013-05-13 23:12:46 +00:00
										 |  |  |             set_hash_functions new_func_this(*this, x); | 
					
						
							| 
									
										
										
										
											2011-08-14 18:53:29 +00:00
										 |  |  |             // No throw from here.
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |             mlf_ = x.mlf_; | 
					
						
							|  |  |  |             max_load_ = x.max_load_; | 
					
						
							| 
									
										
										
										
											2012-09-17 18:57:58 +00:00
										 |  |  |             move_buckets_from(x); | 
					
						
							| 
									
										
										
										
											2011-08-11 21:19:05 +00:00
										 |  |  |             new_func_this.commit(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         // Accessors
 | 
					
						
							| 
									
										
										
										
											2009-08-30 16:42:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         key_type const& get_key(value_type const& x) const | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             return extractor::extract(x); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-18 15:47:59 +00:00
										 |  |  |         std::size_t hash(key_type const& k) const | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-04-08 15:28:26 +00:00
										 |  |  |             return policy::apply_hash(this->hash_function(), k); | 
					
						
							| 
									
										
										
										
											2012-02-18 15:47:59 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         // Find Node
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         template <typename Key, typename Hash, typename Pred> | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |         iterator generic_find_node( | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 Key const& k, | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |                 Hash const& hf, | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 Pred const& eq) const | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             return static_cast<table_impl const*>(this)-> | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |                 find_node_impl(policy::apply_hash(hf, k), k, eq); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |         iterator find_node( | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |                 std::size_t key_hash, | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 key_type const& k) const | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             return static_cast<table_impl const*>(this)-> | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |                 find_node_impl(key_hash, k, this->key_eq()); | 
					
						
							| 
									
										
										
										
											2009-08-30 16:42:28 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |         iterator find_node(key_type const& k) const | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         { | 
					
						
							|  |  |  |             return static_cast<table_impl const*>(this)-> | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |                 find_node_impl(hash(k), k, this->key_eq()); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-08-30 16:42:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |         iterator find_matching_node(iterator n) const | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             // TODO: Does this apply to C++11?
 | 
					
						
							|  |  |  |             //
 | 
					
						
							|  |  |  |             // For some stupid reason, I decided to support equality comparison
 | 
					
						
							|  |  |  |             // when different hash functions are used. So I can't use the hash
 | 
					
						
							|  |  |  |             // value from the node here.
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             return find_node(get_key(*n)); | 
					
						
							| 
									
										
										
										
											2009-08-30 16:42:28 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         // Reserve and rehash
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         void reserve_for_insert(std::size_t); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         void rehash(std::size_t); | 
					
						
							| 
									
										
										
										
											2012-05-07 10:58:32 +00:00
										 |  |  |         void reserve(std::size_t); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |     }; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-30 16:42:28 +00:00
										 |  |  |     ////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  |     // Reserve & Rehash
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // basic exception safety
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     template <typename Types> | 
					
						
							|  |  |  |     inline void table<Types>::reserve_for_insert(std::size_t size) | 
					
						
							| 
									
										
										
										
											2009-08-30 16:42:28 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |         if (!buckets_) { | 
					
						
							|  |  |  |             create_buckets((std::max)(bucket_count_, | 
					
						
							|  |  |  |                 min_buckets_for_size(size))); | 
					
						
							| 
									
										
										
										
											2011-08-14 18:53:29 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2012-05-07 10:58:32 +00:00
										 |  |  |         // According to the standard this should be 'size >= max_load_',
 | 
					
						
							|  |  |  |         // but I think this is better, defect report filed.
 | 
					
						
							|  |  |  |         else if(size > max_load_) { | 
					
						
							| 
									
										
										
										
											2011-08-14 18:53:29 +00:00
										 |  |  |             std::size_t num_buckets | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |                 = min_buckets_for_size((std::max)(size, | 
					
						
							|  |  |  |                     size_ + (size_ >> 1))); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:05:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             if (num_buckets != bucket_count_) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 static_cast<table_impl*>(this)->rehash_impl(num_buckets); | 
					
						
							| 
									
										
										
										
											2009-08-30 16:42:28 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // if hash function throws, basic exception safety
 | 
					
						
							|  |  |  |     // strong otherwise.
 | 
					
						
							| 
									
										
										
										
											2009-10-04 10:37:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     template <typename Types> | 
					
						
							| 
									
										
										
										
											2012-05-07 10:58:32 +00:00
										 |  |  |     inline void table<Types>::rehash(std::size_t min_buckets) | 
					
						
							| 
									
										
										
										
											2009-08-30 16:42:28 +00:00
										 |  |  |     { | 
					
						
							|  |  |  |         using namespace std; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |         if(!size_) { | 
					
						
							| 
									
										
										
										
											2012-09-17 18:58:28 +00:00
										 |  |  |             delete_buckets(); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |             bucket_count_ = policy::new_bucket_count(min_buckets); | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-09-21 21:18:01 +00:00
										 |  |  |         else { | 
					
						
							| 
									
										
										
										
											2012-04-08 15:28:26 +00:00
										 |  |  |             min_buckets = policy::new_bucket_count((std::max)(min_buckets, | 
					
						
							| 
									
										
										
										
											2011-10-07 08:19:53 +00:00
										 |  |  |                 boost::unordered::detail::double_to_size(floor( | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |                     static_cast<double>(size_) / | 
					
						
							| 
									
										
										
										
											2011-08-27 11:53:48 +00:00
										 |  |  |                     static_cast<double>(mlf_))) + 1)); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:05:15 +00:00
										 |  |  |             if(min_buckets != bucket_count_) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 static_cast<table_impl*>(this)->rehash_impl(min_buckets); | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-08-30 16:42:28 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2012-05-07 10:58:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     template <typename Types> | 
					
						
							|  |  |  |     inline void table<Types>::reserve(std::size_t num_elements) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         rehash(static_cast<std::size_t>( | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:35 +00:00
										 |  |  |             std::ceil(static_cast<double>(num_elements) / mlf_))); | 
					
						
							| 
									
										
										
										
											2012-05-07 10:58:32 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  | }}} | 
					
						
							| 
									
										
										
										
											2009-08-30 16:42:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-05 19:02:29 +00:00
										 |  |  | #if defined(BOOST_MSVC)
 | 
					
						
							|  |  |  | #pragma warning(pop)
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-30 16:42:28 +00:00
										 |  |  | #endif
 |