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
#[cfg(feature = "interactive")]
use std::path::PathBuf;

#[derive(thiserror::Error, Debug)]
pub enum Error {
    #[error("Invalid URL format")]
    UrlParseError,

    #[error("Error whiling requesting API ({0})")]
    RequestError(#[from] ureq::Error),

    #[error("Broken response from server")]
    BadResponseEncoding,

    #[error("Broken response from server: {0}")]
    BadResponseFormat(#[from] serde_json::Error),

    #[error("Failed response from server (Code {0})")]
    FailedResponse(u16),

    #[cfg(feature = "interactive")]
    #[error("Cannot find server")]
    ServerNotFound,

    #[cfg(feature = "interactive")]
    #[error("{0} is not a file")]
    ConfigFileTypeError(PathBuf),

    #[cfg(feature = "interactive")]
    #[error("Config file cannot be found")]
    ConfigFileOpenError,

    #[cfg(feature = "interactive")]
    #[error("Config file IO error ({0})")]
    ConfigFileIoError(std::io::Error),

    #[cfg(feature = "interactive")]
    #[error("Config file cannot be parsed")]
    ConfigFileFormatError(#[from] ron::Error),

    #[cfg(feature = "cli")]
    #[error("Bad option")]
    BadOption,

    #[cfg(feature = "cli")]
    #[error("Requestty error")]
    RequesttyError(#[from] requestty::ErrorKind),

    #[cfg(feature = "ui")]
    #[error("TUI error")]
    TuiError(#[from] std::io::Error),

    #[cfg(feature = "ui")]
    #[error("TUI backend error")]
    TuiBackendErr,

    #[cfg(feature = "ui")]
    #[error("TUI interuptted error")]
    TuiInterupttedErr,

    #[cfg(feature = "ui")]
    #[error("TUI internal error")]
    TuiInternalErr,

    #[cfg(feature = "ui")]
    #[error("Set logger error ({0})")]
    SetLoggerError(#[from] log::SetLoggerError),

    #[error("Other errors ({0})")]
    Other(String),
}

#[cfg(feature = "ui")]
impl<T> From<std::sync::mpsc::SendError<T>> for Error {
    fn from(_: std::sync::mpsc::SendError<T>) -> Self {
        Self::TuiBackendErr
    }
}

pub type Result<T> = std::result::Result<T, Error>;