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
/// Result type for GhostErrors
pub type GhostResult<T> = Result<T, GhostError>;

/// GhostError used in GhostResult responses
#[derive(Debug, Clone, PartialEq)]
pub struct GhostError(Box<ErrorKind>);

impl GhostError {
    /// create a new `GhostError`.
    pub fn new(kind: ErrorKind) -> Self {
        GhostError(Box::new(kind))
    }

    /// Return the specific type of this error.
    pub fn kind(&self) -> &ErrorKind {
        &self.0
    }

    /// Unwrap this error into its underlying type.
    pub fn into_kind(self) -> ErrorKind {
        *self.0
    }
}

/// The specific type of an error.
#[derive(Debug, Clone, PartialEq)]
pub enum ErrorKind {
    /// If we have multiple sub-errors, we can represent them as a super-error
    Multiple(Vec<GhostError>),
    /// returned on an attempt to handle an callback for a non-existent request
    RequestIdNotFound(String),
    /// Generic stringified errors
    Other(String),
    EndpointDisconnected,
    /// Hints that destructuring should not be exhaustive.
    ///
    /// This enum may grow additional variants, so this makes sure clients
    /// don't count on exhaustive matching. (Otherwise, adding a new variant
    /// could break existing code.)
    #[doc(hidden)]
    __Nonexhaustive,
}

impl std::error::Error for GhostError {
    /// The lower-level source of this error, if any.
    fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
        match *self.0 {
            _ => None,
        }
    }
}

impl std::fmt::Display for GhostError {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        match *self.0 {
            ErrorKind::Multiple(ref s) => write!(f, "Multiple {{{:?}}}", s),
            ErrorKind::RequestIdNotFound(ref s) => write!(f, "RequestIdNotFound {{{:?}}}", s),
            ErrorKind::Other(ref s) => write!(f, "Unknown error encountered: '{}'.", s),
            _ => unreachable!(),
        }
    }
}

impl From<Vec<GhostError>> for GhostError {
    fn from(m: Vec<GhostError>) -> Self {
        GhostError::new(ErrorKind::Multiple(m))
    }
}

impl From<String> for GhostError {
    fn from(s: String) -> Self {
        GhostError::new(ErrorKind::Other(s))
    }
}

impl From<&str> for GhostError {
    fn from(s: &str) -> Self {
        GhostError::new(ErrorKind::Other(s.to_string()))
    }
}

impl<T> From<crossbeam_channel::SendError<T>> for GhostError {
    fn from(e: crossbeam_channel::SendError<T>) -> Self {
        GhostError::new(ErrorKind::Other(format!("{:?}", e)))
    }
}