| 
									
										
										
										
											2009-09-20 21:55:15 +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-09-20 21:55:15 +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_UNIQUE_HPP_INCLUDED
 | 
					
						
							|  |  |  | #define BOOST_UNORDERED_DETAIL_UNIQUE_HPP_INCLUDED
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-16 20:13:24 +00:00
										 |  |  | #include <boost/config.hpp>
 | 
					
						
							|  |  |  | #if defined(BOOST_HAS_PRAGMA_ONCE)
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <boost/unordered/detail/table.hpp>
 | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  | #include <boost/unordered/detail/extract_key.hpp>
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | #include <boost/throw_exception.hpp>
 | 
					
						
							|  |  |  | #include <stdexcept>
 | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  | namespace boost { namespace unordered { namespace detail { | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-10 21:37:44 +00:00
										 |  |  |     template <typename A, typename T> struct unique_node; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     template <typename T> struct ptr_node; | 
					
						
							|  |  |  |     template <typename Types> struct table_impl; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-08 12:17:27 +00:00
										 |  |  |     template <typename A, typename T> | 
					
						
							| 
									
										
										
										
											2012-05-10 21:37:44 +00:00
										 |  |  |     struct unique_node : | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         boost::unordered::detail::value_base<T> | 
					
						
							| 
									
										
										
										
											2010-05-06 20:12:40 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-10-08 12:17:27 +00:00
										 |  |  |         typedef typename ::boost::unordered::detail::rebind_wrap< | 
					
						
							| 
									
										
										
										
											2014-07-11 09:13:47 +01:00
										 |  |  |             A, unique_node<A, T> >::type allocator; | 
					
						
							|  |  |  |         typedef typename ::boost::unordered::detail:: | 
					
						
							|  |  |  |             allocator_traits<allocator>::pointer node_pointer; | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:15 +00:00
										 |  |  |         typedef node_pointer link_pointer; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-25 21:51:24 +00:00
										 |  |  |         link_pointer next_; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         std::size_t hash_; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-10 21:37:44 +00:00
										 |  |  |         unique_node() : | 
					
						
							| 
									
										
										
										
											2012-08-25 21:51:24 +00:00
										 |  |  |             next_(), | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             hash_(0) | 
					
						
							|  |  |  |         {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:15 +00:00
										 |  |  |         void init(node_pointer) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         { | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2012-07-08 11:55:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     private: | 
					
						
							|  |  |  |         unique_node& operator=(unique_node const&); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     template <typename T> | 
					
						
							|  |  |  |     struct ptr_node : | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         boost::unordered::detail::ptr_bucket | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2014-07-11 08:40:07 +01:00
										 |  |  |         typedef T value_type; | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         typedef boost::unordered::detail::ptr_bucket bucket_base; | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:15 +00:00
										 |  |  |         typedef ptr_node<T>* node_pointer; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         typedef ptr_bucket* link_pointer; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         std::size_t hash_; | 
					
						
							| 
									
										
										
										
											2014-07-11 08:40:07 +01:00
										 |  |  |         boost::unordered::detail::value_base<T> value_base_; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         ptr_node() : | 
					
						
							|  |  |  |             bucket_base(), | 
					
						
							|  |  |  |             hash_(0) | 
					
						
							|  |  |  |         {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:15 +00:00
										 |  |  |         void init(node_pointer) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         { | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2012-07-08 11:55:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-11 08:40:07 +01:00
										 |  |  |         void* address() { return value_base_.address(); } | 
					
						
							|  |  |  |         value_type& value() { return value_base_.value(); } | 
					
						
							|  |  |  |         value_type* value_ptr() { return value_base_.value_ptr(); } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-08 11:55:57 +00:00
										 |  |  |     private: | 
					
						
							|  |  |  |         ptr_node& operator=(ptr_node const&); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // If the allocator uses raw pointers use ptr_node
 | 
					
						
							|  |  |  |     // Otherwise use node.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-08 12:17:27 +00:00
										 |  |  |     template <typename A, typename T, typename NodePtr, typename BucketPtr> | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     struct pick_node2 | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2012-05-10 21:37:44 +00:00
										 |  |  |         typedef boost::unordered::detail::unique_node<A, T> node; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         typedef typename boost::unordered::detail::allocator_traits< | 
					
						
							|  |  |  |             typename boost::unordered::detail::rebind_wrap<A, node>::type | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         >::pointer node_pointer; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         typedef boost::unordered::detail::bucket<node_pointer> bucket; | 
					
						
							| 
									
										
										
										
											2011-10-08 12:17:27 +00:00
										 |  |  |         typedef node_pointer link_pointer; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     template <typename A, typename T> | 
					
						
							| 
									
										
										
										
											2011-10-08 12:17:27 +00:00
										 |  |  |     struct pick_node2<A, T, | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         boost::unordered::detail::ptr_node<T>*, | 
					
						
							|  |  |  |         boost::unordered::detail::ptr_bucket*> | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         typedef boost::unordered::detail::ptr_node<T> node; | 
					
						
							|  |  |  |         typedef boost::unordered::detail::ptr_bucket bucket; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         typedef bucket* link_pointer; | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     template <typename A, typename T> | 
					
						
							|  |  |  |     struct pick_node | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         typedef boost::unordered::detail::allocator_traits< | 
					
						
							|  |  |  |             typename boost::unordered::detail::rebind_wrap<A, | 
					
						
							|  |  |  |                 boost::unordered::detail::ptr_node<T> >::type | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         > tentative_node_traits; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         typedef boost::unordered::detail::allocator_traits< | 
					
						
							|  |  |  |             typename boost::unordered::detail::rebind_wrap<A, | 
					
						
							|  |  |  |                 boost::unordered::detail::ptr_bucket >::type | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         > tentative_bucket_traits; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         typedef pick_node2<A, T, | 
					
						
							|  |  |  |             typename tentative_node_traits::pointer, | 
					
						
							|  |  |  |             typename tentative_bucket_traits::pointer> pick; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         typedef typename pick::node node; | 
					
						
							|  |  |  |         typedef typename pick::bucket bucket; | 
					
						
							|  |  |  |         typedef typename pick::link_pointer link_pointer; | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-30 08:21:04 +00:00
										 |  |  |     template <typename A, typename T, typename H, typename P> | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     struct set | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-11-30 08:21:04 +00:00
										 |  |  |         typedef boost::unordered::detail::set<A, T, H, P> types; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:55 +00:00
										 |  |  |         typedef A allocator; | 
					
						
							| 
									
										
										
										
											2011-11-30 08:21:04 +00:00
										 |  |  |         typedef T value_type; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         typedef H hasher; | 
					
						
							|  |  |  |         typedef P key_equal; | 
					
						
							| 
									
										
										
										
											2011-11-30 08:21:04 +00:00
										 |  |  |         typedef T key_type; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-30 08:21:04 +00:00
										 |  |  |         typedef boost::unordered::detail::allocator_traits<allocator> traits; | 
					
						
							|  |  |  |         typedef boost::unordered::detail::pick_node<allocator, value_type> pick; | 
					
						
							| 
									
										
										
										
											2011-10-06 21:31:25 +00:00
										 |  |  |         typedef typename pick::node node; | 
					
						
							|  |  |  |         typedef typename pick::bucket bucket; | 
					
						
							|  |  |  |         typedef typename pick::link_pointer link_pointer; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 21:31:25 +00:00
										 |  |  |         typedef boost::unordered::detail::table_impl<types> table; | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         typedef boost::unordered::detail::set_extractor<value_type> extractor; | 
					
						
							| 
									
										
										
										
											2012-02-18 15:47:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-24 16:54:12 +00:00
										 |  |  |         typedef typename boost::unordered::detail::pick_policy<T>::type policy; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-30 08:21:04 +00:00
										 |  |  |     template <typename A, typename K, typename M, typename H, typename P> | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     struct map | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-11-30 08:21:04 +00:00
										 |  |  |         typedef boost::unordered::detail::map<A, K, M, H, P> types; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:55 +00:00
										 |  |  |         typedef A allocator; | 
					
						
							| 
									
										
										
										
											2011-11-30 08:21:04 +00:00
										 |  |  |         typedef std::pair<K const, M> value_type; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         typedef H hasher; | 
					
						
							|  |  |  |         typedef P key_equal; | 
					
						
							|  |  |  |         typedef K key_type; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:55 +00:00
										 |  |  |         typedef boost::unordered::detail::allocator_traits<allocator> | 
					
						
							|  |  |  |             traits; | 
					
						
							| 
									
										
										
										
											2011-11-30 08:21:04 +00:00
										 |  |  |         typedef boost::unordered::detail::pick_node<allocator, value_type> pick; | 
					
						
							| 
									
										
										
										
											2011-10-06 21:31:25 +00:00
										 |  |  |         typedef typename pick::node node; | 
					
						
							|  |  |  |         typedef typename pick::bucket bucket; | 
					
						
							|  |  |  |         typedef typename pick::link_pointer link_pointer; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 21:31:25 +00:00
										 |  |  |         typedef boost::unordered::detail::table_impl<types> table; | 
					
						
							|  |  |  |         typedef boost::unordered::detail::map_extractor<key_type, value_type> | 
					
						
							|  |  |  |             extractor; | 
					
						
							| 
									
										
										
										
											2012-02-18 15:47:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-24 16:54:12 +00:00
										 |  |  |         typedef typename boost::unordered::detail::pick_policy<K>::type policy; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     template <typename Types> | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |     struct table_impl : boost::unordered::detail::table<Types> | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         typedef boost::unordered::detail::table<Types> table; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         typedef typename table::value_type value_type; | 
					
						
							|  |  |  |         typedef typename table::bucket bucket; | 
					
						
							| 
									
										
										
										
											2012-04-08 15:28:26 +00:00
										 |  |  |         typedef typename table::policy policy; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         typedef typename table::node_pointer node_pointer; | 
					
						
							|  |  |  |         typedef typename table::node_allocator node_allocator; | 
					
						
							|  |  |  |         typedef typename table::node_allocator_traits node_allocator_traits; | 
					
						
							|  |  |  |         typedef typename table::bucket_pointer bucket_pointer; | 
					
						
							|  |  |  |         typedef typename table::link_pointer link_pointer; | 
					
						
							|  |  |  |         typedef typename table::hasher hasher; | 
					
						
							|  |  |  |         typedef typename table::key_equal key_equal; | 
					
						
							|  |  |  |         typedef typename table::key_type key_type; | 
					
						
							|  |  |  |         typedef typename table::node_constructor node_constructor; | 
					
						
							| 
									
										
										
										
											2016-08-14 20:55:40 +01:00
										 |  |  |         typedef typename table::node_tmp node_tmp; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         typedef typename table::extractor extractor; | 
					
						
							| 
									
										
										
										
											2011-10-28 17:42:51 +00:00
										 |  |  |         typedef typename table::iterator iterator; | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |         typedef typename table::c_iterator c_iterator; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-28 17:42:51 +00:00
										 |  |  |         typedef std::pair<iterator, bool> emplace_return; | 
					
						
							| 
									
										
										
										
											2010-05-06 20:12:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // Constructors
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         table_impl(std::size_t n, | 
					
						
							|  |  |  |                 hasher const& hf, | 
					
						
							|  |  |  |                 key_equal const& eq, | 
					
						
							|  |  |  |                 node_allocator const& a) | 
					
						
							|  |  |  |           : table(n, hf, eq, a) | 
					
						
							|  |  |  |         {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         table_impl(table_impl const& x) | 
					
						
							|  |  |  |           : table(x, node_allocator_traits:: | 
					
						
							| 
									
										
										
										
											2012-09-03 20:03:55 +00:00
										 |  |  |                 select_on_container_copy_construction(x.node_alloc())) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             this->init(x); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         table_impl(table_impl const& x, | 
					
						
							|  |  |  |                 node_allocator const& a) | 
					
						
							|  |  |  |           : table(x, a) | 
					
						
							| 
									
										
										
										
											2012-09-03 20:03:55 +00:00
										 |  |  |         { | 
					
						
							|  |  |  |             this->init(x); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         table_impl(table_impl& x, | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |                 boost::unordered::detail::move_tag m) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |           : table(x, m) | 
					
						
							|  |  |  |         {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         table_impl(table_impl& x, | 
					
						
							|  |  |  |                 node_allocator const& a, | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |                 boost::unordered::detail::move_tag m) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |           : table(x, a, m) | 
					
						
							| 
									
										
										
										
											2012-09-03 20:03:55 +00:00
										 |  |  |         { | 
					
						
							|  |  |  |             this->move_init(x); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // Accessors
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         template <class Key, class Pred> | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |         iterator find_node_impl( | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |                 std::size_t key_hash, | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 Key const& k, | 
					
						
							|  |  |  |                 Pred const& eq) const | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:29 +00:00
										 |  |  |             std::size_t bucket_index = this->hash_to_bucket(key_hash); | 
					
						
							| 
									
										
										
										
											2012-09-17 18:59:03 +00:00
										 |  |  |             iterator n = this->begin(bucket_index); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             for (;;) | 
					
						
							|  |  |  |             { | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 if (!n.node_) return n; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 std::size_t node_hash = n.node_->hash_; | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |                 if (key_hash == node_hash) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 { | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                     if (eq(k, this->get_key(*n))) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                         return n; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 else | 
					
						
							|  |  |  |                 { | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:29 +00:00
										 |  |  |                     if (this->hash_to_bucket(node_hash) != bucket_index) | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                         return iterator(); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 ++n; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         std::size_t count(key_type const& k) const | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             return this->find_node(k).node_ ? 1 : 0; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         value_type& at(key_type const& k) const | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             if (this->size_) { | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 iterator it = this->find_node(k); | 
					
						
							|  |  |  |                 if (it.node_) return *it; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |             boost::throw_exception( | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 std::out_of_range("Unable to find key in unordered_map.")); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-28 17:42:51 +00:00
										 |  |  |         std::pair<iterator, iterator> | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             equal_range(key_type const& k) const | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             iterator n = this->find_node(k); | 
					
						
							|  |  |  |             iterator n2 = n; | 
					
						
							|  |  |  |             if (n2.node_) ++n2; | 
					
						
							|  |  |  |             return std::make_pair(n, n2); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-06 20:12:40 +00:00
										 |  |  |         // equals
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         bool equals(table_impl const& other) const | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |             if(this->size_ != other.size_) return false; | 
					
						
							|  |  |  |      | 
					
						
							| 
									
										
										
										
											2012-09-17 18:59:03 +00:00
										 |  |  |             for(iterator n1 = this->begin(); n1.node_; ++n1) | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  |             { | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 iterator n2 = other.find_matching_node(n1); | 
					
						
							| 
									
										
										
										
											2011-08-31 22:23:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 if (!n2.node_ || *n1 != *n2) | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  |                     return false; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |      | 
					
						
							|  |  |  |             return true; | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         // Emplace/Insert
 | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |         inline iterator add_node( | 
					
						
							| 
									
										
										
										
											2016-08-14 20:55:40 +01:00
										 |  |  |                 node_tmp& a, | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |                 std::size_t key_hash) | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2016-05-30 11:29:20 +01:00
										 |  |  |             return add_node(a.release(), key_hash); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         inline iterator add_node( | 
					
						
							|  |  |  |                 node_pointer n, | 
					
						
							|  |  |  |                 std::size_t key_hash) | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |             n->hash_ = key_hash; | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:29 +00:00
										 |  |  |             bucket_pointer b = this->get_bucket(this->hash_to_bucket(key_hash)); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |             if (!b->next_) | 
					
						
							|  |  |  |             { | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:45 +00:00
										 |  |  |                 link_pointer start_node = this->get_previous_start(); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |                  | 
					
						
							|  |  |  |                 if (start_node->next_) { | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:29 +00:00
										 |  |  |                     this->get_bucket(this->hash_to_bucket( | 
					
						
							| 
									
										
										
										
											2012-02-18 15:47:59 +00:00
										 |  |  |                         static_cast<node_pointer>(start_node->next_)->hash_) | 
					
						
							|  |  |  |                     )->next_ = n; | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |                 b->next_ = start_node; | 
					
						
							|  |  |  |                 n->next_ = start_node->next_; | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:45 +00:00
										 |  |  |                 start_node->next_ = n; | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 n->next_ = b->next_->next_; | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:45 +00:00
										 |  |  |                 b->next_->next_ = n; | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |             ++this->size_; | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             return iterator(n); | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         value_type& operator[](key_type const& k) | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |             std::size_t key_hash = this->hash(k); | 
					
						
							|  |  |  |             iterator pos = this->find_node(key_hash, k); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             if (pos.node_) return *pos; | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |      | 
					
						
							|  |  |  |             // Create the node before rehashing in case it throws an
 | 
					
						
							|  |  |  |             // exception (need strong safety in such a case).
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             node_constructor a(this->node_alloc()); | 
					
						
							| 
									
										
										
										
											2016-08-14 20:55:40 +01:00
										 |  |  |             a.create_node(); | 
					
						
							|  |  |  |             node_tmp b(boost::unordered::detail::func::construct_pair(a, k), | 
					
						
							|  |  |  |                 a.alloc_); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             this->reserve_for_insert(this->size_ + 1); | 
					
						
							| 
									
										
										
										
											2016-08-14 20:55:40 +01:00
										 |  |  |             return *add_node(b, key_hash); | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-21 01:21:54 +00:00
										 |  |  | #if defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
 | 
					
						
							|  |  |  | #   if defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
 | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         emplace_return emplace(boost::unordered::detail::emplace_args1< | 
					
						
							|  |  |  |                 boost::unordered::detail::please_ignore_this_overload> const&) | 
					
						
							| 
									
										
										
										
											2011-09-02 08:28:52 +00:00
										 |  |  |         { | 
					
						
							|  |  |  |             BOOST_ASSERT(false); | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             return emplace_return(this->begin(), false); | 
					
						
							| 
									
										
										
										
											2011-09-02 08:28:52 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2012-06-28 20:58:56 +00:00
										 |  |  | #   else
 | 
					
						
							|  |  |  |         emplace_return emplace( | 
					
						
							|  |  |  |                 boost::unordered::detail::please_ignore_this_overload const&) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             BOOST_ASSERT(false); | 
					
						
							|  |  |  |             return emplace_return(this->begin(), false); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | #   endif
 | 
					
						
							| 
									
										
										
										
											2011-09-02 08:28:52 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         template <BOOST_UNORDERED_EMPLACE_TEMPLATE> | 
					
						
							|  |  |  |         emplace_return emplace(BOOST_UNORDERED_EMPLACE_ARGS) | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-11-21 01:21:54 +00:00
										 |  |  | #if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             return emplace_impl( | 
					
						
							|  |  |  |                 extractor::extract(BOOST_UNORDERED_EMPLACE_FORWARD), | 
					
						
							|  |  |  |                 BOOST_UNORDERED_EMPLACE_FORWARD); | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |             return emplace_impl( | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 extractor::extract(args.a0, args.a1), | 
					
						
							|  |  |  |                 BOOST_UNORDERED_EMPLACE_FORWARD); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-21 01:21:54 +00:00
										 |  |  | #if defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         template <typename A0> | 
					
						
							|  |  |  |         emplace_return emplace( | 
					
						
							|  |  |  |                 boost::unordered::detail::emplace_args1<A0> const& args) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             return emplace_impl(extractor::extract(args.a0), args); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         template <BOOST_UNORDERED_EMPLACE_TEMPLATE> | 
					
						
							|  |  |  |         emplace_return emplace_impl(key_type const& k, | 
					
						
							|  |  |  |             BOOST_UNORDERED_EMPLACE_ARGS) | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |             std::size_t key_hash = this->hash(k); | 
					
						
							|  |  |  |             iterator pos = this->find_node(key_hash, k); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             if (pos.node_) return emplace_return(pos, false); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  |             // Create the node before rehashing in case it throws an
 | 
					
						
							|  |  |  |             // exception (need strong safety in such a case).
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             node_constructor a(this->node_alloc()); | 
					
						
							| 
									
										
										
										
											2016-08-14 20:55:40 +01:00
										 |  |  |             a.create_node(); | 
					
						
							|  |  |  |             node_tmp b( | 
					
						
							|  |  |  |                 boost::unordered::detail::func::construct_value_generic( | 
					
						
							|  |  |  |                     a, BOOST_UNORDERED_EMPLACE_FORWARD), | 
					
						
							|  |  |  |                 a.alloc_); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  |             // reserve has basic exception safety if the hash function
 | 
					
						
							|  |  |  |             // throws, strong otherwise.
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             this->reserve_for_insert(this->size_ + 1); | 
					
						
							| 
									
										
										
										
											2016-08-14 20:55:40 +01:00
										 |  |  |             return emplace_return(this->add_node(b, key_hash), true); | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-14 20:55:40 +01:00
										 |  |  |         emplace_return emplace_impl_with_node(node_constructor& a, node_tmp& b) | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2016-08-14 20:55:40 +01:00
										 |  |  |             key_type const& k = this->get_key(b.value()); | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |             std::size_t key_hash = this->hash(k); | 
					
						
							|  |  |  |             iterator pos = this->find_node(key_hash, k); | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-14 20:55:40 +01:00
										 |  |  |             if (pos.node_) { | 
					
						
							|  |  |  |                 a.reclaim(b.release()); | 
					
						
							|  |  |  |                 return emplace_return(pos, false); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             // reserve has basic exception safety if the hash function
 | 
					
						
							|  |  |  |             // throws, strong otherwise.
 | 
					
						
							|  |  |  |             this->reserve_for_insert(this->size_ + 1); | 
					
						
							| 
									
										
										
										
											2016-08-14 20:55:40 +01:00
										 |  |  |             return emplace_return(this->add_node(b, key_hash), true); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         template <BOOST_UNORDERED_EMPLACE_TEMPLATE> | 
					
						
							|  |  |  |         emplace_return emplace_impl(no_key, BOOST_UNORDERED_EMPLACE_ARGS) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             // Don't have a key, so construct the node first in order
 | 
					
						
							|  |  |  |             // to be able to lookup the position.
 | 
					
						
							|  |  |  |             node_constructor a(this->node_alloc()); | 
					
						
							| 
									
										
										
										
											2016-08-14 20:55:40 +01:00
										 |  |  |             a.create_node(); | 
					
						
							|  |  |  |             node_tmp b( | 
					
						
							|  |  |  |                 boost::unordered::detail::func::construct_value_generic( | 
					
						
							|  |  |  |                     a, BOOST_UNORDERED_EMPLACE_FORWARD), | 
					
						
							|  |  |  |                 a.alloc_); | 
					
						
							|  |  |  |             return emplace_impl_with_node(a, b); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         ////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  |         // Insert range methods
 | 
					
						
							|  |  |  |         //
 | 
					
						
							|  |  |  |         // if hash function throws, or inserting > 1 element, basic exception
 | 
					
						
							|  |  |  |         // safety strong otherwise
 | 
					
						
							| 
									
										
										
										
											2010-10-21 20:23:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         template <class InputIt> | 
					
						
							|  |  |  |         void insert_range(InputIt i, InputIt j) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             if(i != j) | 
					
						
							|  |  |  |                 return insert_range_impl(extractor::extract(*i), i, j); | 
					
						
							| 
									
										
										
										
											2010-10-21 20:23:37 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         template <class InputIt> | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         void insert_range_impl(key_type const& k, InputIt i, InputIt j) | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             node_constructor a(this->node_alloc()); | 
					
						
							| 
									
										
										
										
											2011-08-14 18:53:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-17 18:57:58 +00:00
										 |  |  |             insert_range_impl2(a, k, i, j); | 
					
						
							| 
									
										
										
										
											2011-08-14 18:53:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-17 18:57:58 +00:00
										 |  |  |             while(++i != j) { | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |                 // Note: can't use get_key as '*i' might not be value_type - it
 | 
					
						
							| 
									
										
										
										
											2011-10-06 21:31:25 +00:00
										 |  |  |                 // could be a pair with first_types as key_type without const or
 | 
					
						
							|  |  |  |                 // a different second_type.
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |                 //
 | 
					
						
							| 
									
										
										
										
											2011-10-06 21:31:25 +00:00
										 |  |  |                 // TODO: Might be worth storing the value_type instead of the
 | 
					
						
							|  |  |  |                 // key here. Could be more efficient if '*i' is expensive. Could
 | 
					
						
							|  |  |  |                 // be less efficient if copying the full value_type is
 | 
					
						
							|  |  |  |                 // expensive.
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |                 insert_range_impl2(a, extractor::extract(*i), i, j); | 
					
						
							| 
									
										
										
										
											2012-09-17 18:57:58 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2011-08-14 18:53:29 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         template <class InputIt> | 
					
						
							|  |  |  |         void insert_range_impl2(node_constructor& a, key_type const& k, | 
					
						
							|  |  |  |             InputIt i, InputIt j) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             // No side effects in this initial code
 | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |             std::size_t key_hash = this->hash(k); | 
					
						
							|  |  |  |             iterator pos = this->find_node(key_hash, k); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             if (!pos.node_) { | 
					
						
							| 
									
										
										
										
											2016-08-14 20:55:40 +01:00
										 |  |  |                 a.create_node(); | 
					
						
							|  |  |  |                 node_tmp b( | 
					
						
							|  |  |  |                     boost::unordered::detail::func::construct_value(a, *i), | 
					
						
							|  |  |  |                     a.alloc_); | 
					
						
							| 
									
										
										
										
											2012-05-07 18:10:04 +00:00
										 |  |  |                 if(this->size_ + 1 > this->max_load_) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                     this->reserve_for_insert(this->size_ + | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |                         boost::unordered::detail::insert_size(i, j)); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |      | 
					
						
							|  |  |  |                 // Nothing after this point can throw.
 | 
					
						
							| 
									
										
										
										
											2016-08-14 20:55:40 +01:00
										 |  |  |                 this->add_node(b, key_hash); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         template <class InputIt> | 
					
						
							|  |  |  |         void insert_range_impl(no_key, InputIt i, InputIt j) | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             node_constructor a(this->node_alloc()); | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |             do { | 
					
						
							| 
									
										
										
										
											2016-08-14 20:55:40 +01:00
										 |  |  |                 if (!a.node_) { a.create_node(); } | 
					
						
							|  |  |  |                 node_tmp b( | 
					
						
							|  |  |  |                     boost::unordered::detail::func::construct_value(a, *i), | 
					
						
							|  |  |  |                     a.alloc_); | 
					
						
							|  |  |  |                 emplace_impl_with_node(a, b); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |             } while(++i != j); | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 21:31:25 +00:00
										 |  |  |         ////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         // Erase
 | 
					
						
							|  |  |  |         //
 | 
					
						
							|  |  |  |         // no throw
 | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         std::size_t erase_key(key_type const& k) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             if(!this->size_) return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |             std::size_t key_hash = this->hash(k); | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:29 +00:00
										 |  |  |             std::size_t bucket_index = this->hash_to_bucket(key_hash); | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |             link_pointer prev = this->get_previous_start(bucket_index); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             if (!prev) return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             for (;;) | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 if (!prev->next_) return 0; | 
					
						
							| 
									
										
										
										
											2011-10-06 21:31:25 +00:00
										 |  |  |                 std::size_t node_hash = | 
					
						
							|  |  |  |                     static_cast<node_pointer>(prev->next_)->hash_; | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:29 +00:00
										 |  |  |                 if (this->hash_to_bucket(node_hash) != bucket_index) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                     return 0; | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |                 if (node_hash == key_hash && | 
					
						
							| 
									
										
										
										
											2011-10-06 21:31:25 +00:00
										 |  |  |                         this->key_eq()(k, this->get_key( | 
					
						
							|  |  |  |                         static_cast<node_pointer>(prev->next_)->value()))) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                     break; | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:45 +00:00
										 |  |  |                 prev = prev->next_; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |             link_pointer end = static_cast<node_pointer>(prev->next_)->next_; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-26 22:57:14 +00:00
										 |  |  |             std::size_t deleted_count = this->delete_nodes(prev, end); | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |             this->fix_bucket(bucket_index, prev); | 
					
						
							| 
									
										
										
										
											2014-01-26 22:57:14 +00:00
										 |  |  |             return deleted_count; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |         iterator erase(c_iterator r) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             BOOST_ASSERT(r.node_); | 
					
						
							|  |  |  |             iterator next(r.node_); | 
					
						
							|  |  |  |             ++next; | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |             erase_nodes(r.node_, next.node_); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             return next; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |         iterator erase_range(c_iterator r1, c_iterator r2) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             if (r1 == r2) return iterator(r2.node_); | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |             erase_nodes(r1.node_, r2.node_); | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             return iterator(r2.node_); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-26 22:57:14 +00:00
										 |  |  |         void erase_nodes(node_pointer i, node_pointer j) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2014-01-26 22:57:14 +00:00
										 |  |  |             std::size_t bucket_index = this->hash_to_bucket(i->hash_); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-26 22:57:14 +00:00
										 |  |  |             // Find the node before i.
 | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |             link_pointer prev = this->get_previous_start(bucket_index); | 
					
						
							| 
									
										
										
										
											2014-01-26 22:57:14 +00:00
										 |  |  |             while(prev->next_ != i) prev = prev->next_; | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             // Delete the nodes.
 | 
					
						
							|  |  |  |             do { | 
					
						
							|  |  |  |                 this->delete_node(prev); | 
					
						
							|  |  |  |                 bucket_index = this->fix_bucket(bucket_index, prev); | 
					
						
							| 
									
										
										
										
											2014-01-26 22:57:14 +00:00
										 |  |  |             } while (prev->next_ != j); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 21:31:25 +00:00
										 |  |  |         ////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:10 +00:00
										 |  |  |         // fill_buckets
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-14 20:55:40 +01:00
										 |  |  |         void copy_buckets(table const& src) { | 
					
						
							|  |  |  |             node_constructor constructor(this->node_alloc()); | 
					
						
							|  |  |  |             this->create_buckets(this->bucket_count_); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             for(iterator n = src.begin(); n.node_; ++n) { | 
					
						
							| 
									
										
										
										
											2016-08-14 20:55:40 +01:00
										 |  |  |                 constructor.create_node(); | 
					
						
							|  |  |  |                 this->add_node( | 
					
						
							|  |  |  |                     boost::unordered::detail::func::construct_value( | 
					
						
							|  |  |  |                         constructor, *n), n.node_->hash_); | 
					
						
							| 
									
										
										
										
											2016-08-14 20:55:40 +01:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         void move_buckets(table& src) { | 
					
						
							|  |  |  |             node_constructor constructor(this->node_alloc()); | 
					
						
							|  |  |  |             this->create_buckets(this->bucket_count_); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             for(iterator n = src.begin(); n.node_; ++n) { | 
					
						
							| 
									
										
										
										
											2016-08-14 20:55:40 +01:00
										 |  |  |                 constructor.create_node(); | 
					
						
							|  |  |  |                 this->add_node( | 
					
						
							|  |  |  |                     boost::unordered::detail::func::construct_value( | 
					
						
							|  |  |  |                         constructor, boost::move(*n)), n.node_->hash_); | 
					
						
							| 
									
										
										
										
											2016-08-14 20:55:40 +01:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         void assign_buckets(table const& src) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             node_holder<node_allocator> holder(*this); | 
					
						
							|  |  |  |             for(iterator n = src.begin(); n.node_; ++n) { | 
					
						
							|  |  |  |                 this->add_node(holder.copy_of(*n), n.node_->hash_); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         void move_assign_buckets(table& src) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2016-08-14 20:55:40 +01:00
										 |  |  |             node_holder<node_allocator> holder(*this); | 
					
						
							|  |  |  |             for(iterator n = src.begin(); n.node_; ++n) { | 
					
						
							|  |  |  |                 this->add_node(holder.move_copy_of(*n), n.node_->hash_); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // strong otherwise exception safety
 | 
					
						
							|  |  |  |         void rehash_impl(std::size_t num_buckets) | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-09-12 21:09:39 +00:00
										 |  |  |             BOOST_ASSERT(this->buckets_); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:01:50 +00:00
										 |  |  |             this->create_buckets(num_buckets); | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:45 +00:00
										 |  |  |             link_pointer prev = this->get_previous_start(); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             while (prev->next_) | 
					
						
							| 
									
										
										
										
											2012-09-03 20:01:50 +00:00
										 |  |  |                 prev = place_in_bucket(*this, prev); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Iterate through the nodes placing them in the correct buckets.
 | 
					
						
							|  |  |  |         // pre: prev->next_ is not null.
 | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:45 +00:00
										 |  |  |         static link_pointer place_in_bucket(table& dst, link_pointer prev) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         { | 
					
						
							|  |  |  |             node_pointer n = static_cast<node_pointer>(prev->next_); | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:29 +00:00
										 |  |  |             bucket_pointer b = dst.get_bucket(dst.hash_to_bucket(n->hash_)); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             if (!b->next_) { | 
					
						
							|  |  |  |                 b->next_ = prev; | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:45 +00:00
										 |  |  |                 return n; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |             else { | 
					
						
							|  |  |  |                 prev->next_ = n->next_; | 
					
						
							|  |  |  |                 n->next_ = b->next_->next_; | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:45 +00:00
										 |  |  |                 b->next_->next_ = n; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 return prev; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |     }; | 
					
						
							|  |  |  | }}} | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif
 |