one_collect 0.1.34811

Cross-platform library for capturing machine-level traces.
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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.

use std::hash::BuildHasherDefault;
use std::collections::{HashMap, HashSet};
use std::thread::{self};

use twox_hash::XxHash64;

use crate::sharing::*;
use crate::event::*;
use crate::event::os::windows::WindowsEventExtension;
use crate::Guid;

#[allow(dead_code)]
mod abi;
mod events;
pub mod tdh;

use abi::{
    EVENT_RECORD,
    TraceSession,
    TraceEnable,
    EVENT_HEADER_EXTENDED_DATA_ITEM,
    CLASSIC_EVENT_ID,
    EventRecordExt,
};

pub const PROPERTY_ENABLE_KEYWORD_0: u32 = abi::EVENT_ENABLE_PROPERTY_ENABLE_KEYWORD_0;
pub const PROPERTY_ENABLE_SILOS: u32 = abi::EVENT_ENABLE_PROPERTY_ENABLE_SILOS;
pub const PROPERTY_EVENT_KEY: u32 = abi::EVENT_ENABLE_PROPERTY_EVENT_KEY;
pub const PROPERTY_EXCLUDE_INPRIVATE: u32 = abi::EVENT_ENABLE_PROPERTY_EXCLUDE_INPRIVATE;
pub const PROPERTY_IGNORE_KEYWORD_0: u32 = abi::EVENT_ENABLE_PROPERTY_IGNORE_KEYWORD_0;
pub const PROPERTY_PROCESS_START_KEY: u32 = abi::EVENT_ENABLE_PROPERTY_PROCESS_START_KEY;
pub const PROPERTY_PROVIDER_GROUP: u32 = abi::EVENT_ENABLE_PROPERTY_PROVIDER_GROUP;
pub const PROPERTY_PSM_KEY: u32 = abi::EVENT_ENABLE_PROPERTY_PSM_KEY;
pub const PROPERTY_SID: u32 = abi::EVENT_ENABLE_PROPERTY_SID;
pub const PROPERTY_SOURCE_CONTAINER_TRACKING: u32 = abi::EVENT_ENABLE_PROPERTY_SOURCE_CONTAINER_TRACKING;
pub const PROPERTY_STACK_TRACE: u32 = abi::EVENT_ENABLE_PROPERTY_STACK_TRACE;
pub const PROPERTY_TS_ID: u32 = abi::EVENT_ENABLE_PROPERTY_TS_ID;

pub const LEVEL_CRITICAL: u8 = abi::TRACE_LEVEL_CRITICAL;
pub const LEVEL_ERROR: u8 = abi::TRACE_LEVEL_ERROR;
pub const LEVEL_WARNING: u8 = abi::TRACE_LEVEL_WARNING;
pub const LEVEL_INFORMATION: u8 = abi::TRACE_LEVEL_INFORMATION;
pub const LEVEL_VERBOSE: u8 = abi::TRACE_LEVEL_VERBOSE;

pub const DISABLE_PROVIDER: u32 = abi::EVENT_CONTROL_CODE_DISABLE_PROVIDER;
pub const ENABLE_PROVIDER: u32 = abi::EVENT_CONTROL_CODE_ENABLE_PROVIDER;
pub const CAPTURE_STATE: u32 = abi::EVENT_CONTROL_CODE_CAPTURE_STATE;

const EMPTY_PROVIDER: Guid = Guid::from_u128(0u128);

/// Cumulative loss/health counters for a running ETW session.
///
/// All counters are cumulative since session start and reset only when
/// the session is stopped. Apply deltas between consecutive polls to
/// track rate-of-loss metrics.
///
/// The native ETW counters are 32-bit and can wrap on long-running
/// sessions, so compute deltas using wrapping subtraction rather than
/// assuming strict monotonicity.
#[derive(Debug, Clone, Copy, Default, Eq, PartialEq)]
pub struct SessionStats {
    /// Events dropped because no free buffer was available when the
    /// provider tried to log them.
    pub events_lost: u32,
    /// Real-time delivery buffers lost in transit to the consumer.
    pub real_time_buffers_lost: u32,
    /// Buffers that could not be flushed to the log file.
    pub log_buffers_lost: u32,
    /// Buffers successfully written since session start.
    pub buffers_written: u32,
}

/// Query a running session's loss counters by its raw handle.
///
/// The `handle` must be a live ETW session handle, such as the value
/// captured from [`SessionCallbackContext::handle`] inside an
/// `add_started_callback` closure. Returns cumulative counters since
/// session start.
///
/// # Thread safety and handle lifecycle
///
/// The query itself is stateless and the handle is `Send`, so this may
/// be called from any thread while the session is running. The caller is
/// responsible for ensuring the handle outlives the call: once the
/// session is stopped or torn down the handle becomes stale, and querying
/// a stale handle will fail with a Win32 error (for example, the session
/// instance no longer being found) rather than returning stale data.
///
/// # Errors
///
/// Returns an error if `handle` is zero (the never-started sentinel) or if
/// the underlying `ControlTraceW` query fails (for example, when the
/// session handle is stale after teardown).
///
/// # Example
///
/// ```no_run
/// use std::sync::Arc;
/// use std::sync::atomic::{AtomicU64, Ordering};
/// use one_collect::etw::{EtwSession, query_stats};
///
/// let mut session = EtwSession::new();
/// let handle_slot = Arc::new(AtomicU64::new(0));
///
/// {
///     let handle_slot = handle_slot.clone();
///     session.add_started_callback(move |ctx| {
///         // Release-store publishes the handle to other threads.
///         handle_slot.store(ctx.handle(), Ordering::Release);
///     });
/// }
///
/// // Start `parse_until` or `parse_for_duration` on your desired cadence,
/// // then poll from any thread/task and compute deltas between polls.
/// let handle = handle_slot.load(Ordering::Acquire);
/// if handle != 0 {
///     if let Ok(stats) = query_stats(handle) {
///         let _ = stats.events_lost;
///     }
/// }
/// ```
pub fn query_stats(handle: u64) -> anyhow::Result<SessionStats> {
    if handle == 0 {
        anyhow::bail!(
            "query_stats called with an invalid (zero) session handle; \
             capture a live handle from SessionCallbackContext::handle first");
    }

    abi::query_stats(handle)
}

#[derive(Default)]
pub struct AncillaryData {
    event: Option<*const EVENT_RECORD>,
}

impl AncillaryData {
    pub fn cpu(&self) -> u32 {
        match self.event {
            Some(event) => {
                unsafe { (*event).processor_index() as u32 }
            },
            None => { 0 },
        }
    }

    pub fn pid(&self) -> u32 {
        match self.event {
            Some(event) => {
                unsafe { (*event).EventHeader.ProcessId }
            },
            None => { 0 },
        }
    }

    pub fn tid(&self) -> u32 {
        match self.event {
            Some(event) => {
                unsafe { (*event).EventHeader.ThreadId }
            },
            None => { 0 },
        }
    }

    /// Returns a borrow of the current `EVENT_RECORD`, or `None` if no
    /// event is currently being processed.  The borrow is valid for the
    /// duration of the ETW callback (same as `&self`).
    pub fn record(&self) -> Option<&EVENT_RECORD> {
        self.event.map(|p| unsafe { &*p })
    }

    pub fn time(&self) -> u64 {
        match self.event {
            Some(event) => {
                unsafe { (*event).EventHeader.TimeStamp as u64 }
            },
            None => { 0 },
        }
    }

    pub fn provider(&self) -> Guid {
        match self.event {
            Some(event) => {
                unsafe { (*event).provider_guid() }
            },
            None => { Guid::default() },
        }
    }

    pub fn activity(&self) -> Guid {
        match self.event {
            Some(event) => {
                unsafe { (*event).activity_guid() }
            },
            None => { Guid::default() },
        }
    }

    pub fn related_activity(&self) -> Option<Guid> {
        if let Some(ext) = self.find_ext(
            abi::EVENT_HEADER_EXT_TYPE_RELATED_ACTIVITYID) {
            unsafe {
                if (*ext).DataSize == 16 {
                    return Some(*((*ext).DataPtr as *const Guid));
                }
            }
        }

        None
    }

    pub fn id(&self) -> u16 {
        match self.event {
            Some(event) => {
                unsafe { (*event).EventHeader.EventDescriptor.Id }
            },
            None => { 0 },
        }
    }

    pub fn op_code(&self) -> u8 {
        match self.event {
            Some(event) => {
                unsafe { (*event).EventHeader.EventDescriptor.Opcode }
            },
            None => { 0 },
        }
    }

    pub fn version(&self) -> u8 {
        match self.event {
            Some(event) => {
                unsafe { (*event).EventHeader.EventDescriptor.Version }
            },
            None => { 0 },
        }
    }

    pub fn callstack(
        &self,
        frames: &mut Vec<u64>,
        match_id: &mut u64) -> bool {
        if let Some(ext) = self.find_ext(
            abi::EVENT_HEADER_EXT_TYPE_STACK_TRACE64) {
            unsafe {
                let ext_size = (*ext).DataSize as usize;
                if ext_size < 8 {
                    return false;
                }

                let frame_count = (ext_size - 8) / 8;
                let ext_frames = (*ext).DataPtr as *const u64;
                *match_id = *ext_frames;

                /* Skip MatchId */
                let ext_frames = ext_frames.add(1);

                for i in 0..frame_count {
                    frames.push(*ext_frames.add(i));
                }

                return true;
            }
        } else if let Some(ext) = self.find_ext(
            abi::EVENT_HEADER_EXT_TYPE_STACK_TRACE32) {
            unsafe {
                let ext_size = (*ext).DataSize as usize;
                if ext_size < 8 {
                    return false;
                }

                let frame_count = (ext_size - 8) / 4;
                let ext_frames = (*ext).DataPtr as *const u64;
                *match_id = *ext_frames;

                /* Skip MatchId */
                let ext_frames = ext_frames.add(1) as *const u32;

                for i in 0..frame_count {
                    frames.push(*ext_frames.add(i) as u64);
                }

                return true;
            }
        }

        false
    }

    fn find_ext(
        &self,
        ext_type: u32) -> Option<*const EVENT_HEADER_EXTENDED_DATA_ITEM> {
        match self.event {
            Some(event) => {
                // Delegate to the centralized EventRecordExt method.
                unsafe { (*event).find_extended_data(ext_type as u16) }
            },
            None => None,
        }
    }
}

type ProviderLookup = HashMap<Guid, ProviderEvents, BuildHasherDefault<XxHash64>>;
type EventLookup = HashMap<usize, Vec<Event>, BuildHasherDefault<XxHash64>>;

struct ProviderEvents {
    use_op_id: bool,
    events: EventLookup,
    wide_events: Vec<Event>,
}

impl ProviderEvents {
    fn new() -> Self {
        Self {
            use_op_id: false,
            events: HashMap::default(),
            wide_events: Vec::new(),
        }
    }

    fn use_op_id(&self) -> bool { self.use_op_id }

    fn use_op_id_mut(&mut self) -> &mut bool { &mut self.use_op_id }

    fn get_events_mut(
        &mut self,
        id: usize) -> &mut Vec<Event> {
        self.events.entry(id).or_insert_with(Vec::new)
    }

    fn get_events_mut_if_exist(
        &mut self,
        id: usize) -> Option<&mut Vec<Event>> {
        self.events.get_mut(&id)
    }

    fn wide_events_mut(&mut self) -> &mut Vec<Event> { &mut self.wide_events }
}

pub struct SessionCallbackContext {
    handle: u64,
    id: u64,
}

impl SessionCallbackContext {
    fn new(
        handle: u64,
        id: u64) -> Self {
        SessionCallbackContext {
            handle,
            id,
        }
    }

    /// The raw ETW session handle for this callback's session.
    ///
    /// Valid for the duration of the session (from the `started`
    /// callback until the session is stopped/torn down). Capturing this
    /// value lets other threads poll the session via [`query_stats`];
    /// the handle becomes stale after teardown, at which point queries
    /// fail rather than return stale data.
    pub fn handle(&self) -> u64 { 
        self.handle
    }

    pub fn id(&self) -> u64 { self.id }

    pub fn flush_trace(&self) {
        abi::flush_trace(self.handle);
    }
}

type SendClosure = Box<dyn Fn(&SessionCallbackContext) + Send + 'static>;
type NoSendClosure = Box<dyn Fn(&SessionCallbackContext) + 'static>;
type SessionClosure = Box<dyn Fn(&mut EtwSession) -> anyhow::Result<()> + 'static>;

pub struct EtwSession {
    enabled: HashMap<Guid, TraceEnable>,
    providers: ProviderLookup,
    kernel_callstacks: Vec<CLASSIC_EVENT_ID>,

    /* Config */
    cpu_buf_kb: u32,
    target_pids: Option<Vec<i32>>,
    target_cpus: Option<HashSet<u16>>,

    /* Callbacks */
    event_error_callback: Option<Box<dyn Fn(&Event, &anyhow::Error)>>,
    built_callbacks: Option<Vec<SessionClosure>>,
    starting_callbacks: Option<Vec<SendClosure>>,
    started_callbacks: Option<Vec<SendClosure>>,
    stopping_callbacks: Option<Vec<SendClosure>>,
    rundown_callbacks: Option<Vec<SendClosure>>,
    stopped_callbacks: Option<Vec<NoSendClosure>>,

    /* Ancillary data */
    ancillary: Writable<AncillaryData>,

    /* Flags */
    elevate: bool,
    profile_interval: Option<u32>,
}

const SYSTEM_PROCESS_PROVIDER: Guid = Guid::from_u128(0x151f55dc_467d_471f_83b5_5f889d46ff66);
const REAL_SYSTEM_PROCESS_PROVIDER: Guid = Guid::from_u128(0x3d6fa8d0_fe05_11d0_9dda_00c04fd7ba7c);
const REAL_SYSTEM_IMAGE_PROVIDER: Guid = Guid::from_u128(0x2cb15d1d_5fc1_11d2_abe1_00a0c911f518);

const SYSTEM_PROCESS_KW_GENERAL: u64 = 1u64;
const SYSTEM_PROCESS_KW_LOADER: u64 = 4096u64;

const SYSTEM_PROFILE_PROVIDER: Guid = Guid::from_u128(0xbfeb0324_1cee_496f_a409_2ac2b48a6322);
const REAL_SYSTEM_PROFILE_PROVIDER: Guid = Guid::from_u128(0xce1dbfb4_137e_4da6_87b0_3f59aa102cbc);

const SYSTEM_PROFILE_KW_GENERAL: u64 = 1u64;

const SYSTEM_INTERRUPT_PROVIDER: Guid = Guid::from_u128(0xd4bbee17_b545_4888_858b_744169015b25);
const REAL_SYSTEM_INTERRUPT_PROVIDER: Guid = Guid::from_u128(0xce1dbfb4_137e_4da6_87b0_3f59aa102cbc);

const SYSTEM_INTERRUPT_KW_DPC: u64 = 4u64;

const REAL_SYSTEM_CALLSTACK_PROVIDER: Guid = Guid::from_u128(0xdef2fe46_7bd6_4b80_bd94_f57fe20d0ce3);

const SYSTEM_SCHEDULER_PROVIDER: Guid = Guid::from_u128(0x599a2a76_4d91_4910_9ac7_7d33f2e97a6c);
const REAL_SYSTEM_THREAD_PROVIDER: Guid = Guid::from_u128(0x3d6fa8d1_fe05_11d0_9dda_00c04fd7ba7c);

const SYSTEM_SCHEDULER_KW_DISPATCHER: u64 = 2u64;
const SYSTEM_SCHEDULER_KW_CONTEXT_SWITCH: u64 = 512u64;

const SYSTEM_MEMORY_PROVIDER: Guid = Guid::from_u128(0x82958ca9_b6cd_47f8_a3a8_03ae85a4bc24);
const REAL_SYSTEM_PAGE_FAULT_PROVIDER: Guid = Guid::from_u128(0x3d6fa8d3_fe05_11d0_9dda_00c04fd7ba7c);

const SYSTEM_MEMORY_KW_HARD_FAULTS: u64 = 2u64;
const SYSTEM_MEMORY_KW_ALL_FAULTS: u64 = 4u64;

impl EtwSession {
    pub fn new() -> Self {
        Self {
            enabled: HashMap::default(),
            providers: HashMap::default(),
            kernel_callstacks: Vec::new(),

            /* Config */
            cpu_buf_kb: 64,
            target_pids: None,
            target_cpus: None,

            /* Callbacks */
            event_error_callback: None,
            built_callbacks: Some(Vec::new()),
            starting_callbacks: Some(Vec::new()),
            started_callbacks: Some(Vec::new()),
            stopping_callbacks: Some(Vec::new()),
            rundown_callbacks: Some(Vec::new()),
            stopped_callbacks: Some(Vec::new()),

            /* Ancillary data */
            ancillary: Writable::new(AncillaryData::default()),

            /* Flags */
            elevate: false,
            profile_interval: None,
        }
    }

    pub fn with_target_pid(
        mut self,
        pid: i32) -> Self {
        if let Some(ref mut pids) = self.target_pids {
            pids.push(pid);
        } else {
            let mut pids = Vec::new();
            pids.push(pid);

            self.target_pids = Some(pids);
        }

        self
    }

    pub fn with_target_cpu(
        mut self,
        cpu: u16) -> Self {
        let mut target_cpus = self.target_cpus.unwrap_or_default();

        target_cpus.insert(cpu);

        self.target_cpus = Some(target_cpus);

        self
    }

    pub fn with_per_cpu_buffer_bytes(
        mut self,
        bytes: usize) -> Self {
        self.cpu_buf_kb = (bytes / 1024) as u32;
        self
    }

    pub fn needs_kernel_callstacks(&self) -> bool {
        !self.kernel_callstacks.is_empty()
    }

    pub fn set_event_error_callback(
        &mut self,
        callback: impl Fn(&Event, &anyhow::Error) + 'static) {
        self.event_error_callback = Some(Box::new(callback));
    }

    pub fn add_built_callback(
        &mut self,
        callback: impl Fn(&mut EtwSession) -> anyhow::Result<()> + 'static) {
        if let Some(callbacks) = self.built_callbacks.as_mut() {
            callbacks.push(Box::new(callback));
        }
    }

    pub fn add_starting_callback(
        &mut self,
        callback: impl Fn(&SessionCallbackContext) + Send + 'static) {
        if let Some(callbacks) = self.starting_callbacks.as_mut() {
            callbacks.push(Box::new(callback));
        }
    }

    pub fn add_started_callback(
        &mut self,
        callback: impl Fn(&SessionCallbackContext) + Send + 'static) {
        if let Some(callbacks) = self.started_callbacks.as_mut() {
            callbacks.push(Box::new(callback));
        }
    }

    pub fn add_rundown_callback(
        &mut self,
        callback: impl Fn(&SessionCallbackContext) + Send + 'static) {
        if let Some(callbacks) = self.rundown_callbacks.as_mut() {
            callbacks.push(Box::new(callback));
        }
    }

    pub fn add_stopping_callback(
        &mut self,
        callback: impl Fn(&SessionCallbackContext) + Send + 'static) {
        if let Some(callbacks) = self.stopping_callbacks.as_mut() {
            callbacks.push(Box::new(callback));
        }
    }

    pub fn add_stopped_callback(
        &mut self,
        callback: impl Fn(&SessionCallbackContext) + 'static) {
        if let Some(callbacks) = self.stopped_callbacks.as_mut() {
            callbacks.push(Box::new(callback));
        }
    }

    pub fn requires_profile_interval(
        &mut self,
        interval_ms: u32) {
        self.profile_interval = Some(interval_ms);
    }

    pub fn requires_elevation(&mut self) {
        self.elevate = true;
    }

    pub fn enable_provider(
        &mut self,
        provider: Guid) -> &mut TraceEnable {
        self.enabled
            .entry(provider)
            .or_insert_with(|| TraceEnable::new(provider))
    }

    pub fn enable_provider_for(
        &mut self,
        event: &Event) -> &mut TraceEnable {
        self.enable_provider(*event.extension().provider())
    }

    fn provider_events_mut(
        &mut self,
        provider: Guid,
        lookup_provider: Option<Guid>,
        ensure_provider: impl FnOnce(&mut TraceEnable),
        id: usize,
        callstacks: bool) -> &mut Vec<Event> {
        if provider != EMPTY_PROVIDER {
            let enabler = self.enable_provider(provider);

            enabler.add_event(id as u16, callstacks);

            ensure_provider(enabler);
        }

        let mut use_op_id = false;

        let provider = match lookup_provider {
            Some(alt_provider) => {
                use_op_id = true;
                alt_provider
            },
            None => { provider },
        };

        let events = self
            .providers
            .entry(provider)
            .or_insert_with(|| ProviderEvents::new());

        *events.use_op_id_mut() = use_op_id;

        events.get_events_mut(id)
    }

    pub fn add_event(
        &mut self,
        mut event: Event,
        properties: Option<u32>) {
        let provider = *event.extension().provider();
        let lookup_provider = event.extension_mut().lookup_provider_mut().take();

        /* Swap lookup provider to actual provider before adding */
        if let Some(lookup_provider) = lookup_provider {
            *event.extension_mut().provider_mut() = lookup_provider;
        }

        let level = event.extension().level();
        let keyword = event.extension().keyword();

        self.add_complex_event(
            provider,
            |provider| {
                provider.ensure_level(level);
                provider.ensure_keyword(keyword);

                if let Some(properties) = properties {
                    provider.ensure_property(properties);
                }
            },
            event);
    }

    pub fn add_rundown_event(
        &mut self,
        event: Event,
        properties: Option<u32>) {
        let provider = *event.extension().provider();
        let level = event.extension().level();
        let keyword = event.extension().keyword();

        self.add_complex_event(
            provider,
            |provider| {
                provider.ensure_rundown();
                provider.ensure_level(level);
                provider.ensure_keyword(keyword);

                if let Some(properties) = properties {
                    provider.ensure_property(properties);
                }
            },
            event);
    }

    pub fn add_complex_event(
        &mut self,
        provider: Guid,
        ensure_provider: impl FnOnce(&mut TraceEnable),
        event: Event) {
        let mut lookup_provider = None;
        let actual_provider = *event.extension().provider();

        if provider != actual_provider {
            lookup_provider = Some(actual_provider);
        }

        let callstacks = !event.has_no_callstack_flag();

        if event.has_id_wild_card_flag() {
            if provider != EMPTY_PROVIDER {
                let enabler = self.enable_provider(provider);

                ensure_provider(enabler);

                let events = self
                    .providers
                    .entry(provider)
                    .or_insert_with(|| ProviderEvents::new());

                events.wide_events_mut().push(event);
            }
        } else {
            let events = self.provider_events_mut(
                provider,
                lookup_provider,
                ensure_provider,
                event.id(),
                callstacks);

            events.push(event);
        }
    }

    pub fn add_kernel_callstack(
        &mut self,
        provider: Guid,
        id: usize) {
        /* Avoid garbage */
        if id > 255 {
            return;
        }

        let id = id as u8;

        /* Bail if already enabled */
        for event in &self.kernel_callstacks {
            if event.EventGuid == provider &&
                event.Type == id {
                return;
            }
        }

        self.kernel_callstacks.push(
            CLASSIC_EVENT_ID::new(
                provider,
                id as u8));
    }

    fn enable_singleton_event(
        &mut self,
        provider: Guid,
        lookup_provider: Option<Guid>,
        ensure_provider: impl FnOnce(&mut TraceEnable),
        id: usize,
        default_event: impl FnOnce(usize) -> Event) -> &mut Event {
        let events = self.provider_events_mut(
            provider,
            lookup_provider,
            ensure_provider,
            id,
            false);

        if events.is_empty() {
            events.push(default_event(id));
        }

        &mut events[0]
    }

    pub fn comm_start_event(&mut self) -> &mut Event {
        self.requires_elevation();

        self.enable_singleton_event(
            SYSTEM_PROCESS_PROVIDER,
            Some(REAL_SYSTEM_PROCESS_PROVIDER),
            |provider| {
                provider.ensure_no_filtering();
                provider.ensure_capture_environment();
                provider.ensure_keyword(SYSTEM_PROCESS_KW_GENERAL);
            },
            1,
            |id| events::comm(id, "Process::Start"))
    }

    pub fn comm_end_event(&mut self) -> &mut Event {
        self.requires_elevation();

        self.enable_singleton_event(
            SYSTEM_PROCESS_PROVIDER,
            Some(REAL_SYSTEM_PROCESS_PROVIDER),
            |provider| {
                provider.ensure_no_filtering();
                provider.ensure_capture_environment();
                provider.ensure_keyword(SYSTEM_PROCESS_KW_GENERAL);
            },
            2,
            |id| events::comm(id, "Process::End"))
    }

    pub fn comm_start_capture_event(&mut self) -> &mut Event {
        self.requires_elevation();

        self.enable_singleton_event(
            SYSTEM_PROCESS_PROVIDER,
            Some(REAL_SYSTEM_PROCESS_PROVIDER),
            |provider| {
                provider.ensure_no_filtering();
                provider.ensure_capture_environment();
                provider.ensure_keyword(SYSTEM_PROCESS_KW_GENERAL);
            },
            3,
            |id| events::comm(id, "Process::DCStart"))
    }

    pub fn comm_end_capture_event(&mut self) -> &mut Event {
        self.requires_elevation();

        self.enable_singleton_event(
            SYSTEM_PROCESS_PROVIDER,
            Some(REAL_SYSTEM_PROCESS_PROVIDER),
            |provider| {
                provider.ensure_no_filtering();
                provider.ensure_capture_environment();
                provider.ensure_keyword(SYSTEM_PROCESS_KW_GENERAL);
            },
            4,
            |id| events::comm(id, "Process::DCEnd"))
    }

    pub fn mmap_load_event(&mut self) -> &mut Event {
        self.requires_elevation();

        self.enable_singleton_event(
            SYSTEM_PROCESS_PROVIDER,
            Some(REAL_SYSTEM_IMAGE_PROVIDER),
            |provider| {
                provider.ensure_no_filtering();
                provider.ensure_capture_environment();
                provider.ensure_keyword(SYSTEM_PROCESS_KW_LOADER);
            },
            10,
            |id| events::mmap(id, "ImageLoad::Load"))
    }

    pub fn mmap_unload_event(&mut self) -> &mut Event {
        self.requires_elevation();

        self.enable_singleton_event(
            SYSTEM_PROCESS_PROVIDER,
            Some(REAL_SYSTEM_IMAGE_PROVIDER),
            |provider| {
                provider.ensure_no_filtering();
                provider.ensure_capture_environment();
                provider.ensure_keyword(SYSTEM_PROCESS_KW_LOADER);
            },
            2,
            |id| events::mmap(id, "ImageLoad::Unload"))
    }

    pub fn mmap_load_capture_start_event(&mut self) -> &mut Event {
        self.requires_elevation();

        self.enable_singleton_event(
            SYSTEM_PROCESS_PROVIDER,
            Some(REAL_SYSTEM_IMAGE_PROVIDER),
            |provider| {
                provider.ensure_no_filtering();
                provider.ensure_capture_environment();
                provider.ensure_keyword(SYSTEM_PROCESS_KW_LOADER);
            },
            3,
            |id| events::mmap(id, "ImageLoad::DCStart"))
    }

    pub fn mmap_load_capture_end_event(&mut self) -> &mut Event {
        self.requires_elevation();

        self.enable_singleton_event(
            SYSTEM_PROCESS_PROVIDER,
            Some(REAL_SYSTEM_IMAGE_PROVIDER),
            |provider| {
                provider.ensure_no_filtering();
                provider.ensure_capture_environment();
                provider.ensure_keyword(SYSTEM_PROCESS_KW_LOADER);
            },
            4,
            |id| events::mmap(id, "ImageLoad::DCEnd"))
    }

    pub fn profile_cpu_event(
        &mut self,
        properties: Option<u32>) -> &mut Event {
        self.requires_elevation();

        if let Some(properties) = properties {
            if properties & PROPERTY_STACK_TRACE != 0 {
                self.add_kernel_callstack(
                    REAL_SYSTEM_PROFILE_PROVIDER,
                    46);
            }
        }

        self.enable_singleton_event(
            SYSTEM_PROFILE_PROVIDER,
            Some(REAL_SYSTEM_PROFILE_PROVIDER),
            |provider| {
                provider.ensure_no_filtering();
                provider.ensure_keyword(SYSTEM_PROFILE_KW_GENERAL);
            },
            46,
            |id| events::sample_profile(id, "Profile::SampleProfile"))
    }

    pub fn ready_thread_event(
        &mut self,
        properties: Option<u32>) -> &mut Event {
        self.requires_elevation();

        if let Some(properties) = properties {
            if properties & PROPERTY_STACK_TRACE != 0 {
                self.add_kernel_callstack(
                    REAL_SYSTEM_THREAD_PROVIDER,
                    50);
            }
        }

        self.enable_singleton_event(
            SYSTEM_SCHEDULER_PROVIDER,
            Some(REAL_SYSTEM_THREAD_PROVIDER),
            |provider| {
                provider.ensure_no_filtering();
                provider.ensure_keyword(SYSTEM_SCHEDULER_KW_DISPATCHER);
            },
            50,
            |id| events::ready_thread(id, "Thread::Ready"))
    }

    pub fn hard_page_fault_event(
        &mut self,
        properties: Option<u32>) -> &mut Event {
        self.requires_elevation();

        if let Some(properties) = properties {
            if properties & PROPERTY_STACK_TRACE != 0 {
                self.add_kernel_callstack(
                    REAL_SYSTEM_PAGE_FAULT_PROVIDER,
                    32);
            }
        }

        self.enable_singleton_event(
            SYSTEM_MEMORY_PROVIDER,
            Some(REAL_SYSTEM_PAGE_FAULT_PROVIDER),
            |provider| {
                provider.ensure_no_filtering();
                provider.ensure_keyword(SYSTEM_MEMORY_KW_HARD_FAULTS);
            },
            32,
            |id| events::hard_page_fault(id, "Memory::HardPageFault"))
    }

    pub fn soft_page_fault_events<'a>(
        &'a mut self,
        properties: Option<u32>,
        mut closure: impl FnMut(&mut Event)) {
        self.requires_elevation();

        if let Some(properties) = properties {
            if properties & PROPERTY_STACK_TRACE != 0 {
                self.add_kernel_callstack(
                    REAL_SYSTEM_PAGE_FAULT_PROVIDER,
                    10);

                self.add_kernel_callstack(
                    REAL_SYSTEM_PAGE_FAULT_PROVIDER,
                    11);

                self.add_kernel_callstack(
                    REAL_SYSTEM_PAGE_FAULT_PROVIDER,
                    12);

                self.add_kernel_callstack(
                    REAL_SYSTEM_PAGE_FAULT_PROVIDER,
                    13);
            }
        }

        closure(self.enable_singleton_event(
            SYSTEM_MEMORY_PROVIDER,
            Some(REAL_SYSTEM_PAGE_FAULT_PROVIDER),
            |provider| {
                provider.ensure_no_filtering();
                provider.ensure_keyword(SYSTEM_MEMORY_KW_ALL_FAULTS);
            },
            10,
            |id| events::soft_page_fault(id, "Memory::TransitionFault")));

        closure(self.enable_singleton_event(
            SYSTEM_MEMORY_PROVIDER,
            Some(REAL_SYSTEM_PAGE_FAULT_PROVIDER),
            |provider| {
                provider.ensure_no_filtering();
                provider.ensure_keyword(SYSTEM_MEMORY_KW_ALL_FAULTS);
            },
            11,
            |id| events::soft_page_fault(id, "Memory::DemandZeroFault")));

        closure(self.enable_singleton_event(
            SYSTEM_MEMORY_PROVIDER,
            Some(REAL_SYSTEM_PAGE_FAULT_PROVIDER),
            |provider| {
                provider.ensure_no_filtering();
                provider.ensure_keyword(SYSTEM_MEMORY_KW_ALL_FAULTS);
            },
            12,
            |id| events::soft_page_fault(id, "Memory::CopyOnWriteFault")));

        closure(self.enable_singleton_event(
            SYSTEM_MEMORY_PROVIDER,
            Some(REAL_SYSTEM_PAGE_FAULT_PROVIDER),
            |provider| {
                provider.ensure_no_filtering();
                provider.ensure_keyword(SYSTEM_MEMORY_KW_ALL_FAULTS);
            },
            13,
            |id| events::soft_page_fault(id, "Memory::GuardPageFault")));
    }

    pub fn cswitch_event(
        &mut self,
        properties: Option<u32>) -> &mut Event {
        self.requires_elevation();

        if let Some(properties) = properties {
            if properties & PROPERTY_STACK_TRACE != 0 {
                self.add_kernel_callstack(
                    REAL_SYSTEM_THREAD_PROVIDER,
                    36);
            }
        }

        self.enable_singleton_event(
            SYSTEM_SCHEDULER_PROVIDER,
            Some(REAL_SYSTEM_THREAD_PROVIDER),
            |provider| {
                provider.ensure_no_filtering();
                provider.ensure_keyword(SYSTEM_SCHEDULER_KW_CONTEXT_SWITCH);
            },
            36,
            |id| events::cswitch(id, "Thread::CSwitch"))
    }

    pub fn callstack_event(&mut self) -> &mut Event {
        self.requires_elevation();

        self.enable_singleton_event(
            EMPTY_PROVIDER,
            Some(REAL_SYSTEM_CALLSTACK_PROVIDER),
            |_provider| { },
            32,
            |id| events::callstack(id, "Kernel::Callstack"))
    }

    pub fn dpc_event(&mut self) -> &mut Event {
        self.requires_elevation();

        self.enable_singleton_event(
            SYSTEM_INTERRUPT_PROVIDER,
            Some(REAL_SYSTEM_INTERRUPT_PROVIDER),
            |provider| {
                provider.ensure_no_filtering();
                provider.ensure_keyword(SYSTEM_INTERRUPT_KW_DPC);
            },
            68,
            |id| events::dpc(id, "Profile::DPC"))
    }

    pub fn threaded_dpc_event(&mut self) -> &mut Event {
        self.requires_elevation();

        self.enable_singleton_event(
            SYSTEM_INTERRUPT_PROVIDER,
            Some(REAL_SYSTEM_INTERRUPT_PROVIDER),
            |provider| {
                provider.ensure_no_filtering();
                provider.ensure_keyword(SYSTEM_INTERRUPT_KW_DPC);
            },
            66,
            |id| events::dpc(id, "Profile::ThreadDPC"))
    }

    pub fn timer_dpc_event(&mut self) -> &mut Event {
        self.requires_elevation();

        self.enable_singleton_event(
            SYSTEM_INTERRUPT_PROVIDER,
            Some(REAL_SYSTEM_INTERRUPT_PROVIDER),
            |provider| {
                provider.ensure_no_filtering();
                provider.ensure_keyword(SYSTEM_INTERRUPT_KW_DPC);
            },
            69,
            |id| events::dpc(id, "Profile::TimerDPC"))
    }

    pub fn ancillary_data(&self) -> ReadOnly<AncillaryData> {
        self.ancillary.read_only()
    }

    pub fn capture_environment(&mut self) {
        /* Placeholder */
    }

    pub fn parse_for_duration(
        self,
        name: &str,
        duration: std::time::Duration) -> anyhow::Result<()> {
        let now = std::time::Instant::now();

        self.parse_until(
            name,
            move || { now.elapsed() >= duration })
    }

    fn take_enabled(
        &mut self) -> HashMap<Guid, TraceEnable> {
        let mut map = HashMap::default();

        for (k,v) in self.enabled.drain() {
            map.insert(k, v);
        }

        map
    }

    fn take_events(
        &mut self) -> ProviderLookup {
        let mut map = HashMap::default();

        for (k,v) in self.providers.drain() {
            map.insert(k, v);
        }

        map
    }

    pub fn parse_until(
        mut self,
        name: &str,
        until: impl Fn() -> bool + Send + 'static) -> anyhow::Result<()> {
        let mut session = TraceSession::new(
            name.into(),
            self.cpu_buf_kb);

        /* Run self mutating callbacks for on-demand dynamic hooks */
        if let Some(callbacks) = self.built_callbacks.take() {
            for callback in callbacks {
                callback(&mut self)?;
            }
        }

        if self.elevate {
            session.enable_privilege("SeDebugPrivilege");
            session.enable_privilege("SeSystemProfilePrivilege");
        }

        if let Some(interval) = self.profile_interval {
            session.set_profile_interval(interval)?;
        }

        session.start()?;

        let handle = session.handle();
        let session_id = session.id();

        if !self.kernel_callstacks.is_empty() {
            session.enable_kernel_callstacks(&self.kernel_callstacks)?;
        }

        let target_pids = self.target_pids.take();
        let target_cpus = self.target_cpus.take();
        let enabled = self.take_enabled();
        let mut events = self.take_events();

        let starting_callbacks = self.starting_callbacks.take();
        let started_callbacks = self.started_callbacks.take();
        let rundown_callbacks = self.rundown_callbacks.take();
        let stopping_callbacks = self.stopping_callbacks.take();

        let mut pid_lookup = HashSet::new();

        if let Some(target_pids) = &target_pids {
            for pid in target_pids {
                pid_lookup.insert(*pid);
            }
        }

        let thread = thread::spawn(move || -> anyhow::Result<()> {
            let context = SessionCallbackContext::new(handle, session_id);

            /* Enable capture environments first */
            for enable in enabled.values() {
                if enable.needs_capture_environment() {
                    let result = enable.enable(handle, &target_pids);

                    if result.is_err() {
                        TraceSession::remote_stop(handle);
                        return result;
                    }
                }
            }

            /* Run starting hooks */
            if let Some(callbacks) = starting_callbacks {
                for callback in callbacks {
                    callback(&context);
                }
            }

            /* Enable non-capture environments next */
            for enable in enabled.values() {
                if !enable.needs_capture_environment() &&
                   !enable.needs_rundown() {
                    let result = enable.enable(handle, &target_pids);

                    if result.is_err() {
                        TraceSession::remote_stop(handle);
                        return result;
                    }
                }
            }

            /* Run started hooks */
            if let Some(callbacks) = started_callbacks {
                for callback in callbacks {
                    callback(&context);
                }
            }

            /* Run until told to stop */
            let quantum = std::time::Duration::from_millis(15);

            while !until() {
                std::thread::sleep(quantum);
            }

            /* Run stopping hooks */
            if let Some(callbacks) = stopping_callbacks {
                for callback in callbacks {
                    callback(&context);
                }
            }

            /* Enable rundown providers first */
            for enable in enabled.values() {
                if enable.needs_rundown() {
                    let _ = enable.enable(handle, &target_pids);
                }
            }

            /* Disable non-rundown providers last */
            for enable in enabled.values() {
                if !enable.needs_rundown() {
                    let _ = enable.disable(handle);
                }
            }

            /* Run rundown hooks */
            if let Some(callbacks) = rundown_callbacks {
                for callback in callbacks {
                    callback(&context);
                }
            }

            TraceSession::remote_stop(handle);

            Ok(())
        });

        let ancillary = self.ancillary.clone();
        let error_callback = self.event_error_callback.take();
        let mut errors = Vec::new();
        let has_pid_filter = !pid_lookup.is_empty();
        let has_cpu_filter = target_cpus.is_some();

        let result = session.process(Box::new(move |event| {
            let cpu_index = event.processor_index();

            /* Find events by provider ID */
            if let Some(provider_events) = events.get_mut(&event.provider_guid()) {
                /* Determine which ID for lookup */
                let id: usize = match provider_events.use_op_id() {
                    true => { event.EventHeader.EventDescriptor.Opcode.into() },
                    false => { event.EventHeader.EventDescriptor.Id.into() },
                };

                let slice = event.user_data_slice();

                let mut process_event = |event: &mut Event| {
                    errors.clear();

                    if has_pid_filter {
                        /*
                         * Skip PID events via soft_pid filters:
                         * Legacy Kernel ETW events do not have a stable
                         * pid field. Events can register a software pid
                         * reader to allow for this. These read the pid
                         * from the actual event data vs the ancillary data.
                         */
                        if let Some(pid) = event.soft_pid(slice) {
                            /* If we have a legacy PID, filter it */
                            if pid != 0 && !pid_lookup.contains(&pid) {
                                /* Ignore if not in the set */
                                return;
                            }
                        }
                    }

                    if has_cpu_filter && !event.has_no_cpu_mask_flag() {
                        /* Skip events not on target CPUs */
                        if let Some(target_cpus) = &target_cpus {
                            if !target_cpus.contains(&cpu_index) {
                                return;
                            }
                        }
                    }

                    /* Process Event Data via Closures */
                    event.process(
                        slice,
                        slice,
                        &mut errors);

                    /* Log errors, if any */
                    for error in &errors {
                        if let Some(callback) = &error_callback {
                            callback(event, error);
                        } else {
                            eprintln!("Error: Event '{}': {}", event.name(), error);
                        }
                    }
                };

                /* Update ancillary data */
                ancillary.borrow_mut().event = Some(event);

                /* Find any registered closures for the event */
                if let Some(events) = provider_events.get_events_mut_if_exist(id) {
                    for event in events {
                        process_event(event);
                    }
                }

                for event in provider_events.wide_events_mut() {
                    process_event(event);
                }

                /* Clear ancillary data */
                ancillary.borrow_mut().event = None;
            }
        }));

        let context = SessionCallbackContext::new(0, session_id);

        /* Run stopped hooks */
        if let Some(callbacks) = &self.stopped_callbacks {
            for callback in callbacks {
                callback(&context);
            }
        }

        if result.is_err() {
            return result;
        }

        thread.join().unwrap()?;

        session.stop();

        Ok(())
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use std::sync::Arc;
    use std::sync::atomic::{AtomicBool, AtomicU64, Ordering};
    use std::time::Duration;

    #[test]
    fn query_stats_rejects_zero_handle() {
        // A zero handle is the never-started sentinel and must fail fast
        // without crossing the ETW ABI. Deterministic, no admin/live
        // session required, so this guards the invalid-handle contract
        // on every CI run.
        assert!(
            query_stats(0).is_err(),
            "query_stats(0) must reject the invalid (zero) handle");
    }

    #[ignore]
    #[test]
    fn query_stats_free_function_with_captured_handle() {
        let mut session = EtwSession::new();

        let handle_slot = Arc::new(AtomicU64::new(0));
        let query_ok = Arc::new(AtomicBool::new(false));

        {
            let handle_slot = handle_slot.clone();
            let query_ok = query_ok.clone();

            session.add_started_callback(move |ctx| {
                handle_slot.store(ctx.handle(), Ordering::SeqCst);

                let handle = handle_slot.load(Ordering::SeqCst);
                if handle != 0 && super::query_stats(handle).is_ok() {
                    query_ok.store(true, Ordering::SeqCst);
                }
            });
        }

        session
            .parse_for_duration("one_collect_query_stats_free_fn_test", Duration::from_secs(1))
            .unwrap();

        let handle = handle_slot.load(Ordering::SeqCst);
        assert!(handle != 0, "started callback did not capture a valid session handle");
        assert!(
            query_ok.load(Ordering::SeqCst),
            "free function query_stats(handle) failed while session was running"
        );
    }

    #[ignore]
    #[test]
    fn session() {
        let mut session = EtwSession::new();

        let profile_count = Writable::new(0);
        let count = profile_count.clone();

        session.profile_cpu_event(Some(PROPERTY_STACK_TRACE)).add_callback(
            move |_data| {
                *count.borrow_mut() += 1;
                Ok(())
            });

        let cswitch_count = Writable::new(0);
        let count = cswitch_count.clone();

        session.cswitch_event(None).add_callback(
            move |_data| {
                *count.borrow_mut() += 1;
                Ok(())
            });

        let ready_count = Writable::new(0);
        let count = ready_count.clone();

        session.ready_thread_event(None).add_callback(
            move |_data| {
                *count.borrow_mut() += 1;
                Ok(())
            });

        let callstack_count = Writable::new(0);
        let count = callstack_count.clone();

        session.callstack_event().add_callback(
            move |_data| {
                *count.borrow_mut() += 1;
                Ok(())
            });

        session.comm_start_capture_event().add_callback(
            move |_data| {
                println!("comm_start_capture_event");
                Ok(())
            });

        session.mmap_load_capture_start_event().add_callback(
            move |_data| {
                println!("mmap_load_capture_start_event");
                Ok(())
            });

        session.comm_start_event().add_callback(
            move |_data| {
                println!("comm_start_event");
                Ok(())
            });

        session.mmap_load_event().add_callback(
            move |_data| {
                println!("mmap_load_event");
                Ok(())
            });

        session.comm_end_event().add_callback(
            move |_data| {
                println!("comm_end_event");
                Ok(())
            });

        session.mmap_unload_event().add_callback(
            move |_data| {
                println!("mmap_unload_event");
                Ok(())
            });

        session.parse_for_duration(
            "one_collect_unit_test",
            std::time::Duration::from_secs(10)).unwrap();

        println!("Counts:");
        println!("Profile: {}", profile_count.borrow());
        println!("CSwitch: {}", cswitch_count.borrow());
        println!("ReadyThread: {}", ready_count.borrow());
        println!("Callstack: {}", callstack_count.borrow());
    }
}