uni_error 0.11.3

A simple, universal error type for Rust
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
541
542
543
544
545
use alloc::{borrow::Cow, boxed::Box, string::String};
use core::{
    any::type_name,
    error::Error,
    fmt::{Debug, Display},
    ops::Deref,
};
#[cfg(all(feature = "backtrace", feature = "std"))]
use std::backtrace::Backtrace;

use crate::cause::{Cause, CauseInner, Chain};
use crate::inner::UniErrorInner;
use crate::kind::{UniKind, UniKindCode, UniKindCodes};

// *** UniError ***

/// A custom error type that can be used to return an error with a custom error kind.
#[derive(Debug)]
pub struct UniError<K: ?Sized> {
    inner: UniErrorInner<K>,
}

impl<K> UniError<K> {
    pub(crate) fn new(
        kind: K,
        context: Option<Cow<'static, str>>,
        cause: Option<CauseInner>,
    ) -> Self {
        Self {
            inner: UniErrorInner::new(kind, context, cause),
        }
    }

    /// Creates a new [`UniError`] with the provided kind and the boxed error as the cause.
    pub fn from_kind_boxed(kind: K, error: Box<dyn Error + Send + Sync>) -> Self {
        Self::new(kind, None, Some(CauseInner::from_boxed_error(error)))
    }

    /// Creates a new [`UniError`] with the provided kind, the provided context and the boxed error as the cause.
    pub fn from_kind_context_boxed(
        kind: K,
        context: impl Into<Cow<'static, str>>,
        error: Box<dyn Error + Send + Sync>,
    ) -> Self {
        Self::new(
            kind,
            Some(context.into()),
            Some(CauseInner::from_boxed_error(error)),
        )
    }

    /// Creates a new [`UniError`] with the provided kind and no context or cause.
    pub fn from_kind(kind: K) -> Self {
        Self::new(kind, None, None)
    }

    /// Creates a new [`UniError`] with the provided kind, the provided context, and no cause.
    pub fn from_kind_context(kind: K, context: impl Into<Cow<'static, str>>) -> Self {
        Self::new(kind, Some(context.into()), None)
    }

    /// Returns the concrete type name of the error.
    pub fn type_name(&self) -> &'static str {
        type_name::<Self>()
    }
}

impl<K: Default> UniError<K> {
    /// Creates a new [`UniError`] with a default kind, the provided context, and no cause.
    pub fn from_kind_default_context(context: impl Into<Cow<'static, str>>) -> Self {
        Self::new(Default::default(), Some(context.into()), None)
    }

    /// Creates a new [`UniError`] with a default kind and the boxed error as the cause.
    pub fn from_boxed(error: Box<dyn Error + Send + Sync>) -> Self {
        Self::new(
            Default::default(),
            None,
            Some(CauseInner::from_boxed_error(error)),
        )
    }

    /// Creates a new [`UniError`] with a default kind, the provided context and the boxed error as the cause.
    pub fn from_context_boxed(
        context: impl Into<Cow<'static, str>>,
        error: Box<dyn Error + Send + Sync>,
    ) -> Self {
        Self::new(
            Default::default(),
            Some(context.into()),
            Some(CauseInner::from_boxed_error(error)),
        )
    }
}

impl<K: ?Sized + 'static> UniError<K> {
    /// Returns a reference to the backtrace
    #[cfg(all(feature = "backtrace", feature = "std"))]
    pub fn backtrace(&self) -> &Backtrace {
        &self.inner.backtrace()
    }

    /// Returns a reference to the custom kind.
    pub fn kind_ref(&self) -> &K {
        self.inner.kind_ref()
    }

    /// Returns true if the error is a [`SimpleError`].
    pub fn is_simple(&self) -> bool {
        self.inner.is_simple()
    }

    /// Returns a reference to the first entry in the cause chain.
    pub fn prev_cause<'e>(&'e self) -> Option<Cause<'e>> {
        self.inner.prev_cause()
    }

    /// Returns an iterator over the cause chain.
    pub fn chain(&self) -> Chain<'_> {
        Chain::new(self.prev_cause())
    }

    // TODO: Remove Option and make 'self' a possible candidate?
    /// Returns the root cause of this error. If `None` is returned then this error is the root cause.
    pub fn root_cause(&self) -> Option<Cause<'_>> {
        let mut chain = self.chain();
        let mut root = chain.next();

        for next in chain {
            root = Some(next);
        }
        root
    }

    /// Adds the provided context to the existing error.
    pub fn add_context(self, context: impl Into<Cow<'static, str>>) -> Self {
        UniError {
            inner: self.inner.add_context(context),
        }
    }
}

impl<K: Clone> UniError<K> {
    /// Returns a clone of the custom kind.
    pub fn kind_clone(&self) -> K {
        self.inner.kind_clone()
    }

    /// Maps the error to a new error with possibly a different kind.
    pub fn kind_map<F, K2>(self, f: F) -> UniError<K2>
    where
        F: FnOnce(Self, K) -> UniError<K2>,
    {
        let kind = self.kind_clone();
        f(self, kind)
    }
}

impl<K: UniKind> UniError<K> {
    /// Erases the custom kind and returns a [`UniError`] with a `dyn UniKind` trait object.
    pub fn into_dyn_kind(self) -> UniError<dyn UniKind> {
        UniError {
            inner: self.inner.into_dyn_kind(),
        }
    }

    /// Wraps the existing error with the provided kind.
    pub fn kind<K2>(self, kind: K2) -> UniError<K2> {
        UniError::new(kind, None, Some(CauseInner::from_uni_error(self)))
    }

    /// Wraps the existing error with the provided context and a default kind.
    pub fn kind_default_context<K2>(self, context: impl Into<Cow<'static, str>>) -> UniError<K2>
    where
        K2: Default,
    {
        UniError::new(
            Default::default(),
            Some(context.into()),
            Some(CauseInner::from_uni_error(self)),
        )
    }

    /// Wraps the existing error with the provided kind and context.
    pub fn kind_context<K2>(self, kind: K2, context: impl Into<Cow<'static, str>>) -> UniError<K2> {
        UniError::new(
            kind,
            Some(context.into()),
            Some(CauseInner::from_uni_error(self)),
        )
    }

    /// Wraps the existing error with no additional context and a default kind.
    pub fn kind_default<K2>(self) -> UniError<K2>
    where
        K2: Default,
    {
        UniError::new(
            Default::default(),
            None,
            Some(CauseInner::from_uni_error(self)),
        )
    }

    /// Wraps the existing error with an autoconverted kind and no additional context.
    pub fn kind_into<K2>(self) -> UniError<K2>
    where
        K: Clone + Into<K2>,
    {
        UniError::new(
            self.kind_clone().into(),
            None,
            Some(CauseInner::from_uni_error(self)),
        )
    }

    /// Wraps the existing error with an autoconverted kind and the provided context.
    pub fn kind_into_context<K2>(self, context: impl Into<Cow<'static, str>>) -> UniError<K2>
    where
        K: Clone + Into<K2>,
    {
        UniError::new(
            self.kind_clone().into(),
            Some(context.into()),
            Some(CauseInner::from_uni_error(self)),
        )
    }
}

impl<K: UniKind + ?Sized> UniError<K> {
    /// Returns the code (typically for FFI) for this specific kind
    pub fn kind_code(&self) -> i32 {
        self.kind_ref().code(self.prev_cause())
    }

    /// Returns a 2nd code (typically for FFI) for this specific kind.
    pub fn kind_code2(&self) -> i32 {
        self.kind_ref().code2(self.prev_cause())
    }

    /// The string value of the kind, if any. This is useful for programmatic evaluation
    /// when the type is boxed in the error chain and the type is not known
    pub fn kind_value(&self) -> Cow<'static, str> {
        self.kind_ref().value(self.prev_cause())
    }

    /// Returns additional context for this specific kind, if any
    pub fn kind_context_str(&self) -> Option<Cow<'static, str>> {
        self.kind_ref().context(self.prev_cause())
    }
}

impl<K: UniKindCode> UniError<K> {
    /// Erases the custom kind and returns a [`UniError`] with a `dyn UniKindCode` trait object.
    pub fn into_dyn_kind_code(self) -> UniError<dyn UniKindCode<Code = K::Code>> {
        UniError {
            inner: self.inner.into_dyn_kind_code(),
        }
    }
}

impl<K: UniKindCode + ?Sized> UniError<K> {
    /// Returns the code (typically for FFI) for this specific kind.
    pub fn typed_code(&self) -> K::Code {
        self.kind_ref().typed_code(self.prev_cause())
    }
}

impl<K: UniKindCodes> UniError<K> {
    /// Erases the custom kind and returns a [`UniError`] with a `dyn UniKindCodes` trait object.
    pub fn into_dyn_kind_codes(
        self,
    ) -> UniError<dyn UniKindCodes<Code = K::Code, Code2 = K::Code2>> {
        UniError {
            inner: self.inner.into_dyn_kind_codes(),
        }
    }
}

impl<K: UniKindCodes + ?Sized> UniError<K> {
    /// Returns a 2nd code (typically for FFI) for this specific kind.
    pub fn typed_code2(&self) -> K::Code2 {
        self.kind_ref().typed_code2(self.prev_cause())
    }
}

impl UniError<dyn UniKind> {
    /// Returns a reference to the custom kind.
    pub fn kind_dyn_ref(&self) -> &dyn UniKind {
        self.kind_ref()
    }

    /// Converts the [`UniError`] to a [`UniError<K>`] if the kind is a [`UniKind`].
    pub fn into_typed_kind<K: UniKind>(self) -> Option<UniError<K>> {
        self.inner
            .into_typed_kind::<K>()
            .map(|inner| UniError { inner })
    }

    /// Converts the [`UniError`] to a [`UniError<K>`] if the kind is a [`UniKind`].
    pub fn to_typed_kind<K: UniKind>(&self) -> Option<UniError<K>> {
        self.inner
            .to_typed_kind::<K>()
            .map(|inner| UniError { inner })
    }

    /// Returns the concrete type name of the error.
    pub fn type_name(&self) -> String {
        let start = "uni_error::error::UniError<";
        let end = ">";
        let kind_type = self.kind_ref().type_name();
        alloc::format!("{start}{kind_type}{end}")
    }

    /// Wraps the existing error with the provided kind.
    pub fn kind<K2>(self, kind: K2) -> UniError<K2> {
        UniError::new(kind, None, Some(CauseInner::from_dyn_error(self)))
    }

    /// Wraps the existing error with the provided context and a default kind.
    pub fn kind_default_context<K2>(self, context: impl Into<Cow<'static, str>>) -> UniError<K2>
    where
        K2: Default,
    {
        UniError::new(
            Default::default(),
            Some(context.into()),
            Some(CauseInner::from_dyn_error(self)),
        )
    }

    /// Wraps the existing error with the provided kind and context.
    pub fn kind_context<K2>(self, kind: K2, context: impl Into<Cow<'static, str>>) -> UniError<K2> {
        UniError::new(
            kind,
            Some(context.into()),
            Some(CauseInner::from_dyn_error(self)),
        )
    }

    /// Wraps the existing error with no additional context and a default kind.
    pub fn kind_default<K2>(self) -> UniError<K2>
    where
        K2: Default,
    {
        UniError::new(
            Default::default(),
            None,
            Some(CauseInner::from_dyn_error(self)),
        )
    }
}

impl<C: 'static> UniError<dyn UniKindCode<Code = C>> {
    /// Returns a reference to the custom kind.
    pub fn kind_dyn_ref(&self) -> &dyn UniKindCode<Code = C> {
        self.kind_ref()
    }

    /// Converts the [`UniError`] to a [`UniError<K>`] if the kind is a `UniKindCode<Code = C>`.
    pub fn into_typed_kind<K: UniKindCode<Code = C>>(self) -> Option<UniError<K>> {
        self.inner
            .into_typed_kind::<K>()
            .map(|inner| UniError { inner })
    }

    /// Converts the [`UniError`] to a [`UniError<K>`] if the kind is a `UniKindCode<Code = C>`.
    pub fn to_typed_kind<K: UniKindCode<Code = C>>(&self) -> Option<UniError<K>> {
        self.inner
            .to_typed_kind::<K>()
            .map(|inner| UniError { inner })
    }

    /// Returns the concrete type name of the error.
    pub fn type_name(&self) -> String {
        let start = "uni_error::error::UniError<";
        let end = ">";
        let kind_type = self.kind_ref().type_name();
        alloc::format!("{start}{kind_type}{end}")
    }

    /// Erases the custom kind and returns a [`UniError`] with a `dyn UniKind` trait object.
    pub fn into_dyn_kind(self) -> UniError<dyn UniKind> {
        UniError {
            inner: self.inner.into_dyn_kind(),
        }
    }

    /// Wraps the existing error with the provided kind.
    pub fn kind<K2>(self, kind: K2) -> UniError<K2> {
        UniError::new(kind, None, Some(CauseInner::from_dyn_code_error(self)))
    }

    /// Wraps the existing error with the provided context and a default kind.
    pub fn kind_default_context<K2>(self, context: impl Into<Cow<'static, str>>) -> UniError<K2>
    where
        K2: Default,
    {
        UniError::new(
            Default::default(),
            Some(context.into()),
            Some(CauseInner::from_dyn_code_error(self)),
        )
    }

    /// Wraps the existing error with the provided kind and context.
    pub fn kind_context<K2>(self, kind: K2, context: impl Into<Cow<'static, str>>) -> UniError<K2> {
        UniError::new(
            kind,
            Some(context.into()),
            Some(CauseInner::from_dyn_code_error(self)),
        )
    }

    /// Wraps the existing error with no additional context and a default kind.
    pub fn kind_default<K2>(self) -> UniError<K2>
    where
        K2: Default,
    {
        UniError::new(
            Default::default(),
            None,
            Some(CauseInner::from_dyn_code_error(self)),
        )
    }
}

impl<C: 'static, C2: 'static> UniError<dyn UniKindCodes<Code = C, Code2 = C2>> {
    /// Returns a reference to the custom kind.
    pub fn kind_dyn_ref(&self) -> &dyn UniKindCodes<Code = C, Code2 = C2> {
        self.kind_ref()
    }

    /// Converts the [`UniError`] to a [`UniError<K>`] if the kind is a `UniKindCodes<Code = C, Code2 = C2>`.
    pub fn into_typed<K: UniKindCodes<Code = C, Code2 = C2>>(self) -> Option<UniError<K>> {
        self.inner
            .into_typed_kind::<K>()
            .map(|inner| UniError { inner })
    }

    /// Converts the [`UniError`] to a [`UniError<K>`] if the kind is a `UniKindCodes<Code = C, Code2 = C2>`.
    pub fn to_typed_kind<K: UniKindCodes<Code = C, Code2 = C2>>(&self) -> Option<UniError<K>> {
        self.inner
            .to_typed_kind::<K>()
            .map(|inner| UniError { inner })
    }

    /// Returns the concrete type name of the error.
    pub fn type_name(&self) -> String {
        let start = "uni_error::error::UniError<";
        let end = ">";
        let kind_type = self.kind_ref().type_name();
        alloc::format!("{start}{kind_type}{end}")
    }

    /// Erases the custom kind and returns a [`UniError`] with a `dyn UniKind` trait object.
    pub fn into_dyn_kind(self) -> UniError<dyn UniKind> {
        UniError {
            inner: self.inner.into_dyn_kind(),
        }
    }

    /// Wraps the existing error with the provided kind.
    pub fn kind<K2>(self, kind: K2) -> UniError<K2> {
        UniError::new(kind, None, Some(CauseInner::from_dyn_codes_error(self)))
    }

    /// Wraps the existing error with the provided context and a default kind.
    pub fn kind_default_context<K2>(self, context: impl Into<Cow<'static, str>>) -> UniError<K2>
    where
        K2: Default,
    {
        UniError::new(
            Default::default(),
            Some(context.into()),
            Some(CauseInner::from_dyn_codes_error(self)),
        )
    }

    /// Wraps the existing error with the provided kind and context.
    pub fn kind_context<K2>(self, kind: K2, context: impl Into<Cow<'static, str>>) -> UniError<K2> {
        UniError::new(
            kind,
            Some(context.into()),
            Some(CauseInner::from_dyn_codes_error(self)),
        )
    }

    /// Wraps the existing error with no additional context and a default kind.
    pub fn kind_default<K2>(self) -> UniError<K2>
    where
        K2: Default,
    {
        UniError::new(
            Default::default(),
            None,
            Some(CauseInner::from_dyn_codes_error(self)),
        )
    }
}

// *** Display ***

impl<K: UniKind + ?Sized> Display for UniError<K> {
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        <UniErrorInner<K> as Display>::fmt(&self.inner, f)
    }
}

// *** Clone ***

// Manually implement as derive requires K: Clone
impl<K: ?Sized> Clone for UniError<K> {
    fn clone(&self) -> Self {
        Self {
            inner: self.inner.clone(),
        }
    }
}

// *** PartialEq ***

impl<K: PartialEq + ?Sized + 'static> PartialEq for UniError<K> {
    fn eq(&self, other: &Self) -> bool {
        self.inner.eq(&other.inner)
    }
}

// *** Deref ***

impl<K: UniKind + ?Sized> Deref for UniError<K> {
    type Target = dyn Error + Sync + Send + 'static;

    fn deref(&self) -> &Self::Target {
        &self.inner
    }
}

// *** AsRef ***

impl<K: UniKind + ?Sized> AsRef<dyn Error + Sync + Send> for UniError<K> {
    fn as_ref(&self) -> &(dyn Error + Sync + Send + 'static) {
        &**self
    }
}