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
use ndarray;
use trackable::error::{
    ErrorKind as TrackableErrorKind, ErrorKindExt, Failed, Failure, TrackableError,
};

/// This crate specific `Error` type.
#[derive(Debug, Clone, TrackableError)]
pub struct Error(TrackableError<ErrorKind>);
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<std::string::FromUtf8Error> for Error {
    fn from(f: std::string::FromUtf8Error) -> Self {
        ErrorKind::InvalidFile.cause(f).into()
    }
}
impl From<ndarray::ShapeError> for Error {
    fn from(f: ndarray::ShapeError) -> Self {
        ErrorKind::InvalidInput.cause(f).into()
    }
}
impl From<Error> for Failure {
    fn from(f: Error) -> Self {
        Failed.takes_over(f).into()
    }
}

/// Possible error kinds.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum ErrorKind {
    /// Input is invalid.
    InvalidInput,

    /// Wrong HDF5 file.
    InvalidFile,

    /// Unsupported feature.
    Unsupported,

    /// I/O error.
    IoError,

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