2015-01-07 14:37:07 -06:00
|
|
|
// Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
|
2014-05-13 16:58:29 -05: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.
|
|
|
|
|
2015-01-22 11:07:23 -06:00
|
|
|
//! A pointer type for heap allocation.
|
|
|
|
//!
|
2015-02-17 22:48:07 -06:00
|
|
|
//! `Box<T>`, casually referred to as a 'box', provides the simplest form of
|
|
|
|
//! heap allocation in Rust. Boxes provide ownership for this allocation, and
|
|
|
|
//! drop their contents when they go out of scope.
|
2015-01-22 11:07:23 -06:00
|
|
|
//!
|
2015-02-17 22:48:07 -06:00
|
|
|
//! Boxes are useful in two situations: recursive data structures, and
|
|
|
|
//! occasionally when returning data. [The Pointer chapter of the
|
|
|
|
//! Book](../../../book/pointers.html#best-practices-1) explains these cases in
|
|
|
|
//! detail.
|
2015-01-22 11:07:23 -06:00
|
|
|
//!
|
|
|
|
//! # Examples
|
|
|
|
//!
|
|
|
|
//! Creating a box:
|
|
|
|
//!
|
|
|
|
//! ```
|
|
|
|
//! let x = Box::new(5);
|
|
|
|
//! ```
|
|
|
|
//!
|
|
|
|
//! Creating a recursive data structure:
|
|
|
|
//!
|
|
|
|
//! ```
|
2015-01-28 07:34:18 -06:00
|
|
|
//! #[derive(Debug)]
|
2015-01-22 11:07:23 -06:00
|
|
|
//! enum List<T> {
|
|
|
|
//! Cons(T, Box<List<T>>),
|
|
|
|
//! Nil,
|
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! fn main() {
|
|
|
|
//! let list: List<i32> = List::Cons(1, Box::new(List::Cons(2, Box::new(List::Nil))));
|
|
|
|
//! println!("{:?}", list);
|
|
|
|
//! }
|
|
|
|
//! ```
|
|
|
|
//!
|
2015-03-03 02:42:26 -06:00
|
|
|
//! This will print `Cons(1, Box(Cons(2, Box(Nil))))`.
|
2014-05-13 16:58:29 -05:00
|
|
|
|
2015-01-23 23:48:20 -06:00
|
|
|
#![stable(feature = "rust1", since = "1.0.0")]
|
2015-01-02 00:24:06 -06:00
|
|
|
|
2015-02-03 14:32:56 -06:00
|
|
|
use core::prelude::*;
|
|
|
|
|
2015-01-01 00:13:08 -06:00
|
|
|
use core::any::Any;
|
2015-02-03 14:32:56 -06:00
|
|
|
use core::cmp::Ordering;
|
2014-05-13 18:10:05 -05:00
|
|
|
use core::default::Default;
|
2015-03-30 19:56:48 -05:00
|
|
|
use core::error::Error;
|
2014-05-13 18:10:05 -05:00
|
|
|
use core::fmt;
|
2015-01-03 21:42:21 -06:00
|
|
|
use core::hash::{self, Hash};
|
2014-05-13 18:10:05 -05:00
|
|
|
use core::mem;
|
2015-01-20 17:45:07 -06:00
|
|
|
use core::ops::{Deref, DerefMut};
|
2015-03-31 18:01:03 -05:00
|
|
|
use core::ptr::{self, Unique};
|
|
|
|
use core::raw::{TraitObject, Slice};
|
|
|
|
|
|
|
|
use heap;
|
2014-05-13 16:58:29 -05:00
|
|
|
|
2015-02-17 22:48:07 -06:00
|
|
|
/// A value that represents the heap. This is the default place that the `box`
|
|
|
|
/// keyword allocates into when no place is supplied.
|
2014-05-13 16:58:29 -05:00
|
|
|
///
|
|
|
|
/// The following two examples are equivalent:
|
|
|
|
///
|
2015-03-12 21:42:38 -05:00
|
|
|
/// ```
|
2015-03-13 17:28:35 -05:00
|
|
|
/// # #![feature(alloc)]
|
2015-01-07 20:53:58 -06:00
|
|
|
/// #![feature(box_syntax)]
|
2014-08-04 05:48:39 -05:00
|
|
|
/// use std::boxed::HEAP;
|
2014-06-18 03:04:35 -05:00
|
|
|
///
|
2015-01-07 20:53:58 -06:00
|
|
|
/// fn main() {
|
2015-01-22 11:07:23 -06:00
|
|
|
/// let foo = box(HEAP) 5;
|
|
|
|
/// let foo = box 5;
|
2015-01-07 20:53:58 -06:00
|
|
|
/// }
|
2014-08-04 05:48:39 -05:00
|
|
|
/// ```
|
2014-07-10 16:19:17 -05:00
|
|
|
#[lang = "exchange_heap"]
|
2015-01-22 20:22:03 -06:00
|
|
|
#[unstable(feature = "alloc",
|
2015-01-12 20:40:19 -06:00
|
|
|
reason = "may be renamed; uncertain about custom allocator design")]
|
2014-05-13 16:58:29 -05:00
|
|
|
pub static HEAP: () = ();
|
|
|
|
|
2015-01-22 11:07:23 -06:00
|
|
|
/// A pointer type for heap allocation.
|
|
|
|
///
|
|
|
|
/// See the [module-level documentation](../../std/boxed/index.html) for more.
|
2014-07-10 16:19:17 -05:00
|
|
|
#[lang = "owned_box"]
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2014-12-22 07:25:58 -06:00
|
|
|
pub struct Box<T>(Unique<T>);
|
2014-05-13 16:58:29 -05:00
|
|
|
|
2015-01-06 18:10:50 -06:00
|
|
|
impl<T> Box<T> {
|
2015-01-22 11:07:23 -06:00
|
|
|
/// Allocates memory on the heap and then moves `x` into it.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// let x = Box::new(5);
|
|
|
|
/// ```
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-02-16 04:53:29 -06:00
|
|
|
#[inline(always)]
|
2015-01-06 18:10:50 -06:00
|
|
|
pub fn new(x: T) -> Box<T> {
|
|
|
|
box x
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-01 11:15:44 -06:00
|
|
|
impl<T : ?Sized> Box<T> {
|
|
|
|
/// Constructs a box from the raw pointer.
|
|
|
|
///
|
|
|
|
/// After this function call, pointer is owned by resulting box.
|
|
|
|
/// In particular, it means that `Box` destructor calls destructor
|
|
|
|
/// of `T` and releases memory. Since the way `Box` allocates and
|
2015-02-22 17:25:47 -06:00
|
|
|
/// releases memory is unspecified, the only valid pointer to pass
|
|
|
|
/// to this function is the one taken from another `Box` with
|
|
|
|
/// `boxed::into_raw` function.
|
2015-02-01 11:15:44 -06:00
|
|
|
///
|
|
|
|
/// Function is unsafe, because improper use of this function may
|
|
|
|
/// lead to memory problems like double-free, for example if the
|
|
|
|
/// function is called twice on the same raw pointer.
|
|
|
|
#[unstable(feature = "alloc",
|
|
|
|
reason = "may be renamed or moved out of Box scope")]
|
2015-02-22 17:58:54 -06:00
|
|
|
#[inline]
|
2015-02-01 11:15:44 -06:00
|
|
|
pub unsafe fn from_raw(raw: *mut T) -> Self {
|
|
|
|
mem::transmute(raw)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Consumes the `Box`, returning the wrapped raw pointer.
|
|
|
|
///
|
|
|
|
/// After call to this function, caller is responsible for the memory
|
|
|
|
/// previously managed by `Box`, in particular caller should properly
|
|
|
|
/// destroy `T` and release memory. The proper way to do it is to
|
|
|
|
/// convert pointer back to `Box` with `Box::from_raw` function, because
|
|
|
|
/// `Box` does not specify, how memory is allocated.
|
|
|
|
///
|
|
|
|
/// Function is unsafe, because result of this function is no longer
|
|
|
|
/// automatically managed that may lead to memory or other resource
|
|
|
|
/// leak.
|
|
|
|
///
|
2015-03-11 20:11:40 -05:00
|
|
|
/// # Examples
|
2015-02-01 11:15:44 -06:00
|
|
|
/// ```
|
2015-03-13 17:28:35 -05:00
|
|
|
/// # #![feature(alloc)]
|
2015-02-01 11:15:44 -06:00
|
|
|
/// use std::boxed;
|
|
|
|
///
|
|
|
|
/// let seventeen = Box::new(17u32);
|
|
|
|
/// let raw = unsafe { boxed::into_raw(seventeen) };
|
|
|
|
/// let boxed_again = unsafe { Box::from_raw(raw) };
|
|
|
|
/// ```
|
|
|
|
#[unstable(feature = "alloc",
|
|
|
|
reason = "may be renamed")]
|
2015-02-22 17:58:54 -06:00
|
|
|
#[inline]
|
2015-02-01 11:15:44 -06:00
|
|
|
pub unsafe fn into_raw<T : ?Sized>(b: Box<T>) -> *mut T {
|
|
|
|
mem::transmute(b)
|
|
|
|
}
|
|
|
|
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2014-05-13 16:58:29 -05:00
|
|
|
impl<T: Default> Default for Box<T> {
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2014-05-13 16:58:29 -05:00
|
|
|
fn default() -> Box<T> { box Default::default() }
|
|
|
|
}
|
|
|
|
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2014-11-06 11:52:45 -06:00
|
|
|
impl<T> Default for Box<[T]> {
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-02-15 02:52:21 -06:00
|
|
|
fn default() -> Box<[T]> { Box::<[T; 0]>::new([]) }
|
2014-11-06 11:52:45 -06:00
|
|
|
}
|
|
|
|
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2014-05-13 16:58:29 -05:00
|
|
|
impl<T: Clone> Clone for Box<T> {
|
2015-01-22 11:07:23 -06:00
|
|
|
/// Returns a new box with a `clone()` of this box's contents.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// let x = Box::new(5);
|
|
|
|
/// let y = x.clone();
|
|
|
|
/// ```
|
2014-05-13 16:58:29 -05:00
|
|
|
#[inline]
|
|
|
|
fn clone(&self) -> Box<T> { box {(**self).clone()} }
|
|
|
|
|
2015-01-22 11:07:23 -06:00
|
|
|
/// Copies `source`'s contents into `self` without creating a new allocation.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
2015-03-13 17:28:35 -05:00
|
|
|
/// # #![feature(alloc, core)]
|
2015-01-22 11:07:23 -06:00
|
|
|
/// let x = Box::new(5);
|
|
|
|
/// let mut y = Box::new(10);
|
|
|
|
///
|
|
|
|
/// y.clone_from(&x);
|
|
|
|
///
|
|
|
|
/// assert_eq!(*y, 5);
|
|
|
|
/// ```
|
2014-05-13 16:58:29 -05:00
|
|
|
#[inline]
|
|
|
|
fn clone_from(&mut self, source: &Box<T>) {
|
|
|
|
(**self).clone_from(&(**source));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-05 15:16:49 -06:00
|
|
|
impl<T: ?Sized + PartialEq> PartialEq for Box<T> {
|
2014-10-30 15:33:47 -05:00
|
|
|
#[inline]
|
|
|
|
fn eq(&self, other: &Box<T>) -> bool { PartialEq::eq(&**self, &**other) }
|
|
|
|
#[inline]
|
|
|
|
fn ne(&self, other: &Box<T>) -> bool { PartialEq::ne(&**self, &**other) }
|
|
|
|
}
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-05 15:16:49 -06:00
|
|
|
impl<T: ?Sized + PartialOrd> PartialOrd for Box<T> {
|
2014-10-30 15:33:47 -05:00
|
|
|
#[inline]
|
|
|
|
fn partial_cmp(&self, other: &Box<T>) -> Option<Ordering> {
|
|
|
|
PartialOrd::partial_cmp(&**self, &**other)
|
|
|
|
}
|
|
|
|
#[inline]
|
|
|
|
fn lt(&self, other: &Box<T>) -> bool { PartialOrd::lt(&**self, &**other) }
|
|
|
|
#[inline]
|
|
|
|
fn le(&self, other: &Box<T>) -> bool { PartialOrd::le(&**self, &**other) }
|
|
|
|
#[inline]
|
|
|
|
fn ge(&self, other: &Box<T>) -> bool { PartialOrd::ge(&**self, &**other) }
|
|
|
|
#[inline]
|
|
|
|
fn gt(&self, other: &Box<T>) -> bool { PartialOrd::gt(&**self, &**other) }
|
|
|
|
}
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-05 15:16:49 -06:00
|
|
|
impl<T: ?Sized + Ord> Ord for Box<T> {
|
2014-10-30 15:33:47 -05:00
|
|
|
#[inline]
|
|
|
|
fn cmp(&self, other: &Box<T>) -> Ordering {
|
|
|
|
Ord::cmp(&**self, &**other)
|
|
|
|
}
|
2015-01-07 14:37:07 -06:00
|
|
|
}
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-05 15:16:49 -06:00
|
|
|
impl<T: ?Sized + Eq> Eq for Box<T> {}
|
2014-10-30 15:33:47 -05:00
|
|
|
|
2015-02-17 22:48:07 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
impl<T: ?Sized + Hash> Hash for Box<T> {
|
|
|
|
fn hash<H: hash::Hasher>(&self, state: &mut H) {
|
|
|
|
(**self).hash(state);
|
|
|
|
}
|
|
|
|
}
|
2014-12-12 20:43:07 -06:00
|
|
|
|
2015-03-30 18:43:04 -05:00
|
|
|
impl Box<Any> {
|
2014-06-25 20:18:13 -05:00
|
|
|
#[inline]
|
2015-03-30 18:43:04 -05:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
pub fn downcast<T: Any>(self) -> Result<Box<T>, Box<Any>> {
|
2014-06-25 20:18:13 -05:00
|
|
|
if self.is::<T>() {
|
|
|
|
unsafe {
|
|
|
|
// Get the raw representation of the trait object
|
2015-02-22 17:58:22 -06:00
|
|
|
let raw = into_raw(self);
|
2014-06-25 20:18:13 -05:00
|
|
|
let to: TraitObject =
|
2015-02-22 17:58:22 -06:00
|
|
|
mem::transmute::<*mut Any, TraitObject>(raw);
|
2014-06-25 20:18:13 -05:00
|
|
|
|
|
|
|
// Extract the data pointer
|
2015-02-22 17:58:22 -06:00
|
|
|
Ok(Box::from_raw(to.data as *mut T))
|
2014-06-25 20:18:13 -05:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Err(self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-30 18:43:04 -05:00
|
|
|
impl Box<Any+Send> {
|
2015-02-17 04:17:19 -06:00
|
|
|
#[inline]
|
2015-03-30 18:43:04 -05:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
pub fn downcast<T: Any>(self) -> Result<Box<T>, Box<Any>> {
|
2015-02-17 04:17:19 -06:00
|
|
|
<Box<Any>>::downcast(self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:15:42 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-20 17:45:07 -06:00
|
|
|
impl<T: fmt::Display + ?Sized> fmt::Display for Box<T> {
|
2014-05-11 13:14:14 -05:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2015-01-20 17:45:07 -06:00
|
|
|
fmt::Display::fmt(&**self, f)
|
2014-12-20 02:09:35 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-20 17:45:07 -06:00
|
|
|
impl<T: fmt::Debug + ?Sized> fmt::Debug for Box<T> {
|
2014-12-20 02:09:35 -06:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2015-01-20 17:45:07 -06:00
|
|
|
fmt::Debug::fmt(&**self, f)
|
2014-05-11 13:14:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:15:42 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-20 17:45:07 -06:00
|
|
|
impl fmt::Debug for Box<Any> {
|
2014-05-11 13:14:14 -05:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
f.pad("Box<Any>")
|
|
|
|
}
|
|
|
|
}
|
2014-06-28 15:57:36 -05:00
|
|
|
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-05 15:16:49 -06:00
|
|
|
impl<T: ?Sized> Deref for Box<T> {
|
2015-01-01 13:53:20 -06:00
|
|
|
type Target = T;
|
|
|
|
|
2014-12-19 16:44:21 -06:00
|
|
|
fn deref(&self) -> &T { &**self }
|
|
|
|
}
|
|
|
|
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-05 15:16:49 -06:00
|
|
|
impl<T: ?Sized> DerefMut for Box<T> {
|
2014-12-19 16:44:21 -06:00
|
|
|
fn deref_mut(&mut self) -> &mut T { &mut **self }
|
|
|
|
}
|
|
|
|
|
2015-02-03 14:32:56 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
impl<I: Iterator + ?Sized> Iterator for Box<I> {
|
|
|
|
type Item = I::Item;
|
|
|
|
fn next(&mut self) -> Option<I::Item> { (**self).next() }
|
|
|
|
fn size_hint(&self) -> (usize, Option<usize>) { (**self).size_hint() }
|
|
|
|
}
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
impl<I: DoubleEndedIterator + ?Sized> DoubleEndedIterator for Box<I> {
|
|
|
|
fn next_back(&mut self) -> Option<I::Item> { (**self).next_back() }
|
2015-01-19 08:48:05 -06:00
|
|
|
}
|
2015-02-03 14:32:56 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
impl<I: ExactSizeIterator + ?Sized> ExactSizeIterator for Box<I> {}
|
2014-12-19 16:44:21 -06:00
|
|
|
|
2015-02-03 14:32:56 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-03-30 19:56:48 -05:00
|
|
|
impl<'a, E: Error + 'a> From<E> for Box<Error + 'a> {
|
|
|
|
fn from(err: E) -> Box<Error + 'a> {
|
2015-01-21 11:20:35 -06:00
|
|
|
Box::new(err)
|
2014-12-19 16:44:21 -06:00
|
|
|
}
|
2014-06-28 15:57:36 -05:00
|
|
|
}
|
2015-03-31 18:01:03 -05:00
|
|
|
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
impl<'a, E: Error + Send + 'a> From<E> for Box<Error + Send + 'a> {
|
|
|
|
fn from(err: E) -> Box<Error + Send + 'a> {
|
|
|
|
Box::new(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
impl<'a, 'b> From<&'b str> for Box<Error + Send + 'a> {
|
|
|
|
fn from(err: &'b str) -> Box<Error + Send + 'a> {
|
|
|
|
#[derive(Debug)]
|
|
|
|
struct StringError(Box<str>);
|
|
|
|
impl Error for StringError {
|
|
|
|
fn description(&self) -> &str { &self.0 }
|
|
|
|
}
|
|
|
|
impl fmt::Display for StringError {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
self.0.fmt(f)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unfortunately `String` is located in libcollections, so we construct
|
|
|
|
// a `Box<str>` manually here.
|
|
|
|
unsafe {
|
|
|
|
let alloc = if err.len() == 0 {
|
|
|
|
0 as *mut u8
|
|
|
|
} else {
|
|
|
|
let ptr = heap::allocate(err.len(), 1);
|
|
|
|
if ptr.is_null() { ::oom(); }
|
|
|
|
ptr as *mut u8
|
|
|
|
};
|
|
|
|
ptr::copy(err.as_bytes().as_ptr(), alloc, err.len());
|
|
|
|
Box::new(StringError(mem::transmute(Slice {
|
|
|
|
data: alloc,
|
|
|
|
len: err.len(),
|
|
|
|
})))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|