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
use std::pin::Pin;
use std::task::{Context, Poll};

use crate::actor::Actor;
use crate::fut::{ActorFuture, ActorStream};

pin_project_lite::pin_project! {
    /// A combinator used to convert stream into a future, future resolves
    /// when stream completes.
    ///
    /// This structure is produced by the `ActorStream::finish` method.
    #[must_use = "streams do nothing unless polled"]
    #[derive(Debug)]
    pub struct StreamFinish<S: ActorStream> {
        #[pin]
        stream: S
    }
}

pub fn new<S: ActorStream>(stream: S) -> StreamFinish<S> {
    StreamFinish { stream }
}

impl<S: ActorStream> ActorFuture for StreamFinish<S> {
    type Output = ();
    type Actor = S::Actor;

    fn poll(
        mut self: Pin<&mut Self>,
        act: &mut S::Actor,
        ctx: &mut <S::Actor as Actor>::Context,
        task: &mut Context<'_>,
    ) -> Poll<()> {
        loop {
            match self.as_mut().project().stream.poll_next(act, ctx, task) {
                Poll::Pending => return Poll::Pending,
                Poll::Ready(None) => return Poll::Ready(()),
                Poll::Ready(Some(_)) => (),
            };
        }
    }
}