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
82
83
84
85
86
87
88
89
90
91
use futures::stream::Stream;
use futures::Poll;
use futures::Async;


pub enum ResultOrEof<T, E> {
    Item(T),
    Error(E),
    Eof,
}

impl<T, E> ResultOrEof<T, E> {
    pub fn and_then<U, F: FnOnce(T) -> Result<U, E>>(self, op: F) -> ResultOrEof<U, E> {
        match self {
            ResultOrEof::Item(t) => match op(t) {
                Ok(r) => ResultOrEof::Item(r),
                Err(e) => ResultOrEof::Error(e),
            },
            ResultOrEof::Error(e) => ResultOrEof::Error(e),
            ResultOrEof::Eof => ResultOrEof::Eof,
        }
    }
}

impl<T, E> From<Result<T, E>> for ResultOrEof<T, E> {
    fn from(result: Result<T, E>) -> Self {
        match result {
            Ok(r) => ResultOrEof::Item(r),
            Err(e) => ResultOrEof::Error(e),
        }
    }
}



pub fn stream_with_eof_and_error<T, E, S, F>(s: S, missed_eof: F) -> StreamWithEofAndError<S, F>
    where
        S : Stream<Item=ResultOrEof<T, E>, Error=E>,
        F : FnOnce() -> E,
{
    StreamWithEofAndError {
        stream: s,
        seen_eof: false,
        missed_eof: Some(missed_eof),
    }
}

pub struct StreamWithEofAndError<S, F> {
    stream: S,
    seen_eof: bool,
    missed_eof: Option<F>,
}

impl<T, E, S, F> Stream for StreamWithEofAndError<S, F>
    where
        S : Stream<Item=ResultOrEof<T, E>, Error=E>,
        F : FnOnce() -> E,
{
    type Item = T;
    type Error = E;

    fn poll(&mut self) -> Poll<Option<Self::Item>, Self::Error> {
        // must return stream eof after missed eof error
        if let None = self.missed_eof {
            return Ok(Async::Ready(None));
        }

        loop {
            if self.seen_eof {
                match try_ready!(self.stream.poll()) {
                    None => return Ok(Async::Ready(None)),
                    Some(ResultOrEof::Error(e)) => return Err(e),
                    Some(ResultOrEof::Eof) => panic!("eof after eof"),
                    Some(ResultOrEof::Item(_)) => panic!("item after eof"),
                }
            } else {
                match try_ready!(self.stream.poll()) {
                    None => {
                        return Err(self.missed_eof.take().expect("unreachable")());
                    },
                    Some(ResultOrEof::Eof) => {
                        self.seen_eof = true;
                        continue;
                    }
                    Some(ResultOrEof::Error(e)) => return Err(e),
                    Some(ResultOrEof::Item(item)) => return Ok(Async::Ready(Some(item))),
                }
            }
        }
    }
}