summaryrefslogtreecommitdiff
path: root/src/errors.rs
blob: c7febe392834f71b8790e95df69f5e69bb609e2a (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
use std::path::PathBuf;

#[derive(Debug, thiserror::Error)]
pub enum BumperError {
    #[error("Can't figure out what kind of project: {0}")]
    UnknownProjectKind(PathBuf),

    #[error("Couldn't read file {0}: {1}")]
    Read(PathBuf, #[source] std::io::Error),

    #[error("Couldn't write file {0}: {1}")]
    Write(PathBuf, #[source] std::io::Error),

    #[error("Couldn't find Cargo.toml in {0}: {1}")]
    CargoTomlNotFound(PathBuf, #[source] cargo_edit::Error),

    #[error("Couldn't parse Cargo.toml from {0}: {1}")]
    FromToml(PathBuf, #[source] cargo_edit::Error),

    #[error("Couldn't create Cargo.toml manifest to {0}: {1}")]
    WriteToml(PathBuf, #[source] cargo_edit::Error),

    #[error("Cargo.toml doesn't have a 'package' table")]
    NoPackage(#[source] cargo_edit::Error),

    #[error("'project' in Cargo.toml is not a table")]
    ProjectNotTable,

    #[error("Cargo.toml doesn't specify a package name")]
    UnnamedProject,

    #[error("Couldn't turn {0} into an absolute path: {1}")]
    AbsPath(PathBuf, #[source] std::io::Error),

    #[error("Failed to run git: {0}")]
    GitInvoke(#[source] std::io::Error),

    #[error("Command 'git tag' failed: {0}")]
    GitTag(String),
}

impl BumperError {
    pub fn git_tag(stderr: &[u8]) -> Self {
        let stderr = String::from_utf8_lossy(stderr).into_owned();
        Self::GitTag(stderr)
    }
}