Source file parseff.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
type span = { buf : string; off : int; len : int }
let[@inline always] span_to_string s =
if s.len = 0 then
""
else
String.sub s.buf s.off s.len
type location = { offset : int; line : int; col : int }
type endian = Big | Little
type _ Effect.t +=
| Consume : string -> string Effect.t
| Satisfy : (char -> bool) * string -> char Effect.t
| Position : int Effect.t
| Location : location Effect.t
| Match_re : Re.re -> string Effect.t
| Choose : (unit -> 'a) * (unit -> 'a) -> 'a Effect.t
| Warn : 'd -> unit Effect.t
| Warn_at : int * 'd -> unit Effect.t
| Look_ahead : (unit -> 'a) -> 'a Effect.t
| End_of_input : unit Effect.t
| Take_while : (char -> bool) -> string Effect.t
| Skip_while : (char -> bool) -> unit Effect.t
| Greedy_many : (unit -> 'a) -> 'a list Effect.t
| Skip_while_then_char : (char -> bool) * char -> unit Effect.t
| Fused_sep_take : (char -> bool) * char * (char -> bool) -> string Effect.t
| Sep_by_take : (char -> bool) * char * (char -> bool) -> string list Effect.t
| Take_while_span : (char -> bool) -> span Effect.t
| Sep_by_take_span :
(char -> bool) * char * (char -> bool)
-> span list Effect.t
| Rec_ : (unit -> 'a) -> 'a Effect.t
| Any_uint8 : int Effect.t
| Any_int8 : int Effect.t
| Any_int16 : endian -> int Effect.t
| Any_int32 : endian -> int32 Effect.t
| Any_int64 : endian -> int64 Effect.t
| Take : int -> string Effect.t
| Satisfy_uchar : (Uchar.t -> bool) * string -> Uchar.t Effect.t
| Take_while_uchar : (Uchar.t -> bool) -> string Effect.t
| Skip_while_uchar : (Uchar.t -> bool) -> unit Effect.t
| Take_while_span_uchar : (Uchar.t -> bool) -> span Effect.t
| Skip_while_then_uchar : (Uchar.t -> bool) * Uchar.t -> unit Effect.t
let is_parseff_effect : type a. a Effect.t -> bool = function
| Consume _
| Satisfy _
| Position
| Location
| Match_re _
| Choose _
| Warn _
| Warn_at _
| Look_ahead _
| End_of_input
| Take_while _
| Skip_while _
| Greedy_many _
| Skip_while_then_char _
| Fused_sep_take _
| Sep_by_take _
| Take_while_span _
| Sep_by_take_span _
| Rec_ _
| Any_uint8
| Any_int8
| Any_int16 _
| Any_int32 _
| Any_int64 _
| Take _
| Satisfy_uchar _
| Take_while_uchar _
| Skip_while_uchar _
| Take_while_span_uchar _
| Skip_while_then_uchar _ ->
true
| _ ->
false
type ('a, 'e) result = Ok of 'a | Error of { pos : int; error : 'e }
type 'd diagnostic = { pos : int; diagnostic : 'd }
type ('e, 'd) error_with_diagnostics = {
pos : int;
error : 'e;
diagnostics : 'd diagnostic list;
}
type ('a, 'e, 'd) result_with_diagnostics =
('a * 'd diagnostic list, ('e, 'd) error_with_diagnostics) Stdlib.result
exception Parse_error of int * string
exception Unexpected_eof of int
exception User_error of int * Obj.t
exception User_failure of int * string
exception Propagated_error of int * Obj.t
exception Depth_limit_exceeded of int * string
type line_index = {
mutable starts : int array;
mutable count : int;
mutable scanned_up_to : int;
}
type state = {
mutable input : string;
mutable pos : int;
mutable diagnostics_rev : (int * Obj.t) list;
mutable line_index : line_index option;
}
type 'e exn_handler = { handle : 'a. exn -> ('a, 'e) result }
let[@inline] handle_consume st input_len s =
let len = String.length s in
if st.pos + len <= input_len then begin
let inp = st.input in
let pos = st.pos in
let rec check i =
if i >= len then
true
else if String.unsafe_get inp (pos + i) = String.unsafe_get s i then
check (i + 1)
else
false
in
if check 0 then begin
st.pos <- pos + len;
s
end else
raise (Parse_error (pos, "expected \"" ^ String.escaped s ^ "\""))
end else
raise (Unexpected_eof st.pos)
let[@inline] handle_satisfy st input_len pred label =
if st.pos < input_len then
let c = String.unsafe_get st.input st.pos in
if pred c then begin
st.pos <- st.pos + 1;
c
end else
raise (Parse_error (st.pos, "expected " ^ label))
else
raise (Unexpected_eof st.pos)
let[@inline] scan_while inp start input_len pred =
let pos = ref start in
while !pos < input_len && pred (String.unsafe_get inp !pos) do
pos := !pos + 1
done;
!pos
let[@inline] handle_take_while st input_len pred =
let start = st.pos in
let end_pos = scan_while st.input start input_len pred in
st.pos <- end_pos;
if end_pos > start then
String.sub st.input start (end_pos - start)
else
""
let[@inline] handle_take_while_span st input_len pred =
let start = st.pos in
let end_pos = scan_while st.input start input_len pred in
st.pos <- end_pos;
{ buf = st.input; off = start; len = end_pos - start }
let[@inline] handle_skip_while st input_len pred =
st.pos <- scan_while st.input st.pos input_len pred
let[@inline] handle_skip_while_then_char st input_len pred c =
let inp = st.input in
let pos = scan_while inp st.pos input_len pred in
if pos < input_len && String.unsafe_get inp pos = c then
st.pos <- pos + 1
else begin
st.pos <- pos;
if pos >= input_len then
raise (Unexpected_eof pos)
else
raise (Parse_error (pos, "expected '" ^ String.make 1 c ^ "'"))
end
let[@inline] handle_fused_sep_take st input_len ws_pred sep_char take_pred =
let inp = st.input in
let pos = scan_while inp st.pos input_len ws_pred in
if pos < input_len && String.unsafe_get inp pos = sep_char then begin
let pos2 = scan_while inp (pos + 1) input_len ws_pred in
let end_pos = scan_while inp pos2 input_len take_pred in
if end_pos > pos2 then begin
st.pos <- end_pos;
String.sub inp pos2 (end_pos - pos2)
end else begin
st.pos <- end_pos;
if end_pos >= input_len then
raise (Unexpected_eof end_pos)
else
raise (Parse_error (end_pos, "expected value"))
end
end else begin
st.pos <- pos;
if pos >= input_len then
raise (Unexpected_eof pos)
else
raise (Parse_error (pos, "expected '" ^ String.make 1 sep_char ^ "'"))
end
let[@inline] handle_sep_by_take_core st input_len ws_pred sep_char take_pred fn
=
let inp = st.input in
let start = st.pos in
let first_end = scan_while inp start input_len take_pred in
if first_end <= start then begin
st.pos <- first_end;
[]
end else begin
let acc = ref [ fn inp start (first_end - start) ] in
let pos = ref first_end in
let continue_loop = ref true in
while !continue_loop do
let ws_end = scan_while inp !pos input_len ws_pred in
if ws_end < input_len && String.unsafe_get inp ws_end = sep_char then begin
let after_ws = scan_while inp (ws_end + 1) input_len ws_pred in
let elem_end = scan_while inp after_ws input_len take_pred in
if elem_end > after_ws then begin
acc := fn inp after_ws (elem_end - after_ws) :: !acc;
pos := elem_end
end else
continue_loop := false
end else
continue_loop := false
done;
st.pos <- !pos;
List.rev !acc
end
let[@inline] handle_sep_by_take st input_len ws_pred sep_char take_pred =
handle_sep_by_take_core st input_len ws_pred sep_char take_pred
(fun inp off len -> String.sub inp off len
)
let[@inline] handle_sep_by_take_span st input_len ws_pred sep_char take_pred =
handle_sep_by_take_core st input_len ws_pred sep_char take_pred
(fun inp off len -> { buf = inp; off; len }
)
let[@inline] handle_match_regex st input_len re =
try
let groups = Re.exec ~pos:st.pos re st.input in
let match_start = Re.Group.start groups 0 in
if match_start <> st.pos then
raise (Parse_error (st.pos, "regex match failed"))
else
let matched = Re.Group.get groups 0 in
let match_end = Re.Group.stop groups 0 in
st.pos <- match_end;
matched
with Not_found ->
if st.pos >= input_len then
raise (Unexpected_eof st.pos)
else
raise (Parse_error (st.pos, "regex match failed"))
let[@inline] handle_end_of_input st input_len =
if st.pos <> input_len then
raise (Parse_error (st.pos, "expected end of input"))
let[@inline] handle_any_uint8 st input_len =
if st.pos < input_len then begin
let v = String.get_uint8 st.input st.pos in
st.pos <- st.pos + 1;
v
end else
raise (Unexpected_eof st.pos)
let[@inline] handle_any_int8 st input_len =
if st.pos < input_len then begin
let v = String.get_int8 st.input st.pos in
st.pos <- st.pos + 1;
v
end else
raise (Unexpected_eof st.pos)
let[@inline] handle_any_int16 st input_len endian =
if st.pos + 2 <= input_len then begin
let v =
match endian with
| Big ->
String.get_int16_be st.input st.pos
| Little ->
String.get_int16_le st.input st.pos
in
st.pos <- st.pos + 2;
v
end else
raise (Unexpected_eof st.pos)
let[@inline] handle_any_int32 st input_len endian =
if st.pos + 4 <= input_len then begin
let v =
match endian with
| Big ->
String.get_int32_be st.input st.pos
| Little ->
String.get_int32_le st.input st.pos
in
st.pos <- st.pos + 4;
v
end else
raise (Unexpected_eof st.pos)
let[@inline] handle_any_int64 st input_len endian =
if st.pos + 8 <= input_len then begin
let v =
match endian with
| Big ->
String.get_int64_be st.input st.pos
| Little ->
String.get_int64_le st.input st.pos
in
st.pos <- st.pos + 8;
v
end else
raise (Unexpected_eof st.pos)
let[@inline] handle_take st input_len n =
if st.pos + n <= input_len then begin
let s = String.sub st.input st.pos n in
st.pos <- st.pos + n;
s
end else
raise (Unexpected_eof st.pos)
exception Invalid_utf8 of int
let[@inline] uchar_label u =
let i = Uchar.to_int u in
if i < 0x80 then
Printf.sprintf "%C" (Char.chr i)
else
Printf.sprintf "U+%04X" i
let[@inline] decode_uchar inp pos input_len =
if pos >= input_len then raise (Unexpected_eof pos);
let d = String.get_utf_8_uchar inp pos in
if not (Uchar.utf_decode_is_valid d) then raise (Invalid_utf8 pos);
d
let[@inline] handle_satisfy_uchar st input_len pred label =
let d = decode_uchar st.input st.pos input_len in
let u = Uchar.utf_decode_uchar d in
if pred u then begin
st.pos <- st.pos + Uchar.utf_decode_length d;
u
end else
raise (Parse_error (st.pos, "expected " ^ label))
let[@inline] scan_while_uchar inp start input_len pred =
let pos = ref start in
let continue_loop = ref true in
while !pos < input_len && !continue_loop do
let d = String.get_utf_8_uchar inp !pos in
if not (Uchar.utf_decode_is_valid d) then raise (Invalid_utf8 !pos);
if pred (Uchar.utf_decode_uchar d) then
pos := !pos + Uchar.utf_decode_length d
else
continue_loop := false
done;
!pos
let[@inline] handle_take_while_uchar st input_len pred =
let start = st.pos in
let end_pos = scan_while_uchar st.input start input_len pred in
st.pos <- end_pos;
if end_pos > start then
String.sub st.input start (end_pos - start)
else
""
let[@inline] handle_take_while_span_uchar st input_len pred =
let start = st.pos in
let end_pos = scan_while_uchar st.input start input_len pred in
st.pos <- end_pos;
{ buf = st.input; off = start; len = end_pos - start }
let[@inline] handle_skip_while_uchar st input_len pred =
st.pos <- scan_while_uchar st.input st.pos input_len pred
let[@inline] handle_skip_while_then_uchar st input_len pred term =
let inp = st.input in
let pos = scan_while_uchar inp st.pos input_len pred in
if pos >= input_len then begin
st.pos <- pos;
raise (Unexpected_eof pos)
end;
let d = String.get_utf_8_uchar inp pos in
if not (Uchar.utf_decode_is_valid d) then raise (Invalid_utf8 pos);
let u = Uchar.utf_decode_uchar d in
if Uchar.equal u term then
st.pos <- pos + Uchar.utf_decode_length d
else begin
st.pos <- pos;
raise (Parse_error (pos, "expected " ^ uchar_label term))
end
let create_line_index () =
let starts = Array.make 64 0 in
starts.(0) <- 0;
{ starts; count = 1; scanned_up_to = 0 }
let extend_line_index idx input up_to =
let i = ref idx.scanned_up_to in
while !i < up_to do
if String.unsafe_get input !i = '\n' then begin
if idx.count >= Array.length idx.starts then begin
let new_arr = Array.make (idx.count * 2) 0 in
Array.blit idx.starts 0 new_arr 0 idx.count;
idx.starts <- new_arr
end;
idx.starts.(idx.count) <- !i + 1;
idx.count <- idx.count + 1
end;
incr i
done;
idx.scanned_up_to <- up_to
let find_line idx offset =
let lo = ref 0 and hi = ref (idx.count - 1) in
while !lo < !hi do
let mid = !lo + ((!hi - !lo + 1) / 2) in
if idx.starts.(mid) <= offset then
lo := mid
else
hi := mid - 1
done;
!lo
let handle_location st input_len =
let idx =
match st.line_index with
| Some idx ->
idx
| None ->
let idx = create_line_index () in
st.line_index <- Some idx;
idx
in
let up_to = min st.pos input_len in
extend_line_index idx st.input up_to;
let line_idx = find_line idx st.pos in
{
offset = st.pos;
line = line_idx + 1;
col = st.pos - idx.starts.(line_idx) + 1;
}
let pos_of_exn = function
| Parse_error (p, _)
| Unexpected_eof p
| User_error (p, _)
| Propagated_error (p, _) ->
p
| _ ->
-1
let compose_branch_errors left_exn right_exn =
let lpos = pos_of_exn left_exn in
let rpos = pos_of_exn right_exn in
if lpos <> rpos then
let exn =
if lpos > rpos then
left_exn
else
right_exn
in
match exn with
| User_error (pos, obj) ->
Propagated_error (pos, obj)
| _ ->
exn
else
match (left_exn, right_exn) with
| Parse_error (_, lmsg), Parse_error (pos, rmsg) ->
Parse_error (pos, lmsg ^ " or " ^ rmsg)
| Parse_error _, Unexpected_eof _ ->
left_exn
| Unexpected_eof _, Parse_error _ ->
right_exn
| Unexpected_eof pos, Unexpected_eof _ ->
Unexpected_eof pos
| _, User_error (pos, obj) ->
Propagated_error (pos, obj)
| _, right ->
right
let run_deep (type e) ?diagnostics_out ~max_depth (handler : e exn_handler)
input (parser : unit -> 'a) : ('a, e) result =
let st = { input; pos = 0; diagnostics_rev = []; line_index = None } in
let input_len = String.length input in
let nest_depth = ref 0 in
let last_exn = ref (Failure "unreachable") in
let rec go : 'b. (unit -> 'b) -> ('b, e) result =
fun p ->
match p () with
| v ->
Ok v
| exception exn ->
last_exn := exn;
handler.handle exn
| effect Position, k ->
Effect.Deep.continue k st.pos
| effect Location, k ->
Effect.Deep.continue k (handle_location st input_len)
| effect Consume s, k -> (
match handle_consume st input_len s with
| v ->
Effect.Deep.continue k v
| exception exn ->
Effect.Deep.discontinue k exn
)
| effect Satisfy (pred, label), k -> (
match handle_satisfy st input_len pred label with
| v ->
Effect.Deep.continue k v
| exception exn ->
Effect.Deep.discontinue k exn
)
| effect Take_while pred, k ->
Effect.Deep.continue k (handle_take_while st input_len pred)
| effect Take_while_span pred, k ->
Effect.Deep.continue k (handle_take_while_span st input_len pred)
| effect Skip_while pred, k ->
handle_skip_while st input_len pred;
Effect.Deep.continue k ()
| effect Skip_while_then_char (pred, c), k -> (
match handle_skip_while_then_char st input_len pred c with
| () ->
Effect.Deep.continue k ()
| exception exn ->
Effect.Deep.discontinue k exn
)
| effect Fused_sep_take (ws_pred, sep_char, take_pred), k -> (
match handle_fused_sep_take st input_len ws_pred sep_char take_pred with
| v ->
Effect.Deep.continue k v
| exception exn ->
Effect.Deep.discontinue k exn
)
| effect Sep_by_take (ws_pred, sep_char, take_pred), k ->
Effect.Deep.continue k
(handle_sep_by_take st input_len ws_pred sep_char take_pred)
| effect Sep_by_take_span (ws_pred, sep_char, take_pred), k ->
Effect.Deep.continue k
(handle_sep_by_take_span st input_len ws_pred sep_char take_pred)
| effect Match_re re, k -> (
match handle_match_regex st input_len re with
| v ->
Effect.Deep.continue k v
| exception exn ->
Effect.Deep.discontinue k exn
)
| effect Greedy_many p, k ->
let acc = ref [] in
let saved = ref st.pos in
let saved_diagnostics = ref st.diagnostics_rev in
let failed = ref false in
while not !failed do
saved := st.pos;
saved_diagnostics := st.diagnostics_rev;
match go p with
| Ok v ->
acc := v :: !acc
| Error _ ->
st.pos <- !saved;
st.diagnostics_rev <- !saved_diagnostics;
failed := true
done;
Effect.Deep.continue k (List.rev !acc)
| effect Choose (left, right), k -> (
let saved = st.pos in
let saved_diagnostics = st.diagnostics_rev in
match go left with
| Ok v ->
Effect.Deep.continue k v
| Error _ -> (
let left_exn = !last_exn in
st.pos <- saved;
st.diagnostics_rev <- saved_diagnostics;
match go right with
| Ok v ->
Effect.Deep.continue k v
| Error _ ->
let right_exn = !last_exn in
Effect.Deep.discontinue k
(compose_branch_errors left_exn right_exn)
)
)
| effect Warn d, k ->
st.diagnostics_rev <- (st.pos, Obj.repr d) :: st.diagnostics_rev;
Effect.Deep.continue k ()
| effect Warn_at (pos, d), k ->
st.diagnostics_rev <- (pos, Obj.repr d) :: st.diagnostics_rev;
Effect.Deep.continue k ()
| effect Look_ahead p, k -> (
let saved = st.pos in
let saved_diagnostics = st.diagnostics_rev in
match go p with
| Ok v ->
st.pos <- saved;
st.diagnostics_rev <- saved_diagnostics;
Effect.Deep.continue k v
| Error e ->
st.pos <- saved;
st.diagnostics_rev <- saved_diagnostics;
Effect.Deep.discontinue k
(Propagated_error (e.pos, Obj.repr e.error))
)
| effect Rec_ p, k ->
if !nest_depth >= max_depth then
Effect.Deep.discontinue k
(Depth_limit_exceeded
( st.pos,
Printf.sprintf "maximum nesting depth %d exceeded" max_depth
)
)
else begin
incr nest_depth;
match go p with
| Ok v ->
decr nest_depth;
Effect.Deep.continue k v
| Error e ->
decr nest_depth;
Effect.Deep.discontinue k
(Propagated_error (e.pos, Obj.repr e.error))
end
| effect End_of_input, k -> (
match handle_end_of_input st input_len with
| () ->
Effect.Deep.continue k ()
| exception exn ->
Effect.Deep.discontinue k exn
)
| effect Any_uint8, k -> (
match handle_any_uint8 st input_len with
| v ->
Effect.Deep.continue k v
| exception exn ->
Effect.Deep.discontinue k exn
)
| effect Any_int8, k -> (
match handle_any_int8 st input_len with
| v ->
Effect.Deep.continue k v
| exception exn ->
Effect.Deep.discontinue k exn
)
| effect Any_int16 endian, k -> (
match handle_any_int16 st input_len endian with
| v ->
Effect.Deep.continue k v
| exception exn ->
Effect.Deep.discontinue k exn
)
| effect Any_int32 endian, k -> (
match handle_any_int32 st input_len endian with
| v ->
Effect.Deep.continue k v
| exception exn ->
Effect.Deep.discontinue k exn
)
| effect Any_int64 endian, k -> (
match handle_any_int64 st input_len endian with
| v ->
Effect.Deep.continue k v
| exception exn ->
Effect.Deep.discontinue k exn
)
| effect Take n, k -> (
match handle_take st input_len n with
| v ->
Effect.Deep.continue k v
| exception exn ->
Effect.Deep.discontinue k exn
)
| effect Satisfy_uchar (pred, label), k -> (
match handle_satisfy_uchar st input_len pred label with
| v ->
Effect.Deep.continue k v
| exception Invalid_utf8 pos ->
Effect.Deep.discontinue k (Parse_error (pos, "invalid UTF-8"))
| exception exn ->
Effect.Deep.discontinue k exn
)
| effect Take_while_uchar pred, k -> (
match handle_take_while_uchar st input_len pred with
| v ->
Effect.Deep.continue k v
| exception Invalid_utf8 pos ->
Effect.Deep.discontinue k (Parse_error (pos, "invalid UTF-8"))
)
| effect Take_while_span_uchar pred, k -> (
match handle_take_while_span_uchar st input_len pred with
| v ->
Effect.Deep.continue k v
| exception Invalid_utf8 pos ->
Effect.Deep.discontinue k (Parse_error (pos, "invalid UTF-8"))
)
| effect Skip_while_uchar pred, k -> (
match handle_skip_while_uchar st input_len pred with
| () ->
Effect.Deep.continue k ()
| exception Invalid_utf8 pos ->
Effect.Deep.discontinue k (Parse_error (pos, "invalid UTF-8"))
)
| effect Skip_while_then_uchar (pred, term), k -> (
match handle_skip_while_then_uchar st input_len pred term with
| () ->
Effect.Deep.continue k ()
| exception Invalid_utf8 pos ->
Effect.Deep.discontinue k (Parse_error (pos, "invalid UTF-8"))
| exception exn ->
Effect.Deep.discontinue k exn
)
in
Fun.protect
~finally:(fun () ->
match diagnostics_out with
| Some out ->
out := st.diagnostics_rev
| None ->
()
)
(fun () -> go parser)
let default_handler : _ exn_handler =
{
handle =
(function
| Parse_error (pos, msg) ->
Error { pos; error = `Expected msg }
| Unexpected_eof pos ->
Error { pos; error = `Unexpected_end_of_input }
| User_error (pos, obj) ->
Error { pos; error = Obj.obj obj }
| Propagated_error (pos, obj) ->
Error { pos; error = Obj.obj obj }
| e ->
raise e
);
}
let parse ?(max_depth = 128) input (parser : unit -> 'a) : ('a, 'e) result =
match run_deep ~max_depth default_handler input parser with
| result ->
result
| exception User_failure (pos, msg) ->
Error { pos; error = `Failure msg }
| exception Depth_limit_exceeded (pos, msg) ->
Error { pos; error = `Depth_limit_exceeded msg }
let to_diagnostics diagnostics_rev =
List.rev_map
(fun (pos, diagnostic) -> { pos; diagnostic = Obj.obj diagnostic })
diagnostics_rev
let attach_diagnostics result diagnostics =
match result with
| Ok value ->
Stdlib.Ok (value, diagnostics)
| Error { pos; error } ->
Stdlib.Error { pos; error; diagnostics }
let parse_until_end ?(max_depth = 128) input (parser : unit -> 'a) :
( 'a,
[> `Expected of string | `Failure of string | `Unexpected_end_of_input ],
'd
)
result_with_diagnostics =
let diagnostics_out = ref [] in
let result =
match
run_deep ~max_depth ~diagnostics_out default_handler input (fun () ->
let v = parser () in
Effect.perform End_of_input;
v
)
with
| result ->
result
| exception User_failure (pos, msg) ->
Error { pos; error = `Failure msg }
| exception Depth_limit_exceeded (pos, msg) ->
Error { pos; error = `Depth_limit_exceeded msg }
in
let diagnostics = to_diagnostics !diagnostics_out in
attach_diagnostics result diagnostics
type source = {
mutable input : string;
mutable input_len : int;
read : bytes -> int -> int -> int;
mutable eof : bool;
tmp : bytes;
}
let default_buf_size = 4096
let try_refill src =
if src.eof then
false
else
let n = src.read src.tmp 0 (Bytes.length src.tmp) in
if n = 0 then begin
src.eof <- true;
false
end else begin
let old = src.input in
let old_len = src.input_len in
let new_len = old_len + n in
let buf = Bytes.create new_len in
Bytes.blit_string old 0 buf 0 old_len;
Bytes.blit src.tmp 0 buf old_len n;
src.input <- Bytes.unsafe_to_string buf;
src.input_len <- new_len;
true
end
let ensure_bytes src pos needed =
let rec loop () =
if pos + needed <= src.input_len then
true
else if not (try_refill src) then
false
else
loop ()
in
loop ()
let scan_while_source src st pred =
let continue = ref true in
while !continue do
if st.pos < src.input_len then
if pred (String.unsafe_get src.input st.pos) then
st.pos <- st.pos + 1
else
continue := false
else if try_refill src then
()
else
continue := false
done;
st.input <- src.input
let handle_take_while_source src st pred =
let start = st.pos in
scan_while_source src st pred;
if st.pos > start then
String.sub src.input start (st.pos - start)
else
""
let handle_take_while_span_source src st pred =
let start = st.pos in
scan_while_source src st pred;
{ buf = src.input; off = start; len = st.pos - start }
let handle_skip_while_source src st pred = scan_while_source src st pred
let handle_skip_while_then_char_source src st pred c =
handle_skip_while_source src st pred;
ignore (ensure_bytes src st.pos 1);
if st.pos < src.input_len && String.unsafe_get src.input st.pos = c then
st.pos <- st.pos + 1
else if st.pos >= src.input_len then
raise (Unexpected_eof st.pos)
else
raise (Parse_error (st.pos, "expected '" ^ String.make 1 c ^ "'"))
let handle_fused_sep_take_source src st ws_pred sep_char take_pred =
handle_skip_while_source src st ws_pred;
ignore (ensure_bytes src st.pos 1);
if st.pos < src.input_len && String.unsafe_get src.input st.pos = sep_char
then begin
st.pos <- st.pos + 1;
handle_skip_while_source src st ws_pred;
let start = st.pos in
scan_while_source src st take_pred;
if st.pos > start then
String.sub src.input start (st.pos - start)
else if st.pos >= src.input_len then
raise (Unexpected_eof st.pos)
else
raise (Parse_error (st.pos, "expected value"))
end else if st.pos >= src.input_len then
raise (Unexpected_eof st.pos)
else
raise (Parse_error (st.pos, "expected '" ^ String.make 1 sep_char ^ "'"))
let handle_sep_by_take_source_core src st ws_pred sep_char take_pred fn =
let start = st.pos in
scan_while_source src st take_pred;
if st.pos <= start then
[]
else begin
let acc = ref [ fn src.input start (st.pos - start) ] in
let continue_loop = ref true in
while !continue_loop do
let saved_pos = st.pos in
handle_skip_while_source src st ws_pred;
ignore (ensure_bytes src st.pos 1);
if st.pos < src.input_len && String.unsafe_get src.input st.pos = sep_char
then begin
st.pos <- st.pos + 1;
handle_skip_while_source src st ws_pred;
let elem_start = st.pos in
scan_while_source src st take_pred;
if st.pos > elem_start then
acc := fn src.input elem_start (st.pos - elem_start) :: !acc
else begin
st.pos <- saved_pos;
st.input <- src.input;
continue_loop := false
end
end else begin
st.pos <- saved_pos;
st.input <- src.input;
continue_loop := false
end
done;
List.rev !acc
end
let handle_sep_by_take_source src st ws_pred sep_char take_pred =
handle_sep_by_take_source_core src st ws_pred sep_char take_pred
(fun inp off len -> String.sub inp off len
)
let handle_sep_by_take_span_source src st ws_pred sep_char take_pred =
handle_sep_by_take_source_core src st ws_pred sep_char take_pred
(fun inp off len -> { buf = inp; off; len }
)
let handle_match_regex_source src st re =
let rec loop () =
try
let groups = Re.exec ~pos:st.pos re src.input in
let match_start = Re.Group.start groups 0 in
let match_end = Re.Group.stop groups 0 in
if match_start <> st.pos then
raise (Parse_error (st.pos, "regex match failed"))
else if match_end = src.input_len && not src.eof then begin
ignore (try_refill src);
st.input <- src.input;
loop ()
end else begin
let matched = Re.Group.get groups 0 in
st.pos <- match_end;
st.input <- src.input;
matched
end
with Not_found ->
if st.pos >= src.input_len && not src.eof then begin
ignore (try_refill src);
st.input <- src.input;
loop ()
end else if st.pos >= src.input_len then
raise (Unexpected_eof st.pos)
else
raise (Parse_error (st.pos, "regex match failed"))
in
loop ()
let handle_end_of_input_source src st =
if st.pos = src.input_len && not src.eof then ignore (try_refill src);
if st.pos <> src.input_len then
raise (Parse_error (st.pos, "expected end of input"))
let ensure_utf8_char src pos =
if not (ensure_bytes src pos 1) then
false
else
let lead = Char.code (String.unsafe_get src.input pos) in
let needed =
if lead < 0x80 then
1
else if lead < 0xC2 then
1
else if lead < 0xE0 then
2
else if lead < 0xF0 then
3
else if lead < 0xF5 then
4
else
1
in
if needed <= 1 then
true
else
ensure_bytes src pos needed
let handle_satisfy_uchar_source src st pred label =
if not (ensure_utf8_char src st.pos) then raise (Unexpected_eof st.pos);
let d = String.get_utf_8_uchar src.input st.pos in
if not (Uchar.utf_decode_is_valid d) then raise (Invalid_utf8 st.pos);
let u = Uchar.utf_decode_uchar d in
if pred u then begin
st.pos <- st.pos + Uchar.utf_decode_length d;
st.input <- src.input;
u
end else
raise (Parse_error (st.pos, "expected " ^ label))
let scan_while_uchar_source src st pred =
let continue_loop = ref true in
while !continue_loop do
if ensure_utf8_char src st.pos then begin
let d = String.get_utf_8_uchar src.input st.pos in
if not (Uchar.utf_decode_is_valid d) then raise (Invalid_utf8 st.pos);
if pred (Uchar.utf_decode_uchar d) then
st.pos <- st.pos + Uchar.utf_decode_length d
else
continue_loop := false
end else
continue_loop := false
done;
st.input <- src.input
let handle_take_while_uchar_source src st pred =
let start = st.pos in
scan_while_uchar_source src st pred;
if st.pos > start then
String.sub src.input start (st.pos - start)
else
""
let handle_take_while_span_uchar_source src st pred =
let start = st.pos in
scan_while_uchar_source src st pred;
{ buf = src.input; off = start; len = st.pos - start }
let handle_skip_while_uchar_source src st pred =
scan_while_uchar_source src st pred
let handle_skip_while_then_uchar_source src st pred term =
handle_skip_while_uchar_source src st pred;
if not (ensure_utf8_char src st.pos) then raise (Unexpected_eof st.pos);
let d = String.get_utf_8_uchar src.input st.pos in
if not (Uchar.utf_decode_is_valid d) then raise (Invalid_utf8 st.pos);
let u = Uchar.utf_decode_uchar d in
if Uchar.equal u term then begin
st.pos <- st.pos + Uchar.utf_decode_length d;
st.input <- src.input
end else
raise (Parse_error (st.pos, "expected " ^ uchar_label term))
let run_deep_source (type e) ?diagnostics_out ~max_depth
(handler : e exn_handler) (src : source) (parser : unit -> 'a) :
('a, e) result =
let st =
{ input = src.input; pos = 0; diagnostics_rev = []; line_index = None }
in
let nest_depth = ref 0 in
let last_exn = ref (Failure "unreachable") in
let sync_to_source () = st.input <- src.input in
let rec go : 'b. (unit -> 'b) -> ('b, e) result =
fun p ->
match p () with
| v ->
Ok v
| exception exn ->
last_exn := exn;
handler.handle exn
| effect Position, k ->
Effect.Deep.continue k st.pos
| effect Location, k ->
sync_to_source ();
Effect.Deep.continue k (handle_location st src.input_len)
| effect Consume s, k -> (
try
ignore (ensure_bytes src st.pos (String.length s));
sync_to_source ();
match handle_consume st src.input_len s with
| v ->
Effect.Deep.continue k v
| exception exn ->
Effect.Deep.discontinue k exn
with
| User_failure _ as exn ->
raise exn
| exn ->
Effect.Deep.discontinue k exn
)
| effect Satisfy (pred, label), k -> (
try
ignore (ensure_bytes src st.pos 1);
sync_to_source ();
match handle_satisfy st src.input_len pred label with
| v ->
Effect.Deep.continue k v
| exception exn ->
Effect.Deep.discontinue k exn
with
| User_failure _ as exn ->
raise exn
| exn ->
Effect.Deep.discontinue k exn
)
| effect Take_while pred, k ->
Effect.Deep.continue k (handle_take_while_source src st pred)
| effect Take_while_span pred, k ->
Effect.Deep.continue k (handle_take_while_span_source src st pred)
| effect Skip_while pred, k ->
handle_skip_while_source src st pred;
Effect.Deep.continue k ()
| effect Skip_while_then_char (pred, c), k -> (
match handle_skip_while_then_char_source src st pred c with
| () ->
Effect.Deep.continue k ()
| exception exn ->
Effect.Deep.discontinue k exn
)
| effect Fused_sep_take (ws_pred, sep_char, take_pred), k -> (
match
handle_fused_sep_take_source src st ws_pred sep_char take_pred
with
| v ->
Effect.Deep.continue k v
| exception exn ->
Effect.Deep.discontinue k exn
)
| effect Sep_by_take (ws_pred, sep_char, take_pred), k ->
Effect.Deep.continue k
(handle_sep_by_take_source src st ws_pred sep_char take_pred)
| effect Sep_by_take_span (ws_pred, sep_char, take_pred), k ->
Effect.Deep.continue k
(handle_sep_by_take_span_source src st ws_pred sep_char take_pred)
| effect Match_re re, k -> (
match handle_match_regex_source src st re with
| v ->
Effect.Deep.continue k v
| exception exn ->
Effect.Deep.discontinue k exn
)
| effect Greedy_many p, k ->
let acc = ref [] in
let saved = ref st.pos in
let saved_diagnostics = ref st.diagnostics_rev in
let failed = ref false in
while not !failed do
saved := st.pos;
saved_diagnostics := st.diagnostics_rev;
match go p with
| Ok v ->
acc := v :: !acc
| Error _ ->
st.pos <- !saved;
st.diagnostics_rev <- !saved_diagnostics;
sync_to_source ();
failed := true
done;
Effect.Deep.continue k (List.rev !acc)
| effect Choose (left, right), k -> (
let saved = st.pos in
let saved_diagnostics = st.diagnostics_rev in
match go left with
| Ok v ->
Effect.Deep.continue k v
| Error _ -> (
let left_exn = !last_exn in
st.pos <- saved;
st.diagnostics_rev <- saved_diagnostics;
sync_to_source ();
match go right with
| Ok v ->
Effect.Deep.continue k v
| Error _ ->
let right_exn = !last_exn in
Effect.Deep.discontinue k
(compose_branch_errors left_exn right_exn)
)
)
| effect Warn d, k ->
st.diagnostics_rev <- (st.pos, Obj.repr d) :: st.diagnostics_rev;
Effect.Deep.continue k ()
| effect Warn_at (pos, d), k ->
st.diagnostics_rev <- (pos, Obj.repr d) :: st.diagnostics_rev;
Effect.Deep.continue k ()
| effect Look_ahead p, k -> (
let saved = st.pos in
let saved_diagnostics = st.diagnostics_rev in
match go p with
| Ok v ->
st.pos <- saved;
st.diagnostics_rev <- saved_diagnostics;
sync_to_source ();
Effect.Deep.continue k v
| Error e ->
st.pos <- saved;
st.diagnostics_rev <- saved_diagnostics;
sync_to_source ();
Effect.Deep.discontinue k
(Propagated_error (e.pos, Obj.repr e.error))
)
| effect Rec_ p, k ->
if !nest_depth >= max_depth then
Effect.Deep.discontinue k
(Depth_limit_exceeded
( st.pos,
Printf.sprintf "maximum nesting depth %d exceeded" max_depth
)
)
else begin
incr nest_depth;
match go p with
| Ok v ->
decr nest_depth;
Effect.Deep.continue k v
| Error e ->
decr nest_depth;
Effect.Deep.discontinue k
(Propagated_error (e.pos, Obj.repr e.error))
end
| effect End_of_input, k -> (
match handle_end_of_input_source src st with
| () ->
Effect.Deep.continue k ()
| exception exn ->
Effect.Deep.discontinue k exn
)
| effect Any_uint8, k -> (
try
ignore (ensure_bytes src st.pos 1);
sync_to_source ();
match handle_any_uint8 st src.input_len with
| v ->
Effect.Deep.continue k v
| exception exn ->
Effect.Deep.discontinue k exn
with
| User_failure _ as exn ->
raise exn
| exn ->
Effect.Deep.discontinue k exn
)
| effect Any_int8, k -> (
try
ignore (ensure_bytes src st.pos 1);
sync_to_source ();
match handle_any_int8 st src.input_len with
| v ->
Effect.Deep.continue k v
| exception exn ->
Effect.Deep.discontinue k exn
with
| User_failure _ as exn ->
raise exn
| exn ->
Effect.Deep.discontinue k exn
)
| effect Any_int16 endian, k -> (
try
ignore (ensure_bytes src st.pos 2);
sync_to_source ();
match handle_any_int16 st src.input_len endian with
| v ->
Effect.Deep.continue k v
| exception exn ->
Effect.Deep.discontinue k exn
with
| User_failure _ as exn ->
raise exn
| exn ->
Effect.Deep.discontinue k exn
)
| effect Any_int32 endian, k -> (
try
ignore (ensure_bytes src st.pos 4);
sync_to_source ();
match handle_any_int32 st src.input_len endian with
| v ->
Effect.Deep.continue k v
| exception exn ->
Effect.Deep.discontinue k exn
with
| User_failure _ as exn ->
raise exn
| exn ->
Effect.Deep.discontinue k exn
)
| effect Any_int64 endian, k -> (
try
ignore (ensure_bytes src st.pos 8);
sync_to_source ();
match handle_any_int64 st src.input_len endian with
| v ->
Effect.Deep.continue k v
| exception exn ->
Effect.Deep.discontinue k exn
with
| User_failure _ as exn ->
raise exn
| exn ->
Effect.Deep.discontinue k exn
)
| effect Take n, k -> (
try
ignore (ensure_bytes src st.pos n);
sync_to_source ();
match handle_take st src.input_len n with
| v ->
Effect.Deep.continue k v
| exception exn ->
Effect.Deep.discontinue k exn
with
| User_failure _ as exn ->
raise exn
| exn ->
Effect.Deep.discontinue k exn
)
| effect Satisfy_uchar (pred, label), k -> (
match handle_satisfy_uchar_source src st pred label with
| v ->
Effect.Deep.continue k v
| exception Invalid_utf8 pos ->
Effect.Deep.discontinue k (Parse_error (pos, "invalid UTF-8"))
| exception exn ->
Effect.Deep.discontinue k exn
)
| effect Take_while_uchar pred, k -> (
match handle_take_while_uchar_source src st pred with
| v ->
Effect.Deep.continue k v
| exception Invalid_utf8 pos ->
Effect.Deep.discontinue k (Parse_error (pos, "invalid UTF-8"))
)
| effect Take_while_span_uchar pred, k -> (
match handle_take_while_span_uchar_source src st pred with
| v ->
Effect.Deep.continue k v
| exception Invalid_utf8 pos ->
Effect.Deep.discontinue k (Parse_error (pos, "invalid UTF-8"))
)
| effect Skip_while_uchar pred, k -> (
match handle_skip_while_uchar_source src st pred with
| () ->
Effect.Deep.continue k ()
| exception Invalid_utf8 pos ->
Effect.Deep.discontinue k (Parse_error (pos, "invalid UTF-8"))
)
| effect Skip_while_then_uchar (pred, term), k -> (
match handle_skip_while_then_uchar_source src st pred term with
| () ->
Effect.Deep.continue k ()
| exception Invalid_utf8 pos ->
Effect.Deep.discontinue k (Parse_error (pos, "invalid UTF-8"))
| exception exn ->
Effect.Deep.discontinue k exn
)
in
Fun.protect
~finally:(fun () ->
match diagnostics_out with
| Some out ->
out := st.diagnostics_rev
| None ->
()
)
(fun () -> go parser)
module Source = struct
type t = source
let of_string s =
{
input = s;
input_len = String.length s;
read = (fun _ _ _ -> 0);
eof = true;
tmp = Bytes.empty;
}
let of_channel ?(buf_size = default_buf_size) ic =
{
input = "";
input_len = 0;
read = (fun buf off len -> input ic buf off len);
eof = false;
tmp = Bytes.create buf_size;
}
let of_function read =
{
input = "";
input_len = 0;
read;
eof = false;
tmp = Bytes.create default_buf_size;
}
let of_chunks read_chunk =
let pending = ref "" in
let pending_pos = ref 0 in
of_function (fun buf off len ->
if !pending_pos < String.length !pending then begin
let available = String.length !pending - !pending_pos in
let n = min len available in
Bytes.blit_string !pending !pending_pos buf off n;
pending_pos := !pending_pos + n;
n
end else
let rec next () =
match read_chunk () with
| None ->
0
| Some s when String.length s = 0 ->
next ()
| Some chunk ->
pending := chunk;
pending_pos := 0;
let n = min len (String.length chunk) in
Bytes.blit_string chunk 0 buf off n;
pending_pos := n;
n
in
next ()
)
let of_seq seq =
let r = ref seq in
of_chunks (fun () ->
match !r () with
| Seq.Nil ->
None
| Seq.Cons (s, rest) ->
r := rest;
Some s
)
end
let parse_source ?(max_depth = 128) (src : Source.t) (parser : unit -> 'a) :
('a, 'e) result =
match run_deep_source ~max_depth default_handler src parser with
| result ->
result
| exception User_failure (pos, msg) ->
Error { pos; error = `Failure msg }
| exception Depth_limit_exceeded (pos, msg) ->
Error { pos; error = `Depth_limit_exceeded msg }
let parse_source_until_end ?(max_depth = 128) (src : Source.t)
(parser : unit -> 'a) :
( 'a,
[> `Expected of string | `Failure of string | `Unexpected_end_of_input ],
'd
)
result_with_diagnostics =
let diagnostics_out = ref [] in
let result =
match
run_deep_source ~max_depth ~diagnostics_out default_handler src (fun () ->
let v = parser () in
Effect.perform End_of_input;
v
)
with
| result ->
result
| exception User_failure (pos, msg) ->
Error { pos; error = `Failure msg }
| exception Depth_limit_exceeded (pos, msg) ->
Error { pos; error = `Depth_limit_exceeded msg }
in
let diagnostics = to_diagnostics !diagnostics_out in
attach_diagnostics result diagnostics
let location_of_position input pos =
let idx = create_line_index () in
extend_line_index idx input (min pos (String.length input));
let line_idx = find_line idx pos in
{ offset = pos; line = line_idx + 1; col = pos - idx.starts.(line_idx) + 1 }
let[@inline] consume s = Effect.perform (Consume s)
let[@inline] satisfy pred ~label = Effect.perform (Satisfy (pred, label))
let[@inline] char c = satisfy (Char.equal c) ~label:(String.make 1 c)
let[@inline] match_regex re = Effect.perform (Match_re re)
let[@inline] fail msg =
let pos = Effect.perform Position in
raise (User_failure (pos, msg))
let[@inline] error e =
let pos = Effect.perform Position in
raise (User_error (pos, Obj.repr e))
let take_while ?(at_least = 0) ?label pred =
let s = Effect.perform (Take_while pred) in
if at_least > 0 && String.length s < at_least then begin
let pos = Effect.perform Position in
raise
(Parse_error (pos, match label with Some l -> l | None -> "take_while"))
end else
s
let[@inline] skip_while pred = Effect.perform (Skip_while pred)
let[@inline] skip_while_then_char pred c =
Effect.perform (Skip_while_then_char (pred, c))
let[@inline] sep_by_take ws_pred sep_char take_pred =
Effect.perform (Sep_by_take (ws_pred, sep_char, take_pred))
let[@inline] take_while_span pred = Effect.perform (Take_while_span pred)
let[@inline] sep_by_take_span ws_pred sep_char take_pred =
Effect.perform (Sep_by_take_span (ws_pred, sep_char, take_pred))
let[@inline] fused_sep_take ws_pred sep_char take_pred =
Effect.perform (Fused_sep_take (ws_pred, sep_char, take_pred))
let[@inline] warn diagnostic = Effect.perform (Warn diagnostic)
let[@inline] warn_at ~pos diagnostic = Effect.perform (Warn_at (pos, diagnostic))
let[@inline] position () = Effect.perform Position
let[@inline] location () = Effect.perform Location
let[@inline] end_of_input () = Effect.perform End_of_input
let[@inline] or_ p q () = Effect.perform (Choose (p, q))
let[@inline] look_ahead p = Effect.perform (Look_ahead p)
let[@inline] rec_ p = Effect.perform (Rec_ p)
let many ?(at_least = 0) (p : unit -> 'a) () : 'a list =
if at_least <= 0 then
Effect.perform (Greedy_many p)
else
let rec collect_required_rev acc n =
if n <= 0 then
acc
else
collect_required_rev (p () :: acc) (n - 1)
in
let required_rev = collect_required_rev [] at_least in
let rest = Effect.perform (Greedy_many p) in
List.rev_append required_rev rest
let sep_by ?(at_least = 0) (p : unit -> 'a) (sep : unit -> 'b) () : 'a list =
if at_least <= 0 then
or_
(fun () ->
let first = p () in
let rest =
many
(fun () ->
let _ = sep () in
p ()
)
()
in
first :: rest
)
(fun () -> [])
()
else
let first = p () in
let sep_then_p () =
let _ = sep () in
p ()
in
let rest = many ~at_least:(at_least - 1) sep_then_p () in
first :: rest
let between (open_ : unit -> 'a) (close_ : unit -> 'b) (p : unit -> 'c) () : 'c
=
let _ = open_ () in
let value = p () in
let _ = close_ () in
value
let end_by ?(at_least = 0) (p : unit -> 'a) (sep : unit -> 'b) () : 'a list =
many ~at_least
(fun () ->
let value = p () in
let _ = sep () in
value
)
()
let fold_left_one_or_more (p : unit -> 'a) (op : unit -> 'a -> 'a -> 'a) () : 'a
=
let first = p () in
let rest =
many
(fun () ->
let f = op () in
let rhs = p () in
(f, rhs)
)
()
in
List.fold_left (fun acc (f, rhs) -> f acc rhs) first rest
let fold_left (p : unit -> 'a) (op : unit -> 'a -> 'a -> 'a) ?otherwise () : 'a
=
match otherwise with
| None ->
fold_left_one_or_more p op ()
| Some d ->
or_ (fold_left_one_or_more p op) (fun () -> d) ()
let rec fold_right_one_or_more (p : unit -> 'a) (op : unit -> 'a -> 'a -> 'a) ()
: 'a =
let first = p () in
or_
(fun () ->
let f = op () in
let rhs = fold_right_one_or_more p op () in
f first rhs
)
(fun () -> first)
()
let fold_right (p : unit -> 'a) (op : unit -> 'a -> 'a -> 'a) ?otherwise () : 'a
=
match otherwise with
| None ->
fold_right_one_or_more p op ()
| Some d ->
or_ (fold_right_one_or_more p op) (fun () -> d) ()
let optional (p : unit -> 'a) () : 'a option =
or_ (fun () -> Some (p ())) (fun () -> None) ()
let count n (p : unit -> 'a) () : 'a list =
let rec loop acc i =
if i <= 0 then
List.rev acc
else
loop (p () :: acc) (i - 1)
in
loop [] n
let digit () =
let c = satisfy (fun c -> c >= '0' && c <= '9') ~label:"digit" in
Char.code c - Char.code '0'
let letter () =
satisfy
(fun c -> (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'))
~label:"letter"
let[@inline always] is_whitespace c =
c = ' ' || c = '\t' || c = '\n' || c = '\r'
let whitespace ?(at_least = 0) () =
take_while ~at_least ~label:"whitespace" is_whitespace
let[@inline] skip_whitespace () = skip_while is_whitespace
let alphanum () =
satisfy
(fun c ->
(c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9')
)
~label:"alphanumeric"
let any_char () = satisfy (fun _ -> true) ~label:"any character"
let take n =
if n < 0 then fail "take: count must be non-negative";
if n = 0 then
""
else
Effect.perform (Take n)
let expect msg p =
try p ()
with Parse_error _ | Unexpected_eof _ | Propagated_error _ ->
let pos = Effect.perform Position in
raise (Parse_error (pos, msg))
let catch p handler = try p () with User_failure (_pos, msg) -> handler msg
let one_of parsers () =
let rec try_all = function
| [] ->
let pos = Effect.perform Position in
raise (Parse_error (pos, "no alternative matched"))
| [ p ] ->
p ()
| p :: rest ->
or_ p (fun () -> try_all rest) ()
in
try_all parsers
let one_of_labeled labeled_parsers () =
let parsers = List.map snd labeled_parsers in
try one_of parsers ()
with Parse_error _ | Unexpected_eof _ | Propagated_error _ ->
let expected = String.concat ", " (List.map fst labeled_parsers) in
let pos = Effect.perform Position in
raise (Parse_error (pos, Printf.sprintf "expected one of: %s" expected))
let expect_int16 any_fn expected =
let actual = any_fn () in
if actual <> expected then
let pos = Effect.perform Position in
raise
(Parse_error
( pos,
Printf.sprintf "expected int16 0x%04X, got 0x%04X" expected actual
)
)
let expect_int32 any_fn expected =
let actual = any_fn () in
if actual <> expected then
let pos = Effect.perform Position in
raise
(Parse_error
( pos,
Printf.sprintf "expected int32 0x%08lX, got 0x%08lX" expected actual
)
)
let expect_int64 any_fn expected =
let actual = any_fn () in
if actual <> expected then
let pos = Effect.perform Position in
raise
(Parse_error
( pos,
Printf.sprintf "expected int64 0x%016LX, got 0x%016LX" expected
actual
)
)
module BE = struct
let[@inline] any_uint8 () = Effect.perform Any_uint8
let[@inline] any_int8 () = Effect.perform Any_int8
let[@inline] any_int16 () = Effect.perform (Any_int16 Big)
let[@inline] any_uint16 () =
let v = Effect.perform (Any_int16 Big) in
v land 0xFFFF
let[@inline] any_int32 () = Effect.perform (Any_int32 Big)
let[@inline] any_int64 () = Effect.perform (Any_int64 Big)
let[@inline] any_float () = Int32.float_of_bits (any_int32 ())
let[@inline] any_double () = Int64.float_of_bits (any_int64 ())
let int16 = expect_int16 any_int16
let int32 = expect_int32 any_int32
let int64 = expect_int64 any_int64
end
module LE = struct
let[@inline] any_uint8 () = Effect.perform Any_uint8
let[@inline] any_int8 () = Effect.perform Any_int8
let[@inline] any_int16 () = Effect.perform (Any_int16 Little)
let[@inline] any_uint16 () =
let v = Effect.perform (Any_int16 Little) in
v land 0xFFFF
let[@inline] any_int32 () = Effect.perform (Any_int32 Little)
let[@inline] any_int64 () = Effect.perform (Any_int64 Little)
let[@inline] any_float () = Int32.float_of_bits (any_int32 ())
let[@inline] any_double () = Int64.float_of_bits (any_int64 ())
let int16 = expect_int16 any_int16
let int32 = expect_int32 any_int32
let int64 = expect_int64 any_int64
end
module Utf8 = struct
let[@inline] satisfy pred ~label = Effect.perform (Satisfy_uchar (pred, label))
let[@inline] char u = satisfy (Uchar.equal u) ~label:(uchar_label u)
let[@inline] any_char () = satisfy (fun _ -> true) ~label:"any character"
let take_while ?(at_least = 0) ?label pred =
let s = Effect.perform (Take_while_uchar pred) in
if at_least > 0 then begin
let count = ref 0 in
let i = ref 0 in
let len = String.length s in
while !i < len do
let d = String.get_utf_8_uchar s !i in
i := !i + Uchar.utf_decode_length d;
incr count
done;
if !count < at_least then begin
let pos = Effect.perform Position in
raise
(Parse_error
(pos, match label with Some l -> l | None -> "take_while")
)
end else
s
end else
s
let[@inline] skip_while pred = Effect.perform (Skip_while_uchar pred)
let[@inline] take_while_span pred = Effect.perform (Take_while_span_uchar pred)
let[@inline] skip_while_then_char pred u =
Effect.perform (Skip_while_then_uchar (pred, u))
let[@inline] is_whitespace u = Uucp.White.is_white_space u
let letter () = satisfy Uucp.Alpha.is_alphabetic ~label:"letter"
let digit () =
let u =
satisfy
(fun u ->
let i = Uchar.to_int u in
i >= 0x30 && i <= 0x39
)
~label:"digit"
in
Uchar.to_int u - 0x30
let alphanum () =
satisfy
(fun u ->
Uucp.Alpha.is_alphabetic u
||
let i = Uchar.to_int u in
i >= 0x30 && i <= 0x39
)
~label:"alphanumeric"
let whitespace ?(at_least = 0) () =
take_while ~at_least ~label:"whitespace" Uucp.White.is_white_space
let skip_whitespace () = skip_while Uucp.White.is_white_space
end
let () =
Printexc.register_printer (function
| Effect.Unhandled e when is_parseff_effect e ->
Some
"Parseff: parser called outside of a parse context. Parser \
combinators can only be used inside a function passed to \
Parseff.parse, Parseff.parse_until_end, Parseff.parse_source, or \
Parseff.parse_source_until_end."
| _ ->
None
)