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
#![cfg_attr(test, allow(non_snake_case))]
use std::{
collections::VecDeque,
sync::{Arc, Mutex},
};
use tracing_core::{event, span, subscriber};
use tracing_subscriber::layer;
use visitor::FieldValueVisitor;
pub use visitor::FieldValueMap;
pub use lazy_static;
pub use tracing;
pub use tracing_subscriber;
pub mod debug_fmt_ext;
#[cfg(test)]
mod tests;
pub mod visitor;
#[derive(Default)]
pub struct Layer<T> {
log: Arc<Mutex<VecDeque<T>>>,
}
impl<T> Layer<T> {
pub fn new() -> Self {
Self {
log: Arc::new(Mutex::new(VecDeque::new())),
}
}
pub fn capture(&self, entry: T) {
let mut log = self.log.lock().expect("log mutex shouldn't be poisoned");
log.push_back(entry);
}
}
impl Layer<Notification> {
pub fn drain_events(&self) -> Vec<Event> {
let mut log = self.log.lock().expect("log mutex shouldn't be poisoned");
let events: Vec<Event> = log
.drain(..)
.filter_map(|val| match val {
Notification::Event { event, ctx: _ } => Some(event),
_ => None,
})
.collect();
events
}
}
pub trait LayerTransform<S> {
fn from_new_span(
attrs: &span::Attributes<'_>,
id: &span::Id,
ctx: layer::Context<'_, S>,
) -> Self;
fn from_on_record(
span: &span::Id,
values: &span::Record<'_>,
ctx: layer::Context<'_, S>,
) -> Self;
fn from_on_follows_from(
span: &span::Id,
follows: &span::Id,
ctx: layer::Context<'_, S>,
) -> Self;
fn from_on_event(event: &event::Event<'_>, ctx: layer::Context<'_, S>) -> Self;
fn from_on_enter(id: &span::Id, ctx: layer::Context<'_, S>) -> Self;
fn from_on_exit(id: &span::Id, ctx: layer::Context<'_, S>) -> Self;
fn from_on_close(id: span::Id, ctx: layer::Context<'_, S>) -> Self;
fn from_on_id_change(old: &span::Id, new: &span::Id, ctx: layer::Context<'_, S>) -> Self;
}
#[derive(Debug)]
pub struct FieldSet {}
impl From<&tracing_core::field::FieldSet> for FieldSet {
fn from(_fields: &tracing_core::field::FieldSet) -> Self {
Self {}
}
}
#[derive(Debug)]
pub struct ValueSet {}
impl From<&tracing_core::field::ValueSet<'_>> for ValueSet {
fn from(_values: &tracing_core::field::ValueSet<'_>) -> Self {
Self {}
}
}
#[derive(Debug)]
#[allow(dead_code)] pub struct Metadata {
name: String,
target: String,
level: tracing_core::Level,
module_path: Option<String>,
file: Option<String>,
line: Option<u32>,
fields: FieldSet,
}
impl From<&'static tracing_core::Metadata<'static>> for Metadata {
fn from(metadata: &'static tracing_core::Metadata<'static>) -> Self {
Self {
name: metadata.name().to_string(),
target: metadata.target().to_string(),
level: *metadata.level(),
module_path: metadata.module_path().map(ToString::to_string),
file: metadata.file().map(ToString::to_string),
line: metadata.line(),
fields: metadata.fields().into(),
}
}
}
#[derive(Debug)]
#[allow(dead_code)] pub struct Attributes {
metadata: Metadata,
values: ValueSet,
parent: Option<span::Id>,
}
impl From<&span::Attributes<'_>> for Attributes {
fn from(attrs: &span::Attributes<'_>) -> Self {
Self {
metadata: attrs.metadata().into(),
values: attrs.values().into(),
parent: attrs.parent().map(Clone::clone),
}
}
}
#[derive(Debug)]
pub struct Context {}
impl<S> From<layer::Context<'_, S>> for Context {
fn from(_ctx: layer::Context<'_, S>) -> Self {
Self {}
}
}
#[derive(Debug)]
#[allow(dead_code)] pub struct Event {
fields: FieldValueMap,
metadata: Metadata,
parent: Option<span::Id>,
}
impl Event {
pub fn fields(&self) -> &FieldValueMap {
&self.fields
}
}
impl From<&event::Event<'_>> for Event {
fn from(event: &event::Event<'_>) -> Self {
let mut visitor = FieldValueVisitor::default();
event.record(&mut visitor);
Self {
fields: visitor.take_data(),
metadata: event.metadata().into(),
parent: event.parent().map(Clone::clone),
}
}
}
#[derive(Debug)]
pub struct RecordValues {}
impl From<&span::Record<'_>> for RecordValues {
fn from(_record: &span::Record<'_>) -> Self {
Self {}
}
}
#[derive(Debug)]
pub enum Notification {
NewSpan {
id: span::Id,
attributes: Attributes,
ctx: Context,
},
Record {
id: span::Id,
values: RecordValues,
ctx: Context,
},
Enter {
id: span::Id,
ctx: Context,
},
Exit {
id: span::Id,
ctx: Context,
},
Close {
id: span::Id,
ctx: Context,
},
FollowsFrom {
span: span::Id,
follows: span::Id,
ctx: Context,
},
Event {
event: Event,
ctx: Context,
},
IdChange {
old: span::Id,
new: span::Id,
ctx: Context,
},
}
impl<S> LayerTransform<S> for Notification {
fn from_new_span(
attrs: &span::Attributes<'_>,
id: &span::Id,
ctx: layer::Context<'_, S>,
) -> Self {
Notification::NewSpan {
id: id.clone(),
attributes: attrs.into(),
ctx: ctx.into(),
}
}
fn from_on_record(
span: &span::Id,
values: &span::Record<'_>,
ctx: layer::Context<'_, S>,
) -> Self {
Notification::Record {
id: span.clone(),
values: values.into(),
ctx: ctx.into(),
}
}
fn from_on_follows_from(
span: &span::Id,
follows: &span::Id,
ctx: layer::Context<'_, S>,
) -> Self {
Notification::FollowsFrom {
span: span.clone(),
follows: follows.clone(),
ctx: ctx.into(),
}
}
fn from_on_event(event: &event::Event<'_>, ctx: layer::Context<'_, S>) -> Self {
Notification::Event {
event: event.into(),
ctx: ctx.into(),
}
}
fn from_on_enter(id: &span::Id, ctx: layer::Context<'_, S>) -> Self {
Notification::Enter {
id: id.clone(),
ctx: ctx.into(),
}
}
fn from_on_exit(id: &span::Id, ctx: layer::Context<'_, S>) -> Self {
Notification::Exit {
id: id.clone(),
ctx: ctx.into(),
}
}
fn from_on_close(id: span::Id, ctx: layer::Context<'_, S>) -> Self {
Notification::Close {
id,
ctx: ctx.into(),
}
}
fn from_on_id_change(old: &span::Id, new: &span::Id, ctx: layer::Context<'_, S>) -> Self {
Notification::IdChange {
old: old.clone(),
new: new.clone(),
ctx: ctx.into(),
}
}
}
impl<S, T> layer::Layer<S> for &'static Layer<T>
where
S: subscriber::Subscriber,
T: LayerTransform<S>,
{
fn on_record(&self, span: &span::Id, values: &span::Record<'_>, ctx: layer::Context<'_, S>) {
self.capture(T::from_on_record(span, values, ctx))
}
fn on_follows_from(&self, span: &span::Id, follows: &span::Id, ctx: layer::Context<'_, S>) {
self.capture(T::from_on_follows_from(span, follows, ctx))
}
fn on_event(&self, event: &event::Event<'_>, ctx: layer::Context<'_, S>) {
self.capture(T::from_on_event(event, ctx))
}
fn on_enter(&self, id: &span::Id, ctx: layer::Context<'_, S>) {
self.capture(T::from_on_enter(id, ctx))
}
fn on_exit(&self, id: &span::Id, ctx: layer::Context<'_, S>) {
self.capture(T::from_on_exit(id, ctx))
}
fn on_close(&self, id: span::Id, ctx: layer::Context<'_, S>) {
self.capture(T::from_on_close(id, ctx))
}
fn on_id_change(&self, old: &span::Id, new: &span::Id, ctx: layer::Context<'_, S>) {
self.capture(T::from_on_id_change(old, new, ctx))
}
}