substrait-validator 0.1.4

Substrait validator
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
// SPDX-License-Identifier: Apache-2.0

//! Module for the boilerplate code involved with traversing an input
//! protobuf/YAML tree to form the output [tree](tree::Node).
//!
//! Refer to the documentation for [`parse`](mod@crate::parse) for more
//! information.

// TODO: remove once validation code is finished.
#![allow(dead_code)]
#![allow(unused_macros)]

use crate::input::config;
use crate::input::traits::InputNode;
use crate::input::traits::ProtoEnum;
use crate::input::yaml;
use crate::output::diagnostic;
use crate::output::parse_result;
use crate::output::path;
use crate::output::primitive_data;
use crate::output::tree;
use crate::parse::context;
use std::sync::Arc;

//=============================================================================
// Type definitions
//=============================================================================

// Return value for parse macros for optional fields. The first element refers
// to the node for the field, if the field was present. The second is the
// return value of the supplied parse function, if it was called and didn't
// fail.
type OptionalResult<T> = (Option<Arc<tree::Node>>, Option<T>);

// Return value for parse macros for required fields. The first element refers
// to the node for the field; if the required field wasn't actually specified,
// a dummy node would have been made, so this is not an Option. The second is
// the return value of the supplied parse function, if it was called and didn't
// fail, just like for OptionalResult<T>.
type RequiredResult<T> = (Arc<tree::Node>, Option<T>);

// Return value for parse macros for repeated fields. Same as RequiredResult,
// but with each tuple entry wrapped in a vector. Both vectors will have equal
// length.
type RepeatedResult<T> = (Vec<Arc<tree::Node>>, Vec<Option<T>>);

//=============================================================================
// Macros for pushing annotations
//=============================================================================

/// Convenience/shorthand macro for pushing diagnostic messages to a node.
macro_rules! diagnostic {
    ($context:expr, $level:ident, $class:ident, $($args:expr),*) => {
        diagnostic!($context, $level, cause!($class, $($args),*))
    };
    ($context:expr, $level:ident, $cause:expr) => {
        crate::parse::traversal::push_diagnostic($context, crate::output::diagnostic::Level::$level, $cause)
    };
    ($context:expr, $diag:expr) => {
        $context.push_diagnostic($diag)
    };
}
macro_rules! ediagnostic {
    ($context:expr, $level:ident, $class:ident, $err:expr) => {
        diagnostic!($context, $level, ecause!($class, $err))
    };
}

/// Pushes a diagnostic message to the node information list.
pub fn push_diagnostic(
    context: &mut context::Context,
    level: diagnostic::Level,
    cause: diagnostic::Cause,
) {
    context.push_diagnostic(diagnostic::RawDiagnostic {
        cause,
        level,
        path: context.path_buf(),
    });
}

/// Convenience/shorthand macro for pushing formatted comments to a node.
macro_rules! comment {
    ($context:expr, $($fmts:expr),*) => {
        $context.push_comment(format!($($fmts),*))
    };
}

/// Convenience/shorthand macro for pushing formatted comments that link to
/// some path to a node.
macro_rules! link {
    ($context:expr, $path:expr, $($fmts:expr),*) => {
        $context.push_comment(crate::output::comment::Comment::new().link(format!($($fmts),*), $path))
    };
}

/// Convenience/shorthand macro for setting descriptive information for a node.
macro_rules! describe {
    ($context:expr, $class:ident, $($fmts:expr),*) => {
        $context.set_description(crate::output::tree::Class::$class, Some(format!($($fmts),*)))
    };
}

/// Convenience/shorthand macro for appending plain text to the summary of a
/// node.
macro_rules! summary {
    ($context:expr, $($fmts:expr),*) => {
        $context.push_summary(format!($($fmts),*))
    };
}

//=============================================================================
// Generic code for field handling
//=============================================================================

/// Parses a child node and pushes it into the provided parent context.
fn push_child<TF, TR, FP>(
    context: &mut context::Context,
    child: &TF,
    path_element: path::PathElement,
    unknown_subtree: bool,
    parser: FP,
) -> RequiredResult<TR>
where
    TF: InputNode,
    FP: FnOnce(&TF, &mut context::Context) -> diagnostic::Result<TR>,
{
    // Create the node for the child.
    let mut field_output = child.data_to_node();

    // Create the context for calling the parse function for the child.
    let mut field_context = context.child(&mut field_output, path_element.clone());

    // Call the provided parser function.
    let result = parser(child, &mut field_context)
        .map_err(|cause| {
            diagnostic!(&mut field_context, Error, cause);
        })
        .ok();

    // Handle any fields not handled by the provided parse function. Only
    // generate a warning diagnostic for unhandled children if the parse
    // function succeeded and we're not already in an unknown subtree.
    handle_unknown_children(
        child,
        &mut field_context,
        result.is_some() && !unknown_subtree,
    );

    // Push and return the completed node.
    let field_output = Arc::new(field_output);
    context.push(tree::NodeData::Child(tree::Child {
        path_element,
        node: field_output.clone(),
        recognized: !unknown_subtree,
    }));

    (field_output, result)
}

/// Handle all children that haven't already been handled. If with_diagnostic
/// is set, this also generates a diagnostic message if there were
/// populated/non-default unhandled fields.
fn handle_unknown_children<T: InputNode>(
    input: &T,
    context: &mut context::Context,
    with_diagnostic: bool,
) {
    if input.parse_unknown(context) && with_diagnostic {
        let mut fields = vec![];
        for data in context.node_data().iter() {
            if let tree::NodeData::Child(child) = data {
                if !child.recognized {
                    fields.push(child.path_element.to_string_without_dot());
                }
            }
        }
        if !fields.is_empty() {
            let fields: String =
                itertools::Itertools::intersperse(fields.into_iter(), ", ".to_string()).collect();
            diagnostic!(
                context,
                Warning,
                NotYetImplemented,
                "the following child nodes were not recognized by the validator: {fields}"
            );
        }
    }
}

//=============================================================================
// Protobuf optional field handling
//=============================================================================

/// Convenience/shorthand macro for parsing optional protobuf fields.
macro_rules! proto_field {
    ($input:expr, $context:expr, $field:ident) => {
        proto_field!($input, $context, $field, |_, _| Ok(()))
    };
    ($input:expr, $context:expr, $field:ident, $parser:expr) => {
        crate::parse::traversal::push_proto_field(
            $context,
            &$input.$field.as_ref(),
            crate::input::proto::cook_ident(stringify!($field)),
            false,
            $parser,
        )
    };
    ($input:expr, $context:expr, $field:ident, $parser:expr, $($args:expr),*) => {
        proto_field!($input, $context, $field, |x, y| $parser(x, y, $($args),*))
    };
}

/// Convenience/shorthand macro for parsing optional protobuf fields that were
/// wrapped in a Box<T> by prost.
macro_rules! proto_boxed_field {
    ($input:expr, $context:expr, $field:ident) => {
        proto_boxed_field!($input, $context, $field, |_, _| Ok(()))
    };
    ($input:expr, $context:expr, $field:ident, $parser:expr) => {
        crate::parse::traversal::push_proto_field(
            $context,
            &$input.$field,
            crate::input::proto::cook_ident(stringify!($field)),
            false,
            $parser,
        )
    };
    ($input:expr, $context:expr, $field:ident, $parser:expr, $($args:expr),*) => {
        proto_boxed_field!($input, $context, $field, |x, y| $parser(x, y, $($args),*))
    };
}

/// Parse and push a protobuf optional field.
pub fn push_proto_field<TF, TR, FP>(
    context: &mut context::Context,
    field: &Option<impl std::ops::Deref<Target = TF>>,
    field_name: &'static str,
    unknown_subtree: bool,
    parser: FP,
) -> OptionalResult<TR>
where
    TF: InputNode,
    FP: FnOnce(&TF, &mut context::Context) -> diagnostic::Result<TR>,
{
    if !context.set_field_parsed(field_name) {
        panic!("field {field_name} was parsed multiple times");
    }

    if let Some(field_input) = field {
        let path_element = if let Some(variant) = field_input.oneof_variant() {
            path::PathElement::Variant(field_name.to_string(), variant.to_string())
        } else {
            path::PathElement::Field(field_name.to_string())
        };
        let (field_output, result) = push_child(
            context,
            field_input.deref(),
            path_element,
            unknown_subtree,
            parser,
        );
        (Some(field_output), result)
    } else {
        (None, None)
    }
}

//=============================================================================
// Protobuf required and primitive field handling
//=============================================================================

/// Convenience/shorthand macro for parsing required protobuf fields.
macro_rules! proto_required_field {
    ($input:expr, $context:expr, $field:ident) => {
        proto_required_field!($input, $context, $field, |_, _| Ok(()))
    };
    ($input:expr, $context:expr, $field:ident, $parser:expr) => {
        crate::parse::traversal::push_proto_required_field(
            $context,
            &$input.$field.as_ref(),
            crate::input::proto::cook_ident(stringify!($field)),
            false,
            $parser,
        )
    };
    ($input:expr, $context:expr, $field:ident, $parser:expr, $($args:expr),*) => {
        proto_required_field!($input, $context, $field, |x, y| $parser(x, y, $($args),*))
    };
}

/// Convenience/shorthand macro for parsing required protobuf fields that were
/// wrapped in a Box<T> by prost.
macro_rules! proto_boxed_required_field {
    ($input:expr, $context:expr, $field:ident) => {
        proto_boxed_required_field!($input, $context, $field, |_, _| Ok(()))
    };
    ($input:expr, $context:expr, $field:ident, $parser:expr) => {
        crate::parse::traversal::push_proto_required_field(
            $context,
            &$input.$field,
            crate::input::proto::cook_ident(stringify!($field)),
            false,
            $parser,
        )
    };
    ($input:expr, $context:expr, $field:ident, $parser:expr, $($args:expr),*) => {
        proto_boxed_required_field!($input, $context, $field, |x, y| $parser(x, y, $($args),*))
    };
}

/// Convenience/shorthand macro for parsing primitive protobuf fields.
macro_rules! proto_primitive_field {
    ($input:expr, $context:expr, $field:ident) => {
        proto_primitive_field!($input, $context, $field, |x, _| Ok(x.to_owned()))
    };
    ($input:expr, $context:expr, $field:ident, $parser:expr) => {
        crate::parse::traversal::push_proto_required_field(
            $context,
            &Some(&$input.$field),
            crate::input::proto::cook_ident(stringify!($field)),
            false,
            $parser,
        )
    };
    ($input:expr, $context:expr, $field:ident, $parser:expr, $($args:expr),*) => {
        proto_primitive_field!($input, $context, $field, |x, y| $parser(x, y, $($args),*))
    };
}

/// Parse and push a required field of some message type. If the field is
/// not populated, a MissingField diagnostic is pushed automatically, and
/// an empty node is returned as an error recovery placeholder.
pub fn push_proto_required_field<TF, TR, FP>(
    context: &mut context::Context,
    field: &Option<impl std::ops::Deref<Target = TF>>,
    field_name: &'static str,
    unknown_subtree: bool,
    parser: FP,
) -> RequiredResult<TR>
where
    TF: InputNode,
    FP: FnOnce(&TF, &mut context::Context) -> diagnostic::Result<TR>,
{
    if let (Some(node), result) =
        push_proto_field(context, field, field_name, unknown_subtree, parser)
    {
        (node, result)
    } else {
        ediagnostic!(context, Error, ProtoMissingField, field_name);
        (Arc::new(TF::type_to_node()), None)
    }
}

/// Convenience/shorthand macro for parsing enumeration protobuf fields.
macro_rules! proto_enum_field {
    ($input:expr, $context:expr, $field:ident, $typ:ty) => {
        proto_enum_field!($input, $context, $field, $typ, |x, _| Ok(x.to_owned()))
    };
    ($input:expr, $context:expr, $field:ident, $typ:ty, $parser:expr) => {
        crate::parse::traversal::push_proto_enum_field::<$typ, _, _>(
            $context,
            $input.$field,
            crate::input::proto::cook_ident(stringify!($field)),
            false,
            $parser,
        )
    };
    ($input:expr, $context:expr, $field:ident, $typ:ty, $parser:expr, $($args:expr),*) => {
        proto_enum_field!($input, $context, $field, $typ, |x, y| $parser(x, y, $($args),*))
    };
}

/// Parse and push an enumeration field of some message type. The i32 in the
/// struct generated by prost is automatically converted to the enum; if the
/// value is out of range, an error is generated.
pub fn push_proto_enum_field<TF, TR, FP>(
    context: &mut context::Context,
    field: i32,
    field_name: &'static str,
    unknown_subtree: bool,
    parser: FP,
) -> RequiredResult<TR>
where
    TF: ProtoEnum,
    FP: FnOnce(&TF, &mut context::Context) -> diagnostic::Result<TR>,
{
    if let Some(field) = TF::proto_enum_from_i32(field) {
        push_proto_required_field(context, &Some(&field), field_name, unknown_subtree, parser)
    } else {
        (
            push_proto_required_field(
                context,
                &Some(&field),
                field_name,
                unknown_subtree,
                |x, y| {
                    diagnostic!(
                        y,
                        Error,
                        IllegalValue,
                        "unknown value {x} for {}",
                        TF::proto_enum_type()
                    );
                    Ok(())
                },
            )
            .0,
            None,
        )
    }
}

/// Convenience/shorthand macro for parsing enumeration protobuf fields of
/// which the value must be specified.
macro_rules! proto_required_enum_field {
    ($input:expr, $context:expr, $field:ident, $typ:ty) => {
        proto_required_enum_field!($input, $context, $field, $typ, |x, _| Ok(x.to_owned()))
    };
    ($input:expr, $context:expr, $field:ident, $typ:ty, $parser:expr) => {
        crate::parse::traversal::push_proto_required_enum_field::<$typ, _, _>(
            $context,
            $input.$field,
            crate::input::proto::cook_ident(stringify!($field)),
            false,
            $parser,
        )
    };
    ($input:expr, $context:expr, $field:ident, $typ:ty, $parser:expr, $($args:expr),*) => {
        proto_required_enum_field!($input, $context, $field, $typ, |x, y| $parser(x, y, $($args),*))
    };
}

/// Parse and push an enumeration field of some message type. The i32 in the
/// struct generated by prost is automatically converted to the enum; if the
/// value is out of range, an error is generated.
pub fn push_proto_required_enum_field<TF, TR, FP>(
    context: &mut context::Context,
    field: i32,
    field_name: &'static str,
    unknown_subtree: bool,
    parser: FP,
) -> RequiredResult<TR>
where
    TF: ProtoEnum,
    FP: FnOnce(&TF, &mut context::Context) -> diagnostic::Result<TR>,
{
    push_proto_enum_field(context, field, field_name, unknown_subtree, |x, y| {
        if field == 0 {
            diagnostic!(
                y,
                Error,
                IllegalValue,
                "this enum may not be left unspecified"
            );
        }
        parser(x, y)
    })
}

//=============================================================================
// Protobuf repeated field handling
//=============================================================================

/// Convenience/shorthand macro for parsing repeated protobuf fields.
macro_rules! proto_repeated_field {
    ($input:expr, $context:expr, $field:ident) => {
        proto_repeated_field!($input, $context, $field, |_, _| Ok(()))
    };
    ($input:expr, $context:expr, $field:ident, $parser:expr) => {
        proto_repeated_field!($input, $context, $field, $parser, |_, _, _, _, _| ())
    };
    ($input:expr, $context:expr, $field:ident, $parser:expr, $validator:expr) => {
        crate::parse::traversal::push_proto_repeated_field(
            $context,
            &$input.$field,
            crate::input::proto::cook_ident(stringify!($field)),
            false,
            $parser,
            $validator,
        )
    };
    ($input:expr, $context:expr, $field:ident, $parser:expr, $validator:expr, $($args:expr),*) => {
        proto_repeated_field!($input, $context, $field, |x, y| $parser(x, y, $($args),*), $validator)
    };
}

/// Parse and push a repeated field of some message type.
pub fn push_proto_repeated_field<TF, TR, FP, FV>(
    context: &mut context::Context,
    field: &[TF],
    field_name: &'static str,
    unknown_subtree: bool,
    mut parser: FP,
    mut validator: FV,
) -> RepeatedResult<TR>
where
    TF: InputNode,
    FP: FnMut(&TF, &mut context::Context) -> diagnostic::Result<TR>,
    FV: FnMut(&TF, &mut context::Context, usize, &Arc<tree::Node>, Option<&TR>),
{
    if !context.set_field_parsed(field_name) {
        panic!("field {field_name} was parsed multiple times");
    }

    field
        .iter()
        .enumerate()
        .map(|(index, child)| {
            let (node, result) = push_child(
                context,
                child,
                path::PathElement::Repeated(field_name.to_string(), index),
                unknown_subtree,
                &mut parser,
            );
            validator(child, context, index, &node, result.as_ref());
            (node, result)
        })
        .unzip()
}

/// Convenience/shorthand macro for parsing repeated protobuf fields for which
/// at least one element must exist.
macro_rules! proto_required_repeated_field {
    ($input:expr, $context:expr, $field:ident) => {
        proto_required_repeated_field!($input, $context, $field, |_, _| Ok(()))
    };
    ($input:expr, $context:expr, $field:ident, $parser:expr) => {
        proto_required_repeated_field!($input, $context, $field, $parser, |_, _, _, _, _| ())
    };
    ($input:expr, $context:expr, $field:ident, $parser:expr, $validator:expr) => {
        crate::parse::traversal::push_proto_required_repeated_field(
            $context,
            &$input.$field,
            crate::input::proto::cook_ident(stringify!($field)),
            false,
            $parser,
            $validator,
        )
    };
    ($input:expr, $context:expr, $field:ident, $parser:expr, $validator:expr, $($args:expr),*) => {
        proto_required_repeated_field!($input, $context, $field, |x, y| $parser(x, y, $($args),*), $validator)
    };
}

/// Parse and push a repeated field of some message type, and check that at
/// least one element exists.
pub fn push_proto_required_repeated_field<TF, TR, FP, FV>(
    context: &mut context::Context,
    field: &[TF],
    field_name: &'static str,
    unknown_subtree: bool,
    parser: FP,
    validator: FV,
) -> RepeatedResult<TR>
where
    TF: InputNode,
    FP: FnMut(&TF, &mut context::Context) -> diagnostic::Result<TR>,
    FV: FnMut(&TF, &mut context::Context, usize, &Arc<tree::Node>, Option<&TR>),
{
    if field.is_empty() {
        ediagnostic!(context, Error, ProtoMissingField, field_name);
    }
    push_proto_repeated_field(
        context,
        field,
        field_name,
        unknown_subtree,
        parser,
        validator,
    )
}

//=============================================================================
// Protobuf root message handling
//=============================================================================

/// Parses a serialized protobuf message using the given root parse function,
/// initial state, and configuration.
pub fn parse_proto<T, F, B>(
    buffer: B,
    root_name: &'static str,
    root_parser: F,
    state: &mut context::State,
    config: &config::Config,
) -> diagnostic::Result<parse_result::ParseResult>
where
    T: prost::Message + InputNode + Default,
    F: FnOnce(&T, &mut context::Context),
    B: prost::bytes::Buf,
{
    // Run protobuf deserialization.
    let input = T::decode(buffer).map_err(|e| ecause!(ProtoParseFailed, e))?;

    Ok(validate(&input, root_name, root_parser, state, config))
}

/// Validates a serialized protobuf message using the given `root_parser`
/// function, initial state, and configuration, pushing any errors from the
/// root_validator or unhandled children into the returned
/// [`parse_result::ParseResult`].
pub fn validate<T, F>(
    input: &T,
    root_name: &'static str,
    root_validator: F,
    state: &mut context::State,
    config: &config::Config,
) -> parse_result::ParseResult
where
    T: prost::Message + InputNode + Default,
    F: FnOnce(&T, &mut context::Context),
{
    // Create the root node.
    let mut root = input.data_to_node();

    // Create the root context.
    let mut context = context::Context::new(root_name, &mut root, state, config);

    // Call the provided parser function.
    root_validator(input, &mut context);

    // Handle any fields not handled by the provided parse function.
    // Only generate a warning diagnostic for unhandled children if the
    // parse function succeeded.
    handle_unknown_children(input, &mut context, true);

    parse_result::ParseResult { root }
}

//=============================================================================
// YAML object handling
//=============================================================================

/// Convenience/shorthand macro for parsing optional YAML fields.
macro_rules! yaml_field {
    ($input:expr, $context:expr, $field:expr) => {
        yaml_field!($input, $context, $field, |_, _| Ok(()))
    };
    ($input:expr, $context:expr, $field:expr, $parser:expr) => {
        crate::parse::traversal::push_yaml_field($input, $context, $field, false, $parser)
    };
    ($input:expr, $context:expr, $field:expr, $parser:expr, $($args:expr),*) => {
        yaml_field!($input, $context, $field, |x, y| $parser(x, y, $($args),*))
    };
}

/// Parse and push an optional YAML field.
pub fn push_yaml_field<TS, TR, FP>(
    input: &yaml::Value,
    context: &mut context::Context,
    field_name: TS,
    unknown_subtree: bool,
    parser: FP,
) -> diagnostic::Result<OptionalResult<TR>>
where
    TS: AsRef<str>,
    FP: FnOnce(&yaml::Value, &mut context::Context) -> diagnostic::Result<TR>,
{
    if let serde_json::Value::Object(input) = input {
        let field_name = field_name.as_ref();
        if !context.set_field_parsed(field_name) {
            panic!("field {field_name} was parsed multiple times");
        }

        if let Some(child) = input.get(field_name) {
            let (field_output, result) = push_child(
                context,
                child,
                path::PathElement::Field(field_name.to_string()),
                unknown_subtree,
                parser,
            );
            Ok((Some(field_output), result))
        } else {
            Ok((None, None))
        }
    } else {
        Err(cause!(YamlInvalidType, "object expected"))
    }
}

/// Convenience/shorthand macro for parsing required YAML fields.
macro_rules! yaml_required_field {
    ($input:expr, $context:expr, $field:expr) => {
        yaml_required_field!($input, $context, $field, |_, _| Ok(()))
    };
    ($input:expr, $context:expr, $field:expr, $parser:expr) => {
        crate::parse::traversal::push_yaml_required_field($input, $context, $field, false, $parser)
    };
    ($input:expr, $context:expr, $field:expr, $parser:expr, $($args:expr),*) => {
        yaml_required_field!($input, $context, $field, |x, y| $parser(x, y, $($args),*))
    };
}

/// Parse and push a required field of a YAML object. If the field does not
/// exist, a MissingField diagnostic is pushed automatically, and an empty node
/// is returned as an error recovery placeholder.
pub fn push_yaml_required_field<TS, TR, FP>(
    input: &yaml::Value,
    context: &mut context::Context,
    field_name: TS,
    unknown_subtree: bool,
    parser: FP,
) -> diagnostic::Result<RequiredResult<TR>>
where
    TS: AsRef<str>,
    FP: FnOnce(&yaml::Value, &mut context::Context) -> diagnostic::Result<TR>,
{
    let field_name = field_name.as_ref();
    if let (Some(node), result) =
        push_yaml_field(input, context, field_name, unknown_subtree, parser)?
    {
        Ok((node, result))
    } else {
        ediagnostic!(context, Error, YamlMissingKey, field_name);
        Ok((
            Arc::new(tree::NodeType::YamlPrimitive(primitive_data::PrimitiveData::Null).into()),
            None,
        ))
    }
}

//=============================================================================
// YAML array handling
//=============================================================================

/// Convenience/shorthand macro for parsing a YAML array that may be empty.
macro_rules! yaml_array {
    ($input:expr, $context:expr) => {
        yaml_array!($input, $context, $field, |_, _| Ok(()))
    };
    ($input:expr, $context:expr, $parser:expr) => {
        yaml_array!($input, $context, $field, $parser, 0)
    };
    ($input:expr, $context:expr, $parser:expr, $min_size:expr) => {
        crate::parse::traversal::push_yaml_array($input, $context, $min_size, false, $parser)
    };
    ($input:expr, $context:expr, $parser:expr, $min_size:expr, $($args:expr),*) => {
        yaml_array!($input, $context, |x, y| $parser(x, y, $($args),*), $min_size)
    };
}

/// Convenience/shorthand macro for parsing a YAML array that must have at
/// least one value.
macro_rules! yaml_required_array {
    ($input:expr, $context:expr) => {
        yaml_required_array!($input, $context, |_, _| Ok(()))
    };
    ($input:expr, $context:expr, $parser:expr) => {
        yaml_array!($input, $context, $parser, 1)
    };
    ($input:expr, $context:expr, $parser:expr, $($args:expr),*) => {
        yaml_array!($input, $context, $parser, 1, $($args:expr),*)
    };
}

/// Parse and push an optional YAML array element.
pub fn push_yaml_element<TR, FP>(
    input: &yaml::Array,
    context: &mut context::Context,
    index: usize,
    unknown_subtree: bool,
    parser: FP,
) -> OptionalResult<TR>
where
    FP: FnOnce(&yaml::Value, &mut context::Context) -> diagnostic::Result<TR>,
{
    if !context.set_field_parsed(index) {
        panic!("element {index} was parsed multiple times");
    }

    if let Some(child) = input.get(index) {
        let (field_output, result) = push_child(
            context,
            child,
            path::PathElement::Index(index),
            unknown_subtree,
            parser,
        );
        (Some(field_output), result)
    } else {
        (None, None)
    }
}

/// Parse and push a required element of a YAML array. If the element does not
/// exist, a MissingElement diagnostic is pushed automatically, and an empty node
/// is returned as an error recovery placeholder.
pub fn push_yaml_required_element<TR, FP>(
    input: &yaml::Array,
    context: &mut context::Context,
    index: usize,
    unknown_subtree: bool,
    parser: FP,
) -> RequiredResult<TR>
where
    FP: FnOnce(&yaml::Value, &mut context::Context) -> diagnostic::Result<TR>,
{
    if let (Some(node), result) = push_yaml_element(input, context, index, unknown_subtree, parser)
    {
        (node, result)
    } else {
        diagnostic!(context, Error, YamlMissingElement, "index {index}");
        (
            Arc::new(tree::NodeType::YamlPrimitive(primitive_data::PrimitiveData::Null).into()),
            None,
        )
    }
}

/// Parse and push a complete YAML array. If a required element does not exist,
/// a MissingElement diagnostic is pushed automatically, and an empty node is
/// returned as an error recovery placeholder.
pub fn push_yaml_array<TR, FP>(
    input: &yaml::Value,
    context: &mut context::Context,
    min_size: usize,
    unknown_subtree: bool,
    mut parser: FP,
) -> diagnostic::Result<RepeatedResult<TR>>
where
    FP: FnMut(&yaml::Value, &mut context::Context) -> diagnostic::Result<TR>,
{
    if let serde_json::Value::Array(input) = input {
        let size = std::cmp::max(min_size, input.len());
        Ok((0..size)
            .map(|index| {
                push_yaml_required_element(input, context, index, unknown_subtree, &mut parser)
            })
            .unzip())
    } else {
        Err(cause!(YamlInvalidType, "array expected"))
    }
}

/// Shorthand for fields that must be arrays if specified.
macro_rules! yaml_repeated_field {
    ($input:expr, $context:expr, $field:expr) => {
        yaml_repeated_field!($input, $context, $field, |_, _| Ok(()))
    };
    ($input:expr, $context:expr, $field:expr, $parser:expr) => {
        yaml_repeated_field!($input, $context, $field, $parser, 0)
    };
    ($input:expr, $context:expr, $field:expr, $parser:expr, $min_size:expr) => {
        crate::parse::traversal::push_yaml_repeated_field(
            $input, $context, $field, false, $min_size, false, $parser,
        )
    };
    ($input:expr, $context:expr, $field:expr, $parser:expr, $min_size:expr, $($args:expr),*) => {
        yaml_repeated_field!($input, $context, $field, |x, y| $parser(x, y, $($args),*), $min_size)
    };
}

/// Shorthand for fields that must be arrays.
macro_rules! yaml_required_repeated_field {
    ($input:expr, $context:expr, $field:expr) => {
        yaml_required_repeated_field!($input, $context, $field, |_, _| Ok(()))
    };
    ($input:expr, $context:expr, $field:expr, $parser:expr) => {
        yaml_required_repeated_field!($input, $context, $field, $parser, 1)
    };
    ($input:expr, $context:expr, $field:expr, $parser:expr, $min_size:expr) => {
        crate::parse::traversal::push_yaml_repeated_field(
            $input, $context, $field, true, $min_size, false, $parser,
        )
    };
    ($input:expr, $context:expr, $field:expr, $parser:expr, $min_size:expr, $($args:expr),*) => {
        yaml_required_repeated_field!($input, $context, $field, |x, y| $parser(x, y, $($args),*), $min_size)
    };
}

/// Parse and push a complete YAML array. If a required element does not exist,
/// a MissingElement diagnostic is pushed automatically, and an empty node is
/// returned as an error recovery placeholder.
pub fn push_yaml_repeated_field<TR, FP>(
    input: &yaml::Value,
    context: &mut context::Context,
    field_name: &'static str,
    field_required: bool,
    min_size: usize,
    unknown_subtree: bool,
    parser: FP,
) -> diagnostic::Result<RepeatedResult<TR>>
where
    FP: FnMut(&yaml::Value, &mut context::Context) -> diagnostic::Result<TR>,
{
    Ok(if field_required {
        push_yaml_required_field(input, context, field_name, unknown_subtree, |x, y| {
            yaml_array!(x, y, parser, min_size)
        })?
        .1
    } else {
        push_yaml_field(input, context, field_name, unknown_subtree, |x, y| {
            yaml_array!(x, y, parser, min_size)
        })?
        .1
    }
    .unwrap_or_else(|| (vec![], vec![])))
}

//=============================================================================
// YAML primitive handling
//=============================================================================

/// Convenience/shorthand macro for parsing optional YAML fields.
macro_rules! yaml_prim {
    ($typ:ident) => {
        |x, y| crate::parse::traversal::yaml_primitive_parsers::$typ(x, y, |x, _| Ok(x.to_owned()))
    };
    ($typ:ident, $parser:expr) => {
        |x, y| crate::parse::traversal::yaml_primitive_parsers::$typ(x, y, $parser)
    };
}

pub mod yaml_primitive_parsers {
    use super::*;

    /// Boolean primitive helper.
    pub fn bool<TR, FP>(
        x: &yaml::Value,
        y: &mut context::Context,
        parser: FP,
    ) -> diagnostic::Result<TR>
    where
        FP: FnOnce(&bool, &mut context::Context) -> diagnostic::Result<TR>,
    {
        if let serde_json::Value::Bool(x) = x {
            parser(x, y)
        } else {
            Err(cause!(YamlInvalidType, "string expected"))
        }
    }

    /// Signed integer primitive helper.
    pub fn i64<TR, FP>(
        x: &yaml::Value,
        y: &mut context::Context,
        parser: FP,
    ) -> diagnostic::Result<TR>
    where
        FP: FnOnce(&i64, &mut context::Context) -> diagnostic::Result<TR>,
    {
        if let serde_json::Value::Number(x) = x {
            if let Some(x) = x.as_i64() {
                return parser(&x, y);
            }
        }
        Err(cause!(YamlInvalidType, "signed integer expected"))
    }

    /// Unsigned integer primitive helper.
    pub fn u64<TR, FP>(
        x: &yaml::Value,
        y: &mut context::Context,
        parser: FP,
    ) -> diagnostic::Result<TR>
    where
        FP: FnOnce(&u64, &mut context::Context) -> diagnostic::Result<TR>,
    {
        if let serde_json::Value::Number(x) = x {
            if let Some(x) = x.as_u64() {
                return parser(&x, y);
            }
        }
        Err(cause!(YamlInvalidType, "unsigned integer expected"))
    }

    /// Float primitive helper.
    pub fn f64<TR, FP>(
        x: &yaml::Value,
        y: &mut context::Context,
        parser: FP,
    ) -> diagnostic::Result<TR>
    where
        FP: FnOnce(&f64, &mut context::Context) -> diagnostic::Result<TR>,
    {
        if let serde_json::Value::Number(x) = x {
            if let Some(x) = x.as_f64() {
                return parser(&x, y);
            }
        }
        Err(cause!(YamlInvalidType, "floating point number expected"))
    }

    /// String primitive helper.
    pub fn str<TR, FP>(
        x: &yaml::Value,
        y: &mut context::Context,
        parser: FP,
    ) -> diagnostic::Result<TR>
    where
        FP: FnOnce(&str, &mut context::Context) -> diagnostic::Result<TR>,
    {
        if let serde_json::Value::String(x) = x {
            parser(x, y)
        } else {
            Err(cause!(YamlInvalidType, "string expected"))
        }
    }
}

//=============================================================================
// URI resolution and YAML root handling
//=============================================================================

/// Worker for resolve_uri().
fn resolve_uri(uri: &str, context: &mut context::Context) -> Option<config::BinaryData> {
    // Check for cyclic dependencies.
    let uri_stack = context.uri_stack();
    if let Some((index, _)) = uri_stack.iter().enumerate().find(|(_, x)| &x[..] == uri) {
        let cycle = itertools::Itertools::intersperse(
            uri_stack
                .iter()
                .map(|x| &x[index..])
                .chain(std::iter::once(uri)),
            " -> ",
        )
        .collect::<String>();
        diagnostic!(context, Error, YamlCyclicDependency, "{cycle}");
        return None;
    }

    // Check for recursion limit.
    if let Some(max_depth) = context.config.max_uri_resolution_depth {
        if context.uri_stack().len() >= max_depth {
            diagnostic!(
                context,
                Warning,
                YamlResolutionDisabled,
                "configured recursion limit for URI resolution has been reached"
            );
            return None;
        }
    }

    // Apply yaml_uri_overrides configuration.
    let remapped_uri = context
        .config
        .uri_overrides
        .iter()
        .find_map(|(pattern, mapping)| {
            if pattern.matches(uri) {
                Some(mapping.as_ref().map(|x| &x[..]))
            } else {
                None
            }
        });
    let is_remapped = remapped_uri.is_some();
    let remapped_uri = remapped_uri.unwrap_or(Some(uri));

    let remapped_uri = if let Some(remapped_uri) = remapped_uri {
        remapped_uri.to_owned()
    } else {
        diagnostic!(
            context,
            Warning,
            YamlResolutionDisabled,
            "YAML resolution for {uri} was disabled"
        );
        return None;
    };
    if is_remapped {
        diagnostic!(context, Info, Yaml, "URI was remapped to {remapped_uri}");
    }

    // If a custom download function is specified, use it to resolve.
    if let Some(ref resolver) = context.config.uri_resolver {
        return match resolver(&remapped_uri) {
            Ok(x) => Some(x),
            Err(e) => {
                diagnostic!(context, Warning, YamlResolutionFailed, "{e}");
                None
            }
        };
    }

    // Parse as a URL.
    let url = match url::Url::parse(&remapped_uri) {
        Ok(url) => url,
        Err(e) => {
            if is_remapped {
                diagnostic!(
                    context,
                    Warning,
                    YamlResolutionFailed,
                    "configured URI remapping ({remapped_uri}) did not parse as URL: {e}"
                )
            } else {
                diagnostic!(
                    context,
                    Warning,
                    YamlResolutionFailed,
                    "failed to parse {remapped_uri} as URL: {e}"
                )
            };
            return None;
        }
    };

    // Reject anything that isn't file://-based.
    if url.scheme() != "file" {
        if is_remapped {
            diagnostic!(
                context,
                Warning,
                YamlResolutionFailed,
                "configured URI remapping ({remapped_uri}) does not use file:// scheme"
            )
        } else {
            diagnostic!(
                context,
                Warning,
                YamlResolutionFailed,
                "URI does not use file:// scheme"
            )
        };
        return None;
    }

    // Convert to path.
    let path =
        match url.to_file_path() {
            Ok(path) => path,
            Err(_) => {
                if is_remapped {
                    diagnostic!(context, Warning,
                    YamlResolutionFailed,
                    "configured URI remapping ({remapped_uri}) could not be converted to file path"
                )
                } else {
                    diagnostic!(
                        context,
                        Warning,
                        YamlResolutionFailed,
                        "URI could not be converted to file path"
                    )
                };
                return None;
            }
        };

    // Read the file.
    match std::fs::read(path) {
        Ok(data) => Some(Box::new(data)),
        Err(e) => {
            if is_remapped {
                diagnostic!(
                    context,
                    Warning,
                    YamlResolutionFailed,
                    "failed to file remapping for URI ({remapped_uri}): {e}"
                );
            } else {
                ediagnostic!(context, Warning, YamlResolutionFailed, e);
            }
            None
        }
    }
}

/// Attempts to resolve a URI. If resolution fails or is disabled, None is
/// returned and an appropriate diagnostic may be emitted. This function
/// includes detection and prevention of recursive resolution. The reader
/// function will first be called to convert the binary data from the
/// resolution to a traversable tree (something that satisfied InputNode),
/// then the parser will be called on the root of that tree.
pub fn parse_uri<FP, FR, TF, TR>(
    uri: &str,
    context: &mut context::Context,
    reader: FR,
    parser: FP,
) -> OptionalResult<TR>
where
    TF: InputNode,
    FR: FnOnce(config::BinaryData, &mut context::Context) -> Option<TF>,
    FP: FnOnce(&TF, &mut context::Context) -> diagnostic::Result<TR>,
{
    // Try resolving the URI.
    if let Some(data) = resolve_uri(uri, context) {
        // Parse the flat file to a traversable tree.
        if let Some(root) = reader(data, context) {
            // Update recursion stack.
            context.uri_stack().push(uri.to_string());

            // Defer to the provided parser to handle parsing the resolved
            // data.
            let (field_output, result) = push_child(
                context,
                &root,
                path::PathElement::Field("data".to_string()),
                false,
                parser,
            );

            // Revert recursion stack update.
            context.uri_stack().pop();

            // Replace node type to make clear what the child node we just
            // added signifies.
            context.replace_node_type(tree::NodeType::ResolvedUri(uri.to_string()));

            // Success, at least to the point that a tree was formed. The
            // tree itself might still be invalid.
            return (Some(field_output), result);
        }
    }

    (None, None)
}

/// Read function for YAML files, to be used with [parse_uri()].
pub fn read_yaml(
    binary_data: config::BinaryData,
    context: &mut context::Context,
    schema: Option<&jsonschema::JSONSchema>,
) -> Option<yaml::Value> {
    // Parse as UTF-8.
    let string_data = match std::str::from_utf8(binary_data.as_ref().as_ref()) {
        Err(e) => {
            ediagnostic!(context, Error, YamlParseFailed, e);
            return None;
        }
        Ok(x) => x,
    };

    // Parse as YAML.
    let yaml_data = match serde_yaml::from_str::<serde_yaml::Value>(string_data) {
        Err(e) => {
            ediagnostic!(context, Error, YamlParseFailed, e);
            return None;
        }
        Ok(x) => x,
    };

    // Convert to JSON DOM.
    let json_data = match yaml::yaml_to_json(yaml_data, context.path()) {
        Err(e) => {
            diagnostic!(context, e);
            return None;
        }
        Ok(x) => x,
    };

    // Validate with schema.
    if let Some(schema) = schema {
        if let Err(es) = schema.validate(&json_data) {
            for e in es {
                ediagnostic!(context, Error, YamlSchemaValidationFailed, e);
            }
            return None;
        }
    }

    Some(json_data)
}

//=============================================================================
// ANTLR syntax tree node handling
//=============================================================================

/// Wrapper type to satisfy push_child()'s InputNode trait bound on the input
/// node type.
struct AntlrContextWrapper<'a, T>(&'a T);

impl<T> InputNode for AntlrContextWrapper<'_, T> {
    fn type_to_node() -> tree::Node {
        tree::NodeType::AstNode.into()
    }

    fn data_to_node(&self) -> tree::Node {
        tree::NodeType::AstNode.into()
    }

    fn oneof_variant(&self) -> Option<&'static str> {
        None
    }

    fn parse_unknown(&self, _: &mut context::Context<'_>) -> bool {
        false
    }
}

/// Convenience/shorthand macro for traversing into a syntax tree node by node.
macro_rules! antlr_child {
    ($input:expr, $context:expr, $field:ident, $analyzer:expr) => {
        antlr_child!($input, $context, $field, 0, $analyzer)
    };
    ($input:expr, $context:expr, $field:ident, $index:expr, $analyzer:expr) => {
        crate::parse::traversal::push_antlr_child(
            $context,
            $input,
            $index,
            stringify!($field),
            $analyzer,
        )
    };
    ($input:expr, $context:expr, $field:ident, $index:expr, $analyzer:expr, $($args:expr),*) => {
        antlr_child!($input, $context, $field, $index, |x, y| $analyzer(x, y, $($args),*))
    };
}

/// Parse and push a child of an ANTLR syntax tree node.
pub fn push_antlr_child<'input, TP, TC, TR, FA>(
    context: &mut context::Context,
    parent: &TP,
    index: usize,
    field: &'static str,
    analyzer: FA,
) -> OptionalResult<TR>
where
    TP: antlr_rust::parser_rule_context::ParserRuleContext<'input>,
    FA: FnOnce(&TC, &mut context::Context) -> diagnostic::Result<TR>,
    TC: antlr_rust::parser_rule_context::ParserRuleContext<'input, TF = TP::TF, Ctx = TP::Ctx>
        + 'input,
{
    if let Some(child) = parent.child_of_type::<TC>(index) {
        let (field_output, result) = push_child(
            context,
            &AntlrContextWrapper(child.as_ref()),
            path::PathElement::Field(field.to_string()),
            false,
            |x: &AntlrContextWrapper<TC>, y| analyzer(x.0, y),
        );
        (Some(field_output), result)
    } else {
        (None, None)
    }
}

/// Convenience/shorthand macro for traversing into a syntax tree node by node.
/// Contrary to antlr_child! and most other traversal macros, this does NOT
/// make a child node in the resulting tree. It can be used to hide unobvious
/// grammar constructs, such rules related to avoiding left recursion.
macro_rules! antlr_hidden_child {
    ($input:expr, $context:expr, $analyzer:expr) => {
        antlr_hidden_child!($input, $context, 0, $analyzer)
    };
    ($input:expr, $context:expr, $index:expr, $analyzer:expr) => {
        crate::parse::traversal::push_antlr_hidden_child(
            $context,
            $input,
            $index,
            $analyzer,
        )
    };
    ($input:expr, $context:expr, $index:expr, $analyzer:expr, $($args:expr),*) => {
        antlr_hidden_child!($input, $context, $index, |x, y| $analyzer(x, y, $($args),*))
    };
}

/// Parse and push a child of an ANTLR syntax tree node, without making a
/// corresponding child node in the output tree.
pub fn push_antlr_hidden_child<'input, TP, TC, TR, FA>(
    context: &mut context::Context,
    parent: &TP,
    index: usize,
    analyzer: FA,
) -> Option<TR>
where
    TP: antlr_rust::parser_rule_context::ParserRuleContext<'input>,
    FA: FnOnce(&TC, &mut context::Context) -> diagnostic::Result<TR>,
    TC: antlr_rust::parser_rule_context::ParserRuleContext<'input, TF = TP::TF, Ctx = TP::Ctx>
        + 'input,
{
    parent.child_of_type::<TC>(index).and_then(|child| {
        analyzer(child.as_ref(), context)
            .map_err(|cause| {
                diagnostic!(context, Error, cause);
            })
            .ok()
    })
}

/// This does more or less the opposite of pushing a hidden child: it creates a
/// child node in the output tree without traversing deeper into the input
/// tree. It can be used to hide unobvious grammar constructs, such rules
/// related to avoiding left recursion.
macro_rules! antlr_recurse {
    ($input:expr, $context:expr, $field:ident, $analyzer:expr) => {
        crate::parse::traversal::push_antlr_recurse(
            $context,
            $input,
            stringify!($field),
            $analyzer,
        )
    };
    ($input:expr, $context:expr, $field:ident, $analyzer:expr, $($args:expr),*) => {
        antlr_recurse!($input, $context, $field, |x, y| $analyzer(x, y, $($args),*))
    };
}

/// Parse and push a child of an ANTLR syntax tree node.
pub fn push_antlr_recurse<'input, TP, TR, FA>(
    context: &mut context::Context,
    parent: &TP,
    field: &'static str,
    analyzer: FA,
) -> RequiredResult<TR>
where
    TP: antlr_rust::parser_rule_context::ParserRuleContext<'input>,
    FA: FnOnce(&TP, &mut context::Context) -> diagnostic::Result<TR>,
{
    push_child(
        context,
        &AntlrContextWrapper(parent),
        path::PathElement::Field(field.to_string()),
        false,
        |x: &AntlrContextWrapper<TP>, y| analyzer(x.0, y),
    )
}

/// Convenience/shorthand macro for traversing into all children of a certain
/// type in a syntax tree.
macro_rules! antlr_children {
    ($input:expr, $context:expr, $rule:ident, $analyzer:expr) => {
        crate::parse::traversal::push_antlr_children(
            $context,
            $input,
            stringify!($rule),
            $analyzer,
        )
    };
    ($input:expr, $context:expr, $rule:ident, $analyzer:expr, $($args:expr),*) => {
        antlr_children!($input, $context, $rule, |x, y| $analyzer(x, y, $($args),*))
    };
}

/// Parse and push a child of an ANTLR syntax tree node.
pub fn push_antlr_children<'input, TP, TC, TR, FA>(
    context: &mut context::Context,
    parent: &TP,
    field: &'static str,
    mut analyzer: FA,
) -> RepeatedResult<TR>
where
    TP: antlr_rust::parser_rule_context::ParserRuleContext<'input>,
    FA: FnMut(&TC, &mut context::Context) -> diagnostic::Result<TR>,
    TC: antlr_rust::parser_rule_context::ParserRuleContext<'input, TF = TP::TF, Ctx = TP::Ctx>
        + 'input,
{
    parent
        .children_of_type::<TC>()
        .into_iter()
        .enumerate()
        .map(|(index, child)| {
            push_child(
                context,
                &AntlrContextWrapper(child.as_ref()),
                path::PathElement::Repeated(field.to_string(), index),
                false,
                |x: &AntlrContextWrapper<TC>, y| analyzer(x.0, y),
            )
        })
        .unzip()
}