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
//! Convert rootcause [`Report`]s into boxed error trait objects.
//!
//! # Overview
//!
//! This module provides conversion utilities for transforming rootcause
//! [`Report`]s into standard Rust error trait objects (`Box<dyn Error>`). This
//! is useful when:
//! - Integrating with APIs that expect `Box<dyn Error>`
//! - Converting to standardized error types for external consumption
//! - Working with error handling patterns that use trait objects
//! - Providing a uniform error interface across different error types
//!
//! The conversion preserves the report's formatting and error information while
//! wrapping it in a standard error trait object that can be used with any code
//! expecting `Box<dyn Error>`.
//!
//! # Converting from Rootcause to Boxed Errors
//!
//! Use the [`IntoBoxedError`] trait to convert reports into boxed error trait
//! objects:
//!
//! ```
//! use std::error::Error;
//!
//! use rootcause::{compat::boxed_error::IntoBoxedError, prelude::*};
//!
//! fn rootcause_function() -> Result<String, Report> {
//! Err(report!("database connection failed"))
//! }
//!
//! fn boxed_error_function() -> Result<String, Box<dyn Error + Send + Sync>> {
//! // Convert Result<T, Report> to Result<T, Box<dyn Error + Send + Sync>>
//! let value = rootcause_function().into_boxed_error()?;
//! Ok(value)
//! }
//! ```
//!
//! You can also convert individual [`Report`] values:
//!
//! ```
//! use std::error::Error;
//!
//! use rootcause::{compat::boxed_error::IntoBoxedError, prelude::*};
//!
//! let report: Report = report!("operation failed").attach("debug info");
//! let boxed_err: Box<dyn Error + Send + Sync> = report.into_boxed_error();
//!
//! // The boxed error preserves the report's formatting
//! println!("{}", boxed_err);
//! ```
//!
//! # Thread Safety
//!
//! The type of boxed error depends on the thread safety marker:
//! - [`SendSync`] reports convert to `Box<dyn Error + Send + Sync>`
//! - [`Local`] reports convert to `Box<dyn Error>`
//!
//! This ensures that the resulting boxed error respects the thread safety
//! constraints of the original report.
//!
//! ```
//! use std::{error::Error, rc::Rc};
//!
//! use rootcause::{compat::boxed_error::IntoBoxedError, markers::Local, prelude::*};
//!
//! // SendSync report becomes Box<dyn Error + Send + Sync>
//! let send_sync_report: Report = report!("network error");
//! let send_sync_boxed: Box<dyn Error + Send + Sync> = send_sync_report.into_boxed_error();
//!
//! // Local report becomes Box<dyn Error>
//! let local_report: Report<_, _, Local> =
//! report!("local error").into_local().attach(Rc::new("data"));
//! let local_boxed: Box<dyn Error> = local_report.into_boxed_error();
//! ```
//!
//! # Converting from Boxed Errors to Rootcause
//!
//! Use the [`IntoRootcause`] trait to convert boxed errors into reports:
//!
//! ```
//! use std::error::Error;
//!
//! use rootcause::prelude::*;
//!
//! fn uses_boxed_error() -> Result<String, Box<dyn Error + Send + Sync>> {
//! Err("something failed".into())
//! }
//!
//! fn uses_rootcause() -> Result<String, Report> {
//! // Convert to rootcause report
//! let value = uses_boxed_error().into_rootcause()?;
//! Ok(value)
//! }
//! ```
//!
//! # Using `From` Trait
//!
//! The `From` trait is also implemented for direct conversions:
//!
//! ```
//! use std::error::Error;
//!
//! use rootcause::prelude::*;
//!
//! let report: Report = report!("failed");
//! let boxed_err: Box<dyn Error + Send + Sync> = report.into();
//!
//! // The ? operator works automatically
//! fn convert_automatically() -> Result<(), Box<dyn Error + Send + Sync>> {
//! let _report: Report = report!("error");
//! // Automatic conversion via ?
//! Err(_report)?
//! }
//! ```
use Box;
use Error;
use ;
use ;
use crate::;
/// A custom handler for boxed error trait objects that delegates to the
/// underlying error's formatting.
///
/// This handler ensures that boxed errors (`Box<dyn Error>` and `Box<dyn Error
/// + Send + Sync>`) display identically whether they're used directly or
/// wrapped in a rootcause [`Report`]. You typically don't need to use this
/// handler directly - it's used automatically by the [`IntoRootcause`] trait.
///
/// # Implementation Details
///
/// - **Display**: Uses the boxed error's `Display` implementation
/// - **Debug**: Uses the boxed error's `Debug` implementation
/// - **Source**: Uses the boxed error's `source` method to traverse the error
/// chain
/// - **Formatting style**: Matches the report's formatting function (Display or
/// Debug)
///
/// # Examples
///
/// ```
/// use rootcause::{Report, compat::boxed_error::BoxedErrorHandler};
///
/// let boxed: Box<dyn std::error::Error + Send + Sync> =
/// Box::new(std::io::Error::from(std::io::ErrorKind::NotFound));
/// let report = Report::new_sendsync_custom::<BoxedErrorHandler>(boxed);
/// ```
;
/// A trait for converting rootcause [`Report`]s into boxed error trait objects.
///
/// This trait provides the `.into_boxed_error()` method for converting
/// rootcause reports into standard Rust error trait objects. It's implemented
/// for both [`Report`] and [`Result<T, Report>`], making it easy to integrate
/// with APIs that expect `Box<dyn Error>`.
///
/// The specific type of boxed error depends on the thread safety marker:
/// - [`SendSync`] reports convert to `Box<dyn Error + Send + Sync>`
/// - [`Local`] reports convert to `Box<dyn Error>`
///
/// # Examples
///
/// ## Converting a Result with SendSync Report
///
/// ```
/// use std::error::Error;
///
/// use rootcause::{compat::boxed_error::IntoBoxedError, prelude::*};
///
/// fn uses_rootcause() -> Result<i32, Report> {
/// Err(report!("failed"))
/// }
///
/// fn uses_boxed_error() -> Result<i32, Box<dyn Error + Send + Sync>> {
/// let value = uses_rootcause().into_boxed_error()?;
/// Ok(value)
/// }
/// ```
///
/// ## Converting a Local Report
///
/// ```
/// use std::{error::Error, rc::Rc};
///
/// use rootcause::{compat::boxed_error::IntoBoxedError, markers::Local, prelude::*};
///
/// let local_report: Report<_, _, Local> = report!("error").into_local().attach(Rc::new("data"));
/// let boxed_err: Box<dyn Error> = local_report.into_boxed_error();
///
/// // The boxed error displays the full report structure
/// println!("{}", boxed_err);
/// ```
///
/// ## Using `From` Instead
///
/// You can also use the `From` trait for explicit conversions:
///
/// ```
/// use std::error::Error;
///
/// use rootcause::prelude::*;
///
/// let report: Report = report!("error");
/// let boxed_err: Box<dyn Error + Send + Sync> = report.into();
/// ```