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
use std::{any::Any, panic::AssertUnwindSafe};
use futures_util::FutureExt;
use crate::{async_trait, Handler, IntoResponse, Response, Result};
#[derive(Debug, Clone)]
pub struct CatchUnwind<H, F> {
h: H,
f: F,
}
impl<H, F> CatchUnwind<H, F> {
#[inline]
pub(super) fn new(h: H, f: F) -> Self {
Self { h, f }
}
}
#[async_trait]
impl<H, F, I, O, R> Handler<I> for CatchUnwind<H, F>
where
I: Send + 'static,
H: Handler<I, Output = Result<O>> + Clone,
F: Handler<Box<dyn Any + Send>, Output = R> + Clone,
O: IntoResponse + Send + Sync + 'static,
R: IntoResponse + Send + Sync + 'static,
{
type Output = Result<Response>;
async fn call(&self, i: I) -> Self::Output {
match AssertUnwindSafe(self.h.call(i)).catch_unwind().await {
Ok(r) => r.map(IntoResponse::into_response),
Err(e) => Ok(self.f.call(e).await.into_response()),
}
}
}