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
49
50
51
52
53
54
55
56
57
use futures_core::{Async, Future, IntoFuture, Poll, Stream};
use futures_core::task;

/// A stream combinator which executes a unit closure over each item on a
/// stream.
///
/// This structure is returned by the `Stream::for_each` method.
#[derive(Debug)]
#[must_use = "streams do nothing unless polled"]
pub struct ForEach<S, U, F> where U: IntoFuture {
    stream: Option<S>,
    f: F,
    fut: Option<U::Future>,
}

pub fn new<S, U, F>(s: S, f: F) -> ForEach<S, U, F>
    where S: Stream,
          F: FnMut(S::Item) -> U,
          U: IntoFuture<Item = (), Error = S::Error>,
{
    ForEach {
        stream: Some(s),
        f: f,
        fut: None,
    }
}

impl<S, U, F> Future for ForEach<S, U, F>
    where S: Stream,
          F: FnMut(S::Item) -> U,
          U: IntoFuture<Item= (), Error = S::Error>,
{
    type Item = S;
    type Error = S::Error;

    fn poll(&mut self, cx: &mut task::Context) -> Poll<S, S::Error> {
        loop {
            if let Some(mut fut) = self.fut.take() {
                if fut.poll(cx)?.is_pending() {
                    self.fut = Some(fut);
                    return Ok(Async::Pending);
                }
            }

            match self.stream {
                Some(ref mut stream) => {
                    match try_ready!(stream.poll_next(cx)) {
                        Some(e) => self.fut = Some((self.f)(e).into_future()),
                        None => break,
                    }
                }
                None => panic!("poll after a ForEach was done"),
            }
        }
        Ok(Async::Ready(self.stream.take().unwrap()))
    }
}