tc-error 0.13.1

TinyChain's generic error struct
Documentation
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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
//! Provides common error types and associated convenience methods for TinyChain.
//!
//! This crate is a part of TinyChain: [http://github.com/haydnv/tinychain](http://github.com/haydnv/tinychain)

use std::convert::Infallible;
use std::str::FromStr;
use std::{fmt, io};

use destream::{de, en};

/// A result of type `T`, or a [`TCError`]
pub type TCResult<T> = Result<T, TCError>;

#[derive(Clone)]
struct ErrorData {
    message: String,
    stack: Vec<String>,
}

struct DataVisitor;

impl de::Visitor for DataVisitor {
    type Value = ErrorData;

    fn expecting() -> &'static str {
        "an error message and optional stacktrace"
    }

    async fn visit_map<A: de::MapAccess>(self, mut access: A) -> Result<Self::Value, A::Error> {
        let message = if let Some(key) = access.next_key::<String>(()).await? {
            if key == "message" {
                access.next_value(()).await
            } else {
                Err(de::Error::invalid_value(key, "message"))
            }
        } else {
            Err(de::Error::invalid_length(0, Self::expecting()))
        }?;

        let stack = if let Some(key) = access.next_key::<String>(()).await? {
            if key == "stack" {
                access.next_value(()).await
            } else {
                Err(de::Error::invalid_value(key, "stack"))
            }
        } else {
            Ok(Default::default())
        }?;

        Ok(ErrorData { message, stack })
    }

    fn visit_string<E: de::Error>(self, message: String) -> Result<Self::Value, E> {
        Ok(ErrorData {
            message,
            stack: vec![],
        })
    }
}

impl de::FromStream for ErrorData {
    type Context = ();

    async fn from_stream<D: de::Decoder>(_: (), decoder: &mut D) -> Result<Self, D::Error> {
        decoder.decode_any(DataVisitor).await
    }
}

impl<'en> en::IntoStream<'en> for ErrorData {
    fn into_stream<E: en::Encoder<'en>>(self, encoder: E) -> Result<E::Ok, E::Error> {
        if self.stack.is_empty() {
            return en::IntoStream::into_stream(self.message, encoder);
        }

        use en::EncodeMap;

        let mut map = encoder.encode_map(Some(2))?;
        map.encode_entry("message", self.message)?;
        map.encode_entry("stack", self.stack)?;
        map.end()
    }
}

impl<'en> en::ToStream<'en> for ErrorData {
    fn to_stream<E: en::Encoder<'en>>(&'en self, encoder: E) -> Result<E::Ok, E::Error> {
        if self.stack.is_empty() {
            return en::ToStream::to_stream(&self.message, encoder);
        }

        use en::EncodeMap;

        let mut map = encoder.encode_map(Some(2))?;
        map.encode_entry("message", &self.message)?;
        map.end()
    }
}

impl<T> From<T> for ErrorData
where
    T: fmt::Display,
{
    fn from(message: T) -> Self {
        Self {
            message: message.to_string(),
            stack: vec![],
        }
    }
}

/// The category of a `TCError`.
#[derive(Clone, Copy, Eq, PartialEq)]
pub enum ErrorKind {
    BadGateway,
    BadRequest,
    Conflict,
    Forbidden,
    Internal,
    MethodNotAllowed,
    NotFound,
    NotImplemented,
    Timeout,
    Unauthorized,
    Unavailable,
}

impl ErrorKind {
    pub fn is_conflict(&self) -> bool {
        *self == Self::Conflict
    }

    pub fn is_retriable(&self) -> bool {
        [Self::Timeout, Self::Unavailable]
            .into_iter()
            .any(|code| *self == code)
    }
}

impl FromStr for ErrorKind {
    type Err = TCError;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        match s {
            "bad_gateway" => Ok(Self::BadGateway),
            "bad_request" => Ok(Self::BadRequest),
            "conflict" => Ok(Self::Conflict),
            "forbidden" => Ok(Self::Forbidden),
            "internal_error" => Ok(Self::Internal),
            "method_not_allowed" => Ok(Self::MethodNotAllowed),
            "not_found" => Ok(Self::NotFound),
            "not_implemented" => Ok(Self::NotImplemented),
            "request_timeout" => Ok(Self::Timeout),
            "unauthorized" => Ok(Self::Unauthorized),
            "temporarily_unavailable" => Ok(Self::Unavailable),
            other => Err(bad_request!("unrecognized error code: {other}")),
        }
    }
}

impl de::FromStream for ErrorKind {
    type Context = ();

    async fn from_stream<D: de::Decoder>(cxt: (), decoder: &mut D) -> Result<Self, D::Error> {
        let code = String::from_stream(cxt, decoder).await?;
        code.parse()
            .map_err(|_| de::Error::invalid_value(code, "an error code"))
    }
}

impl<'en> en::IntoStream<'en> for ErrorKind {
    fn into_stream<E: en::Encoder<'en>>(self, encoder: E) -> Result<E::Ok, E::Error> {
        self.to_string().into_stream(encoder)
    }
}

impl fmt::Debug for ErrorKind {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.to_string().replace("_", " "))
    }
}

impl fmt::Display for ErrorKind {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.write_str(match self {
            Self::BadGateway => "bad_gateway",
            Self::BadRequest => "bad_request",
            Self::Conflict => "conflict",
            Self::Forbidden => "forbidden",
            Self::Internal => "internal_error",
            Self::MethodNotAllowed => "method_not_allowed",
            Self::NotFound => "not_found",
            Self::NotImplemented => "not_implemented",
            Self::Timeout => "request_timeout",
            Self::Unauthorized => "unauthorized",
            Self::Unavailable => "temporarily_unavailable",
        })
    }
}

/// A general error description.
#[derive(Clone)]
pub struct TCError {
    kind: ErrorKind,
    data: ErrorData,
}

impl TCError {
    /// Returns a new error with the given code and message.
    pub fn new<I: fmt::Display>(code: ErrorKind, message: I) -> Self {
        #[cfg(debug_assertions)]
        match code {
            ErrorKind::Internal | ErrorKind::MethodNotAllowed | ErrorKind::NotImplemented => {
                panic!("{code}: {message}")
            }
            other => log::warn!("{other}: {message}"),
        }

        Self {
            kind: code,
            data: message.into(),
        }
    }

    /// Reconstruct a [`TCError`] from its [`ErrorKind`] and data.
    pub fn with_stack<I, S, SI>(code: ErrorKind, message: I, stack: S) -> Self
    where
        I: fmt::Display,
        SI: fmt::Display,
        S: IntoIterator<Item = SI>,
    {
        let stack = stack.into_iter().map(|msg| msg.to_string()).collect();

        #[cfg(debug_assertions)]
        match code {
            ErrorKind::Internal | ErrorKind::MethodNotAllowed | ErrorKind::NotImplemented => {
                panic!("{code}: {message} (cause: {stack:?})")
            }
            other => log::warn!("{other}: {message} (cause: {stack:?})"),
        }

        Self {
            kind: code,
            data: ErrorData {
                message: message.to_string(),
                stack,
            },
        }
    }

    /// Error to indicate a malformed or nonsensical request
    pub fn bad_request<I: fmt::Display>(info: I) -> Self {
        Self::new(ErrorKind::BadGateway, info)
    }

    /// Error to convey an upstream problem
    pub fn bad_gateway<I: fmt::Display>(locator: I) -> Self {
        Self::new(ErrorKind::BadGateway, locator)
    }

    /// Error to indicate that the requested resource is already locked
    pub fn conflict<I: fmt::Display>(info: I) -> Self {
        #[cfg(debug_assertions)]
        panic!("conflict: {info}");

        #[cfg(not(debug_assertions))]
        Self::new(ErrorKind::Conflict, info)
    }

    /// An internal error which should never occur.
    pub fn internal<I: fmt::Display>(info: I) -> Self {
        #[cfg(debug_assertions)]
        panic!("internal error: {info}");

        #[cfg(not(debug_assertions))]
        Self::new(ErrorKind::Internal, info)
    }

    /// Error to indicate that the requested resource exists but does not support the request method
    pub fn method_not_allowed<M: fmt::Debug, P: fmt::Display>(method: M, path: P) -> Self {
        let message = format!("endpoint {} does not support {:?}", path, method);

        #[cfg(debug_assertions)]
        panic!("{message}");

        #[cfg(not(debug_assertions))]
        Self::new(ErrorKind::MethodNotAllowed, message)
    }

    /// Error to indicate that the requested resource does not exist at the specified location
    pub fn not_found<I: fmt::Display>(locator: I) -> Self {
        Self::new(ErrorKind::NotFound, locator)
    }

    /// Error to indicate that the end-user is not authorized to perform the requested action
    pub fn unauthorized<I: fmt::Display>(info: I) -> Self {
        Self::new(ErrorKind::Unauthorized, info)
    }

    /// Error to indicate an unexpected input value or type
    pub fn unexpected<V: fmt::Debug>(value: V, expected: &str) -> Self {
        Self::bad_request(format!("invalid value {value:?}: expected {expected}"))
    }

    /// Error to indicate that the requested action cannot be performed due to technical limitations
    pub fn unsupported<I: fmt::Display>(info: I) -> Self {
        Self::bad_request(info)
    }

    /// The [`ErrorKind`] of this error
    pub fn code(&self) -> ErrorKind {
        self.kind
    }

    /// The error message of this error
    pub fn message(&self) -> &str {
        &self.data.message
    }

    /// Construct a new error with the given `cause`
    pub fn consume<I: fmt::Debug>(mut self, cause: I) -> Self {
        self.data.stack.push(format!("{:?}", cause));
        self
    }
}

impl std::error::Error for TCError {}

impl From<pathlink::ParseError> for TCError {
    fn from(err: pathlink::ParseError) -> Self {
        Self::bad_request(err)
    }
}

#[cfg(feature = "ha-ndarray")]
impl From<ha_ndarray::Error> for TCError {
    fn from(err: ha_ndarray::Error) -> Self {
        Self::new(ErrorKind::Internal, err)
    }
}

#[cfg(feature = "rjwt")]
impl From<rjwt::Error> for TCError {
    fn from(err: rjwt::Error) -> Self {
        #[cfg(debug_assertions)]
        panic!("rjwt error: {err}");

        #[cfg(not(debug_assertions))]
        match err.into_inner() {
            (rjwt::ErrorKind::Auth | rjwt::ErrorKind::Time, msg) => Self::unauthorized(msg),
            (rjwt::ErrorKind::Base64 | rjwt::ErrorKind::Format | rjwt::ErrorKind::Json, msg) => {
                Self::bad_request(msg)
            }
            (rjwt::ErrorKind::Fetch, msg) => Self::bad_gateway(msg),
        }
    }
}

#[cfg(feature = "txn_lock")]
impl From<txn_lock::Error> for TCError {
    fn from(err: txn_lock::Error) -> Self {
        Self::conflict(err)
    }
}

#[cfg(feature = "txfs")]
impl From<txfs::Error> for TCError {
    fn from(cause: txfs::Error) -> Self {
        match cause {
            txfs::Error::Conflict(cause) => Self::conflict(cause),
            txfs::Error::IO(cause) => Self::from(cause),
            txfs::Error::NotFound(cause) => Self::not_found(cause),
            txfs::Error::Parse(cause) => Self::from(cause),
        }
    }
}

impl From<io::Error> for TCError {
    fn from(cause: io::Error) -> Self {
        match cause.kind() {
            io::ErrorKind::AlreadyExists => {
                #[cfg(debug_assertions)]
                panic!("tried to create an entry that already exists: {}", cause);

                #[cfg(not(debug_assertions))]
                bad_request!("tried to create an entry that already exists").consume(cause)
            }
            io::ErrorKind::InvalidInput => bad_request!("{}", cause),
            io::ErrorKind::NotFound => TCError::not_found(cause),
            io::ErrorKind::PermissionDenied => {
                bad_gateway!("host filesystem permission denied").consume(cause)
            }
            io::ErrorKind::WouldBlock => {
                conflict!("synchronous filesystem access failed").consume(cause)
            }
            kind => internal!("host filesystem error: {:?}", kind).consume(cause),
        }
    }
}

impl From<Infallible> for TCError {
    fn from(_: Infallible) -> Self {
        internal!("an unanticipated error occurred--please file a bug report")
    }
}

struct ErrorVisitor;

impl de::Visitor for ErrorVisitor {
    type Value = TCError;

    fn expecting() -> &'static str {
        "an error code, message, and optional stacktrace"
    }

    async fn visit_map<A: de::MapAccess>(self, mut access: A) -> Result<Self::Value, A::Error> {
        if let Some(kind) = access.next_key(()).await? {
            let data = access.next_value(()).await?;
            Ok(TCError { kind, data })
        } else {
            Err(de::Error::invalid_length(0, Self::expecting()))
        }
    }
}

impl de::FromStream for TCError {
    type Context = ();

    async fn from_stream<D: de::Decoder>(_: (), decoder: &mut D) -> Result<Self, D::Error> {
        decoder.decode_map(ErrorVisitor).await
    }
}

impl<'en> en::IntoStream<'en> for TCError {
    fn into_stream<E: en::Encoder<'en>>(self, encoder: E) -> Result<E::Ok, E::Error> {
        use en::EncodeMap;
        let mut map = encoder.encode_map(Some(1))?;
        map.encode_entry(self.kind, self.data)?;
        map.end()
    }
}

impl<'en> en::ToStream<'en> for TCError {
    fn to_stream<E: en::Encoder<'en>>(&'en self, encoder: E) -> Result<E::Ok, E::Error> {
        use en::EncodeMap;
        let mut map = encoder.encode_map(Some(1))?;
        map.encode_entry(self.kind, &self.data)?;
        map.end()
    }
}

impl fmt::Debug for TCError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        fmt::Display::fmt(self, f)
    }
}

impl fmt::Display for TCError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}: {}", self.kind, self.data.message)
    }
}

/// Error to convey an upstream problem
#[macro_export]
macro_rules! bad_gateway {
    ($($t:tt)*) => {{
        $crate::TCError::new($crate::ErrorKind::BadGateway, format!($($t)*))
    }}
}

/// Error to indicate that the request is badly-constructed or nonsensical
#[macro_export]
macro_rules! bad_request {
    ($($t:tt)*) => {{
        $crate::TCError::bad_request(format!($($t)*))
    }}
}

/// Error to indicate that the request cannot be fulfilled due to a conflict with another request.
#[macro_export]
macro_rules! conflict {
    ($($t:tt)*) => {{
        $crate::TCError::conflict(format!($($t)*))
    }}
}

/// Error to indicate that the requestor's credentials do not authorize the request to be fulfilled
#[macro_export]
macro_rules! forbidden {
    ($($t:tt)*) => {{
        $crate::TCError::new($crate::ErrorKind::Unauthorized, format!($($t)*))
    }}
}

/// Error to indicate that no resource exists at the requested path or key.
#[macro_export]
macro_rules! not_found {
    ($($t:tt)*) => {{
        $crate::TCError::not_found(format!($($t)*))
    }}
}

/// Error to indicate that a required feature is not yet implemented.
#[macro_export]
macro_rules! not_implemented {
    ($($t:tt)*) => {{
        $crate::TCError::new($crate::ErrorKind::NotImplemented, format!($($t)*))
    }}
}

/// Error to indicate that the request failed to complete in the allotted time.
#[macro_export]
macro_rules! timeout {
    ($($t:tt)*) => {{
        $crate::TCError::new($crate::ErrorKind::Timeout, format!($($t)*))
    }}
}

/// A truly unexpected error, for which no handling behavior can be defined
#[macro_export]
macro_rules! internal {
    ($($t:tt)*) => {{
        $crate::TCError::internal(format!($($t)*))
    }}
}

/// Error to indicate that the user's credentials are missing or nonsensical.
#[macro_export]
macro_rules! unauthorized {
    ($($t:tt)*) => {{
        $crate::TCError::unauthorized(format!($($t)*))
    }}
}

/// Error to indicate that this host is currently overloaded
#[macro_export]
macro_rules! unavailable {
    ($($t:tt)*) => {{
        $crate::TCError::new($crate::ErrorKind::Unavailable, format!($($t)*))
    }}
}