2024-07-15 16:44:24 +00:00
|
|
|
#[cfg(feature = "nightly")]
|
2019-07-23 15:50:47 +00:00
|
|
|
use rustc_serialize::{Decodable, Decoder, Encodable, Encoder};
|
|
|
|
|
2023-03-31 07:32:44 +00:00
|
|
|
use std::borrow::{Borrow, BorrowMut};
|
2016-06-07 14:28:36 +00:00
|
|
|
use std::fmt;
|
2018-07-02 14:55:44 +00:00
|
|
|
use std::hash::Hash;
|
2016-06-07 14:28:36 +00:00
|
|
|
use std::marker::PhantomData;
|
2023-04-19 10:57:17 +00:00
|
|
|
use std::ops::{Deref, DerefMut, RangeBounds};
|
2018-07-02 14:55:44 +00:00
|
|
|
use std::slice;
|
2016-06-07 14:28:36 +00:00
|
|
|
use std::vec;
|
|
|
|
|
2023-04-19 11:06:46 +00:00
|
|
|
use crate::{Idx, IndexSlice};
|
2016-06-28 20:41:09 +00:00
|
|
|
|
2023-03-31 07:32:44 +00:00
|
|
|
/// An owned contiguous collection of `T`s, indexed by `I` rather than by `usize`.
|
2024-03-06 15:54:42 +00:00
|
|
|
///
|
|
|
|
/// ## Why use this instead of a `Vec`?
|
|
|
|
///
|
|
|
|
/// An `IndexVec` allows element access only via a specific associated index type, meaning that
|
|
|
|
/// trying to use the wrong index type (possibly accessing an invalid element) will fail at
|
|
|
|
/// compile time.
|
|
|
|
///
|
|
|
|
/// It also documents what the index is indexing: in a `HashMap<usize, Something>` it's not
|
|
|
|
/// immediately clear what the `usize` means, while a `HashMap<FieldIdx, Something>` makes it obvious.
|
|
|
|
///
|
|
|
|
/// ```compile_fail
|
|
|
|
/// use rustc_index::{Idx, IndexVec};
|
|
|
|
///
|
|
|
|
/// fn f<I1: Idx, I2: Idx>(vec1: IndexVec<I1, u8>, idx1: I1, idx2: I2) {
|
|
|
|
/// &vec1[idx1]; // Ok
|
|
|
|
/// &vec1[idx2]; // Compile error!
|
|
|
|
/// }
|
|
|
|
/// ```
|
2023-03-31 07:32:44 +00:00
|
|
|
///
|
|
|
|
/// While it's possible to use `u32` or `usize` directly for `I`,
|
|
|
|
/// you almost certainly want to use a [`newtype_index!`]-generated type instead.
|
|
|
|
///
|
2024-01-10 17:28:42 +00:00
|
|
|
/// This allows to index the IndexVec with the new index type.
|
2024-01-26 07:37:37 +00:00
|
|
|
///
|
2023-03-31 07:32:44 +00:00
|
|
|
/// [`newtype_index!`]: ../macro.newtype_index.html
|
2018-02-09 15:39:36 +00:00
|
|
|
#[derive(Clone, PartialEq, Eq, Hash)]
|
2023-03-30 18:19:38 +00:00
|
|
|
#[repr(transparent)]
|
2016-06-07 14:28:36 +00:00
|
|
|
pub struct IndexVec<I: Idx, T> {
|
|
|
|
pub raw: Vec<T>,
|
2024-01-10 17:28:42 +00:00
|
|
|
_marker: PhantomData<fn(&I)>,
|
2016-06-07 14:28:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<I: Idx, T> IndexVec<I, T> {
|
2024-01-10 09:26:18 +00:00
|
|
|
/// Constructs a new, empty `IndexVec<I, T>`.
|
2016-06-07 14:28:36 +00:00
|
|
|
#[inline]
|
2023-04-19 11:12:42 +00:00
|
|
|
pub const fn new() -> Self {
|
2023-04-19 11:52:43 +00:00
|
|
|
IndexVec::from_raw(Vec::new())
|
2016-06-07 14:28:36 +00:00
|
|
|
}
|
|
|
|
|
2024-01-10 17:28:42 +00:00
|
|
|
/// Constructs a new `IndexVec<I, T>` from a `Vec<T>`.
|
2016-06-07 14:28:36 +00:00
|
|
|
#[inline]
|
2023-04-19 11:12:42 +00:00
|
|
|
pub const fn from_raw(raw: Vec<T>) -> Self {
|
2018-06-05 15:06:38 +00:00
|
|
|
IndexVec { raw, _marker: PhantomData }
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2016-06-07 14:28:36 +00:00
|
|
|
pub fn with_capacity(capacity: usize) -> Self {
|
2023-04-19 11:52:43 +00:00
|
|
|
IndexVec::from_raw(Vec::with_capacity(capacity))
|
2016-06-07 14:28:36 +00:00
|
|
|
}
|
|
|
|
|
2023-04-03 21:22:09 +00:00
|
|
|
/// Creates a new vector with a copy of `elem` for each index in `universe`.
|
|
|
|
///
|
|
|
|
/// Thus `IndexVec::from_elem(elem, &universe)` is equivalent to
|
|
|
|
/// `IndexVec::<I, _>::from_elem_n(elem, universe.len())`. That can help
|
|
|
|
/// type inference as it ensures that the resulting vector uses the same
|
|
|
|
/// index type as `universe`, rather than something potentially surprising.
|
|
|
|
///
|
|
|
|
/// For example, if you want to store data for each local in a MIR body,
|
|
|
|
/// using `let mut uses = IndexVec::from_elem(vec![], &body.local_decls);`
|
|
|
|
/// ensures that `uses` is an `IndexVec<Local, _>`, and thus can give
|
|
|
|
/// better error messages later if one accidentally mismatches indices.
|
2016-06-07 14:28:36 +00:00
|
|
|
#[inline]
|
2023-03-31 07:32:44 +00:00
|
|
|
pub fn from_elem<S>(elem: T, universe: &IndexSlice<I, S>) -> Self
|
2016-06-07 14:28:36 +00:00
|
|
|
where
|
|
|
|
T: Clone,
|
|
|
|
{
|
2023-04-19 11:52:43 +00:00
|
|
|
IndexVec::from_raw(vec![elem; universe.len()])
|
2016-06-07 14:28:36 +00:00
|
|
|
}
|
|
|
|
|
2024-01-10 17:28:42 +00:00
|
|
|
/// Creates a new IndexVec with n copies of the `elem`.
|
2016-06-09 22:49:07 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn from_elem_n(elem: T, n: usize) -> Self
|
|
|
|
where
|
|
|
|
T: Clone,
|
|
|
|
{
|
2023-04-19 11:52:43 +00:00
|
|
|
IndexVec::from_raw(vec![elem; n])
|
2016-06-09 22:49:07 +00:00
|
|
|
}
|
|
|
|
|
2019-10-08 23:26:57 +00:00
|
|
|
/// Create an `IndexVec` with `n` elements, where the value of each
|
2020-06-22 06:29:08 +00:00
|
|
|
/// element is the result of `func(i)`. (The underlying vector will
|
|
|
|
/// be allocated only once, with a capacity of at least `n`.)
|
2019-10-08 23:26:57 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn from_fn_n(func: impl FnMut(I) -> T, n: usize) -> Self {
|
2023-04-19 11:52:43 +00:00
|
|
|
IndexVec::from_raw((0..n).map(I::new).map(func).collect())
|
2019-10-08 23:26:57 +00:00
|
|
|
}
|
|
|
|
|
2023-03-30 18:19:38 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn as_slice(&self) -> &IndexSlice<I, T> {
|
|
|
|
IndexSlice::from_raw(&self.raw)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn as_mut_slice(&mut self) -> &mut IndexSlice<I, T> {
|
|
|
|
IndexSlice::from_raw_mut(&mut self.raw)
|
|
|
|
}
|
|
|
|
|
2024-01-10 17:28:42 +00:00
|
|
|
/// Pushes an element to the array returning the index where it was pushed to.
|
2016-06-07 14:28:36 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn push(&mut self, d: T) -> I {
|
2023-04-19 11:52:43 +00:00
|
|
|
let idx = self.next_index();
|
2016-06-07 14:28:36 +00:00
|
|
|
self.raw.push(d);
|
|
|
|
idx
|
|
|
|
}
|
|
|
|
|
2017-11-05 19:06:46 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn pop(&mut self) -> Option<T> {
|
|
|
|
self.raw.pop()
|
|
|
|
}
|
|
|
|
|
2016-06-07 14:28:36 +00:00
|
|
|
#[inline]
|
2023-03-30 18:19:38 +00:00
|
|
|
pub fn into_iter(self) -> vec::IntoIter<T> {
|
|
|
|
self.raw.into_iter()
|
2016-06-07 14:28:36 +00:00
|
|
|
}
|
|
|
|
|
2018-09-21 23:26:24 +00:00
|
|
|
#[inline]
|
2023-03-30 18:19:38 +00:00
|
|
|
pub fn into_iter_enumerated(
|
|
|
|
self,
|
|
|
|
) -> impl DoubleEndedIterator<Item = (I, T)> + ExactSizeIterator {
|
|
|
|
self.raw.into_iter().enumerate().map(|(n, t)| (I::new(n), t))
|
2018-09-21 23:26:24 +00:00
|
|
|
}
|
|
|
|
|
2016-06-07 14:28:36 +00:00
|
|
|
#[inline]
|
2023-04-09 21:07:18 +00:00
|
|
|
pub fn drain<R: RangeBounds<usize>>(&mut self, range: R) -> impl Iterator<Item = T> + '_ {
|
2023-03-30 18:19:38 +00:00
|
|
|
self.raw.drain(range)
|
2016-06-07 14:28:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2023-04-09 21:07:18 +00:00
|
|
|
pub fn drain_enumerated<R: RangeBounds<usize>>(
|
|
|
|
&mut self,
|
2023-03-30 18:19:38 +00:00
|
|
|
range: R,
|
2023-04-09 21:07:18 +00:00
|
|
|
) -> impl Iterator<Item = (I, T)> + '_ {
|
2023-03-30 18:19:38 +00:00
|
|
|
let begin = match range.start_bound() {
|
|
|
|
std::ops::Bound::Included(i) => *i,
|
|
|
|
std::ops::Bound::Excluded(i) => i.checked_add(1).unwrap(),
|
|
|
|
std::ops::Bound::Unbounded => 0,
|
|
|
|
};
|
|
|
|
self.raw.drain(range).enumerate().map(move |(n, t)| (I::new(begin + n), t))
|
2016-06-07 14:28:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2023-03-30 18:19:38 +00:00
|
|
|
pub fn shrink_to_fit(&mut self) {
|
|
|
|
self.raw.shrink_to_fit()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn truncate(&mut self, a: usize) {
|
|
|
|
self.raw.truncate(a)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Grows the index vector so that it contains an entry for
|
|
|
|
/// `elem`; if that is already true, then has no
|
|
|
|
/// effect. Otherwise, inserts new values as needed by invoking
|
|
|
|
/// `fill_value`.
|
2023-04-17 13:14:03 +00:00
|
|
|
///
|
|
|
|
/// Returns a reference to the `elem` entry.
|
2023-03-30 18:19:38 +00:00
|
|
|
#[inline]
|
2023-04-17 13:14:03 +00:00
|
|
|
pub fn ensure_contains_elem(&mut self, elem: I, fill_value: impl FnMut() -> T) -> &mut T {
|
2023-03-30 18:19:38 +00:00
|
|
|
let min_new_len = elem.index() + 1;
|
|
|
|
if self.len() < min_new_len {
|
|
|
|
self.raw.resize_with(min_new_len, fill_value);
|
|
|
|
}
|
2023-04-17 13:14:03 +00:00
|
|
|
|
|
|
|
&mut self[elem]
|
2023-03-30 18:19:38 +00:00
|
|
|
}
|
|
|
|
|
2023-04-19 11:06:46 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn resize(&mut self, new_len: usize, value: T)
|
|
|
|
where
|
|
|
|
T: Clone,
|
|
|
|
{
|
|
|
|
self.raw.resize(new_len, value)
|
|
|
|
}
|
|
|
|
|
2023-03-30 18:19:38 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn resize_to_elem(&mut self, elem: I, fill_value: impl FnMut() -> T) {
|
|
|
|
let min_new_len = elem.index() + 1;
|
|
|
|
self.raw.resize_with(min_new_len, fill_value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-19 11:06:46 +00:00
|
|
|
/// `IndexVec` is often used as a map, so it provides some map-like APIs.
|
|
|
|
impl<I: Idx, T> IndexVec<I, Option<T>> {
|
|
|
|
#[inline]
|
|
|
|
pub fn insert(&mut self, index: I, value: T) -> Option<T> {
|
|
|
|
self.ensure_contains_elem(index, || None).replace(value)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn get_or_insert_with(&mut self, index: I, value: impl FnOnce() -> T) -> &mut T {
|
|
|
|
self.ensure_contains_elem(index, || None).get_or_insert_with(value)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn remove(&mut self, index: I) -> Option<T> {
|
|
|
|
self.get_mut(index)?.take()
|
|
|
|
}
|
2024-07-03 20:52:01 +00:00
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn contains(&self, index: I) -> bool {
|
|
|
|
self.get(index).and_then(Option::as_ref).is_some()
|
|
|
|
}
|
2023-04-19 11:06:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<I: Idx, T: fmt::Debug> fmt::Debug for IndexVec<I, T> {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
fmt::Debug::fmt(&self.raw, fmt)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-30 18:19:38 +00:00
|
|
|
impl<I: Idx, T> Deref for IndexVec<I, T> {
|
|
|
|
type Target = IndexSlice<I, T>;
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
|
|
self.as_slice()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<I: Idx, T> DerefMut for IndexVec<I, T> {
|
|
|
|
#[inline]
|
|
|
|
fn deref_mut(&mut self) -> &mut Self::Target {
|
|
|
|
self.as_mut_slice()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-31 07:32:44 +00:00
|
|
|
impl<I: Idx, T> Borrow<IndexSlice<I, T>> for IndexVec<I, T> {
|
|
|
|
fn borrow(&self) -> &IndexSlice<I, T> {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<I: Idx, T> BorrowMut<IndexSlice<I, T>> for IndexVec<I, T> {
|
|
|
|
fn borrow_mut(&mut self) -> &mut IndexSlice<I, T> {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-07 14:28:36 +00:00
|
|
|
impl<I: Idx, T> Extend<T> for IndexVec<I, T> {
|
|
|
|
#[inline]
|
|
|
|
fn extend<J: IntoIterator<Item = T>>(&mut self, iter: J) {
|
|
|
|
self.raw.extend(iter);
|
|
|
|
}
|
2020-05-13 03:09:55 +00:00
|
|
|
|
|
|
|
#[inline]
|
2022-10-28 15:15:55 +00:00
|
|
|
#[cfg(feature = "nightly")]
|
2020-05-13 03:09:55 +00:00
|
|
|
fn extend_one(&mut self, item: T) {
|
|
|
|
self.raw.push(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2022-10-28 15:15:55 +00:00
|
|
|
#[cfg(feature = "nightly")]
|
2020-05-13 03:09:55 +00:00
|
|
|
fn extend_reserve(&mut self, additional: usize) {
|
|
|
|
self.raw.reserve(additional);
|
|
|
|
}
|
2016-06-07 14:28:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<I: Idx, T> FromIterator<T> for IndexVec<I, T> {
|
|
|
|
#[inline]
|
|
|
|
fn from_iter<J>(iter: J) -> Self
|
|
|
|
where
|
|
|
|
J: IntoIterator<Item = T>,
|
|
|
|
{
|
2023-04-19 11:52:43 +00:00
|
|
|
IndexVec::from_raw(Vec::from_iter(iter))
|
2016-06-07 14:28:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<I: Idx, T> IntoIterator for IndexVec<I, T> {
|
|
|
|
type Item = T;
|
|
|
|
type IntoIter = vec::IntoIter<T>;
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn into_iter(self) -> vec::IntoIter<T> {
|
|
|
|
self.raw.into_iter()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, I: Idx, T> IntoIterator for &'a IndexVec<I, T> {
|
|
|
|
type Item = &'a T;
|
|
|
|
type IntoIter = slice::Iter<'a, T>;
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn into_iter(self) -> slice::Iter<'a, T> {
|
2023-04-19 11:52:43 +00:00
|
|
|
self.iter()
|
2016-06-07 14:28:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, I: Idx, T> IntoIterator for &'a mut IndexVec<I, T> {
|
|
|
|
type Item = &'a mut T;
|
|
|
|
type IntoIter = slice::IterMut<'a, T>;
|
|
|
|
|
|
|
|
#[inline]
|
2017-08-01 12:03:03 +00:00
|
|
|
fn into_iter(self) -> slice::IterMut<'a, T> {
|
2023-04-19 11:52:43 +00:00
|
|
|
self.iter_mut()
|
2016-06-07 14:28:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-19 11:06:46 +00:00
|
|
|
impl<I: Idx, T> Default for IndexVec<I, T> {
|
|
|
|
#[inline]
|
|
|
|
fn default() -> Self {
|
2023-04-19 11:52:43 +00:00
|
|
|
IndexVec::new()
|
2023-04-19 11:06:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<I: Idx, T, const N: usize> From<[T; N]> for IndexVec<I, T> {
|
|
|
|
#[inline]
|
|
|
|
fn from(array: [T; N]) -> Self {
|
|
|
|
IndexVec::from_raw(array.into())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-15 16:44:24 +00:00
|
|
|
#[cfg(feature = "nightly")]
|
2023-04-19 11:06:46 +00:00
|
|
|
impl<S: Encoder, I: Idx, T: Encodable<S>> Encodable<S> for IndexVec<I, T> {
|
|
|
|
fn encode(&self, s: &mut S) {
|
|
|
|
Encodable::encode(&self.raw, s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-15 16:44:24 +00:00
|
|
|
#[cfg(feature = "nightly")]
|
2023-04-19 11:06:46 +00:00
|
|
|
impl<D: Decoder, I: Idx, T: Decodable<D>> Decodable<D> for IndexVec<I, T> {
|
|
|
|
fn decode(d: &mut D) -> Self {
|
2023-04-19 11:52:43 +00:00
|
|
|
IndexVec::from_raw(Vec::<T>::decode(d))
|
2023-04-19 11:06:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Whether `IndexVec` is `Send` depends only on the data,
|
|
|
|
// not the phantom data.
|
|
|
|
unsafe impl<I: Idx, T> Send for IndexVec<I, T> where T: Send {}
|
|
|
|
|
2020-01-05 15:01:00 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests;
|