2022-10-28 15:15:55 +00:00
|
|
|
#[cfg(feature = "rustc_serialize")]
|
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`.
|
|
|
|
///
|
|
|
|
/// While it's possible to use `u32` or `usize` directly for `I`,
|
|
|
|
/// you almost certainly want to use a [`newtype_index!`]-generated type instead.
|
|
|
|
///
|
|
|
|
/// [`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>,
|
2017-12-03 13:22:23 +00:00
|
|
|
_marker: PhantomData<fn(&I)>,
|
2016-06-07 14:28:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<I: Idx, T> IndexVec<I, T> {
|
|
|
|
#[inline]
|
2023-04-19 11:12:42 +00:00
|
|
|
pub const fn new() -> Self {
|
2016-06-07 14:28:36 +00:00
|
|
|
IndexVec { raw: Vec::new(), _marker: PhantomData }
|
|
|
|
}
|
|
|
|
|
|
|
|
#[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 {
|
|
|
|
IndexVec { raw: Vec::with_capacity(capacity), _marker: PhantomData }
|
|
|
|
}
|
|
|
|
|
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,
|
|
|
|
{
|
|
|
|
IndexVec { raw: vec![elem; universe.len()], _marker: PhantomData }
|
|
|
|
}
|
|
|
|
|
2016-06-09 22:49:07 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn from_elem_n(elem: T, n: usize) -> Self
|
|
|
|
where
|
|
|
|
T: Clone,
|
|
|
|
{
|
|
|
|
IndexVec { raw: vec![elem; n], _marker: PhantomData }
|
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
let indices = (0..n).map(I::new);
|
|
|
|
Self::from_raw(indices.map(func).collect())
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2016-06-07 14:28:36 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn push(&mut self, d: T) -> I {
|
|
|
|
let idx = I::new(self.len());
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn convert_index_type<Ix: Idx>(self) -> IndexVec<Ix, T> {
|
|
|
|
IndexVec { raw: self.raw, _marker: PhantomData }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// 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()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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>,
|
|
|
|
{
|
|
|
|
IndexVec { raw: FromIterator::from_iter(iter), _marker: PhantomData }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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> {
|
|
|
|
self.raw.iter()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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> {
|
2016-06-07 14:28:36 +00:00
|
|
|
self.raw.iter_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-19 11:06:46 +00:00
|
|
|
impl<I: Idx, T> Default for IndexVec<I, T> {
|
|
|
|
#[inline]
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "rustc_serialize")]
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "rustc_serialize")]
|
|
|
|
impl<D: Decoder, I: Idx, T: Decodable<D>> Decodable<D> for IndexVec<I, T> {
|
|
|
|
fn decode(d: &mut D) -> Self {
|
|
|
|
IndexVec { raw: Decodable::decode(d), _marker: PhantomData }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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;
|