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
use std::{any::TypeId, marker::PhantomData};
use tracing::{Dispatch, Id, Subscriber};
use tracing_subscriber::{layer::Context, registry::LookupSpan, Layer};
use crate::token::UnsafeAllocationGroupToken;
pub(crate) struct WithAllocationGroup {
with_allocation_group: fn(&Dispatch, &Id, UnsafeAllocationGroupToken),
}
impl WithAllocationGroup {
pub fn with_allocation_group(
&self,
dispatch: &Dispatch,
id: &Id,
unsafe_token: UnsafeAllocationGroupToken,
) {
(self.with_allocation_group)(dispatch, id, unsafe_token)
}
}
#[cfg_attr(docsrs, doc(cfg(feature = "tracing-compat")))]
pub struct AllocationLayer<S> {
ctx: WithAllocationGroup,
_subscriber: PhantomData<fn(S)>,
}
impl<S> AllocationLayer<S>
where
S: Subscriber + for<'span> LookupSpan<'span>,
{
pub fn new() -> Self {
let ctx = WithAllocationGroup {
with_allocation_group: Self::with_allocation_group,
};
Self {
ctx,
_subscriber: PhantomData,
}
}
fn with_allocation_group(
dispatch: &Dispatch,
id: &Id,
unsafe_token: UnsafeAllocationGroupToken,
) {
let subscriber = dispatch
.downcast_ref::<S>()
.expect("subscriber should downcast to expected type; this is a bug!");
let span = subscriber
.span(id)
.expect("registry should have a span for the current ID");
span.extensions_mut().insert(unsafe_token);
}
}
impl<S> Layer<S> for AllocationLayer<S>
where
S: Subscriber + for<'a> LookupSpan<'a>,
{
fn on_enter(&self, id: &Id, ctx: Context<'_, S>) {
if let Some(span_ref) = ctx.span(id) {
if let Some(token) = span_ref
.extensions_mut()
.get_mut::<UnsafeAllocationGroupToken>()
{
token.enter();
}
}
}
fn on_exit(&self, id: &Id, ctx: Context<'_, S>) {
if let Some(span_ref) = ctx.span(id) {
if let Some(token) = span_ref
.extensions_mut()
.get_mut::<UnsafeAllocationGroupToken>()
{
token.exit();
}
}
}
unsafe fn downcast_raw(&self, id: TypeId) -> Option<*const ()> {
match id {
id if id == TypeId::of::<Self>() => Some(self as *const _ as *const ()),
id if id == TypeId::of::<WithAllocationGroup>() => {
Some(&self.ctx as *const _ as *const ())
}
_ => None,
}
}
}
impl<S> Default for AllocationLayer<S>
where
S: Subscriber + for<'span> LookupSpan<'span>,
{
fn default() -> Self {
AllocationLayer::new()
}
}