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
//! TODO(doc): @keroro520

use std::{error::Error as StdError, fmt, ops::Deref, sync::Arc};

mod convert;
mod internal;
pub mod prelude;
pub mod util;

use derive_more::Display;
pub use internal::{InternalError, InternalErrorKind, OtherError, SilentError};
use prelude::*;

/// A wrapper around a dynamic error type.
#[derive(Debug, Clone)]
pub struct AnyError(Arc<anyhow::Error>);

/// TODO(doc): @keroro520
#[derive(Debug, Clone, Copy, Eq, PartialEq, Display)]
pub enum ErrorKind {
    /// TODO(doc): @keroro520
    OutPoint,
    /// TODO(doc): @keroro520
    Transaction,
    /// TODO(doc): @keroro520
    SubmitTransaction,
    /// TODO(doc): @keroro520
    Script,
    /// TODO(doc): @keroro520
    Header,
    /// TODO(doc): @keroro520
    Block,
    /// TODO(doc): @keroro520
    Internal,
    /// TODO(doc): @keroro520
    Dao,
    /// TODO(doc): @keroro520
    Spec,
}

def_error_base_on_kind!(Error, ErrorKind);

impl<E> From<E> for AnyError
where
    E: StdError + Send + Sync + 'static,
{
    fn from(error: E) -> Self {
        Self(Arc::new(error.into()))
    }
}

impl Deref for AnyError {
    type Target = Arc<anyhow::Error>;

    fn deref(&self) -> &Self::Target {
        &self.0
    }
}

impl fmt::Display for AnyError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        self.0.fmt(f)
    }
}