Auto merge of #81937 - ssomers:btree_drainy_refactor_9b, r=Mark-Simulacrum

BTree: move more shared iterator code into navigate.rs

The functions in navigate.rs only exist to support iterators, and these look easier on my eyes if there is a shared `struct` with the recurring pair of handles.

r? `@Mark-Simulacrum`
This commit is contained in:
bors 2021-02-23 00:30:37 +00:00
commit b02a6193b3
2 changed files with 67 additions and 98 deletions

View File

@ -9,6 +9,7 @@ use core::ops::{Index, RangeBounds};
use core::ptr; use core::ptr;
use super::borrow::DormantMutRef; use super::borrow::DormantMutRef;
use super::navigate::LeafRange;
use super::node::{self, marker, ForceResult::*, Handle, NodeRef, Root}; use super::node::{self, marker, ForceResult::*, Handle, NodeRef, Root};
use super::search::SearchResult::*; use super::search::SearchResult::*;
@ -307,8 +308,7 @@ pub struct IterMut<'a, K: 'a, V: 'a> {
/// [`into_iter`]: IntoIterator::into_iter /// [`into_iter`]: IntoIterator::into_iter
#[stable(feature = "rust1", since = "1.0.0")] #[stable(feature = "rust1", since = "1.0.0")]
pub struct IntoIter<K, V> { pub struct IntoIter<K, V> {
front: Option<Handle<NodeRef<marker::Dying, K, V, marker::Leaf>, marker::Edge>>, range: LeafRange<marker::Dying, K, V>,
back: Option<Handle<NodeRef<marker::Dying, K, V, marker::Leaf>, marker::Edge>>,
length: usize, length: usize,
} }
@ -316,11 +316,7 @@ impl<K, V> IntoIter<K, V> {
/// Returns an iterator of references over the remaining items. /// Returns an iterator of references over the remaining items.
#[inline] #[inline]
pub(super) fn iter(&self) -> Iter<'_, K, V> { pub(super) fn iter(&self) -> Iter<'_, K, V> {
let range = Range { let range = Range { inner: self.range.reborrow() };
front: self.front.as_ref().map(|f| f.reborrow()),
back: self.back.as_ref().map(|b| b.reborrow()),
};
Iter { range: range, length: self.length } Iter { range: range, length: self.length }
} }
} }
@ -438,8 +434,7 @@ impl<K, V: fmt::Debug> fmt::Debug for IntoValues<K, V> {
/// [`range`]: BTreeMap::range /// [`range`]: BTreeMap::range
#[stable(feature = "btree_range", since = "1.17.0")] #[stable(feature = "btree_range", since = "1.17.0")]
pub struct Range<'a, K: 'a, V: 'a> { pub struct Range<'a, K: 'a, V: 'a> {
front: Option<Handle<NodeRef<marker::Immut<'a>, K, V, marker::Leaf>, marker::Edge>>, inner: LeafRange<marker::Immut<'a>, K, V>,
back: Option<Handle<NodeRef<marker::Immut<'a>, K, V, marker::Leaf>, marker::Edge>>,
} }
#[stable(feature = "collection_debug", since = "1.17.0")] #[stable(feature = "collection_debug", since = "1.17.0")]
@ -457,8 +452,7 @@ impl<K: fmt::Debug, V: fmt::Debug> fmt::Debug for Range<'_, K, V> {
/// [`range_mut`]: BTreeMap::range_mut /// [`range_mut`]: BTreeMap::range_mut
#[stable(feature = "btree_range", since = "1.17.0")] #[stable(feature = "btree_range", since = "1.17.0")]
pub struct RangeMut<'a, K: 'a, V: 'a> { pub struct RangeMut<'a, K: 'a, V: 'a> {
front: Option<Handle<NodeRef<marker::ValMut<'a>, K, V, marker::Leaf>, marker::Edge>>, inner: LeafRange<marker::ValMut<'a>, K, V>,
back: Option<Handle<NodeRef<marker::ValMut<'a>, K, V, marker::Leaf>, marker::Edge>>,
// Be invariant in `K` and `V` // Be invariant in `K` and `V`
_marker: PhantomData<&'a mut (K, V)>, _marker: PhantomData<&'a mut (K, V)>,
@ -467,10 +461,7 @@ pub struct RangeMut<'a, K: 'a, V: 'a> {
#[stable(feature = "collection_debug", since = "1.17.0")] #[stable(feature = "collection_debug", since = "1.17.0")]
impl<K: fmt::Debug, V: fmt::Debug> fmt::Debug for RangeMut<'_, K, V> { impl<K: fmt::Debug, V: fmt::Debug> fmt::Debug for RangeMut<'_, K, V> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let range = Range { let range = Range { inner: self.inner.reborrow() };
front: self.front.as_ref().map(|f| f.reborrow()),
back: self.back.as_ref().map(|b| b.reborrow()),
};
f.debug_list().entries(range).finish() f.debug_list().entries(range).finish()
} }
} }
@ -1018,11 +1009,9 @@ impl<K, V> BTreeMap<K, V> {
R: RangeBounds<T>, R: RangeBounds<T>,
{ {
if let Some(root) = &self.root { if let Some(root) = &self.root {
let (f, b) = root.reborrow().range_search(range); Range { inner: root.reborrow().range_search(range) }
Range { front: Some(f), back: Some(b) }
} else { } else {
Range { front: None, back: None } Range { inner: LeafRange::none() }
} }
} }
@ -1064,11 +1053,9 @@ impl<K, V> BTreeMap<K, V> {
R: RangeBounds<T>, R: RangeBounds<T>,
{ {
if let Some(root) = &mut self.root { if let Some(root) = &mut self.root {
let (f, b) = root.borrow_valmut().range_search(range); RangeMut { inner: root.borrow_valmut().range_search(range), _marker: PhantomData }
RangeMut { front: Some(f), back: Some(b), _marker: PhantomData }
} else { } else {
RangeMut { front: None, back: None, _marker: PhantomData } RangeMut { inner: LeafRange::none(), _marker: PhantomData }
} }
} }
@ -1407,11 +1394,11 @@ impl<K, V> IntoIterator for BTreeMap<K, V> {
fn into_iter(self) -> IntoIter<K, V> { fn into_iter(self) -> IntoIter<K, V> {
let mut me = ManuallyDrop::new(self); let mut me = ManuallyDrop::new(self);
if let Some(root) = me.root.take() { if let Some(root) = me.root.take() {
let (f, b) = root.into_dying().full_range(); let full_range = root.into_dying().full_range();
IntoIter { front: Some(f), back: Some(b), length: me.length } IntoIter { range: full_range, length: me.length }
} else { } else {
IntoIter { front: None, back: None, length: 0 } IntoIter { range: LeafRange::none(), length: 0 }
} }
} }
} }
@ -1450,7 +1437,7 @@ impl<K, V> Drop for Dropper<K, V> {
#[stable(feature = "btree_drop", since = "1.7.0")] #[stable(feature = "btree_drop", since = "1.7.0")]
impl<K, V> Drop for IntoIter<K, V> { impl<K, V> Drop for IntoIter<K, V> {
fn drop(&mut self) { fn drop(&mut self) {
if let Some(front) = self.front.take() { if let Some(front) = self.range.front.take() {
Dropper { front, remaining_length: self.length }; Dropper { front, remaining_length: self.length };
} }
} }
@ -1465,7 +1452,7 @@ impl<K, V> Iterator for IntoIter<K, V> {
None None
} else { } else {
self.length -= 1; self.length -= 1;
Some(unsafe { self.front.as_mut().unwrap().deallocating_next_unchecked() }) Some(unsafe { self.range.front.as_mut().unwrap().deallocating_next_unchecked() })
} }
} }
@ -1481,7 +1468,7 @@ impl<K, V> DoubleEndedIterator for IntoIter<K, V> {
None None
} else { } else {
self.length -= 1; self.length -= 1;
Some(unsafe { self.back.as_mut().unwrap().deallocating_next_back_unchecked() }) Some(unsafe { self.range.back.as_mut().unwrap().deallocating_next_back_unchecked() })
} }
} }
} }
@ -1698,7 +1685,7 @@ impl<'a, K, V> Iterator for Range<'a, K, V> {
type Item = (&'a K, &'a V); type Item = (&'a K, &'a V);
fn next(&mut self) -> Option<(&'a K, &'a V)> { fn next(&mut self) -> Option<(&'a K, &'a V)> {
if self.is_empty() { None } else { Some(unsafe { self.next_unchecked() }) } if self.inner.is_empty() { None } else { Some(unsafe { self.next_unchecked() }) }
} }
fn last(mut self) -> Option<(&'a K, &'a V)> { fn last(mut self) -> Option<(&'a K, &'a V)> {
@ -1749,12 +1736,8 @@ impl<K, V> ExactSizeIterator for ValuesMut<'_, K, V> {
impl<K, V> FusedIterator for ValuesMut<'_, K, V> {} impl<K, V> FusedIterator for ValuesMut<'_, K, V> {}
impl<'a, K, V> Range<'a, K, V> { impl<'a, K, V> Range<'a, K, V> {
fn is_empty(&self) -> bool {
self.front == self.back
}
unsafe fn next_unchecked(&mut self) -> (&'a K, &'a V) { unsafe fn next_unchecked(&mut self) -> (&'a K, &'a V) {
unsafe { self.front.as_mut().unwrap_unchecked().next_unchecked() } unsafe { self.inner.front.as_mut().unwrap_unchecked().next_unchecked() }
} }
} }
@ -1837,13 +1820,13 @@ impl<K, V> FusedIterator for IntoValues<K, V> {}
#[stable(feature = "btree_range", since = "1.17.0")] #[stable(feature = "btree_range", since = "1.17.0")]
impl<'a, K, V> DoubleEndedIterator for Range<'a, K, V> { impl<'a, K, V> DoubleEndedIterator for Range<'a, K, V> {
fn next_back(&mut self) -> Option<(&'a K, &'a V)> { fn next_back(&mut self) -> Option<(&'a K, &'a V)> {
if self.is_empty() { None } else { Some(unsafe { self.next_back_unchecked() }) } if self.inner.is_empty() { None } else { Some(unsafe { self.next_back_unchecked() }) }
} }
} }
impl<'a, K, V> Range<'a, K, V> { impl<'a, K, V> Range<'a, K, V> {
unsafe fn next_back_unchecked(&mut self) -> (&'a K, &'a V) { unsafe fn next_back_unchecked(&mut self) -> (&'a K, &'a V) {
unsafe { self.back.as_mut().unwrap_unchecked().next_back_unchecked() } unsafe { self.inner.back.as_mut().unwrap_unchecked().next_back_unchecked() }
} }
} }
@ -1853,7 +1836,7 @@ impl<K, V> FusedIterator for Range<'_, K, V> {}
#[stable(feature = "btree_range", since = "1.17.0")] #[stable(feature = "btree_range", since = "1.17.0")]
impl<K, V> Clone for Range<'_, K, V> { impl<K, V> Clone for Range<'_, K, V> {
fn clone(&self) -> Self { fn clone(&self) -> Self {
Range { front: self.front, back: self.back } Range { inner: LeafRange { front: self.inner.front, back: self.inner.back } }
} }
} }
@ -1862,7 +1845,7 @@ impl<'a, K, V> Iterator for RangeMut<'a, K, V> {
type Item = (&'a K, &'a mut V); type Item = (&'a K, &'a mut V);
fn next(&mut self) -> Option<(&'a K, &'a mut V)> { fn next(&mut self) -> Option<(&'a K, &'a mut V)> {
if self.is_empty() { None } else { Some(unsafe { self.next_unchecked() }) } if self.inner.is_empty() { None } else { Some(unsafe { self.next_unchecked() }) }
} }
fn last(mut self) -> Option<(&'a K, &'a mut V)> { fn last(mut self) -> Option<(&'a K, &'a mut V)> {
@ -1879,28 +1862,21 @@ impl<'a, K, V> Iterator for RangeMut<'a, K, V> {
} }
impl<'a, K, V> RangeMut<'a, K, V> { impl<'a, K, V> RangeMut<'a, K, V> {
fn is_empty(&self) -> bool {
self.front == self.back
}
unsafe fn next_unchecked(&mut self) -> (&'a K, &'a mut V) { unsafe fn next_unchecked(&mut self) -> (&'a K, &'a mut V) {
unsafe { self.front.as_mut().unwrap_unchecked().next_unchecked() } unsafe { self.inner.front.as_mut().unwrap_unchecked().next_unchecked() }
} }
/// Returns an iterator of references over the remaining items. /// Returns an iterator of references over the remaining items.
#[inline] #[inline]
pub(super) fn iter(&self) -> Range<'_, K, V> { pub(super) fn iter(&self) -> Range<'_, K, V> {
Range { Range { inner: self.inner.reborrow() }
front: self.front.as_ref().map(|f| f.reborrow()),
back: self.back.as_ref().map(|b| b.reborrow()),
}
} }
} }
#[stable(feature = "btree_range", since = "1.17.0")] #[stable(feature = "btree_range", since = "1.17.0")]
impl<'a, K, V> DoubleEndedIterator for RangeMut<'a, K, V> { impl<'a, K, V> DoubleEndedIterator for RangeMut<'a, K, V> {
fn next_back(&mut self) -> Option<(&'a K, &'a mut V)> { fn next_back(&mut self) -> Option<(&'a K, &'a mut V)> {
if self.is_empty() { None } else { Some(unsafe { self.next_back_unchecked() }) } if self.inner.is_empty() { None } else { Some(unsafe { self.next_back_unchecked() }) }
} }
} }
@ -1909,7 +1885,7 @@ impl<K, V> FusedIterator for RangeMut<'_, K, V> {}
impl<'a, K, V> RangeMut<'a, K, V> { impl<'a, K, V> RangeMut<'a, K, V> {
unsafe fn next_back_unchecked(&mut self) -> (&'a K, &'a mut V) { unsafe fn next_back_unchecked(&mut self) -> (&'a K, &'a mut V) {
unsafe { self.back.as_mut().unwrap_unchecked().next_back_unchecked() } unsafe { self.inner.back.as_mut().unwrap_unchecked().next_back_unchecked() }
} }
} }
@ -2043,11 +2019,11 @@ impl<K, V> BTreeMap<K, V> {
#[stable(feature = "rust1", since = "1.0.0")] #[stable(feature = "rust1", since = "1.0.0")]
pub fn iter(&self) -> Iter<'_, K, V> { pub fn iter(&self) -> Iter<'_, K, V> {
if let Some(root) = &self.root { if let Some(root) = &self.root {
let (f, b) = root.reborrow().full_range(); let full_range = root.reborrow().full_range();
Iter { range: Range { front: Some(f), back: Some(b) }, length: self.length } Iter { range: Range { inner: full_range }, length: self.length }
} else { } else {
Iter { range: Range { front: None, back: None }, length: 0 } Iter { range: Range { inner: LeafRange::none() }, length: 0 }
} }
} }
@ -2075,14 +2051,17 @@ impl<K, V> BTreeMap<K, V> {
#[stable(feature = "rust1", since = "1.0.0")] #[stable(feature = "rust1", since = "1.0.0")]
pub fn iter_mut(&mut self) -> IterMut<'_, K, V> { pub fn iter_mut(&mut self) -> IterMut<'_, K, V> {
if let Some(root) = &mut self.root { if let Some(root) = &mut self.root {
let (f, b) = root.borrow_valmut().full_range(); let full_range = root.borrow_valmut().full_range();
IterMut { IterMut {
range: RangeMut { front: Some(f), back: Some(b), _marker: PhantomData }, range: RangeMut { inner: full_range, _marker: PhantomData },
length: self.length, length: self.length,
} }
} else { } else {
IterMut { range: RangeMut { front: None, back: None, _marker: PhantomData }, length: 0 } IterMut {
range: RangeMut { inner: LeafRange::none(), _marker: PhantomData },
length: 0,
}
} }
} }

View File

@ -7,6 +7,29 @@ use core::ptr;
use super::node::{marker, ForceResult::*, Handle, NodeRef}; use super::node::{marker, ForceResult::*, Handle, NodeRef};
use super::search::SearchResult; use super::search::SearchResult;
pub struct LeafRange<BorrowType, K, V> {
pub front: Option<Handle<NodeRef<BorrowType, K, V, marker::Leaf>, marker::Edge>>,
pub back: Option<Handle<NodeRef<BorrowType, K, V, marker::Leaf>, marker::Edge>>,
}
impl<BorrowType, K, V> LeafRange<BorrowType, K, V> {
pub fn none() -> Self {
LeafRange { front: None, back: None }
}
pub fn is_empty(&self) -> bool {
self.front == self.back
}
/// Temporarily takes out another, immutable equivalent of the same range.
pub fn reborrow(&self) -> LeafRange<marker::Immut<'_>, K, V> {
LeafRange {
front: self.front.as_ref().map(|f| f.reborrow()),
back: self.back.as_ref().map(|b| b.reborrow()),
}
}
}
/// Finds the leaf edges delimiting a specified range in or underneath a node. /// Finds the leaf edges delimiting a specified range in or underneath a node.
/// ///
/// The result is meaningful only if the tree is ordered by key, like the tree /// The result is meaningful only if the tree is ordered by key, like the tree
@ -15,10 +38,7 @@ fn range_search<BorrowType: marker::BorrowType, K, V, Q, R>(
root1: NodeRef<BorrowType, K, V, marker::LeafOrInternal>, root1: NodeRef<BorrowType, K, V, marker::LeafOrInternal>,
root2: NodeRef<BorrowType, K, V, marker::LeafOrInternal>, root2: NodeRef<BorrowType, K, V, marker::LeafOrInternal>,
range: R, range: R,
) -> ( ) -> LeafRange<BorrowType, K, V>
Handle<NodeRef<BorrowType, K, V, marker::Leaf>, marker::Edge>,
Handle<NodeRef<BorrowType, K, V, marker::Leaf>, marker::Edge>,
)
where where
Q: ?Sized + Ord, Q: ?Sized + Ord,
K: Borrow<Q>, K: Borrow<Q>,
@ -92,7 +112,7 @@ where
} }
match (front.force(), back.force()) { match (front.force(), back.force()) {
(Leaf(f), Leaf(b)) => { (Leaf(f), Leaf(b)) => {
return (f, b); return LeafRange { front: Some(f), back: Some(b) };
} }
(Internal(min_int), Internal(max_int)) => { (Internal(min_int), Internal(max_int)) => {
min_node = min_int.descend(); min_node = min_int.descend();
@ -108,10 +128,7 @@ where
fn full_range<BorrowType: marker::BorrowType, K, V>( fn full_range<BorrowType: marker::BorrowType, K, V>(
root1: NodeRef<BorrowType, K, V, marker::LeafOrInternal>, root1: NodeRef<BorrowType, K, V, marker::LeafOrInternal>,
root2: NodeRef<BorrowType, K, V, marker::LeafOrInternal>, root2: NodeRef<BorrowType, K, V, marker::LeafOrInternal>,
) -> ( ) -> LeafRange<BorrowType, K, V> {
Handle<NodeRef<BorrowType, K, V, marker::Leaf>, marker::Edge>,
Handle<NodeRef<BorrowType, K, V, marker::Leaf>, marker::Edge>,
) {
let mut min_node = root1; let mut min_node = root1;
let mut max_node = root2; let mut max_node = root2;
loop { loop {
@ -119,7 +136,7 @@ fn full_range<BorrowType: marker::BorrowType, K, V>(
let back = max_node.last_edge(); let back = max_node.last_edge();
match (front.force(), back.force()) { match (front.force(), back.force()) {
(Leaf(f), Leaf(b)) => { (Leaf(f), Leaf(b)) => {
return (f, b); return LeafRange { front: Some(f), back: Some(b) };
} }
(Internal(min_int), Internal(max_int)) => { (Internal(min_int), Internal(max_int)) => {
min_node = min_int.descend(); min_node = min_int.descend();
@ -135,13 +152,7 @@ impl<'a, K: 'a, V: 'a> NodeRef<marker::Immut<'a>, K, V, marker::LeafOrInternal>
/// ///
/// The result is meaningful only if the tree is ordered by key, like the tree /// The result is meaningful only if the tree is ordered by key, like the tree
/// in a `BTreeMap` is. /// in a `BTreeMap` is.
pub fn range_search<Q, R>( pub fn range_search<Q, R>(self, range: R) -> LeafRange<marker::Immut<'a>, K, V>
self,
range: R,
) -> (
Handle<NodeRef<marker::Immut<'a>, K, V, marker::Leaf>, marker::Edge>,
Handle<NodeRef<marker::Immut<'a>, K, V, marker::Leaf>, marker::Edge>,
)
where where
Q: ?Sized + Ord, Q: ?Sized + Ord,
K: Borrow<Q>, K: Borrow<Q>,
@ -151,12 +162,7 @@ impl<'a, K: 'a, V: 'a> NodeRef<marker::Immut<'a>, K, V, marker::LeafOrInternal>
} }
/// Finds the pair of leaf edges delimiting an entire tree. /// Finds the pair of leaf edges delimiting an entire tree.
pub fn full_range( pub fn full_range(self) -> LeafRange<marker::Immut<'a>, K, V> {
self,
) -> (
Handle<NodeRef<marker::Immut<'a>, K, V, marker::Leaf>, marker::Edge>,
Handle<NodeRef<marker::Immut<'a>, K, V, marker::Leaf>, marker::Edge>,
) {
full_range(self, self) full_range(self, self)
} }
} }
@ -168,13 +174,7 @@ impl<'a, K: 'a, V: 'a> NodeRef<marker::ValMut<'a>, K, V, marker::LeafOrInternal>
/// ///
/// The result is meaningful only if the tree is ordered by key, like the tree /// The result is meaningful only if the tree is ordered by key, like the tree
/// in a `BTreeMap` is. /// in a `BTreeMap` is.
pub fn range_search<Q, R>( pub fn range_search<Q, R>(self, range: R) -> LeafRange<marker::ValMut<'a>, K, V>
self,
range: R,
) -> (
Handle<NodeRef<marker::ValMut<'a>, K, V, marker::Leaf>, marker::Edge>,
Handle<NodeRef<marker::ValMut<'a>, K, V, marker::Leaf>, marker::Edge>,
)
where where
Q: ?Sized + Ord, Q: ?Sized + Ord,
K: Borrow<Q>, K: Borrow<Q>,
@ -189,12 +189,7 @@ impl<'a, K: 'a, V: 'a> NodeRef<marker::ValMut<'a>, K, V, marker::LeafOrInternal>
/// Splits a unique reference into a pair of leaf edges delimiting the full range of the tree. /// Splits a unique reference into a pair of leaf edges delimiting the full range of the tree.
/// The results are non-unique references allowing mutation (of values only), so must be used /// The results are non-unique references allowing mutation (of values only), so must be used
/// with care. /// with care.
pub fn full_range( pub fn full_range(self) -> LeafRange<marker::ValMut<'a>, K, V> {
self,
) -> (
Handle<NodeRef<marker::ValMut<'a>, K, V, marker::Leaf>, marker::Edge>,
Handle<NodeRef<marker::ValMut<'a>, K, V, marker::Leaf>, marker::Edge>,
) {
// We duplicate the root NodeRef here -- we will never visit the same KV // We duplicate the root NodeRef here -- we will never visit the same KV
// twice, and never end up with overlapping value references. // twice, and never end up with overlapping value references.
let self2 = unsafe { ptr::read(&self) }; let self2 = unsafe { ptr::read(&self) };
@ -206,12 +201,7 @@ impl<K, V> NodeRef<marker::Dying, K, V, marker::LeafOrInternal> {
/// Splits a unique reference into a pair of leaf edges delimiting the full range of the tree. /// Splits a unique reference into a pair of leaf edges delimiting the full range of the tree.
/// The results are non-unique references allowing massively destructive mutation, so must be /// The results are non-unique references allowing massively destructive mutation, so must be
/// used with the utmost care. /// used with the utmost care.
pub fn full_range( pub fn full_range(self) -> LeafRange<marker::Dying, K, V> {
self,
) -> (
Handle<NodeRef<marker::Dying, K, V, marker::Leaf>, marker::Edge>,
Handle<NodeRef<marker::Dying, K, V, marker::Leaf>, marker::Edge>,
) {
// We duplicate the root NodeRef here -- we will never access it in a way // We duplicate the root NodeRef here -- we will never access it in a way
// that overlaps references obtained from the root. // that overlaps references obtained from the root.
let self2 = unsafe { ptr::read(&self) }; let self2 = unsafe { ptr::read(&self) };