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
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
use std::{self, io, fmt::{self, Display}, str::Utf8Error};

use failure::Context;
use serde;

/// Convenient wrapper around `std::Result`.
pub type Result<T> = std::result::Result<T, Error>;

/// The Error type.
#[derive(Debug)]
pub struct Error {
    inner: Context<ErrorKind>,
}

impl Error {
    pub fn kind_ref(&self) -> &ErrorKind {
        self.inner.get_context()
    }
}

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

impl std::error::Error for Error {
    fn description(&self) -> &str {
        match *self.inner.get_context() {
            ErrorKind::Io(ref err) => std::error::Error::description(err),
            _ => {
                // If you want a better message, use Display::fmt or to_string().
                "CDR error"
            }
        }
    }

    fn cause(&self) -> Option<&std::error::Error> {
        match *self.inner.get_context() {
            ErrorKind::Io(ref err) => Some(err),
            _ => None,
        }
    }
}

impl From<Context<ErrorKind>> for Error {
    fn from(inner: Context<ErrorKind>) -> Error {
        Error { inner: inner }
    }
}

impl From<ErrorKind> for Error {
    fn from(kind: ErrorKind) -> Error {
        Error {
            inner: Context::new(kind),
        }
    }
}

impl From<io::Error> for Error {
    fn from(err: io::Error) -> Self {
        ErrorKind::Io(err).into()
    }
}

impl serde::de::Error for Error {
    fn custom<T>(msg: T) -> Self
    where
        T: fmt::Display,
    {
        ErrorKind::Message(msg.to_string()).into()
    }
}

impl serde::ser::Error for Error {
    fn custom<T>(msg: T) -> Self
    where
        T: fmt::Display,
    {
        ErrorKind::Message(msg.to_string()).into()
    }
}

/// The kind of an error.
#[derive(Debug, Fail)]
pub enum ErrorKind {
    #[fail(display = "{}", _0)]
    Message(String),
    #[fail(display = "{}", _0)]
    Io(#[cause] io::Error),
    #[fail(display = "does not support the serde::Deserializer::deserialize_any method")]
    DeserializeAnyNotSupported,
    #[fail(display = "expected 0 or 1, found {}", _0)]
    InvalidBoolEncoding(u8),
    #[fail(display = "expected char of width 1, found {}", _0)]
    InvalidChar(char),
    #[fail(display = "char is not valid UTF-8")]
    InvalidCharEncoding,
    #[fail(display = "encapsulation is not valid")]
    InvalidEncapsulation,
    #[fail(display = "string is not valid")]
    InvalidUtf8Encoding(Utf8Error),
    #[fail(display = "sequence is too long")]
    NumberOutOfRange,
    #[fail(display = "sequences must have a knowable size ahead of time")]
    SequenceMustHaveLength,
    #[fail(display = "the size limit has been reached")]
    SizeLimit,
    #[fail(display = "unsupported type")]
    TypeNotSupported,
}