whereat 0.1.5

Lightweight error location tracking with small sizeof and no_std support
Documentation
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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
//! Extension traits for ergonomic error tracing on Results.
//!
//! This module provides extension traits for calling `.at()` and other tracing
//! methods directly on `Result` types, avoiding verbose `map_err` boilerplate.
//!
//! - [`ErrorAtExt`]: Call `.start_at()` on `Error` types to wrap in `At<E>`
//! - [`ResultAtExt`]: Call `.at()` on `Result<T, At<E>>` to extend the trace
//! - [`ResultAtTraceableExt`]: Call `.at()` on `Result<T, E>` where E: AtTraceable

use alloc::string::String;
use core::fmt;

use crate::AtCrateInfo;
use crate::at::At;
use crate::trace::AtTraceable;

// ============================================================================
// ErrorAtExt Trait - for calling .start_at() directly on error values
// ============================================================================

/// Extension trait that allows calling `.start_at()` on error types.
///
/// This trait is implemented for all types that implement `core::error::Error`.
/// For types without `Error`, use the `at()` function or `at!()` macro instead.
///
/// ```rust
/// use whereat::{ErrorAtExt, ResultAtExt};
/// use core::fmt;
///
/// #[derive(Debug)]
/// enum MyError { NotFound }
///
/// impl fmt::Display for MyError {
///     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
///         match self { MyError::NotFound => write!(f, "not found") }
///     }
/// }
///
/// impl core::error::Error for MyError {}
///
/// fn inner() -> Result<(), whereat::At<MyError>> {
///     Err(MyError::NotFound.start_at())
/// }
///
/// fn outer() -> Result<(), whereat::At<MyError>> {
///     inner().at()?;  // .at() adds another location
///     Ok(())
/// }
/// ```
pub trait ErrorAtExt: Sized {
    /// Wrap this value in `At<E>` and add the caller's location.
    /// If allocation fails, the error is still wrapped but trace may be empty.
    ///
    /// For crate-aware tracing with repository links, use `at!(err)` instead.
    /// Requires [`define_at_crate_info!()`](crate::define_at_crate_info!) in your crate root.
    ///
    /// After calling `.start_at()`, you can chain context methods:
    /// - `.at_str("msg")` - static string context (zero-cost)
    /// - `.at_string(|| format!(...))` - lazy string context
    /// - `.at_data(|| value)` - lazy typed context (Display)
    /// - `.at_debug(|| value)` - lazy typed context (Debug)
    #[track_caller]
    fn start_at(self) -> At<Self>;
}

impl<E: core::error::Error> ErrorAtExt for E {
    #[track_caller]
    #[inline]
    fn start_at(self) -> At<Self> {
        At::wrap(self).at()
    }
}

// ============================================================================
// ResultAtExt Trait - for calling .at() on Results with At<E> errors
// ============================================================================

/// Extension trait for adding location tracking to `Result<T, At<E>>`.
///
/// ## Example
///
/// ```rust
/// use whereat::{at, At, ResultAtExt};
///
/// #[derive(Debug)]
/// enum MyError { Oops }
///
/// fn inner() -> Result<(), At<MyError>> {
///     Err(at(MyError::Oops))
/// }
///
/// fn outer() -> Result<(), At<MyError>> {
///     inner().at()?;
///     Ok(())
/// }
/// ```
pub trait ResultAtExt<T, E> {
    /// Add the caller's location to the error trace if this is `Err`.
    #[track_caller]
    fn at(self) -> Result<T, At<E>>;

    /// Add static string context to last location (or create one if empty).
    #[track_caller]
    fn at_str(self, msg: &'static str) -> Result<T, At<E>>;

    /// Add lazily-computed string context to last location (or create one if empty).
    #[track_caller]
    fn at_string(self, f: impl FnOnce() -> String) -> Result<T, At<E>>;

    /// Add lazily-computed typed context (Display) to last location (or create one if empty).
    #[track_caller]
    fn at_data<C: fmt::Display + Send + Sync + 'static>(
        self,
        f: impl FnOnce() -> C,
    ) -> Result<T, At<E>>;

    /// Add lazily-computed typed context (Debug) to last location (or create one if empty).
    #[track_caller]
    fn at_debug<C: fmt::Debug + Send + Sync + 'static>(
        self,
        f: impl FnOnce() -> C,
    ) -> Result<T, At<E>>;

    /// Attach a related error as diagnostic context on the last frame.
    ///
    /// The attached error is **not** part of the `.source()` chain — it is only
    /// visible via trace display and `.contexts()` iteration.
    #[track_caller]
    fn at_aside_error<Err: core::error::Error + Send + Sync + 'static>(
        self,
        err: Err,
    ) -> Result<T, At<E>>;

    /// Attach an error as diagnostic context (not in `.source()` chain).
    #[deprecated(
        since = "0.1.4",
        note = "Renamed to `at_aside_error()`. The attached error is NOT part of the `.source()` chain."
    )]
    #[track_caller]
    fn at_error<Err: core::error::Error + Send + Sync + 'static>(
        self,
        err: Err,
    ) -> Result<T, At<E>>;

    /// Add crate boundary marker to last location (or create one if empty).
    #[track_caller]
    fn at_crate(self, info: &'static AtCrateInfo) -> Result<T, At<E>>;

    /// Add a location frame with the caller's function name as context.
    ///
    /// Captures both file:line:col AND the function name at zero runtime cost.
    /// Pass an empty closure `|| {}` - its type includes the parent function name.
    #[track_caller]
    fn at_fn<F: Fn()>(self, marker: F) -> Result<T, At<E>>;

    /// Add a location frame with an explicit name as context.
    ///
    /// Like [`at_fn`](Self::at_fn) but with an explicit label.
    #[track_caller]
    fn at_named(self, name: &'static str) -> Result<T, At<E>>;

    /// Convert the error type while preserving the trace.
    ///
    /// This is a convenience method that combines `map_err` with `At::map_error`.
    ///
    /// ## Example
    ///
    /// ```rust
    /// use whereat::{at, At, ResultAtExt};
    ///
    /// #[derive(Debug)]
    /// struct InternalError;
    /// #[derive(Debug)]
    /// struct PublicError;
    ///
    /// fn internal() -> Result<(), At<InternalError>> {
    ///     Err(at(InternalError))
    /// }
    ///
    /// fn public() -> Result<(), At<PublicError>> {
    ///     // Clean conversion that preserves trace
    ///     internal().map_err_at(|_| PublicError)?;
    ///     Ok(())
    /// }
    /// ```
    fn map_err_at<E2, F>(self, f: F) -> Result<T, At<E2>>
    where
        F: FnOnce(E) -> E2;
}

impl<T, E> ResultAtExt<T, E> for Result<T, At<E>> {
    #[track_caller]
    #[inline]
    fn at(self) -> Result<T, At<E>> {
        match self {
            Ok(v) => Ok(v),
            Err(e) => Err(e.at()),
        }
    }

    #[track_caller]
    #[inline]
    fn at_str(self, msg: &'static str) -> Result<T, At<E>> {
        match self {
            Ok(v) => Ok(v),
            Err(e) => Err(e.at_str(msg)),
        }
    }

    #[track_caller]
    #[inline]
    fn at_string(self, f: impl FnOnce() -> String) -> Result<T, At<E>> {
        match self {
            Ok(v) => Ok(v),
            Err(e) => Err(e.at_string(f)),
        }
    }

    #[track_caller]
    #[inline]
    fn at_data<C: fmt::Display + Send + Sync + 'static>(
        self,
        f: impl FnOnce() -> C,
    ) -> Result<T, At<E>> {
        match self {
            Ok(v) => Ok(v),
            Err(e) => Err(e.at_data(f)),
        }
    }

    #[track_caller]
    #[inline]
    fn at_debug<C: fmt::Debug + Send + Sync + 'static>(
        self,
        f: impl FnOnce() -> C,
    ) -> Result<T, At<E>> {
        match self {
            Ok(v) => Ok(v),
            Err(e) => Err(e.at_debug(f)),
        }
    }

    #[track_caller]
    #[inline]
    fn at_aside_error<Err: core::error::Error + Send + Sync + 'static>(
        self,
        err: Err,
    ) -> Result<T, At<E>> {
        match self {
            Ok(v) => Ok(v),
            Err(e) => Err(e.at_aside_error(err)),
        }
    }

    #[allow(deprecated)]
    #[track_caller]
    #[inline]
    fn at_error<Err: core::error::Error + Send + Sync + 'static>(
        self,
        err: Err,
    ) -> Result<T, At<E>> {
        match self {
            Ok(v) => Ok(v),
            Err(e) => Err(e.at_error(err)),
        }
    }

    #[track_caller]
    #[inline]
    fn at_crate(self, info: &'static AtCrateInfo) -> Result<T, At<E>> {
        match self {
            Ok(v) => Ok(v),
            Err(e) => Err(e.at_crate(info)),
        }
    }

    #[track_caller]
    #[inline]
    fn at_fn<F: Fn()>(self, marker: F) -> Result<T, At<E>> {
        match self {
            Ok(v) => Ok(v),
            Err(e) => Err(e.at_fn(marker)),
        }
    }

    #[track_caller]
    #[inline]
    fn at_named(self, name: &'static str) -> Result<T, At<E>> {
        match self {
            Ok(v) => Ok(v),
            Err(e) => Err(e.at_named(name)),
        }
    }

    #[inline]
    fn map_err_at<E2, F>(self, f: F) -> Result<T, At<E2>>
    where
        F: FnOnce(E) -> E2,
    {
        match self {
            Ok(v) => Ok(v),
            Err(e) => Err(e.map_error(f)),
        }
    }
}

// ============================================================================
// ResultAtTraceableExt - for Results with AtTraceable errors
// ============================================================================

/// Extension trait for `Result<T, E>` where `E` implements [`AtTraceable`].
///
/// Provides the same ergonomics as [`ResultAtExt`] but for custom error types
/// that embed their own trace.
///
/// ## Example
///
/// ```rust
/// use whereat::{AtTrace, AtTraceable, ResultAtTraceableExt};
///
/// struct MyError {
///     msg: &'static str,
///     trace: AtTrace,
/// }
///
/// impl AtTraceable for MyError {
///     fn trace_mut(&mut self) -> &mut AtTrace { &mut self.trace }
///     fn trace(&self) -> Option<&AtTrace> { Some(&self.trace) }
///     fn fmt_message(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
///         write!(f, "{}", self.msg)
///     }
/// }
///
/// impl MyError {
///     #[track_caller]
///     fn new(msg: &'static str) -> Self {
///         Self { msg, trace: AtTrace::capture() }
///     }
/// }
///
/// fn inner() -> Result<(), MyError> {
///     Err(MyError::new("oops"))
/// }
///
/// fn outer() -> Result<(), MyError> {
///     inner().at_str("in outer")?;  // Works directly on Result!
///     Ok(())
/// }
/// ```
pub trait ResultAtTraceableExt<T, E: AtTraceable> {
    /// Add the caller's location to the error trace if this is `Err`.
    #[track_caller]
    fn at(self) -> Result<T, E>;

    /// Add static string context to last location (or create one if empty).
    #[track_caller]
    fn at_str(self, msg: &'static str) -> Result<T, E>;

    /// Add lazily-computed string context to last location (or create one if empty).
    #[track_caller]
    fn at_string(self, f: impl FnOnce() -> String) -> Result<T, E>;

    /// Add lazily-computed typed context (Display) to last location (or create one if empty).
    #[track_caller]
    fn at_data<C: fmt::Display + Send + Sync + 'static>(
        self,
        f: impl FnOnce() -> C,
    ) -> Result<T, E>;

    /// Add lazily-computed typed context (Debug) to last location (or create one if empty).
    #[track_caller]
    fn at_debug<C: fmt::Debug + Send + Sync + 'static>(self, f: impl FnOnce() -> C)
    -> Result<T, E>;

    /// Attach a related error as diagnostic context on the last frame.
    ///
    /// The attached error is **not** part of the `.source()` chain.
    #[track_caller]
    fn at_aside_error<Err: core::error::Error + Send + Sync + 'static>(
        self,
        err: Err,
    ) -> Result<T, E>;

    /// Attach an error as diagnostic context (not in `.source()` chain).
    #[deprecated(
        since = "0.1.4",
        note = "Renamed to `at_aside_error()`. The attached error is NOT part of the `.source()` chain."
    )]
    #[track_caller]
    fn at_error<Err: core::error::Error + Send + Sync + 'static>(self, err: Err) -> Result<T, E>;

    /// Add crate boundary marker to last location (or create one if empty).
    #[track_caller]
    fn at_crate(self, info: &'static AtCrateInfo) -> Result<T, E>;

    /// Add a location frame with the caller's function name as context.
    ///
    /// Captures both file:line:col AND the function name at zero runtime cost.
    /// Pass an empty closure `|| {}` - its type includes the parent function name.
    #[track_caller]
    fn at_fn<F: Fn()>(self, marker: F) -> Result<T, E>;

    /// Add a location frame with an explicit name as context.
    ///
    /// Like [`at_fn`](Self::at_fn) but with an explicit label.
    #[track_caller]
    fn at_named(self, name: &'static str) -> Result<T, E>;
}

impl<T, E: AtTraceable> ResultAtTraceableExt<T, E> for Result<T, E> {
    #[track_caller]
    #[inline]
    fn at(self) -> Result<T, E> {
        self.map_err(|e| e.at())
    }

    #[track_caller]
    #[inline]
    fn at_str(self, msg: &'static str) -> Result<T, E> {
        self.map_err(|e| e.at_str(msg))
    }

    #[track_caller]
    #[inline]
    fn at_string(self, f: impl FnOnce() -> String) -> Result<T, E> {
        self.map_err(|e| e.at_string(f))
    }

    #[track_caller]
    #[inline]
    fn at_data<C: fmt::Display + Send + Sync + 'static>(
        self,
        f: impl FnOnce() -> C,
    ) -> Result<T, E> {
        self.map_err(|e| e.at_data(f))
    }

    #[track_caller]
    #[inline]
    fn at_debug<C: fmt::Debug + Send + Sync + 'static>(
        self,
        f: impl FnOnce() -> C,
    ) -> Result<T, E> {
        self.map_err(|e| e.at_debug(f))
    }

    #[track_caller]
    #[inline]
    fn at_aside_error<Err: core::error::Error + Send + Sync + 'static>(
        self,
        err: Err,
    ) -> Result<T, E> {
        self.map_err(|e| e.at_aside_error(err))
    }

    #[allow(deprecated)]
    #[track_caller]
    #[inline]
    fn at_error<Err: core::error::Error + Send + Sync + 'static>(self, err: Err) -> Result<T, E> {
        self.map_err(|e| e.at_error(err))
    }

    #[track_caller]
    #[inline]
    fn at_crate(self, info: &'static AtCrateInfo) -> Result<T, E> {
        self.map_err(|e| e.at_crate(info))
    }

    #[track_caller]
    #[inline]
    fn at_fn<F: Fn()>(self, marker: F) -> Result<T, E> {
        self.map_err(|e| e.at_fn(marker))
    }

    #[track_caller]
    #[inline]
    fn at_named(self, name: &'static str) -> Result<T, E> {
        self.map_err(|e| e.at_named(name))
    }
}