From f07c0576a7cfc7fc925c099793771111efa7819e Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Mon, 13 Nov 2023 14:44:20 +0600 Subject: [PATCH] Rename keep-alive flag --- ntex-io/src/io.rs | 28 ++++++++++++++-------------- ntex-io/src/ioref.rs | 16 ++++++++-------- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/ntex-io/src/io.rs b/ntex-io/src/io.rs index 98421fd8..d2fdb5d5 100644 --- a/ntex-io/src/io.rs +++ b/ntex-io/src/io.rs @@ -43,11 +43,11 @@ bitflags::bitflags! { /// dispatcher is marked stopped const DSP_STOP = 0b0001_0000_0000_0000; - /// keep-alive timeout occured - const DSP_KEEPALIVE = 0b0010_0000_0000_0000; + /// timeout occured + const DSP_TIMEOUT = 0b0010_0000_0000_0000; - /// keep-alive timeout started - const KEEPALIVE = 0b1000_0000_0000_0000; + /// timer started + const TIMEOUT = 0b1000_0000_0000_0000; } } @@ -92,12 +92,12 @@ impl IoState { } pub(super) fn notify_timeout(&self) { - log::trace!("keep-alive timeout, notify dispatcher"); + log::trace!("timeout, notify dispatcher"); let mut flags = self.flags.get(); - flags.remove(Flags::KEEPALIVE); - if !flags.contains(Flags::DSP_KEEPALIVE) { - flags.insert(Flags::DSP_KEEPALIVE); + flags.remove(Flags::TIMEOUT); + if !flags.contains(Flags::DSP_TIMEOUT) { + flags.insert(Flags::DSP_TIMEOUT); self.flags.set(flags); self.dispatch_task.wake(); } @@ -348,7 +348,7 @@ impl Io { Ok(item) => Ok(Some(item)), Err(RecvError::KeepAlive) => Err(Either::Right(io::Error::new( io::ErrorKind::TimedOut, - "Keep-alive", + "Timeout", ))), Err(RecvError::Stop) => Err(Either::Right(io::Error::new( io::ErrorKind::Other, @@ -552,8 +552,8 @@ impl Io { } else if flags.contains(Flags::DSP_STOP) { self.0 .0.remove_flags(Flags::DSP_STOP); Err(RecvError::Stop) - } else if flags.contains(Flags::DSP_KEEPALIVE) { - self.0 .0.remove_flags(Flags::DSP_KEEPALIVE); + } else if flags.contains(Flags::DSP_TIMEOUT) { + self.0 .0.remove_flags(Flags::DSP_TIMEOUT); Err(RecvError::KeepAlive) } else if flags.contains(Flags::WR_BACKPRESSURE) { Err(RecvError::WriteBackpressure) @@ -645,8 +645,8 @@ impl Io { } else if flags.contains(Flags::DSP_STOP) { self.0 .0.remove_flags(Flags::DSP_STOP); Poll::Ready(IoStatusUpdate::Stop) - } else if flags.contains(Flags::DSP_KEEPALIVE) { - self.0 .0.remove_flags(Flags::DSP_KEEPALIVE); + } else if flags.contains(Flags::DSP_TIMEOUT) { + self.0 .0.remove_flags(Flags::DSP_TIMEOUT); Poll::Ready(IoStatusUpdate::KeepAlive) } else if flags.contains(Flags::WR_BACKPRESSURE) { Poll::Ready(IoStatusUpdate::WriteBackpressure) @@ -940,7 +940,7 @@ mod tests { server.0 .0.notify_timeout(); let err = server.recv(&BytesCodec).await.err().unwrap(); - assert!(format!("{:?}", err).contains("Keep-alive")); + assert!(format!("{:?}", err).contains("Timeout")); server.0 .0.insert_flags(Flags::DSP_STOP); let err = server.recv(&BytesCodec).await.err().unwrap(); diff --git a/ntex-io/src/ioref.rs b/ntex-io/src/ioref.rs index 3ffbb1d9..35b4b83c 100644 --- a/ntex-io/src/ioref.rs +++ b/ntex-io/src/ioref.rs @@ -206,7 +206,7 @@ impl IoRef { } #[inline] - /// Keep-alive deadline + /// current timer deadline pub fn timer_deadline(&self) -> time::Instant { self.0.keepalive.get() } @@ -214,23 +214,23 @@ impl IoRef { #[inline] /// Start timer pub fn start_timer(&self, timeout: time::Duration) { - if self.flags().contains(Flags::KEEPALIVE) { + if self.flags().contains(Flags::TIMEOUT) { timer::unregister(self.0.keepalive.get(), self); } if !timeout.is_zero() { - log::debug!("start keep-alive timeout {:?}", timeout); - self.0.insert_flags(Flags::KEEPALIVE); + log::debug!("start timer {:?}", timeout); + self.0.insert_flags(Flags::TIMEOUT); self.0.keepalive.set(timer::register(timeout, self)); } else { - self.0.remove_flags(Flags::KEEPALIVE); + self.0.remove_flags(Flags::TIMEOUT); } } #[inline] - /// Stop keep-alive timer + /// Stop timer pub fn stop_timer(&self) { - if self.flags().contains(Flags::KEEPALIVE) { - log::debug!("unregister keep-alive timer"); + if self.flags().contains(Flags::TIMEOUT) { + log::debug!("unregister timer"); timer::unregister(self.0.keepalive.get(), self) } }