summaryrefslogtreecommitdiffstats
path: root/plugins/tedge_apt_plugin/src/error.rs
blob: 07c8399afd2ff50fd75882fad2c54702e7411c83 (plain)
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
#[derive(thiserror::Error, Debug)]
pub enum InternalError {
    #[error("Fail to run `{cmd}`: {from}")]
    ExecError { cmd: String, from: std::io::Error },

    #[error(transparent)]
    FromIo(#[from] std::io::Error),

    #[error(transparent)]
    FromUtf8(#[from] std::string::FromUtf8Error),

    #[error("Parsing Debian package failed for `{file}`")]
    ParsingError { file: String },

    #[error(transparent)]
    FromCsv(#[from] csv::Error),

    #[error("Validation of {package} failed with version mismatch. Installed version: {installed}, Expected version: {expected}")]
    VersionMismatch {
        package: String,
        installed: String,
        expected: String,
    },
}

impl InternalError {
    pub fn exec_error(cmd: impl Into<String>, from: std::io::Error) -> InternalError {
        InternalError::ExecError {
            cmd: cmd.into(),
            from,
        }
    }
}