#event-listener #events #listener #emitter

event-listener-primitives

Low-level primitive for building Node.js-like event listeners

7 releases (3 stable)

2.0.1 Sep 2, 2021
2.0.0 Aug 30, 2021
1.0.0 Jun 13, 2021
0.2.2 Dec 22, 2020
0.1.0 Oct 24, 2020

#6 in #listener

Download history 186/week @ 2024-06-18 164/week @ 2024-06-25 173/week @ 2024-07-02 200/week @ 2024-07-09 632/week @ 2024-07-16 280/week @ 2024-07-23 279/week @ 2024-07-30 460/week @ 2024-08-06 127/week @ 2024-08-13 127/week @ 2024-08-20 239/week @ 2024-08-27 281/week @ 2024-09-03 255/week @ 2024-09-10 175/week @ 2024-09-17 495/week @ 2024-09-24 149/week @ 2024-10-01

1,133 downloads per month
Used in 3 crates (2 directly)

0BSD license

18KB
424 lines

Event listener primitives

Build Status Crates.io Docs License

This crate provides a low-level primitive for building Node.js-like event listeners.

The 3 primitives are Bag that is a container for Fn() event handlers, BagOnce the same for FnOnce() event handlers and HandlerId that will remove event handler from the bag on drop.

Trivial example:

use event_listener_primitives::{Bag, HandlerId};
use std::sync::Arc;

fn main() {
    let bag = Bag::default();

    let handler_id = bag.add(Arc::new(|| {
        println!("Hello");
    }));

    bag.call_simple();
}

Close to real-world usage example:

use event_listener_primitives::{Bag, BagOnce, HandlerId};
use std::sync::Arc;

#[derive(Default)]
struct Handlers {
    action: Bag<Arc<dyn Fn() + Send + Sync + 'static>>,
    closed: BagOnce<Box<dyn FnOnce() + Send + 'static>>,
}

pub struct Container {
    handlers: Handlers,
}

impl Drop for Container {
    fn drop(&mut self) {
        self.handlers.closed.call_simple();
    }
}

impl Container {
    pub fn new() -> Self {
        let handlers = Handlers::default();

        Self { handlers }
    }

    pub fn do_action(&self) {
        // Do things...

        self.handlers.action.call_simple();
    }

    pub fn do_other_action(&self) {
        // Do things...

        self.handlers.action.call(|callback| {
            callback();
        });
    }

    pub fn on_action<F: Fn() + Send + Sync + 'static>(&self, callback: F) -> HandlerId {
        self.handlers.action.add(Arc::new(callback))
    }

    pub fn on_closed<F: FnOnce() + Send + 'static>(&self, callback: F) -> HandlerId {
        self.handlers.closed.add(Box::new(callback))
    }
}

fn main() {
    let container = Container::new();
    let on_action_handler_id = container.on_action(|| {
        println!("On action");
    });
    container
        .on_closed(|| {
            println!("On container closed");
        })
        .detach();
    // This will trigger "action" callback just fine since its handler ID is not dropped yet
    container.do_action();
    drop(on_action_handler_id);
    // This will not trigger "action" callback since its handler ID was already dropped
    container.do_other_action();
    // This will trigger "closed" callback though since we've detached handler ID
    drop(container);

    println!("Done");
}

The output will be:

On action
On closed
Done

Contribution

Feel free to create issues and send pull requests, they are highly appreciated!

License

Zero-Clause BSD

https://opensource.org/licenses/0BSD

https://tldrlegal.com/license/bsd-0-clause-license

Dependencies

~0.5–0.8MB
~13K SLoC