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
/// Creates a new error report.
///
/// This macro provides a convenient way to create [`Report`](crate::Report)
/// instances with automatic type inference for thread-safety markers and error
/// handlers.
///
/// # Two Usage Modes
///
/// ## Format String Mode
///
/// When the first argument is a string literal, the macro works like
/// [`format!()`], creating a report with a formatted string as context:
///
/// ```
/// use rootcause::prelude::*;
///
/// let report: Report = report!("File not found");
/// let report: Report = report!("Failed to open {}", "config.toml");
/// ```
///
/// The resulting report has type `Report<Dynamic, Mutable, SendSync>`. The
/// context is typically a `String`, but when there are no format arguments, it
/// may be optimized to a `&'static str`.
///
/// ## Context Object Mode
///
/// When given any other expression, the macro creates a report from that value:
///
/// ```
/// use rootcause::prelude::*;
/// # use std::io;
///
/// # fn get_io_error() -> io::Error {
/// # io::Error::new(io::ErrorKind::NotFound, "file not found")
/// # }
/// let error: io::Error = get_io_error();
/// let report: Report<io::Error> = report!(error);
/// ```
///
/// This mode automatically:
/// - Infers the thread-safety marker based on whether the context type is `Send
/// + Sync`
/// - Selects the appropriate handler based on the context type
///
/// This is similar to calling [`Report::new`], but with better type inference.
///
/// # Examples
///
/// ## Basic String Reports
///
/// ```
/// use std::{any::TypeId, rc::Rc};
///
/// use rootcause::prelude::*;
///
/// // Static string (no formatting)
/// let report: Report<markers::Dynamic, markers::Mutable, markers::SendSync> =
/// report!("Something broke");
/// assert_eq!(
/// report.current_context_type_id(),
/// TypeId::of::<&'static str>()
/// );
///
/// // Formatted string
/// let report: Report<markers::Dynamic, markers::Mutable, markers::SendSync> =
/// report!("Something broke hard: {}", "it was bad");
/// assert_eq!(report.current_context_type_id(), TypeId::of::<String>());
/// assert_eq!(
/// report.current_context_handler_type_id(),
/// TypeId::of::<handlers::Display>()
/// );
/// ```
///
/// ## Error Type Reports
///
/// ```
/// use std::{any::TypeId, io};
///
/// use rootcause::prelude::*;
///
/// # fn something_that_fails() -> Result<(), std::io::Error> {
/// # std::fs::read("/nonexistant")?; Ok(())
/// # }
/// let io_error: std::io::Error = something_that_fails().unwrap_err();
/// let report: Report<std::io::Error, markers::Mutable, markers::SendSync> = report!(io_error);
/// assert_eq!(
/// report.current_context_handler_type_id(),
/// TypeId::of::<handlers::Error>()
/// );
/// ```
///
/// ## Debug-Only Types
///
/// When using a type that implements [`Debug`](core::fmt::Debug) but not
/// [`Display`](core::fmt::Display), the report uses [`crate::handlers::Debug`]
/// which shows "Context of type `TypeName`" when displayed:
///
/// ```
/// use std::any::TypeId;
///
/// use rootcause::prelude::*;
///
/// #[derive(Debug)]
/// struct InternalState {
/// value: usize,
/// }
///
/// let state = InternalState { value: 42 };
/// let report: Report<InternalState> = report!(state);
///
/// // Display shows a generic message with the type name
/// let output = format!("{}", report);
/// assert!(output.contains("InternalState"));
/// assert!(!output.contains("value")); // Debug details not shown in Display
///
/// assert_eq!(
/// report.current_context_handler_type_id(),
/// TypeId::of::<handlers::Debug>()
/// );
/// ```
///
/// ## Local (Non-Send) Reports
///
/// When using non-thread-safe types like [`Rc`](std::rc::Rc), the macro
/// automatically infers the [`Local`](crate::markers::Local) marker:
///
/// ```
/// use std::{any::TypeId, rc::Rc};
///
/// use rootcause::prelude::*;
///
/// # fn something_else_that_fails() -> Result<(), Rc<std::io::Error>> {
/// # std::fs::read("/nonexistant")?; Ok(())
/// # }
/// let local_io_error: Rc<std::io::Error> = something_else_that_fails().unwrap_err();
/// let report: Report<Rc<std::io::Error>, markers::Mutable, markers::Local> =
/// report!(local_io_error);
/// assert_eq!(
/// report.current_context_handler_type_id(),
/// TypeId::of::<handlers::Display>()
/// );
/// ```
///
/// [`format!()`]: std::format
/// [`Report::new`]: crate::Report::new
/// Creates a report attachment with contextual data.
///
/// This macro creates a [`ReportAttachment`] that can be added to error reports
/// to provide additional context. It accepts the same arguments as the
/// [`report!`] macro but produces an attachment instead of a full report.
///
/// Attachments are useful for adding supplementary information to errors
/// without changing the main error context. For example, you might attach
/// configuration values, request parameters, or debugging information.
///
/// # Usage Modes
///
/// Like [`report!`], this macro supports both format string mode and context
/// object mode. See the [`report!`] documentation for details on each mode.
///
/// # Examples
///
/// ## String Attachments
///
/// ```
/// use std::any::TypeId;
///
/// use rootcause::{prelude::*, report_attachment, report_attachment::ReportAttachment};
///
/// // Static string
/// let attachment: ReportAttachment<markers::Dynamic, markers::SendSync> =
/// report_attachment!("Additional context");
/// assert_eq!(attachment.inner_type_id(), TypeId::of::<&'static str>());
/// assert_eq!(
/// attachment.inner_handler_type_id(),
/// TypeId::of::<handlers::Display>()
/// );
///
/// // Formatted string
/// let attachment: ReportAttachment<markers::Dynamic, markers::SendSync> =
/// report_attachment!("Error occurred at line: {}", 42);
/// assert_eq!(attachment.inner_type_id(), TypeId::of::<String>());
/// assert_eq!(
/// attachment.inner_handler_type_id(),
/// TypeId::of::<handlers::Display>()
/// );
/// ```
///
/// ## Structured Data Attachments
///
/// ```
/// use std::any::TypeId;
///
/// use rootcause::{prelude::*, report_attachment, report_attachment::ReportAttachment};
///
/// #[derive(Debug)]
/// struct ErrorData {
/// code: i32,
/// message: String,
/// }
///
/// impl std::fmt::Display for ErrorData {
/// fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
/// write!(f, "Error {}: {}", self.code, self.message)
/// }
/// }
///
/// impl std::error::Error for ErrorData {}
///
/// let error_data = ErrorData {
/// code: 404,
/// message: "Not found".to_string(),
/// };
/// let attachment: ReportAttachment<ErrorData, markers::SendSync> = report_attachment!(error_data);
/// assert_eq!(
/// attachment.inner_handler_type_id(),
/// TypeId::of::<handlers::Display>()
/// );
/// ```
///
/// ## Local (Non-Send) Attachments
///
/// ```
/// use std::rc::Rc;
///
/// use rootcause::{prelude::*, report_attachment, report_attachment::ReportAttachment};
///
/// let local_data: Rc<String> = Rc::new("Local context".to_string());
/// let attachment: ReportAttachment<Rc<String>, markers::Local> = report_attachment!(local_data);
/// ```
///
/// [`ReportAttachment`]: crate::report_attachment::ReportAttachment
/// [`Report`]: crate::Report
/// Returns early from a function with an error report.
///
/// This macro creates a new [`Report`] and immediately returns it wrapped in an
/// `Err`. It's a convenience shorthand for `return Err(report!(...).into())`.
///
/// The macro is similar to the [`bail!`] macro from the [`anyhow`] crate and
/// accepts the same arguments as the [`report!`] macro.
///
/// # When to Use
///
/// Use `bail!` when you want to:
/// - Return an error immediately without additional processing
/// - Keep error-handling code concise and readable
/// - Avoid writing explicit `return Err(...)` statements
///
/// # Examples
///
/// ## Basic Validation
///
/// ```
/// use rootcause::prelude::*;
///
/// fn validate_positive(value: i32) -> Result<(), Report> {
/// if value < 0 {
/// bail!("Value must be non-negative, got {}", value);
/// }
/// Ok(())
/// }
///
/// assert!(validate_positive(-5).is_err());
/// assert!(validate_positive(10).is_ok());
/// ```
///
/// ## Multiple Validation Checks
///
/// ```
/// use rootcause::prelude::*;
///
/// fn validate_age(age: i32) -> Result<(), Report> {
/// if age < 0 {
/// bail!("Age cannot be negative: {}", age);
/// }
/// if age > 150 {
/// bail!("Age seems unrealistic: {}", age);
/// }
/// Ok(())
/// }
/// ```
///
/// [`bail!`]: https://docs.rs/anyhow/latest/anyhow/macro.bail.html
/// [`anyhow`]: https://docs.rs/anyhow/latest/anyhow/
/// [`Report`]: crate::Report