logo
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
use core::future::Future;
use core::pin::Pin;

use crate::stream::Stream;
use crate::task::{Context, Poll};

#[doc(hidden)]
#[allow(missing_debug_implementations)]
pub struct PositionFuture<'a, S, P> {
    stream: &'a mut S,
    predicate: P,
    index: usize,
}

impl<'a, S, P> Unpin for PositionFuture<'a, S, P> {}

impl<'a, S, P> PositionFuture<'a, S, P> {
    pub(super) fn new(stream: &'a mut S, predicate: P) -> Self {
        Self {
            stream,
            predicate,
            index: 0,
        }
    }
}

impl<'a, S, P> Future for PositionFuture<'a, S, P>
where
    S: Stream + Unpin,
    P: FnMut(S::Item) -> bool,
{
    type Output = Option<usize>;

    fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
        let next = futures_core::ready!(Pin::new(&mut self.stream).poll_next(cx));

        match next {
            Some(v) => {
                if (&mut self.predicate)(v) {
                    Poll::Ready(Some(self.index))
                } else {
                    cx.waker().wake_by_ref();
                    self.index += 1;
                    Poll::Pending
                }
            }
            None => Poll::Ready(None),
        }
    }
}