summaryrefslogtreecommitdiff
path: root/src/errors.rs
blob: 97ed8d82034cccf8093a4c8015de090fc36d9ff5 (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
48
49
50
51
52
53
54
55
56
57
58
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 {1:?} in {0}: {2}")]
    GitInvoke(PathBuf, Vec<String>, #[source] std::io::Error),

    #[error("git {1:?} failed in {0}: {2}")]
    Git(PathBuf, Vec<String>, String),

    #[error("Failed to run dch in {0}: {1}")]
    DchInvoke(PathBuf, #[source] std::io::Error),

    #[error("dch failed in {0}: {1}")]
    Dch(PathBuf, String),

    #[error("Failed to run cargo in {0}: {1}")]
    CargoInvoke(PathBuf, #[source] std::io::Error),

    #[error("cargo failed in {0}: {1}")]
    Cargo(PathBuf, String),

    #[error("can't find any version.py files in Python project at {0}")]
    NoVersionPy(PathBuf),

    #[error("couldn't write Python version to {0}: {1}")]
    PythonWrite(PathBuf, std::io::Error),
}