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
use crate::unwind::{maybe_unwind, Unwind};
use futures_core::{
    future::Future,
    task::{self, Poll},
};
use std::{
    panic::{AssertUnwindSafe, UnwindSafe},
    pin::Pin,
};

/// A future for the [`maybe_unwind`] method.
///
/// [`maybe_unwind`]: ./trait.FutureMaybeUnwindExt.html#method.maybe_unwind
#[derive(Debug)]
#[cfg_attr(docs, doc(cfg(feature = "futures")))]
#[must_use = "futures do nothing unless you `.await` or poll them"]
pub struct MaybeUnwind<F> {
    inner: F,
}

impl<F> Future for MaybeUnwind<F>
where
    F: Future + UnwindSafe,
{
    type Output = Result<F::Output, Unwind>;

    fn poll(self: Pin<&mut Self>, cx: &mut task::Context<'_>) -> Poll<Self::Output> {
        let inner = unsafe { self.map_unchecked_mut(|me| &mut me.inner) };
        maybe_unwind(AssertUnwindSafe(|| inner.poll(cx)))?.map(Ok)
    }
}

/// An extension trait for `Future`s that provides an adaptor for capturing
/// the unwinding panic information.
#[cfg_attr(docs, doc(cfg(feature = "futures")))]
pub trait FutureMaybeUnwindExt: Future + Sized {
    /// Catches unwinding panics while polling the future.
    ///
    /// This is a variant of [`catch_unwind`] that also captures
    /// the panic information.
    ///
    /// # Example
    ///
    /// ```
    /// use maybe_unwind::FutureMaybeUnwindExt as _;
    ///
    /// std::panic::set_hook(Box::new(|info| {
    ///     maybe_unwind::capture_panic_info(info);
    /// }));
    ///
    /// # futures_executor::block_on(async {
    /// let res = do_something_async().maybe_unwind().await;
    /// # drop(res);
    /// # });
    /// # async fn do_something_async() {}
    /// ```
    ///
    /// [`catch_unwind`]: https://docs.rs/futures/0.3/futures/future/trait.FutureExt.html#method.catch_unwind
    fn maybe_unwind(self) -> MaybeUnwind<Self>
    where
        Self: UnwindSafe,
    {
        MaybeUnwind { inner: self }
    }
}

impl<F: Future> FutureMaybeUnwindExt for F {}