| 
									
										
										
										
											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_EQUIVALENT_HPP_INCLUDED
 | 
					
						
							|  |  |  | #define BOOST_UNORDERED_DETAIL_EQUIVALENT_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-04-16 18:47:33 +00:00
										 |  |  | namespace boost { namespace unordered { namespace detail { | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-08 12:17:27 +00:00
										 |  |  |     template <typename A, typename T> struct grouped_node; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     template <typename T> struct grouped_ptr_node; | 
					
						
							|  |  |  |     template <typename Types> struct grouped_table_impl; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-08 12:17:27 +00:00
										 |  |  |     template <typename A, typename T> | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     struct grouped_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< | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:15 +00:00
										 |  |  |             A, grouped_node<A, T> >::type allocator; | 
					
						
							|  |  |  |         typedef typename ::boost::unordered::detail:: | 
					
						
							|  |  |  |             allocator_traits<allocator>::pointer node_pointer; | 
					
						
							|  |  |  |         typedef node_pointer link_pointer; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-25 21:51:24 +00:00
										 |  |  |         link_pointer next_; | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:15 +00:00
										 |  |  |         node_pointer group_prev_; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         std::size_t hash_; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         grouped_node() : | 
					
						
							| 
									
										
										
										
											2012-08-25 21:51:24 +00:00
										 |  |  |             next_(), | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             group_prev_(), | 
					
						
							|  |  |  |             hash_(0) | 
					
						
							|  |  |  |         {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:15 +00:00
										 |  |  |         void init(node_pointer self) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         { | 
					
						
							|  |  |  |             group_prev_ = self; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2012-07-08 11:55:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     private: | 
					
						
							|  |  |  |         grouped_node& operator=(grouped_node const&); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     template <typename T> | 
					
						
							|  |  |  |     struct grouped_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 grouped_ptr_node<T>* node_pointer; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         typedef ptr_bucket* link_pointer; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:15 +00:00
										 |  |  |         node_pointer group_prev_; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         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
										 |  |  | 
 | 
					
						
							|  |  |  |         grouped_ptr_node() : | 
					
						
							|  |  |  |             bucket_base(), | 
					
						
							|  |  |  |             group_prev_(0), | 
					
						
							|  |  |  |             hash_(0) | 
					
						
							|  |  |  |         {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:15 +00:00
										 |  |  |         void init(node_pointer self) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         { | 
					
						
							|  |  |  |             group_prev_ = self; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											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: | 
					
						
							|  |  |  |         grouped_ptr_node& operator=(grouped_ptr_node const&); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // If the allocator uses raw pointers use grouped_ptr_node
 | 
					
						
							|  |  |  |     // Otherwise use grouped_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_grouped_node2 | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-10-08 12:17:27 +00:00
										 |  |  |         typedef boost::unordered::detail::grouped_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_grouped_node2<A, T, | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         boost::unordered::detail::grouped_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::grouped_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_grouped_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::grouped_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_grouped_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 multiset | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-11-30 08:21:04 +00:00
										 |  |  |         typedef boost::unordered::detail::multiset<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; | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:55 +00:00
										 |  |  |         typedef boost::unordered::detail::pick_grouped_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::grouped_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 multimap | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-11-30 08:21:04 +00:00
										 |  |  |         typedef boost::unordered::detail::multimap<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; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-30 08:21:04 +00:00
										 |  |  |         typedef boost::unordered::detail::allocator_traits<allocator> traits; | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:55 +00:00
										 |  |  |         typedef boost::unordered::detail::pick_grouped_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::grouped_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 grouped_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; | 
					
						
							|  |  |  |         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; | 
					
						
							| 
									
										
										
										
											2010-05-06 20:12:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // Constructors
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         grouped_table_impl(std::size_t n, | 
					
						
							|  |  |  |                 hasher const& hf, | 
					
						
							|  |  |  |                 key_equal const& eq, | 
					
						
							|  |  |  |                 node_allocator const& a) | 
					
						
							|  |  |  |           : table(n, hf, eq, a) | 
					
						
							|  |  |  |         {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         grouped_table_impl(grouped_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
										 |  |  | 
 | 
					
						
							|  |  |  |         grouped_table_impl(grouped_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
										 |  |  | 
 | 
					
						
							|  |  |  |         grouped_table_impl(grouped_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) | 
					
						
							|  |  |  |         {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         grouped_table_impl(grouped_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-11-05 18:33:15 +00:00
										 |  |  |                 n = iterator(n.node_->group_prev_->next_); | 
					
						
							| 
									
										
										
										
											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
										 |  |  |             iterator n = this->find_node(k); | 
					
						
							|  |  |  |             if (!n.node_) return 0; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |             std::size_t x = 0; | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             node_pointer it = n.node_; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             do { | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:15 +00:00
										 |  |  |                 it = it->group_prev_; | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |                 ++x; | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             } while(it != n.node_); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |             return x; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							| 
									
										
										
										
											2011-10-28 17:42:51 +00:00
										 |  |  |             return std::make_pair( | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:15 +00:00
										 |  |  |                 n, n.node_ ? iterator(n.node_->group_prev_->next_) : n); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-05-06 20:12:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         // Equality
 | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         bool equals(grouped_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_;) | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  |             { | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 iterator n2 = other.find_matching_node(n1); | 
					
						
							|  |  |  |                 if (!n2.node_) return false; | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:15 +00:00
										 |  |  |                 iterator end1(n1.node_->group_prev_->next_); | 
					
						
							|  |  |  |                 iterator end2(n2.node_->group_prev_->next_); | 
					
						
							| 
									
										
										
										
											2011-04-17 16:23:25 +00:00
										 |  |  |                 if (!group_equals(n1, end1, n2, end2)) return false; | 
					
						
							|  |  |  |                 n1 = end1;     | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |      | 
					
						
							|  |  |  |             return true; | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-08-31 22:23:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |         static bool group_equals(iterator n1, iterator end1, | 
					
						
							|  |  |  |                 iterator n2, iterator end2) | 
					
						
							| 
									
										
										
										
											2011-04-17 16:23:25 +00:00
										 |  |  |         { | 
					
						
							|  |  |  |             for(;;) | 
					
						
							|  |  |  |             { | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 if (*n1 != *n2) break; | 
					
						
							| 
									
										
										
										
											2011-04-17 16:23:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 ++n1; | 
					
						
							|  |  |  |                 ++n2; | 
					
						
							| 
									
										
										
										
											2011-04-17 16:23:25 +00:00
										 |  |  |              | 
					
						
							|  |  |  |                 if (n1 == end1) return n2 == end2; | 
					
						
							|  |  |  |                 if (n2 == end2) return false; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |              | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             for(iterator n1a = n1, n2a = n2;;) | 
					
						
							| 
									
										
										
										
											2011-04-17 16:23:25 +00:00
										 |  |  |             { | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 ++n1a; | 
					
						
							|  |  |  |                 ++n2a; | 
					
						
							| 
									
										
										
										
											2011-04-17 16:23:25 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 if (n1a == end1) | 
					
						
							|  |  |  |                 { | 
					
						
							|  |  |  |                     if (n2a == end2) break; | 
					
						
							|  |  |  |                     else return false; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-17 16:23:25 +00:00
										 |  |  |                 if (n2a == end2) return false; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             iterator start = n1; | 
					
						
							|  |  |  |             for(;n1 != end1; ++n1) | 
					
						
							| 
									
										
										
										
											2011-04-17 16:23:25 +00:00
										 |  |  |             { | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 value_type const& v = *n1; | 
					
						
							| 
									
										
										
										
											2011-04-17 16:23:25 +00:00
										 |  |  |                 if (find(start, n1, v)) continue; | 
					
						
							| 
									
										
										
										
											2011-04-17 21:27:38 +00:00
										 |  |  |                 std::size_t matches = count_equal(n2, end2, v); | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 if (!matches) return false; | 
					
						
							|  |  |  |                 iterator next = n1; | 
					
						
							|  |  |  |                 ++next; | 
					
						
							|  |  |  |                 if (matches != 1 + count_equal(next, end1, v)) return false; | 
					
						
							| 
									
										
										
										
											2011-04-17 16:23:25 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |              | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-08-31 22:23:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |         static bool find(iterator n, iterator end, value_type const& v) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             for(;n != end; ++n) | 
					
						
							|  |  |  |                 if (*n == v) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                     return true; | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |         static std::size_t count_equal(iterator n, iterator end, | 
					
						
							| 
									
										
										
										
											2011-10-06 21:31:25 +00:00
										 |  |  |             value_type const& v) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         { | 
					
						
							|  |  |  |             std::size_t count = 0; | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             for(;n != end; ++n) | 
					
						
							|  |  |  |                 if (*n == v) ++count; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             return count; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Emplace/Insert
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         static inline void add_after_node( | 
					
						
							|  |  |  |                 node_pointer n, | 
					
						
							|  |  |  |                 node_pointer pos) | 
					
						
							| 
									
										
										
										
											2011-04-17 16:23:25 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:15 +00:00
										 |  |  |             n->next_ = pos->group_prev_->next_; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             n->group_prev_ = pos->group_prev_; | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:15 +00:00
										 |  |  |             pos->group_prev_->next_ = n; | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:45 +00:00
										 |  |  |             pos->group_prev_ = n; | 
					
						
							| 
									
										
										
										
											2011-04-17 16:23:25 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |         inline iterator add_node( | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |                 node_constructor& a, | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |                 std::size_t key_hash, | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 iterator pos) | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             node_pointer n = a.release(); | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |             n->hash_ = key_hash; | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             if (pos.node_) { | 
					
						
							|  |  |  |                 this->add_after_node(n, pos.node_); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |                 if (n->next_) { | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:29 +00:00
										 |  |  |                     std::size_t next_bucket = this->hash_to_bucket( | 
					
						
							| 
									
										
										
										
											2012-02-18 15:47:59 +00:00
										 |  |  |                         static_cast<node_pointer>(n->next_)->hash_); | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:29 +00:00
										 |  |  |                     if (next_bucket != this->hash_to_bucket(key_hash)) { | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                         this->get_bucket(next_bucket)->next_ = n; | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             else { | 
					
						
							| 
									
										
										
										
											2012-04-08 15:28:26 +00:00
										 |  |  |                 bucket_pointer b = this->get_bucket( | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:29 +00:00
										 |  |  |                     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
										 |  |  |                      | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                     if (start_node->next_) { | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:29 +00:00
										 |  |  |                         this->get_bucket(this->hash_to_bucket( | 
					
						
							| 
									
										
										
										
											2011-10-06 21:31:25 +00:00
										 |  |  |                             static_cast<node_pointer>(start_node->next_)->hash_ | 
					
						
							| 
									
										
										
										
											2012-02-18 15:47:59 +00:00
										 |  |  |                         ))->next_ = n; | 
					
						
							| 
									
										
										
										
											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
										 |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             ++this->size_; | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             return iterator(n); | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |         iterator emplace_impl(node_constructor& a) | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         { | 
					
						
							|  |  |  |             key_type const& k = this->get_key(a.value()); | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |             std::size_t key_hash = this->hash(k); | 
					
						
							|  |  |  |             iterator position = this->find_node(key_hash, k); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +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); | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |             return this->add_node(a, key_hash, position); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         void emplace_impl_no_rehash(node_constructor& a) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             key_type const& k = this->get_key(a.value()); | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |             std::size_t key_hash = this->hash(k); | 
					
						
							|  |  |  |             this->add_node(a, key_hash, this->find_node(key_hash, k)); | 
					
						
							| 
									
										
										
										
											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-11-30 08:21:58 +00:00
										 |  |  |         iterator emplace(boost::unordered::detail::emplace_args1< | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |                 boost::unordered::detail::please_ignore_this_overload> const&) | 
					
						
							| 
									
										
										
										
											2011-09-02 08:28:52 +00:00
										 |  |  |         { | 
					
						
							|  |  |  |             BOOST_ASSERT(false); | 
					
						
							| 
									
										
										
										
											2011-11-30 08:21:58 +00:00
										 |  |  |             return iterator(); | 
					
						
							| 
									
										
										
										
											2011-09-02 08:28:52 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2012-06-28 20:58:56 +00:00
										 |  |  | #   else
 | 
					
						
							|  |  |  |         iterator emplace( | 
					
						
							|  |  |  |                 boost::unordered::detail::please_ignore_this_overload const&) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             BOOST_ASSERT(false); | 
					
						
							|  |  |  |             return iterator(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | #   endif
 | 
					
						
							| 
									
										
										
										
											2011-09-02 08:28:52 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         template <BOOST_UNORDERED_EMPLACE_TEMPLATE> | 
					
						
							| 
									
										
										
										
											2011-11-30 08:21:58 +00:00
										 |  |  |         iterator emplace(BOOST_UNORDERED_EMPLACE_ARGS) | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             node_constructor a(this->node_alloc()); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:53 +00:00
										 |  |  |             a.construct_with_value(BOOST_UNORDERED_EMPLACE_FORWARD); | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-30 08:21:58 +00:00
										 |  |  |             return iterator(emplace_impl(a)); | 
					
						
							| 
									
										
										
										
											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
 | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         // if hash function throws, or inserting > 1 element, basic exception
 | 
					
						
							|  |  |  |         // safety. Strong otherwise
 | 
					
						
							|  |  |  |         template <class I> | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         typename boost::unordered::detail::enable_if_forward<I, void>::type | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             insert_range(I i, I j) | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         { | 
					
						
							|  |  |  |             if(i == j) return; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |             std::size_t distance = boost::unordered::detail::distance(i, j); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |             if(distance == 1) { | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 node_constructor a(this->node_alloc()); | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:53 +00:00
										 |  |  |                 a.construct_with_value2(*i); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 emplace_impl(a); | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |             else { | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |                 // Only require basic exception safety here
 | 
					
						
							|  |  |  |                 this->reserve_for_insert(this->size_ + distance); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 node_constructor a(this->node_alloc()); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |                 for (; i != j; ++i) { | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:53 +00:00
										 |  |  |                     a.construct_with_value2(*i); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |                     emplace_impl_no_rehash(a); | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											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 I> | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         typename boost::unordered::detail::disable_if_forward<I, void>::type | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             insert_range(I i, I j) | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             node_constructor a(this->node_alloc()); | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  |             for (; i != j; ++i) { | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:53 +00:00
										 |  |  |                 a.construct_with_value2(*i); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |                 emplace_impl(a); | 
					
						
							| 
									
										
										
										
											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
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         std::size_t erase_key(key_type const& k) | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             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 = static_cast<node_pointer>(prev->next_)->group_prev_; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |             node_pointer first_node = static_cast<node_pointer>(prev->next_); | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:15 +00:00
										 |  |  |             link_pointer end = first_node->group_prev_->next_; | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +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
										 |  |  |         link_pointer 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_); | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-26 22:57:14 +00:00
										 |  |  |             // Split the groups containing 'i' and 'j'.
 | 
					
						
							|  |  |  |             // And get the pointer to the node before i while
 | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |             // we're at it.
 | 
					
						
							| 
									
										
										
										
											2014-01-26 22:57:14 +00:00
										 |  |  |             link_pointer prev = split_groups(i, j); | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-26 22:57:14 +00:00
										 |  |  |             // If we don't have a 'prev' it means that i is at the
 | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |             // beginning of a block, so search through the blocks in the
 | 
					
						
							|  |  |  |             // same bucket.
 | 
					
						
							|  |  |  |             if (!prev) { | 
					
						
							|  |  |  |                 prev = this->get_previous_start(bucket_index); | 
					
						
							| 
									
										
										
										
											2014-01-26 22:57:14 +00:00
										 |  |  |                 while (prev->next_ != i) | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:45 +00:00
										 |  |  |                     prev = static_cast<node_pointer>(prev->next_)->group_prev_; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |             // Delete the nodes.
 | 
					
						
							|  |  |  |             do { | 
					
						
							|  |  |  |                 link_pointer group_end = | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:15 +00:00
										 |  |  |                     static_cast<node_pointer>(prev->next_)->group_prev_->next_; | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |                 this->delete_nodes(prev, group_end); | 
					
						
							|  |  |  |                 bucket_index = this->fix_bucket(bucket_index, prev); | 
					
						
							| 
									
										
										
										
											2014-01-26 22:57:14 +00:00
										 |  |  |             } while(prev->next_ != j); | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             return prev; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-26 22:57:14 +00:00
										 |  |  |         static link_pointer split_groups(node_pointer i, node_pointer j) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2014-01-26 22:57:14 +00:00
										 |  |  |             node_pointer prev = i->group_prev_; | 
					
						
							|  |  |  |             if (prev->next_ != i) prev = node_pointer(); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-26 22:57:14 +00:00
										 |  |  |             if (j) { | 
					
						
							|  |  |  |                 node_pointer first = j; | 
					
						
							|  |  |  |                 while (first != i && first->group_prev_->next_ == first) { | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:15 +00:00
										 |  |  |                     first = first->group_prev_; | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-26 22:57:14 +00:00
										 |  |  |                 boost::swap(first->group_prev_, j->group_prev_); | 
					
						
							|  |  |  |                 if (first == i) return prev; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:59 +00:00
										 |  |  |             if (prev) { | 
					
						
							|  |  |  |                 node_pointer first = prev; | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:15 +00:00
										 |  |  |                 while (first->group_prev_->next_ == first) { | 
					
						
							|  |  |  |                     first = first->group_prev_; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2014-01-26 22:57:14 +00:00
										 |  |  |                 boost::swap(first->group_prev_, i->group_prev_); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             return prev; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:10 +00:00
										 |  |  |         template <class NodeCreator> | 
					
						
							| 
									
										
										
										
											2012-09-03 20:04:15 +00:00
										 |  |  |         static void fill_buckets(iterator n, table& dst, | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:10 +00:00
										 |  |  |             NodeCreator& creator) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:45 +00:00
										 |  |  |             link_pointer prev = dst.get_previous_start(); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             while (n.node_) { | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |                 std::size_t key_hash = n.node_->hash_; | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:15 +00:00
										 |  |  |                 iterator group_end(n.node_->group_prev_->next_); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:10 +00:00
										 |  |  |                 node_pointer first_node = creator.create(*n); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 node_pointer end = first_node; | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |                 first_node->hash_ = key_hash; | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:45 +00:00
										 |  |  |                 prev->next_ = first_node; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 ++dst.size_; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 for (++n; n != group_end; ++n) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 { | 
					
						
							| 
									
										
										
										
											2012-09-03 20:02:10 +00:00
										 |  |  |                     end = creator.create(*n); | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |                     end->hash_ = key_hash; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                     add_after_node(end, first_node); | 
					
						
							|  |  |  |                     ++dst.size_; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 prev = place_in_bucket(dst, prev, end); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // 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, | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:15 +00:00
										 |  |  |                     static_cast<node_pointer>(prev->next_)->group_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, node_pointer end) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:29 +00:00
										 |  |  |             bucket_pointer b = dst.get_bucket(dst.hash_to_bucket(end->hash_)); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             if (!b->next_) { | 
					
						
							| 
									
										
										
										
											2012-11-05 18:33:15 +00:00
										 |  |  |                 b->next_ = prev; | 
					
						
							| 
									
										
										
										
											2012-11-05 18:32:45 +00:00
										 |  |  |                 return end; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |             else { | 
					
						
							|  |  |  |                 link_pointer next = end->next_; | 
					
						
							|  |  |  |                 end->next_ = b->next_->next_; | 
					
						
							|  |  |  |                 b->next_->next_ = prev->next_; | 
					
						
							|  |  |  |                 prev->next_ = next; | 
					
						
							|  |  |  |                 return prev; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |     }; | 
					
						
							|  |  |  | }}} | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif
 |