-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
stream: add StreamExt::timeout() (#2149)
- Loading branch information
1 parent
0d49e11
commit 12be90e
Showing
4 changed files
with
252 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
use crate::stream::{Fuse, Stream}; | ||
use crate::time::{Delay, Elapsed, Instant}; | ||
|
||
use core::future::Future; | ||
use core::pin::Pin; | ||
use core::task::{Context, Poll}; | ||
use pin_project_lite::pin_project; | ||
use std::time::Duration; | ||
|
||
pin_project! { | ||
/// Stream returned by the [`timeout`](super::StreamExt::timeout) method. | ||
#[must_use = "streams do nothing unless polled"] | ||
#[derive(Debug)] | ||
pub struct Timeout<S> { | ||
#[pin] | ||
stream: Fuse<S>, | ||
deadline: Delay, | ||
duration: Duration, | ||
poll_deadline: bool, | ||
} | ||
} | ||
|
||
impl<S: Stream> Timeout<S> { | ||
pub(super) fn new(stream: S, duration: Duration) -> Self { | ||
let next = Instant::now() + duration; | ||
let deadline = Delay::new_timeout(next, duration); | ||
|
||
Timeout { | ||
stream: Fuse::new(stream), | ||
deadline, | ||
duration, | ||
poll_deadline: true, | ||
} | ||
} | ||
} | ||
|
||
impl<S: Stream> Stream for Timeout<S> { | ||
type Item = Result<S::Item, Elapsed>; | ||
|
||
fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> { | ||
match self.as_mut().project().stream.poll_next(cx) { | ||
Poll::Ready(v) => { | ||
if v.is_some() { | ||
let next = Instant::now() + self.duration; | ||
self.as_mut().project().deadline.reset(next); | ||
*self.as_mut().project().poll_deadline = true; | ||
} | ||
return Poll::Ready(v.map(Ok)); | ||
} | ||
Poll::Pending => {} | ||
}; | ||
|
||
if self.poll_deadline { | ||
ready!(Pin::new(self.as_mut().project().deadline).poll(cx)); | ||
*self.as_mut().project().poll_deadline = false; | ||
return Poll::Ready(Some(Err(Elapsed::new()))); | ||
} | ||
|
||
Poll::Pending | ||
} | ||
|
||
fn size_hint(&self) -> (usize, Option<usize>) { | ||
self.stream.size_hint() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
#![cfg(feature = "full")] | ||
|
||
use tokio::stream::{self, StreamExt}; | ||
use tokio::time::{self, delay_for, Duration}; | ||
use tokio_test::*; | ||
|
||
use futures::StreamExt as _; | ||
|
||
async fn maybe_delay(idx: i32) -> i32 { | ||
if idx % 2 == 0 { | ||
delay_for(ms(200)).await; | ||
} | ||
idx | ||
} | ||
|
||
fn ms(n: u64) -> Duration { | ||
Duration::from_millis(n) | ||
} | ||
|
||
#[tokio::test] | ||
async fn basic_usage() { | ||
time::pause(); | ||
|
||
// Items 2 and 4 time out. If we run the stream until it completes, | ||
// we end up with the following items: | ||
// | ||
// [Ok(1), Err(Elapsed), Ok(2), Ok(3), Err(Elapsed), Ok(4)] | ||
|
||
let stream = stream::iter(1..=4).then(maybe_delay).timeout(ms(100)); | ||
let mut stream = task::spawn(stream); | ||
|
||
// First item completes immediately | ||
assert_ready_eq!(stream.poll_next(), Some(Ok(1))); | ||
|
||
// Second item is delayed 200ms, times out after 100ms | ||
assert_pending!(stream.poll_next()); | ||
|
||
time::advance(ms(150)).await; | ||
let v = assert_ready!(stream.poll_next()); | ||
assert!(v.unwrap().is_err()); | ||
|
||
assert_pending!(stream.poll_next()); | ||
|
||
time::advance(ms(100)).await; | ||
assert_ready_eq!(stream.poll_next(), Some(Ok(2))); | ||
|
||
// Third item is ready immediately | ||
assert_ready_eq!(stream.poll_next(), Some(Ok(3))); | ||
|
||
// Fourth item is delayed 200ms, times out after 100ms | ||
assert_pending!(stream.poll_next()); | ||
|
||
time::advance(ms(60)).await; | ||
assert_pending!(stream.poll_next()); // nothing ready yet | ||
|
||
time::advance(ms(60)).await; | ||
let v = assert_ready!(stream.poll_next()); | ||
assert!(v.unwrap().is_err()); // timeout! | ||
|
||
time::advance(ms(120)).await; | ||
assert_ready_eq!(stream.poll_next(), Some(Ok(4))); | ||
|
||
// Done. | ||
assert_ready_eq!(stream.poll_next(), None); | ||
} | ||
|
||
#[tokio::test] | ||
async fn return_elapsed_errors_only_once() { | ||
time::pause(); | ||
|
||
let stream = stream::iter(1..=3).then(maybe_delay).timeout(ms(50)); | ||
let mut stream = task::spawn(stream); | ||
|
||
// First item completes immediately | ||
assert_ready_eq!(stream.poll_next(), Some(Ok(1))); | ||
|
||
// Second item is delayed 200ms, times out after 50ms. Only one `Elapsed` | ||
// error is returned. | ||
assert_pending!(stream.poll_next()); | ||
// | ||
time::advance(ms(50)).await; | ||
let v = assert_ready!(stream.poll_next()); | ||
assert!(v.unwrap().is_err()); // timeout! | ||
|
||
// deadline elapses again, but no error is returned | ||
time::advance(ms(50)).await; | ||
assert_pending!(stream.poll_next()); | ||
|
||
time::advance(ms(100)).await; | ||
assert_ready_eq!(stream.poll_next(), Some(Ok(2))); | ||
assert_ready_eq!(stream.poll_next(), Some(Ok(3))); | ||
|
||
// Done | ||
assert_ready_eq!(stream.poll_next(), None); | ||
} | ||
|
||
#[tokio::test] | ||
async fn no_timeouts() { | ||
let stream = stream::iter(vec![1, 3, 5]) | ||
.then(maybe_delay) | ||
.timeout(ms(100)); | ||
|
||
let mut stream = task::spawn(stream); | ||
|
||
assert_ready_eq!(stream.poll_next(), Some(Ok(1))); | ||
assert_ready_eq!(stream.poll_next(), Some(Ok(3))); | ||
assert_ready_eq!(stream.poll_next(), Some(Ok(5))); | ||
assert_ready_eq!(stream.poll_next(), None); | ||
} |