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
//! Functions for printing status and error messages to stderr.
//!
//! ## Report status
//!
//! Similar to [Cargo](https://github.com/rust-lang/cargo/) output, a [`status`]
//! title is justified, colored and made bold. Coloring is provided by the
//! [`Color`] enum.
//!
//! ## Report errors
//!
//! Use [`err`] or [`anyhow_err`] to print error information from either a
//! [`narrate::Error`](Error) or an [`anyhow::Error`] respectively. Include
//! error chains/causes in your output by using [`err_full`] or
//! [`anyhow_err_full`].
//!
//! ## Features
//!
//! If you have no desire to use any of narrate's other features, you can use
//! just this module's functionality by disabling the default features and just
//! using "report".
//!
//! ```toml
//! [dependencies]
//! narrate = { version = "0.4.2", default-features = false, features = ["report"] }
//! ```
//!
//! This will still allow you to report [anyhow errors](anyhow), but not [narrate
//! errors](Error).
use ;
use ;
use crateError;
const STDERR: &str = "writing to stderr";
/// Report a status to stderr.
///
/// ```txt
/// <title>: <msg>
/// ```
///
/// The title will be justified in the style of Cargo's statuses. If stderr
/// is directed to a TTY (as is normal for a CLI app), it will have it's color
/// set.
/// Report an [`Error`] to stderr.
///
/// The message will consist of a red `error:` title, followed by the
/// [`Display`](std::fmt::Display) impl for the underlying error.
///
/// If the [`Error`] contains a help message, that will be printed 2 lines
/// below.
///
/// ## Examples
///
/// Standard error.
///
/// ```
/// # use narrate::error_from;
/// # use narrate::report;
/// let error = error_from!("invalid configuration");
/// # /*
/// report::err(&error);
/// # */
/// // error: invalid configuration
/// ```
///
/// Error with a help message.
///
/// ```
/// # use narrate::CliError;
/// # use narrate::Error;
/// # use narrate::report;
/// let mut error = Error::new(CliError::Config);
/// error.add_help("try something else");
/// # /*
/// report::err(&error);
/// # */
/// // error: invalid configuration
/// //
/// // try something else
/// ```
/// Report an [`Error`] to stderr, printing a list of causes
///
/// The message will consist of a red `error:` title, followed by the
/// [`Display`](std::fmt::Display) impl for the underlying error.
/// Each subsequent wrapped error will have a plain `cause:` title.
///
/// ## Examples
///
/// Wrapped error.
///
/// ```
/// # fn parse_config_file(path: &str) -> narrate::Result<()> {
/// # Ok(())
/// # }
/// use narrate::{report, ErrorWrap, Result};
///
/// fn setup_config() -> Result<()> {
/// # /*
/// ...
/// # */
/// # let path = "";
/// let user_config = parse_config_file(&path)
/// .wrap_with(|| format!("invalid config file: `{}`", &path))?;
/// # /*
/// ...
/// # */
/// # Ok(())
/// }
///
/// fn main() {
/// # /*
/// ...
/// # */
/// let res = setup_config().wrap("invalid configuration");
/// if let Err(ref err) = res {
/// # /*
/// report::err_full(err);
/// # */
/// // error: invalid configuration
/// // cause: invalid config file: `config.toml`
/// // cause: missing key: `author`
/// }
/// # /*
/// ...
/// # */
/// }
/// ```
///
/// Wrapped error with a help message.
///
/// ```
/// use std::{fs::File, path::PathBuf};
///
/// use narrate::{report, CliError, ErrorWrap, Result};
///
/// fn run() -> Result<()> {
/// let path = PathBuf::from("/nopermission/file.txt");
/// File::create(&path)
/// .wrap_with(|| CliError::CreateFile(path))
/// .add_help("try using a valid file name")?;
/// Ok(())
/// }
///
///
/// fn main() {
/// if let Err(err) = run() {
/// # /*
/// report::err_full(&err);
/// # */
/// // error: cannot create file: "/nopermission.txt"
/// // cause: permission denied
/// //
/// // try using a valid file name
/// }
/// }
/// ```
/// Report an [`anyhow::Error`] to stderr
///
/// The message will consist of a red `error:` title, followed by the
/// [`Display`](std::fmt::Display) impl for the underlying error.
///
/// ## Example
///
/// ```
/// # use anyhow::anyhow;
/// # use narrate::report;
/// let error = anyhow!("invalid configuration");
/// # /*
/// report::anyhow_err(&error);
/// # */
/// // error: invalid configuration
/// ```
/// Report an [`anyhow::Error`] to stderr, printing a list of causes
///
/// The message will consist of a red `error:` title, followed by the
/// [`Display`](std::fmt::Display) impl for the underlying error.
/// Each subsequent wrapped error will have a plain `cause:` title.
///
/// ## Example
///
/// Context wrapped error.
///
/// ```
/// # fn parse_config_file(path: &str) -> anyhow::Result<()> {
/// # Ok(())
/// # }
/// use narrate::report;
/// use anyhow::{Context, Result};
///
/// fn setup_config() -> Result<()> {
/// # /*
/// ...
/// # */
/// # let path = "";
/// let user_config = parse_config_file(&path)
/// .with_context(|| format!("invalid config file: `{}`", &path))?;
/// # /*
/// ...
/// # */
/// # Ok(())
/// }
///
/// fn main() {
/// # /*
/// ...
/// # */
/// let res = setup_config().context("invalid configuration");
/// if let Err(ref err) = res {
/// # /*
/// report::anyhow_err_full(err);
/// # */
/// // error: invalid configuration
/// // cause: invalid config file: `config.toml`
/// // cause: missing key: `author`
/// }
/// # /*
/// ...
/// # */
/// }
/// ```