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
use std::{convert, error::Error, fmt, io};
use std::io::ErrorKind;

#[derive(Debug)]
pub enum ParserError {
    IoError(io::Error, Option<Vec<u8>>),
    EofError(io::Error, Option<Vec<u8>>),
    RemoteIoError(String),
    EofExpected,
    ParseError(String),
    UnknownAttr(String),
    TruncatedMsg(String),
    Deprecated(String),
    Unsupported(String),
}

impl Error for ParserError {}

/// implement Display trait for Error which satistifies the std::error::Error
/// trait's requirement (must implement Display and Debug traits, Debug already derived)
impl fmt::Display for ParserError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        let message = match self {
            ParserError::IoError(e, _bytes) => e.to_string(),
            ParserError::EofError(e, _) => e.to_string(),
            ParserError::ParseError(s) => s.to_owned(),
            ParserError::TruncatedMsg(s) => s.to_owned(),
            ParserError::Deprecated(s) => s.to_owned(),
            ParserError::UnknownAttr(s) => s.to_owned(),
            ParserError::Unsupported(s) => s.to_owned(),
            ParserError::EofExpected => "reach end of file".to_string(),
            ParserError::RemoteIoError(e) => e.to_string()
        };
        write!(f, "Error: {}", message)
    }
}

impl convert::From<reqwest::Error> for ParserError {
    fn from(error: reqwest::Error) -> Self {
        ParserError::RemoteIoError(error.to_string())
    }
}

impl convert::From<io::Error> for ParserError {
    fn from(io_error: io::Error) -> Self {
        match io_error.kind() {
            ErrorKind::UnexpectedEof => {ParserError::EofError(io_error, None)}
            _ => ParserError::IoError(io_error, None)
        }
    }
}