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_core::stream::Stream;
use futures_core::task::{Context, Poll};
use pin_utils::{unsafe_pinned, unsafe_unpinned};
use std::any::Any;
use std::pin::Pin;
use std::panic::{catch_unwind, UnwindSafe, AssertUnwindSafe};
use std::prelude::v1::*;
#[derive(Debug)]
#[must_use = "streams do nothing unless polled"]
pub struct CatchUnwind<St: Stream> {
stream: St,
caught_unwind: bool,
}
impl<St: Stream + UnwindSafe> CatchUnwind<St> {
unsafe_pinned!(stream: St);
unsafe_unpinned!(caught_unwind: bool);
pub(super) fn new(stream: St) -> CatchUnwind<St> {
CatchUnwind { stream, caught_unwind: false }
}
}
impl<St: Stream + UnwindSafe> Stream for CatchUnwind<St>
{
type Item = Result<St::Item, Box<dyn Any + Send>>;
fn poll_next(
mut self: Pin<&mut Self>,
cx: &mut Context<'_>,
) -> Poll<Option<Self::Item>> {
if *self.as_mut().caught_unwind() {
Poll::Ready(None)
} else {
let res = catch_unwind(AssertUnwindSafe(|| {
self.as_mut().stream().poll_next(cx)
}));
match res {
Ok(poll) => poll.map(|opt| opt.map(Ok)),
Err(e) => {
*self.as_mut().caught_unwind() = true;
Poll::Ready(Some(Err(e)))
},
}
}
}
}