use crate::entry::{Entry, Event}; use crate::Response; use std::str::FromStr; #[derive(Clone, Debug, PartialEq)] pub enum MatchEvent { Evt(Vec), All, } #[derive(Clone)] pub enum Callback { NoCtx(fn(&Entry) -> Response), Ctx(fn(&T, &Entry) -> Response), CtxMut(fn(&mut T, &Entry) -> Response), } #[derive(Clone)] pub struct EventHandler { event: MatchEvent, callback: Callback, } fn get_events_from_string(event_str: &str) -> MatchEvent { let mut events = Vec::new(); for name in event_str.split(" , ") { match name { "Any" | "All" => { return MatchEvent::All; } _ => if let Ok(e) = Event::from_str(name) { events.push(e); }, } } MatchEvent::Evt(events) } impl EventHandler { pub fn new(event_str: &str, callback: Callback) -> Self { EventHandler { event: get_events_from_string(event_str), callback, } } pub fn is_callable(&self, event: &Event) -> bool { match &self.event { MatchEvent::All => true, MatchEvent::Evt(v) => v.contains(&event), } } pub fn call(&self, entry: &Entry, context: &mut T) { let ret = match self.callback { Callback::NoCtx(f) => f(entry), Callback::Ctx(f) => f(context, entry), Callback::CtxMut(f) => f(context, entry), }; match ret { Response::None => {} } } } #[cfg(test)] mod test { use crate::*; #[test] fn test_eventhandler_build() { EventHandler::new( "Any", |_context: &mut NoContext, _entry: &Entry| -> Response { Response::None }, ); } }