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
#![deny(clippy::all)]
#![warn(clippy::nursery)]
#![warn(clippy::pedantic)]
#![allow(clippy::use_self)]
use std::{error::Error as StdError, fmt, result::Result as StdResult};
mod macros;
pub type Result<T> = StdResult<T, Error>;
#[derive(Debug)]
pub struct Error
{
pub ctx: String,
pub cause: Option<Box<dyn StdError + 'static>>,
}
impl Error
{
pub fn new<S, E>(ctx: S, cause: E) -> Error
where
S: Into<String>,
E: StdError + 'static,
{
let ctx = ctx.into();
let cause: Option<Box<dyn StdError + 'static>> = Some(Box::new(cause));
Error { ctx, cause }
}
pub fn iter_causes(&self) -> Causes { Causes { cause: self.cause.as_ref().map(Box::as_ref) } }
}
impl fmt::Display for Error
{
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.ctx) }
}
impl StdError for Error
{
fn description(&self) -> &str { &self.ctx }
fn source(&self) -> Option<&(dyn StdError + 'static)> { self.cause.as_ref().map(Box::as_ref) }
}
pub struct Causes<'a>
{
cause: Option<&'a (dyn StdError + 'static)>,
}
impl<'a> Iterator for Causes<'a>
{
type Item = &'a (dyn StdError + 'static);
fn next(&mut self) -> Option<Self::Item>
{
let cause = self.cause.take();
self.cause = cause.and_then(StdError::source);
cause
}
}
pub trait ResultExt<T>
{
fn context<S: Into<String>>(self, ctx: S) -> Result<T>;
}
impl<T, E: StdError + 'static> ResultExt<T> for StdResult<T, E>
{
fn context<S: Into<String>>(self, ctx: S) -> Result<T>
{
self.map_err(|e| Error { ctx: ctx.into(), cause: Some(Box::new(e)) })
}
}
#[inline]
pub fn err_msg<S: Into<String>>(ctx: S) -> Error { Error { ctx: ctx.into(), cause: None } }
#[inline]
pub fn iter_causes<E: StdError>(e: &E) -> Causes { Causes { cause: e.source() } }