mirror of
https://github.com/actix/actix-web.git
synced 2024-11-18 07:35:36 +00:00
reduce branch.remove deadcode for h1 dispatcher (#1962)
This commit is contained in:
parent
9604e249c9
commit
266cf0622c
1 changed files with 95 additions and 107 deletions
|
@ -734,6 +734,78 @@ where
|
||||||
}
|
}
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Returns true when io stream can be disconnected after write to it.
|
||||||
|
///
|
||||||
|
/// It covers these conditions:
|
||||||
|
///
|
||||||
|
/// - `std::io::ErrorKind::ConnectionReset` after partial read.
|
||||||
|
/// - all data read done.
|
||||||
|
#[inline(always)]
|
||||||
|
fn read_available(
|
||||||
|
self: Pin<&mut Self>,
|
||||||
|
cx: &mut Context<'_>,
|
||||||
|
) -> Result<bool, DispatchError> {
|
||||||
|
let this = self.project();
|
||||||
|
|
||||||
|
if this.flags.contains(Flags::READ_DISCONNECT) {
|
||||||
|
return Ok(false);
|
||||||
|
};
|
||||||
|
|
||||||
|
let mut io = Pin::new(this.io.as_mut().unwrap());
|
||||||
|
|
||||||
|
let mut read_some = false;
|
||||||
|
|
||||||
|
loop {
|
||||||
|
// grow buffer if necessary.
|
||||||
|
let remaining = this.read_buf.capacity() - this.read_buf.len();
|
||||||
|
if remaining < LW_BUFFER_SIZE {
|
||||||
|
this.read_buf.reserve(HW_BUFFER_SIZE - remaining);
|
||||||
|
}
|
||||||
|
|
||||||
|
match actix_codec::poll_read_buf(io.as_mut(), cx, this.read_buf) {
|
||||||
|
Poll::Pending => return Ok(false),
|
||||||
|
Poll::Ready(Ok(n)) => {
|
||||||
|
if n == 0 {
|
||||||
|
return Ok(true);
|
||||||
|
} else {
|
||||||
|
// Return early when read buf exceed decoder's max buffer size.
|
||||||
|
if this.read_buf.len() >= super::decoder::MAX_BUFFER_SIZE {
|
||||||
|
// at this point it's not known io is still scheduled to
|
||||||
|
// be waked up. so force wake up dispatcher just in case.
|
||||||
|
// TODO: figure out the overhead.
|
||||||
|
cx.waker().wake_by_ref();
|
||||||
|
return Ok(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
read_some = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Poll::Ready(Err(err)) => {
|
||||||
|
return if err.kind() == io::ErrorKind::WouldBlock {
|
||||||
|
Ok(false)
|
||||||
|
} else if err.kind() == io::ErrorKind::ConnectionReset && read_some {
|
||||||
|
Ok(true)
|
||||||
|
} else {
|
||||||
|
Err(DispatchError::Io(err))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// call upgrade service with request.
|
||||||
|
fn upgrade(self: Pin<&mut Self>, req: Request) -> U::Future {
|
||||||
|
let this = self.project();
|
||||||
|
let mut parts = FramedParts::with_read_buf(
|
||||||
|
this.io.take().unwrap(),
|
||||||
|
mem::take(this.codec),
|
||||||
|
mem::take(this.read_buf),
|
||||||
|
);
|
||||||
|
parts.write_buf = mem::take(this.write_buf);
|
||||||
|
let framed = Framed::from_parts(parts);
|
||||||
|
this.flow.upgrade.as_ref().unwrap().call((req, framed))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T, S, B, X, U> Future for Dispatcher<T, S, B, X, U>
|
impl<T, S, B, X, U> Future for Dispatcher<T, S, B, X, U>
|
||||||
|
@ -778,60 +850,36 @@ where
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// read socket into a buf
|
// read from io stream and fill read buffer.
|
||||||
let should_disconnect =
|
let should_disconnect = inner.as_mut().read_available(cx)?;
|
||||||
if !inner.flags.contains(Flags::READ_DISCONNECT) {
|
|
||||||
let mut inner_p = inner.as_mut().project();
|
|
||||||
read_available(
|
|
||||||
cx,
|
|
||||||
inner_p.io.as_mut().unwrap(),
|
|
||||||
&mut inner_p.read_buf,
|
|
||||||
)?
|
|
||||||
} else {
|
|
||||||
None
|
|
||||||
};
|
|
||||||
|
|
||||||
inner.as_mut().poll_request(cx)?;
|
inner.as_mut().poll_request(cx)?;
|
||||||
if let Some(true) = should_disconnect {
|
|
||||||
let inner_p = inner.as_mut().project();
|
// io stream should to be closed.
|
||||||
inner_p.flags.insert(Flags::READ_DISCONNECT);
|
if should_disconnect {
|
||||||
if let Some(mut payload) = inner_p.payload.take() {
|
let inner = inner.as_mut().project();
|
||||||
|
inner.flags.insert(Flags::READ_DISCONNECT);
|
||||||
|
if let Some(mut payload) = inner.payload.take() {
|
||||||
payload.feed_eof();
|
payload.feed_eof();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
loop {
|
loop {
|
||||||
let inner_p = inner.as_mut().project();
|
// poll_response and populate write buffer.
|
||||||
let remaining =
|
// drain indicate if write buffer should be emptied before next run.
|
||||||
inner_p.write_buf.capacity() - inner_p.write_buf.len();
|
let drain = match inner.as_mut().poll_response(cx)? {
|
||||||
if remaining < LW_BUFFER_SIZE {
|
PollResponse::DrainWriteBuf => true,
|
||||||
inner_p.write_buf.reserve(HW_BUFFER_SIZE - remaining);
|
PollResponse::DoNothing => false,
|
||||||
}
|
// upgrade request and goes Upgrade variant of DispatcherState.
|
||||||
let result = inner.as_mut().poll_response(cx)?;
|
PollResponse::Upgrade(req) => {
|
||||||
let drain = result == PollResponse::DrainWriteBuf;
|
let upgrade = inner.upgrade(req);
|
||||||
|
self.as_mut()
|
||||||
// switch to upgrade handler
|
.project()
|
||||||
if let PollResponse::Upgrade(req) = result {
|
.inner
|
||||||
let inner_p = inner.as_mut().project();
|
.set(DispatcherState::Upgrade(upgrade));
|
||||||
let mut parts = FramedParts::with_read_buf(
|
return self.poll(cx);
|
||||||
inner_p.io.take().unwrap(),
|
}
|
||||||
mem::take(inner_p.codec),
|
};
|
||||||
mem::take(inner_p.read_buf),
|
|
||||||
);
|
|
||||||
parts.write_buf = mem::take(inner_p.write_buf);
|
|
||||||
let framed = Framed::from_parts(parts);
|
|
||||||
let upgrade = inner_p
|
|
||||||
.flow
|
|
||||||
.upgrade
|
|
||||||
.as_ref()
|
|
||||||
.unwrap()
|
|
||||||
.call((req, framed));
|
|
||||||
self.as_mut()
|
|
||||||
.project()
|
|
||||||
.inner
|
|
||||||
.set(DispatcherState::Upgrade(upgrade));
|
|
||||||
return self.poll(cx);
|
|
||||||
}
|
|
||||||
|
|
||||||
// we didn't get WouldBlock from write operation,
|
// we didn't get WouldBlock from write operation,
|
||||||
// so data get written to kernel completely (macOS)
|
// so data get written to kernel completely (macOS)
|
||||||
|
@ -888,66 +936,6 @@ where
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns either:
|
|
||||||
/// - `Ok(Some(true))` - data was read and done reading all data.
|
|
||||||
/// - `Ok(Some(false))` - data was read but there should be more to read.
|
|
||||||
/// - `Ok(None)` - no data was read but there should be more to read later.
|
|
||||||
/// - Unhandled Errors
|
|
||||||
fn read_available<T>(
|
|
||||||
cx: &mut Context<'_>,
|
|
||||||
io: &mut T,
|
|
||||||
buf: &mut BytesMut,
|
|
||||||
) -> Result<Option<bool>, io::Error>
|
|
||||||
where
|
|
||||||
T: AsyncRead + Unpin,
|
|
||||||
{
|
|
||||||
let mut read_some = false;
|
|
||||||
|
|
||||||
loop {
|
|
||||||
// reserve capacity for buffer
|
|
||||||
let remaining = buf.capacity() - buf.len();
|
|
||||||
if remaining < LW_BUFFER_SIZE {
|
|
||||||
buf.reserve(HW_BUFFER_SIZE - remaining);
|
|
||||||
}
|
|
||||||
|
|
||||||
match actix_codec::poll_read_buf(Pin::new(io), cx, buf) {
|
|
||||||
Poll::Pending => {
|
|
||||||
return if read_some { Ok(Some(false)) } else { Ok(None) };
|
|
||||||
}
|
|
||||||
Poll::Ready(Ok(n)) => {
|
|
||||||
if n == 0 {
|
|
||||||
return Ok(Some(true));
|
|
||||||
} else {
|
|
||||||
// If buf is full return but do not disconnect since
|
|
||||||
// there is more reading to be done
|
|
||||||
if buf.len() >= super::decoder::MAX_BUFFER_SIZE {
|
|
||||||
// at this point it's not known io is still scheduled to
|
|
||||||
// be waked up. so force wake up dispatcher just in case.
|
|
||||||
// TODO: figure out the overhead.
|
|
||||||
cx.waker().wake_by_ref();
|
|
||||||
return Ok(Some(false));
|
|
||||||
}
|
|
||||||
|
|
||||||
read_some = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Poll::Ready(Err(err)) => {
|
|
||||||
return if err.kind() == io::ErrorKind::WouldBlock {
|
|
||||||
if read_some {
|
|
||||||
Ok(Some(false))
|
|
||||||
} else {
|
|
||||||
Ok(None)
|
|
||||||
}
|
|
||||||
} else if err.kind() == io::ErrorKind::ConnectionReset && read_some {
|
|
||||||
Ok(Some(true))
|
|
||||||
} else {
|
|
||||||
Err(err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use std::str;
|
use std::str;
|
||||||
|
|
Loading…
Reference in a new issue