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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
use std::convert::From;
use std::io;

use futures;
use futures::Future;
use futures::Poll;
use futures::stream::Stream;

use tokio_oneshot;


enum State<S> {
    Receiver(tokio_oneshot::Receiver<S>),
    Ready(S),
}


#[allow(dead_code)]
pub struct Deferred<S>
    where
        S : Stream + Send + 'static,
        S::Error : From<io::Error>,
{
    state: State<S>,
}

#[allow(dead_code)]
pub struct DeferredInit<S>
    where
        S : Stream + Send + 'static,
        S::Error : From<io::Error>,
{
    sender: tokio_oneshot::Sender<S>,
}

/// Stream with late init.
#[allow(dead_code)]
pub fn stream_deferred<S>() -> (Deferred<S>, DeferredInit<S>)
    where
        S : Stream + Send + 'static,
        S::Error : From<io::Error>,
{
    let (tx, rx) = tokio_oneshot::oneshot();

    (
        Deferred { state: State::Receiver(rx) },
        DeferredInit { sender: tx }
    )
}

impl<S> DeferredInit<S>
    where
        S : Stream + Send + 'static,
        S::Error : From<io::Error>,
{
    pub fn init(self, stream: S) -> Result<(), futures::sync::mpsc::SendError<S>> {
        self.sender.send(stream)
    }
}

impl<S> Stream for Deferred<S>
    where
        S : Stream + Send + 'static,
        S::Error : From<io::Error>,
{
    type Item = S::Item;
    type Error = S::Error;

    fn poll(&mut self) -> Poll<Option<Self::Item>, Self::Error> {
        let stream: S = match self.state {
            State::Ready(ref mut s) => return s.poll(),
            State::Receiver(ref mut receiver) => try_ready!(receiver.poll().map_err(|_| io::Error::new(io::ErrorKind::Other, "recv"))),
        };

        self.state = State::Ready(stream);
        match self.state {
            State::Ready(ref mut s) => s.poll(),
            State::Receiver(..) => unreachable!(),
        }
    }
}