2014-06-28 15:57:36 -05:00
|
|
|
// Copyright 2014 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.
|
|
|
|
use core::any::*;
|
|
|
|
use test::Bencher;
|
|
|
|
use test;
|
|
|
|
|
2015-01-28 07:34:18 -06:00
|
|
|
#[derive(PartialEq, Debug)]
|
2014-06-28 15:57:36 -05:00
|
|
|
struct Test;
|
|
|
|
|
|
|
|
static TEST: &'static str = "Test";
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn any_referenced() {
|
2015-02-03 07:50:52 -06:00
|
|
|
let (a, b, c) = (&5 as &Any, &TEST as &Any, &Test as &Any);
|
2014-06-28 15:57:36 -05:00
|
|
|
|
2015-02-03 07:50:52 -06:00
|
|
|
assert!(a.is::<i32>());
|
|
|
|
assert!(!b.is::<i32>());
|
|
|
|
assert!(!c.is::<i32>());
|
2014-06-28 15:57:36 -05:00
|
|
|
|
|
|
|
assert!(!a.is::<&'static str>());
|
|
|
|
assert!(b.is::<&'static str>());
|
|
|
|
assert!(!c.is::<&'static str>());
|
|
|
|
|
|
|
|
assert!(!a.is::<Test>());
|
|
|
|
assert!(!b.is::<Test>());
|
|
|
|
assert!(c.is::<Test>());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn any_owning() {
|
2015-02-17 08:48:01 -06:00
|
|
|
let (a, b, c) = (box 5_usize as Box<Any>, box TEST as Box<Any>, box Test as Box<Any>);
|
2014-06-28 15:57:36 -05:00
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
assert!(a.is::<usize>());
|
|
|
|
assert!(!b.is::<usize>());
|
|
|
|
assert!(!c.is::<usize>());
|
2014-06-28 15:57:36 -05:00
|
|
|
|
|
|
|
assert!(!a.is::<&'static str>());
|
|
|
|
assert!(b.is::<&'static str>());
|
|
|
|
assert!(!c.is::<&'static str>());
|
|
|
|
|
|
|
|
assert!(!a.is::<Test>());
|
|
|
|
assert!(!b.is::<Test>());
|
|
|
|
assert!(c.is::<Test>());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2014-09-09 04:32:58 -05:00
|
|
|
fn any_downcast_ref() {
|
2015-02-17 08:48:01 -06:00
|
|
|
let a = &5_usize as &Any;
|
2014-06-28 15:57:36 -05:00
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
match a.downcast_ref::<usize>() {
|
2014-06-28 15:57:36 -05:00
|
|
|
Some(&5) => {}
|
2014-12-20 02:09:35 -06:00
|
|
|
x => panic!("Unexpected value {:?}", x)
|
2014-06-28 15:57:36 -05:00
|
|
|
}
|
|
|
|
|
2014-09-09 04:32:58 -05:00
|
|
|
match a.downcast_ref::<Test>() {
|
2014-06-28 15:57:36 -05:00
|
|
|
None => {}
|
2014-12-20 02:09:35 -06:00
|
|
|
x => panic!("Unexpected value {:?}", x)
|
2014-06-28 15:57:36 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2014-09-09 04:32:58 -05:00
|
|
|
fn any_downcast_mut() {
|
2015-02-17 08:48:01 -06:00
|
|
|
let mut a = 5_usize;
|
2015-02-17 14:41:32 -06:00
|
|
|
let mut b: Box<_> = box 7_usize;
|
2014-06-28 15:57:36 -05:00
|
|
|
|
|
|
|
let a_r = &mut a as &mut Any;
|
2015-03-25 19:06:52 -05:00
|
|
|
let tmp: &mut usize = &mut *b;
|
2014-06-28 15:57:36 -05:00
|
|
|
let b_r = tmp as &mut Any;
|
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
match a_r.downcast_mut::<usize>() {
|
2014-06-28 15:57:36 -05:00
|
|
|
Some(x) => {
|
2015-02-03 07:50:52 -06:00
|
|
|
assert_eq!(*x, 5);
|
2014-06-28 15:57:36 -05:00
|
|
|
*x = 612;
|
|
|
|
}
|
2014-12-20 02:09:35 -06:00
|
|
|
x => panic!("Unexpected value {:?}", x)
|
2014-06-28 15:57:36 -05:00
|
|
|
}
|
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
match b_r.downcast_mut::<usize>() {
|
2014-06-28 15:57:36 -05:00
|
|
|
Some(x) => {
|
2015-02-03 07:50:52 -06:00
|
|
|
assert_eq!(*x, 7);
|
2014-06-28 15:57:36 -05:00
|
|
|
*x = 413;
|
|
|
|
}
|
2014-12-20 02:09:35 -06:00
|
|
|
x => panic!("Unexpected value {:?}", x)
|
2014-06-28 15:57:36 -05:00
|
|
|
}
|
|
|
|
|
2014-09-09 04:32:58 -05:00
|
|
|
match a_r.downcast_mut::<Test>() {
|
2014-06-28 15:57:36 -05:00
|
|
|
None => (),
|
2014-12-20 02:09:35 -06:00
|
|
|
x => panic!("Unexpected value {:?}", x)
|
2014-06-28 15:57:36 -05:00
|
|
|
}
|
|
|
|
|
2014-09-09 04:32:58 -05:00
|
|
|
match b_r.downcast_mut::<Test>() {
|
2014-06-28 15:57:36 -05:00
|
|
|
None => (),
|
2014-12-20 02:09:35 -06:00
|
|
|
x => panic!("Unexpected value {:?}", x)
|
2014-06-28 15:57:36 -05:00
|
|
|
}
|
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
match a_r.downcast_mut::<usize>() {
|
2015-01-07 18:26:00 -06:00
|
|
|
Some(&mut 612) => {}
|
2014-12-20 02:09:35 -06:00
|
|
|
x => panic!("Unexpected value {:?}", x)
|
2014-06-28 15:57:36 -05:00
|
|
|
}
|
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
match b_r.downcast_mut::<usize>() {
|
2015-01-07 18:26:00 -06:00
|
|
|
Some(&mut 413) => {}
|
2014-12-20 02:09:35 -06:00
|
|
|
x => panic!("Unexpected value {:?}", x)
|
2014-06-28 15:57:36 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn any_fixed_vec() {
|
2015-02-17 08:48:01 -06:00
|
|
|
let test = [0_usize; 8];
|
2014-06-28 15:57:36 -05:00
|
|
|
let test = &test as &Any;
|
2015-03-25 19:06:52 -05:00
|
|
|
assert!(test.is::<[usize; 8]>());
|
|
|
|
assert!(!test.is::<[usize; 10]>());
|
2014-06-28 15:57:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#[bench]
|
2014-09-09 04:32:58 -05:00
|
|
|
fn bench_downcast_ref(b: &mut Bencher) {
|
2014-06-28 15:57:36 -05:00
|
|
|
b.iter(|| {
|
2015-01-25 15:05:03 -06:00
|
|
|
let mut x = 0;
|
2014-06-28 15:57:36 -05:00
|
|
|
let mut y = &mut x as &mut Any;
|
|
|
|
test::black_box(&mut y);
|
2015-03-25 19:06:52 -05:00
|
|
|
test::black_box(y.downcast_ref::<isize>() == Some(&0));
|
2014-06-28 15:57:36 -05:00
|
|
|
});
|
|
|
|
}
|