]> git.lizzy.rs Git - rust.git/blob - src/liballoc/boxed.rs
also forward Iterator::size_hint()
[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::fmt;
20 use core::hash::{self, Hash};
21 use core::iter::Iterator;
22 use core::marker::Sized;
23 use core::mem;
24 use core::option::Option;
25 use core::ptr::Unique;
26 use core::raw::TraitObject;
27 use core::result::Result;
28 use core::result::Result::{Ok, Err};
29 use core::ops::{Deref, DerefMut};
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 = "post-DST and coherence changes, this will not be a trait but \
130               rather a direct `impl` on `Box<Any>`"]
131 pub trait BoxAny {
132     /// Returns the boxed value if it is of type `T`, or
133     /// `Err(Self)` if it isn't.
134     #[stable]
135     fn downcast<T: 'static>(self) -> Result<Box<T>, Self>;
136 }
137
138 impl BoxAny for Box<Any> {
139     #[inline]
140     #[unstable = "method may be renamed with respect to other downcasting \
141                   methods"]
142     fn downcast<T: 'static>(self) -> Result<Box<T>, Box<Any>> {
143         if self.is::<T>() {
144             unsafe {
145                 // Get the raw representation of the trait object
146                 let to: TraitObject =
147                     mem::transmute::<Box<Any>, TraitObject>(self);
148
149                 // Extract the data pointer
150                 Ok(mem::transmute(to.data))
151             }
152         } else {
153             Err(self)
154         }
155     }
156 }
157
158 impl<T: ?Sized + fmt::Show> fmt::Show for Box<T> {
159     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
160         write!(f, "Box({:?})", &**self)
161     }
162 }
163
164 #[stable]
165 impl<T: ?Sized + fmt::String> fmt::String for Box<T> {
166     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
167         fmt::String::fmt(&**self, f)
168     }
169 }
170
171 impl fmt::Show for Box<Any> {
172     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
173         f.pad("Box<Any>")
174     }
175 }
176
177 #[stable]
178 impl<T: ?Sized> Deref for Box<T> {
179     type Target = T;
180
181     fn deref(&self) -> &T { &**self }
182 }
183
184 #[stable]
185 impl<T: ?Sized> DerefMut for Box<T> {
186     fn deref_mut(&mut self) -> &mut T { &mut **self }
187 }
188
189 // FIXME(#21363) remove `old_impl_check` when bug is fixed
190 #[old_impl_check]
191 impl<'a, T> Iterator for Box<Iterator<Item=T> + 'a> {
192     type Item = T;
193
194     fn next(&mut self) -> Option<T> {
195         (**self).next()
196     }
197
198     fn size_hint(&self) -> (usize, Option<usize>) {
199         (**self).size_hint()
200     }
201 }
202
203 #[cfg(test)]
204 mod test {
205     #[test]
206     fn test_owned_clone() {
207         let a = Box::new(5i);
208         let b: Box<int> = a.clone();
209         assert!(a == b);
210     }
211
212     #[test]
213     fn any_move() {
214         let a = Box::new(8u) as Box<Any>;
215         let b = Box::new(Test) as Box<Any>;
216
217         match a.downcast::<uint>() {
218             Ok(a) => { assert!(a == Box::new(8u)); }
219             Err(..) => panic!()
220         }
221         match b.downcast::<Test>() {
222             Ok(a) => { assert!(a == Box::new(Test)); }
223             Err(..) => panic!()
224         }
225
226         let a = Box::new(8u) as Box<Any>;
227         let b = Box::new(Test) as Box<Any>;
228
229         assert!(a.downcast::<Box<Test>>().is_err());
230         assert!(b.downcast::<Box<uint>>().is_err());
231     }
232
233     #[test]
234     fn test_show() {
235         let a = Box::new(8u) as Box<Any>;
236         let b = Box::new(Test) as Box<Any>;
237         let a_str = a.to_str();
238         let b_str = b.to_str();
239         assert_eq!(a_str, "Box<Any>");
240         assert_eq!(b_str, "Box<Any>");
241
242         let a = &8u as &Any;
243         let b = &Test as &Any;
244         let s = format!("{}", a);
245         assert_eq!(s, "&Any");
246         let s = format!("{}", b);
247         assert_eq!(s, "&Any");
248     }
249
250     #[test]
251     fn deref() {
252         fn homura<T: Deref<Target=i32>>(_: T) { }
253         homura(Box::new(765i32));
254     }
255 }