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 futures::{Async, Poll};

use actor::Actor;
use fut::ActorFuture;


/// Future for the `map` combinator, changing the type of a future.
///
/// This is created by the `ACtorFuture::map` method.
#[derive(Debug)]
#[must_use = "futures do nothing unless polled"]
pub struct Map<A, F> where A: ActorFuture {
    future: A,
    f: Option<F>,
}

pub fn new<A, F>(future: A, f: F) -> Map<A, F>
    where A: ActorFuture,
{
    Map {
        future,
        f: Some(f),
    }
}

impl<U, A, F> ActorFuture for Map<A, F>
    where A: ActorFuture,
          F: FnOnce(A::Item, &mut A::Actor, &mut <A::Actor as Actor>::Context) -> U,
{
    type Item = U;
    type Error = A::Error;
    type Actor = A::Actor;

    fn poll(&mut self,
            act: &mut Self::Actor,
            ctx: &mut <A::Actor as Actor>::Context) -> Poll<U, A::Error>
    {
        let e = match self.future.poll(act, ctx) {
            Ok(Async::NotReady) => return Ok(Async::NotReady),
            Ok(Async::Ready(e)) => Ok(e),
            Err(e) => Err(e),
        };
        match e {
            Ok(item) =>
                Ok(Async::Ready(
                    self.f.take().expect("cannot poll Map twice")(item, act, ctx))),
            Err(err) => Err(err)
        }
    }
}