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
use std::{
    collections::HashMap,
};
use crate::{
    entry::{
        err,
        err_with,
    },
    types::{
        Error,
        Error_,
        Error_2,
        FullError,
    },
    Flag,
    Log,
};

/// A trait adding helper methods to standard errors to convert to `loga::Error`.
pub trait ErrContext {
    /// Add a simple context string onto an error, converting it to `loga::Error` in
    /// the process.
    fn context(self, message: impl ToString) -> Error;

    /// Add a simple context string and attributes pairs onto an error, converting it
    /// to `loga::Error` in the process.
    fn context_with(self, message: impl ToString, attrs: impl Fn(&mut HashMap<&'static str, String>) -> ()) -> Error;

    /// Add attributes from the log as well as a simple context string to an error,
    /// converting it to `loga::Error` in the process.
    fn stack_context<F: Flag>(self, log: &Log<F>, message: impl ToString) -> Error;

    /// Add attributes from the log as well as the specified attributes and a simple
    /// context string to an error, converting it to `loga::Error` in the process.
    fn stack_context_with<
        F: Flag,
    >(
        self,
        log: &Log<F>,
        message: impl ToString,
        attrs: impl Fn(&mut HashMap<&'static str, String>) -> (),
    ) -> Error;
}

impl<T: Into<Error>> ErrContext for T {
    fn context(self, message: impl ToString) -> Error {
        return Error(Box::new(Error_ {
            inner: Error_2::Full(FullError {
                message: message.to_string(),
                attrs: HashMap::new(),
                causes: vec![self.into()],
            }),
            incidental: vec![],
        }));
    }

    fn context_with(
        self,
        message: impl ToString,
        attrs: impl Fn(&mut HashMap<&'static str, String>) -> (),
    ) -> Error {
        let mut new_attrs = HashMap::new();
        attrs(&mut new_attrs);
        return Error(Box::new(Error_ {
            inner: Error_2::Full(FullError {
                message: message.to_string(),
                attrs: new_attrs,
                causes: vec![self.into()],
            }),
            incidental: vec![],
        }));
    }

    fn stack_context<F: Flag>(self, log: &Log<F>, message: impl ToString) -> Error {
        return Error(Box::new(Error_ {
            inner: Error_2::Full(FullError {
                message: message.to_string(),
                attrs: log.attrs.clone(),
                causes: vec![self.into()],
            }),
            incidental: vec![],
        }));
    }

    fn stack_context_with<
        F: Flag,
    >(
        self,
        log: &Log<F>,
        message: impl ToString,
        attrs: impl Fn(&mut HashMap<&'static str, String>) -> (),
    ) -> Error {
        let mut new_attrs = log.attrs.clone();
        attrs(&mut new_attrs);
        return Error(Box::new(Error_ {
            inner: Error_2::Full(FullError {
                message: message.to_string(),
                attrs: new_attrs,
                causes: vec![self.into()],
            }),
            incidental: vec![],
        }));
    }
}

/// A trait adding helper methods to `Result` to convert to
/// `Result<_, loga::Error>`.
pub trait ResultContext<O> {
    /// If the value is Err/None, add a simple context string onto an error, converting
    /// it to `loga::Error` in the process.
    fn context(self, message: impl ToString) -> Result<O, Error>;

    /// If the value is Err/None, add a simple context string and attributes pairs onto
    /// an error, converting it to `loga::Error` in the process.
    fn context_with(
        self,
        message: impl ToString,
        attrs: impl Fn(&mut HashMap<&'static str, String>) -> (),
    ) -> Result<O, Error>;

    /// If the value is Err/None, add attributes from the log as well as a simple
    /// context string to an error, converting it to `loga::Error` in the process.
    fn stack_context<F: Flag>(self, log: &Log<F>, message: impl ToString) -> Result<O, Error>;

    /// If the value is Err/None, add attributes from the log as well as the specified
    /// attributes and a simple context string to an error, converting it to
    /// `loga::Error` in the process.
    fn stack_context_with<
        F: Flag,
    >(
        self,
        log: &Log<F>,
        message: impl ToString,
        attrs: impl Fn(&mut HashMap<&'static str, String>) -> (),
    ) -> Result<O, Error>;

    /// If this is an error and the argument result is an error, attach the argument
    /// result to this error as an incidental error. If this isn't an error and the
    /// argument result is an error, return the argument result alone.
    fn also<O2, E: Into<Error>>(self, r: Result<O2, E>) -> Result<O, Error>;

    // If the value is Err/None, consume it, logging it with the additional context
    // message.
    fn log<F: Flag>(self, log: &Log<F>, flags: F, message: impl ToString);

    // If the value is Err/None, consume it, logging it with the additional context
    // message and attributes.
    fn log_with<
        F: Flag,
    >(
        self,
        log: &Log<F>,
        flags: F,
        message: impl ToString,
        attrs: impl Fn(&mut HashMap<&'static str, String>) -> (),
    );
}

impl<O, E: Into<Error>> ResultContext<O> for Result<O, E> {
    fn context(self, message: impl ToString) -> Result<O, Error> {
        match self {
            Ok(x) => Ok(x),
            Err(e) => Err(e.context(message)),
        }
    }

    fn context_with(
        self,
        message: impl ToString,
        attrs: impl Fn(&mut HashMap<&'static str, String>) -> (),
    ) -> Result<O, Error> {
        match self {
            Ok(x) => Ok(x),
            Err(e) => Err(e.context_with(message, attrs)),
        }
    }

    fn stack_context<F: Flag>(self, log: &Log<F>, message: impl ToString) -> Result<O, Error> {
        match self {
            Ok(x) => Ok(x),
            Err(e) => Err(e.stack_context(log, message)),
        }
    }

    fn stack_context_with<
        F: Flag,
    >(
        self,
        log: &Log<F>,
        message: impl ToString,
        attrs: impl Fn(&mut HashMap<&'static str, String>) -> (),
    ) -> Result<O, Error> {
        match self {
            Ok(x) => Ok(x),
            Err(e) => Err(e.stack_context_with(log, message, attrs)),
        }
    }

    fn also<O2, E2: Into<Error>>(self, r: Result<O2, E2>) -> Result<O, Error> {
        match self {
            Ok(o) => match r {
                Ok(_) => {
                    return Ok(o);
                },
                Err(e2) => {
                    return Err(e2.into());
                },
            },
            Err(e) => match r {
                Ok(_) => return Err(e.into()),
                Err(e2) => return Err(e.into().also(e2.into())),
            },
        }
    }

    fn log<F: Flag>(self, log: &Log<F>, flags: F, message: impl ToString) {
        if let Err(e) = self.context(message) {
            log.log_err(flags, e);
        }
    }

    fn log_with<
        F: Flag,
    >(
        self,
        log: &Log<F>,
        flags: F,
        message: impl ToString,
        attrs: impl Fn(&mut HashMap<&'static str, String>) -> (),
    ) {
        if let Err(e) = self.context_with(message, attrs) {
            log.log_err(flags, e);
        }
    }
}

impl<O> ResultContext<O> for Option<O> {
    fn context(self, message: impl ToString) -> Result<O, Error> {
        match self {
            Some(x) => Ok(x),
            None => Err(err(message)),
        }
    }

    fn context_with(
        self,
        message: impl ToString,
        attrs: impl Fn(&mut HashMap<&'static str, String>) -> (),
    ) -> Result<O, Error> {
        match self {
            Some(x) => Ok(x),
            None => Err(err_with(message, attrs)),
        }
    }

    fn stack_context<F: Flag>(self, log: &Log<F>, message: impl ToString) -> Result<O, Error> {
        match self {
            Some(x) => Ok(x),
            None => Err(log.err(message)),
        }
    }

    fn stack_context_with<
        F: Flag,
    >(
        self,
        log: &Log<F>,
        message: impl ToString,
        attrs: impl Fn(&mut HashMap<&'static str, String>) -> (),
    ) -> Result<O, Error> {
        match self {
            Some(x) => Ok(x),
            None => Err(log.err_with(message, attrs)),
        }
    }

    fn also<O2, E2: Into<Error>>(self, r: Result<O2, E2>) -> Result<O, Error> {
        match self {
            Some(o) => match r {
                Ok(_) => {
                    return Ok(o);
                },
                Err(e2) => {
                    return Err(e2.into());
                },
            },
            None => match r {
                Ok(_) => return Err(err("No value")),
                Err(e2) => return Err(err("No value").also(e2.into())),
            },
        }
    }

    fn log<F: Flag>(self, log: &Log<F>, flags: F, message: impl ToString) {
        if self.is_none() {
            log.log_err(flags, err("No value").context(message));
        }
    }

    fn log_with<
        F: Flag,
    >(
        self,
        log: &Log<F>,
        flags: F,
        message: impl ToString,
        attrs: impl Fn(&mut HashMap<&'static str, String>) -> (),
    ) {
        if self.is_none() {
            log.log_err(flags, err("No value").context_with(message, attrs));
        }
    }
}