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
use rustats;
use serde::{Deserialize, Serialize};
use serde_json;
use trackable::error::{ErrorKind as TrackableErrorKind, ErrorKindExt};
use trackable::error::{Failure, TrackableError};
use yamakan;

/// This crate specific `Error` type.
#[derive(Debug, Clone, TrackableError)]
pub struct Error(TrackableError<ErrorKind>);
impl Into<yamakan::Error> for Error {
    fn into(self) -> yamakan::Error {
        // TODO
        yamakan::ErrorKind::Other.takes_over(self).into()
    }
}
impl From<Failure> for Error {
    fn from(f: Failure) -> Self {
        ErrorKind::Other.takes_over(f).into()
    }
}
impl From<std::io::Error> for Error {
    fn from(f: std::io::Error) -> Self {
        ErrorKind::IoError.cause(f).into()
    }
}
impl From<serde_json::error::Error> for Error {
    fn from(f: serde_json::error::Error) -> Self {
        if let serde_json::error::Category::Io = f.classify() {
            ErrorKind::IoError.cause(f).into()
        } else {
            ErrorKind::InvalidInput.cause(f).into()
        }
    }
}
impl From<yamakan::Error> for Error {
    fn from(f: yamakan::Error) -> Self {
        let original_kind = f.kind().clone();
        let kind = match original_kind {
            yamakan::ErrorKind::InvalidInput => ErrorKind::InvalidInput,
            yamakan::ErrorKind::IoError => ErrorKind::IoError,
            _ => ErrorKind::Other,
        };
        track!(kind.takes_over(f); original_kind).into()
    }
}
impl From<rustats::Error> for Error {
    fn from(f: rustats::Error) -> Self {
        let original_kind = f.kind().clone();
        let kind = match original_kind {
            rustats::ErrorKind::InvalidInput => ErrorKind::InvalidInput,
            rustats::ErrorKind::IoError => ErrorKind::IoError,
            _ => ErrorKind::Other,
        };
        track!(kind.takes_over(f); original_kind).into()
    }
}

/// Possible error kinds.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
pub enum ErrorKind {
    /// Invalid input was given.
    InvalidInput,

    /// I/O error.
    IoError,

    /// Unexpected end-of-stream.
    UnexpectedEos,

    /// Incapable feature was required.
    Incapable,

    UnevaluableParams,

    /// Implementation bug.
    Bug,

    /// Other error.
    Other,
}
impl TrackableErrorKind for ErrorKind {}