mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-06 06:17:40 +03:00
50 lines
1.1 KiB
Rust
50 lines
1.1 KiB
Rust
use std::{cell::RefCell, future::Future, pin::Pin, rc::Rc, task::Context, task::Poll};
|
|
|
|
thread_local! {
|
|
static SRUN: RefCell<bool> = const { RefCell::new(false) };
|
|
static SHANDLERS: Rc<RefCell<Vec<oneshot::Sender<Signal>>>> = Default::default();
|
|
}
|
|
|
|
/// Different types of process signals
|
|
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
|
|
pub enum Signal {
|
|
/// SIGHUP
|
|
Hup,
|
|
/// SIGINT
|
|
Int,
|
|
/// SIGTERM
|
|
Term,
|
|
/// SIGQUIT
|
|
Quit,
|
|
}
|
|
|
|
/// Register signal handler.
|
|
///
|
|
/// Signals are handled by oneshots, you have to re-register
|
|
/// after each signal.
|
|
pub fn signal() -> Option<oneshot::Receiver<Signal>> {
|
|
if !SRUN.with(|v| *v.borrow()) {
|
|
async_std::task::spawn_local(Signals::new());
|
|
}
|
|
SHANDLERS.with(|handlers| {
|
|
let (tx, rx) = oneshot::channel();
|
|
handlers.borrow_mut().push(tx);
|
|
Some(rx)
|
|
})
|
|
}
|
|
|
|
struct Signals {}
|
|
|
|
impl Signals {
|
|
pub(super) fn new() -> Signals {
|
|
Self {}
|
|
}
|
|
}
|
|
|
|
impl Future for Signals {
|
|
type Output = ();
|
|
|
|
fn poll(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Self::Output> {
|
|
Poll::Ready(())
|
|
}
|
|
}
|