//! Yet another index-based arena. #![warn(rust_2018_idioms, unused_lifetimes, semicolon_in_expressions_from_macros)] #![warn(missing_docs)] use std::{ cmp, fmt, hash::{Hash, Hasher}, iter::{Enumerate, FusedIterator}, marker::PhantomData, ops::{Index, IndexMut, Range, RangeInclusive}, }; mod map; pub use map::{ArenaMap, Entry, OccupiedEntry, VacantEntry}; /// The raw index of a value in an arena. #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)] pub struct RawIdx(u32); impl RawIdx { /// Constructs a [`RawIdx`] from a u32. pub const fn from_u32(u32: u32) -> Self { RawIdx(u32) } /// Deconstructs a [`RawIdx`] into the underlying u32. pub const fn into_u32(self) -> u32 { self.0 } } impl From for u32 { #[inline] fn from(raw: RawIdx) -> u32 { raw.0 } } impl From for RawIdx { #[inline] fn from(idx: u32) -> RawIdx { RawIdx(idx) } } impl fmt::Debug for RawIdx { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { self.0.fmt(f) } } impl fmt::Display for RawIdx { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { self.0.fmt(f) } } /// The index of a value allocated in an arena that holds `T`s. pub struct Idx { raw: RawIdx, _ty: PhantomData T>, } impl Ord for Idx { fn cmp(&self, other: &Self) -> cmp::Ordering { self.raw.cmp(&other.raw) } } impl PartialOrd for Idx { fn partial_cmp(&self, other: &Self) -> Option { self.raw.partial_cmp(&other.raw) } } impl Clone for Idx { fn clone(&self) -> Self { *self } } impl Copy for Idx {} impl PartialEq for Idx { fn eq(&self, other: &Idx) -> bool { self.raw == other.raw } } impl Eq for Idx {} impl Hash for Idx { fn hash(&self, state: &mut H) { self.raw.hash(state); } } impl fmt::Debug for Idx { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { let mut type_name = std::any::type_name::(); if let Some(idx) = type_name.rfind(':') { type_name = &type_name[idx + 1..]; } write!(f, "Idx::<{}>({})", type_name, self.raw) } } impl Idx { /// Creates a new index from a [`RawIdx`]. pub const fn from_raw(raw: RawIdx) -> Self { Idx { raw, _ty: PhantomData } } /// Converts this index into the underlying [`RawIdx`]. pub const fn into_raw(self) -> RawIdx { self.raw } } /// A range of densely allocated arena values. pub struct IdxRange { range: Range, _p: PhantomData, } impl IdxRange { /// Creates a new index range /// inclusive of the start value and exclusive of the end value. /// /// ``` /// let mut arena = la_arena::Arena::new(); /// let a = arena.alloc("a"); /// let b = arena.alloc("b"); /// let c = arena.alloc("c"); /// let d = arena.alloc("d"); /// /// let range = la_arena::IdxRange::new(b..d); /// assert_eq!(&arena[range], &["b", "c"]); /// ``` pub fn new(range: Range>) -> Self { Self { range: range.start.into_raw().into()..range.end.into_raw().into(), _p: PhantomData } } /// Creates a new index range /// inclusive of the start value and end value. /// /// ``` /// let mut arena = la_arena::Arena::new(); /// let foo = arena.alloc("foo"); /// let bar = arena.alloc("bar"); /// let baz = arena.alloc("baz"); /// /// let range = la_arena::IdxRange::new_inclusive(foo..=baz); /// assert_eq!(&arena[range], &["foo", "bar", "baz"]); /// /// let range = la_arena::IdxRange::new_inclusive(foo..=foo); /// assert_eq!(&arena[range], &["foo"]); /// ``` pub fn new_inclusive(range: RangeInclusive>) -> Self { Self { range: u32::from(range.start().into_raw())..u32::from(range.end().into_raw()) + 1, _p: PhantomData, } } /// Returns whether the index range is empty. /// /// ``` /// let mut arena = la_arena::Arena::new(); /// let one = arena.alloc(1); /// let two = arena.alloc(2); /// /// assert!(la_arena::IdxRange::new(one..one).is_empty()); /// ``` pub fn is_empty(&self) -> bool { self.range.is_empty() } /// Returns the start of the index range. pub fn start(&self) -> Idx { Idx::from_raw(RawIdx::from(self.range.start)) } /// Returns the end of the index range. pub fn end(&self) -> Idx { Idx::from_raw(RawIdx::from(self.range.end)) } } impl Iterator for IdxRange { type Item = Idx; fn next(&mut self) -> Option { self.range.next().map(|raw| Idx::from_raw(raw.into())) } fn size_hint(&self) -> (usize, Option) { self.range.size_hint() } fn count(self) -> usize where Self: Sized, { self.range.count() } fn last(self) -> Option where Self: Sized, { self.range.last().map(|raw| Idx::from_raw(raw.into())) } fn nth(&mut self, n: usize) -> Option { self.range.nth(n).map(|raw| Idx::from_raw(raw.into())) } } impl DoubleEndedIterator for IdxRange { fn next_back(&mut self) -> Option { self.range.next_back().map(|raw| Idx::from_raw(raw.into())) } } impl ExactSizeIterator for IdxRange {} impl FusedIterator for IdxRange {} impl fmt::Debug for IdxRange { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { f.debug_tuple(&format!("IdxRange::<{}>", std::any::type_name::())) .field(&self.range) .finish() } } impl Clone for IdxRange { fn clone(&self) -> Self { Self { range: self.range.clone(), _p: PhantomData } } } impl PartialEq for IdxRange { fn eq(&self, other: &Self) -> bool { self.range == other.range } } impl Eq for IdxRange {} /// Yet another index-based arena. #[derive(Clone, PartialEq, Eq, Hash)] pub struct Arena { data: Vec, } impl fmt::Debug for Arena { fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { fmt.debug_struct("Arena").field("len", &self.len()).field("data", &self.data).finish() } } impl Arena { /// Creates a new empty arena. /// /// ``` /// let arena: la_arena::Arena = la_arena::Arena::new(); /// assert!(arena.is_empty()); /// ``` pub const fn new() -> Arena { Arena { data: Vec::new() } } /// Create a new empty arena with specific capacity. /// /// ``` /// let arena: la_arena::Arena = la_arena::Arena::with_capacity(42); /// assert!(arena.is_empty()); /// ``` pub fn with_capacity(capacity: usize) -> Arena { Arena { data: Vec::with_capacity(capacity) } } /// Empties the arena, removing all contained values. /// /// ``` /// let mut arena = la_arena::Arena::new(); /// /// arena.alloc(1); /// arena.alloc(2); /// arena.alloc(3); /// assert_eq!(arena.len(), 3); /// /// arena.clear(); /// assert!(arena.is_empty()); /// ``` pub fn clear(&mut self) { self.data.clear(); } /// Returns the length of the arena. /// /// ``` /// let mut arena = la_arena::Arena::new(); /// assert_eq!(arena.len(), 0); /// /// arena.alloc("foo"); /// assert_eq!(arena.len(), 1); /// /// arena.alloc("bar"); /// assert_eq!(arena.len(), 2); /// /// arena.alloc("baz"); /// assert_eq!(arena.len(), 3); /// ``` pub fn len(&self) -> usize { self.data.len() } /// Returns whether the arena contains no elements. /// /// ``` /// let mut arena = la_arena::Arena::new(); /// assert!(arena.is_empty()); /// /// arena.alloc(0.5); /// assert!(!arena.is_empty()); /// ``` pub fn is_empty(&self) -> bool { self.data.is_empty() } /// Allocates a new value on the arena, returning the value’s index. /// /// ``` /// let mut arena = la_arena::Arena::new(); /// let idx = arena.alloc(50); /// /// assert_eq!(arena[idx], 50); /// ``` pub fn alloc(&mut self, value: T) -> Idx { let idx = self.next_idx(); self.data.push(value); idx } /// Densely allocates multiple values, returning the values’ index range. /// /// ``` /// let mut arena = la_arena::Arena::new(); /// let range = arena.alloc_many(0..4); /// /// assert_eq!(arena[range], [0, 1, 2, 3]); /// ``` pub fn alloc_many>(&mut self, iter: II) -> IdxRange { let start = self.next_idx(); self.extend(iter); let end = self.next_idx(); IdxRange::new(start..end) } /// Returns an iterator over the arena’s elements. /// /// ``` /// let mut arena = la_arena::Arena::new(); /// let idx1 = arena.alloc(20); /// let idx2 = arena.alloc(40); /// let idx3 = arena.alloc(60); /// /// let mut iterator = arena.iter(); /// assert_eq!(iterator.next(), Some((idx1, &20))); /// assert_eq!(iterator.next(), Some((idx2, &40))); /// assert_eq!(iterator.next(), Some((idx3, &60))); /// ``` pub fn iter( &self, ) -> impl Iterator, &T)> + ExactSizeIterator + DoubleEndedIterator + Clone { self.data.iter().enumerate().map(|(idx, value)| (Idx::from_raw(RawIdx(idx as u32)), value)) } /// Returns an iterator over the arena’s mutable elements. /// /// ``` /// let mut arena = la_arena::Arena::new(); /// let idx1 = arena.alloc(20); /// /// assert_eq!(arena[idx1], 20); /// /// let mut iterator = arena.iter_mut(); /// *iterator.next().unwrap().1 = 10; /// drop(iterator); /// /// assert_eq!(arena[idx1], 10); /// ``` pub fn iter_mut( &mut self, ) -> impl Iterator, &mut T)> + ExactSizeIterator + DoubleEndedIterator { self.data .iter_mut() .enumerate() .map(|(idx, value)| (Idx::from_raw(RawIdx(idx as u32)), value)) } /// Returns an iterator over the arena’s values. /// /// ``` /// let mut arena = la_arena::Arena::new(); /// let idx1 = arena.alloc(20); /// let idx2 = arena.alloc(40); /// let idx3 = arena.alloc(60); /// /// let mut iterator = arena.values(); /// assert_eq!(iterator.next(), Some(&20)); /// assert_eq!(iterator.next(), Some(&40)); /// assert_eq!(iterator.next(), Some(&60)); /// ``` pub fn values(&self) -> impl Iterator + ExactSizeIterator + DoubleEndedIterator { self.data.iter() } /// Returns an iterator over the arena’s mutable values. /// /// ``` /// let mut arena = la_arena::Arena::new(); /// let idx1 = arena.alloc(20); /// /// assert_eq!(arena[idx1], 20); /// /// let mut iterator = arena.values_mut(); /// *iterator.next().unwrap() = 10; /// drop(iterator); /// /// assert_eq!(arena[idx1], 10); /// ``` pub fn values_mut( &mut self, ) -> impl Iterator + ExactSizeIterator + DoubleEndedIterator { self.data.iter_mut() } /// Reallocates the arena to make it take up as little space as possible. pub fn shrink_to_fit(&mut self) { self.data.shrink_to_fit(); } /// Returns the index of the next value allocated on the arena. /// /// This method should remain private to make creating invalid `Idx`s harder. fn next_idx(&self) -> Idx { Idx::from_raw(RawIdx(self.data.len() as u32)) } } impl AsMut<[T]> for Arena { fn as_mut(&mut self) -> &mut [T] { self.data.as_mut() } } impl Default for Arena { fn default() -> Arena { Arena { data: Vec::new() } } } impl Index> for Arena { type Output = T; fn index(&self, idx: Idx) -> &T { let idx = idx.into_raw().0 as usize; &self.data[idx] } } impl IndexMut> for Arena { fn index_mut(&mut self, idx: Idx) -> &mut T { let idx = idx.into_raw().0 as usize; &mut self.data[idx] } } impl Index> for Arena { type Output = [T]; fn index(&self, range: IdxRange) -> &[T] { let start = range.range.start as usize; let end = range.range.end as usize; &self.data[start..end] } } impl FromIterator for Arena { fn from_iter(iter: I) -> Self where I: IntoIterator, { Arena { data: Vec::from_iter(iter) } } } /// An iterator over the arena’s elements. pub struct IntoIter(Enumerate< as IntoIterator>::IntoIter>); impl Iterator for IntoIter { type Item = (Idx, T); fn next(&mut self) -> Option { self.0.next().map(|(idx, value)| (Idx::from_raw(RawIdx(idx as u32)), value)) } } impl IntoIterator for Arena { type Item = (Idx, T); type IntoIter = IntoIter; fn into_iter(self) -> Self::IntoIter { IntoIter(self.data.into_iter().enumerate()) } } impl Extend for Arena { fn extend>(&mut self, iter: II) { for t in iter { self.alloc(t); } } }