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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
use crate::Credentials;
use std::sync::Arc;
pub mod error {
use std::error::Error;
use std::fmt;
use std::time::Duration;
#[derive(Debug)]
pub struct CredentialsNotLoaded {
source: Box<dyn Error + Send + Sync + 'static>,
}
#[derive(Debug)]
pub struct ProviderTimedOut {
timeout_duration: Duration,
}
impl ProviderTimedOut {
pub fn timeout_duration(&self) -> Duration {
self.timeout_duration
}
}
#[derive(Debug)]
pub struct InvalidConfiguration {
source: Box<dyn Error + Send + Sync + 'static>,
}
#[derive(Debug)]
pub struct ProviderError {
source: Box<dyn Error + Send + Sync + 'static>,
}
#[derive(Debug)]
pub struct Unhandled {
source: Box<dyn Error + Send + Sync + 'static>,
}
#[derive(Debug)]
#[non_exhaustive]
pub enum CredentialsError {
CredentialsNotLoaded(CredentialsNotLoaded),
ProviderTimedOut(ProviderTimedOut),
InvalidConfiguration(InvalidConfiguration),
ProviderError(ProviderError),
Unhandled(Unhandled),
}
impl CredentialsError {
pub fn not_loaded(source: impl Into<Box<dyn Error + Send + Sync + 'static>>) -> Self {
CredentialsError::CredentialsNotLoaded(CredentialsNotLoaded {
source: source.into(),
})
}
pub fn unhandled(source: impl Into<Box<dyn Error + Send + Sync + 'static>>) -> Self {
Self::Unhandled(Unhandled {
source: source.into(),
})
}
pub fn provider_error(source: impl Into<Box<dyn Error + Send + Sync + 'static>>) -> Self {
Self::ProviderError(ProviderError {
source: source.into(),
})
}
pub fn invalid_configuration(
source: impl Into<Box<dyn Error + Send + Sync + 'static>>,
) -> Self {
Self::InvalidConfiguration(InvalidConfiguration {
source: source.into(),
})
}
pub fn provider_timed_out(timeout_duration: Duration) -> Self {
Self::ProviderTimedOut(ProviderTimedOut { timeout_duration })
}
}
impl fmt::Display for CredentialsError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
CredentialsError::CredentialsNotLoaded(_) => {
write!(f, "the credential provider was not enabled")
}
CredentialsError::ProviderTimedOut(details) => write!(
f,
"credentials provider timed out after {} seconds",
details.timeout_duration.as_secs()
),
CredentialsError::InvalidConfiguration(_) => {
write!(f, "the credentials provider was not properly configured")
}
CredentialsError::ProviderError(_) => {
write!(f, "an error occurred while loading credentials")
}
CredentialsError::Unhandled(_) => {
write!(f, "unexpected credentials error")
}
}
}
}
impl Error for CredentialsError {
fn source(&self) -> Option<&(dyn Error + 'static)> {
match self {
CredentialsError::CredentialsNotLoaded(details) => {
Some(details.source.as_ref() as _)
}
CredentialsError::ProviderTimedOut(_) => None,
CredentialsError::InvalidConfiguration(details) => {
Some(details.source.as_ref() as _)
}
CredentialsError::ProviderError(details) => Some(details.source.as_ref() as _),
CredentialsError::Unhandled(details) => Some(details.source.as_ref() as _),
}
}
}
}
pub type Result = std::result::Result<Credentials, error::CredentialsError>;
pub mod future {
use aws_smithy_async::future::now_or_later::NowOrLater;
use std::future::Future;
use std::pin::Pin;
use std::task::{Context, Poll};
type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;
#[derive(Debug)]
pub struct ProvideCredentials<'a>(NowOrLater<super::Result, BoxFuture<'a, super::Result>>);
impl<'a> ProvideCredentials<'a> {
pub fn new(future: impl Future<Output = super::Result> + Send + 'a) -> Self {
ProvideCredentials(NowOrLater::new(Box::pin(future)))
}
pub fn ready(credentials: super::Result) -> Self {
ProvideCredentials(NowOrLater::ready(credentials))
}
}
impl Future for ProvideCredentials<'_> {
type Output = super::Result;
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
Pin::new(&mut self.0).poll(cx)
}
}
}
pub trait ProvideCredentials: Send + Sync + std::fmt::Debug {
fn provide_credentials<'a>(&'a self) -> future::ProvideCredentials<'a>
where
Self: 'a;
}
impl ProvideCredentials for Credentials {
fn provide_credentials<'a>(&'a self) -> future::ProvideCredentials<'a>
where
Self: 'a,
{
future::ProvideCredentials::ready(Ok(self.clone()))
}
}
impl ProvideCredentials for Arc<dyn ProvideCredentials> {
fn provide_credentials<'a>(&'a self) -> future::ProvideCredentials<'a>
where
Self: 'a,
{
self.as_ref().provide_credentials()
}
}
#[derive(Clone, Debug)]
pub struct SharedCredentialsProvider(Arc<dyn ProvideCredentials>);
impl SharedCredentialsProvider {
pub fn new(provider: impl ProvideCredentials + 'static) -> Self {
Self(Arc::new(provider))
}
}
impl AsRef<dyn ProvideCredentials> for SharedCredentialsProvider {
fn as_ref(&self) -> &(dyn ProvideCredentials + 'static) {
self.0.as_ref()
}
}
impl From<Arc<dyn ProvideCredentials>> for SharedCredentialsProvider {
fn from(provider: Arc<dyn ProvideCredentials>) -> Self {
SharedCredentialsProvider(provider)
}
}
impl ProvideCredentials for SharedCredentialsProvider {
fn provide_credentials<'a>(&'a self) -> future::ProvideCredentials<'a>
where
Self: 'a,
{
self.0.provide_credentials()
}
}