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
use super::Error;
use failure::Fail;
use std::io;

/// Types of errors which occur internally within the framework
#[derive(Fail, Clone, Debug, Eq, PartialEq)]
pub enum FrameworkErrorKind {
    /// Errors relating to components
    #[cfg(feature = "application")]
    #[fail(display = "component error")]
    ComponentError,

    /// Error reading configuration file
    #[fail(display = "config error")]
    ConfigError,

    /// I/O operation failed
    #[fail(display = "I/O operation failed")]
    IoError,

    /// Couldn't parse the given value
    #[fail(display = "parse error")]
    ParseError,

    /// Errors associated with filesystem paths
    #[fail(display = "path error")]
    PathError,

    /// Errors occurring in subprocess
    #[fail(display = "subprocess error")]
    ProcessError,

    /// Errors involving signals
    #[fail(display = "signal error")]
    SignalError,

    /// Errors involving multithreading
    #[fail(display = "thread error")]
    ThreadError,

    /// Timeout performing operation
    #[fail(display = "operation timed out")]
    TimeoutError,
}

impl From<io::Error> for FrameworkError {
    fn from(err: io::Error) -> Self {
        err!(FrameworkErrorKind::IoError, err)
    }
}

#[cfg(feature = "term")]
impl From<term::Error> for FrameworkError {
    fn from(err: term::Error) -> Self {
        err!(FrameworkErrorKind::IoError, err)
    }
}

#[cfg(feature = "toml")]
impl From<toml::de::Error> for FrameworkError {
    fn from(err: toml::de::Error) -> Self {
        err!(FrameworkErrorKind::ParseError, err)
    }
}

/// Abscissa-internal framework errors
pub type FrameworkError = Error<FrameworkErrorKind>;