use crate::entry::{Entry, Event};
use crate::Response;
use std::str::FromStr;
#[derive(Clone, Debug, PartialEq)]
pub enum MatchEvent {
Evt(Vec<Event>),
All,
}
#[derive(Clone)]
pub enum Callback<T> {
NoCtx(fn(&Entry) -> Response),
Ctx(fn(&T, &Entry) -> Response),
CtxMut(fn(&mut T, &Entry) -> Response),
pub struct EventHandler<T> {
event: MatchEvent,
callback: Callback<T>,
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<T: Clone + Default> EventHandler<T> {
pub fn new(event_str: &str, callback: Callback<T>) -> 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 },
);