emit_traceparent 1.18.0

W3C traceparent support for emit.
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
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
/*!
Distributed trace context for `emit`.

This library implements the [W3C trace context](https://www.w3.org/TR/trace-context) standard over `emit`'s tracing functionality. Trace context is propagated as a traceparent and tracestate in a simple text format. Here's an example of a traceparent:

```text
00-4bf92f3577b34da6a3ce929d0e0e4736-00f067aa0ba902b7-01
```

It includes:

- A _version_: `00`.
- A _trace id_: `4bf92f3577b34da6a3ce929d0e0e4736`.
- A _span id_: `00f067aa0ba902b7`.
- A set of _trace flags_: `01` (sampled).

Here's an example of tracestate:

```text
vendorname1=opaqueValue1,vendorname2=opaqueValue2
```

It contains a collection of key-value pairs with vendor-specific information.

# Getting started

Add `emit` and `emit_traceparent` to your `Cargo.toml`:

```toml
[dependencies.emit]
version = "1.18.0"

[dependencies.emit_traceparent]
version = "1.18.0"
```

Initialize `emit` using the [`setup`] or [`setup_with_sampler`] functions from this library:

```
fn main() {
    let rt = emit_traceparent::setup()
        .emit_to(emit_term::stdout())
        .init();

    // Your app code goes here

    rt.blocking_flush(std::time::Duration::from_secs(30));
}
```

# Incoming traceparent

When a request arrives, parse a [`Traceparent`] from it and push it onto the current context. Handle the request in the returned [`emit::Frame`] to make trace context correlate with the upstream service:

```
let traceparent = emit_traceparent::Traceparent::try_from_str("00-4bf92f3577b34da6a3ce929d0e0e4736-00f067aa0ba902b7-01")
    .unwrap_or_else(|_| emit_traceparent::Traceparent::current());

// 2. Push the traceparent onto the context and execute your handler within it
traceparent.push().call(handle_request);

#[emit::span("incoming request")]
fn handle_request() {
    // Your code goes here
}
```

# Outgoing traceparent

When making an outgoing request, get the current [`Traceparent`] and format it into a header for the downstream service:

```
# use std::collections::HashMap;
let mut headers = HashMap::<String, String>::new();

// 1. Get the current traceparent
let traceparent = emit_traceparent::Traceparent::current();

if traceparent.is_valid() {
    // 2. Add the traceparent to the outgoing request
    headers.insert("traceparent".into(), traceparent.to_string());
}
```

# `Traceparent` and `SpanCtxt`

`emit` stores the active span context as an [`emit::SpanCtxt`] in its [`emit::Ctxt`], which it generates in [`macro@emit::span`] for you. `SpanCtxt` doesn't have the concept of sampling, so if it exists then it's sampled.
When in use, the [`Traceparent`] type defined by this library becomes the source of truth for the `SpanCtxt`. If the current `Traceparent` is not sampled, then no `SpanCtxt` will be returned.

Only the span id on incoming `SpanCtxt`s created by [`macro@emit::span`] are respected. The current `Traceparent` overrides any incoming trace ids or span parents.

# Sampling

The [`setup_with_sampler`] function lets you configure a sampling function that's run on the first span of each trace.
See the function docs for more details.
*/

#![deny(missing_docs)]

use std::{
    cell::RefCell,
    fmt::{self, Write as _},
    mem,
    ops::{BitAnd, BitOr, ControlFlow, Not},
    str::{self, FromStr},
};

use emit::{
    event::ToEvent,
    span::{SpanCtxt, SpanId, TraceId},
    well_known::{KEY_SPAN_ID, KEY_SPAN_PARENT, KEY_TRACE_ID},
    Ctxt, Empty, Filter, Frame, Props, Str, Value,
};

/**
Start a builder for a distributed-trace-aware pipeline.

```
fn main() {
    let rt = emit_traceparent::setup()
        .emit_to(emit_term::stdout())
        .init();

    // Your app code goes here

    rt.blocking_flush(std::time::Duration::from_secs(30));
}
```
*/
pub fn setup() -> emit::Setup<
    emit::setup::DefaultEmitter,
    TraceparentFilter,
    TraceparentCtxt<emit::setup::DefaultCtxt>,
> {
    emit::setup()
        .emit_when(TraceparentFilter::new())
        .map_ctxt(|ctxt| TraceparentCtxt::new(ctxt))
}

/**
Start a builder for a distributed-trace-aware pipeline with a sampler.

The sampler will be called once for each trace when it's started.
If the sampler returns `true`, the trace will be emitted.
If the sampler returns `false`, the trace will be discarded.

```
use std::sync::atomic::{AtomicUsize, Ordering};

fn main() {
    let rt = emit_traceparent::setup_with_sampler({
        let counter = AtomicUsize::new(0);

        move |_| {
            // Sample 1 in every 10 traces
            counter.fetch_add(1, Ordering::Relaxed) % 10 == 0
        }
    })
    .emit_to(emit_term::stdout())
    .init();

    // Your app code goes here

    rt.blocking_flush(std::time::Duration::from_secs(30));
}
```

Note that other events emitted within an unsampled trace will still be emitted.
You can add the [`in_sampled_trace_filter`] filter to filter out events in unsampled traces:

```
use std::sync::atomic::{AtomicUsize, Ordering};

fn main() {
    let rt = emit_traceparent::setup_with_sampler({
        let counter = AtomicUsize::new(0);

        move |_| {
            // Sample 1 in every 10 traces
            counter.fetch_add(1, Ordering::Relaxed) % 10 == 0
        }
    })
    // The `true` here tells us to include events outside traces
    // If we pass `false` then any event outside a trace will be discarded
    .and_emit_when(emit_traceparent::in_sampled_trace_filter(true))
    .emit_to(emit_term::stdout())
    .init();

    // Your app code goes here

    rt.blocking_flush(std::time::Duration::from_secs(30));
}
```

The `true` parameter passed to `in_sampled_trace_filter` here includes events that aren't in any trace.
Passing `false` will also filter out events that aren't part of any trace.
*/
pub fn setup_with_sampler<S: Fn(&SpanCtxt) -> bool + Send + Sync + 'static>(
    sampler: S,
) -> emit::Setup<
    emit::setup::DefaultEmitter,
    TraceparentFilter<S>,
    TraceparentCtxt<emit::setup::DefaultCtxt>,
> {
    emit::setup()
        .emit_when(TraceparentFilter::new_with_sampler(sampler))
        .map_ctxt(|ctxt| TraceparentCtxt::new(ctxt))
}

/**
An error encountered attempting to work with a [`Traceparent`].
*/
#[derive(Debug)]
pub struct Error {
    msg: String,
}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        fmt::Display::fmt(&self.msg, f)
    }
}

impl std::error::Error for Error {}

/**
Get the current [`Traceparent`] and [`Tracestate`].

This method is equivalent to calling [`Traceparent::current`] and [`Tracestate::current`], but avoids some duplicate overhead.
*/
pub fn current() -> (Traceparent, Tracestate) {
    get_active_traceparent()
        .map(|active| (active.traceparent, active.tracestate))
        .unwrap_or((Traceparent::empty(), Tracestate::empty()))
}

/**
Set the current [`Traceparent`] and [`Tracestate`].

This method is equivalent to calling [`Traceparent::push`] and [`Tracestate::push`], but avoids some duplicate overhead.
*/
pub fn push(traceparent: Traceparent, tracestate: Tracestate) -> Frame<TraceparentCtxt> {
    let mut frame = Frame::current(TraceparentCtxt::new(Empty));

    let slot = if let Some(active) = get_active_traceparent() {
        ActiveTraceparent {
            span_parent: if active.is_parent_of(traceparent.trace_id) {
                active.traceparent.span_id
            } else {
                None
            },
            traceparent,
            tracestate,
        }
    } else {
        ActiveTraceparent {
            traceparent,
            tracestate,
            span_parent: None,
        }
    };

    frame.inner_mut().slot = Some(slot);
    frame.inner_mut().active = true;

    frame
}

/**
A [W3C traceparent](https://www.w3.org/TR/trace-context/#traceparent-header).

This type contains `emit`'s [`TraceId`] and [`SpanId`], along with [`TraceFlags`] that determine sampling.

Traceparents exist at the edges of your application.
On incoming requests, it may carry a traceparent header that can be parsed into a `Traceparent` and pushed onto the active trace context with [`Traceparent::push`].
On outgoing requests, the active trace context is pulled by [`Traceparent::current`] and formatted into a traceparent header.
*/
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct Traceparent {
    trace_id: Option<TraceId>,
    span_id: Option<SpanId>,
    trace_flags: TraceFlags,
}

impl Traceparent {
    /**
    Create a new traceparent with the given trace id, span id, and trace flags.
    */
    pub const fn new(
        trace_id: Option<TraceId>,
        span_id: Option<SpanId>,
        trace_flags: TraceFlags,
    ) -> Self {
        Traceparent {
            trace_id,
            span_id,
            trace_flags,
        }
    }

    const fn empty() -> Self {
        Traceparent::new(None, None, TraceFlags::SAMPLED)
    }

    /**
    Parse a traceparent from its text format, as defined in the [W3C standard](https://www.w3.org/TR/trace-context).
    */
    pub fn try_from_str(traceparent: &str) -> Result<Self, Error> {
        let bytes = traceparent.as_bytes();

        if bytes.len() != 55 {
            return Err(Error {
                msg: "traceparent headers must be 55 bytes".into(),
            });
        }

        if bytes[2] != b'-' || bytes[35] != b'-' || bytes[52] != b'-' {
            return Err(Error {
                msg: format!("traceparent contains invalid field separators"),
            });
        }

        let version = &bytes[0..2];

        let b"00" = version else {
            return Err(Error {
                msg: format!("unexpected non '00' traceparent version"),
            });
        };

        let trace_id = &bytes[3..35];
        let span_id = &bytes[36..52];
        let trace_flags = &bytes[53..55];

        let trace_id = if trace_id == b"00000000000000000000000000000000" {
            None
        } else {
            Some(TraceId::try_from_hex_slice(trace_id).map_err(|e| Error { msg: e.to_string() })?)
        };

        let span_id = if span_id == b"0000000000000000" {
            None
        } else {
            Some(SpanId::try_from_hex_slice(span_id).map_err(|e| Error { msg: e.to_string() })?)
        };

        let trace_flags = TraceFlags::try_from_hex_slice(trace_flags)?;

        Ok(Traceparent::new(trace_id, span_id, trace_flags))
    }

    /**
    Get the trace id.
    */
    pub fn trace_id(&self) -> Option<&TraceId> {
        self.trace_id.as_ref()
    }

    /**
    Get the span id (also called the parent id).
    */
    pub fn span_id(&self) -> Option<&SpanId> {
        self.span_id.as_ref()
    }

    /**
    Get the trace flags.

    These flags can be used to tell whether the traceparent is for a sampled trace or not.
    */
    pub fn trace_flags(&self) -> &TraceFlags {
        &self.trace_flags
    }

    /**
    Whether the sampled flag is set.
    */
    pub fn is_sampled(&self) -> bool {
        self.trace_flags.is_sampled()
    }

    /**
    Get the current trace context.

    If no context has been set, this method will return a new traceparent with no trace id or span id, but with [`TraceFlags::SAMPLED`].

    Note that unless a [`TraceparentCtxt`] is configured in [`emit::setup`], or if trace context is being managed through [`Traceparent::push`], this method will return a new traceparent.
    It won't pick up values in [`emit::span::SpanCtxt`].
    */
    pub fn current() -> Self {
        get_active_traceparent()
            .map(|active| active.traceparent)
            .unwrap_or(Traceparent::empty())
    }

    /**
    Get a [`Frame`] that can set the current trace context in a scope.

    While the frame is active, [`Traceparent::current`] will return this traceparent.
    */
    pub fn push(&self) -> Frame<TraceparentCtxt> {
        let traceparent = *self;

        let mut frame = Frame::current(TraceparentCtxt::new(Empty));

        let slot = if let Some(active) = get_active_traceparent() {
            ActiveTraceparent {
                span_parent: if active.is_parent_of(self.trace_id) {
                    active.traceparent.span_id
                } else {
                    None
                },
                traceparent,
                tracestate: active.tracestate,
            }
        } else {
            ActiveTraceparent {
                traceparent,
                tracestate: Tracestate::empty(),
                span_parent: None,
            }
        };

        frame.inner_mut().slot = Some(slot);
        frame.inner_mut().active = true;

        frame
    }

    /**
    Whether the traceparent carries a non-empty trace id and span id.

    An invalid traceparent can still be used for propagation, but will likely be ignored by downstream services.
    */
    pub fn is_valid(&self) -> bool {
        self.trace_id.is_some() && self.span_id.is_some()
    }
}

impl FromStr for Traceparent {
    type Err = Error;

    fn from_str(header: &str) -> Result<Self, Error> {
        Self::try_from_str(header)
    }
}

impl fmt::Display for Traceparent {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.write_str("00-")?;

        if let Some(trace_id) = self.trace_id {
            fmt::Display::fmt(&trace_id, f)?;
            f.write_char('-')?;
        } else {
            f.write_str("00000000000000000000000000000000-")?;
        }

        if let Some(span_id) = self.span_id {
            fmt::Display::fmt(&span_id, f)?;
            f.write_char('-')?;
        } else {
            f.write_str("0000000000000000-")?;
        }

        fmt::Display::fmt(&self.trace_flags, f)
    }
}

/**
A set of flags associated with a [`Traceparent`].

Trace flags can be used to control and communicate sampling decisions between distributed services.
*/
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct TraceFlags(u8);

impl TraceFlags {
    /**
    An empty set of unsampled trace flags (`00`).
    */
    pub const EMPTY: Self = TraceFlags(0);

    /**
    A sampled set of trace flags (`01`).
    */
    pub const SAMPLED: Self = TraceFlags(1);

    const ALL: Self = TraceFlags(!0);

    /**
    Get a set of trace flags from a raw byte value.
    */
    pub fn from_u8(raw: u8) -> Self {
        TraceFlags(raw)
    }

    /**
    Get the trace flags as a raw byte value.
    */
    pub fn to_u8(&self) -> u8 {
        self.0
    }

    /**
    Whether the sampled flag is set (`01`).
    */
    pub fn is_sampled(&self) -> bool {
        self.0 & Self::SAMPLED.0 == 1
    }

    /**
    Convert the trace flags into a 2 byte ASCII-compatible hex string, like `01`.
    */
    pub fn to_hex(&self) -> [u8; 2] {
        const HEX_ENCODE_TABLE: [u8; 16] = [
            b'0', b'1', b'2', b'3', b'4', b'5', b'6', b'7', b'8', b'9', b'a', b'b', b'c', b'd',
            b'e', b'f',
        ];

        [
            HEX_ENCODE_TABLE[(self.0 >> 4) as usize],
            HEX_ENCODE_TABLE[(self.0 & 0x0f) as usize],
        ]
    }

    /**
    Try parse a slice of ASCII hex bytes into trace flags.

    If `hex` is not a 2 byte array of valid hex characters (`[a-fA-F0-9]`) then this method will fail.
    */
    pub fn try_from_hex_slice(hex: &[u8]) -> Result<Self, Error> {
        const HEX_DECODE_TABLE: &[u8; 256] = &{
            let mut buf = [0; 256];
            let mut i: u8 = 0;

            loop {
                buf[i as usize] = match i {
                    b'0'..=b'9' => i - b'0',
                    b'a'..=b'f' => i - b'a' + 10,
                    b'A'..=b'F' => i - b'A' + 10,
                    _ => 0xff,
                };

                if i == 255 {
                    break buf;
                }

                i += 1
            }
        };

        let hex: &[u8; 2] = hex.try_into().map_err(|_| Error {
            msg: "flags must be a 2 digit value".into(),
        })?;

        let h1 = HEX_DECODE_TABLE[hex[0] as usize];
        let h2 = HEX_DECODE_TABLE[hex[1] as usize];

        // We use `0xff` as a sentinel value to indicate
        // an invalid hex character sequence (like the letter `G`)
        if h1 | h2 == 0xff {
            return Err(Error {
                msg: "invalid hex character".into(),
            });
        }

        // The upper nibble needs to be shifted into position
        // to produce the final byte value
        Ok(TraceFlags((h1 << 4) | h2))
    }
}

impl BitAnd for TraceFlags {
    type Output = Self;

    fn bitand(self, other: Self) -> Self {
        TraceFlags(self.0 & other.0)
    }
}

impl BitOr for TraceFlags {
    type Output = Self;

    fn bitor(self, other: Self) -> Self {
        TraceFlags(self.0 | other.0)
    }
}

impl Not for TraceFlags {
    type Output = Self;

    fn not(self) -> Self {
        TraceFlags(!self.0)
    }
}

impl FromStr for TraceFlags {
    type Err = Error;

    fn from_str(flags: &str) -> Result<Self, Error> {
        Self::try_from_hex_slice(flags.as_bytes())
    }
}

impl fmt::Display for TraceFlags {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.write_str(str::from_utf8(&self.to_hex()).unwrap())
    }
}

/**
A [W3C tracestate](https://www.w3.org/TR/trace-context/#tracestate-header).

The role of `Tracestate` is to store and propagate the tracestate header.
It doesn't currently support any format-aware modification of the underlying value, nor does it parse or validate it.
*/
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Tracestate(Str<'static>);

impl fmt::Display for Tracestate {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        fmt::Display::fmt(&self.0, f)
    }
}

impl Tracestate {
    /**
    Construct a new tracestate with the given value, without checking its validity.

    This method is not unsafe. There are no safety properties tied to the validity of tracestate values.
    Downstream consumers may discard a tracestate value if it's not valid.
    */
    pub const fn new_raw(value: &'static str) -> Tracestate {
        Tracestate(Str::new(value))
    }

    /**
    Construct a new tracestate with the given value, without checking its validity.

    This method is not unsafe. There are no safety properties tied to the validity of tracestate values.
    Downstream consumers may discard a tracestate value if it's not valid.
    */
    pub const fn new_str_raw(value: Str<'static>) -> Tracestate {
        Tracestate(value)
    }

    /**
    Construct a new tracestate with the given value, without checking its validity.

    This method is not unsafe. There are no safety properties tied to the validity of tracestate values.
    Downstream consumers may discard a tracestate value if it's not valid.
    */
    pub fn new_owned_raw(value: impl Into<Box<str>>) -> Tracestate {
        Tracestate(Str::new_owned(value))
    }

    const fn empty() -> Tracestate {
        Tracestate(Str::new(""))
    }

    /**
    Get the value of this tracestate.
    */
    pub fn get(&self) -> &str {
        self.0.get()
    }

    /**
    Get the current trace state.

    If no context has been set, this method will return an empty value.
    */
    pub fn current() -> Self {
        get_active_traceparent()
            .map(|active| active.tracestate)
            .unwrap_or(Tracestate::empty())
    }

    /**
    Get a [`Frame`] that can set the current trace state in a scope.

    While the frame is active, [`Tracestate::current`] will return this state.
    */
    pub fn push(&self) -> Frame<TraceparentCtxt> {
        let tracestate = Tracestate(self.0.to_shared());

        let mut frame = Frame::current(TraceparentCtxt::new(Empty));

        let slot = if let Some(active) = get_active_traceparent() {
            ActiveTraceparent {
                span_parent: active.span_parent,
                traceparent: active.traceparent,
                tracestate,
            }
        } else {
            ActiveTraceparent {
                traceparent: Traceparent::empty(),
                tracestate,
                span_parent: None,
            }
        };

        frame.inner_mut().slot = Some(slot);
        frame.inner_mut().active = true;

        frame
    }
}

#[derive(Debug, Clone)]
struct ActiveTraceparent {
    traceparent: Traceparent,
    tracestate: Tracestate,
    span_parent: Option<SpanId>,
}

impl ActiveTraceparent {
    fn is_parent_of(&self, trace_id: Option<TraceId>) -> bool {
        // A traceparent is a parent of a trace id if:
        //   1. The `traceparent` has a trace id
        //   2. The `traceparent`'s trace id matches the incoming `trace_id`
        //
        // That means a `traceparent` is never considered the parent
        // of an empty `trace_id`, and a `trace_id` is never the child
        // of an empty `traceparent`

        self.traceparent.trace_id.is_some() && self.traceparent.trace_id == trace_id
    }
}

thread_local! {
    static ACTIVE_TRACEPARENT: RefCell<Option<ActiveTraceparent>> = RefCell::new(None);
}

fn set_active_traceparent(traceparent: Option<ActiveTraceparent>) -> Option<ActiveTraceparent> {
    ACTIVE_TRACEPARENT.with(|slot| {
        let mut slot = slot.borrow_mut();

        mem::replace(&mut *slot, traceparent)
    })
}

fn get_active_traceparent() -> Option<ActiveTraceparent> {
    ACTIVE_TRACEPARENT.with(|slot| slot.borrow().clone())
}

/**
A [`Ctxt`] that synchronizes [`Traceparent`]s with an underlying ambient context.

The trace context is shared by all instances of `TraceparentCtxt`, and any calls to [`Traceparent::current`] and [`Traceparent::push`].
*/
#[derive(Debug, Clone, Copy)]
pub struct TraceparentCtxt<C = Empty> {
    inner: C,
}

/**
The [`emit::Ctxt::Frame`] used by [`TraceparentCtxt`].
*/
#[derive(Debug, Clone)]
pub struct TraceparentCtxtFrame<F = Empty> {
    inner: F,
    active: bool,
    slot: Option<ActiveTraceparent>,
}

/**
The [`emit::Ctxt::Current`] used by [`TraceparentCtxt`].
*/
pub struct TraceparentCtxtProps<P: ?Sized> {
    inner: *const P,
    ctxt: SpanCtxt,
}

impl<P: Props + ?Sized> Props for TraceparentCtxtProps<P> {
    fn for_each<'kv, F: FnMut(Str<'kv>, Value<'kv>) -> ControlFlow<()>>(
        &'kv self,
        mut for_each: F,
    ) -> ControlFlow<()> {
        self.ctxt.for_each(&mut for_each)?;

        // SAFETY: This type is only exposed for arbitrarily short (`for<'a>`) lifetimes
        // so inner it's guaranteed to be valid for `'kv`, which must be shorter than its
        // original lifetime
        unsafe { &*self.inner }.for_each(for_each)
    }
}

impl<C> TraceparentCtxt<C> {
    /**
    Wrap the given context, synchronizing any [`emit::SpanCtxt`] with the current [`Traceparent`].
    */
    pub const fn new(inner: C) -> Self {
        TraceparentCtxt { inner }
    }
}

impl<C: Ctxt> Ctxt for TraceparentCtxt<C> {
    type Current = TraceparentCtxtProps<C::Current>;
    type Frame = TraceparentCtxtFrame<C::Frame>;

    fn with_current<R, F: FnOnce(&Self::Current) -> R>(&self, with: F) -> R {
        // Get the current traceparent and use it as the span context
        // if it's sampled
        let ctxt = get_active_traceparent()
            .and_then(|active| {
                if active.traceparent.trace_flags.is_sampled() {
                    Some(SpanCtxt::new(
                        active.traceparent.trace_id,
                        active.span_parent,
                        active.traceparent.span_id,
                    ))
                } else {
                    None
                }
            })
            .unwrap_or(SpanCtxt::empty());

        self.inner.with_current(|props| {
            let props = TraceparentCtxtProps {
                ctxt,
                inner: props as *const C::Current,
            };

            with(&props)
        })
    }

    fn open_root<P: Props>(&self, props: P) -> Self::Frame {
        let (slot, props) =
            incoming_traceparent(None::<fn(&SpanCtxt) -> bool>, props, TraceFlags::ALL);

        let inner = self.inner.open_root(props);

        TraceparentCtxtFrame {
            inner,
            active: true,
            slot,
        }
    }

    fn open_push<P: Props>(&self, props: P) -> Self::Frame {
        let (slot, props) =
            incoming_traceparent(None::<fn(&SpanCtxt) -> bool>, props, TraceFlags::ALL);

        let inner = self.inner.open_push(props);

        TraceparentCtxtFrame {
            inner,
            active: slot.is_some(),
            slot,
        }
    }

    fn open_disabled<P: Props>(&self, props: P) -> Self::Frame {
        let (slot, props) =
            incoming_traceparent(None::<fn(&SpanCtxt) -> bool>, props, TraceFlags::EMPTY);

        let inner = self.inner.open_disabled(props);

        TraceparentCtxtFrame {
            inner,
            active: slot.is_some(),
            slot,
        }
    }

    fn enter(&self, frame: &mut Self::Frame) {
        if frame.active {
            frame.slot = set_active_traceparent(frame.slot.take());
        }

        self.inner.enter(&mut frame.inner)
    }

    fn exit(&self, frame: &mut Self::Frame) {
        if frame.active {
            frame.slot = set_active_traceparent(frame.slot.take());
        }

        self.inner.exit(&mut frame.inner)
    }

    fn close(&self, frame: Self::Frame) {
        self.inner.close(frame.inner)
    }
}

fn incoming_traceparent(
    sampler: Option<impl Fn(&SpanCtxt) -> bool>,
    props: impl Props,
    trace_flags: TraceFlags,
) -> (Option<ActiveTraceparent>, impl Props) {
    let span_id = props.pull::<SpanId, _>(KEY_SPAN_ID);

    // Only consider props that carry a span id
    let Some(span_id) = span_id else {
        return (
            None,
            ExcludeTraceparentProps {
                check: false,
                inner: props,
            },
        );
    };

    let active = get_active_traceparent().filter(|active| active.traceparent.is_valid());

    // Only consider props if the span id has changed
    if Some(span_id)
        == active
            .as_ref()
            .and_then(|parent| parent.traceparent.span_id)
    {
        return (
            None,
            ExcludeTraceparentProps {
                check: false,
                inner: props,
            },
        );
    }

    // If we get this far then the props will be mapped to a traceparent

    let incoming = if let Some(active) = active {
        // The incoming context is for a child span
        //
        // Construct a traceparent from it with the same trace id and flags,
        // using the span id of the parent as the parent id of the incoming

        ActiveTraceparent {
            traceparent: Traceparent::new(
                active.traceparent.trace_id,
                Some(span_id),
                active.traceparent.trace_flags & trace_flags,
            ),
            tracestate: active.tracestate,
            span_parent: active.traceparent.span_id,
        }
    } else {
        // The incoming traceparent is for a root span

        let trace_id = props.pull::<TraceId, _>(KEY_TRACE_ID);

        // Run the sampler
        let trace_flags = if let Some(sampler) = sampler {
            // If the incoming flags don't allow sampling then don't bother running the sampler
            if trace_flags.is_sampled() && sampler(&SpanCtxt::new(trace_id, None, Some(span_id))) {
                // Sampled
                trace_flags & TraceFlags::SAMPLED
            } else {
                // Unsampled
                trace_flags & TraceFlags::EMPTY
            }
        } else {
            // There's no sampler; default to sampled
            trace_flags & TraceFlags::SAMPLED
        };

        ActiveTraceparent {
            traceparent: Traceparent::new(trace_id, Some(span_id), trace_flags),
            tracestate: Tracestate::empty(),
            span_parent: None,
        }
    };

    (
        Some(incoming),
        ExcludeTraceparentProps {
            check: true,
            inner: props,
        },
    )
}

struct ExcludeTraceparentProps<P> {
    check: bool,
    inner: P,
}

impl<P: Props> Props for ExcludeTraceparentProps<P> {
    fn for_each<'kv, F: FnMut(Str<'kv>, Value<'kv>) -> ControlFlow<()>>(
        &'kv self,
        mut for_each: F,
    ) -> ControlFlow<()> {
        if !self.check {
            return self.inner.for_each(for_each);
        }

        self.inner.for_each(|key, value| match key.get() {
            // Properties that come from the traceparent context
            KEY_TRACE_ID | KEY_SPAN_ID | KEY_SPAN_PARENT => ControlFlow::Continue(()),
            // Properties to pass through to the underlying context
            _ => for_each(key, value),
        })
    }
}

/**
A filter that runs a sampler over traces as they're created and excludes events when the current trace context is unsampled.

This filter uses [`Traceparent::current`] and checks [`TraceFlags::is_sampled`] on the returned [`Traceparent`] to determine whether the current context is sampled or not.
*/
pub struct TraceparentFilter<S = fn(&SpanCtxt) -> bool> {
    sampler: Option<S>,
}

impl TraceparentFilter {
    /**
    Create a new distributed-trace-aware filter with no sampler.

    All incoming traces will be included.
    */
    pub const fn new() -> Self {
        TraceparentFilter { sampler: None }
    }
}

impl<S> TraceparentFilter<S> {
    /**
    Create a new distributed-trace-aware filter with a sampler.

    The sampler will run at the start of the root span of each trace to determine whether to include it.
    If the sampler returns `true`, the trace and any events produced within it will be emitted.
    If the sampler returns `false`, the trace and any events produced within it will be discarded.
    */
    pub const fn new_with_sampler(sampler: S) -> Self {
        TraceparentFilter {
            sampler: Some(sampler),
        }
    }
}

impl<S: Fn(&SpanCtxt) -> bool> Filter for TraceparentFilter<S> {
    fn matches<E: ToEvent>(&self, evt: E) -> bool {
        let evt = evt.to_event();

        // If the event is a span then run the sampler over its incoming traceparent
        if emit::kind::is_span_filter().matches(&evt) {
            if let (Some(incoming), _) =
                incoming_traceparent(self.sampler.as_ref(), evt.props(), TraceFlags::SAMPLED)
            {
                return incoming.traceparent.trace_flags().is_sampled();
            }
        }

        // If the event is not a span then include it
        true
    }
}

/**
A filter that matches events in a sampled trace.
*/
pub struct InSampledTraceFilter {
    match_events_outside_traces: bool,
}

impl Filter for InSampledTraceFilter {
    fn matches<E: ToEvent>(&self, _: E) -> bool {
        if let Some(active) = get_active_traceparent() {
            active.traceparent.trace_flags().is_sampled()
        } else {
            self.match_events_outside_traces
        }
    }
}

impl InSampledTraceFilter {
    /**
    Create a filter that matches events in sampled traces.

    The `match_events_outside_traces` parameter determines whether events outside of any trace are matched or discarded.
    */
    pub const fn new(match_events_outside_traces: bool) -> Self {
        InSampledTraceFilter {
            match_events_outside_traces,
        }
    }
}

/**
Create a filter that matches events in sampled traces.

The `match_events_outside_traces` parameter determines whether events outside of any trace are matched or discarded.
*/
pub const fn in_sampled_trace_filter(match_events_outside_traces: bool) -> InSampledTraceFilter {
    InSampledTraceFilter::new(match_events_outside_traces)
}

#[cfg(test)]
mod tests {
    use super::*;

    use emit::{
        and::And,
        emitter, filter,
        platform::{
            rand_rng::RandRng, system_clock::SystemClock, thread_local_ctxt::ThreadLocalCtxt,
        },
        runtime::Runtime,
        Empty, Rng,
    };

    use std::sync::atomic::{AtomicUsize, Ordering};

    #[test]
    fn traceparent_roundtrip() {
        let traceparent = Traceparent::new(None, None, TraceFlags::EMPTY);

        assert_eq!(
            "00-00000000000000000000000000000000-0000000000000000-00",
            traceparent.to_string()
        );

        assert_eq!(
            traceparent,
            Traceparent::try_from_str(&traceparent.to_string()).unwrap()
        );

        let rng = RandRng::new();
        for _ in 0..1_000 {
            let trace_id = TraceId::random(&rng);
            let span_id = SpanId::random(&rng);
            let trace_flags = TraceFlags::from_u8(rng.gen_u64().unwrap() as u8);

            let traceparent = Traceparent::new(trace_id, span_id, trace_flags);
            let formatted = traceparent.to_string();

            assert_eq!(
                Some(traceparent),
                Traceparent::try_from_str(&formatted).ok(),
                "{traceparent:?} ({formatted}) did not roundtrip"
            );
        }
    }

    #[test]
    fn traceparent_parse_invalid() {
        for case in [
            "",
            "00-4bf92f3577b34da6a3ce929d0e0e4736-00f067aa0ba902b7-010",
            "00 4bf92f3577b34da6a3ce929d0e0e4736 00f067aa0ba902b7 01",
            "0x-4bf92f3577b34da6a3ce929d0e0e4736-00f067aa0ba902b7-01",
            "00-4bf92f3577b34da6a3ce929d0e0e473x-00f067aa0ba902b7-01",
            "00-4bf92f3577b34da6a3ce929d0e0e4736-00f067aa0ba902bx-01",
            "00-4bf92f3577b34da6a3ce929d0e0e4736-00f067aa0ba902b7-0x",
        ] {
            assert!(Traceparent::try_from_str(case).is_err());
        }
    }

    #[test]
    fn traceparent_set_current_sampled() {
        let rng = RandRng::new();

        assert_eq!(None, Traceparent::current().trace_id());
        assert_eq!(None, Traceparent::current().span_id());
        assert_eq!(TraceFlags::SAMPLED, *Traceparent::current().trace_flags());

        let traceparent = Traceparent::new(
            TraceId::random(&rng),
            SpanId::random(&rng),
            TraceFlags::SAMPLED,
        );

        let frame = traceparent.push();

        assert_eq!(None, Traceparent::current().trace_id());
        assert_eq!(None, Traceparent::current().span_id());
        assert_eq!(TraceFlags::SAMPLED, *Traceparent::current().trace_flags());

        frame.call(|| {
            assert_eq!(traceparent, Traceparent::current());

            // Any `TraceparentCtxt` should observe the current trace context
            let emit_ctxt = SpanCtxt::current(TraceparentCtxt::new(Empty));

            assert_eq!(traceparent.trace_id(), emit_ctxt.trace_id());
            assert_eq!(traceparent.span_id(), emit_ctxt.span_id());
            assert!(emit_ctxt.span_parent().is_none());
        });

        assert_eq!(None, Traceparent::current().trace_id());
        assert_eq!(None, Traceparent::current().span_id());
        assert_eq!(TraceFlags::SAMPLED, *Traceparent::current().trace_flags());
    }

    #[test]
    fn traceparent_set_current_unsampled() {
        let rng = RandRng::new();

        let traceparent = Traceparent::new(
            TraceId::random(&rng),
            SpanId::random(&rng),
            TraceFlags::EMPTY,
        );

        traceparent.push().call(|| {
            // The `emit` context should be empty because the active traceparent is unsampled
            let emit_ctxt = SpanCtxt::current(TraceparentCtxt::new(Empty));

            assert!(emit_ctxt.trace_id().is_none());
            assert!(emit_ctxt.span_id().is_none());
            assert!(emit_ctxt.span_parent().is_none());
        });

        assert_eq!(TraceFlags::SAMPLED, *Traceparent::current().trace_flags());
    }

    #[test]
    fn traceparent_ctxt() {
        let rng = RandRng::new();
        let ctxt = TraceparentCtxt::new(ThreadLocalCtxt::new());

        let span_ctxt_1 = SpanCtxt::current(&ctxt).new_child(&rng);

        span_ctxt_1.push(&ctxt).call(|| {
            let span_ctxt_2 = SpanCtxt::current(&ctxt).new_child(&rng);

            span_ctxt_2.push(&ctxt).call(|| {
                let traceparent = Traceparent::current();

                let span_ctxt_3 = SpanCtxt::current(&ctxt);

                assert_eq!(span_ctxt_2, span_ctxt_3);

                assert_eq!(
                    span_ctxt_1.trace_id().unwrap(),
                    span_ctxt_2.trace_id().unwrap()
                );
                assert_eq!(
                    span_ctxt_1.span_id().unwrap(),
                    span_ctxt_2.span_parent().unwrap()
                );
                assert!(span_ctxt_2.span_id().is_some());

                assert_eq!(
                    traceparent.trace_id().unwrap(),
                    span_ctxt_2.trace_id().unwrap()
                );
                assert_eq!(
                    traceparent.span_id().unwrap(),
                    span_ctxt_2.span_id().unwrap()
                );
                assert!(traceparent.trace_flags().is_sampled());
            });
        });
    }

    #[test]
    fn traceparent_ctxt_ignores_invalid_parent() {
        let rng = RandRng::new();
        let ctxt = TraceparentCtxt::new(ThreadLocalCtxt::new());

        Traceparent::new(None, None, TraceFlags::EMPTY)
            .push()
            .call(|| {
                let span_ctxt_1 = SpanCtxt::current(&ctxt).new_child(&rng);

                span_ctxt_1.push(&ctxt).call(|| {
                    let span_ctxt_2 = SpanCtxt::current(&ctxt);

                    assert_eq!(span_ctxt_1, span_ctxt_2);
                });
            });
    }

    #[test]
    fn traceparent_ctxt_ignores_mismatched_trace_ids() {
        let rng = RandRng::new();
        let ctxt = TraceparentCtxt::new(ThreadLocalCtxt::new());

        let span_ctxt_1 = SpanCtxt::current(&ctxt).new_child(&rng);

        span_ctxt_1.push(&ctxt).call(|| {
            let span_ctxt_2 = SpanCtxt::new_root(&rng);

            span_ctxt_2.push(&ctxt).call(|| {
                let traceparent = Traceparent::current();

                let span_ctxt_3 = SpanCtxt::current(&ctxt);

                // The trace id from `span_ctxt_2` is ignored, as well as its span parent
                assert_ne!(span_ctxt_2.trace_id(), span_ctxt_3.trace_id());

                assert_eq!(span_ctxt_2.span_id(), span_ctxt_3.span_id());

                assert_eq!(
                    span_ctxt_1.trace_id().unwrap(),
                    span_ctxt_3.trace_id().unwrap()
                );
                assert_eq!(
                    span_ctxt_1.span_id().unwrap(),
                    span_ctxt_3.span_parent().unwrap()
                );
                assert!(span_ctxt_3.span_id().is_some());

                assert_eq!(
                    traceparent.trace_id().unwrap(),
                    span_ctxt_3.trace_id().unwrap()
                );
                assert_eq!(
                    traceparent.span_id().unwrap(),
                    span_ctxt_3.span_id().unwrap()
                );
                assert!(traceparent.trace_flags().is_sampled());
            });
        });
    }

    #[test]
    fn traceparent_ctxt_unsets_on_empty_root() {
        let rng = RandRng::new();
        let ctxt = TraceparentCtxt::new(ThreadLocalCtxt::new());

        let span_ctxt_1 = SpanCtxt::current(&ctxt).new_child(&rng);

        span_ctxt_1.push(&ctxt).call(|| {
            let traceparent = Traceparent::current();

            assert_ne!(Traceparent::empty(), traceparent);

            let frame = emit::Frame::root(&ctxt, emit::Empty);

            frame.call(|| {
                let traceparent = Traceparent::current();
                let span_ctxt = SpanCtxt::current(&ctxt);

                // Since there's no active span context, there
                // also should be no active traceparent
                assert_eq!(Traceparent::empty(), traceparent);

                assert!(span_ctxt.trace_id().is_none());
                assert!(span_ctxt.span_id().is_none());
                assert!(span_ctxt.span_parent().is_none());
            })
        });
    }

    #[test]
    #[cfg(not(target_os = "wasi"))]
    fn traceparent_across_threads() {
        let rng = RandRng::new();

        let traceparent = Traceparent::new(
            TraceId::random(&rng),
            SpanId::random(&rng),
            TraceFlags::SAMPLED,
        );

        let frame = traceparent.push();

        std::thread::spawn(move || {
            frame.call(|| {
                let current = Traceparent::current();

                assert_eq!(traceparent, current);
            })
        })
        .join()
        .unwrap();
    }

    #[test]
    #[cfg(not(target_os = "wasi"))]
    fn traceparent_unsampled_across_threads() {
        let rng = RandRng::new();

        let traceparent = Traceparent::new(
            TraceId::random(&rng),
            SpanId::random(&rng),
            TraceFlags::EMPTY,
        );

        let frame = traceparent.push();

        std::thread::spawn(move || {
            frame.call(|| {
                let current = Traceparent::current();

                assert_eq!(traceparent, current);
            })
        })
        .join()
        .unwrap();
    }

    #[test]
    #[cfg(not(target_os = "wasi"))]
    fn traceparent_ctxt_across_threads() {
        let rng = RandRng::new();
        let ctxt = TraceparentCtxt::new(ThreadLocalCtxt::new());

        let span_ctxt = SpanCtxt::current(&ctxt).new_child(&rng).push(ctxt.clone());

        std::thread::spawn(move || {
            span_ctxt.call(|| {
                let traceparent = Traceparent::current();
                let span_ctxt = SpanCtxt::current(&ctxt);

                assert_eq!(span_ctxt.trace_id(), traceparent.trace_id());
                assert_eq!(span_ctxt.span_id(), traceparent.span_id());
                assert_eq!(TraceFlags::SAMPLED, *traceparent.trace_flags());
            })
        })
        .join()
        .unwrap();
    }

    #[test]
    #[cfg(not(target_os = "wasi"))]
    fn traceparent_unsampled_ctxt_across_threads() {
        let rng = RandRng::new();
        let ctxt = TraceparentCtxt::new(ThreadLocalCtxt::new());

        let frame = Traceparent::new(
            TraceId::random(&rng),
            SpanId::random(&rng),
            TraceFlags::EMPTY,
        )
        .push();

        frame.call(|| {
            let span_ctxt = SpanCtxt::current(&ctxt).new_child(&rng).push(ctxt.clone());

            std::thread::spawn(move || {
                span_ctxt.call(|| {
                    let traceparent = Traceparent::current();
                    let span_ctxt = SpanCtxt::current(&ctxt);

                    assert_eq!(None, span_ctxt.trace_id());
                    assert_eq!(None, span_ctxt.span_id());
                    assert_eq!(TraceFlags::EMPTY, *traceparent.trace_flags());
                })
            })
            .join()
            .unwrap();
        });
    }

    #[test]
    fn traceparent_span() {
        static RT: Runtime<
            Empty,
            And<filter::FromFn, TraceparentFilter>,
            TraceparentCtxt<ThreadLocalCtxt>,
            SystemClock,
            RandRng,
        > = Runtime::build(
            Empty,
            And::new(
                filter::FromFn::new(|evt| evt.mdl() != emit::path!("unsampled")),
                TraceparentFilter::new(),
            ),
            TraceparentCtxt::new(ThreadLocalCtxt::shared()),
            SystemClock::new(),
            RandRng::new(),
        );

        #[emit::span(rt: RT, mdl: emit::path!("unsampled"), "a")]
        fn unsampled() {
            unsampled_sampled();
        }

        #[emit::span(rt: RT, mdl: emit::path!("sampled"), "a")]
        fn unsampled_sampled() {
            let ctxt = SpanCtxt::current(RT.ctxt());
            let traceparent = Traceparent::current();

            assert!(ctxt.trace_id().is_none());
            assert!(ctxt.span_id().is_none());

            assert!(traceparent.trace_id().is_some());
            assert!(traceparent.span_id().is_some());
            assert!(!traceparent.trace_flags().is_sampled());
        }

        #[emit::span(rt: RT, mdl: emit::path!("sampled"), "a")]
        fn sampled() {
            let ctxt = SpanCtxt::current(RT.ctxt());
            let traceparent = Traceparent::current();

            assert!(ctxt.trace_id().is_some());
            assert!(ctxt.span_id().is_some());

            assert_eq!(traceparent.trace_id(), ctxt.trace_id());
            assert_eq!(traceparent.span_id(), ctxt.span_id());
            assert!(traceparent.trace_flags().is_sampled());
        }

        unsampled();
        sampled();
    }

    #[test]
    fn traceparent_span_sampler() {
        static EMITTER_SPAN_CALLS: AtomicUsize = AtomicUsize::new(0);
        static EMITTER_EVENT_CALLS: AtomicUsize = AtomicUsize::new(0);
        static SAMPLER_CALLS: AtomicUsize = AtomicUsize::new(0);

        static RT: Runtime<
            emitter::FromFn,
            TraceparentFilter,
            TraceparentCtxt<ThreadLocalCtxt>,
            SystemClock,
            RandRng,
        > = Runtime::build(
            emitter::FromFn::new(|evt| {
                if evt.props().pull("evt_kind") == Some(emit::Kind::Span) {
                    EMITTER_SPAN_CALLS.fetch_add(1, Ordering::Relaxed);
                } else {
                    EMITTER_EVENT_CALLS.fetch_add(1, Ordering::Relaxed);
                }
            }),
            TraceparentFilter::new_with_sampler({
                move |_| SAMPLER_CALLS.fetch_add(1, Ordering::Relaxed) % 10 == 0
            }),
            TraceparentCtxt::new(ThreadLocalCtxt::shared()),
            SystemClock::new(),
            RandRng::new(),
        );

        #[emit::span(rt: RT, "outer")]
        fn outer() {
            inner()
        }

        #[emit::span(rt: RT, "inner")]
        fn inner() {
            emit::emit!(rt: RT, "event");
        }

        for _ in 0..30 {
            outer();
        }

        // `outer` is called 3 times, which also calls `inner` 3 times
        assert_eq!(6, EMITTER_SPAN_CALLS.load(Ordering::Relaxed));

        // all events are included, regardless of sampling
        assert_eq!(30, EMITTER_EVENT_CALLS.load(Ordering::Relaxed));
    }

    #[test]
    fn tracestate_get_set() {
        assert_eq!("", Tracestate::current().get());
        assert_eq!(Tracestate::empty(), Tracestate::current());

        let state = Tracestate::new_raw("a=1");

        state.push().call(|| {
            assert_eq!("a=1", Tracestate::current().get());
            assert_eq!(state, Tracestate::current());
        });
    }

    #[test]
    fn in_trace_filter_includes_or_excludes_traced_events() {
        Traceparent::new(
            TraceId::from_u128(1),
            SpanId::from_u64(1),
            TraceFlags::SAMPLED,
        )
        .push()
        .call(|| {
            assert!(in_sampled_trace_filter(true).matches(emit::evt!("event")));
        });

        Traceparent::new(
            TraceId::from_u128(1),
            SpanId::from_u64(1),
            TraceFlags::EMPTY,
        )
        .push()
        .call(|| {
            assert!(!in_sampled_trace_filter(true).matches(emit::evt!("event")));
        });
    }

    #[test]
    fn in_trace_filter_includes_or_excludes_untraced_events() {
        assert!(in_sampled_trace_filter(true).matches(emit::evt!("event")));
        assert!(!in_sampled_trace_filter(false).matches(emit::evt!("event")));
    }
}