use std::{
future::Future,
pin::Pin,
task::{Context, Poll, ready},
time::Duration,
};
use http::Response;
use pin_project_lite::pin_project;
use tokio::time::Sleep;
use super::body::TimeoutBody;
use crate::error::{BoxError, Error, TimedOut};
pin_project! {
pub struct ResponseFuture<F> {
#[pin]
pub(crate) response: F,
#[pin]
pub(crate) total_timeout: Option<Sleep>,
#[pin]
pub(crate) read_timeout: Option<Sleep>,
}
}
impl<F, T, E> Future for ResponseFuture<F>
where
F: Future<Output = Result<T, E>>,
E: Into<BoxError>,
{
type Output = Result<T, BoxError>;
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
let mut this = self.project();
match this.response.poll(cx) {
Poll::Ready(v) => return Poll::Ready(v.map_err(Into::into)),
Poll::Pending => {}
}
let mut check_timeout = |sleep: Option<Pin<&mut Sleep>>| {
if let Some(sleep) = sleep
&& sleep.poll(cx).is_ready()
{
return Some(Poll::Ready(Err(Error::request(TimedOut).into())));
}
None
};
if let Some(poll) = check_timeout(this.total_timeout.as_mut().as_pin_mut()) {
return poll;
}
if let Some(poll) = check_timeout(this.read_timeout.as_mut().as_pin_mut()) {
return poll;
}
Poll::Pending
}
}
pin_project! {
pub struct ResponseBodyTimeoutFuture<Fut> {
#[pin]
pub(super) inner: Fut,
pub(super) total_timeout: Option<Duration>,
pub(super) read_timeout: Option<Duration>,
}
}
impl<Fut, ResBody, E> Future for ResponseBodyTimeoutFuture<Fut>
where
Fut: Future<Output = Result<Response<ResBody>, E>>,
{
type Output = Result<Response<TimeoutBody<ResBody>>, E>;
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
let total_timeout = self.total_timeout;
let read_timeout = self.read_timeout;
let res = ready!(self.project().inner.poll(cx))?
.map(|body| TimeoutBody::new(total_timeout, read_timeout, body));
Poll::Ready(Ok(res))
}
}