]> git.lizzy.rs Git - rust.git/blob - src/liballoc/boxed.rs
std: Rename Show/String to Debug/Display
[rust.git] / src / liballoc / boxed.rs
1 // Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! A unique pointer type.
12
13 #![stable]
14
15 use core::any::Any;
16 use core::clone::Clone;
17 use core::cmp::{PartialEq, PartialOrd, Eq, Ord, Ordering};
18 use core::default::Default;
19 use core::error::{Error, FromError};
20 use core::fmt;
21 use core::hash::{self, Hash};
22 use core::marker::Sized;
23 use core::mem;
24 use core::ops::{Deref, DerefMut};
25 use core::option::Option;
26 use core::ptr::Unique;
27 use core::raw::TraitObject;
28 use core::result::Result::{Ok, Err};
29 use core::result::Result;
30
31 /// A value that represents the global exchange heap. This is the default
32 /// place that the `box` keyword allocates into when no place is supplied.
33 ///
34 /// The following two examples are equivalent:
35 ///
36 /// ```rust
37 /// #![feature(box_syntax)]
38 /// use std::boxed::HEAP;
39 ///
40 /// fn main() {
41 /// # struct Bar;
42 /// # impl Bar { fn new(_a: int) { } }
43 ///     let foo = box(HEAP) Bar::new(2);
44 ///     let foo = box Bar::new(2);
45 /// }
46 /// ```
47 #[lang = "exchange_heap"]
48 #[unstable = "may be renamed; uncertain about custom allocator design"]
49 pub static HEAP: () = ();
50
51 /// A type that represents a uniquely-owned value.
52 #[lang = "owned_box"]
53 #[stable]
54 pub struct Box<T>(Unique<T>);
55
56 impl<T> Box<T> {
57     /// Moves `x` into a freshly allocated box on the global exchange heap.
58     #[stable]
59     pub fn new(x: T) -> Box<T> {
60         box x
61     }
62 }
63
64 #[stable]
65 impl<T: Default> Default for Box<T> {
66     #[stable]
67     fn default() -> Box<T> { box Default::default() }
68 }
69
70 #[stable]
71 impl<T> Default for Box<[T]> {
72     #[stable]
73     fn default() -> Box<[T]> { box [] }
74 }
75
76 #[stable]
77 impl<T: Clone> Clone for Box<T> {
78     /// Returns a copy of the owned box.
79     #[inline]
80     fn clone(&self) -> Box<T> { box {(**self).clone()} }
81
82     /// Performs copy-assignment from `source` by reusing the existing allocation.
83     #[inline]
84     fn clone_from(&mut self, source: &Box<T>) {
85         (**self).clone_from(&(**source));
86     }
87 }
88
89 #[stable]
90 impl<T: ?Sized + PartialEq> PartialEq for Box<T> {
91     #[inline]
92     fn eq(&self, other: &Box<T>) -> bool { PartialEq::eq(&**self, &**other) }
93     #[inline]
94     fn ne(&self, other: &Box<T>) -> bool { PartialEq::ne(&**self, &**other) }
95 }
96 #[stable]
97 impl<T: ?Sized + PartialOrd> PartialOrd for Box<T> {
98     #[inline]
99     fn partial_cmp(&self, other: &Box<T>) -> Option<Ordering> {
100         PartialOrd::partial_cmp(&**self, &**other)
101     }
102     #[inline]
103     fn lt(&self, other: &Box<T>) -> bool { PartialOrd::lt(&**self, &**other) }
104     #[inline]
105     fn le(&self, other: &Box<T>) -> bool { PartialOrd::le(&**self, &**other) }
106     #[inline]
107     fn ge(&self, other: &Box<T>) -> bool { PartialOrd::ge(&**self, &**other) }
108     #[inline]
109     fn gt(&self, other: &Box<T>) -> bool { PartialOrd::gt(&**self, &**other) }
110 }
111 #[stable]
112 impl<T: ?Sized + Ord> Ord for Box<T> {
113     #[inline]
114     fn cmp(&self, other: &Box<T>) -> Ordering {
115         Ord::cmp(&**self, &**other)
116     }
117 }
118 #[stable]
119 impl<T: ?Sized + Eq> Eq for Box<T> {}
120
121 impl<S: hash::Hasher, T: ?Sized + Hash<S>> Hash<S> for Box<T> {
122     #[inline]
123     fn hash(&self, state: &mut S) {
124         (**self).hash(state);
125     }
126 }
127
128 /// Extension methods for an owning `Any` trait object.
129 #[unstable = "this trait will likely disappear once compiler bugs blocking \
130               a direct impl on `Box<Any>` have been fixed "]
131 // FIXME(#18737): this should be a direct impl on `Box<Any>`. If you're
132 //                removing this please make sure that you can downcase on
133 //                `Box<Any + Send>` as well as `Box<Any>`
134 pub trait BoxAny {
135     /// Returns the boxed value if it is of type `T`, or
136     /// `Err(Self)` if it isn't.
137     #[stable]
138     fn downcast<T: 'static>(self) -> Result<Box<T>, Self>;
139 }
140
141 #[stable]
142 impl BoxAny for Box<Any> {
143     #[inline]
144     fn downcast<T: 'static>(self) -> Result<Box<T>, Box<Any>> {
145         if self.is::<T>() {
146             unsafe {
147                 // Get the raw representation of the trait object
148                 let to: TraitObject =
149                     mem::transmute::<Box<Any>, TraitObject>(self);
150
151                 // Extract the data pointer
152                 Ok(mem::transmute(to.data))
153             }
154         } else {
155             Err(self)
156         }
157     }
158 }
159
160 #[stable]
161 impl<T: fmt::Display + ?Sized> fmt::Display for Box<T> {
162     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
163         fmt::Display::fmt(&**self, f)
164     }
165 }
166
167 #[stable]
168 impl<T: fmt::Debug + ?Sized> fmt::Debug for Box<T> {
169     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
170         fmt::Debug::fmt(&**self, f)
171     }
172 }
173
174 #[stable]
175 impl fmt::Debug for Box<Any> {
176     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
177         f.pad("Box<Any>")
178     }
179 }
180
181 #[stable]
182 impl<T: ?Sized> Deref for Box<T> {
183     type Target = T;
184
185     fn deref(&self) -> &T { &**self }
186 }
187
188 #[stable]
189 impl<T: ?Sized> DerefMut for Box<T> {
190     fn deref_mut(&mut self) -> &mut T { &mut **self }
191 }
192
193 impl<'a, E: Error + 'a> FromError<E> for Box<Error + 'a> {
194     fn from_error(err: E) -> Box<Error + 'a> {
195         Box::new(err)
196     }
197 }
198
199 #[cfg(test)]
200 mod test {
201     #[test]
202     fn test_owned_clone() {
203         let a = Box::new(5i);
204         let b: Box<int> = a.clone();
205         assert!(a == b);
206     }
207
208     #[test]
209     fn any_move() {
210         let a = Box::new(8u) as Box<Any>;
211         let b = Box::new(Test) as Box<Any>;
212
213         match a.downcast::<uint>() {
214             Ok(a) => { assert!(a == Box::new(8u)); }
215             Err(..) => panic!()
216         }
217         match b.downcast::<Test>() {
218             Ok(a) => { assert!(a == Box::new(Test)); }
219             Err(..) => panic!()
220         }
221
222         let a = Box::new(8u) as Box<Any>;
223         let b = Box::new(Test) as Box<Any>;
224
225         assert!(a.downcast::<Box<Test>>().is_err());
226         assert!(b.downcast::<Box<uint>>().is_err());
227     }
228
229     #[test]
230     fn test_show() {
231         let a = Box::new(8u) as Box<Any>;
232         let b = Box::new(Test) as Box<Any>;
233         let a_str = a.to_str();
234         let b_str = b.to_str();
235         assert_eq!(a_str, "Box<Any>");
236         assert_eq!(b_str, "Box<Any>");
237
238         let a = &8u as &Any;
239         let b = &Test as &Any;
240         let s = format!("{}", a);
241         assert_eq!(s, "&Any");
242         let s = format!("{}", b);
243         assert_eq!(s, "&Any");
244     }
245
246     #[test]
247     fn deref() {
248         fn homura<T: Deref<Target=i32>>(_: T) { }
249         homura(Box::new(765i32));
250     }
251 }