use std::any::{ Any, TypeId };
use GenericEvent;
pub trait FocusEvent {
fn from_focused(focused: bool) -> Option<Self>;
fn focus<U, F>(&self, f: F) -> Option<U>
where F: FnMut(bool) -> U;
fn focus_args(&self) -> Option<bool> {
self.focus(|val| val)
}
}
impl<T: GenericEvent> FocusEvent for T {
fn from_focused(focused: bool) -> Option<Self> {
let id = TypeId::of::<Box<FocusEvent>>();
GenericEvent::from_args(id, &focused as &Any)
}
fn focus<U, F>(&self, mut f: F) -> Option<U>
where F: FnMut(bool) -> U
{
let id = TypeId::of::<Box<FocusEvent>>();
if self.event_id() != id {
return None;
}
self.with_args(|any| {
if let Some(&focused) = any.downcast_ref::<bool>() {
Some(f(focused))
} else {
panic!("Expected bool")
}
})
}
}
#[cfg(test)]
mod tests {
use super::*;
use test::Bencher;
#[test]
fn test_input_focus() {
use input::Input;
let x: Option<Input> = FocusEvent::from_focused(true);
let y: Option<Input> = x.clone().unwrap().focus(|focused|
FocusEvent::from_focused(focused)).unwrap();
assert_eq!(x, y);
}
#[bench]
fn bench_input_focus(bencher: &mut Bencher) {
use input::Input;
bencher.iter(|| {
let _: Option<Input> = FocusEvent::from_focused(true);
});
}
#[test]
fn test_event_focus() {
use Event;
let x: Option<Event> = FocusEvent::from_focused(true);
let y: Option<Event> = x.clone().unwrap().focus(|focused|
FocusEvent::from_focused(focused)).unwrap();
assert_eq!(x, y);
}
#[bench]
fn bench_event_focus(bencher: &mut Bencher) {
use Event;
bencher.iter(|| {
let _: Option<Event> = FocusEvent::from_focused(true);
});
}
}