gene 0.7.2

Crate providing a log matching framework written in Rust
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
use std::{
    borrow::Cow,
    collections::{BTreeMap, HashMap, HashSet},
};

use serde::{Deserialize, Serialize};

use crate::{
    compiler,
    rules::{self, bound_severity, CompiledRule, Decision},
    Compiler, Event, FieldValue, FieldNameIterator
};

use crate::FieldGetter;
use gene_derive::FieldGetter;

/// Structure holding information about the detection rules matching the [`Event`].
#[derive(Debug, Default, FieldGetter, Serialize, Deserialize, Clone, PartialEq)]
pub struct Detection<'s> {
    /// Union of the rule names matching the event
    #[getter(skip)]
    pub rules: HashSet<Cow<'s, str>>,
    /// Union of tags defined in the rules matching the event
    #[getter(skip)]
    #[serde(skip_serializing_if = "HashSet::is_empty")]
    pub tags: HashSet<Cow<'s, str>>,
    /// Union of attack ids defined in the rules matching the event
    #[getter(skip)]
    #[serde(skip_serializing_if = "HashSet::is_empty")]
    pub attack: HashSet<Cow<'s, str>>,
    /// Union of actions defined in the rules matching the event
    #[getter(skip)]
    #[serde(skip_serializing_if = "HashSet::is_empty")]
    pub actions: HashSet<Cow<'s, str>>,
    /// Sum of all matching rules' severity (bounded to [MAX_SEVERITY](rules::MAX_SEVERITY))
    pub severity: u8,
}

/// Structure holding information about filters matching the [`Event`]
#[derive(Debug, Default, FieldGetter, Serialize, Deserialize, Clone, PartialEq)]
pub struct Filter<'s> {
    /// Union of the rule names matching the event
    #[getter(skip)]
    pub rules: HashSet<Cow<'s, str>>,
    /// Union of tags defined in the rules matching the event
    #[getter(skip)]
    #[serde(skip_serializing_if = "HashSet::is_empty")]
    pub tags: HashSet<Cow<'s, str>>,
    /// Union of actions defined in the rules matching the event
    #[getter(skip)]
    #[serde(skip_serializing_if = "HashSet::is_empty")]
    pub actions: HashSet<Cow<'s, str>>,
}

/// Enum representing the decision state for filters and detections.
#[derive(Debug)]
pub enum ScanDecision<'s, T>
where
    T: Default,
{
    /// Exclude decision variant.
    ///
    /// When a component is excluded, it may optionally include the name of the excluding
    /// rule.
    Exclude(Option<Cow<'s, str>>),

    /// Include decision variant.
    ///
    /// When a component is included, this variant contains data containing inclusion
    /// information.
    Include(T),
}

impl<'s, T> ScanDecision<'s, T>
where
    T: Default,
{
    #[inline]
    fn default_exclude() -> Self {
        Self::Exclude(None)
    }

    #[inline(always)]
    fn exclude(&mut self, s: &'s str) {
        *self = Self::Exclude(Some(Cow::Borrowed(s)))
    }

    #[inline]
    fn get_include_or_insert_default(&mut self) -> Option<&mut T> {
        match self {
            Self::Include(i) => Some(i),
            Self::Exclude(None) => {
                *self = Self::Include(T::default());
                let Self::Include(i) = self else {
                    unreachable!("Exclude variant should never be in this state")
                };
                Some(i)
            }
            Self::Exclude(Some(_)) => None,
        }
    }

    /// Consumes the decision and returns the included data if this is an `Include` variant.
    ///
    /// Returns `None` if this is an `Exclude` variant. This method consumes `self`,
    /// transferring ownership of the included data to the caller.
    #[inline(always)]
    pub fn take_include(self) -> Option<T> {
        match self {
            Self::Include(i) => Some(i),
            _ => None,
        }
    }

    /// Returns a reference to the included data if this is an `Include` variant.
    ///
    /// Returns `None` if this is an `Exclude` variant. This is a non-consuming
    /// method that provides borrowed access to the included data.
    #[inline(always)]
    pub fn get_include(&self) -> Option<&T> {
        match self {
            Self::Include(i) => Some(i),
            _ => None,
        }
    }

    /// Returns a reference to the exclude reason if this is an `Exclude` variant.
    ///
    /// Returns `None` if this is an `Include` variant. The returned value is
    /// an `Option<&Option<Cow<'_, str>>>` representing the optional exclusion rule.
    #[inline(always)]
    pub fn get_exclude(&self) -> Option<&Option<Cow<'_, str>>> {
        match self {
            Self::Exclude(i) => Some(i),
            _ => None,
        }
    }

    /// Returns `true` if this is an `Include` variant.
    #[inline(always)]
    pub fn is_include(&self) -> bool {
        matches!(self, Self::Include(_))
    }

    /// Returns `true` if this is an `Exclude` variant.
    #[inline(always)]
    pub fn is_exclude(&self) -> bool {
        matches!(self, Self::Exclude(_))
    }

    /// Returns `true` if this is an `Exclude` variant with no specific rule.
    ///
    /// This indicates a default exclusion where `Exclude(None)` was used,
    /// distinguishing it from exclusions from a specific exclusion rule.
    #[inline(always)]
    pub fn is_default_exclude(&self) -> bool {
        matches!(self, Self::Exclude(None))
    }
}

/// Structure representing the result of an [`Event`] scanned by the [`Engine`].
///
/// The `ScanResult` contains the outcome of scanning an event against all loaded rules,
/// including both detection and filter rule matches. It uses [`ScanDecision`] to track
/// whether the decision state implemented by the rules.
///
/// # Type Parameters
///
/// - `'s`: Lifetime parameter for borrowed data from the original event and rules
///
/// # Fields
///
/// - `filter`: Filter rule scan decision and data
/// - `detection`: Detection rule scan decision and data
///
/// # Usage
///
/// This struct is returned by [`Engine::scan()`] and provides access to all matching
/// rules, their metadata (tags, actions, attack IDs), and severity information.
#[derive(Debug)]
pub struct ScanResult<'s> {
    /// Filter rule scan decision and data.
    ///
    /// Contains the decision (include/exclude) and associated filter data for
    /// any filter rules that matched the scanned event.
    pub filter: ScanDecision<'s, Filter<'s>>,

    /// Detection rule scan decision and data.
    ///
    /// Contains the decision (include/exclude) and associated detection data for
    /// any detection rules that matched the scanned event.
    pub detection: ScanDecision<'s, Detection<'s>>,
}

impl<'s> ScanResult<'s> {
    fn default_exclude() -> Self {
        Self {
            filter: ScanDecision::<'s, Filter<'s>>::default_exclude(),
            detection: ScanDecision::<'s, Detection<'s>>::default_exclude(),
        }
    }

    #[inline(always)]
    fn update_include(&mut self, r: &'s CompiledRule) {
        // we update matches only if it is not a filter rule
        if r.is_detection() {
            // update matches
            let Some(detections) = self.detection.get_include_or_insert_default() else {
                return;
            };

            detections.rules.insert(Cow::from(&r.name));

            // updating attack info
            if !r.attack.is_empty() {
                r.attack.iter().for_each(|a| {
                    detections.attack.insert(a.into());
                });
            }

            // updating tags info
            if !r.tags.is_empty() {
                r.tags.iter().for_each(|t| {
                    detections.tags.insert(t.into());
                });
            }

            // we update actions
            if !r.actions.is_empty() {
                r.actions.iter().for_each(|a| {
                    detections.actions.insert(a.into());
                });
            }

            // we bound the severity of an event
            detections.severity = bound_severity(detections.severity + r.severity);
        } else if r.is_filter() {
            let Some(filters) = self.filter.get_include_or_insert_default() else {
                return;
            };

            filters.rules.insert(Cow::from(&r.name));

            // updating tags info
            if !r.tags.is_empty() {
                r.tags.iter().for_each(|t| {
                    filters.tags.insert(t.into());
                });
            }

            // we update actions
            if !r.actions.is_empty() {
                r.actions.iter().for_each(|a| {
                    filters.actions.insert(a.into());
                });
            }
        }
    }

    #[inline]
    fn update_exclude(&mut self, r: &'s CompiledRule) {
        if r.is_detection() {
            self.detection.exclude(&r.name);
        } else if r.is_filter() {
            self.filter.exclude(&r.name);
        }
    }

    /// Returns the decision for filter rules in this scan result.
    ///
    /// Returns `Decision::Include` if filter rules are included, or `Decision::Exclude`
    /// if they are excluded from the result.
    #[inline]
    pub fn filter_decision(&self) -> Decision {
        if self.filter.is_include() {
            Decision::Include
        } else {
            Decision::Exclude
        }
    }

    /// Returns the decision for detection rules in this scan result.
    ///
    /// Returns `Decision::Include` if detection rules are included, or `Decision::Exclude`
    /// if they are excluded from the result.
    #[inline]
    pub fn detection_decision(&self) -> Decision {
        if self.detection.is_include() {
            Decision::Include
        } else {
            Decision::Exclude
        }
    }

    /// Returns `true` if this scan result represents the default exclude decision.
    ///
    /// A scan result is considered a default exclude when both detection and filter
    /// decisions are set to exclude their default values.
    #[inline]
    pub fn is_default_exclude(&self) -> bool {
        self.detection.is_default_exclude() && self.filter.is_default_exclude()
    }

    /// Returns `true` if this scan result contains only included filter rules.
    ///
    /// This is `true` when detection rules are excluded and filter rules are included,
    /// indicating that only filter rules matched during scanning.
    #[inline(always)]
    pub fn is_only_filter_include(&self) -> bool {
        self.detection_decision().is_exclude() && self.filter_decision().is_include()
    }

    /// Returns `true` if the scan result includes a filter rule with the given name.
    ///
    /// # Examples
    ///
    /// ```
    /// use gene::{Compiler, Engine};
    ///
    /// let mut compiler = Compiler::new();
    /// compiler.load_rules_from_str(r#"
    /// name: test.filter
    /// type: filter
    /// matches:
    ///     $a: .field == "value"
    /// condition: $a
    /// "#).unwrap();
    ///
    /// let mut engine = Engine::try_from(compiler).unwrap();
    /// // ... scan an event ...
    /// // let scan_result = engine.scan(&event).unwrap();
    /// // assert!(scan_result.includes_filter("test.filter"));
    /// ```
    #[inline(always)]
    pub fn includes_filter<S: AsRef<str>>(&self, name: S) -> bool {
        self.filter
            .get_include()
            .map(|f| f.rules.contains(name.as_ref()))
            .unwrap_or_default()
    }

    /// Returns `true` if the scan result includes a detection rule with the given name.
    ///
    /// # Examples
    ///
    /// ```
    /// use gene::{Compiler, Engine};
    ///
    /// let mut compiler = Compiler::new();
    /// compiler.load_rules_from_str(r#"
    /// name: test.detection
    /// matches:
    ///     $a: .field == "value"
    /// condition: $a
    /// "#).unwrap();
    ///
    /// let mut engine = Engine::try_from(compiler).unwrap();
    /// // ... scan an event ...
    /// // let scan_result = engine.scan(&event).unwrap();
    /// // assert!(scan_result.includes_detection("test.detection"));
    /// ```
    #[inline(always)]
    pub fn includes_detection<S: AsRef<str>>(&self, name: S) -> bool {
        self.detection
            .get_include()
            .map(|d| d.rules.contains(name.as_ref()))
            .unwrap_or_default()
    }

    /// Returns `true` if the scan result includes the specified tag.
    ///
    /// Checks both detection and filter rules for the given tag.
    ///
    /// # Examples
    ///
    /// ```
    /// use gene::{Compiler, Engine};
    ///
    /// let mut compiler = Compiler::new();
    /// compiler.load_rules_from_str(r#"
    /// name: test.rule
    /// meta:
    ///     tags: ["network", "suspicious"]
    /// matches:
    ///     $a: .field == "value"
    /// condition: $a
    /// "#).unwrap();
    ///
    /// let mut engine = Engine::try_from(compiler).unwrap();
    /// // ... scan an event ...
    /// // let scan_result = engine.scan(&event).unwrap();
    /// // assert!(scan_result.includes_tag("network"));
    /// ```
    #[inline(always)]
    pub fn includes_tag<S: AsRef<str>>(&self, tag: S) -> bool {
        self.detection
            .get_include()
            .map(|d| d.tags.contains(tag.as_ref()))
            .or_else(|| {
                self.filter
                    .get_include()
                    .map(|f| f.tags.contains(tag.as_ref()))
            })
            .unwrap_or_default()
    }

    /// Returns `true` if the scan result includes the specified action.
    ///
    /// Checks both detection and filter rules for the given action.
    ///
    /// # Examples
    ///
    /// ```
    /// use gene::{Compiler, Engine};
    ///
    /// let mut compiler = Compiler::new();
    /// compiler.load_rules_from_str(r#"
    /// name: test.rule
    /// actions: ["alert", "log"]
    /// matches:
    ///     $a: .field == "value"
    /// condition: $a
    /// "#).unwrap();
    ///
    /// let mut engine = Engine::try_from(compiler).unwrap();
    /// // ... scan an event ...
    /// // let scan_result = engine.scan(&event).unwrap();
    /// // assert!(scan_result.includes_action("alert"));
    /// ```
    #[inline(always)]
    pub fn includes_action<S: AsRef<str>>(&self, action: S) -> bool {
        self.detection
            .get_include()
            .map(|d| d.actions.contains(action.as_ref()))
            .or_else(|| {
                self.filter
                    .get_include()
                    .map(|f| f.actions.contains(action.as_ref()))
            })
            .unwrap_or_default()
    }

    /// Returns `true` if the scan result includes the specified MITRE ATT&CK ID.
    ///
    /// The comparison is case-insensitive. No validation is performed on the input
    /// ID - if it does not conform to MITRE ATT&CK ID format, this will return `false`.
    ///
    /// # Examples
    ///
    /// ```
    /// use gene::{Compiler, Engine};
    ///
    /// let mut compiler = Compiler::new();
    /// compiler.load_rules_from_str(r#"
    /// name: test.rule
    /// meta:
    ///     attack: ["T1059"]
    /// matches:
    ///     $a: .field == "value"
    /// condition: $a
    /// "#).unwrap();
    ///
    /// let mut engine = Engine::try_from(compiler).unwrap();
    /// // ... scan an event ...
    /// // let scan_result = engine.scan(&event).unwrap();
    /// // assert!(scan_result.includes_attack_id("t1059"));
    /// // assert!(scan_result.includes_attack_id("T1059"));
    /// ```
    #[inline(always)]
    pub fn includes_attack_id<S: AsRef<str>>(&self, id: S) -> bool {
        let attack_id = id.as_ref().to_ascii_uppercase();

        self.detection
            .get_include()
            .map(|d| d.attack.contains(&Cow::from(&attack_id)))
            .unwrap_or_default()
    }
}

#[derive(Debug, Default, Clone)]
struct RuleCacheEntry {
    filters: Vec<usize>,
    detections: Vec<usize>,
}

/// Structure to represent an [`Event`] scanning engine.
/// Its role being to scan any structure implementing [`Event`] trait
/// with all the [`rules::Rule`] loaded into the engine
///
/// # Example
///
/// ```
/// use gene_derive::{Event, FieldGetter};
/// use gene::{Compiler, Engine, Event, FieldGetter, FieldValue, FieldNameIterator};
/// use std::borrow::Cow;
///
/// #[derive(FieldGetter)]
/// struct LogData {
///     a: String,
///     b: u64,
/// }
///
/// // we define our log event structure and derive Event
/// #[derive(Event, FieldGetter)]
/// #[event(id = self.event_id, source = "whatever".into())]
/// struct LogEvent<T> {
///    name: String,
///    some_field: u32,
///    event_id: i64,
///    data: LogData,
///    some_gen: T,
/// }
///
/// // We define a basic event
/// let event = LogEvent::<f64>{
///     name: "demo_event".into(),
///     some_field: 24,
///     event_id: 1,
///     data: LogData{
///         a: "some_inner_data".into(),
///         b: 42,
///     },
///     some_gen: 3.14,
/// };
///
/// let mut c = Compiler::new();
/// c.load_rules_from_str(r#"
/// ---
/// name: toast.it
/// match-on:
///     events:
///         whatever: [1]
/// meta:
///     tags: [ "my:super:tag" ]
///     attack: [ T1234 ]
///     authors: [ me ]
///     comments:
///         - just a show case
/// matches:
///     $n: .name == "demo_event"
///     $pi: .some_gen >= '3.14'
///     $a: .data.a ~= '(?i:some_INNER.*)'
///     $b: .data.b <= '42'
/// condition: $n and $pi and $a and $b
/// ..."#).unwrap();
/// let mut e = Engine::try_from(c).unwrap();
/// let scan_res = e.scan(&event).unwrap();
/// println!("{:#?}", scan_res);
///
/// assert!(scan_res.includes_detection("toast.it"));
/// assert!(scan_res.includes_tag("my:super:tag"));
/// assert!(scan_res.includes_attack_id("T1234"));
/// ```
#[derive(Debug, Default, Clone)]
pub struct Engine {
    // rule names mapping to rule index in rules member
    names: HashMap<String, usize>,
    // all the rules in the engine
    rules: Vec<CompiledRule>,
    // cache the list of rules indexes to match a given (source, id)
    // key: (source, event_id)
    // value: vector of rule indexes
    rules_cache: HashMap<(String, i64), RuleCacheEntry>,
    // cache rules dependencies
    // key: rule index
    // value: vector of dependency indexes
    deps_cache: HashMap<usize, Vec<usize>>,
}

impl TryFrom<Compiler> for Engine {
    type Error = compiler::Error;
    fn try_from(mut c: Compiler) -> Result<Self, Self::Error> {
        let mut e = Self::default();
        // we must be sure rules have been compiled
        c.compile()?;
        for r in c.compiled {
            e.insert_compiled(r);
        }
        Ok(e)
    }
}

impl Engine {
    /// creates a new event scanning engine
    pub fn new() -> Self {
        Self {
            ..Default::default()
        }
    }

    #[inline(always)]
    pub(crate) fn insert_compiled(&mut self, r: CompiledRule) {
        let has_deps = !r.depends.is_empty();

        // this is the index the rule is going to be inserted at
        let rule_idx = self.rules.len();
        self.names.insert(r.name.clone(), rule_idx);
        self.rules.push(r);

        // since we know all the dependent rules are there, we can cache
        // the list of dependencies and we never need to compute it again
        if has_deps {
            self.deps_cache
                .insert(rule_idx, self.dfs_dep_search(rule_idx));
        }

        // cache becomes outdated
        self.rules_cache.clear();
    }

    #[inline(always)]
    fn cache_rules(&mut self, src: String, id: i64) {
        let key = (src, id);
        let mut tmp_filters = BTreeMap::new();
        let mut tmp_detections = BTreeMap::new();

        if !self.rules_cache.contains_key(&key) {
            for (i, r) in self
                .rules
                .iter()
                // !!! do not enumerate after a filter otherwise indexes will
                // not be the good ones
                .enumerate()
                // we take only filter and detection rules
                .filter(|(_, r)| r.is_filter() || r.is_detection())
                // we take only rules that can match on that kind of event
                .filter(|(_, r)| r.can_match_on(&key.0, id))
            {
                if r.is_filter() {
                    tmp_filters.insert(((r.decision, r.severity), Cow::from(&r.name)), i);
                } else if r.is_detection() {
                    tmp_detections.insert(((r.decision, r.severity), Cow::from(&r.name)), i);
                }
            }

            self.rules_cache.insert(
                key,
                RuleCacheEntry {
                    filters: tmp_filters.values().rev().cloned().collect(),
                    detections: tmp_detections.values().rev().cloned().collect(),
                },
            );
        }
    }

    #[inline(always)]
    fn cached_rules(&self, src: String, id: i64) -> Option<&RuleCacheEntry> {
        let key = (src, id);
        self.rules_cache.get(&key)
    }

    /// Returns the `Vec` of [CompiledRule] currently loaded in the engine
    pub fn compiled_rules(&self) -> &[CompiledRule] {
        &self.rules
    }

    /// returns the number of rules loaded in the engine
    #[inline(always)]
    pub fn rules_count(&self) -> usize {
        self.rules.len()
    }

    /// returns true if no rules are loaded in the engine
    #[inline(always)]
    pub fn is_empty(&self) -> bool {
        self.rules.is_empty()
    }

    /// Dfs recursive dependency finding
    /// There is no check for circular references as those are impossible
    /// due to the fact that a rule cannot depend on a non existing rule.
    #[inline(always)]
    fn dfs_dep_search(&self, rule_idx: usize) -> Vec<usize> {
        // recursive function
        fn rule_dep_search_rec(
            eng: &Engine,
            rule_idx: usize,
            dfs: &mut Vec<usize>,
            mark: &mut HashSet<usize>,
        ) {
            for req_name in eng.rules[rule_idx].depends.iter() {
                if let Some(&dep) = eng.names.get(req_name) {
                    rule_dep_search_rec(eng, dep, dfs, mark);
                    if !mark.contains(&dep) {
                        dfs.push(dep);
                        mark.insert(dep);
                    }
                }
            }
        }

        let mut req = HashSet::new();
        let mut dfs = Vec::new();
        rule_dep_search_rec(self, rule_idx, &mut dfs, &mut req);
        dfs
    }

    /// Scan an [`Event`] with all the rules loaded in the [`Engine`]
    pub fn scan<E>(
        &mut self,
        event: &E,
    ) -> Result<ScanResult<'_>, Box<(ScanResult<'_>, rules::Error)>>
    where
        E: for<'e> Event<'e>,
    {
        let mut sr = ScanResult::default_exclude();
        let mut last_err: Option<rules::Error> = None;

        let src = event.source();
        let id = event.id();

        self.cache_rules(src.clone().into(), id);
        let cached_rules = self.cached_rules(src.into(), id).unwrap();
        let mut states = HashMap::new();

        // we iterate over each because we don't want exclude rules from filter
        // exclude to impact detection include and vice versa
        for it in [cached_rules.filters.iter(), cached_rules.detections.iter()] {
            for i in it {
                // this is equivalent to an OOB error but this should not happen
                let r = self.rules.get(*i).unwrap();

                if !r.depends.is_empty() {
                    debug_assert!(self.deps_cache.contains_key(i));
                    // there are some dependent rules to match against
                    if let Some(deps) = self.deps_cache.get(i) {
                        // we match every dependency of the rule first
                        for &r_i in deps.iter() {
                            if let Some(r) = self.rules.get(r_i) {
                                // we don't need to compute rule again
                                // NB: rule might be used in several places and already computed
                                if states.contains_key(&Cow::Borrowed(r.name.as_str())) {
                                    continue;
                                }

                                // if the rule cannot match we don't need to go further
                                if !r.can_match_on(event.source(), id) {
                                    states.insert(Cow::Borrowed(r.name.as_str()), false);
                                    continue;
                                }

                                match r.match_event_with_states(event, &states) {
                                    Ok(ok) => {
                                        states.insert(Cow::Borrowed(r.name.as_str()), ok);
                                    }
                                    Err(e) => last_err = Some(e),
                                }
                            }
                        }
                    }
                }

                // if the rule has already been matched in the process
                // of dependency matching of whatever rule
                let ok = match states.get(&Cow::Borrowed(r.name.as_str())) {
                    Some(&ok) => ok,
                    None => match r.match_event_with_states(event, &states) {
                        Ok(ok) => ok,
                        Err(e) => {
                            last_err = Some(e);
                            false
                        }
                    },
                };

                // we process scan result
                if ok {
                    if r.decision.is_include() {
                        sr.update_include(r);
                    } else {
                        sr.update_exclude(r);
                        break;
                    }
                }
            }
        }

        if let Some(err) = last_err {
            return Err((sr, err).into());
        }

        Ok(sr)
    }
}

#[cfg(test)]
mod test {
    use super::*;
    use crate::{FieldGetter, FieldNameIterator};

    macro_rules! fake_event {
        ($name:tt, id=$id:literal, source=$source:literal, $(($path:literal, $value:expr)),*) => {
            struct $name {}

            impl<'f> FieldGetter<'f> for $name{

                fn get_from_iter(&'f self, _: FieldNameIterator<'_>) -> Option<$crate::FieldValue<'f>>{
                    unimplemented!()
                }

                fn get_from_path(&self, path: &crate::XPath) -> Option<$crate::FieldValue<'_>> {
                    match path.to_string_lossy().as_ref() {
                        $($path => Some($value.into()),)*
                        _ => None,
                    }
                }
            }

            impl<'e> Event<'e> for $name {

                fn id(&self) -> i64{
                    $id
                }

                fn source(&self) -> std::borrow::Cow<'_,str> {
                    $source.into()
                }
            }
        };
    }

    #[test]
    fn test_basic_match_scan() {
        let mut c = Compiler::new();

        c.load_rules_from_str(
            r#"
name: test
matches:
    $a: .ip ~= "^8\.8\."
condition: $a
actions: ["do_something"]
"#,
        )
        .unwrap();

        let mut e = Engine::try_from(c).unwrap();
        fake_event!(Dummy, id = 1, source = "test", (".ip", "8.8.4.4"));
        let sr = e.scan(&Dummy {}).unwrap();
        assert!(sr.includes_detection("test"));
        assert!(sr.includes_action("do_something"));
        assert!(!sr.filter_decision().is_include());
        assert!(!sr.is_default_exclude());
        assert!(!sr.is_only_filter_include());
    }

    #[test]
    fn test_basic_match_scan_vector() {
        let mut c = Compiler::new();

        c.load_rules_from_str(
            r#"
name: test
matches:
    $a: .ip ~= "^8\.8\."
condition: $a
"#,
        )
        .unwrap();

        let mut e = Engine::try_from(c).unwrap();
        fake_event!(
            Dummy,
            id = 1,
            source = "test",
            (".ip", vec!["9.9.9.9", "8.8.4.4"])
        );
        let sr = e.scan(&Dummy {}).unwrap();
        assert!(sr.detection_decision().is_include());
        assert!(sr.includes_detection("test"));
    }

    #[test]
    fn test_basic_filter_scan() {
        let mut c = Compiler::new();
        c.load_rules_from_str(
            r#"
name: test
type: filter
matches:
    $a: .ip ~= "^8\.8\."
condition: $a
actions: ["do_something"]"#,
        )
        .unwrap();

        let mut e = Engine::try_from(c).unwrap();
        fake_event!(Dummy, id = 1, source = "test", (".ip", "8.8.4.4"));
        let sr = e.scan(&Dummy {}).unwrap();
        // filter matches should not be put in matches
        assert!(!sr.includes_detection("test"));
        // actions should be propagated even if it is a filter
        assert!(sr.includes_action("do_something"));
        assert!(!sr.is_default_exclude());
        assert!(sr.filter_decision().is_include());
        assert!(sr.is_only_filter_include());
    }

    #[test]
    fn test_include_all_empty_filter() {
        // test that we must take all events when nothing is
        // included / excluded
        let mut c = Compiler::new();
        c.load_rules_from_str(
            r#"
name: test
type: filter
match-on:
    events:
        test: []
"#,
        )
        .unwrap();

        let mut e = Engine::try_from(c).unwrap();
        fake_event!(IpEvt, id = 1, source = "test", (".ip", "8.8.4.4"));
        e.scan(&IpEvt {}).unwrap();

        fake_event!(PathEvt, id = 2, source = "test", (".path", "/bin/ls"));
        e.scan(&PathEvt {}).unwrap();
    }

    #[test]
    fn test_include_filter() {
        // test that only events included must be included
        let mut c = Compiler::new();
        c.load_rules_from_str(
            r#"
name: test
type: filter
match-on:
    events:
        test: [ 2 ]
"#,
        )
        .unwrap();

        let mut e = Engine::try_from(c).unwrap();

        fake_event!(IpEvt, id = 1, source = "test", (".ip", "8.8.4.4"));
        // not explicitly included so it should not be
        assert!(e.scan(&IpEvt {}).unwrap().is_default_exclude());

        fake_event!(PathEvt, id = 2, source = "test", (".path", "/bin/ls"));
        assert!(e.scan(&PathEvt {}).unwrap().is_only_filter_include());
    }

    #[test]
    fn test_exclude_filter() {
        // test that only stuff excluded must be excluded
        let mut c = Compiler::new();
        c.load_rules_from_str(
            r#"
name: test
type: filter
match-on:
    events:
        test: [ -1 ]
"#,
        )
        .unwrap();

        let mut e = Engine::try_from(c).unwrap();
        fake_event!(IpEvt, id = 1, source = "test", (".ip", "8.8.4.4"));
        assert!(e.scan(&IpEvt {}).unwrap().is_default_exclude());

        // if not explicitely excluded it is included
        fake_event!(PathEvt, id = 2, source = "test", (".path", "/bin/ls"));
        assert!(e.scan(&PathEvt {}).unwrap().filter_decision().is_include());

        fake_event!(DnsEvt, id = 3, source = "test", (".domain", "test.com"));
        assert!(e.scan(&DnsEvt {}).unwrap().filter_decision().is_include());
    }

    #[test]
    fn test_mix_include_exclude_filter() {
        // test that when include and exclude filters are
        // specified we take only events in those
        let mut c = Compiler::new();
        c.load_rules_from_str(
            r#"
name: test
type: filter
match-on:
    events:
        test: [ -1, 2 ]
"#,
        )
        .unwrap();

        let mut e = Engine::try_from(c).unwrap();

        fake_event!(IpEvt, id = 1, source = "test", (".ip", "8.8.4.4"));
        assert!(e.scan(&IpEvt {}).unwrap().is_default_exclude());

        fake_event!(PathEvt, id = 2, source = "test", (".path", "/bin/ls"));
        assert!(e.scan(&PathEvt {}).unwrap().filter_decision().is_include());

        // this has not been excluded but not included so it should
        // not match
        fake_event!(DnsEvt, id = 3, source = "test", (".domain", "test.com"));
        assert!(e.scan(&DnsEvt {}).unwrap().is_default_exclude());
    }

    #[test]
    fn test_match_and_filter() {
        let mut c = Compiler::new();
        c.load_rules_from_str(
            r#"
---
name: match
matches:
    $a: .ip ~= "^8\.8\."
condition: $a
actions: ["do_something"]

---

name: filter
type: filter
match-on:
    events:
        test: [1]
"#,
        )
        .unwrap();

        let mut e = Engine::try_from(c).unwrap();

        fake_event!(Dummy, id = 1, source = "test", (".ip", "8.8.4.4"));
        let sr = e.scan(&Dummy {}).unwrap();
        assert!(sr.includes_detection("match"));
        assert!(sr.includes_action("do_something"));
        assert!(sr.filter_decision().is_include());
        assert!(!sr.is_only_filter_include());
    }

    #[test]
    fn test_match_with_tags() {
        let mut c = Compiler::new();
        c.load_rules_from_str(
            r#"
---
name: test.1
meta:
    tags: ['some:random:tag']
match-on:
    events:
        test: []

---

name: test.2
meta:
    tags: ['another:tag', 'some:random:tag']
match-on:
    events:
        test: []

"#,
        )
        .unwrap();

        let mut e = Engine::try_from(c).unwrap();

        fake_event!(Dummy, id = 1, source = "test", (".ip", "8.8.4.4"));
        let sr = e.scan(&Dummy {}).unwrap();
        assert!(sr.includes_detection("test.1"));
        assert!(sr.includes_detection("test.2"));
        assert!(sr.includes_tag("some:random:tag"));
        assert!(sr.includes_tag("another:tag"));
    }

    #[test]
    fn test_match_with_attack() {
        let mut c = Compiler::new();
        c.load_rules_from_str(
            r#"
---
name: detect.t4343
meta:
    attack:
        - t4343
match-on:
    events:
        test: []

---

name: detect.t4242
meta:
    attack:
        - t4242
match-on:
    events:
        test: []
"#,
        )
        .unwrap();

        let mut e = Engine::try_from(c).unwrap();

        fake_event!(Dummy, id = 1, source = "test", (".ip", "8.8.4.4"));
        let sr = e.scan(&Dummy {}).unwrap();
        assert!(sr.includes_detection("detect.t4242"));
        assert!(sr.includes_detection("detect.t4343"));
        assert!(sr.includes_attack_id("t4242"));
        assert!(sr.includes_attack_id("t4343"));
    }

    #[test]
    fn test_rule_dependency() {
        let mut c = Compiler::new();
        c.load_rules_from_str(
            r#"
name: dep.rule
type: dependency
matches:
    $ip: .ip == '8.8.4.4'
condition: any of them

---

name: main
matches:
    $dep1: rule(dep.rule)
condition: all of them

---

name: match.all

"#,
        )
        .unwrap();

        let mut e = Engine::try_from(c).unwrap();

        fake_event!(Dummy, id = 1, source = "test", (".ip", "8.8.4.4"));
        let sr = e.scan(&Dummy {}).unwrap();
        assert!(sr.includes_detection("main"));
        assert!(!sr.includes_detection("dep.rule"));
        assert!(sr.includes_detection("match.all"));

        fake_event!(Dummy2, id = 1, source = "test", (".ip", "8.8.8.8"));
        let sr = e.scan(&Dummy2 {}).unwrap();
        assert!(!sr.includes_detection("depends"));
        assert!(!sr.includes_detection("dep.rule"));
        assert!(sr.includes_detection("match.all"));
    }

    #[test]
    fn test_dep_cache() {
        let mut c = Compiler::new();
        c.load_rules_from_str(
            r#"
name: dep.rule
type: dependency
matches:
    $ip: .ip == '8.8.4.4'
condition: any of them

---

name: main
matches:
    $dep1: rule(dep.rule)
condition: all of them

---

name: multi.deps
matches:
    $dep1: rule(dep.rule)
    $dep2: rule(main)
    $dep3: rule(dep.rule)
    $dep4: rule(dep.rule)
condition: all of them
"#,
        )
        .unwrap();

        let e = Engine::try_from(c).unwrap();

        // we check the dep cache is correct
        assert_eq!(
            e.deps_cache
                .get(e.names.get("multi.deps").unwrap())
                .unwrap()
                .len(),
            2
        );
    }

    #[test]
    fn test_compiled_rules() {
        let mut c = Compiler::new();
        c.load_rules_from_str(
            r#"
name: dep.rule
type: dependency

---

name: main
type: filter

---

name: multi.deps
type: detection
"#,
        )
        .unwrap();

        let e = Engine::try_from(c).unwrap();

        assert_eq!(
            e.compiled_rules().iter().filter(|c| c.is_filter()).count(),
            1
        );
        assert_eq!(
            e.compiled_rules()
                .iter()
                .filter(|c| c.is_detection())
                .count(),
            1
        );
    }

    #[test]
    fn test_rule_dependency_bug() {
        let mut c = Compiler::new();
        c.load_rules_from_str(
            r#"
name: dep.rule
type: dependency
match-on:
    events:
        test: [ 1 ]
matches:
    $ip: .ipv6 == '::1'
condition: any of them

---

name: main
matches:
    $dep1: rule(dep.rule)
condition: all of them

---

name: match.all

"#,
        )
        .unwrap();

        let mut e = Engine::try_from(c).unwrap();

        fake_event!(Dummy, id = 1, source = "test", (".ipv6", "::1"));
        let sr = e.scan(&Dummy {}).unwrap();
        assert!(sr.includes_detection("main"));
        assert!(!sr.includes_detection("dep.rule"));
        assert!(sr.includes_detection("match.all"));

        fake_event!(Dummy2, id = 2, source = "test", (".ip", "8.8.8.8"));
        let sr = e.scan(&Dummy2 {}).unwrap();
        assert!(!sr.includes_detection("depends"));
        assert!(!sr.includes_detection("dep.rule"));
        assert!(sr.includes_detection("match.all"));
    }

    #[test]
    fn test_decision_include_behavior() {
        // Test basic include decision behavior
        let mut c = Compiler::new();
        c.load_rules_from_str(
            r#"
    name: include.rule
    matches:
        $a: .ip == "8.8.4.4"
    condition: $a
    "#,
        )
        .unwrap();

        let mut e = Engine::try_from(c).unwrap();
        fake_event!(TestEvent, id = 1, source = "test", (".ip", "8.8.4.4"));

        let sr = e.scan(&TestEvent {}).unwrap();
        assert!(sr.includes_detection("include.rule"));
        assert!(sr.detection_decision().is_include());
    }

    #[test]
    fn test_decision_exclude_behavior() {
        // Test basic exclude decision behavior
        let mut c = Compiler::new();
        c.load_rules_from_str(
            r#"
    name: exclude.rule
    decision: exclude
    matches:
        $a: .ip == "8.8.4.4"
    condition: $a
    "#,
        )
        .unwrap();

        let mut e = Engine::try_from(c).unwrap();
        fake_event!(TestEvent, id = 1, source = "test", (".ip", "8.8.4.4"));

        let sr = e.scan(&TestEvent {}).unwrap();
        assert!(!sr.is_default_exclude());
        assert!(sr.detection_decision().is_exclude());
    }

    #[test]
    fn test_decision_exclude_stops_processing() {
        // Test that exclude decisions stop further rule processing
        let mut c = Compiler::new();
        c.load_rules_from_str(
            r#"
---
name: first.rule
matches:
    $a: .field == "value"
condition: $a

---
name: exclude.rule
decision: exclude
matches:
    $b: .other == "trigger"
condition: $b

---
name: third.rule
matches:
    $c: .another == "should_not_match"
condition: $c
    "#,
        )
        .unwrap();

        let mut e = Engine::try_from(c).unwrap();

        fake_event!(
            TestEvent,
            id = 1,
            source = "test",
            (".field", "value"),
            (".other", "trigger"),
            (".another", "should_not_match")
        );

        let sr = e.scan(&TestEvent {}).unwrap();
        assert!(!sr.includes_detection("first.rule"));
        assert!(!sr.includes_detection("exclude.rule"));
        assert!(!sr.includes_detection("third.rule"));
        assert!(sr.detection_decision().is_exclude())
    }

    #[test]
    fn test_decision_include_continues_processing() {
        // Test that include decisions allow all rules to process
        let mut c = Compiler::new();
        c.load_rules_from_str(
            r#"
---
name: first.rule
matches:
    $a: .field == "value"
condition: $a

---
name: second.rule
matches:
    $b: .other == "trigger"
condition: $b

---
name: third.rule
matches:
    $c: .another == "match"
condition: $c
    "#,
        )
        .unwrap();

        let mut e = Engine::try_from(c).unwrap();

        fake_event!(
            TestEvent,
            id = 1,
            source = "test",
            (".field", "value"),
            (".other", "trigger"),
            (".another", "match")
        );

        let sr = e.scan(&TestEvent {}).unwrap();
        assert!(sr.includes_detection("first.rule"));
        assert!(sr.includes_detection("second.rule"));
        assert!(sr.includes_detection("third.rule"));
        assert!(sr.detection_decision().is_include())
    }

    #[test]
    fn test_decision_mixed_scenarios_1() {
        // Test mixed include/exclude scenarios
        // Both detection and filter should be included
        let mut c = Compiler::new();
        c.load_rules_from_str(
            r#"
---
name: filter.rule
type: filter
matches:
    $a: .field == "value"
condition: $a

---
name: detection.rule
matches:
    $b: .other == "trigger"
condition: $b
    "#,
        )
        .unwrap();

        let mut e = Engine::try_from(c).unwrap();

        fake_event!(
            TestEvent,
            id = 1,
            source = "test",
            (".field", "value"),
            (".other", "trigger")
        );

        let sr = e.scan(&TestEvent {}).unwrap();
        assert!(sr.includes_filter("filter.rule"));
        assert!(sr.includes_detection("detection.rule"));
        assert!(sr.filter_decision().is_include());
        assert!(sr.detection_decision().is_include());
    }

    #[test]
    fn test_decision_mixed_scenarios_2() {
        // Test mixed include/exclude scenarios where
        // we exclude event in a filter but a detection
        // might include it too.
        let mut c = Compiler::new();
        c.load_rules_from_str(
            r#"
---
name: filter.rule
type: filter
decision: exclude
matches:
    $a: .field == "value"
condition: $a

---
name: detection.rule
matches:
    $b: .other == "trigger"
condition: $b
    "#,
        )
        .unwrap();

        let mut e = Engine::try_from(c).unwrap();

        fake_event!(
            TestEvent,
            id = 1,
            source = "test",
            (".field", "value"),
            (".other", "trigger")
        );

        let sr = e.scan(&TestEvent {}).unwrap();
        // filter must exclude
        assert!(!sr.includes_filter("filter.rule"));
        assert!(sr.filter_decision().is_exclude());

        // detection must include
        assert!(sr.includes_detection("detection.rule"));
        assert!(sr.detection_decision().is_include());
    }

    #[test]
    fn test_decision_mixed_scenarios_3() {
        // Test mixed include/exclude scenarios where
        // we exclude event in adetection but a filter
        // includes it.
        let mut c = Compiler::new();
        c.load_rules_from_str(
            r#"
---
name: filter.rule
type: filter
matches:
    $a: .field == "value"
condition: $a

---
name: detection.rule
decision: exclude
matches:
    $b: .other == "trigger"
condition: $b
    "#,
        )
        .unwrap();

        let mut e = Engine::try_from(c).unwrap();

        fake_event!(
            TestEvent,
            id = 1,
            source = "test",
            (".field", "value"),
            (".other", "trigger")
        );

        let sr = e.scan(&TestEvent {}).unwrap();
        // filter must include
        assert!(sr.includes_filter("filter.rule"));
        assert!(sr.filter_decision().is_include());

        // detection must exclude
        assert!(!sr.includes_detection("detection.rule"));
        assert!(sr.detection_decision().is_exclude());
    }
}