// Copyright 2012 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. //! Managed vectors use clone::Clone; use container::Container; use iterator::{Iterator, range}; use option::{Option, Some, None}; use sys; use unstable::raw::Repr; use vec::{ImmutableVector, OwnedVector}; /// Code for dealing with @-vectors. This is pretty incomplete, and /// contains a bunch of duplication from the code for ~-vectors. /// Returns the number of elements the vector can hold without reallocating #[inline] pub fn capacity(v: @[T]) -> uint { unsafe { let box = v.repr(); (*box).data.alloc / sys::size_of::() } } /** * Builds a vector by calling a provided function with an argument * function that pushes an element to the back of a vector. * This version takes an initial size for the vector. * * # Arguments * * * size - An initial size of the vector to reserve * * builder - A function that will construct the vector. It receives * as an argument a function that will push an element * onto the vector being constructed. */ #[inline] pub fn build_sized(size: uint, builder: &fn(push: &fn(v: A))) -> @[A] { let mut vec = @[]; unsafe { raw::reserve(&mut vec, size); } builder(|x| unsafe { raw::push(&mut vec, x) }); vec } /** * Builds a vector by calling a provided function with an argument * function that pushes an element to the back of a vector. * * # Arguments * * * builder - A function that will construct the vector. It receives * as an argument a function that will push an element * onto the vector being constructed. */ #[inline] pub fn build(builder: &fn(push: &fn(v: A))) -> @[A] { build_sized(4, builder) } /** * Builds a vector by calling a provided function with an argument * function that pushes an element to the back of a vector. * This version takes an initial size for the vector. * * # Arguments * * * size - An option, maybe containing initial size of the vector to reserve * * builder - A function that will construct the vector. It receives * as an argument a function that will push an element * onto the vector being constructed. */ #[inline] pub fn build_sized_opt(size: Option, builder: &fn(push: &fn(v: A))) -> @[A] { build_sized(size.get_or_default(4), builder) } // Appending /// Iterates over the `rhs` vector, copying each element and appending it to the /// `lhs`. Afterwards, the `lhs` is then returned for use again. #[inline] pub fn append(lhs: @[T], rhs: &[T]) -> @[T] { do build_sized(lhs.len() + rhs.len()) |push| { for x in lhs.iter() { push((*x).clone()); } for i in range(0u, rhs.len()) { push(rhs[i].clone()); } } } /// Apply a function to each element of a vector and return the results pub fn map(v: &[T], f: &fn(x: &T) -> U) -> @[U] { do build_sized(v.len()) |push| { for elem in v.iter() { push(f(elem)); } } } /** * Creates and initializes an immutable vector. * * Creates an immutable vector of size `n_elts` and initializes the elements * to the value returned by the function `op`. */ pub fn from_fn(n_elts: uint, op: &fn(uint) -> T) -> @[T] { do build_sized(n_elts) |push| { let mut i: uint = 0u; while i < n_elts { push(op(i)); i += 1u; } } } /** * Creates and initializes an immutable vector. * * Creates an immutable vector of size `n_elts` and initializes the elements * to the value `t`. */ pub fn from_elem(n_elts: uint, t: T) -> @[T] { do build_sized(n_elts) |push| { let mut i: uint = 0u; while i < n_elts { push(t.clone()); i += 1u; } } } /** * Creates and initializes an immutable managed vector by moving all the * elements from an owned vector. */ pub fn to_managed_consume(v: ~[T]) -> @[T] { let mut av = @[]; unsafe { raw::reserve(&mut av, v.len()); for x in v.consume_iter() { raw::push(&mut av, x); } av } } /** * Creates and initializes an immutable managed vector by copying all the * elements of a slice. */ pub fn to_managed(v: &[T]) -> @[T] { from_fn(v.len(), |i| v[i].clone()) } impl Clone for @[T] { fn clone(&self) -> @[T] { *self } } #[cfg(not(test))] pub mod traits { use at_vec::append; use clone::Clone; use ops::Add; use vec::Vector; impl<'self,T:Clone, V: Vector> Add for @[T] { #[inline] fn add(&self, rhs: &V) -> @[T] { append(*self, rhs.as_slice()) } } } #[cfg(test)] pub mod traits {} pub mod raw { use at_vec::capacity; use cast; use cast::{transmute, transmute_copy}; use libc; use ptr; use sys; use uint; use unstable::intrinsics::{move_val_init, TyDesc}; use unstable::intrinsics; use unstable::raw::{Box, Vec}; /** * Sets the length of a vector * * This will explicitly set the size of the vector, without actually * modifing its buffers, so it is up to the caller to ensure that * the vector is actually the specified size. */ #[inline] pub unsafe fn set_len(v: &mut @[T], new_len: uint) { let repr: *mut Box> = cast::transmute_copy(v); (*repr).data.fill = new_len * sys::size_of::(); } /** * Pushes a new value onto this vector. */ #[inline] pub unsafe fn push(v: &mut @[T], initval: T) { let full = { let repr: *Box> = cast::transmute_copy(v); (*repr).data.alloc > (*repr).data.fill }; if full { push_fast(v, initval); } else { push_slow(v, initval); } } #[inline] // really pretty please unsafe fn push_fast(v: &mut @[T], initval: T) { let repr: *mut Box> = cast::transmute_copy(v); let amt = v.len(); (*repr).data.fill += sys::size_of::(); let p = ptr::offset(&(*repr).data.data as *T, amt as int) as *mut T; move_val_init(&mut(*p), initval); } unsafe fn push_slow(v: &mut @[T], initval: T) { reserve_at_least(v, v.len() + 1u); push_fast(v, initval); } /** * Reserves capacity for exactly `n` elements in the given vector. * * If the capacity for `v` is already equal to or greater than the * requested capacity, then no action is taken. * * # Arguments * * * v - A vector * * n - The number of elements to reserve space for */ pub unsafe fn reserve(v: &mut @[T], n: uint) { // Only make the (slow) call into the runtime if we have to if capacity(*v) < n { let ptr: *mut *mut Box> = transmute(v); let ty = intrinsics::get_tydesc::(); // XXX transmute shouldn't be necessary let ty = cast::transmute(ty); return reserve_raw(ty, ptr, n); } } // Implementation detail. Shouldn't be public #[allow(missing_doc)] pub fn reserve_raw(ty: *TyDesc, ptr: *mut *mut Box>, n: uint) { unsafe { let size_in_bytes = n * (*ty).size; if size_in_bytes > (**ptr).data.alloc { let total_size = size_in_bytes + sys::size_of::>(); (*ptr) = local_realloc(*ptr as *(), total_size) as *mut Box>; (**ptr).data.alloc = size_in_bytes; } } fn local_realloc(ptr: *(), size: uint) -> *() { use rt; use rt::OldTaskContext; use rt::local::Local; use rt::task::Task; if rt::context() == OldTaskContext { unsafe { return rust_local_realloc(ptr, size as libc::size_t); } extern { #[fast_ffi] fn rust_local_realloc(ptr: *(), size: libc::size_t) -> *(); } } else { do Local::borrow:: |task| { task.heap.realloc(ptr as *libc::c_void, size) as *() } } } } /** * Reserves capacity for at least `n` elements in the given vector. * * This function will over-allocate in order to amortize the * allocation costs in scenarios where the caller may need to * repeatedly reserve additional space. * * If the capacity for `v` is already equal to or greater than the * requested capacity, then no action is taken. * * # Arguments * * * v - A vector * * n - The number of elements to reserve space for */ pub unsafe fn reserve_at_least(v: &mut @[T], n: uint) { reserve(v, uint::next_power_of_two(n)); } } #[cfg(test)] mod test { use super::*; use prelude::*; #[test] fn test() { // Some code that could use that, then: fn seq_range(lo: uint, hi: uint) -> @[uint] { do build |push| { for i in range(lo, hi) { push(i); } } } assert_eq!(seq_range(10, 15), @[10, 11, 12, 13, 14]); assert_eq!(from_fn(5, |x| x+1), @[1, 2, 3, 4, 5]); assert_eq!(from_elem(5, 3.14), @[3.14, 3.14, 3.14, 3.14, 3.14]); } #[test] fn append_test() { assert_eq!(@[1,2,3] + &[4,5,6], @[1,2,3,4,5,6]); } #[test] fn test_to_managed_consume() { assert_eq!(to_managed_consume::(~[]), @[]); assert_eq!(to_managed_consume(~[true]), @[true]); assert_eq!(to_managed_consume(~[1, 2, 3, 4, 5]), @[1, 2, 3, 4, 5]); assert_eq!(to_managed_consume(~[~"abc", ~"123"]), @[~"abc", ~"123"]); assert_eq!(to_managed_consume(~[~[42]]), @[~[42]]); } #[test] fn test_to_managed() { assert_eq!(to_managed::([]), @[]); assert_eq!(to_managed([true]), @[true]); assert_eq!(to_managed([1, 2, 3, 4, 5]), @[1, 2, 3, 4, 5]); assert_eq!(to_managed([@"abc", @"123"]), @[@"abc", @"123"]); assert_eq!(to_managed([@[42]]), @[@[42]]); } }