mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
parent
f9759a4ddc
commit
d441e79208
5 changed files with 28 additions and 13 deletions
|
@ -1,5 +1,9 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [0.3.8] - 2023-11-17
|
||||||
|
|
||||||
|
* Remove useless logs
|
||||||
|
|
||||||
## [0.3.7] - 2023-11-12
|
## [0.3.7] - 2023-11-12
|
||||||
|
|
||||||
* Handle io flush during write back-pressure
|
* Handle io flush during write back-pressure
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ntex-io"
|
name = "ntex-io"
|
||||||
version = "0.3.7"
|
version = "0.3.8"
|
||||||
authors = ["ntex contributors <team@ntex.rs>"]
|
authors = ["ntex contributors <team@ntex.rs>"]
|
||||||
description = "Utilities for encoding and decoding frames"
|
description = "Utilities for encoding and decoding frames"
|
||||||
keywords = ["network", "framework", "async", "futures"]
|
keywords = ["network", "framework", "async", "futures"]
|
||||||
|
|
|
@ -280,13 +280,6 @@ impl<F> Io<F> {
|
||||||
self.0.clone()
|
self.0.clone()
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
|
||||||
#[doc(hidden)]
|
|
||||||
#[deprecated]
|
|
||||||
pub fn remove_keepalive_timer(&self) {
|
|
||||||
self.stop_keepalive_timer()
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Get current io error
|
/// Get current io error
|
||||||
fn error(&self) -> Option<io::Error> {
|
fn error(&self) -> Option<io::Error> {
|
||||||
self.0 .0.error.take()
|
self.0 .0.error.take()
|
||||||
|
@ -460,7 +453,6 @@ impl<F> Io<F> {
|
||||||
Poll::Pending
|
Poll::Pending
|
||||||
}
|
}
|
||||||
} else if ready {
|
} else if ready {
|
||||||
log::trace!("waking up io read task");
|
|
||||||
flags.remove(Flags::RD_READY);
|
flags.remove(Flags::RD_READY);
|
||||||
self.0 .0.flags.set(flags);
|
self.0 .0.flags.set(flags);
|
||||||
Poll::Ready(Ok(Some(())))
|
Poll::Ready(Ok(Some(())))
|
||||||
|
@ -560,7 +552,7 @@ impl<F> Io<F> {
|
||||||
} else {
|
} else {
|
||||||
match self.poll_read_ready(cx) {
|
match self.poll_read_ready(cx) {
|
||||||
Poll::Pending | Poll::Ready(Ok(Some(()))) => {
|
Poll::Pending | Poll::Ready(Ok(Some(()))) => {
|
||||||
log::trace!("not enough data to decode next frame");
|
log::debug!("not enough data to decode next frame");
|
||||||
Ok(decoded)
|
Ok(decoded)
|
||||||
}
|
}
|
||||||
Poll::Ready(Err(e)) => Err(RecvError::PeerGone(Some(e))),
|
Poll::Ready(Err(e)) => Err(RecvError::PeerGone(Some(e))),
|
||||||
|
@ -640,7 +632,7 @@ impl<F> Io<F> {
|
||||||
/// Wait for status updates
|
/// Wait for status updates
|
||||||
pub fn poll_status_update(&self, cx: &mut Context<'_>) -> Poll<IoStatusUpdate> {
|
pub fn poll_status_update(&self, cx: &mut Context<'_>) -> Poll<IoStatusUpdate> {
|
||||||
let flags = self.flags();
|
let flags = self.flags();
|
||||||
if flags.contains(Flags::IO_STOPPED) {
|
if flags.contains(Flags::IO_STOPPED | Flags::IO_STOPPING) {
|
||||||
Poll::Ready(IoStatusUpdate::PeerGone(self.error()))
|
Poll::Ready(IoStatusUpdate::PeerGone(self.error()))
|
||||||
} else if flags.contains(Flags::DSP_STOP) {
|
} else if flags.contains(Flags::DSP_STOP) {
|
||||||
self.0 .0.remove_flags(Flags::DSP_STOP);
|
self.0 .0.remove_flags(Flags::DSP_STOP);
|
||||||
|
@ -931,12 +923,25 @@ mod tests {
|
||||||
use crate::testing::IoTest;
|
use crate::testing::IoTest;
|
||||||
|
|
||||||
#[ntex::test]
|
#[ntex::test]
|
||||||
async fn test_recv() {
|
async fn test_basics() {
|
||||||
let (client, server) = IoTest::create();
|
let (client, server) = IoTest::create();
|
||||||
client.remote_buffer_cap(1024);
|
client.remote_buffer_cap(1024);
|
||||||
|
|
||||||
let server = Io::new(server);
|
let server = Io::new(server);
|
||||||
assert!(server.eq(&server));
|
assert!(server.eq(&server));
|
||||||
|
assert!(server.0.eq(&server.0));
|
||||||
|
|
||||||
|
assert!(format!("{:?}", Flags::IO_STOPPED).contains("IO_STOPPED"));
|
||||||
|
assert!(Flags::IO_STOPPED == Flags::IO_STOPPED);
|
||||||
|
assert!(Flags::IO_STOPPED != Flags::IO_STOPPING);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[ntex::test]
|
||||||
|
async fn test_recv() {
|
||||||
|
let (client, server) = IoTest::create();
|
||||||
|
client.remote_buffer_cap(1024);
|
||||||
|
|
||||||
|
let server = Io::new(server);
|
||||||
|
|
||||||
server.0 .0.notify_timeout();
|
server.0 .0.notify_timeout();
|
||||||
let err = server.recv(&BytesCodec).await.err().unwrap();
|
let err = server.recv(&BytesCodec).await.err().unwrap();
|
||||||
|
|
|
@ -34,7 +34,10 @@ impl IoRef {
|
||||||
#[inline]
|
#[inline]
|
||||||
/// Check if io stream is closed
|
/// Check if io stream is closed
|
||||||
pub fn is_closed(&self) -> bool {
|
pub fn is_closed(&self) -> bool {
|
||||||
self.0.flags.get().contains(Flags::IO_STOPPING)
|
self.0
|
||||||
|
.flags
|
||||||
|
.get()
|
||||||
|
.contains(Flags::IO_STOPPING | Flags::IO_STOPPED)
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
|
|
|
@ -219,5 +219,8 @@ mod tests {
|
||||||
format!("{:?}", T::KeepAliveTimeout).contains("DispatchItem::KeepAliveTimeout")
|
format!("{:?}", T::KeepAliveTimeout).contains("DispatchItem::KeepAliveTimeout")
|
||||||
);
|
);
|
||||||
assert!(format!("{:?}", T::ReadTimeout).contains("DispatchItem::ReadTimeout"));
|
assert!(format!("{:?}", T::ReadTimeout).contains("DispatchItem::ReadTimeout"));
|
||||||
|
|
||||||
|
assert!(format!("{:?}", IoStatusUpdate::KeepAlive).contains("KeepAlive"));
|
||||||
|
assert!(format!("{:?}", RecvError::<BytesCodec>::KeepAlive).contains("KeepAlive"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue