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
/// Equivalent to `return Err(Error::from_err(format_args!(...)))` if a string
/// literal, `return Err(Error::from_err(expr))` if a single expression, or
/// `return Err(Error::from_err(format!(...)))` otherwise.
/// The `bail` macro but with `_locationless` variations
/// For ease of translating from the `eyre` crate, but also the recommended
/// macro to use if you use this kind of macro
/// For ease of translating from the `anyhow` crate
/// Asserts that a boolean expression is `true` at runtime, returning a
/// stackable error otherwise.
///
/// Has `return Err(...)` with a [stacked_errors::Error](crate::Error) and
/// attached location if the expression is false. An custom message can be
/// attached that is used as a [StackableErr](crate::StackableErr) argument.
///
/// ```
/// use stacked_errors::{ensure, Result, StackableErr};
///
/// fn ex(val0: bool, val1: bool) -> Result<()> {
/// ensure!(true);
///
/// ensure!(val0);
///
/// ensure!(val1, format!("val1 was {}", val1));
///
/// Ok(())
/// }
///
/// ex(true, true).unwrap();
///
/// assert_eq!(
/// format!("{}", ex(false, true).unwrap_err()),
/// r#"
/// ensure(val0) -> assertion failed at src/macros.rs 10:5"#
/// );
///
/// assert_eq!(
/// format!("{}", ex(true, false).unwrap_err()),
/// r#"
/// val1 was false at src/macros.rs 12:5"#
/// );
/// ```
/// Asserts that two expressions are equal to each other (with [PartialEq]),
/// returning a stackable error if they are equal. [Debug] is also required if
/// there is no custom message.
///
/// Has `return Err(...)` with a [stacked_errors::Error](crate::Error) and
/// attached location if the expressions are unequal. A custom message can be
/// attached that is used as an [Error::from_err](crate::Error::from_err)
/// argument.
///
/// ```
/// use stacked_errors::{ensure_eq, Result, StackableErr};
///
/// fn ex(val0: u8, val1: &str) -> Result<()> {
/// ensure_eq!(42, 42);
///
/// ensure_eq!(8, val0);
///
/// ensure_eq!("test", val1, format!("val1 was \"{}\"", val1));
///
/// Ok(())
/// }
///
/// ex(8, "test").unwrap();
///
/// assert_eq!(
/// format!("{}", ex(0, "test").unwrap_err()),
/// r#"
/// ensure_eq(
/// lhs: 8
/// rhs: 0
/// ) -> equality assertion failed at src/macros.rs 10:5"#
/// );
///
/// assert_eq!(
/// format!("{}", ex(8, "other").unwrap_err()),
/// r#"
/// val1 was "other" at src/macros.rs 12:5"#
/// );
/// ```
/// Asserts that two expressions are not equal to each other (with [PartialEq]),
/// returning a stackable error if they are equal. [Debug] is also required if
/// there is no custom message.
///
/// Has `return Err(...)` with a [stacked_errors::Error](crate::Error) and
/// attached location if the expressions are equal. A custom message can be
/// attached that is used as an [Error::from_err](crate::Error::from_err)
/// argument.
///
/// ```
/// use stacked_errors::{ensure_ne, Result, StackableErr};
///
/// fn ex(val0: u8, val1: &str) -> Result<()> {
/// ensure_ne!(42, 8);
///
/// ensure_ne!(8, val0);
///
/// ensure_ne!("test", val1, format!("val1 was \"{}\"", val1));
///
/// Ok(())
/// }
///
/// ex(0, "other").unwrap();
///
/// assert_eq!(
/// format!("{}", ex(8, "other").unwrap_err()),
/// r#"
/// ensure_ne(
/// lhs: 8
/// rhs: 8
/// ) -> inequality assertion failed at src/macros.rs 10:5"#
/// );
///
/// assert_eq!(
/// format!("{}", ex(0, "test").unwrap_err()),
/// r#"
/// val1 was "test" at src/macros.rs 12:5"#
/// );
/// ```
/// Applies `get` and `stack_err_with(...)?` in a chain, this is compatible with
/// many things.
///
/// ```
/// use serde_json::Value;
/// use stacked_errors::{ensure, stacked_get, Result, StackableErr};
///
/// let s = r#"{
/// "Id": "id example",
/// "Created": 2023,
/// "Args": [
/// "--entry-name",
/// "--uuid"
/// ],
/// "State": {
/// "Status": "running",
/// "Running": true
/// }
/// }"#;
///
/// fn ex0(s: &str) -> Result<()> {
/// let value: Value = serde_json::from_str(s).stack()?;
///
/// // the normal `Index`ing of `Values` panics, this
/// // returns a formatted error
/// ensure!(stacked_get!(value["Id"]) == "id example");
/// ensure!(stacked_get!(value["Created"]) == 2023);
/// ensure!(stacked_get!(value["Args"][1]) == "--uuid");
/// ensure!(stacked_get!(value["State"]["Status"]) == "running");
/// ensure!(stacked_get!(value["State"]["Running"]) == true);
///
/// Ok(())
/// }
///
/// ex0(s).unwrap();
///
/// fn ex1(s: &str) -> Result<()> {
/// let value: Value = serde_json::from_str(s).stack()?;
///
/// let _ = stacked_get!(value["State"]["nonexistent"]);
///
/// Ok(())
/// }
///
/// assert!(ex1(s).is_err());
/// ```
/// Applies `get_mut` and `stack_err_with(...)?` in a chain, this is compatible
/// with many things.
///
/// ```
/// use serde_json::Value;
/// use stacked_errors::{ensure, stacked_get, stacked_get_mut, Result, StackableErr};
///
/// let s = r#"{
/// "Id": "id example",
/// "Created": 2023,
/// "Args": [
/// "--entry-name",
/// "--uuid"
/// ],
/// "State": {
/// "Status": "running",
/// "Running": true
/// }
/// }"#;
///
/// fn ex0(s: &str) -> Result<()> {
/// let mut value: Value = serde_json::from_str(s).stack()?;
///
/// *stacked_get_mut!(value["Id"]) = "other".into();
/// *stacked_get_mut!(value["Created"]) = 0.into();
/// *stacked_get_mut!(value["Args"][1]) = "--other".into();
/// *stacked_get_mut!(value["State"]["Status"]) = "stopped".into();
/// *stacked_get_mut!(value["State"]["Running"]) = false.into();
///
/// // when creating a new field
/// stacked_get_mut!(value["State"])["OtherField"] = "hello".into();
///
/// ensure!(stacked_get!(value["Id"]) == "other");
/// ensure!(stacked_get!(value["Created"]) == 0);
/// ensure!(stacked_get!(value["Args"][1]) == "--other");
/// ensure!(stacked_get!(value["State"]["Status"]) == "stopped");
/// ensure!(stacked_get!(value["State"]["Running"]) == false);
/// ensure!(stacked_get!(value["State"]["OtherField"]) == "hello");
///
/// Ok(())
/// }
///
/// ex0(s).unwrap();
///
/// fn ex1(s: &str) -> Result<()> {
/// let mut value: Value = serde_json::from_str(s).stack()?;
///
/// let _ = stacked_get_mut!(value["State"]["nonexistent"]);
///
/// Ok(())
/// }
///
/// assert!(ex1(s).is_err());
/// ```