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

use pin_project::pin_project;

use crate::actor::Actor;
use crate::fut::chain::Chain;
use crate::fut::{ActorFuture, IntoActorFuture};

/// Future for the `then` combinator, chaining computations on the end of
/// another future regardless of its outcome.
///
/// This is created by the `Future::then` method.
#[pin_project]
#[derive(Debug)]
#[must_use = "futures do nothing unless polled"]
pub struct Then<A, B, F: 'static>
where
    A: ActorFuture,
    B: IntoActorFuture<Actor = A::Actor>,
{
    #[pin]
    state: Chain<A, B::Future, F>,
}

pub fn new<A, B, F: 'static>(future: A, f: F) -> Then<A, B, F>
where
    A: ActorFuture,
    B: IntoActorFuture<Actor = A::Actor>,
{
    Then {
        state: Chain::new(future, f),
    }
}

impl<A, B, F> ActorFuture for Then<A, B, F>
where
    A: ActorFuture,
    B: IntoActorFuture<Actor = A::Actor>,
    F: FnOnce(A::Output, &mut A::Actor, &mut <A::Actor as Actor>::Context) -> B,
{
    type Output = B::Output;
    type Actor = A::Actor;

    fn poll(
        self: Pin<&mut Self>,
        act: &mut A::Actor,
        ctx: &mut <A::Actor as Actor>::Context,
        task: &mut task::Context<'_>,
    ) -> Poll<B::Output> {
        self.project()
            .state
            .poll(act, ctx, task, |item, f, act, ctx| {
                f(item, act, ctx).into_future()
            })
    }
}