rust/src/libsyntax/util/small_vector.rs

249 lines
6.2 KiB
Rust
Raw Normal View History

// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
2013-11-24 23:18:21 -06:00
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
use std::mem;
2014-04-21 18:21:52 -05:00
use std::slice;
use std::vec;
2013-11-24 23:18:21 -06:00
use fold::MoveMap;
2013-11-24 23:18:21 -06:00
/// A vector type optimized for cases where the size is almost always 0 or 1
pub struct SmallVector<T> {
repr: SmallVectorRepr<T>,
}
enum SmallVectorRepr<T> {
Zero,
One(T),
Many(Vec<T>),
2013-11-24 23:18:21 -06:00
}
impl<T> FromIterator<T> for SmallVector<T> {
fn from_iter<I: Iterator<T>>(iter: I) -> SmallVector<T> {
let mut v = SmallVector::zero();
v.extend(iter);
2013-11-24 23:18:21 -06:00
v
}
}
impl<T> Extendable<T> for SmallVector<T> {
fn extend<I: Iterator<T>>(&mut self, mut iter: I) {
for val in iter {
self.push(val);
}
}
2013-11-24 23:18:21 -06:00
}
impl<T> SmallVector<T> {
pub fn zero() -> SmallVector<T> {
SmallVector { repr: Zero }
2013-11-24 23:18:21 -06:00
}
pub fn one(v: T) -> SmallVector<T> {
SmallVector { repr: One(v) }
2013-11-24 23:18:21 -06:00
}
pub fn many(vs: Vec<T>) -> SmallVector<T> {
SmallVector { repr: Many(vs) }
2013-11-24 23:18:21 -06:00
}
2014-04-21 18:21:52 -05:00
pub fn as_slice<'a>(&'a self) -> &'a [T] {
match self.repr {
DST coercions and DST structs [breaking-change] 1. The internal layout for traits has changed from (vtable, data) to (data, vtable). If you were relying on this in unsafe transmutes, you might get some very weird and apparently unrelated errors. You should not be doing this! Prefer not to do this at all, but if you must, you should use raw::TraitObject rather than hardcoding rustc's internal representation into your code. 2. The minimal type of reference-to-vec-literals (e.g., `&[1, 2, 3]`) is now a fixed size vec (e.g., `&[int, ..3]`) where it used to be an unsized vec (e.g., `&[int]`). If you want the unszied type, you must explicitly give the type (e.g., `let x: &[_] = &[1, 2, 3]`). Note in particular where multiple blocks must have the same type (e.g., if and else clauses, vec elements), the compiler will not coerce to the unsized type without a hint. E.g., `[&[1], &[1, 2]]` used to be a valid expression of type '[&[int]]'. It no longer type checks since the first element now has type `&[int, ..1]` and the second has type &[int, ..2]` which are incompatible. 3. The type of blocks (including functions) must be coercible to the expected type (used to be a subtype). Mostly this makes things more flexible and not less (in particular, in the case of coercing function bodies to the return type). However, in some rare cases, this is less flexible. TBH, I'm not exactly sure of the exact effects. I think the change causes us to resolve inferred type variables slightly earlier which might make us slightly more restrictive. Possibly it only affects blocks with unreachable code. E.g., `if ... { fail!(); "Hello" }` used to type check, it no longer does. The fix is to add a semicolon after the string.
2014-08-04 07:20:11 -05:00
Zero => {
let result: &[T] = &[];
result
}
2014-04-21 18:21:52 -05:00
One(ref v) => slice::ref_slice(v),
Many(ref vs) => vs.as_slice()
}
}
2013-11-24 23:18:21 -06:00
pub fn push(&mut self, v: T) {
match self.repr {
Zero => self.repr = One(v),
2013-11-28 14:22:53 -06:00
One(..) => {
let one = mem::replace(&mut self.repr, Zero);
2013-11-25 22:02:15 -06:00
match one {
One(v1) => mem::replace(&mut self.repr, Many(vec!(v1, v))),
2013-11-24 23:18:21 -06:00
_ => unreachable!()
2013-11-25 22:02:15 -06:00
};
2013-11-24 23:18:21 -06:00
}
Many(ref mut vs) => vs.push(v)
}
}
pub fn push_all(&mut self, other: SmallVector<T>) {
2014-09-14 22:27:36 -05:00
for v in other.into_iter() {
self.push(v);
}
}
2013-12-08 01:55:28 -06:00
pub fn get<'a>(&'a self, idx: uint) -> &'a T {
match self.repr {
2013-11-24 23:18:21 -06:00
One(ref v) if idx == 0 => v,
Many(ref vs) => &vs[idx],
_ => panic!("out of bounds access")
2013-11-24 23:18:21 -06:00
}
}
2013-11-25 22:02:15 -06:00
pub fn expect_one(self, err: &'static str) -> T {
match self.repr {
2013-11-25 22:02:15 -06:00
One(v) => v,
Many(v) => {
if v.len() == 1 {
2014-09-14 22:27:36 -05:00
v.into_iter().next().unwrap()
} else {
panic!(err)
}
}
_ => panic!(err)
2013-11-24 23:18:21 -06:00
}
}
2014-09-14 22:27:36 -05:00
/// Deprecated: use `into_iter`.
#[deprecated = "use into_iter"]
pub fn move_iter(self) -> MoveItems<T> {
2014-09-14 22:27:36 -05:00
self.into_iter()
}
pub fn into_iter(self) -> MoveItems<T> {
let repr = match self.repr {
2013-11-24 23:18:21 -06:00
Zero => ZeroIterator,
One(v) => OneIterator(v),
2014-09-14 22:27:36 -05:00
Many(vs) => ManyIterator(vs.into_iter())
};
MoveItems { repr: repr }
2013-11-24 23:18:21 -06:00
}
pub fn len(&self) -> uint {
match self.repr {
Zero => 0,
One(..) => 1,
Many(ref vals) => vals.len()
}
}
pub fn is_empty(&self) -> bool { self.len() == 0 }
2013-11-24 23:18:21 -06:00
}
pub struct MoveItems<T> {
repr: MoveItemsRepr<T>,
}
enum MoveItemsRepr<T> {
ZeroIterator,
OneIterator(T),
ManyIterator(vec::MoveItems<T>),
2013-11-24 23:18:21 -06:00
}
impl<T> Iterator<T> for MoveItems<T> {
2013-11-24 23:18:21 -06:00
fn next(&mut self) -> Option<T> {
match self.repr {
2013-11-24 23:18:21 -06:00
ZeroIterator => None,
2013-11-28 14:22:53 -06:00
OneIterator(..) => {
2013-11-24 23:18:21 -06:00
let mut replacement = ZeroIterator;
mem::swap(&mut self.repr, &mut replacement);
2013-11-24 23:18:21 -06:00
match replacement {
OneIterator(v) => Some(v),
_ => unreachable!()
}
}
ManyIterator(ref mut inner) => inner.next()
}
}
fn size_hint(&self) -> (uint, Option<uint>) {
match self.repr {
2013-11-24 23:18:21 -06:00
ZeroIterator => (0, Some(0)),
2013-11-28 14:22:53 -06:00
OneIterator(..) => (1, Some(1)),
2013-11-24 23:18:21 -06:00
ManyIterator(ref inner) => inner.size_hint()
}
}
}
impl<T> MoveMap<T> for SmallVector<T> {
fn move_map(self, f: |T| -> T) -> SmallVector<T> {
let repr = match self.repr {
Zero => Zero,
One(v) => One(f(v)),
Many(vs) => Many(vs.move_map(f))
};
SmallVector { repr: repr }
}
}
2013-11-24 23:18:21 -06:00
#[cfg(test)]
mod test {
use super::*;
#[test]
fn test_len() {
let v: SmallVector<int> = SmallVector::zero();
assert_eq!(0, v.len());
assert_eq!(1, SmallVector::one(1i).len());
assert_eq!(5, SmallVector::many(vec!(1i, 2, 3, 4, 5)).len());
2013-11-24 23:18:21 -06:00
}
#[test]
fn test_push_get() {
let mut v = SmallVector::zero();
v.push(1i);
2013-11-24 23:18:21 -06:00
assert_eq!(1, v.len());
assert_eq!(&1, v.get(0));
v.push(2);
assert_eq!(2, v.len());
assert_eq!(&2, v.get(1));
v.push(3);
assert_eq!(3, v.len());
assert_eq!(&3, v.get(2));
}
#[test]
fn test_from_iter() {
2014-09-14 22:27:36 -05:00
let v: SmallVector<int> = (vec!(1i, 2, 3)).into_iter().collect();
2013-11-24 23:18:21 -06:00
assert_eq!(3, v.len());
assert_eq!(&1, v.get(0));
assert_eq!(&2, v.get(1));
assert_eq!(&3, v.get(2));
}
#[test]
2013-11-25 22:02:15 -06:00
fn test_move_iter() {
2013-11-24 23:18:21 -06:00
let v = SmallVector::zero();
2014-09-14 22:27:36 -05:00
let v: Vec<int> = v.into_iter().collect();
assert_eq!(Vec::new(), v);
2013-11-24 23:18:21 -06:00
let v = SmallVector::one(1i);
2014-09-14 22:27:36 -05:00
assert_eq!(vec!(1i), v.into_iter().collect());
2013-11-24 23:18:21 -06:00
let v = SmallVector::many(vec!(1i, 2i, 3i));
2014-09-14 22:27:36 -05:00
assert_eq!(vec!(1i, 2i, 3i), v.into_iter().collect());
2013-11-24 23:18:21 -06:00
}
#[test]
2013-11-25 22:02:15 -06:00
#[should_fail]
fn test_expect_one_zero() {
let _: int = SmallVector::zero().expect_one("");
}
2013-11-24 23:18:21 -06:00
2013-11-25 22:02:15 -06:00
#[test]
#[should_fail]
fn test_expect_one_many() {
SmallVector::many(vec!(1i, 2)).expect_one("");
2013-11-25 22:02:15 -06:00
}
2013-11-24 23:18:21 -06:00
2013-11-25 22:02:15 -06:00
#[test]
fn test_expect_one_one() {
assert_eq!(1i, SmallVector::one(1i).expect_one(""));
assert_eq!(1i, SmallVector::many(vec!(1i)).expect_one(""));
2013-11-24 23:18:21 -06:00
}
}