mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
cleanup framed write task
This commit is contained in:
parent
40b0d5e4ab
commit
a1296fc059
5 changed files with 33 additions and 27 deletions
|
@ -1,5 +1,9 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [0.2.0-b.13] - 2021-02-20
|
||||||
|
|
||||||
|
* http: Refactor date service
|
||||||
|
|
||||||
## [0.2.0-b.12] - 2021-02-18
|
## [0.2.0-b.12] - 2021-02-18
|
||||||
|
|
||||||
* http: Fix KeepAlive::Os support for h1 dispatcher
|
* http: Fix KeepAlive::Os support for h1 dispatcher
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ntex"
|
name = "ntex"
|
||||||
version = "0.2.0-b.12"
|
version = "0.2.0-b.13"
|
||||||
authors = ["ntex contributors <team@ntex.rs>"]
|
authors = ["ntex contributors <team@ntex.rs>"]
|
||||||
description = "Framework for composable network services"
|
description = "Framework for composable network services"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
|
@ -47,15 +47,9 @@ where
|
||||||
Poll::Pending
|
Poll::Pending
|
||||||
} else {
|
} else {
|
||||||
let mut io = self.io.borrow_mut();
|
let mut io = self.io.borrow_mut();
|
||||||
let result = self.state.with_read_buf(|buf| read(&mut *io, buf, cx));
|
match self.state.with_read_buf(|buf| read(&mut *io, buf, cx)) {
|
||||||
match result {
|
Ok(res) => {
|
||||||
Ok(None) => {
|
self.state.update_read_task(res, cx.waker());
|
||||||
self.state.enable_read_backpressure();
|
|
||||||
self.state.update_read_task(true, cx.waker());
|
|
||||||
Poll::Pending
|
|
||||||
}
|
|
||||||
Ok(Some(updated)) => {
|
|
||||||
self.state.update_read_task(updated, cx.waker());
|
|
||||||
Poll::Pending
|
Poll::Pending
|
||||||
}
|
}
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
|
@ -67,11 +61,18 @@ where
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Copy, Clone)]
|
||||||
|
pub(super) enum ReadResult {
|
||||||
|
Pending,
|
||||||
|
Updated,
|
||||||
|
BackPressure,
|
||||||
|
}
|
||||||
|
|
||||||
pub(super) fn read<T>(
|
pub(super) fn read<T>(
|
||||||
io: &mut T,
|
io: &mut T,
|
||||||
buf: &mut BytesMut,
|
buf: &mut BytesMut,
|
||||||
cx: &mut Context<'_>,
|
cx: &mut Context<'_>,
|
||||||
) -> Result<Option<bool>, Option<io::Error>>
|
) -> Result<ReadResult, Option<io::Error>>
|
||||||
where
|
where
|
||||||
T: AsyncRead + AsyncWrite + Unpin,
|
T: AsyncRead + AsyncWrite + Unpin,
|
||||||
{
|
{
|
||||||
|
@ -82,7 +83,7 @@ where
|
||||||
}
|
}
|
||||||
|
|
||||||
// read all data from socket
|
// read all data from socket
|
||||||
let mut updated = false;
|
let mut result = ReadResult::Pending;
|
||||||
loop {
|
loop {
|
||||||
match Pin::new(&mut *io).poll_read_buf(cx, buf) {
|
match Pin::new(&mut *io).poll_read_buf(cx, buf) {
|
||||||
Poll::Pending => break,
|
Poll::Pending => break,
|
||||||
|
@ -93,10 +94,10 @@ where
|
||||||
} else {
|
} else {
|
||||||
if buf.len() > HW {
|
if buf.len() > HW {
|
||||||
log::trace!("buffer is too large {}, pause", buf.len());
|
log::trace!("buffer is too large {}, pause", buf.len());
|
||||||
return Ok(None);
|
return Ok(ReadResult::BackPressure);
|
||||||
}
|
}
|
||||||
|
|
||||||
updated = true;
|
result = ReadResult::Updated;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Poll::Ready(Err(err)) => {
|
Poll::Ready(Err(err)) => {
|
||||||
|
@ -106,5 +107,5 @@ where
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(Some(updated))
|
Ok(result)
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,6 +7,7 @@ use either::Either;
|
||||||
use futures::{future::poll_fn, ready};
|
use futures::{future::poll_fn, ready};
|
||||||
|
|
||||||
use crate::codec::{AsyncRead, AsyncWrite, Decoder, Encoder, Framed, FramedParts};
|
use crate::codec::{AsyncRead, AsyncWrite, Decoder, Encoder, Framed, FramedParts};
|
||||||
|
use crate::framed::read::ReadResult;
|
||||||
use crate::framed::write::flush;
|
use crate::framed::write::flush;
|
||||||
use crate::task::LocalWaker;
|
use crate::task::LocalWaker;
|
||||||
|
|
||||||
|
@ -240,13 +241,6 @@ impl State {
|
||||||
self.insert_flags(Flags::WR_NOT_READY)
|
self.insert_flags(Flags::WR_NOT_READY)
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
|
||||||
/// Enable read back-persurre
|
|
||||||
pub(crate) fn enable_read_backpressure(&self) {
|
|
||||||
log::trace!("enable read back-pressure");
|
|
||||||
self.insert_flags(Flags::RD_BUF_FULL)
|
|
||||||
}
|
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
/// Check if keep-alive timeout occured
|
/// Check if keep-alive timeout occured
|
||||||
pub fn is_keepalive(&self) -> bool {
|
pub fn is_keepalive(&self) -> bool {
|
||||||
|
@ -325,10 +319,18 @@ impl State {
|
||||||
self.0.write_task.register(waker);
|
self.0.write_task.register(waker);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(super) fn update_read_task(&self, updated: bool, waker: &Waker) {
|
pub(super) fn update_read_task(&self, result: ReadResult, waker: &Waker) {
|
||||||
if updated {
|
match result {
|
||||||
self.insert_flags(Flags::RD_READY);
|
ReadResult::Updated => {
|
||||||
self.0.dispatch_task.wake();
|
self.insert_flags(Flags::RD_READY);
|
||||||
|
self.0.dispatch_task.wake();
|
||||||
|
}
|
||||||
|
ReadResult::BackPressure => {
|
||||||
|
log::trace!("enable read back-pressure");
|
||||||
|
self.insert_flags(Flags::RD_READY | Flags::RD_BUF_FULL);
|
||||||
|
self.0.dispatch_task.wake();
|
||||||
|
}
|
||||||
|
ReadResult::Pending => {}
|
||||||
}
|
}
|
||||||
self.0.read_task.register(waker);
|
self.0.read_task.register(waker);
|
||||||
}
|
}
|
||||||
|
|
|
@ -150,7 +150,6 @@ impl<S, X, U> DispatcherConfig<S, X, U> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// "Sun, 06 Nov 1994 08:49:37 GMT".len()
|
|
||||||
const DATE_VALUE_LENGTH_HDR: usize = 39;
|
const DATE_VALUE_LENGTH_HDR: usize = 39;
|
||||||
const DATE_VALUE_DEFAULT: [u8; DATE_VALUE_LENGTH_HDR] = [
|
const DATE_VALUE_DEFAULT: [u8; DATE_VALUE_LENGTH_HDR] = [
|
||||||
b'd', b'a', b't', b'e', b':', b' ', b'0', b'0', b'0', b'0', b'0', b'0', b'0', b'0',
|
b'd', b'a', b't', b'e', b':', b' ', b'0', b'0', b'0', b'0', b'0', b'0', b'0', b'0',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue