use core::borrow::Borrow;
use core::cmp::Ordering;
use core::convert::Infallible;
use core::fmt::{self, Debug};
use core::hash::{Hash, Hasher};
use core::iter::FusedIterator;
use core::marker::PhantomData;
use core::mem::{self, ManuallyDrop};
use core::ops::{Bound, Index, RangeBounds};
use crate::ptr;
#[cfg(test)]
use crate::testing::*;
use crate::alloc::{AllocError, Allocator, Global};
use crate::boxed::Box;
use crate::clone::TryClone;
use crate::error::{CustomError, Error};
use crate::iter::{TryExtend, TryFromIteratorIn};
use super::borrow::DormantMutRef;
use super::navigate::{LazyLeafRange, LeafRange};
use super::node::{self, marker, ForceResult::*, Handle, NodeRef, Root};
use super::search::{SearchBound, SearchResult::*};
use super::set_val::SetValZST;
use super::Recover;
pub use entry::{Entry, OccupiedEntry, OccupiedError, VacantEntry};
mod entry;
pub(crate) type CmpFn<C, Q, E> = fn(&mut C, &Q, &Q) -> Result<Ordering, E>;
use Entry::*;
macro_rules! into_iter {
($this:expr) => {{
let length = mem::take(&mut $this.length);
if let Some(root) = $this.root.take() {
let full_range = root.into_dying().full_range();
IntoIter {
range: full_range,
length,
alloc: &*$this.alloc,
}
} else {
IntoIter {
range: LazyLeafRange::none(),
length: 0,
alloc: &*$this.alloc,
}
}
}};
}
#[inline(always)]
pub(crate) fn into_ok<T>(result: Result<T, Infallible>) -> T {
match result {
Ok(value) => value,
#[allow(unreachable_patterns)]
Err(error) => match error {},
}
}
#[inline(always)]
pub(crate) fn infallible_cmp<T>(_: &mut (), a: &T, b: &T) -> Result<Ordering, Infallible>
where
T: ?Sized + Ord,
{
Ok(a.cmp(b))
}
pub(super) const MIN_LEN: usize = node::MIN_LEN_AFTER_SPLIT;
pub struct BTreeMap<K, V, A: Allocator = Global> {
root: Option<Root<K, V>>,
length: usize,
pub(super) alloc: ManuallyDrop<A>,
_marker: PhantomData<Box<(K, V)>>,
}
#[cfg(rune_nightly)]
unsafe impl<#[may_dangle] K, #[may_dangle] V, A: Allocator> Drop for BTreeMap<K, V, A> {
fn drop(&mut self) {
drop(unsafe { ptr::read(self) }.into_iter())
}
}
#[cfg(not(rune_nightly))]
impl<K, V, A: Allocator> Drop for BTreeMap<K, V, A> {
fn drop(&mut self) {
drop(unsafe { ptr::read(self) }.into_iter())
}
}
impl<K, V, A: Allocator> core::panic::UnwindSafe for BTreeMap<K, V, A>
where
A: core::panic::UnwindSafe,
K: core::panic::RefUnwindSafe,
V: core::panic::RefUnwindSafe,
{
}
impl<K: TryClone, V: TryClone, A: Allocator + Clone> TryClone for BTreeMap<K, V, A> {
fn try_clone(&self) -> Result<BTreeMap<K, V, A>, Error> {
fn clone_subtree<'a, K, V, A>(
node: NodeRef<marker::Immut<'a>, K, V, marker::LeafOrInternal>,
alloc: &A,
) -> Result<BTreeMap<K, V, A>, Error>
where
K: 'a + TryClone,
V: 'a + TryClone,
A: Allocator + Clone,
{
match node.force() {
Leaf(leaf) => {
let mut out_tree = BTreeMap {
root: Some(Root::new(alloc)?),
length: 0,
alloc: ManuallyDrop::new(alloc.clone()),
_marker: PhantomData,
};
{
let root = out_tree.root.as_mut().unwrap(); let mut out_node = match root.borrow_mut().force() {
Leaf(leaf) => leaf,
Internal(_) => unreachable!(),
};
let mut in_edge = leaf.first_edge();
while let Ok(kv) = in_edge.right_kv() {
let (k, v) = kv.into_kv();
in_edge = kv.right_edge();
out_node.push(k.try_clone()?, v.try_clone()?);
out_tree.length += 1;
}
}
Ok(out_tree)
}
Internal(internal) => {
let mut out_tree = clone_subtree(internal.first_edge().descend(), alloc)?;
{
let out_root = out_tree.root.as_mut().unwrap();
let mut out_node = out_root.push_internal_level(alloc)?;
let mut in_edge = internal.first_edge();
while let Ok(kv) = in_edge.right_kv() {
let (k, v) = kv.into_kv();
in_edge = kv.right_edge();
let k = (*k).try_clone()?;
let v = (*v).try_clone()?;
let subtree = clone_subtree(in_edge.descend(), alloc)?;
let (subroot, sublength) = unsafe {
let subtree = ManuallyDrop::new(subtree);
let root = ptr::read(&subtree.root);
let length = subtree.length;
(root, length)
};
let subroot = match subroot {
Some(subroot) => subroot,
None => Root::new(alloc)?,
};
out_node.push(k, v, subroot);
out_tree.length += 1 + sublength;
}
}
Ok(out_tree)
}
}
}
if self.is_empty() {
Ok(BTreeMap::new_in((*self.alloc).clone()))
} else {
clone_subtree(self.root.as_ref().unwrap().reborrow(), &*self.alloc) }
}
}
#[cfg(test)]
impl<K: TryClone, V: TryClone, A: Allocator + Clone> Clone for BTreeMap<K, V, A> {
#[inline]
fn clone(&self) -> Self {
self.try_clone().abort()
}
#[inline]
fn clone_from(&mut self, source: &Self) {
self.try_clone_from(source).abort()
}
}
impl<K, Q: ?Sized, A: Allocator> Recover<Q> for BTreeMap<K, SetValZST, A>
where
K: Borrow<Q>,
{
type Key = K;
fn get<C: ?Sized, E>(&self, cx: &mut C, key: &Q, cmp: CmpFn<C, Q, E>) -> Result<Option<&K>, E> {
let Some(root_node) = self.root.as_ref() else {
return Ok(None);
};
let root_node = root_node.reborrow();
Ok(match root_node.search_tree(cx, key, cmp)? {
Found(handle) => Some(handle.into_kv().0),
GoDown(_) => None,
})
}
fn take<C: ?Sized, E>(
&mut self,
cx: &mut C,
key: &Q,
cmp: CmpFn<C, Q, E>,
) -> Result<Option<K>, E> {
let (map, dormant_map) = DormantMutRef::new(self);
let Some(root_node) = map.root.as_mut() else {
return Ok(None);
};
let root_node = root_node.borrow_mut();
Ok(match root_node.search_tree(cx, key, cmp)? {
Found(handle) => {
let entry = OccupiedEntry {
handle,
dormant_map,
alloc: &*map.alloc,
_marker: PhantomData,
};
Some(entry.remove_kv().0)
}
GoDown(_) => None,
})
}
fn try_replace<C: ?Sized, E>(
&mut self,
cx: &mut C,
key: K,
cmp: CmpFn<C, Q, E>,
) -> Result<Result<Option<K>, AllocError>, E> {
let (map, dormant_map) = DormantMutRef::new(self);
let root_node = match &mut map.root {
Some(root) => root,
None => {
let root = match Root::new(&*map.alloc) {
Ok(root) => root,
Err(error) => return Ok(Err(error)),
};
map.root.insert(root)
}
};
let root_node = root_node.borrow_mut();
match root_node.search_tree(cx, key.borrow(), cmp)? {
Found(mut kv) => Ok(Ok(Some(mem::replace(kv.key_mut(), key)))),
GoDown(handle) => {
let entry = VacantEntry {
key,
handle: Some(handle),
dormant_map,
alloc: &*map.alloc,
_marker: PhantomData,
};
if let Err(error) = entry.try_insert(SetValZST) {
return Ok(Err(error));
}
Ok(Ok(None))
}
}
}
}
#[must_use = "iterators are lazy and do nothing unless consumed"]
pub struct IterRaw<K, V> {
range: LazyLeafRange<marker::Raw, K, V>,
length: usize,
}
impl<K, V> Iterator for IterRaw<K, V> {
type Item = (*const K, *const V);
fn next(&mut self) -> Option<(*const K, *const V)> {
if self.length == 0 {
None
} else {
self.length -= 1;
Some(unsafe { self.range.next_unchecked() })
}
}
fn size_hint(&self) -> (usize, Option<usize>) {
(self.length, Some(self.length))
}
fn last(mut self) -> Option<(*const K, *const V)> {
self.next_back()
}
}
impl<K, V> FusedIterator for IterRaw<K, V> {}
impl<K, V> DoubleEndedIterator for IterRaw<K, V> {
fn next_back(&mut self) -> Option<(*const K, *const V)> {
if self.length == 0 {
None
} else {
self.length -= 1;
Some(unsafe { self.range.next_back_unchecked() })
}
}
}
impl<K, V> ExactSizeIterator for IterRaw<K, V> {
fn len(&self) -> usize {
self.length
}
}
impl<K, V> Clone for IterRaw<K, V> {
fn clone(&self) -> Self {
IterRaw {
range: self.range.clone(),
length: self.length,
}
}
}
#[must_use = "iterators are lazy and do nothing unless consumed"]
pub struct Iter<'a, K: 'a, V: 'a> {
range: LazyLeafRange<marker::Immut<'a>, K, V>,
length: usize,
}
impl<K: fmt::Debug, V: fmt::Debug> fmt::Debug for Iter<'_, K, V> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_list().entries(self.clone()).finish()
}
}
impl<'a, K: 'a, V: 'a> Default for Iter<'a, K, V> {
fn default() -> Self {
Iter {
range: Default::default(),
length: 0,
}
}
}
pub struct IterMut<'a, K: 'a, V: 'a> {
range: LazyLeafRange<marker::ValMut<'a>, K, V>,
length: usize,
_marker: PhantomData<&'a mut (K, V)>,
}
impl<K: fmt::Debug, V: fmt::Debug> fmt::Debug for IterMut<'_, K, V> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let range = Iter {
range: self.range.reborrow(),
length: self.length,
};
f.debug_list().entries(range).finish()
}
}
impl<'a, K: 'a, V: 'a> Default for IterMut<'a, K, V> {
fn default() -> Self {
IterMut {
range: Default::default(),
length: 0,
_marker: PhantomData {},
}
}
}
pub struct IntoIter<K, V, A: Allocator = Global> {
range: LazyLeafRange<marker::Dying, K, V>,
length: usize,
alloc: A,
}
impl<K, V, A: Allocator> IntoIter<K, V, A> {
#[inline]
pub(super) fn iter(&self) -> Iter<'_, K, V> {
Iter {
range: self.range.reborrow(),
length: self.length,
}
}
}
impl<K: Debug, V: Debug, A: Allocator> Debug for IntoIter<K, V, A> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_list().entries(self.iter()).finish()
}
}
impl<K, V, A> Default for IntoIter<K, V, A>
where
A: Allocator + Default,
{
fn default() -> Self {
IntoIter {
range: Default::default(),
length: 0,
alloc: Default::default(),
}
}
}
#[must_use = "iterators are lazy and do nothing unless consumed"]
pub struct Keys<'a, K, V> {
inner: Iter<'a, K, V>,
}
impl<K: fmt::Debug, V> fmt::Debug for Keys<'_, K, V> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_list().entries(self.clone()).finish()
}
}
#[must_use = "iterators are lazy and do nothing unless consumed"]
pub struct Values<'a, K, V> {
inner: Iter<'a, K, V>,
}
impl<K, V: fmt::Debug> fmt::Debug for Values<'_, K, V> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_list().entries(self.clone()).finish()
}
}
#[must_use = "iterators are lazy and do nothing unless consumed"]
pub struct ValuesMut<'a, K, V> {
inner: IterMut<'a, K, V>,
}
impl<K, V: fmt::Debug> fmt::Debug for ValuesMut<'_, K, V> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_list()
.entries(self.inner.iter().map(|(_, val)| val))
.finish()
}
}
#[must_use = "iterators are lazy and do nothing unless consumed"]
pub struct IntoKeys<K, V, A: Allocator = Global> {
inner: IntoIter<K, V, A>,
}
impl<K: fmt::Debug, V, A: Allocator> fmt::Debug for IntoKeys<K, V, A> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_list()
.entries(self.inner.iter().map(|(key, _)| key))
.finish()
}
}
#[must_use = "iterators are lazy and do nothing unless consumed"]
pub struct IntoValues<K, V, A: Allocator = Global> {
inner: IntoIter<K, V, A>,
}
impl<K, V: fmt::Debug, A: Allocator> fmt::Debug for IntoValues<K, V, A> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_list()
.entries(self.inner.iter().map(|(_, val)| val))
.finish()
}
}
#[must_use = "iterators are lazy and do nothing unless consumed"]
pub struct Range<'a, K: 'a, V: 'a> {
inner: LeafRange<marker::Immut<'a>, K, V>,
}
impl<K: fmt::Debug, V: fmt::Debug> fmt::Debug for Range<'_, K, V> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_list().entries(self.clone()).finish()
}
}
#[must_use = "iterators are lazy and do nothing unless consumed"]
pub struct RangeMut<'a, K: 'a, V: 'a> {
inner: LeafRange<marker::ValMut<'a>, K, V>,
_marker: PhantomData<&'a mut (K, V)>,
}
impl<K: fmt::Debug, V: fmt::Debug> fmt::Debug for RangeMut<'_, K, V> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let range = Range {
inner: self.inner.reborrow(),
};
f.debug_list().entries(range).finish()
}
}
impl<K, V> BTreeMap<K, V> {
#[must_use]
pub const fn new() -> BTreeMap<K, V> {
BTreeMap {
root: None,
length: 0,
alloc: ManuallyDrop::new(Global),
_marker: PhantomData,
}
}
#[cfg(test)]
pub(crate) fn from<const N: usize>(value: [(K, V); N]) -> Self
where
K: Ord,
{
Self::try_from(value).abort()
}
}
impl<K, V, A: Allocator> BTreeMap<K, V, A> {
pub fn new_in(alloc: A) -> BTreeMap<K, V, A> {
BTreeMap {
root: None,
length: 0,
alloc: ManuallyDrop::new(alloc),
_marker: PhantomData,
}
}
}
impl<K, V, A: Allocator> BTreeMap<K, V, A> {
pub fn clear(&mut self) {
drop(into_iter!(self));
}
}
impl<K, V, A: Allocator> BTreeMap<K, V, A> {
pub fn get<Q>(&self, key: &Q) -> Option<&V>
where
Q: ?Sized + Ord,
K: Borrow<Q> + Ord,
{
into_ok(self.get_with(&mut (), key, infallible_cmp))
}
pub(crate) fn get_with<C, Q, E>(
&self,
cx: &mut C,
key: &Q,
cmp: CmpFn<C, Q, E>,
) -> Result<Option<&V>, E>
where
C: ?Sized,
Q: ?Sized,
K: Borrow<Q>,
{
let Some(root_node) = self.root.as_ref().map(NodeRef::reborrow) else {
return Ok(None);
};
Ok(match root_node.search_tree(cx, key, cmp)? {
Found(handle) => Some(handle.into_kv().1),
GoDown(_) => None,
})
}
pub fn get_key_value<Q>(&self, k: &Q) -> Option<(&K, &V)>
where
Q: ?Sized + Ord,
K: Borrow<Q> + Ord,
{
let root_node = self.root.as_ref()?.reborrow();
match into_ok(root_node.search_tree(&mut (), k, infallible_cmp)) {
Found(handle) => Some(handle.into_kv()),
GoDown(_) => None,
}
}
pub fn first_key_value(&self) -> Option<(&K, &V)> {
let root_node = self.root.as_ref()?.reborrow();
root_node
.first_leaf_edge()
.right_kv()
.ok()
.map(Handle::into_kv)
}
pub fn first_entry(&mut self) -> Option<OccupiedEntry<'_, K, V, A>> {
let (map, dormant_map) = DormantMutRef::new(self);
let root_node = map.root.as_mut()?.borrow_mut();
let kv = root_node.first_leaf_edge().right_kv().ok()?;
Some(OccupiedEntry {
handle: kv.forget_node_type(),
dormant_map,
alloc: &*map.alloc,
_marker: PhantomData,
})
}
pub fn pop_first(&mut self) -> Option<(K, V)> {
self.first_entry().map(|entry| entry.remove_entry())
}
pub fn last_key_value(&self) -> Option<(&K, &V)> {
let root_node = self.root.as_ref()?.reborrow();
root_node
.last_leaf_edge()
.left_kv()
.ok()
.map(Handle::into_kv)
}
pub fn last_entry(&mut self) -> Option<OccupiedEntry<'_, K, V, A>> {
let (map, dormant_map) = DormantMutRef::new(self);
let root_node = map.root.as_mut()?.borrow_mut();
let kv = root_node.last_leaf_edge().left_kv().ok()?;
Some(OccupiedEntry {
handle: kv.forget_node_type(),
dormant_map,
alloc: &*map.alloc,
_marker: PhantomData,
})
}
pub fn pop_last(&mut self) -> Option<(K, V)> {
self.last_entry().map(|entry| entry.remove_entry())
}
pub fn contains_key<Q>(&self, key: &Q) -> bool
where
Q: ?Sized + Ord,
K: Borrow<Q> + Ord,
{
into_ok(self.contains_key_with(&mut (), key, infallible_cmp))
}
pub(crate) fn contains_key_with<C, Q, E>(
&self,
cx: &mut C,
key: &Q,
cmp: CmpFn<C, Q, E>,
) -> Result<bool, E>
where
C: ?Sized,
Q: ?Sized + Ord,
K: Borrow<Q> + Ord,
{
Ok(self.get_with(cx, key, cmp)?.is_some())
}
pub fn get_mut<Q>(&mut self, key: &Q) -> Option<&mut V>
where
Q: ?Sized + Ord,
K: Borrow<Q> + Ord,
{
into_ok(self.get_mut_with(&mut (), key, infallible_cmp))
}
pub fn get_mut_with<C: ?Sized, Q: ?Sized, E>(
&mut self,
cx: &mut C,
key: &Q,
cmp: CmpFn<C, Q, E>,
) -> Result<Option<&mut V>, E>
where
K: Borrow<Q>,
{
let Some(root_node) = self.root.as_mut().map(NodeRef::borrow_mut) else {
return Ok(None);
};
Ok(match root_node.search_tree(cx, key, cmp)? {
Found(handle) => Some(handle.into_val_mut()),
GoDown(_) => None,
})
}
pub fn try_insert(&mut self, key: K, value: V) -> Result<Option<V>, AllocError>
where
K: Ord,
{
match self.entry(key) {
Occupied(mut entry) => Ok(Some(entry.insert(value))),
Vacant(entry) => {
entry.try_insert(value)?;
Ok(None)
}
}
}
#[cfg(test)]
pub(crate) fn insert(&mut self, key: K, value: V) -> Option<V>
where
K: Ord,
{
self.try_insert(key, value).abort()
}
pub fn try_insert_or(
&mut self,
key: K,
value: V,
) -> Result<&mut V, CustomError<OccupiedError<'_, K, V, A>>>
where
K: Ord,
{
match self.entry(key) {
Occupied(entry) => Err(CustomError::Custom(OccupiedError { entry, value })),
Vacant(entry) => Ok(entry.try_insert(value)?),
}
}
#[cfg(test)]
pub(crate) fn insert_or(
&mut self,
key: K,
value: V,
) -> Result<&mut V, OccupiedError<'_, K, V, A>>
where
K: Ord,
{
self.try_insert_or(key, value).custom_result()
}
pub fn remove<Q>(&mut self, key: &Q) -> Option<V>
where
Q: ?Sized + Ord,
K: Borrow<Q> + Ord,
{
self.remove_entry(key).map(|(_, v)| v)
}
pub fn remove_entry<Q>(&mut self, key: &Q) -> Option<(K, V)>
where
Q: ?Sized + Ord,
K: Borrow<Q> + Ord,
{
into_ok(self.remove_entry_with(&mut (), key, infallible_cmp))
}
pub(crate) fn remove_entry_with<C: ?Sized, Q: ?Sized, E>(
&mut self,
cx: &mut C,
key: &Q,
cmp: CmpFn<C, Q, E>,
) -> Result<Option<(K, V)>, E>
where
K: Borrow<Q>,
{
let (map, dormant_map) = DormantMutRef::new(self);
let Some(root_node) = map.root.as_mut().map(NodeRef::borrow_mut) else {
return Ok(None);
};
Ok(match root_node.search_tree(cx, key, cmp)? {
Found(handle) => {
let entry = OccupiedEntry {
handle,
dormant_map,
alloc: &*map.alloc,
_marker: PhantomData,
};
Some(entry.remove_entry())
}
GoDown(_) => None,
})
}
#[inline]
pub fn retain<F>(&mut self, mut f: F)
where
K: Ord,
F: FnMut(&K, &mut V) -> bool,
{
self.extract_if(|k, v| !f(k, v)).for_each(drop);
}
pub fn try_append(&mut self, other: &mut Self) -> Result<(), AllocError>
where
K: Ord,
{
if other.is_empty() {
return Ok(());
}
if self.is_empty() {
mem::swap(self, other);
return Ok(());
}
let self_iter = into_iter!(self);
let other_iter = into_iter!(other);
let root = match &mut self.root {
Some(root) => root,
None => self.root.insert(Root::new(&*self.alloc)?),
};
root.try_append_from_sorted_iters(self_iter, other_iter, &mut self.length, &*self.alloc)
}
#[cfg(test)]
pub(crate) fn append(&mut self, other: &mut Self)
where
K: Ord,
{
self.try_append(other).abort()
}
pub fn range<Q, R>(&self, range: R) -> Range<'_, K, V>
where
Q: ?Sized + Ord,
K: Borrow<Q> + Ord,
R: RangeBounds<Q>,
{
into_ok(self.range_with(&mut (), range, infallible_cmp))
}
pub(crate) fn range_with<C, Q, R, E>(
&self,
cx: &mut C,
range: R,
cmp: CmpFn<C, Q, E>,
) -> Result<Range<'_, K, V>, E>
where
C: ?Sized,
Q: ?Sized,
K: Borrow<Q>,
R: RangeBounds<Q>,
{
Ok(if let Some(root) = &self.root {
Range {
inner: root.reborrow().range_search(cx, range, cmp)?,
}
} else {
Range {
inner: LeafRange::none(),
}
})
}
pub fn range_mut<Q, R>(&mut self, range: R) -> RangeMut<'_, K, V>
where
Q: ?Sized + Ord,
K: Borrow<Q> + Ord,
R: RangeBounds<Q>,
{
into_ok(self.range_mut_with(&mut (), range, infallible_cmp))
}
pub(crate) fn range_mut_with<C: ?Sized, Q: ?Sized, R, E>(
&mut self,
cx: &mut C,
range: R,
cmp: CmpFn<C, Q, E>,
) -> Result<RangeMut<'_, K, V>, E>
where
K: Borrow<Q>,
R: RangeBounds<Q>,
{
Ok(if let Some(root) = &mut self.root {
RangeMut {
inner: root.borrow_valmut().range_search(cx, range, cmp)?,
_marker: PhantomData,
}
} else {
RangeMut {
inner: LeafRange::none(),
_marker: PhantomData,
}
})
}
pub fn entry(&mut self, key: K) -> Entry<'_, K, V, A>
where
K: Ord,
{
into_ok(self.entry_with(&mut (), key, infallible_cmp))
}
pub(crate) fn entry_with<C: ?Sized, E>(
&mut self,
cx: &mut C,
key: K,
cmp: CmpFn<C, K, E>,
) -> Result<Entry<'_, K, V, A>, E> {
let (map, dormant_map) = DormantMutRef::new(self);
Ok(match map.root {
None => Vacant(VacantEntry {
key,
handle: None,
dormant_map,
alloc: &*map.alloc,
_marker: PhantomData,
}),
Some(ref mut root) => match root.borrow_mut().search_tree(cx, &key, cmp)? {
Found(handle) => Occupied(OccupiedEntry {
handle,
dormant_map,
alloc: &*map.alloc,
_marker: PhantomData,
}),
GoDown(handle) => Vacant(VacantEntry {
key,
handle: Some(handle),
dormant_map,
alloc: &*map.alloc,
_marker: PhantomData,
}),
},
})
}
pub fn try_split_off<Q>(&mut self, key: &Q) -> Result<Self, Error>
where
Q: ?Sized + Ord,
K: Borrow<Q> + Ord,
A: Clone,
{
into_ok(self.try_split_off_with(&mut (), key, infallible_cmp))
}
#[cfg(test)]
pub(crate) fn split_off<Q>(&mut self, key: &Q) -> Self
where
Q: ?Sized + Ord,
K: Borrow<Q> + Ord,
A: Clone,
{
self.try_split_off(key).abort()
}
pub(crate) fn try_split_off_with<C: ?Sized, Q: ?Sized, E>(
&mut self,
cx: &mut C,
key: &Q,
cmp: CmpFn<C, Q, E>,
) -> Result<Result<Self, Error>, E>
where
K: Borrow<Q>,
A: Clone,
{
if self.is_empty() {
return Ok(Ok(Self::new_in((*self.alloc).clone())));
}
let total_num = self.len();
let left_root = self.root.as_mut().unwrap();
let right_root = match left_root.split_off(cx, key, &*self.alloc, cmp)? {
Ok(right_root) => right_root,
Err(error) => return Ok(Err(Error::from(error))),
};
let (new_left_len, right_len) = Root::calc_split_length(total_num, left_root, &right_root);
self.length = new_left_len;
Ok(Ok(BTreeMap {
root: Some(right_root),
length: right_len,
alloc: self.alloc.clone(),
_marker: PhantomData,
}))
}
pub fn extract_if<F>(&mut self, pred: F) -> ExtractIf<'_, K, V, F, A>
where
F: FnMut(&K, &mut V) -> bool,
{
let (inner, alloc) = self.extract_if_inner();
ExtractIf { pred, inner, alloc }
}
pub(super) fn extract_if_inner(&mut self) -> (ExtractIfInner<'_, K, V>, &A) {
if let Some(root) = self.root.as_mut() {
let (root, dormant_root) = DormantMutRef::new(root);
let front = root.borrow_mut().first_leaf_edge();
(
ExtractIfInner {
length: &mut self.length,
dormant_root: Some(dormant_root),
cur_leaf_edge: Some(front),
},
&self.alloc,
)
} else {
(
ExtractIfInner {
length: &mut self.length,
dormant_root: None,
cur_leaf_edge: None,
},
&self.alloc,
)
}
}
#[inline]
pub fn into_keys(self) -> IntoKeys<K, V, A> {
IntoKeys {
inner: self.into_iter(),
}
}
#[inline]
pub fn into_values(self) -> IntoValues<K, V, A> {
IntoValues {
inner: self.into_iter(),
}
}
}
impl<'a, K, V, A: Allocator> IntoIterator for &'a BTreeMap<K, V, A> {
type Item = (&'a K, &'a V);
type IntoIter = Iter<'a, K, V>;
fn into_iter(self) -> Iter<'a, K, V> {
self.iter()
}
}
impl<'a, K: 'a, V: 'a> Iterator for Iter<'a, K, V> {
type Item = (&'a K, &'a V);
fn next(&mut self) -> Option<(&'a K, &'a V)> {
if self.length == 0 {
None
} else {
self.length -= 1;
Some(unsafe { self.range.next_unchecked() })
}
}
fn size_hint(&self) -> (usize, Option<usize>) {
(self.length, Some(self.length))
}
fn last(mut self) -> Option<(&'a K, &'a V)> {
self.next_back()
}
fn min(mut self) -> Option<(&'a K, &'a V)>
where
(&'a K, &'a V): Ord,
{
self.next()
}
fn max(mut self) -> Option<(&'a K, &'a V)>
where
(&'a K, &'a V): Ord,
{
self.next_back()
}
}
impl<K, V> FusedIterator for Iter<'_, K, V> {}
impl<'a, K: 'a, V: 'a> DoubleEndedIterator for Iter<'a, K, V> {
fn next_back(&mut self) -> Option<(&'a K, &'a V)> {
if self.length == 0 {
None
} else {
self.length -= 1;
Some(unsafe { self.range.next_back_unchecked() })
}
}
}
impl<K, V> ExactSizeIterator for Iter<'_, K, V> {
fn len(&self) -> usize {
self.length
}
}
impl<K, V> Clone for Iter<'_, K, V> {
fn clone(&self) -> Self {
Iter {
range: self.range.clone(),
length: self.length,
}
}
}
impl<'a, K, V, A: Allocator> IntoIterator for &'a mut BTreeMap<K, V, A> {
type Item = (&'a K, &'a mut V);
type IntoIter = IterMut<'a, K, V>;
fn into_iter(self) -> IterMut<'a, K, V> {
self.iter_mut()
}
}
impl<'a, K, V> Iterator for IterMut<'a, K, V> {
type Item = (&'a K, &'a mut V);
fn next(&mut self) -> Option<(&'a K, &'a mut V)> {
if self.length == 0 {
None
} else {
self.length -= 1;
Some(unsafe { self.range.next_unchecked() })
}
}
fn size_hint(&self) -> (usize, Option<usize>) {
(self.length, Some(self.length))
}
fn last(mut self) -> Option<(&'a K, &'a mut V)> {
self.next_back()
}
fn min(mut self) -> Option<(&'a K, &'a mut V)>
where
(&'a K, &'a mut V): Ord,
{
self.next()
}
fn max(mut self) -> Option<(&'a K, &'a mut V)>
where
(&'a K, &'a mut V): Ord,
{
self.next_back()
}
}
impl<'a, K, V> DoubleEndedIterator for IterMut<'a, K, V> {
fn next_back(&mut self) -> Option<(&'a K, &'a mut V)> {
if self.length == 0 {
None
} else {
self.length -= 1;
Some(unsafe { self.range.next_back_unchecked() })
}
}
}
impl<K, V> ExactSizeIterator for IterMut<'_, K, V> {
fn len(&self) -> usize {
self.length
}
}
impl<K, V> FusedIterator for IterMut<'_, K, V> {}
impl<K, V> IterMut<'_, K, V> {
#[inline]
pub(super) fn iter(&self) -> Iter<'_, K, V> {
Iter {
range: self.range.reborrow(),
length: self.length,
}
}
}
impl<K, V, A: Allocator> IntoIterator for BTreeMap<K, V, A> {
type Item = (K, V);
type IntoIter = IntoIter<K, V, A>;
fn into_iter(self) -> IntoIter<K, V, A> {
let mut me = ManuallyDrop::new(self);
if let Some(root) = me.root.take() {
let full_range = root.into_dying().full_range();
IntoIter {
range: full_range,
length: me.length,
alloc: unsafe { ManuallyDrop::take(&mut me.alloc) },
}
} else {
IntoIter {
range: LazyLeafRange::none(),
length: 0,
alloc: unsafe { ManuallyDrop::take(&mut me.alloc) },
}
}
}
}
impl<K, V, A: Allocator> Drop for IntoIter<K, V, A> {
fn drop(&mut self) {
struct DropGuard<'a, K, V, A: Allocator>(&'a mut IntoIter<K, V, A>);
impl<K, V, A: Allocator> Drop for DropGuard<'_, K, V, A> {
fn drop(&mut self) {
while let Some(kv) = self.0.dying_next() {
unsafe { kv.drop_key_val() };
}
}
}
while let Some(kv) = self.dying_next() {
let guard = DropGuard(self);
unsafe { kv.drop_key_val() };
mem::forget(guard);
}
}
}
impl<K, V, A: Allocator> IntoIter<K, V, A> {
fn dying_next(
&mut self,
) -> Option<Handle<NodeRef<marker::Dying, K, V, marker::LeafOrInternal>, marker::KV>> {
if self.length == 0 {
self.range.deallocating_end(&self.alloc);
None
} else {
self.length -= 1;
Some(unsafe { self.range.deallocating_next_unchecked(&self.alloc) })
}
}
fn dying_next_back(
&mut self,
) -> Option<Handle<NodeRef<marker::Dying, K, V, marker::LeafOrInternal>, marker::KV>> {
if self.length == 0 {
self.range.deallocating_end(&self.alloc);
None
} else {
self.length -= 1;
Some(unsafe { self.range.deallocating_next_back_unchecked(&self.alloc) })
}
}
}
impl<K, V, A: Allocator> Iterator for IntoIter<K, V, A> {
type Item = (K, V);
fn next(&mut self) -> Option<(K, V)> {
self.dying_next().map(unsafe { |kv| kv.into_key_val() })
}
fn size_hint(&self) -> (usize, Option<usize>) {
(self.length, Some(self.length))
}
}
impl<K, V, A: Allocator> DoubleEndedIterator for IntoIter<K, V, A> {
fn next_back(&mut self) -> Option<(K, V)> {
self.dying_next_back()
.map(unsafe { |kv| kv.into_key_val() })
}
}
impl<K, V, A: Allocator> ExactSizeIterator for IntoIter<K, V, A> {
fn len(&self) -> usize {
self.length
}
}
impl<K, V, A: Allocator> FusedIterator for IntoIter<K, V, A> {}
impl<'a, K, V> Iterator for Keys<'a, K, V> {
type Item = &'a K;
fn next(&mut self) -> Option<&'a K> {
self.inner.next().map(|(k, _)| k)
}
fn size_hint(&self) -> (usize, Option<usize>) {
self.inner.size_hint()
}
fn last(mut self) -> Option<&'a K> {
self.next_back()
}
fn min(mut self) -> Option<&'a K>
where
&'a K: Ord,
{
self.next()
}
fn max(mut self) -> Option<&'a K>
where
&'a K: Ord,
{
self.next_back()
}
}
impl<'a, K, V> DoubleEndedIterator for Keys<'a, K, V> {
fn next_back(&mut self) -> Option<&'a K> {
self.inner.next_back().map(|(k, _)| k)
}
}
impl<K, V> ExactSizeIterator for Keys<'_, K, V> {
fn len(&self) -> usize {
self.inner.len()
}
}
impl<K, V> FusedIterator for Keys<'_, K, V> {}
impl<K, V> Clone for Keys<'_, K, V> {
fn clone(&self) -> Self {
Keys {
inner: self.inner.clone(),
}
}
}
impl<K, V> Default for Keys<'_, K, V> {
fn default() -> Self {
Keys {
inner: Default::default(),
}
}
}
impl<'a, K, V> Iterator for Values<'a, K, V> {
type Item = &'a V;
fn next(&mut self) -> Option<&'a V> {
self.inner.next().map(|(_, v)| v)
}
fn size_hint(&self) -> (usize, Option<usize>) {
self.inner.size_hint()
}
fn last(mut self) -> Option<&'a V> {
self.next_back()
}
}
impl<'a, K, V> DoubleEndedIterator for Values<'a, K, V> {
fn next_back(&mut self) -> Option<&'a V> {
self.inner.next_back().map(|(_, v)| v)
}
}
impl<K, V> ExactSizeIterator for Values<'_, K, V> {
fn len(&self) -> usize {
self.inner.len()
}
}
impl<K, V> FusedIterator for Values<'_, K, V> {}
impl<K, V> Clone for Values<'_, K, V> {
fn clone(&self) -> Self {
Values {
inner: self.inner.clone(),
}
}
}
impl<K, V> Default for Values<'_, K, V> {
fn default() -> Self {
Values {
inner: Default::default(),
}
}
}
#[must_use = "iterators are lazy and do nothing unless consumed"]
pub struct ExtractIf<'a, K, V, F, A: Allocator = Global>
where
F: 'a + FnMut(&K, &mut V) -> bool,
{
pred: F,
inner: ExtractIfInner<'a, K, V>,
alloc: &'a A,
}
pub(super) struct ExtractIfInner<'a, K, V> {
length: &'a mut usize,
dormant_root: Option<DormantMutRef<'a, Root<K, V>>>,
cur_leaf_edge: Option<Handle<NodeRef<marker::Mut<'a>, K, V, marker::Leaf>, marker::Edge>>,
}
impl<K, V, F> fmt::Debug for ExtractIf<'_, K, V, F>
where
K: fmt::Debug,
V: fmt::Debug,
F: FnMut(&K, &mut V) -> bool,
{
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_tuple("ExtractIf")
.field(&self.inner.peek())
.finish()
}
}
impl<K, V, F, A: Allocator> Iterator for ExtractIf<'_, K, V, F, A>
where
F: FnMut(&K, &mut V) -> bool,
{
type Item = (K, V);
fn next(&mut self) -> Option<(K, V)> {
self.inner.next(&mut self.pred, self.alloc)
}
fn size_hint(&self) -> (usize, Option<usize>) {
self.inner.size_hint()
}
}
impl<K, V> ExtractIfInner<'_, K, V> {
pub(super) fn peek(&self) -> Option<(&K, &V)> {
let edge = self.cur_leaf_edge.as_ref()?;
edge.reborrow().next_kv().ok().map(Handle::into_kv)
}
pub(super) fn next<F, A: Allocator>(&mut self, pred: &mut F, alloc: &A) -> Option<(K, V)>
where
F: FnMut(&K, &mut V) -> bool,
{
while let Ok(mut kv) = self.cur_leaf_edge.take()?.next_kv() {
let (k, v) = kv.kv_mut();
if pred(k, v) {
*self.length -= 1;
let (kv, pos) = kv.remove_kv_tracking(
|| {
let root = unsafe { self.dormant_root.take().unwrap().awaken() };
root.pop_internal_level(alloc);
self.dormant_root = Some(DormantMutRef::new(root).1);
},
alloc,
);
self.cur_leaf_edge = Some(pos);
return Some(kv);
}
self.cur_leaf_edge = Some(kv.next_leaf_edge());
}
None
}
pub(super) fn size_hint(&self) -> (usize, Option<usize>) {
(0, Some(*self.length))
}
}
impl<K, V, F> FusedIterator for ExtractIf<'_, K, V, F> where F: FnMut(&K, &mut V) -> bool {}
impl<'a, K, V> Iterator for Range<'a, K, V> {
type Item = (&'a K, &'a V);
fn next(&mut self) -> Option<(&'a K, &'a V)> {
self.inner.next_checked()
}
fn last(mut self) -> Option<(&'a K, &'a V)> {
self.next_back()
}
fn min(mut self) -> Option<(&'a K, &'a V)>
where
(&'a K, &'a V): Ord,
{
self.next()
}
fn max(mut self) -> Option<(&'a K, &'a V)>
where
(&'a K, &'a V): Ord,
{
self.next_back()
}
}
impl<K, V> Default for Range<'_, K, V> {
fn default() -> Self {
Range {
inner: Default::default(),
}
}
}
impl<'a, K, V> Iterator for ValuesMut<'a, K, V> {
type Item = &'a mut V;
fn next(&mut self) -> Option<&'a mut V> {
self.inner.next().map(|(_, v)| v)
}
fn size_hint(&self) -> (usize, Option<usize>) {
self.inner.size_hint()
}
fn last(mut self) -> Option<&'a mut V> {
self.next_back()
}
}
impl<'a, K, V> DoubleEndedIterator for ValuesMut<'a, K, V> {
fn next_back(&mut self) -> Option<&'a mut V> {
self.inner.next_back().map(|(_, v)| v)
}
}
impl<K, V> ExactSizeIterator for ValuesMut<'_, K, V> {
fn len(&self) -> usize {
self.inner.len()
}
}
impl<K, V> FusedIterator for ValuesMut<'_, K, V> {}
impl<K, V, A: Allocator> Iterator for IntoKeys<K, V, A> {
type Item = K;
fn next(&mut self) -> Option<K> {
self.inner.next().map(|(k, _)| k)
}
fn size_hint(&self) -> (usize, Option<usize>) {
self.inner.size_hint()
}
fn last(mut self) -> Option<K> {
self.next_back()
}
fn min(mut self) -> Option<K>
where
K: Ord,
{
self.next()
}
fn max(mut self) -> Option<K>
where
K: Ord,
{
self.next_back()
}
}
impl<K, V, A: Allocator> DoubleEndedIterator for IntoKeys<K, V, A> {
fn next_back(&mut self) -> Option<K> {
self.inner.next_back().map(|(k, _)| k)
}
}
impl<K, V, A: Allocator> ExactSizeIterator for IntoKeys<K, V, A> {
fn len(&self) -> usize {
self.inner.len()
}
}
impl<K, V, A: Allocator> FusedIterator for IntoKeys<K, V, A> {}
impl<K, V, A> Default for IntoKeys<K, V, A>
where
A: Allocator + Default + Clone,
{
fn default() -> Self {
IntoKeys {
inner: Default::default(),
}
}
}
impl<K, V, A: Allocator> Iterator for IntoValues<K, V, A> {
type Item = V;
fn next(&mut self) -> Option<V> {
self.inner.next().map(|(_, v)| v)
}
fn size_hint(&self) -> (usize, Option<usize>) {
self.inner.size_hint()
}
fn last(mut self) -> Option<V> {
self.next_back()
}
}
impl<K, V, A: Allocator> DoubleEndedIterator for IntoValues<K, V, A> {
fn next_back(&mut self) -> Option<V> {
self.inner.next_back().map(|(_, v)| v)
}
}
impl<K, V, A: Allocator> ExactSizeIterator for IntoValues<K, V, A> {
fn len(&self) -> usize {
self.inner.len()
}
}
impl<K, V, A: Allocator> FusedIterator for IntoValues<K, V, A> {}
impl<K, V, A> Default for IntoValues<K, V, A>
where
A: Allocator + Default + Clone,
{
fn default() -> Self {
IntoValues {
inner: Default::default(),
}
}
}
impl<'a, K, V> DoubleEndedIterator for Range<'a, K, V> {
fn next_back(&mut self) -> Option<(&'a K, &'a V)> {
self.inner.next_back_checked()
}
}
impl<K, V> FusedIterator for Range<'_, K, V> {}
impl<K, V> Clone for Range<'_, K, V> {
fn clone(&self) -> Self {
Range {
inner: self.inner.clone(),
}
}
}
impl<'a, K, V> Iterator for RangeMut<'a, K, V> {
type Item = (&'a K, &'a mut V);
fn next(&mut self) -> Option<(&'a K, &'a mut V)> {
self.inner.next_checked()
}
fn last(mut self) -> Option<(&'a K, &'a mut V)> {
self.next_back()
}
fn min(mut self) -> Option<(&'a K, &'a mut V)>
where
(&'a K, &'a mut V): Ord,
{
self.next()
}
fn max(mut self) -> Option<(&'a K, &'a mut V)>
where
(&'a K, &'a mut V): Ord,
{
self.next_back()
}
}
impl<'a, K, V> DoubleEndedIterator for RangeMut<'a, K, V> {
fn next_back(&mut self) -> Option<(&'a K, &'a mut V)> {
self.inner.next_back_checked()
}
}
impl<K, V> FusedIterator for RangeMut<'_, K, V> {}
impl<K: Ord, V, A: Allocator + Clone> TryExtend<(K, V)> for BTreeMap<K, V, A> {
#[inline]
fn try_extend<T: IntoIterator<Item = (K, V)>>(&mut self, iter: T) -> Result<(), Error> {
for (k, v) in iter {
self.try_insert(k, v)?;
}
Ok(())
}
}
#[cfg(test)]
impl<K: Ord, V, A: Allocator + Clone> Extend<(K, V)> for BTreeMap<K, V, A> {
#[inline]
fn extend<T: IntoIterator<Item = (K, V)>>(&mut self, iter: T) {
self.try_extend(iter).abort();
}
}
impl<'a, K: Ord + Copy, V: Copy, A: Allocator + Clone> TryExtend<(&'a K, &'a V)>
for BTreeMap<K, V, A>
{
fn try_extend<I: IntoIterator<Item = (&'a K, &'a V)>>(&mut self, iter: I) -> Result<(), Error> {
self.try_extend(iter.into_iter().map(|(&key, &value)| (key, value)))
}
}
#[cfg(test)]
impl<'a, K: Ord + Copy, V: Copy, A: Allocator + Clone> Extend<(&'a K, &'a V)>
for BTreeMap<K, V, A>
{
fn extend<I: IntoIterator<Item = (&'a K, &'a V)>>(&mut self, iter: I) {
self.try_extend(iter).abort();
}
}
impl<K: Hash, V: Hash, A: Allocator> Hash for BTreeMap<K, V, A> {
fn hash<H: Hasher>(&self, state: &mut H) {
state.write_usize(self.len());
for elt in self {
elt.hash(state);
}
}
}
impl<K, V> Default for BTreeMap<K, V> {
fn default() -> BTreeMap<K, V> {
BTreeMap::new()
}
}
impl<K: PartialEq, V: PartialEq, A: Allocator> PartialEq for BTreeMap<K, V, A> {
fn eq(&self, other: &BTreeMap<K, V, A>) -> bool {
self.len() == other.len() && self.iter().zip(other).all(|(a, b)| a == b)
}
}
impl<K: Eq, V: Eq, A: Allocator> Eq for BTreeMap<K, V, A> {}
impl<K: PartialOrd, V: PartialOrd, A: Allocator> PartialOrd for BTreeMap<K, V, A> {
#[inline]
fn partial_cmp(&self, other: &BTreeMap<K, V, A>) -> Option<Ordering> {
self.iter().partial_cmp(other.iter())
}
}
impl<K: Ord, V: Ord, A: Allocator> Ord for BTreeMap<K, V, A> {
#[inline]
fn cmp(&self, other: &BTreeMap<K, V, A>) -> Ordering {
self.iter().cmp(other.iter())
}
}
impl<K: Debug, V: Debug, A: Allocator> Debug for BTreeMap<K, V, A> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_map().entries(self.iter()).finish()
}
}
impl<K, Q: ?Sized, V, A: Allocator> Index<&Q> for BTreeMap<K, V, A>
where
K: Borrow<Q> + Ord,
Q: Ord,
{
type Output = V;
#[inline]
fn index(&self, key: &Q) -> &V {
self.get(key).expect("no entry found for key")
}
}
impl<K, V, A: Allocator> BTreeMap<K, V, A> {
pub fn iter(&self) -> Iter<'_, K, V> {
if let Some(root) = &self.root {
let full_range = root.reborrow().full_range();
Iter {
range: full_range,
length: self.length,
}
} else {
Iter {
range: LazyLeafRange::none(),
length: 0,
}
}
}
pub unsafe fn iter_raw(&self) -> IterRaw<K, V> {
if let Some(root) = &self.root {
let full_range = root.raw().full_range();
IterRaw {
range: full_range,
length: self.length,
}
} else {
IterRaw {
range: LazyLeafRange::none(),
length: 0,
}
}
}
pub fn iter_mut(&mut self) -> IterMut<'_, K, V> {
if let Some(root) = &mut self.root {
let full_range = root.borrow_valmut().full_range();
IterMut {
range: full_range,
length: self.length,
_marker: PhantomData,
}
} else {
IterMut {
range: LazyLeafRange::none(),
length: 0,
_marker: PhantomData,
}
}
}
pub fn keys(&self) -> Keys<'_, K, V> {
Keys { inner: self.iter() }
}
pub fn values(&self) -> Values<'_, K, V> {
Values { inner: self.iter() }
}
pub fn values_mut(&mut self) -> ValuesMut<'_, K, V> {
ValuesMut {
inner: self.iter_mut(),
}
}
#[must_use]
pub const fn len(&self) -> usize {
self.length
}
#[must_use]
pub const fn is_empty(&self) -> bool {
self.len() == 0
}
pub fn lower_bound<Q>(&self, bound: Bound<&Q>) -> Cursor<'_, K, V>
where
K: Borrow<Q> + Ord,
Q: Ord,
{
into_ok(self.lower_bound_with(&mut (), bound, infallible_cmp))
}
pub(crate) fn lower_bound_with<C, Q, E>(
&self,
cx: &mut C,
bound: Bound<&Q>,
cmp: CmpFn<C, Q, E>,
) -> Result<Cursor<'_, K, V>, E>
where
K: Borrow<Q>,
{
let Some(root_node) = self.root.as_ref().map(NodeRef::reborrow) else {
return Ok(Cursor {
current: None,
root: None,
});
};
let edge = root_node.lower_bound(cx, SearchBound::from_range(bound), cmp)?;
Ok(Cursor {
current: edge.next_kv().ok(),
root: self.root.as_ref(),
})
}
pub fn lower_bound_mut<Q>(&mut self, bound: Bound<&Q>) -> CursorMut<'_, K, V, A>
where
Q: ?Sized + Ord,
K: Borrow<Q> + Ord,
{
into_ok(self.lower_bound_mut_with(&mut (), bound, infallible_cmp))
}
pub(crate) fn lower_bound_mut_with<C, Q, E>(
&mut self,
cx: &mut C,
bound: Bound<&Q>,
cmp: CmpFn<C, Q, E>,
) -> Result<CursorMut<'_, K, V, A>, E>
where
C: ?Sized,
Q: ?Sized,
K: Borrow<Q>,
{
let (root, dormant_root) = DormantMutRef::new(&mut self.root);
let Some(root_node) = root.as_mut().map(NodeRef::borrow_mut) else {
return Ok(CursorMut {
current: None,
root: dormant_root,
length: &mut self.length,
alloc: &mut *self.alloc,
});
};
let edge = root_node.lower_bound(cx, SearchBound::from_range(bound), cmp)?;
Ok(CursorMut {
current: edge.next_kv().ok(),
root: dormant_root,
length: &mut self.length,
alloc: &mut *self.alloc,
})
}
pub fn upper_bound<Q>(&self, bound: Bound<&Q>) -> Cursor<'_, K, V>
where
K: Borrow<Q> + Ord,
Q: Ord,
{
into_ok(self.upper_bound_with(&mut (), bound, infallible_cmp))
}
pub(crate) fn upper_bound_with<C: ?Sized, Q: ?Sized, E>(
&self,
cx: &mut C,
bound: Bound<&Q>,
cmp: CmpFn<C, Q, E>,
) -> Result<Cursor<'_, K, V>, E>
where
K: Borrow<Q>,
{
let Some(root_node) = self.root.as_ref().map(NodeRef::reborrow) else {
return Ok(Cursor {
current: None,
root: None,
});
};
let edge = root_node.upper_bound(cx, SearchBound::from_range(bound), cmp)?;
Ok(Cursor {
current: edge.next_back_kv().ok(),
root: self.root.as_ref(),
})
}
pub fn upper_bound_mut<Q>(&mut self, bound: Bound<&Q>) -> CursorMut<'_, K, V, A>
where
Q: ?Sized + Ord,
K: Borrow<Q>,
{
into_ok(self.upper_bound_mut_with(&mut (), bound, infallible_cmp))
}
pub(crate) fn upper_bound_mut_with<C: ?Sized, Q: ?Sized, E>(
&mut self,
cx: &mut C,
bound: Bound<&Q>,
cmp: CmpFn<C, Q, E>,
) -> Result<CursorMut<'_, K, V, A>, E>
where
K: Borrow<Q>,
{
let (root, dormant_root) = DormantMutRef::new(&mut self.root);
let Some(root_node) = root.as_mut().map(NodeRef::borrow_mut) else {
return Ok(CursorMut {
current: None,
root: dormant_root,
length: &mut self.length,
alloc: &mut *self.alloc,
});
};
let edge = root_node.upper_bound(cx, SearchBound::from_range(bound), cmp)?;
Ok(CursorMut {
current: edge.next_back_kv().ok(),
root: dormant_root,
length: &mut self.length,
alloc: &mut *self.alloc,
})
}
}
pub struct Cursor<'a, K: 'a, V: 'a> {
current: Option<Handle<NodeRef<marker::Immut<'a>, K, V, marker::LeafOrInternal>, marker::KV>>,
root: Option<&'a node::Root<K, V>>,
}
impl<K, V> Clone for Cursor<'_, K, V> {
fn clone(&self) -> Self {
let Cursor { current, root } = *self;
Cursor { current, root }
}
}
impl<K: Debug, V: Debug> Debug for Cursor<'_, K, V> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_tuple("Cursor").field(&self.key_value()).finish()
}
}
pub struct CursorMut<'a, K: 'a, V: 'a, A = Global> {
current: Option<Handle<NodeRef<marker::Mut<'a>, K, V, marker::LeafOrInternal>, marker::KV>>,
#[cfg_attr(not(test), allow(unused))]
root: DormantMutRef<'a, Option<node::Root<K, V>>>,
#[cfg_attr(not(test), allow(unused))]
length: &'a mut usize,
#[cfg_attr(not(test), allow(unused))]
alloc: &'a mut A,
}
impl<K: Debug, V: Debug, A> Debug for CursorMut<'_, K, V, A> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_tuple("CursorMut").field(&self.key_value()).finish()
}
}
impl<'a, K, V> Cursor<'a, K, V> {
#[cfg(test)]
pub(crate) fn move_next(&mut self) {
match self.current.take() {
None => {
self.current = self.root.and_then(|root| {
root.reborrow()
.first_leaf_edge()
.forget_node_type()
.right_kv()
.ok()
});
}
Some(current) => {
self.current = current.next_leaf_edge().next_kv().ok();
}
}
}
#[cfg(test)]
pub(crate) fn move_prev(&mut self) {
match self.current.take() {
None => {
self.current = self.root.and_then(|root| {
root.reborrow()
.last_leaf_edge()
.forget_node_type()
.left_kv()
.ok()
});
}
Some(current) => {
self.current = current.next_back_leaf_edge().next_back_kv().ok();
}
}
}
pub fn key(&self) -> Option<&'a K> {
self.current.as_ref().map(|current| current.into_kv().0)
}
pub fn value(&self) -> Option<&'a V> {
self.current.as_ref().map(|current| current.into_kv().1)
}
pub fn key_value(&self) -> Option<(&'a K, &'a V)> {
self.current.as_ref().map(|current| current.into_kv())
}
#[cfg(test)]
pub(crate) fn peek_next(&self) -> Option<(&'a K, &'a V)> {
let mut next = self.clone();
next.move_next();
next.current.as_ref().map(|current| current.into_kv())
}
#[cfg(test)]
pub(crate) fn peek_prev(&self) -> Option<(&'a K, &'a V)> {
let mut prev = self.clone();
prev.move_prev();
prev.current.as_ref().map(|current| current.into_kv())
}
}
impl<K, V, A> CursorMut<'_, K, V, A> {
#[cfg(test)]
pub(crate) fn move_next(&mut self) {
match self.current.take() {
None => {
self.current = unsafe { self.root.reborrow() }.as_mut().and_then(|root| {
root.borrow_mut()
.first_leaf_edge()
.forget_node_type()
.right_kv()
.ok()
});
}
Some(current) => {
self.current = current.next_leaf_edge().next_kv().ok();
}
}
}
pub fn key(&self) -> Option<&K> {
self.current
.as_ref()
.map(|current| current.reborrow().into_kv().0)
}
pub fn value(&self) -> Option<&V> {
self.current
.as_ref()
.map(|current| current.reborrow().into_kv().1)
}
pub fn key_value(&self) -> Option<(&K, &V)> {
self.current
.as_ref()
.map(|current| current.reborrow().into_kv())
}
pub fn value_mut(&mut self) -> Option<&mut V> {
self.current.as_mut().map(|current| current.kv_mut().1)
}
pub fn key_value_mut(&mut self) -> Option<(&K, &mut V)> {
self.current.as_mut().map(|current| {
let (k, v) = current.kv_mut();
(&*k, v)
})
}
#[cfg(test)]
pub(crate) fn peek_next(&mut self) -> Option<(&K, &mut V)> {
let (k, v) = match self.current {
None => {
unsafe { self.root.reborrow() }
.as_mut()?
.borrow_mut()
.first_leaf_edge()
.next_kv()
.ok()?
.into_kv_valmut()
}
Some(ref mut current) => unsafe { current.reborrow_mut() }
.next_leaf_edge()
.next_kv()
.ok()?
.into_kv_valmut(),
};
Some((k, v))
}
#[cfg(test)]
pub(crate) fn peek_prev(&mut self) -> Option<(&K, &mut V)> {
let (k, v) = match self.current.as_mut() {
None => {
unsafe { self.root.reborrow() }
.as_mut()?
.borrow_mut()
.last_leaf_edge()
.next_back_kv()
.ok()?
.into_kv_valmut()
}
Some(current) => {
unsafe { current.reborrow_mut() }
.next_back_leaf_edge()
.next_back_kv()
.ok()?
.into_kv_valmut()
}
};
Some((k, v))
}
}
impl<K: Ord, V, A: Allocator> CursorMut<'_, K, V, A> {
#[cfg(test)]
pub(crate) unsafe fn try_insert_after_unchecked(
&mut self,
key: K,
value: V,
) -> Result<(), AllocError> {
let edge = match self.current.take() {
None => {
match unsafe { self.root.reborrow() } {
root @ None => {
let mut node = NodeRef::new_leaf(self.alloc)?;
node.borrow_mut().push(key, value);
*root = Some(node.forget_type());
*self.length += 1;
return Ok(());
}
Some(root) => root.borrow_mut().first_leaf_edge(),
}
}
Some(current) => current.next_leaf_edge(),
};
let handle = edge.insert_recursing(key, value, self.alloc, |ins| {
drop(ins.left);
let root = unsafe { self.root.reborrow().as_mut().unwrap() };
root.push_internal_level(self.alloc)?
.push(ins.kv.0, ins.kv.1, ins.right);
Ok(())
})?;
self.current = handle.left_edge().next_back_kv().ok();
*self.length += 1;
Ok(())
}
#[cfg(test)]
pub(crate) unsafe fn try_insert_before_unchecked(
&mut self,
key: K,
value: V,
) -> Result<(), AllocError> {
let edge = match self.current.take() {
None => {
match unsafe { self.root.reborrow() } {
root @ None => {
let mut node = NodeRef::new_leaf(self.alloc)?;
node.borrow_mut().push(key, value);
*root = Some(node.forget_type());
*self.length += 1;
return Ok(());
}
Some(root) => root.borrow_mut().last_leaf_edge(),
}
}
Some(current) => current.next_back_leaf_edge(),
};
let handle = edge.insert_recursing(key, value, self.alloc, |ins| {
drop(ins.left);
let root = unsafe { self.root.reborrow().as_mut().unwrap() };
root.push_internal_level(self.alloc)?
.push(ins.kv.0, ins.kv.1, ins.right);
Ok(())
})?;
self.current = handle.right_edge().next_kv().ok();
*self.length += 1;
Ok(())
}
#[cfg(test)]
pub(crate) fn try_insert_after(&mut self, key: K, value: V) -> Result<(), AllocError> {
if let Some(current) = self.key() {
if &key <= current {
panic!("key must be ordered above the current element");
}
}
if let Some((next, _)) = self.peek_next() {
if &key >= next {
panic!("key must be ordered below the next element");
}
}
unsafe {
self.try_insert_after_unchecked(key, value)?;
}
Ok(())
}
#[cfg(test)]
pub(crate) fn insert_after(&mut self, key: K, value: V) {
self.try_insert_after(key, value).abort()
}
#[cfg(test)]
pub(crate) fn try_insert_before(&mut self, key: K, value: V) -> Result<(), AllocError> {
if let Some(current) = self.key() {
if &key >= current {
panic!("key must be ordered below the current element");
}
}
if let Some((prev, _)) = self.peek_prev() {
if &key <= prev {
panic!("key must be ordered above the previous element");
}
}
unsafe {
self.try_insert_before_unchecked(key, value)?;
}
Ok(())
}
#[cfg(test)]
pub(crate) fn insert_before(&mut self, key: K, value: V) {
self.try_insert_before(key, value).abort()
}
#[cfg(test)]
pub(crate) fn remove_current(&mut self) -> Option<(K, V)> {
let current = self.current.take()?;
let mut emptied_internal_root = false;
let (kv, pos) = current.remove_kv_tracking(|| emptied_internal_root = true, self.alloc);
self.current = pos.next_kv().ok();
*self.length -= 1;
if emptied_internal_root {
let root = unsafe { self.root.reborrow().as_mut().unwrap() };
root.pop_internal_level(self.alloc);
}
Some(kv)
}
#[cfg(test)]
pub(crate) fn remove_current_and_move_back(&mut self) -> Option<(K, V)> {
let current = self.current.take()?;
let mut emptied_internal_root = false;
let (kv, pos) = current.remove_kv_tracking(|| emptied_internal_root = true, self.alloc);
self.current = pos.next_back_kv().ok();
*self.length -= 1;
if emptied_internal_root {
let root = unsafe { self.root.reborrow().as_mut().unwrap() };
root.pop_internal_level(self.alloc);
}
Some(kv)
}
}
impl<K, V, A: Allocator> TryFromIteratorIn<(K, V), A> for BTreeMap<K, V, A>
where
K: Ord,
{
#[inline]
fn try_from_iter_in<I>(iter: I, alloc: A) -> Result<Self, Error>
where
I: IntoIterator<Item = (K, V)>,
{
let mut this = BTreeMap::new_in(alloc);
for (key, value) in iter {
this.try_insert(key, value)?;
}
Ok(this)
}
}
#[cfg(test)]
impl<K, V> FromIterator<(K, V)> for BTreeMap<K, V>
where
K: Ord,
{
fn from_iter<I>(iter: I) -> Self
where
I: IntoIterator<Item = (K, V)>,
{
Self::try_from_iter_in(iter, Global).abort()
}
}
impl<K, V, const N: usize> TryFrom<[(K, V); N]> for BTreeMap<K, V>
where
K: Ord,
{
type Error = Error;
#[inline]
fn try_from(values: [(K, V); N]) -> Result<Self, Self::Error> {
let mut this = BTreeMap::new();
for (key, value) in values {
this.try_insert(key, value)?;
}
Ok(this)
}
}
#[cfg(test)]
mod tests;