mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
parent
1a2bdf33eb
commit
17ed3db11d
4 changed files with 31 additions and 9 deletions
|
@ -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
|
||||
|
|
|
@ -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"]
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue