Replace several uses of iterators with node pointers.

Which is to some extent going in circles, as this is how the containers
were originally implemented. But I think this is cleaner. It also fixes
a minor problem where the internal and external iterator types are
different for some containers, as the external iterators are all const.
This commit is contained in:
Daniel James
2016-10-22 10:04:36 +01:00
parent 6071f9a08b
commit 9772c01161
6 changed files with 196 additions and 183 deletions

View File

@ -61,7 +61,6 @@ namespace boost { namespace unordered { namespace iterator_detail {
private: private:
#endif #endif
typedef typename Node::node_pointer node_pointer; typedef typename Node::node_pointer node_pointer;
typedef boost::unordered::iterator_detail::iterator<Node> n_iterator;
node_pointer ptr_; node_pointer ptr_;
std::size_t bucket_; std::size_t bucket_;
std::size_t bucket_count_; std::size_t bucket_count_;
@ -72,8 +71,8 @@ namespace boost { namespace unordered { namespace iterator_detail {
l_iterator() BOOST_NOEXCEPT : ptr_() {} l_iterator() BOOST_NOEXCEPT : ptr_() {}
l_iterator(n_iterator x, std::size_t b, std::size_t c) BOOST_NOEXCEPT l_iterator(node_pointer n, std::size_t b, std::size_t c) BOOST_NOEXCEPT
: ptr_(x.node_), bucket_(b), bucket_count_(c) {} : ptr_(n), bucket_(b), bucket_count_(c) {}
value_type& operator*() const { value_type& operator*() const {
return ptr_->value(); return ptr_->value();
@ -120,7 +119,6 @@ namespace boost { namespace unordered { namespace iterator_detail {
private: private:
typedef typename Node::node_pointer node_pointer; typedef typename Node::node_pointer node_pointer;
typedef boost::unordered::iterator_detail::iterator<Node> n_iterator;
node_pointer ptr_; node_pointer ptr_;
std::size_t bucket_; std::size_t bucket_;
std::size_t bucket_count_; std::size_t bucket_count_;
@ -131,8 +129,8 @@ namespace boost { namespace unordered { namespace iterator_detail {
cl_iterator() BOOST_NOEXCEPT : ptr_() {} cl_iterator() BOOST_NOEXCEPT : ptr_() {}
cl_iterator(n_iterator x, std::size_t b, std::size_t c) BOOST_NOEXCEPT : cl_iterator(node_pointer n, std::size_t b, std::size_t c) BOOST_NOEXCEPT :
ptr_(x.node_), bucket_(b), bucket_count_(c) {} ptr_(n), bucket_(b), bucket_count_(c) {}
cl_iterator(boost::unordered::iterator_detail::l_iterator< cl_iterator(boost::unordered::iterator_detail::l_iterator<
Node, Policy> const& x) BOOST_NOEXCEPT : Node, Policy> const& x) BOOST_NOEXCEPT :
@ -186,10 +184,6 @@ namespace boost { namespace unordered { namespace iterator_detail {
#if !defined(BOOST_NO_MEMBER_TEMPLATE_FRIENDS) #if !defined(BOOST_NO_MEMBER_TEMPLATE_FRIENDS)
template <typename> template <typename>
friend struct boost::unordered::iterator_detail::c_iterator; friend struct boost::unordered::iterator_detail::c_iterator;
template <typename, typename>
friend struct boost::unordered::iterator_detail::l_iterator;
template <typename, typename>
friend struct boost::unordered::iterator_detail::cl_iterator;
template <typename> template <typename>
friend struct boost::unordered::detail::table; friend struct boost::unordered::detail::table;
template <typename> template <typename>

View File

@ -188,48 +188,58 @@ namespace boost { namespace unordered { namespace detail {
this->move_init(x); this->move_init(x);
} }
// Node functions.
static inline node_pointer next_node(link_pointer n) {
return static_cast<node_pointer>(n->next_);
}
static inline node_pointer next_group(node_pointer n) {
return static_cast<node_pointer>(n->group_prev_->next_);
}
// Accessors // Accessors
template <class Key, class Pred> template <class Key, class Pred>
iterator find_node_impl( node_pointer find_node_impl(
std::size_t key_hash, std::size_t key_hash,
Key const& k, Key const& k,
Pred const& eq) const Pred const& eq) const
{ {
std::size_t bucket_index = this->hash_to_bucket(key_hash); std::size_t bucket_index = this->hash_to_bucket(key_hash);
iterator n = this->begin(bucket_index); node_pointer n = this->begin(bucket_index);
for (;;) for (;;)
{ {
if (!n.node_) return n; if (!n) return n;
std::size_t node_hash = n.node_->hash_; std::size_t node_hash = n->hash_;
if (key_hash == node_hash) if (key_hash == node_hash)
{ {
if (eq(k, this->get_key(*n))) if (eq(k, this->get_key(n->value())))
return n; return n;
} }
else else
{ {
if (this->hash_to_bucket(node_hash) != bucket_index) if (this->hash_to_bucket(node_hash) != bucket_index)
return iterator(); return node_pointer();
} }
n = iterator(n.node_->group_prev_->next_); n = next_group(n);
} }
} }
std::size_t count(key_type const& k) const std::size_t count(key_type const& k) const
{ {
iterator n = this->find_node(k); node_pointer n = this->find_node(k);
if (!n.node_) return 0; if (!n) return 0;
std::size_t x = 0; std::size_t x = 0;
node_pointer it = n.node_; node_pointer it = n;
do { do {
it = it->group_prev_; it = it->group_prev_;
++x; ++x;
} while(it != n.node_); } while(it != n);
return x; return x;
} }
@ -237,9 +247,8 @@ namespace boost { namespace unordered { namespace detail {
std::pair<iterator, iterator> std::pair<iterator, iterator>
equal_range(key_type const& k) const equal_range(key_type const& k) const
{ {
iterator n = this->find_node(k); node_pointer n = this->find_node(k);
return std::make_pair( return std::make_pair(iterator(n), iterator(n ? next_group(n) : n));
n, n.node_ ? iterator(n.node_->group_prev_->next_) : n);
} }
// Equality // Equality
@ -248,12 +257,12 @@ namespace boost { namespace unordered { namespace detail {
{ {
if(this->size_ != other.size_) return false; if(this->size_ != other.size_) return false;
for(iterator n1 = this->begin(); n1.node_;) for(iterator n1(this->begin()); n1.node_;)
{ {
iterator n2 = other.find_matching_node(n1); iterator n2(other.find_matching_node(n1));
if (!n2.node_) return false; if (!n2.node_) return false;
iterator end1(n1.node_->group_prev_->next_); iterator end1(next_group(n1.node_));
iterator end2(n2.node_->group_prev_->next_); iterator end2(next_group(n2.node_));
if (!group_equals(n1, end1, n2, end2)) return false; if (!group_equals(n1, end1, n2, end2)) return false;
n1 = end1; n1 = end1;
} }
@ -336,17 +345,17 @@ namespace boost { namespace unordered { namespace detail {
pos->group_prev_ = n; pos->group_prev_ = n;
} }
inline iterator add_node( inline node_pointer add_node(
node_pointer n, node_pointer n,
std::size_t key_hash, std::size_t key_hash,
iterator pos) node_pointer pos)
{ {
n->hash_ = key_hash; n->hash_ = key_hash;
if (pos.node_) { if (pos) {
this->add_to_node_group(n, pos.node_); this->add_to_node_group(n, pos);
if (n->next_) { if (n->next_) {
std::size_t next_bucket = this->hash_to_bucket( std::size_t next_bucket = this->hash_to_bucket(
static_cast<node_pointer>(n->next_)->hash_); next_node(n)->hash_);
if (next_bucket != this->hash_to_bucket(key_hash)) { if (next_bucket != this->hash_to_bucket(key_hash)) {
this->get_bucket(next_bucket)->next_ = n; this->get_bucket(next_bucket)->next_ = n;
} }
@ -362,7 +371,7 @@ namespace boost { namespace unordered { namespace detail {
if (start_node->next_) { if (start_node->next_) {
this->get_bucket(this->hash_to_bucket( this->get_bucket(this->hash_to_bucket(
static_cast<node_pointer>(start_node->next_)->hash_ next_node(start_node)->hash_
))->next_ = n; ))->next_ = n;
} }
@ -377,10 +386,10 @@ namespace boost { namespace unordered { namespace detail {
} }
} }
++this->size_; ++this->size_;
return iterator(n); return n;
} }
inline iterator add_using_hint( inline node_pointer add_using_hint(
node_pointer n, node_pointer n,
node_pointer hint) node_pointer hint)
{ {
@ -388,13 +397,13 @@ namespace boost { namespace unordered { namespace detail {
this->add_to_node_group(n, hint); this->add_to_node_group(n, hint);
if (n->next_ != hint && n->next_) { if (n->next_ != hint && n->next_) {
std::size_t next_bucket = this->hash_to_bucket( std::size_t next_bucket = this->hash_to_bucket(
static_cast<node_pointer>(n->next_)->hash_); next_node(n)->hash_);
if (next_bucket != this->hash_to_bucket(n->hash_)) { if (next_bucket != this->hash_to_bucket(n->hash_)) {
this->get_bucket(next_bucket)->next_ = n; this->get_bucket(next_bucket)->next_ = n;
} }
} }
++this->size_; ++this->size_;
return iterator(n); return n;
} }
@ -451,9 +460,9 @@ namespace boost { namespace unordered { namespace detail {
node_tmp a(n, this->node_alloc()); node_tmp a(n, this->node_alloc());
key_type const& k = this->get_key(a.node_->value()); key_type const& k = this->get_key(a.node_->value());
std::size_t key_hash = this->hash(k); std::size_t key_hash = this->hash(k);
iterator position = this->find_node(key_hash, k); node_pointer position = this->find_node(key_hash, k);
this->reserve_for_insert(this->size_ + 1); this->reserve_for_insert(this->size_ + 1);
return this->add_node(a.release(), key_hash, position); return iterator(this->add_node(a.release(), key_hash, position));
} }
iterator emplace_hint_impl(c_iterator hint, node_pointer n) iterator emplace_hint_impl(c_iterator hint, node_pointer n)
@ -462,13 +471,13 @@ namespace boost { namespace unordered { namespace detail {
key_type const& k = this->get_key(a.node_->value()); key_type const& k = this->get_key(a.node_->value());
if (hint.node_ && this->key_eq()(k, this->get_key(*hint))) { if (hint.node_ && this->key_eq()(k, this->get_key(*hint))) {
this->reserve_for_insert(this->size_ + 1); this->reserve_for_insert(this->size_ + 1);
return this->add_using_hint(a.release(), hint.node_); return iterator(this->add_using_hint(a.release(), hint.node_));
} }
else { else {
std::size_t key_hash = this->hash(k); std::size_t key_hash = this->hash(k);
iterator position = this->find_node(key_hash, k); node_pointer position = this->find_node(key_hash, k);
this->reserve_for_insert(this->size_ + 1); this->reserve_for_insert(this->size_ + 1);
return this->add_node(a.release(), key_hash, position); return iterator(this->add_node(a.release(), key_hash, position));
} }
} }
@ -477,7 +486,7 @@ namespace boost { namespace unordered { namespace detail {
node_tmp a(n, this->node_alloc()); node_tmp a(n, this->node_alloc());
key_type const& k = this->get_key(a.node_->value()); key_type const& k = this->get_key(a.node_->value());
std::size_t key_hash = this->hash(k); std::size_t key_hash = this->hash(k);
iterator position = this->find_node(key_hash, k); node_pointer position = this->find_node(key_hash, k);
this->add_node(a.release(), key_hash, position); this->add_node(a.release(), key_hash, position);
} }
@ -535,21 +544,21 @@ namespace boost { namespace unordered { namespace detail {
link_pointer prev = this->get_previous_start(bucket_index); link_pointer prev = this->get_previous_start(bucket_index);
if (!prev) return 0; if (!prev) return 0;
node_pointer first_node;
for (;;) for (;;)
{ {
if (!prev->next_) return 0; if (!prev->next_) return 0;
std::size_t node_hash = first_node = next_node(prev);
static_cast<node_pointer>(prev->next_)->hash_; std::size_t node_hash = first_node->hash_;
if (this->hash_to_bucket(node_hash) != bucket_index) if (this->hash_to_bucket(node_hash) != bucket_index)
return 0; return 0;
if (node_hash == key_hash && if (node_hash == key_hash &&
this->key_eq()(k, this->get_key( this->key_eq()(k, this->get_key(first_node->value())))
static_cast<node_pointer>(prev->next_)->value())))
break; break;
prev = static_cast<node_pointer>(prev->next_)->group_prev_; prev = first_node->group_prev_;
} }
node_pointer first_node = static_cast<node_pointer>(prev->next_);
link_pointer end = first_node->group_prev_->next_; link_pointer end = first_node->group_prev_->next_;
std::size_t deleted_count = this->delete_nodes(prev, end); std::size_t deleted_count = this->delete_nodes(prev, end);
@ -560,10 +569,9 @@ namespace boost { namespace unordered { namespace detail {
iterator erase(c_iterator r) iterator erase(c_iterator r)
{ {
BOOST_ASSERT(r.node_); BOOST_ASSERT(r.node_);
iterator next(r.node_); node_pointer next = next_node(r.node_);
++next; erase_nodes(r.node_, next);
erase_nodes(r.node_, next.node_); return iterator(next);
return next;
} }
iterator erase_range(c_iterator r1, c_iterator r2) iterator erase_range(c_iterator r1, c_iterator r2)
@ -588,13 +596,12 @@ namespace boost { namespace unordered { namespace detail {
if (!prev) { if (!prev) {
prev = this->get_previous_start(bucket_index); prev = this->get_previous_start(bucket_index);
while (prev->next_ != i) while (prev->next_ != i)
prev = static_cast<node_pointer>(prev->next_)->group_prev_; prev = next_node(prev)->group_prev_;
} }
// Delete the nodes. // Delete the nodes.
do { do {
link_pointer group_end = link_pointer group_end = next_group(next_node(prev));
static_cast<node_pointer>(prev->next_)->group_prev_->next_;
this->delete_nodes(prev, group_end); this->delete_nodes(prev, group_end);
bucket_index = this->fix_bucket(bucket_index, prev); bucket_index = this->fix_bucket(bucket_index, prev);
} while(prev->next_ != j); } while(prev->next_ != j);
@ -634,17 +641,17 @@ namespace boost { namespace unordered { namespace detail {
void copy_buckets(table const& src) { void copy_buckets(table const& src) {
this->create_buckets(this->bucket_count_); this->create_buckets(this->bucket_count_);
for (iterator n = src.begin(); n.node_;) { for (node_pointer n = src.begin(); n;) {
std::size_t key_hash = n.node_->hash_; std::size_t key_hash = n->hash_;
iterator group_end(n.node_->group_prev_->next_); node_pointer group_end(next_group(n));
iterator pos = this->add_node( node_pointer pos = this->add_node(
boost::unordered::detail::func::construct_value( boost::unordered::detail::func::construct_value(
this->node_alloc(), *n), key_hash, iterator()); this->node_alloc(), n->value()), key_hash, node_pointer());
for (++n; n != group_end; ++n) for (n = next_node(n); n != group_end; n = next_node(n))
{ {
this->add_node( this->add_node(
boost::unordered::detail::func::construct_value( boost::unordered::detail::func::construct_value(
this->node_alloc(), *n), key_hash, pos); this->node_alloc(), n->value()), key_hash, pos);
} }
} }
} }
@ -652,43 +659,43 @@ namespace boost { namespace unordered { namespace detail {
void move_buckets(table const& src) { void move_buckets(table const& src) {
this->create_buckets(this->bucket_count_); this->create_buckets(this->bucket_count_);
for (iterator n = src.begin(); n.node_;) { for (node_pointer n = src.begin(); n;) {
std::size_t key_hash = n.node_->hash_; std::size_t key_hash = n->hash_;
iterator group_end(n.node_->group_prev_->next_); node_pointer group_end(next_group(n));
iterator pos = this->add_node( node_pointer pos = this->add_node(
boost::unordered::detail::func::construct_value( boost::unordered::detail::func::construct_value(
this->node_alloc(), boost::move(*n)), key_hash, iterator()); this->node_alloc(), boost::move(n->value())), key_hash, node_pointer());
for (++n; n != group_end; ++n) for (n = next_node(n); n != group_end; n = next_node(n))
{ {
this->add_node( this->add_node(
boost::unordered::detail::func::construct_value( boost::unordered::detail::func::construct_value(
this->node_alloc(), boost::move(*n)), key_hash, pos); this->node_alloc(), boost::move(n->value())), key_hash, pos);
} }
} }
} }
void assign_buckets(table const& src) { void assign_buckets(table const& src) {
node_holder<node_allocator> holder(*this); node_holder<node_allocator> holder(*this);
for (iterator n = src.begin(); n.node_;) { for (node_pointer n = src.begin(); n;) {
std::size_t key_hash = n.node_->hash_; std::size_t key_hash = n->hash_;
iterator group_end(n.node_->group_prev_->next_); node_pointer group_end(next_group(n));
iterator pos = this->add_node(holder.copy_of(*n), key_hash, iterator()); node_pointer pos = this->add_node(holder.copy_of(n->value()), key_hash, node_pointer());
for (++n; n != group_end; ++n) for (n = next_node(n); n != group_end; n = next_node(n))
{ {
this->add_node(holder.copy_of(*n), key_hash, pos); this->add_node(holder.copy_of(n->value()), key_hash, pos);
} }
} }
} }
void move_assign_buckets(table& src) { void move_assign_buckets(table& src) {
node_holder<node_allocator> holder(*this); node_holder<node_allocator> holder(*this);
for (iterator n = src.begin(); n.node_;) { for (node_pointer n = src.begin(); n;) {
std::size_t key_hash = n.node_->hash_; std::size_t key_hash = n->hash_;
iterator group_end(n.node_->group_prev_->next_); node_pointer group_end(next_group(n));
iterator pos = this->add_node(holder.move_copy_of(*n), key_hash, iterator()); node_pointer pos = this->add_node(holder.move_copy_of(n->value()), key_hash, node_pointer());
for (++n; n != group_end; ++n) for (n = next_node(n); n != group_end; n = next_node(n))
{ {
this->add_node(holder.move_copy_of(*n), key_hash, pos); this->add_node(holder.move_copy_of(n->value()), key_hash, pos);
} }
} }
} }
@ -701,8 +708,7 @@ namespace boost { namespace unordered { namespace detail {
this->create_buckets(num_buckets); this->create_buckets(num_buckets);
link_pointer prev = this->get_previous_start(); link_pointer prev = this->get_previous_start();
while (prev->next_) while (prev->next_)
prev = place_in_bucket(*this, prev, prev = place_in_bucket(*this, prev, next_node(prev)->group_prev_);
static_cast<node_pointer>(prev->next_)->group_prev_);
} }
// Iterate through the nodes placing them in the correct buckets. // Iterate through the nodes placing them in the correct buckets.

View File

@ -130,6 +130,13 @@ namespace boost { namespace unordered { namespace detail {
std::size_t max_load_; std::size_t max_load_;
bucket_pointer buckets_; bucket_pointer buckets_;
////////////////////////////////////////////////////////////////////////
// Node functions
static inline node_pointer next_node(link_pointer n) {
return static_cast<node_pointer>(n->next_);
}
//////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////
// Data access // Data access
@ -176,16 +183,16 @@ namespace boost { namespace unordered { namespace detail {
return get_bucket(bucket_index)->next_; return get_bucket(bucket_index)->next_;
} }
iterator begin() const node_pointer begin() const
{ {
return size_ ? iterator(get_previous_start()->next_) : iterator(); return size_ ? next_node(get_previous_start()) : node_pointer();
} }
iterator begin(std::size_t bucket_index) const node_pointer begin(std::size_t bucket_index) const
{ {
if (!size_) return iterator(); if (!size_) return node_pointer();
link_pointer prev = get_previous_start(bucket_index); link_pointer prev = get_previous_start(bucket_index);
return prev ? iterator(prev->next_) : iterator(); return prev ? next_node(prev) : node_pointer();
} }
std::size_t hash_to_bucket(std::size_t hash_value) const std::size_t hash_to_bucket(std::size_t hash_value) const
@ -202,14 +209,14 @@ namespace boost { namespace unordered { namespace detail {
std::size_t bucket_size(std::size_t index) const std::size_t bucket_size(std::size_t index) const
{ {
iterator it = begin(index); node_pointer n = begin(index);
if (!it.node_) return 0; if (!n) return 0;
std::size_t count = 0; std::size_t count = 0;
while(it.node_ && hash_to_bucket(it.node_->hash_) == index) while(n && hash_to_bucket(n->hash_) == index)
{ {
++count; ++count;
++it; n = next_node(n);
} }
return count; return count;
@ -698,7 +705,7 @@ namespace boost { namespace unordered { namespace detail {
// Find Node // Find Node
template <typename Key, typename Hash, typename Pred> template <typename Key, typename Hash, typename Pred>
iterator generic_find_node( node_pointer generic_find_node(
Key const& k, Key const& k,
Hash const& hf, Hash const& hf,
Pred const& eq) const Pred const& eq) const
@ -707,7 +714,7 @@ namespace boost { namespace unordered { namespace detail {
find_node_impl(policy::apply_hash(hf, k), k, eq); find_node_impl(policy::apply_hash(hf, k), k, eq);
} }
iterator find_node( node_pointer find_node(
std::size_t key_hash, std::size_t key_hash,
key_type const& k) const key_type const& k) const
{ {
@ -715,13 +722,13 @@ namespace boost { namespace unordered { namespace detail {
find_node_impl(key_hash, k, this->key_eq()); find_node_impl(key_hash, k, this->key_eq());
} }
iterator find_node(key_type const& k) const node_pointer find_node(key_type const& k) const
{ {
return static_cast<table_impl const*>(this)-> return static_cast<table_impl const*>(this)->
find_node_impl(hash(k), k, this->key_eq()); find_node_impl(hash(k), k, this->key_eq());
} }
iterator find_matching_node(iterator n) const node_pointer find_matching_node(iterator n) const
{ {
// TODO: Does this apply to C++11? // TODO: Does this apply to C++11?
// //

View File

@ -186,47 +186,53 @@ namespace boost { namespace unordered { namespace detail {
this->move_init(x); this->move_init(x);
} }
// Node functions.
static inline node_pointer next_node(link_pointer n) {
return static_cast<node_pointer>(n->next_);
}
// Accessors // Accessors
template <class Key, class Pred> template <class Key, class Pred>
iterator find_node_impl( node_pointer find_node_impl(
std::size_t key_hash, std::size_t key_hash,
Key const& k, Key const& k,
Pred const& eq) const Pred const& eq) const
{ {
std::size_t bucket_index = this->hash_to_bucket(key_hash); std::size_t bucket_index = this->hash_to_bucket(key_hash);
iterator n = this->begin(bucket_index); node_pointer n = this->begin(bucket_index);
for (;;) for (;;)
{ {
if (!n.node_) return n; if (!n) return n;
std::size_t node_hash = n.node_->hash_; std::size_t node_hash = n->hash_;
if (key_hash == node_hash) if (key_hash == node_hash)
{ {
if (eq(k, this->get_key(*n))) if (eq(k, this->get_key(n->value())))
return n; return n;
} }
else else
{ {
if (this->hash_to_bucket(node_hash) != bucket_index) if (this->hash_to_bucket(node_hash) != bucket_index)
return iterator(); return node_pointer();
} }
++n; n = next_node(n);
} }
} }
std::size_t count(key_type const& k) const std::size_t count(key_type const& k) const
{ {
return this->find_node(k).node_ ? 1 : 0; return this->find_node(k) ? 1 : 0;
} }
value_type& at(key_type const& k) const value_type& at(key_type const& k) const
{ {
if (this->size_) { if (this->size_) {
iterator it = this->find_node(k); node_pointer n = this->find_node(k);
if (it.node_) return *it; if (n) return n->value();
} }
boost::throw_exception( boost::throw_exception(
@ -236,10 +242,8 @@ namespace boost { namespace unordered { namespace detail {
std::pair<iterator, iterator> std::pair<iterator, iterator>
equal_range(key_type const& k) const equal_range(key_type const& k) const
{ {
iterator n = this->find_node(k); node_pointer n = this->find_node(k);
iterator n2 = n; return std::make_pair(iterator(n), iterator(n ? next_node(n) : n));
if (n2.node_) ++n2;
return std::make_pair(n, n2);
} }
// equals // equals
@ -248,11 +252,11 @@ namespace boost { namespace unordered { namespace detail {
{ {
if(this->size_ != other.size_) return false; if(this->size_ != other.size_) return false;
for(iterator n1 = this->begin(); n1.node_; ++n1) for(iterator n1(this->begin()); n1.node_; ++n1)
{ {
iterator n2 = other.find_matching_node(n1); node_pointer n2 = other.find_matching_node(n1);
if (!n2.node_ || *n1 != *n2) if (!n2 || *n1 != n2->value())
return false; return false;
} }
@ -261,7 +265,7 @@ namespace boost { namespace unordered { namespace detail {
// Emplace/Insert // Emplace/Insert
inline iterator add_node( inline node_pointer add_node(
node_pointer n, node_pointer n,
std::size_t key_hash) std::size_t key_hash)
{ {
@ -275,7 +279,7 @@ namespace boost { namespace unordered { namespace detail {
if (start_node->next_) { if (start_node->next_) {
this->get_bucket(this->hash_to_bucket( this->get_bucket(this->hash_to_bucket(
static_cast<node_pointer>(start_node->next_)->hash_) next_node(start_node)->hash_)
)->next_ = n; )->next_ = n;
} }
@ -290,10 +294,10 @@ namespace boost { namespace unordered { namespace detail {
} }
++this->size_; ++this->size_;
return iterator(n); return n;
} }
inline iterator resize_and_add_node(node_pointer n, std::size_t key_hash) inline node_pointer resize_and_add_node(node_pointer n, std::size_t key_hash)
{ {
node_tmp b(n, this->node_alloc()); node_tmp b(n, this->node_alloc());
this->reserve_for_insert(this->size_ + 1); this->reserve_for_insert(this->size_ + 1);
@ -303,11 +307,15 @@ namespace boost { namespace unordered { namespace detail {
value_type& operator[](key_type const& k) value_type& operator[](key_type const& k)
{ {
std::size_t key_hash = this->hash(k); std::size_t key_hash = this->hash(k);
iterator pos = this->find_node(key_hash, k); node_pointer pos = this->find_node(key_hash, k);
if (pos.node_) return *pos; if (pos) {
return *this->resize_and_add_node( return pos->value();
boost::unordered::detail::func::construct_pair(this->node_alloc(), k), }
key_hash); else {
return this->resize_and_add_node(
boost::unordered::detail::func::construct_pair(this->node_alloc(), k),
key_hash)->value();
}
} }
#if defined(BOOST_NO_CXX11_RVALUE_REFERENCES) #if defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
@ -316,7 +324,7 @@ namespace boost { namespace unordered { namespace detail {
boost::unordered::detail::please_ignore_this_overload> const&) boost::unordered::detail::please_ignore_this_overload> const&)
{ {
BOOST_ASSERT(false); BOOST_ASSERT(false);
return emplace_return(this->begin(), false); return emplace_return(iterator(), false);
} }
iterator emplace_hint(c_iterator, iterator emplace_hint(c_iterator,
@ -324,21 +332,21 @@ namespace boost { namespace unordered { namespace detail {
boost::unordered::detail::please_ignore_this_overload> const&) boost::unordered::detail::please_ignore_this_overload> const&)
{ {
BOOST_ASSERT(false); BOOST_ASSERT(false);
return this->begin(); return iterator();
} }
# else # else
emplace_return emplace( emplace_return emplace(
boost::unordered::detail::please_ignore_this_overload const&) boost::unordered::detail::please_ignore_this_overload const&)
{ {
BOOST_ASSERT(false); BOOST_ASSERT(false);
return emplace_return(this->begin(), false); return emplace_return(iterator(), false);
} }
iterator emplace_hint(c_iterator, iterator emplace_hint(c_iterator,
boost::unordered::detail::please_ignore_this_overload const&) boost::unordered::detail::please_ignore_this_overload const&)
{ {
BOOST_ASSERT(false); BOOST_ASSERT(false);
return this->begin(); return iterator();
} }
# endif # endif
#endif #endif
@ -405,16 +413,16 @@ namespace boost { namespace unordered { namespace detail {
BOOST_UNORDERED_EMPLACE_ARGS) BOOST_UNORDERED_EMPLACE_ARGS)
{ {
std::size_t key_hash = this->hash(k); std::size_t key_hash = this->hash(k);
iterator pos = this->find_node(key_hash, k); node_pointer pos = this->find_node(key_hash, k);
if (pos.node_) { if (pos) {
return emplace_return(pos, false); return emplace_return(iterator(pos), false);
} }
else { else {
return emplace_return( return emplace_return(
this->resize_and_add_node( iterator(this->resize_and_add_node(
boost::unordered::detail::func::construct_value_generic( boost::unordered::detail::func::construct_value_generic(
this->node_alloc(), BOOST_UNORDERED_EMPLACE_FORWARD), this->node_alloc(), BOOST_UNORDERED_EMPLACE_FORWARD),
key_hash), key_hash)),
true); true);
} }
} }
@ -432,12 +440,12 @@ namespace boost { namespace unordered { namespace detail {
return iterator(hint.node_); return iterator(hint.node_);
} }
std::size_t key_hash = this->hash(k); std::size_t key_hash = this->hash(k);
iterator pos = this->find_node(key_hash, k); node_pointer pos = this->find_node(key_hash, k);
if (pos.node_) { if (pos) {
return pos; return iterator(pos);
} }
else { else {
return this->resize_and_add_node(b.release(), key_hash); return iterator(this->resize_and_add_node(b.release(), key_hash));
} }
} }
@ -450,13 +458,13 @@ namespace boost { namespace unordered { namespace detail {
this->node_alloc()); this->node_alloc());
key_type const& k = this->get_key(b.node_->value()); key_type const& k = this->get_key(b.node_->value());
std::size_t key_hash = this->hash(k); std::size_t key_hash = this->hash(k);
iterator pos = this->find_node(key_hash, k); node_pointer pos = this->find_node(key_hash, k);
if (pos.node_) { if (pos) {
return emplace_return(pos, false); return emplace_return(iterator(pos), false);
} }
else { else {
return emplace_return( return emplace_return(
this->resize_and_add_node(b.release(), key_hash), iterator(this->resize_and_add_node(b.release(), key_hash)),
true); true);
} }
} }
@ -497,9 +505,9 @@ namespace boost { namespace unordered { namespace detail {
{ {
// No side effects in this initial code // No side effects in this initial code
std::size_t key_hash = this->hash(k); std::size_t key_hash = this->hash(k);
iterator pos = this->find_node(key_hash, k); node_pointer pos = this->find_node(key_hash, k);
if (!pos.node_) { if (!pos) {
node_tmp b( node_tmp b(
boost::unordered::detail::func::construct_value(this->node_alloc(), *i), boost::unordered::detail::func::construct_value(this->node_alloc(), *i),
this->node_alloc()); this->node_alloc());
@ -523,9 +531,9 @@ namespace boost { namespace unordered { namespace detail {
key_type const& k = this->get_key(b.node_->value()); key_type const& k = this->get_key(b.node_->value());
std::size_t key_hash = this->hash(k); std::size_t key_hash = this->hash(k);
iterator pos = this->find_node(key_hash, k); node_pointer pos = this->find_node(key_hash, k);
if (pos.node_) { if (pos) {
a.reclaim(b.release()); a.reclaim(b.release());
} }
else { else {
@ -554,18 +562,17 @@ namespace boost { namespace unordered { namespace detail {
for (;;) for (;;)
{ {
if (!prev->next_) return 0; if (!prev->next_) return 0;
std::size_t node_hash = std::size_t node_hash = next_node(prev)->hash_;
static_cast<node_pointer>(prev->next_)->hash_;
if (this->hash_to_bucket(node_hash) != bucket_index) if (this->hash_to_bucket(node_hash) != bucket_index)
return 0; return 0;
if (node_hash == key_hash && if (node_hash == key_hash &&
this->key_eq()(k, this->get_key( this->key_eq()(k, this->get_key(
static_cast<node_pointer>(prev->next_)->value()))) next_node(prev)->value())))
break; break;
prev = prev->next_; prev = prev->next_;
} }
link_pointer end = static_cast<node_pointer>(prev->next_)->next_; link_pointer end = next_node(prev)->next_;
std::size_t deleted_count = this->delete_nodes(prev, end); std::size_t deleted_count = this->delete_nodes(prev, end);
this->fix_bucket(bucket_index, prev); this->fix_bucket(bucket_index, prev);
@ -575,10 +582,9 @@ namespace boost { namespace unordered { namespace detail {
iterator erase(c_iterator r) iterator erase(c_iterator r)
{ {
BOOST_ASSERT(r.node_); BOOST_ASSERT(r.node_);
iterator next(r.node_); node_pointer next = next_node(r.node_);
++next; erase_nodes(r.node_, next);
erase_nodes(r.node_, next.node_); return iterator(next);
return next;
} }
iterator erase_range(c_iterator r1, c_iterator r2) iterator erase_range(c_iterator r1, c_iterator r2)
@ -609,36 +615,36 @@ namespace boost { namespace unordered { namespace detail {
void copy_buckets(table const& src) { void copy_buckets(table const& src) {
this->create_buckets(this->bucket_count_); this->create_buckets(this->bucket_count_);
for(iterator n = src.begin(); n.node_; ++n) { for(node_pointer n = src.begin(); n; n = next_node(n)) {
this->add_node( this->add_node(
boost::unordered::detail::func::construct_value( boost::unordered::detail::func::construct_value(
this->node_alloc(), *n), n.node_->hash_); this->node_alloc(), n->value()), n->hash_);
} }
} }
void move_buckets(table const& src) { void move_buckets(table const& src) {
this->create_buckets(this->bucket_count_); this->create_buckets(this->bucket_count_);
for(iterator n = src.begin(); n.node_; ++n) { for(node_pointer n = src.begin(); n; n = next_node(n)) {
this->add_node( this->add_node(
boost::unordered::detail::func::construct_value( boost::unordered::detail::func::construct_value(
this->node_alloc(), boost::move(*n)), n.node_->hash_); this->node_alloc(), boost::move(n->value())), n->hash_);
} }
} }
void assign_buckets(table const& src) void assign_buckets(table const& src)
{ {
node_holder<node_allocator> holder(*this); node_holder<node_allocator> holder(*this);
for(iterator n = src.begin(); n.node_; ++n) { for(node_pointer n = src.begin(); n; n = next_node(n)) {
this->add_node(holder.copy_of(*n), n.node_->hash_); this->add_node(holder.copy_of(n->value()), n->hash_);
} }
} }
void move_assign_buckets(table& src) void move_assign_buckets(table& src)
{ {
node_holder<node_allocator> holder(*this); node_holder<node_allocator> holder(*this);
for(iterator n = src.begin(); n.node_; ++n) { for(node_pointer n = src.begin(); n; n = next_node(n)) {
this->add_node(holder.move_copy_of(*n), n.node_->hash_); this->add_node(holder.move_copy_of(n->value()), n->hash_);
} }
} }
@ -657,7 +663,7 @@ namespace boost { namespace unordered { namespace detail {
// pre: prev->next_ is not null. // pre: prev->next_ is not null.
static link_pointer place_in_bucket(table& dst, link_pointer prev) static link_pointer place_in_bucket(table& dst, link_pointer prev)
{ {
node_pointer n = static_cast<node_pointer>(prev->next_); node_pointer n = next_node(prev);
bucket_pointer b = dst.get_bucket(dst.hash_to_bucket(n->hash_)); bucket_pointer b = dst.get_bucket(dst.hash_to_bucket(n->hash_));
if (!b->next_) { if (!b->next_) {

View File

@ -202,12 +202,12 @@ namespace unordered
iterator begin() BOOST_NOEXCEPT iterator begin() BOOST_NOEXCEPT
{ {
return table_.begin(); return iterator(table_.begin());
} }
const_iterator begin() const BOOST_NOEXCEPT const_iterator begin() const BOOST_NOEXCEPT
{ {
return table_.begin(); return const_iterator(table_.begin());
} }
iterator end() BOOST_NOEXCEPT iterator end() BOOST_NOEXCEPT
@ -222,7 +222,7 @@ namespace unordered
const_iterator cbegin() const BOOST_NOEXCEPT const_iterator cbegin() const BOOST_NOEXCEPT
{ {
return table_.begin(); return const_iterator(table_.begin());
} }
const_iterator cend() const BOOST_NOEXCEPT const_iterator cend() const BOOST_NOEXCEPT
@ -686,12 +686,12 @@ namespace unordered
iterator begin() BOOST_NOEXCEPT iterator begin() BOOST_NOEXCEPT
{ {
return table_.begin(); return iterator(table_.begin());
} }
const_iterator begin() const BOOST_NOEXCEPT const_iterator begin() const BOOST_NOEXCEPT
{ {
return table_.begin(); return const_iterator(table_.begin());
} }
iterator end() BOOST_NOEXCEPT iterator end() BOOST_NOEXCEPT
@ -706,7 +706,7 @@ namespace unordered
const_iterator cbegin() const BOOST_NOEXCEPT const_iterator cbegin() const BOOST_NOEXCEPT
{ {
return table_.begin(); return const_iterator(table_.begin());
} }
const_iterator cend() const BOOST_NOEXCEPT const_iterator cend() const BOOST_NOEXCEPT
@ -1208,14 +1208,14 @@ namespace unordered
typename unordered_map<K,T,H,P,A>::iterator typename unordered_map<K,T,H,P,A>::iterator
unordered_map<K,T,H,P,A>::find(const key_type& k) unordered_map<K,T,H,P,A>::find(const key_type& k)
{ {
return table_.find_node(k); return iterator(table_.find_node(k));
} }
template <class K, class T, class H, class P, class A> template <class K, class T, class H, class P, class A>
typename unordered_map<K,T,H,P,A>::const_iterator typename unordered_map<K,T,H,P,A>::const_iterator
unordered_map<K,T,H,P,A>::find(const key_type& k) const unordered_map<K,T,H,P,A>::find(const key_type& k) const
{ {
return table_.find_node(k); return const_iterator(table_.find_node(k));
} }
template <class K, class T, class H, class P, class A> template <class K, class T, class H, class P, class A>
@ -1227,7 +1227,7 @@ namespace unordered
CompatibleHash const& hash, CompatibleHash const& hash,
CompatiblePredicate const& eq) CompatiblePredicate const& eq)
{ {
return table_.generic_find_node(k, hash, eq); return iterator(table_.generic_find_node(k, hash, eq));
} }
template <class K, class T, class H, class P, class A> template <class K, class T, class H, class P, class A>
@ -1239,7 +1239,7 @@ namespace unordered
CompatibleHash const& hash, CompatibleHash const& hash,
CompatiblePredicate const& eq) const CompatiblePredicate const& eq) const
{ {
return table_.generic_find_node(k, hash, eq); return const_iterator(table_.generic_find_node(k, hash, eq));
} }
template <class K, class T, class H, class P, class A> template <class K, class T, class H, class P, class A>
@ -1520,14 +1520,14 @@ namespace unordered
typename unordered_multimap<K,T,H,P,A>::iterator typename unordered_multimap<K,T,H,P,A>::iterator
unordered_multimap<K,T,H,P,A>::find(const key_type& k) unordered_multimap<K,T,H,P,A>::find(const key_type& k)
{ {
return table_.find_node(k); return iterator(table_.find_node(k));
} }
template <class K, class T, class H, class P, class A> template <class K, class T, class H, class P, class A>
typename unordered_multimap<K,T,H,P,A>::const_iterator typename unordered_multimap<K,T,H,P,A>::const_iterator
unordered_multimap<K,T,H,P,A>::find(const key_type& k) const unordered_multimap<K,T,H,P,A>::find(const key_type& k) const
{ {
return table_.find_node(k); return const_iterator(table_.find_node(k));
} }
template <class K, class T, class H, class P, class A> template <class K, class T, class H, class P, class A>
@ -1539,7 +1539,7 @@ namespace unordered
CompatibleHash const& hash, CompatibleHash const& hash,
CompatiblePredicate const& eq) CompatiblePredicate const& eq)
{ {
return table_.generic_find_node(k, hash, eq); return iterator(table_.generic_find_node(k, hash, eq));
} }
template <class K, class T, class H, class P, class A> template <class K, class T, class H, class P, class A>
@ -1551,7 +1551,7 @@ namespace unordered
CompatibleHash const& hash, CompatibleHash const& hash,
CompatiblePredicate const& eq) const CompatiblePredicate const& eq) const
{ {
return table_.generic_find_node(k, hash, eq); return const_iterator(table_.generic_find_node(k, hash, eq));
} }
template <class K, class T, class H, class P, class A> template <class K, class T, class H, class P, class A>

View File

@ -199,12 +199,12 @@ namespace unordered
iterator begin() BOOST_NOEXCEPT iterator begin() BOOST_NOEXCEPT
{ {
return table_.begin(); return iterator(table_.begin());
} }
const_iterator begin() const BOOST_NOEXCEPT const_iterator begin() const BOOST_NOEXCEPT
{ {
return table_.begin(); return const_iterator(table_.begin());
} }
iterator end() BOOST_NOEXCEPT iterator end() BOOST_NOEXCEPT
@ -219,7 +219,7 @@ namespace unordered
const_iterator cbegin() const BOOST_NOEXCEPT const_iterator cbegin() const BOOST_NOEXCEPT
{ {
return table_.begin(); return const_iterator(table_.begin());
} }
const_iterator cend() const BOOST_NOEXCEPT const_iterator cend() const BOOST_NOEXCEPT
@ -1161,7 +1161,7 @@ namespace unordered
typename unordered_set<T,H,P,A>::const_iterator typename unordered_set<T,H,P,A>::const_iterator
unordered_set<T,H,P,A>::find(const key_type& k) const unordered_set<T,H,P,A>::find(const key_type& k) const
{ {
return table_.find_node(k); return const_iterator(table_.find_node(k));
} }
template <class T, class H, class P, class A> template <class T, class H, class P, class A>
@ -1173,7 +1173,7 @@ namespace unordered
CompatibleHash const& hash, CompatibleHash const& hash,
CompatiblePredicate const& eq) const CompatiblePredicate const& eq) const
{ {
return table_.generic_find_node(k, hash, eq); return const_iterator(table_.generic_find_node(k, hash, eq));
} }
template <class T, class H, class P, class A> template <class T, class H, class P, class A>
@ -1445,7 +1445,7 @@ namespace unordered
typename unordered_multiset<T,H,P,A>::const_iterator typename unordered_multiset<T,H,P,A>::const_iterator
unordered_multiset<T,H,P,A>::find(const key_type& k) const unordered_multiset<T,H,P,A>::find(const key_type& k) const
{ {
return table_.find_node(k); return const_iterator(table_.find_node(k));
} }
template <class T, class H, class P, class A> template <class T, class H, class P, class A>
@ -1457,7 +1457,7 @@ namespace unordered
CompatibleHash const& hash, CompatibleHash const& hash,
CompatiblePredicate const& eq) const CompatiblePredicate const& eq) const
{ {
return table_.generic_find_node(k, hash, eq); return const_iterator(table_.generic_find_node(k, hash, eq));
} }
template <class T, class H, class P, class A> template <class T, class H, class P, class A>