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
use std::fmt;
use std::io;

/// Thin wrapper around serialization errors.
///
/// The `From<T>` trait will be defined for all serialization errors of format features enabled.
#[derive(Debug)]
pub struct Error {
    message: String,
}

impl std::error::Error for Error {}

impl Error {
    pub fn new<T>(msg: T) -> Error
    where
        String: From<T>,
    {
        Error {
            message: String::from(msg),
        }
    }
}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.message)
    }
}

impl From<io::Error> for Error {
    fn from(e: io::Error) -> Error {
        Error::new(format!("IO Error: {}", e.to_string()))
    }
}

#[cfg(feature = "json_fmt")]
impl From<serde_json::Error> for Error {
    fn from(e: serde_json::Error) -> Error {
        Error::new(format!("Polyglot/JSON Error: {}", e.to_string()))
    }
}

#[cfg(feature = "msgpack_fmt")]
impl From<rmp_serde::encode::Error> for Error {
    fn from(e: rmp_serde::encode::Error) -> Error {
        Error::new(format!("Polyglot/MsgPack Error: {}", e.to_string()))
    }
}

#[cfg(feature = "msgpack_fmt")]
impl From<rmp_serde::decode::Error> for Error {
    fn from(e: rmp_serde::decode::Error) -> Error {
        Error::new(format!("Polyglot/MsgPack Error: {}", e.to_string()))
    }
}

#[cfg(feature = "toml_fmt")]
impl From<toml::de::Error> for Error {
    fn from(e: toml::de::Error) -> Error {
        Error::new(format!("Polyglot/TOML Error: {}", e.to_string()))
    }
}

#[cfg(feature = "toml_fmt")]
impl From<toml::ser::Error> for Error {
    fn from(e: toml::ser::Error) -> Error {
        Error::new(format!("Polyglot/TOML Error: {}", e.to_string()))
    }
}

#[cfg(feature = "yaml_fmt")]
impl From<serde_yaml::Error> for Error {
    fn from(e: serde_yaml::Error) -> Error {
        Error::new(format!("Polyglot/YAML Error: {}", e.to_string()))
    }
}

/// Alias of `std::Result<T, Error>`
pub type PolyResult<T> = Result<T, Error>;