Fix signal handling #183 (#187)

This commit is contained in:
Nikolay Kim 2023-03-11 12:41:51 +11:00 committed by GitHub
parent 1a2bdf33eb
commit 17ed3db11d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 31 additions and 9 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [0.2.3] - 2023-03-11
* Fix signal handling #183
## [0.2.2] - 2023-01-26
* Update io api usage

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-tokio"
version = "0.2.2"
version = "0.2.3"
authors = ["ntex contributors <team@ntex.rs>"]
description = "tokio intergration for ntex framework"
keywords = ["network", "framework", "async", "futures"]

View file

@ -42,7 +42,11 @@ struct Signals {
#[cfg(not(unix))]
signal: Pin<Box<dyn Future<Output = std::io::Result<()>>>>,
#[cfg(unix)]
signals: Vec<(Signal, tokio::signal::unix::Signal)>,
signals: Vec<(
Signal,
tokio::signal::unix::Signal,
tokio::signal::unix::SignalKind,
)>,
}
impl Signals {
@ -70,7 +74,7 @@ impl Signals {
let mut signals = Vec::new();
for (kind, sig) in sig_map.iter() {
match unix::signal(*kind) {
Ok(stream) => signals.push((*sig, stream)),
Ok(stream) => signals.push((*sig, stream, *kind)),
Err(e) => log::error!(
"Cannot initialize stream handler for {:?} err: {}",
sig,
@ -106,12 +110,26 @@ impl Future for Signals {
}
#[cfg(unix)]
{
for (sig, fut) in self.signals.iter_mut() {
if Pin::new(fut).poll_recv(cx).is_ready() {
let handlers = SHANDLERS.with(|h| mem::take(&mut *h.borrow_mut()));
for sender in handlers {
let _ = sender.send(*sig);
for (sig, stream, kind) in self.signals.iter_mut() {
loop {
if let Poll::Ready(res) = Pin::new(&mut *stream).poll_recv(cx) {
let handlers = SHANDLERS.with(|h| mem::take(&mut *h.borrow_mut()));
for sender in handlers {
let _ = sender.send(*sig);
}
match tokio::signal::unix::signal(*kind) {
Ok(s) => {
*stream = s;
continue;
}
Err(e) => log::error!(
"Cannot initialize stream handler for {:?} err: {}",
sig,
e
),
}
}
break;
}
}
Poll::Pending