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
use parsec_interface::requests::ResponseStatus;
use std::error;
use std::fmt;
#[derive(Debug)]
pub enum Error {
Service(ResponseStatus),
Client(ClientErrorKind),
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
Error::Service(response_status) => response_status.fmt(f),
Error::Client(client_error_kind) => client_error_kind.fmt(f),
}
}
}
impl error::Error for Error {}
#[derive(Debug)]
pub enum ClientErrorKind {
Interface(ResponseStatus),
Ipc(::std::io::Error),
InvalidServiceResponseType,
InvalidProvider,
NoProvider,
NoAuthenticator,
MissingParam,
NotFound,
InvalidSocketAddress,
InvalidSocketUrl,
#[cfg(feature = "spiffe-auth")]
Spiffe(spiffe::workload_api::client::ClientError),
}
impl From<ClientErrorKind> for Error {
fn from(client_error: ClientErrorKind) -> Self {
Error::Client(client_error)
}
}
impl From<url::ParseError> for Error {
fn from(_: url::ParseError) -> Self {
Error::Client(ClientErrorKind::InvalidSocketUrl)
}
}
impl fmt::Display for ClientErrorKind {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
ClientErrorKind::Interface(response_status) => response_status.fmt(f),
ClientErrorKind::Ipc(error) => error.fmt(f),
ClientErrorKind::InvalidServiceResponseType => write!(
f,
"the opcode of the response does not match the opcode of the request"
),
ClientErrorKind::InvalidProvider => {
write!(f, "operation not supported by selected provider")
}
ClientErrorKind::NoProvider => write!(f, "client is missing an implicit provider"),
ClientErrorKind::NoAuthenticator => write!(f, "service is not reporting any authenticators or none of the reported ones are supported by the client"),
ClientErrorKind::MissingParam => write!(f, "one of the `Option` parameters was required but was not provided"),
ClientErrorKind::NotFound => write!(f, "one of the resources required in the operation was not found"),
ClientErrorKind::InvalidSocketAddress => write!(f, "the socket address provided in the URL is not valid"),
ClientErrorKind::InvalidSocketUrl => write!(f, "the socket URL is invalid"),
#[cfg(feature = "spiffe-auth")]
ClientErrorKind::Spiffe(error) => error.fmt(f),
}
}
}
pub type Result<T> = ::std::result::Result<T, Error>;