summaryrefslogtreecommitdiff
path: root/src/error.rs
blob: 9c9b432e20a5f2f3ff8af772c502861b93ec816d (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
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
90
91
92
93
94
//! Errors from Obnam client.

use crate::backup_run::BackupError;
use crate::chunk::ClientTrustError;
use crate::cipher::CipherError;
use crate::client::ClientError;
use crate::cmd::restore::RestoreError;
use crate::config::ClientConfigError;
use crate::db::DatabaseError;
use crate::dbgen::GenerationDbError;
use crate::generation::{LocalGenerationError, NascentError};
use crate::genlist::GenerationListError;
use crate::passwords::PasswordError;
use std::path::PathBuf;
use std::time::SystemTimeError;
use tempfile::PersistError;

/// Define all the kinds of errors that functions corresponding to
/// subcommands of the main program can return.
///
/// This collects all kinds of errors the Obnam client may get, for
/// convenience.
#[derive(Debug, thiserror::Error)]
pub enum ObnamError {
    /// Error listing generations on server.
    #[error(transparent)]
    GenerationListError(#[from] GenerationListError),

    /// Error about client trust chunks.
    #[error(transparent)]
    ClientTrust(#[from] ClientTrustError),

    /// Error saving passwords.
    #[error("couldn't save passwords to {0}: {1}")]
    PasswordSave(PathBuf, PasswordError),

    /// Error using server HTTP API.
    #[error(transparent)]
    ClientError(#[from] ClientError),

    /// Error in client configuration.
    #[error(transparent)]
    ClientConfigError(#[from] ClientConfigError),

    /// Error making a backup.
    #[error(transparent)]
    BackupError(#[from] BackupError),

    /// Error making a new backup generation.
    #[error(transparent)]
    NascentError(#[from] NascentError),

    /// Error encrypting or decrypting.
    #[error(transparent)]
    CipherError(#[from] CipherError),

    /// Error using local copy of existing backup generation.
    #[error(transparent)]
    LocalGenerationError(#[from] LocalGenerationError),

    /// Error from generation database.
    #[error(transparent)]
    GenerationDb(#[from] GenerationDbError),

    /// Error using a Database.
    #[error(transparent)]
    Database(#[from] DatabaseError),

    /// Error restoring a backup.
    #[error(transparent)]
    RestoreError(#[from] RestoreError),

    /// Error making temporary file persistent.
    #[error(transparent)]
    PersistError(#[from] PersistError),

    /// Error doing I/O.
    #[error(transparent)]
    IoError(#[from] std::io::Error),

    /// Error reading system clock.
    #[error(transparent)]
    SystemTimeError(#[from] SystemTimeError),

    /// Error regarding JSON.
    #[error(transparent)]
    SerdeJsonError(#[from] serde_json::Error),

    /// Unexpected cache directories found.
    #[error(
        "found CACHEDIR.TAG files that aren't present in the previous backup, might be an attack"
    )]
    NewCachedirTagsFound,
}