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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
use conjure_object::Any;
use serde::Serialize;
use std::borrow::Cow;
use std::collections::hash_map::{self, HashMap};
use std::fmt;
use std::ops::Index;
use std::time::Duration;
use std::{backtrace, error};
use crate::{ErrorType, Internal, SerializableError};
#[derive(Debug)]
pub struct ThrottleError {
duration: Option<Duration>,
}
impl ThrottleError {
#[inline]
pub fn duration(&self) -> Option<Duration> {
self.duration
}
}
#[derive(Debug)]
pub struct UnavailableError(());
#[derive(Debug)]
#[non_exhaustive]
pub enum ErrorKind {
Service(SerializableError),
Throttle(ThrottleError),
Unavailable(UnavailableError),
}
#[derive(Debug)]
struct Inner {
cause: Box<dyn error::Error + Sync + Send>,
cause_safe: bool,
kind: ErrorKind,
safe_params: HashMap<Cow<'static, str>, Any>,
unsafe_params: HashMap<Cow<'static, str>, Any>,
backtraces: Vec<Backtrace>,
}
#[derive(Debug)]
pub struct Error(Box<Inner>);
impl Error {
pub fn service<E, T>(cause: E, error_type: T) -> Error
where
E: Into<Box<dyn error::Error + Sync + Send>>,
T: ErrorType + Serialize,
{
Error::service_inner(
cause.into(),
false,
crate::encode(&error_type),
error_type.safe_args(),
)
}
pub fn service_safe<E, T>(cause: E, error_type: T) -> Error
where
E: Into<Box<dyn error::Error + Sync + Send>>,
T: ErrorType + Serialize,
{
Error::service_inner(
cause.into(),
true,
crate::encode(&error_type),
error_type.safe_args(),
)
}
pub fn propagated_service<E>(cause: E, error: SerializableError) -> Error
where
E: Into<Box<dyn error::Error + Sync + Send>>,
{
Error::service_inner(cause.into(), false, error, &[])
}
pub fn propagated_service_safe<E>(cause: E, error: SerializableError) -> Error
where
E: Into<Box<dyn error::Error + Sync + Send>>,
{
Error::service_inner(cause.into(), true, error, &[])
}
fn service_inner(
cause: Box<dyn error::Error + Sync + Send>,
cause_safe: bool,
error: SerializableError,
safe_args: &[&str],
) -> Error {
let mut safe_params = HashMap::new();
let mut unsafe_params = HashMap::new();
for (key, value) in error.parameters() {
let key = Cow::Owned(key.clone());
let value = Any::new(value).unwrap();
if safe_args.contains(&&*key) {
safe_params.insert(key, value);
} else {
unsafe_params.insert(key, value);
}
}
let mut error = Error::new(cause, cause_safe, ErrorKind::Service(error));
error.0.safe_params = safe_params;
error.0.unsafe_params = unsafe_params;
error
}
pub fn throttle<E>(cause: E) -> Error
where
E: Into<Box<dyn error::Error + Sync + Send>>,
{
Error::new(
cause.into(),
false,
ErrorKind::Throttle(ThrottleError { duration: None }),
)
}
pub fn throttle_safe<E>(cause: E) -> Error
where
E: Into<Box<dyn error::Error + Sync + Send>>,
{
Error::new(
cause.into(),
true,
ErrorKind::Throttle(ThrottleError { duration: None }),
)
}
pub fn throttle_for<E>(cause: E, duration: Duration) -> Error
where
E: Into<Box<dyn error::Error + Sync + Send>>,
{
Error::new(
cause.into(),
false,
ErrorKind::Throttle(ThrottleError {
duration: Some(duration),
}),
)
}
pub fn throttle_for_safe<E>(cause: E, duration: Duration) -> Error
where
E: Into<Box<dyn error::Error + Sync + Send>>,
{
Error::new(
cause.into(),
true,
ErrorKind::Throttle(ThrottleError {
duration: Some(duration),
}),
)
}
pub fn unavailable<E>(cause: E) -> Error
where
E: Into<Box<dyn error::Error + Sync + Send>>,
{
Error::new(
cause.into(),
false,
ErrorKind::Unavailable(UnavailableError(())),
)
}
pub fn unavailable_safe<E>(cause: E) -> Error
where
E: Into<Box<dyn error::Error + Sync + Send>>,
{
Error::new(
cause.into(),
true,
ErrorKind::Unavailable(UnavailableError(())),
)
}
pub fn internal<E>(cause: E) -> Error
where
E: Into<Box<dyn error::Error + Sync + Send>>,
{
Error::service(cause, Internal::new())
}
pub fn internal_safe<E>(cause: E) -> Error
where
E: Into<Box<dyn error::Error + Sync + Send>>,
{
Error::service_safe(cause, Internal::new())
}
fn new(cause: Box<dyn error::Error + Sync + Send>, cause_safe: bool, kind: ErrorKind) -> Error {
let inner = Inner {
cause,
cause_safe,
kind,
safe_params: HashMap::new(),
unsafe_params: HashMap::new(),
backtraces: vec![],
};
Error(Box::new(inner)).with_backtrace()
}
#[inline]
pub fn cause(&self) -> &(dyn error::Error + 'static + Sync + Send) {
&*self.0.cause
}
#[inline]
pub fn cause_safe(&self) -> bool {
self.0.cause_safe
}
#[inline]
pub fn kind(&self) -> &ErrorKind {
&self.0.kind
}
pub fn with_safe_param<T>(mut self, key: &'static str, value: T) -> Error
where
T: Serialize,
{
let value = Any::new(value).expect("value failed to serialize");
self.0.safe_params.insert(Cow::Borrowed(key), value);
self
}
pub fn with_unsafe_param<T>(mut self, key: &'static str, value: T) -> Error
where
T: Serialize,
{
let value = Any::new(value).expect("value failed to serialize");
self.0.unsafe_params.insert(Cow::Borrowed(key), value);
self
}
#[inline]
pub fn safe_params(&self) -> Params<'_> {
Params(&self.0.safe_params)
}
#[inline]
pub fn unsafe_params(&self) -> Params<'_> {
Params(&self.0.unsafe_params)
}
#[inline]
pub fn with_backtrace(mut self) -> Error {
self.0.backtraces.push(Backtrace::new());
self
}
#[inline]
pub fn backtraces(&self) -> &[Backtrace] {
&self.0.backtraces
}
}
#[derive(Debug)]
pub struct Params<'a>(&'a HashMap<Cow<'static, str>, Any>);
impl<'a> Params<'a> {
#[inline]
pub fn iter(&self) -> ParamsIter<'a> {
ParamsIter(self.0.iter())
}
#[inline]
pub fn len(&self) -> usize {
self.0.len()
}
#[inline]
pub fn is_empty(&self) -> bool {
self.0.is_empty()
}
}
impl<'a> Index<&str> for Params<'a> {
type Output = Any;
#[inline]
fn index(&self, key: &str) -> &Any {
&self.0[key]
}
}
impl<'a> IntoIterator for &Params<'a> {
type Item = (&'a str, &'a Any);
type IntoIter = ParamsIter<'a>;
#[inline]
fn into_iter(self) -> ParamsIter<'a> {
self.iter()
}
}
pub struct ParamsIter<'a>(hash_map::Iter<'a, Cow<'static, str>, Any>);
impl<'a> Iterator for ParamsIter<'a> {
type Item = (&'a str, &'a Any);
#[inline]
fn next(&mut self) -> Option<(&'a str, &'a Any)> {
self.0.next().map(|(a, b)| (&**a, b))
}
#[inline]
fn size_hint(&self) -> (usize, Option<usize>) {
self.0.size_hint()
}
}
pub struct Backtrace(backtrace::Backtrace);
impl fmt::Debug for Backtrace {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt::Display::fmt(&self.0, fmt)
}
}
impl Backtrace {
#[inline]
fn new() -> Backtrace {
Backtrace(backtrace::Backtrace::force_capture())
}
}