pure-magic 0.3.0

Safe Rust re-implementation of libmagic
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
use std::{
    collections::{HashMap, HashSet},
    fs::File,
    io::{self, Read},
    iter::Peekable,
    path::Path,
};

use dyf::FormatString;
use flagset::FlagSet;
use pest::{Parser, iterators::Pair};
use pest_derive::Parser;
use regex::bytes;
use tracing::warn;
use uuid::Uuid;

use crate::{
    CmpOp, DependencyRule, DirOffset, Entry, EntryNode, Error, Flag, FloatTest, FloatTransform,
    IndOffset, IndirectMod, IndirectMods, MagicRule, MagicSource, Match, Message, Name, Offset,
    OffsetType, Op, PStringLen, PStringTest, ReMod, RegexTest, ScalarTest, ScalarTransform,
    SearchTest, Shift, StrengthMod, String16Encoding, String16Test, StringMod, StringTest, Test,
    TestValue, Use,
    numeric::{FloatDataType, Scalar, ScalarDataType},
    utils::nonmagic,
};

pub(crate) fn prepare_bytes_re(s: &[u8]) -> String {
    let mut out = String::new();
    for b in s {
        if b.is_ascii() {
            out.push(*b as char);
        } else {
            out.push_str(&format!("\\x{b:02x}"));
        }
    }
    out
}

pub(crate) fn unescape_string_to_string(s: &str) -> String {
    let mut result = String::new();
    let mut chars = s.chars().peekable();
    while let Some(c) = chars.next() {
        // string termination
        if c == '\0' {
            return result;
        }

        if c == '\\' {
            if let Some(next_char) = chars.peek() {
                match next_char {
                    // string termination
                    'n' => {
                        result.push('\n');
                        chars.next(); // Skip the 'n'
                    }
                    't' => {
                        result.push('\t');
                        chars.next(); // Skip the 't'
                    }
                    'r' => {
                        result.push('\r');
                        chars.next(); // Skip the 'r'
                    }
                    '\\' => {
                        result.push('\\');
                        chars.next(); // Skip the '\\'
                    }
                    'x' => {
                        // Handle hex escape sequences (e.g., \x7F)
                        chars.next(); // Skip the 'x'

                        let mut hex_str = String::new();
                        for _ in 0..2 {
                            if chars
                                .peek()
                                .map(|c| c.is_ascii_hexdigit())
                                .unwrap_or_default()
                            {
                                hex_str.push(chars.next().unwrap());
                                continue;
                            }
                            break;
                        }

                        if let Ok(hex) = u8::from_str_radix(&hex_str, 16) {
                            result.push(hex as char);
                        } else {
                            result.push(c); // Push the backslash if the hex sequence is invalid
                        }
                    }
                    // Handle octal escape sequences (e.g., \1 \23 \177)
                    '0'..='7' => {
                        let mut octal_str = String::new();
                        for _ in 0..3 {
                            if chars
                                .peek()
                                .map(|c| matches!(c, '0'..='7'))
                                .unwrap_or_default()
                            {
                                octal_str.push(chars.next().unwrap());
                                continue;
                            }
                            break;
                        }
                        //let octal_str: String = chars.by_ref().take(1).collect();
                        if let Ok(octal) = u8::from_str_radix(&octal_str, 8) {
                            result.push(octal as char);
                        } else {
                            result.push(c); // Push the backslash if the octal sequence is invalid
                        }
                    }
                    _ => {
                        // we skip the backslash
                    }
                }
            } else {
                result.push(c); // Push the backslash if no character follows
            }
        } else {
            result.push(c);
        }
    }

    result
}

#[inline(always)]
fn is_printable_ascii(c: u8) -> bool {
    c.is_ascii() && (c.is_ascii_graphic() || c.is_ascii_whitespace())
}

pub(crate) fn unescape_string_to_vec(s: &str) -> (bool, Vec<u8>) {
    let mut result = Vec::new();
    let mut chars = s.bytes().peekable();
    // this flags wether we replaced some binary values encoded in the
    // pattern. It seems libmagic doesn't care if the encoded value is
    // actually a valid ASCII character.
    let mut binary = false;
    while let Some(c) = chars.next() {
        if c == b'\\' {
            if let Some(next_char) = chars.peek() {
                match next_char {
                    // string termination
                    b'n' => {
                        result.push(b'\n');
                        chars.next(); // Skip the 'n'
                    }
                    b't' => {
                        result.push(b'\t');
                        chars.next(); // Skip the 't'
                    }
                    b'r' => {
                        result.push(b'\r');
                        chars.next(); // Skip the 'r'
                    }
                    b'\\' => {
                        result.push(b'\\');
                        chars.next(); // Skip the '\\'
                    }
                    b'x' => {
                        // Handle hex escape sequences (e.g., \x7F)
                        chars.next(); // Skip the 'x'

                        let mut hex_str = String::new();
                        for _ in 0..2 {
                            if chars
                                .peek()
                                .map(|c| c.is_ascii_hexdigit())
                                .unwrap_or_default()
                            {
                                hex_str.push(chars.next().unwrap() as char);
                                continue;
                            }
                            break;
                        }

                        if let Ok(hex) = u8::from_str_radix(&hex_str, 16) {
                            // we reached end of string
                            if chars.peek().is_none() && !binary && hex == 0 {
                                continue;
                            }

                            binary = !is_printable_ascii(hex);
                            result.push(hex);
                        } else {
                            result.push(c); // Push the backslash if the hex sequence is invalid
                        }
                    }
                    // Handle octal escape sequences (e.g., \1 \23 \177)
                    b'0'..=b'7' => {
                        let mut octal_str = String::new();
                        for _ in 0..3 {
                            if chars
                                .peek()
                                .map(|c| matches!(c, b'0'..=b'7'))
                                .unwrap_or_default()
                            {
                                octal_str.push(chars.next().unwrap() as char);
                                continue;
                            }
                            break;
                        }
                        if let Ok(octal) = u8::from_str_radix(&octal_str, 8) {
                            // we reached end of string
                            if chars.peek().is_none() && !binary && octal == 0 {
                                continue;
                            }

                            binary = !is_printable_ascii(octal);
                            result.push(octal);
                        } else {
                            result.push(c); // Push the backslash if the octal sequence is invalid
                        }
                    }
                    _ => {
                        // we skip the backslash
                    }
                }
            } else {
                result.push(c); // Push the backslash if no character follows
            }
        } else {
            result.push(c);
        }
    }

    (binary, result)
}

#[inline]
fn parse_pos_number(pair: Pair<'_, Rule>) -> Result<i64, Error> {
    let number_token = pair.into_inner().next().expect("expect number kind pair");
    match number_token.as_rule() {
        Rule::b10_number => number_token
            .as_str()
            .parse::<i64>()
            .map_err(|e| Error::parser(e, number_token.as_span())),
        Rule::b16_number => Ok(u64::from_str_radix(
            number_token
                .as_str()
                .to_lowercase()
                .strip_prefix("0x")
                // guarantee not to panic by parser
                .unwrap(),
            16,
        )
        .map_err(|e| Error::parser(e, number_token.as_span()))?
            as i64),
        _ => panic!("unexpected number"),
    }
}

#[inline]
fn parse_number_pair(pair: Pair<'_, Rule>) -> Result<i64, Error> {
    assert_eq!(pair.as_rule(), Rule::number);
    let inner = pair
        .into_inner()
        .next()
        .expect("positive or negative number expected");

    match inner.as_rule() {
        Rule::pos_number => parse_pos_number(inner),
        Rule::neg_number => parse_pos_number(
            inner
                .into_inner()
                .next()
                .expect("expecting positive number"),
        )
        .map(|i| -i),
        _ => panic!("unexpected number inner pair"),
    }
}

#[derive(Parser)]
#[grammar = "grammar.pest"]
pub(crate) struct FileMagicParser;

impl CmpOp {
    fn from_pair(value: Pair<'_, Rule>) -> Result<Self, Error> {
        match value.as_rule() {
            Rule::op_lt => Ok(Self::Lt),
            Rule::op_gt => Ok(Self::Gt),
            Rule::op_and => Ok(Self::BitAnd),
            Rule::op_neq => Ok(Self::Neq),
            Rule::op_eq => Ok(Self::Eq),
            Rule::op_xor => Ok(Self::Xor),
            Rule::op_not => Ok(Self::Not),
            _ => Err(Error::parser("unimplemented cmp operator", value.as_span())),
        }
    }
}

impl Op {
    fn from_pair(value: Pair<'_, Rule>) -> Result<Self, Error> {
        match value.as_rule() {
            Rule::op_mul => Ok(Self::Mul),
            Rule::op_add => Ok(Self::Add),
            Rule::op_sub => Ok(Self::Sub),
            Rule::op_div => Ok(Self::Div),
            Rule::op_mod => Ok(Self::Mod),
            Rule::op_and => Ok(Self::And),
            Rule::op_or => Ok(Self::Or),
            Rule::op_xor => Ok(Self::Xor),
            _ => Err(Error::parser("unimplemented operator", value.as_span())),
        }
    }
}

impl ScalarDataType {
    fn from_pair(pair: Pair<'_, Rule>) -> Result<Self, Error> {
        let dt = pair.into_inner().next().expect("data type expected");

        macro_rules! handle_types {
            ($($ty: ident),*) => {
                match dt.as_rule() {
                    $(
                        Rule::$ty => Ok(Self::$ty),
                    )*
                    _ => Err(Error::parser("unimplemented data type", dt.as_span())),
                }
            };
        }

        handle_types!(
            belong,
            bequad,
            beshort,
            bedate,
            beldate,
            beqdate,
            byte,
            date,
            ldate,
            quad,
            qwdate,
            uquad,
            lelong,
            ledate,
            leldate,
            leqdate,
            leqldate,
            leshort,
            long,
            short,
            ushort,
            ulong,
            ubelong,
            ubequad,
            ubeshort,
            ubyte,
            ulelong,
            ulequad,
            uleshort,
            ubeqdate,
            lequad,
            uledate,
            offset,
            lemsdosdate,
            lemsdostime,
            leqwdate,
            medate,
            meldate,
            melong
        )
    }
}

impl FloatDataType {
    fn from_pair(pair: Pair<'_, Rule>) -> Result<Self, Error> {
        let dt = pair.into_inner().next().expect("data type expected");

        macro_rules! handle_types {
            ($($ty: ident),*) => {
                match dt.as_rule() {
                    $(
                        Rule::$ty => Ok(Self::$ty),
                    )*
                    _ => Err(Error::parser("unimplemented data type", dt.as_span())),
                }
            };
        }

        handle_types!(bedouble, ledouble, befloat, lefloat)
    }
}

impl FileMagicParser {
    pub(crate) fn parse_str<S: AsRef<str>>(
        s: S,
        source: Option<String>,
    ) -> Result<MagicSource, Error> {
        let pairs = FileMagicParser::parse(Rule::file, s.as_ref()).map_err(Box::new)?;

        let mut rules = vec![];
        let mut dependencies = HashMap::new();
        for file in pairs {
            for rule in file.into_inner() {
                match rule.as_rule() {
                    Rule::rule => {
                        rules.push(MagicRule::from_pair(rule, source.clone())?);
                    }
                    Rule::rule_dependency => {
                        let d = DependencyRule::from_pair(rule, source.clone())?;
                        dependencies.insert(d.name.clone(), d);
                    }
                    Rule::EOI => {}
                    _ => return Err(Error::parser("unexpected rule", rule.as_span())),
                }
            }
        }

        Ok(MagicSource {
            rules,
            dependencies,
        })
    }

    #[inline(always)]
    pub(crate) fn parse_reader<R: Read>(
        r: &mut R,
        source: Option<String>,
    ) -> Result<MagicSource, Error> {
        let s = io::read_to_string(r)?;
        Self::parse_str(s, source)
    }

    pub(crate) fn parse_file<P: AsRef<Path>>(p: P) -> Result<MagicSource, Error> {
        let mut s = File::open(&p)?;
        Self::parse_reader(
            &mut s,
            p.as_ref()
                .file_name()
                .map(|os| os.to_string_lossy().to_string()),
        )
    }
}

impl Flag {
    fn from_pair(pair: Pair<'_, Rule>) -> Result<Self, Error> {
        assert_eq!(pair.as_rule(), Rule::flag);
        let mut pairs = pair.into_inner();
        let flag = pairs.next().expect("expecting a valid flag");

        match flag.as_rule() {
            Rule::mime_flag => Ok(Self::Mime(
                flag.into_inner()
                    .next()
                    .expect("expecting mime type")
                    .as_str()
                    .into(),
            )),
            Rule::strength_flag => {
                let mut pairs = flag.into_inner();
                // parsing operator
                let op_pair = pairs.next().expect("strength entry must have operator");
                let op = Op::from_pair(op_pair)?;

                // parsing value
                let number_pair = pairs.next().expect("strength entry must have a value");

                let span = number_pair.as_span();
                let by: u8 = parse_pos_number(number_pair)?
                    .try_into()
                    .map_err(|_| Error::parser("value must be u8", span))?;

                Ok(Self::Strength(StrengthMod { op, by }))
            }
            Rule::ext_flag => {
                let exts = flag.into_inner().next().expect("expecting extension list");
                assert_eq!(exts.as_rule(), Rule::exts);
                Ok(Self::Ext(
                    exts.as_str().split('/').map(|s| s.into()).collect(),
                ))
            }
            Rule::apple_flag => {
                let creatype = flag.into_inner().next().expect("expecting a creatype");
                assert_eq!(creatype.as_rule(), Rule::apple_ty);
                Ok(Self::Apple(creatype.as_str().to_string()))
            }

            // parser should guarantee this branch is never reached
            _ => unimplemented!(),
        }
    }
}

impl Shift {
    fn from_pair(pair: Pair<'_, Rule>) -> Result<Self, Error> {
        assert_eq!(pair.as_rule(), Rule::shift);
        let shift_variant = pair.into_inner().next().expect("shift cannot be empty");
        match shift_variant.as_rule() {
            Rule::ind_shift => Ok(Self::Indirect(parse_number_pair(
                shift_variant
                    .into_inner()
                    .next()
                    .expect("indirect shift must contain number"),
            )?)),
            Rule::dir_shift => Ok(Self::Direct(parse_number_pair(
                shift_variant
                    .into_inner()
                    .next()
                    .expect("direct shift must contain number"),
            )? as u64)),
            _ => {
                panic!("unknown shift pair")
            }
        }
    }
}

impl DirOffset {
    fn from_pair(pair: Pair<'_, Rule>) -> Result<Self, Error> {
        match pair.as_rule() {
            Rule::abs_offset => {
                let number_pair = pair.into_inner().next().expect("number pair expected");

                let offset = parse_number_pair(number_pair)?;

                if offset.is_negative() {
                    Ok(DirOffset::End(offset))
                } else {
                    Ok(DirOffset::Start(offset as u64))
                }
            }
            Rule::rel_offset => {
                let number_pair = pair.into_inner().next().expect("number pair expected");

                let offset = parse_number_pair(number_pair)?;

                Ok(DirOffset::LastUpper(offset))
            }
            _ => panic!("unexpected offset pair"),
        }
    }
}

impl IndOffset {
    fn from_pair(pair: Pair<'_, Rule>) -> Result<Self, Error> {
        let mut off_addr = None;
        let mut signed = false;
        // default type according to magic documentation
        let mut offset_type = OffsetType::LongLe;
        let mut op = None;
        let mut shift = None;

        for pair in pair.into_inner() {
            match pair.as_rule() {
                Rule::abs_offset | Rule::rel_offset => off_addr = Some(DirOffset::from_pair(pair)?),
                Rule::ind_offset_sign => match pair.as_str() {
                    "," => signed = true,
                    "." => signed = false,
                    _ => {}
                },
                Rule::ind_offset_type => match pair.as_str() {
                    "b" | "c" | "B" | "C" => offset_type = OffsetType::Byte,
                    "e" | "f" | "g" => offset_type = OffsetType::DoubleLe,
                    "E" | "F" | "G" => offset_type = OffsetType::DoubleBe,
                    "h" | "s" => offset_type = OffsetType::ShortLe,
                    "H" | "S" => offset_type = OffsetType::ShortBe,
                    "i" => offset_type = OffsetType::Id3Le,
                    "I" => offset_type = OffsetType::Id3Be,
                    "l" => offset_type = OffsetType::LongLe,
                    "L" => offset_type = OffsetType::LongBe,
                    "m" => offset_type = OffsetType::Middle,
                    "o" => offset_type = OffsetType::Octal,
                    "q" => offset_type = OffsetType::QuadLe,
                    "Q" => offset_type = OffsetType::QuadBe,
                    _ => {}
                },
                Rule::op_add
                | Rule::op_sub
                | Rule::op_mul
                | Rule::op_div
                | Rule::op_mod
                | Rule::op_and
                | Rule::op_or
                | Rule::op_xor => op = Some(Op::from_pair(pair)?),

                Rule::shift => {
                    shift = Some(Shift::from_pair(pair)?);
                }
                _ => {}
            }
        }

        Ok(Self {
            // guarantee not to panic by parser
            off_addr: off_addr.unwrap(),
            signed,
            ty: offset_type,
            op,
            shift,
        })
    }
}

impl Offset {
    fn from_pair(pair: Pair<'_, Rule>) -> Result<Self, Error> {
        let mut pairs = pair.into_inner();
        let pair = pairs.next().expect("offset must have token");

        match pair.as_rule() {
            Rule::abs_offset => {
                let number_pair = pair.into_inner().next().expect("number pair expected");

                let offset = parse_number_pair(number_pair)?;

                if offset.is_negative() {
                    Ok(Self::Direct(DirOffset::End(offset)))
                } else {
                    Ok(Self::Direct(DirOffset::Start(offset as u64)))
                }
            }
            Rule::rel_offset => {
                let number_pair = pair.into_inner().next().expect("number pair expected");

                let offset = parse_number_pair(number_pair)?;

                Ok(Self::Direct(DirOffset::LastUpper(offset)))
            }

            Rule::indirect_offset => Ok(Self::Indirect(IndOffset::from_pair(pair)?)),

            _ => panic!("unexpected token"),
        }
    }
}

impl Use {
    fn from_pair(pair: Pair<'_, Rule>) -> Result<Self, Error> {
        assert_eq!(pair.as_rule(), Rule::r#use);
        let (line, _) = pair.line_col();
        let mut pairs = pair.into_inner();

        // first token might be a depth or an offset
        let token = pairs.next().expect("expecting depth");

        let (depth, offset) = if matches!(token.as_rule(), Rule::depth) {
            (
                token.as_str().len() as u8,
                pairs.next().expect("offset token"),
            )
        } else {
            (0, token)
        };

        assert_eq!(
            offset.as_rule(),
            Rule::stream_offset,
            "expected offset rule"
        );
        let offset = Offset::from_pair(offset)?;

        // here token can be both endianness_switch or rule_name
        let token = pairs
            .next()
            .expect("expecting a rule name or an endianness switch");

        let endianness_switch = matches!(token.as_rule(), Rule::endianness_switch);

        let rule_name_token = if endianness_switch {
            pairs.next().expect("expecting a rule name")
        } else {
            token
        };

        assert_eq!(
            rule_name_token.as_rule(),
            Rule::rule_name,
            "wrong parsing rule"
        );

        let mut message = None;
        if let Some(msg_pair) = pairs.next()
            && !msg_pair.as_str().is_empty()
        {
            message = Message::from_pair(msg_pair)?;
        };

        Ok(Self {
            line,
            depth,
            start_offset: offset,
            rule_name: rule_name_token.as_str().to_string(),
            switch_endianness: endianness_switch,
            message,
        })
    }
}

impl StringMod {
    fn from_pair(pair: Pair<'_, Rule>) -> Result<StringMod, Error> {
        if !matches!(pair.as_rule(), Rule::string_mod) {
            return Err(Error::parser("unknown string mod", pair.as_span()));
        }

        // this shouldn't panic as our parser guarantee there
        // is one element in the pair
        let c = pair.as_str().chars().next().unwrap();

        match c {
            'b' => Ok(StringMod::ForceBin),
            'C' => Ok(StringMod::UpperInsensitive),
            'c' => Ok(StringMod::LowerInsensitive),
            'f' => Ok(StringMod::FullWordMatch),
            'T' => Ok(StringMod::Trim),
            't' => Ok(StringMod::ForceText),
            'W' => Ok(StringMod::CompactWhitespace),
            'w' => Ok(StringMod::OptBlank),
            _ => Err(Error::parser("unknown string mod", pair.as_span())),
        }
    }
}

impl StringTest {
    fn from_pair_with_value(
        pair: Pair<'_, Rule>,
        str: TestValue<Vec<u8>>,
        binary: bool,
        cmp_op: CmpOp,
    ) -> Result<Self, Error> {
        let mut length = None;
        let mut mods = FlagSet::empty();
        for p in pair.into_inner() {
            match p.as_rule() {
                Rule::pos_number => length = Some(parse_pos_number(p)? as usize),
                Rule::string_mod => mods |= StringMod::from_pair(p)?,
                // parser should guarantee this branch is never reached
                _ => unimplemented!(),
            }
        }

        Ok(Self {
            test_val: str,
            cmp_op,
            length,
            mods,
            binary,
        })
    }
}

impl PStringTest {
    fn from_pair_with_value(pair: Pair<'_, Rule>, value: TestValue<Vec<u8>>) -> Self {
        debug_assert_eq!(pair.as_rule(), Rule::pstring);

        let mut len = PStringLen::Byte;
        let mut include_len = false;

        for r in pair.into_inner() {
            match r.as_rule() {
                Rule::pstring_mod => match r.as_str() {
                    "B" => len = PStringLen::Byte,
                    "H" => len = PStringLen::ShortBe,
                    "h" => len = PStringLen::ShortLe,
                    "L" => len = PStringLen::LongBe,
                    "l" => len = PStringLen::LongLe,
                    "J" => include_len = true,
                    // parser should guarantee this branch is never reached
                    _ => unimplemented!(),
                },
                // parser should guarantee this branch is never reached
                _ => unimplemented!(),
            }
        }

        PStringTest {
            test_val: value,
            len,
            include_len,
        }
    }
}

impl SearchTest {
    fn from_pair(pair: Pair<'_, Rule>) -> Result<Self, Error> {
        let mut length = None;
        let mut str_mods: FlagSet<StringMod> = FlagSet::empty();
        let mut re_mods: FlagSet<ReMod> = FlagSet::empty();
        let mut cmp_op = CmpOp::Eq;
        let mut value = None;
        let mut binary = false;

        for pair in pair.into_inner() {
            match pair.as_rule() {
                Rule::search => {
                    for p in pair.into_inner() {
                        match p.as_rule() {
                            Rule::pos_number => length = Some(parse_pos_number(p)? as usize),
                            Rule::search_mod => {
                                for m in p.as_str().chars() {
                                    match m {
                                        'b' => str_mods |= StringMod::ForceBin,
                                        'C' => str_mods |= StringMod::UpperInsensitive,
                                        'c' => str_mods |= StringMod::LowerInsensitive,
                                        'f' => str_mods |= StringMod::FullWordMatch,
                                        'T' => str_mods |= StringMod::Trim,
                                        't' => str_mods |= StringMod::ForceText,
                                        'W' => str_mods |= StringMod::CompactWhitespace,
                                        'w' => str_mods |= StringMod::OptBlank,
                                        's' => re_mods |= ReMod::StartOffsetUpdate,
                                        _ => {}
                                    }
                                }
                            }
                            // parser should guarantee this branch is never reached
                            _ => unimplemented!(),
                        }
                    }
                }
                Rule::op_neq => cmp_op = CmpOp::Neq,
                Rule::op_eq => cmp_op = CmpOp::Eq,
                Rule::string_value => {
                    let (bin, v) = unescape_string_to_vec(pair.as_str());
                    binary = bin;
                    value = Some(v.to_vec());
                }
                _ => unimplemented!(),
            }
        }

        Ok(Self {
            // guarantee not to panic by parser
            str: value.unwrap().into(),
            n_pos: length,
            str_mods,
            re_mods,
            binary,
            cmp_op,
        })
    }
}

impl RegexTest {
    fn from_pair(pair: Pair<'_, Rule>) -> Result<Self, Error> {
        let mut length = None;
        let mut mods = FlagSet::empty();
        let str_mods = FlagSet::empty();
        let mut cmp_op = CmpOp::Eq;
        let mut binary = false;
        let mut prep_re = None;

        for pair in pair.into_inner() {
            match pair.as_rule() {
                Rule::regex => {
                    for p in pair.into_inner() {
                        match p.as_rule() {
                            Rule::pos_number => length = Some(parse_pos_number(p)? as usize),
                            Rule::regex_mod => {
                                for m in p.as_str().chars() {
                                    match m {
                                        'c' => {
                                            mods |= ReMod::CaseInsensitive;
                                        }
                                        's' => mods |= ReMod::StartOffsetUpdate,
                                        'l' => mods |= ReMod::LineLimit,
                                        'b' => mods |= ReMod::ForceBin,
                                        't' => mods |= ReMod::ForceText,
                                        'T' => mods |= ReMod::TrimMatch,
                                        _ => {}
                                    }
                                }
                            }
                            // parser should guarantee this branch is never reached
                            _ => unimplemented!(),
                        }
                    }
                }
                Rule::op_neq => cmp_op = CmpOp::Neq,
                Rule::op_eq => cmp_op = CmpOp::Eq,
                Rule::string_value => {
                    let (bin, s) = unescape_string_to_vec(pair.as_str());
                    binary = bin;
                    prep_re = Some(prepare_bytes_re(&s));
                }
                _ => unimplemented!(),
            }
        }

        // guarantee not to panic by parser
        let prep_re = prep_re.unwrap();
        let non_magic_len = nonmagic(&prep_re);
        let ascii_re = format!("(?-u){prep_re}");

        Ok(Self {
            re: bytes::Regex::new(&ascii_re)?,
            length,
            mods,
            str_mods,
            binary,
            non_magic_len,
            cmp_op,
        })
    }
}

impl Test {
    fn from_pair(pair: Pair<'_, Rule>) -> Result<Self, Error> {
        let t = match pair.as_rule() {
            Rule::scalar_test => {
                let pairs = pair.into_inner();

                let mut ty = None;
                let mut transform = None;
                let mut cmp_op = CmpOp::Eq;
                let mut scalar = None;
                for pair in pairs {
                    match pair.as_rule() {
                        Rule::scalar_type_transform => {
                            for pair in pair.into_inner() {
                                match pair.as_rule() {
                                    Rule::scalar_type => {
                                        ty = Some(ScalarDataType::from_pair(pair)?);
                                    }

                                    Rule::scalar_transform => {
                                        let mut transform_pairs = pair.into_inner();
                                        let op_pair =
                                            transform_pairs.next().expect("expect operator pair");
                                        let op = Op::from_pair(op_pair)?;

                                        let number =
                                            transform_pairs.next().expect("expect number pair");
                                        let span = number.as_span();
                                        // ty is guaranteed to be some by
                                        // parser implementation
                                        let num = ty
                                            .unwrap()
                                            .scalar_from_number(parse_pos_number(number)?);

                                        // we check if we try to divide by zero
                                        if num.is_zero() {
                                            match op {
                                                Op::Div | Op::Mod => {
                                                    return Err(Error::parser(
                                                        "divide by zero error",
                                                        span,
                                                    ));
                                                }
                                                _ => {}
                                            }
                                        }

                                        transform = Some(ScalarTransform { op, num });
                                    }
                                    _ => {}
                                }
                            }
                        }
                        Rule::scalar_condition => {
                            cmp_op = CmpOp::from_pair(
                                pair.into_inner().next().expect("expecting cmp operator"),
                            )?;
                        }

                        Rule::scalar_value => {
                            let number_pair =
                                pair.into_inner().next().expect("number pair expected");

                            scalar = Some(TestValue::Value(
                                // guarantee not to panic by parser
                                ty.unwrap()
                                    .scalar_from_number(parse_number_pair(number_pair)?),
                            ));
                        }
                        Rule::any_value => scalar = Some(TestValue::Any),
                        _ => {}
                    }
                }

                let mut scalar = scalar.expect("scalar must be known");

                // we handle Not (~) operator only once
                if matches!(cmp_op, CmpOp::Not) {
                    if let TestValue::Value(s) = scalar {
                        scalar = TestValue::Value(!s)
                    };
                    cmp_op = CmpOp::Eq;
                }

                Self::Scalar(ScalarTest {
                    // no panic guarantee by parser
                    ty: ty.unwrap(),
                    transform,
                    cmp_op,
                    // no panic guarantee by parser
                    test_val: scalar,
                })
            }
            Rule::search_test => SearchTest::from_pair(pair)?.into(),
            Rule::regex_test => RegexTest::from_pair(pair)?.into(),
            Rule::string_test => {
                let mut string_test = pair.into_inner();

                let test_type = string_test.next().expect("expecting a string type");

                let pair = string_test
                    .next()
                    .expect("expecting operator or string value");

                let cmp_op = match pair.as_rule() {
                    Rule::op_eq => Some(CmpOp::Eq),
                    Rule::op_neq => Some(CmpOp::Neq),
                    Rule::op_lt => Some(CmpOp::Lt),
                    Rule::op_gt => Some(CmpOp::Gt),
                    _ => None,
                };

                // if there was an operator we need to iterate
                let test_value = if cmp_op.is_some() {
                    string_test.next().expect("expecting a string value")
                } else {
                    pair
                };

                match test_type.as_rule() {
                    Rule::string => {
                        let mut bin = false;
                        let v = match test_value.as_rule() {
                            Rule::string_value => {
                                let s;
                                (bin, s) = unescape_string_to_vec(test_value.as_str());
                                TestValue::Value(s)
                            }
                            Rule::any_value => TestValue::Any,
                            _ => unimplemented!(),
                        };

                        StringTest::from_pair_with_value(
                            test_type,
                            v,
                            bin,
                            cmp_op.unwrap_or(CmpOp::Eq),
                        )?
                        .into()
                    }

                    Rule::pstring => {
                        let val = unescape_string_to_vec(test_value.as_str()).1;

                        match test_value.as_rule() {
                            Rule::string_value => Self::PString(PStringTest::from_pair_with_value(
                                test_type,
                                TestValue::Value(val),
                            )),
                            Rule::any_value => Self::PString(PStringTest::from_pair_with_value(
                                test_type,
                                TestValue::Any,
                            )),

                            // parser should guarantee this branch is never reached
                            _ => unimplemented!(),
                        }
                    }
                    // parser should guarantee this branch is never reached
                    _ => unimplemented!(),
                }
            }
            Rule::string16_test => {
                let mut encoding = None;
                let mut orig = None;
                let mut str16 = None;
                for p in pair.into_inner() {
                    match p.as_rule() {
                        Rule::lestring16 => encoding = Some(String16Encoding::Le),
                        Rule::bestring16 => encoding = Some(String16Encoding::Be),
                        Rule::string_value => {
                            orig = Some(unescape_string_to_string(p.as_str()));
                            str16 = Some(TestValue::Value(
                                unescape_string_to_vec(p.as_str())
                                    .1
                                    .iter()
                                    .map(|b| *b as u16)
                                    .collect(),
                            ))
                        }
                        Rule::any_value => str16 = Some(TestValue::Any),
                        _ => {}
                    }
                }
                Self::String16(String16Test {
                    // orig will be empty string for any_value
                    orig: orig.unwrap_or_default(),
                    test_val: str16.expect("test value must be known"),
                    encoding: encoding.expect("encoding must be known"),
                })
            }
            Rule::guid_test => {
                let mut guid = None;
                for p in pair.into_inner() {
                    match p.as_rule() {
                        Rule::any_value => guid = Some(TestValue::Any),
                        Rule::guid => {
                            guid = Some(TestValue::Value(Scalar::guid(
                                Uuid::parse_str(p.as_str())
                                    .expect("valid uuid is guaranteed by grammar")
                                    .as_u128(),
                            )))
                        }
                        _ => {}
                    }
                }

                Self::Scalar(ScalarTest {
                    ty: ScalarDataType::guid,
                    transform: None,
                    cmp_op: CmpOp::Eq,
                    // guid is guaranteed to be some by parser
                    test_val: guid.expect("guid value must be known"),
                })
            }

            Rule::float_test => {
                let mut float = None;
                let mut ty = None;
                let mut cmp_op = CmpOp::Eq;
                let mut transform = None;
                for p in pair.into_inner() {
                    let span = p.as_span();
                    match p.as_rule() {
                        Rule::any_value => float = Some(TestValue::Any),
                        Rule::float_type_transform => {
                            for p in p.into_inner() {
                                match p.as_rule() {
                                    Rule::float_type => ty = Some(FloatDataType::from_pair(p)?),
                                    Rule::float_transform => {
                                        let mut pairs = p.into_inner();
                                        // guarantee not to panic by parser
                                        let op = Op::from_pair(pairs.next().unwrap())?;

                                        // guarantee not to panic by parser
                                        let float_pair = pairs.next().unwrap();
                                        let value: f64 =
                                            float_pair.as_str().parse().map_err(|_| {
                                                Error::parser(
                                                    "cannot parse str to float",
                                                    float_pair.as_span(),
                                                )
                                            })?;

                                        let ty = ty.expect("type must be known");

                                        let num = ty.float_from_f64(value);
                                        transform = Some(FloatTransform { op, num })
                                    }
                                    _ => {}
                                }
                            }
                        }
                        Rule::float_number => {
                            let f: f64 = p
                                .as_str()
                                .parse()
                                .map_err(|_| Error::parser("cannot parse str to float", span))?;

                            let ty = ty.expect("type must be known");
                            float = Some(TestValue::Value(ty.float_from_f64(f)));
                        }
                        Rule::float_condition => {
                            // guarantee not to panic by parser
                            cmp_op = CmpOp::from_pair(p.into_inner().next().unwrap())?
                        }
                        _ => {}
                    }
                }

                Self::Float(FloatTest {
                    test_val: float.expect("float value must be known"),
                    ty: ty.expect("type must be known"),
                    cmp_op,
                    transform,
                })
            }

            Rule::clear_test => Self::Clear,
            Rule::default_test => Self::Default,
            Rule::indirect_test => {
                let mut ind_mods = IndirectMods::empty();
                for p in pair.into_inner() {
                    if p.as_rule() == Rule::indirect {
                        for p in p.into_inner() {
                            match p.as_rule() {
                                Rule::indirect_mod => match p.as_str() {
                                    "r" => ind_mods |= IndirectMod::Relative,
                                    _ => {
                                        return Err(Error::parser(
                                            "unsupported modifier",
                                            p.as_span(),
                                        ));
                                    }
                                },
                                _ => {
                                    return Err(Error::parser(
                                        "parsing rule not handled",
                                        p.as_span(),
                                    ));
                                }
                            }
                        }
                    }
                }
                Self::Indirect(ind_mods)
            }

            // parser should guarantee this branch is never reached
            _ => unimplemented!(),
        };

        Ok(t)
    }
}

impl Message {
    const PRINTF_CONVERSION_SPECIFIERS: &[char] = &[
        'd', 'i', 'u', 'o', 'x', 'X', 'f', 'F', 'e', 'E', 'g', 'G', 'a', 'A', 'c', 's', 'p',
    ];

    #[inline]
    fn c_format_to_rust(full_specifier: &str) -> String {
        let chars: Vec<char> = full_specifier.chars().collect();

        let conversion_specifier: String = chars
            .last()
            .map(|c| match c {
                'd' | 'i' | 'u' | 'c' | 'f' | 's' => "".into(),
                'x' | 'X' | 'o' | 'e' | 'E' | 'p' => (*c).into(),
                _ => {
                    warn!("default rust format for printf specifier: {full_specifier}");
                    "".into()
                }
            })
            .unwrap_or_default();

        let mod_specifier: String = {
            let s: String = chars
                .get(..chars.len().saturating_sub(1))
                .map(|c| c.iter().collect())
                .unwrap_or_default();
            s.replace("ll", "").replace("-", "<")
        };

        let rust_spec = format!("{mod_specifier}{conversion_specifier}");
        if rust_spec.is_empty() {
            "{}".into()
        } else {
            format!("{{:{rust_spec}}}")
        }
    }

    fn convert_printf_to_rust_format(c_format: &str) -> (String, Option<String>) {
        let mut rust_format = String::new();
        let mut chars = c_format.chars().peekable();
        let mut printf_spec = None;

        while let Some(c) = chars.next() {
            if c == '%' {
                // Handle format specifier
                let mut full_specifier = String::new();

                // Read the rest of the specifier
                while let Some(&next_char) = chars.peek() {
                    if Self::PRINTF_CONVERSION_SPECIFIERS.contains(&next_char) {
                        // cannot panic because of peek
                        full_specifier.push(chars.next().unwrap());
                        break;
                    } else {
                        // cannot panic because of peek
                        full_specifier.push(chars.next().unwrap());
                    }
                }

                // Convert C format specifier to Rust format specifier
                let rust_specifier: String = Self::c_format_to_rust(&full_specifier);

                printf_spec = Some(full_specifier);

                // Append the converted specifier
                rust_format.push_str(&rust_specifier);
            } else {
                rust_format.push(c);
            }
        }

        (rust_format, printf_spec)
    }

    fn from_pair(pair: Pair<'_, Rule>) -> Result<Option<Self>, Error> {
        assert_eq!(pair.as_rule(), Rule::message);
        Self::from_str(pair.as_str())
    }

    #[inline]
    fn from_str<S: AsRef<str>>(s: S) -> Result<Option<Message>, Error> {
        if s.as_ref().is_empty() {
            return Ok(None);
        }

        let (s, printf_spec) = Self::convert_printf_to_rust_format(s.as_ref());

        let fs = FormatString::from_string(s)?;
        if fs.contains_format() {
            Ok(Some(Message::Format {
                printf_spec: printf_spec.unwrap_or_default(),
                fs,
            }))
        } else {
            Ok(Some(Message::String(fs.into_string())))
        }
    }
}

impl Match {
    fn from_pair(pair: Pair<'_, Rule>) -> Result<Self, Error> {
        let (line, _) = pair.line_col();
        let mut depth = None;
        let mut stream_offset = None;
        let mut test = None;
        let mut message = None;

        for pair in pair.into_inner() {
            match pair.as_rule() {
                Rule::depth => depth = Some(pair.as_str().len() as u8),
                Rule::stream_offset => stream_offset = Some(Offset::from_pair(pair)?),
                Rule::test => test = Some(Test::from_pair(pair.into_inner().next().unwrap())?),
                Rule::message => message = Message::from_pair(pair)?,
                _ => return Err(Error::parser("unexpected pair", pair.as_span())),
            }
        }

        // parser guarantee not to panic
        let test = test.unwrap();
        let test_strength = test.strength();

        Ok(Self {
            line,
            depth: depth.unwrap_or_default(),
            // parser guarantee not to panic
            offset: stream_offset.unwrap(),
            test,
            test_strength,
            message,
        })
    }
}

impl DependencyRule {
    fn from_pair(pair: Pair<'_, Rule>, source: Option<String>) -> Result<Self, Error> {
        let mut pairs = pair.clone().into_inner();

        let name_entry = pairs.next().expect("expecting name entry");
        assert_eq!(name_entry.as_rule(), Rule::name_entry);

        let name = name_entry
            .into_inner()
            .find(|p| p.as_rule() == Rule::rule_name)
            .expect("missing rule name")
            .as_str()
            .to_string();

        Ok(Self {
            name,
            rule: MagicRule::from_pair(pair, source)?,
        })
    }
}

impl EntryNode {
    fn from_entries(entries: Vec<Entry>) -> Result<Self, Error> {
        Self::from_peekable(&mut entries.into_iter().peekable(), true)
    }

    fn from_peekable<'span>(
        entries: &mut Peekable<impl Iterator<Item = Entry<'span>>>,
        root: bool,
    ) -> Result<Self, Error> {
        let parent = match entries
            .next()
            .ok_or(Error::msg("rule must have at least one entry"))?
        {
            Entry::Match(_, m) => m,
            Entry::Flag(s, _) => return Err(Error::parser("first rule entry must be a match", s)),
        };

        let mut children = vec![];
        let mut mimetype = None;
        let mut strength_mod = None;
        let mut exts = HashSet::new();
        let mut apple = None;

        while let Some(e) = entries.peek() {
            match e {
                Entry::Match(s, m) => {
                    if m.depth <= parent.depth {
                        break;
                    } else if m.depth == parent.depth + 1 {
                        // we cannot panic since we guarantee first item is a Match
                        children.push(EntryNode::from_peekable(entries, false)?)
                    } else {
                        return Err(Error::parser(
                            format!("unexpected continuation level={}", m.depth),
                            *s,
                        ));
                    }
                }

                Entry::Flag(_, _) => {
                    // it cannot be otherwise
                    if let Some(Entry::Flag(_, f)) = entries.next() {
                        match f {
                            Flag::Mime(m) => mimetype = Some(m),
                            Flag::Strength(s) => strength_mod = Some(s),
                            Flag::Ext(s) => exts = s,
                            Flag::Apple(a) => apple = Some(a),
                        }
                    }
                }
            }
        }

        Ok(Self {
            root,
            entry: parent,
            children,
            mimetype,
            apple,
            strength_mod,
            exts,
        })
    }
}

impl MagicRule {
    pub(crate) fn from_pair(pair: Pair<'_, Rule>, source: Option<String>) -> Result<Self, Error> {
        let mut items = vec![];
        let span = pair.as_span();

        for pair in pair.into_inner() {
            let span = pair.as_span();
            match pair.as_rule() {
                Rule::name_entry => {
                    let (line, _) = pair.line_col();
                    let mut name = None;
                    let mut message = None;

                    for pair in pair.into_inner() {
                        match pair.as_rule() {
                            Rule::rule_name => name = Some(String::from(pair.as_str())),
                            Rule::message => message = Message::from_pair(pair)?,
                            _ => {}
                        }
                    }

                    items.push(Entry::Match(
                        span,
                        Name {
                            line,
                            // parser guarantee not to panic
                            name: name.unwrap(),
                            message,
                        }
                        .into(),
                    ))
                }
                Rule::r#match_depth | Rule::r#match_no_depth => {
                    items.push(Entry::Match(pair.as_span(), Match::from_pair(pair)?));
                }
                Rule::r#use => {
                    items.push(Entry::Match(pair.as_span(), Use::from_pair(pair)?.into()));
                }
                Rule::flag => items.push(Entry::Flag(pair.as_span(), Flag::from_pair(pair)?)),
                Rule::EOI => {}
                _ => panic!("unexpected parsing rule"),
            }
        }

        let entries =
            EntryNode::from_entries(items).map_err(|e| Error::parser(e.to_string(), span))?;

        Ok(Self {
            id: 0,
            source,
            entries,
            extensions: HashSet::new(),
            score: 0,
            finalized: false,
        })
    }
}

#[cfg(test)]
mod test {

    use super::*;

    #[test]
    fn test_unescape() {
        assert_eq!(
            str::from_utf8(&unescape_string_to_vec(r#"\ hello"#).1).unwrap(),
            " hello"
        );
        assert_eq!(unescape_string_to_vec(r#"hello\ world"#).1, b"hello world");
        assert_eq!(
            unescape_string_to_vec(r#"\^[[:space:]]"#).1,
            b"^[[:space:]]"
        );
        assert_eq!(unescape_string_to_vec(r#"\x41"#).1, b"A");
        assert_eq!(unescape_string_to_vec(r#"\xF\xA"#).1, b"\x0f\n");
        assert_eq!(unescape_string_to_vec(r#"\101"#).1, b"A");
        println!(
            "{:?}",
            unescape_string_to_vec(r#"\1\0\0\0\0\0\0\300\0\2\0\0"#)
        );
    }
}