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
use std::fmt::Display;

use futures::Future;

/// Produces a [`Location`] when invoked in a function body.
///
/// ```
/// use async_backtrace::{location, Location};
///
/// #[tokio::main]
/// async fn main() {
///     assert_eq!(location!().to_string(), "rust_out::main::{{closure}} at backtrace/src/location.rs:8:16");
///
///     async {
///         assert_eq!(location!().to_string(), "rust_out::main::{{closure}}::{{closure}} at backtrace/src/location.rs:11:20");
///     }.await;
///     
///     (|| async {
///         assert_eq!(location!().to_string(), "rust_out::main::{{closure}}::{{closure}}::{{closure}} at backtrace/src/location.rs:15:20");
///     })().await;
/// }
/// ```
#[macro_export]
macro_rules! location {
    () => {{
        macro_rules! fn_name {
            () => {{
                fn type_name_of_val<T: ?Sized>(_: &T) -> &'static str {
                    core::any::type_name::<T>()
                }
                type_name_of_val(&|| {})
                    .strip_suffix("::{{closure}}")
                    .unwrap()
            }};
        }
        $crate::Location::from_components(fn_name!(), &(file!(), line!(), column!()))
    }};
}

/// A source code location in a function body.
///
/// To construct a `Location`, use [`location!()`].
#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
pub struct Location {
    /// The name of the surrounding function.
    name: Option<&'static str>,
    /// The file name, line number, and column number on which the surrounding
    /// function is defined.
    rest: &'static (&'static str, u32, u32),
}

impl Location {
    /// **DO NOT USE!** The signature of this method may change between
    /// non-breaking releases.
    #[doc(hidden)]
    #[inline(always)]
    pub const fn from_components(
        name: &'static str,
        rest: &'static (&'static str, u32, u32),
    ) -> Self {
        Self {
            name: Some(name),
            rest,
        }
    }

    /// Include the given future in taskdumps with this location.
    ///
    /// ## Examples
    /// ```
    /// # async fn bar() {}
    /// # async fn baz() {}
    /// async fn foo() {
    ///     async_backtrace::location!().frame(async move {
    ///         bar().await;
    ///         baz().await;
    ///     }).await
    /// }
    /// ```
    pub fn frame<F>(self, f: F) -> impl Future<Output = F::Output>
    where
        F: Future,
    {
        crate::Framed::new(f, self)
    }

    /// Produces the function name associated with this location.
    pub const fn name(&self) -> Option<&str> {
        self.name
    }

    /// Produces the file name associated with this location.
    pub const fn file(&self) -> &str {
        self.rest.0
    }

    /// Produces the line number associated with this location.
    pub const fn line(&self) -> u32 {
        self.rest.1
    }

    /// Produces the column number associated with this location.
    pub const fn column(&self) -> u32 {
        self.rest.2
    }
}

impl Display for Location {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let file = self.file();
        let line = self.line();
        let column = self.column();
        if let Some(name) = self.name() {
            f.write_fmt(format_args!("{name} at {file}:{line}:{column}"))
        } else {
            f.write_fmt(format_args!("{file}:{line}:{column}"))
        }
    }
}