use crate::entry::{Entry, Event};
use std::str::FromStr;
#[derive(Clone, Debug, PartialEq)]
pub enum MatchEvent {
Evt(Vec<Event>),
All,
}
#[derive(Clone)]
pub enum Callback<T> {
NoCtx(fn(&Entry)),
Ctx(fn(&T, &Entry)),
CtxMut(fn(&mut T, &Entry)),
pub struct EventHandler<T> {
pub(crate) 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) {
match self.callback {
Callback::NoCtx(f) => f(entry),
Callback::Ctx(f) => f(context, entry),
Callback::CtxMut(f) => f(context, entry),
};
#[cfg(test)]
mod test {
use crate::*;
#[test]
fn test_eventhandler_build_noctx() {
// TODO: Remove the ::<NoContext>
EventHandler::new(
"Any",
Callback::NoCtx::<NoContext>(|_entry: &Entry| {}),
);
fn test_eventhandler_build_ctx() {
Callback::Ctx(|_context: &NoContext, _entry: &Entry| {}),
fn test_eventhandler_build_ctxmut() {
Callback::CtxMut(|_context: &mut NoContext, _entry: &Entry| {}),