mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-08 09:38:26 +03:00
3cb9fa26ef
This commit is an implementation of [RFC 565][rfc] which is a stabilization of the `std::fmt` module and the implementations of various formatting traits. Specifically, the following changes were performed: [rfc]: https://github.com/rust-lang/rfcs/blob/master/text/0565-show-string-guidelines.md * The `Show` trait is now deprecated, it was renamed to `Debug` * The `String` trait is now deprecated, it was renamed to `Display` * Many `Debug` and `Display` implementations were audited in accordance with the RFC and audited implementations now have the `#[stable]` attribute * Integers and floats no longer print a suffix * Smart pointers no longer print details that they are a smart pointer * Paths with `Debug` are now quoted and escape characters * The `unwrap` methods on `Result` now require `Display` instead of `Debug` * The `Error` trait no longer has a `detail` method and now requires that `Display` must be implemented. With the loss of `String`, this has moved into libcore. * `impl<E: Error> FromError<E> for Box<Error>` now exists * `derive(Show)` has been renamed to `derive(Debug)`. This is not currently warned about due to warnings being emitted on stage1+ While backwards compatibility is attempted to be maintained with a blanket implementation of `Display` for the old `String` trait (and the same for `Show`/`Debug`) this is still a breaking change due to primitives no longer implementing `String` as well as modifications such as `unwrap` and the `Error` trait. Most code is fairly straightforward to update with a rename or tweaks of method calls. [breaking-change] Closes #21436
252 lines
6.6 KiB
Rust
252 lines
6.6 KiB
Rust
// Copyright 2012-2015 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 <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.
|
|
|
|
//! A unique pointer type.
|
|
|
|
#![stable]
|
|
|
|
use core::any::Any;
|
|
use core::clone::Clone;
|
|
use core::cmp::{PartialEq, PartialOrd, Eq, Ord, Ordering};
|
|
use core::default::Default;
|
|
use core::error::{Error, FromError};
|
|
use core::fmt;
|
|
use core::hash::{self, Hash};
|
|
use core::marker::Sized;
|
|
use core::mem;
|
|
use core::ops::{Deref, DerefMut};
|
|
use core::option::Option;
|
|
use core::ptr::Unique;
|
|
use core::raw::TraitObject;
|
|
use core::result::Result::{Ok, Err};
|
|
use core::result::Result;
|
|
|
|
/// A value that represents the global exchange heap. This is the default
|
|
/// place that the `box` keyword allocates into when no place is supplied.
|
|
///
|
|
/// The following two examples are equivalent:
|
|
///
|
|
/// ```rust
|
|
/// #![feature(box_syntax)]
|
|
/// use std::boxed::HEAP;
|
|
///
|
|
/// fn main() {
|
|
/// # struct Bar;
|
|
/// # impl Bar { fn new(_a: int) { } }
|
|
/// let foo = box(HEAP) Bar::new(2);
|
|
/// let foo = box Bar::new(2);
|
|
/// }
|
|
/// ```
|
|
#[lang = "exchange_heap"]
|
|
#[unstable = "may be renamed; uncertain about custom allocator design"]
|
|
pub static HEAP: () = ();
|
|
|
|
/// A type that represents a uniquely-owned value.
|
|
#[lang = "owned_box"]
|
|
#[stable]
|
|
pub struct Box<T>(Unique<T>);
|
|
|
|
impl<T> Box<T> {
|
|
/// Moves `x` into a freshly allocated box on the global exchange heap.
|
|
#[stable]
|
|
pub fn new(x: T) -> Box<T> {
|
|
box x
|
|
}
|
|
}
|
|
|
|
#[stable]
|
|
impl<T: Default> Default for Box<T> {
|
|
#[stable]
|
|
fn default() -> Box<T> { box Default::default() }
|
|
}
|
|
|
|
#[stable]
|
|
impl<T> Default for Box<[T]> {
|
|
#[stable]
|
|
fn default() -> Box<[T]> { box [] }
|
|
}
|
|
|
|
#[stable]
|
|
impl<T: Clone> Clone for Box<T> {
|
|
/// Returns a copy of the owned box.
|
|
#[inline]
|
|
fn clone(&self) -> Box<T> { box {(**self).clone()} }
|
|
|
|
/// Performs copy-assignment from `source` by reusing the existing allocation.
|
|
#[inline]
|
|
fn clone_from(&mut self, source: &Box<T>) {
|
|
(**self).clone_from(&(**source));
|
|
}
|
|
}
|
|
|
|
#[stable]
|
|
impl<T: ?Sized + PartialEq> PartialEq for Box<T> {
|
|
#[inline]
|
|
fn eq(&self, other: &Box<T>) -> bool { PartialEq::eq(&**self, &**other) }
|
|
#[inline]
|
|
fn ne(&self, other: &Box<T>) -> bool { PartialEq::ne(&**self, &**other) }
|
|
}
|
|
#[stable]
|
|
impl<T: ?Sized + PartialOrd> PartialOrd for Box<T> {
|
|
#[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) }
|
|
}
|
|
#[stable]
|
|
impl<T: ?Sized + Ord> Ord for Box<T> {
|
|
#[inline]
|
|
fn cmp(&self, other: &Box<T>) -> Ordering {
|
|
Ord::cmp(&**self, &**other)
|
|
}
|
|
}
|
|
#[stable]
|
|
impl<T: ?Sized + Eq> Eq for Box<T> {}
|
|
|
|
impl<S: hash::Hasher, T: ?Sized + Hash<S>> Hash<S> for Box<T> {
|
|
#[inline]
|
|
fn hash(&self, state: &mut S) {
|
|
(**self).hash(state);
|
|
}
|
|
}
|
|
|
|
/// Extension methods for an owning `Any` trait object.
|
|
#[unstable = "this trait will likely disappear once compiler bugs blocking \
|
|
a direct impl on `Box<Any>` have been fixed "]
|
|
// FIXME(#18737): this should be a direct impl on `Box<Any>`. If you're
|
|
// removing this please make sure that you can downcase on
|
|
// `Box<Any + Send>` as well as `Box<Any>`
|
|
pub trait BoxAny {
|
|
/// Returns the boxed value if it is of type `T`, or
|
|
/// `Err(Self)` if it isn't.
|
|
#[stable]
|
|
fn downcast<T: 'static>(self) -> Result<Box<T>, Self>;
|
|
}
|
|
|
|
#[stable]
|
|
impl BoxAny for Box<Any> {
|
|
#[inline]
|
|
fn downcast<T: 'static>(self) -> Result<Box<T>, Box<Any>> {
|
|
if self.is::<T>() {
|
|
unsafe {
|
|
// Get the raw representation of the trait object
|
|
let to: TraitObject =
|
|
mem::transmute::<Box<Any>, TraitObject>(self);
|
|
|
|
// Extract the data pointer
|
|
Ok(mem::transmute(to.data))
|
|
}
|
|
} else {
|
|
Err(self)
|
|
}
|
|
}
|
|
}
|
|
|
|
#[stable]
|
|
impl<T: fmt::Display + ?Sized> fmt::Display for Box<T> {
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
fmt::Display::fmt(&**self, f)
|
|
}
|
|
}
|
|
|
|
#[stable]
|
|
impl<T: fmt::Debug + ?Sized> fmt::Debug for Box<T> {
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
fmt::Debug::fmt(&**self, f)
|
|
}
|
|
}
|
|
|
|
#[stable]
|
|
impl fmt::Debug for Box<Any> {
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
f.pad("Box<Any>")
|
|
}
|
|
}
|
|
|
|
#[stable]
|
|
impl<T: ?Sized> Deref for Box<T> {
|
|
type Target = T;
|
|
|
|
fn deref(&self) -> &T { &**self }
|
|
}
|
|
|
|
#[stable]
|
|
impl<T: ?Sized> DerefMut for Box<T> {
|
|
fn deref_mut(&mut self) -> &mut T { &mut **self }
|
|
}
|
|
|
|
impl<'a, E: Error + 'a> FromError<E> for Box<Error + 'a> {
|
|
fn from_error(err: E) -> Box<Error + 'a> {
|
|
Box::new(err)
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod test {
|
|
#[test]
|
|
fn test_owned_clone() {
|
|
let a = Box::new(5i);
|
|
let b: Box<int> = a.clone();
|
|
assert!(a == b);
|
|
}
|
|
|
|
#[test]
|
|
fn any_move() {
|
|
let a = Box::new(8u) as Box<Any>;
|
|
let b = Box::new(Test) as Box<Any>;
|
|
|
|
match a.downcast::<uint>() {
|
|
Ok(a) => { assert!(a == Box::new(8u)); }
|
|
Err(..) => panic!()
|
|
}
|
|
match b.downcast::<Test>() {
|
|
Ok(a) => { assert!(a == Box::new(Test)); }
|
|
Err(..) => panic!()
|
|
}
|
|
|
|
let a = Box::new(8u) as Box<Any>;
|
|
let b = Box::new(Test) as Box<Any>;
|
|
|
|
assert!(a.downcast::<Box<Test>>().is_err());
|
|
assert!(b.downcast::<Box<uint>>().is_err());
|
|
}
|
|
|
|
#[test]
|
|
fn test_show() {
|
|
let a = Box::new(8u) as Box<Any>;
|
|
let b = Box::new(Test) as Box<Any>;
|
|
let a_str = a.to_str();
|
|
let b_str = b.to_str();
|
|
assert_eq!(a_str, "Box<Any>");
|
|
assert_eq!(b_str, "Box<Any>");
|
|
|
|
let a = &8u as &Any;
|
|
let b = &Test as &Any;
|
|
let s = format!("{}", a);
|
|
assert_eq!(s, "&Any");
|
|
let s = format!("{}", b);
|
|
assert_eq!(s, "&Any");
|
|
}
|
|
|
|
#[test]
|
|
fn deref() {
|
|
fn homura<T: Deref<Target=i32>>(_: T) { }
|
|
homura(Box::new(765i32));
|
|
}
|
|
}
|