1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
use futures::{Async, Future, Poll, Stream};
#[doc(hidden)]
pub trait FinishStream: Sized {
fn finish(self) -> Finish<Self>;
}
impl<S: Stream> FinishStream for S {
fn finish(self) -> Finish<S> {
Finish::new(self)
}
}
#[derive(Debug)]
#[must_use = "streams do nothing unless polled"]
pub struct Finish<S>(S);
impl<S> Finish<S> {
pub fn new(s: S) -> Finish<S> {
Finish(s)
}
}
impl<S> Future for Finish<S>
where
S: Stream,
{
type Item = ();
type Error = S::Error;
fn poll(&mut self) -> Poll<(), S::Error> {
loop {
match self.0.poll() {
Ok(Async::NotReady) => return Ok(Async::NotReady),
Ok(Async::Ready(None)) => return Ok(Async::Ready(())),
Ok(Async::Ready(Some(_))) => (),
Err(err) => return Err(err),
};
}
}
}