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
92
93
//! Error

use std::error::Error as StdError;

use crate::{IntoResponse, Response, StatusCode, ThisError};

#[derive(ThisError, Debug)]
pub enum Error {
    #[error(transparent)]
    Normal(Box<dyn StdError + Send + Sync>),
    #[error("response")]
    Responder(Response),
    #[error("report")]
    Report(Box<dyn StdError + Send + Sync>, Response),
}

impl Error {
    pub fn normal<T>(t: T) -> Self
    where
        T: StdError + Send + Sync + 'static,
    {
        Self::Normal(Box::new(t))
    }

    #[inline]
    pub fn is<T>(&self) -> bool
    where
        T: StdError + 'static,
    {
        if let Self::Report(e, _) = self {
            return e.is::<T>();
        }
        false
    }

    #[inline]
    pub fn downcast<T>(self) -> Result<T, Self>
    where
        T: StdError + 'static,
    {
        if let Self::Report(e, r) = self {
            return match e.downcast::<T>() {
                Ok(e) => Ok(*e),
                Err(e) => Err(Self::Report(e, r)),
            };
        }
        Err(self)
    }

    #[inline]
    pub fn downcast_ref<T>(&self) -> Option<&T>
    where
        T: StdError + 'static,
    {
        if let Self::Report(e, _) = self {
            return e.downcast_ref::<T>();
        }
        None
    }

    #[inline]
    pub fn downcast_mut<T>(&mut self) -> Option<&mut T>
    where
        T: StdError + 'static,
    {
        if let Self::Report(e, _) = self {
            return e.downcast_mut::<T>();
        }
        None
    }
}

impl<E, T> From<(E, T)> for Error
where
    E: StdError + Send + Sync + 'static,
    T: IntoResponse,
{
    fn from((e, t): (E, T)) -> Self {
        Error::Report(Box::new(e), t.into_response())
    }
}

impl From<http::Error> for Error {
    fn from(e: http::Error) -> Self {
        (e, StatusCode::BAD_REQUEST).into()
    }
}

impl From<std::io::Error> for Error {
    fn from(e: std::io::Error) -> Self {
        Error::normal(e)
    }
}