use crate::unwind::{maybe_unwind, Unwind};
use futures_core::{
future::Future,
task::{self, Poll},
};
use std::{
panic::{AssertUnwindSafe, UnwindSafe},
pin::Pin,
};
#[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)
}
}
#[cfg_attr(docs, doc(cfg(feature = "futures")))]
pub trait FutureMaybeUnwindExt: Future + Sized {
fn maybe_unwind(self) -> MaybeUnwind<Self>
where
Self: UnwindSafe,
{
MaybeUnwind { inner: self }
}
}
impl<F: Future> FutureMaybeUnwindExt for F {}