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
//! Errors handling
//!
use std::error::Error as StdError;
use std::fmt;
use std::io;
use std::result;

pub type Result<T> = result::Result<T, Error>;

/// Battery routines error.
///
/// Since all operations are basically I/O of some kind,
/// this is a thin wrapper around `::std::io::Error` with option
/// to store custom description for debugging purposes.
#[derive(Debug)]
pub struct Error {
    source: io::Error,
    description: Option<&'static str>,
}

impl Error {
    pub fn not_found(description: &'static str) -> Error {
        Error {
            source: io::Error::from(io::ErrorKind::NotFound),
            description: Some(description),
        }
    }

    pub fn invalid_data(description: &'static str) -> Error {
        Error {
            source: io::Error::from(io::ErrorKind::InvalidData),
            description: Some(description),
        }
    }
}

impl StdError for Error {
    fn source(&self) -> Option<&(dyn StdError + 'static)> {
        Some(&self.source)
    }
}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self.description {
            Some(desc) => write!(f, "{}", desc),
            None => self.source.fmt(f),
        }
    }
}

impl From<io::Error> for Error {
    fn from(e: io::Error) -> Self {
        Error {
            source: e,
            description: None,
        }
    }
}

#[cfg(any(target_os = "dragonfly", target_os = "freebsd"))]
mod nix_impl {
    use std::io;

    use super::Error;

    impl From<nix::Error> for Error {
        fn from(e: nix::Error) -> Self {
            match e {
                nix::Error::Sys(errno) => Error {
                    source: io::Error::from_raw_os_error(errno as i32),
                    description: Some(errno.desc()),
                },
                nix::Error::InvalidPath => Error {
                    source: io::Error::new(io::ErrorKind::InvalidInput, e),
                    description: Some("Invalid path"),
                },
                nix::Error::InvalidUtf8 => Error {
                    source: io::Error::new(io::ErrorKind::InvalidData, e),
                    description: Some("Invalid UTF-8 string"),
                },
                nix::Error::UnsupportedOperation => Error {
                    source: io::Error::new(io::ErrorKind::Other, e),
                    description: Some("Unsupported operation"),
                },
            }
        }
    }
}