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
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
|
{-# LANGUAGE DeriveAnyClass #-}
{-# LANGUAGE DerivingStrategies #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE RankNTypes #-}
-- | Parsing over an already resolved physical source graph.
module Felix.Parse
( ParseException(..)
, ParseWorkspaceError(..)
, renderParseWorkspaceError
, renderSyntaxMaterializationError
, ParseExecutionError(..)
, ParsedArtifactIntegrityError(..)
, SyntaxDeclarationError(..)
, LexiconCollision
, LexiconCollisionOrigin(..)
, lexiconCollisionPattern
, lexiconCollisionOrigins
, lexiconCollisionDeclarations
, lexiconCollisionFirstDeclaration
, lexiconCollisionSecondDeclaration
, LexicalScanError(..)
, ParsedModuleImport
, parsedImportReference
, parsedImportedAddress
, FreshSourceBinding(..)
, FreshModuleInput
, FreshModuleInputError(..)
, ReservedModuleParseError(..)
, freshModuleInput
, freshModuleInputOwner
, freshModuleInputBinding
, freshModuleInputFileId
, freshModuleInputLocationPath
, freshModuleInputBytes
, freshModuleInputText
, freshModuleInputImports
, freshModuleInputSyntaxInterface
, identifyParsedModule
, parseReservedFreshModule
, parsePreparedTokenChunk
, IdentifiedParsedModule
, identifiedParsedModuleBlocks
, identifiedParsedModuleSyntaxInterface
, identifiedParsedModuleSourceContentId
, identifiedParsedModuleKey
, identifiedParsedModulePayload
, identifiedParsedModuleId
, identifiedParsedModuleSyntaxOccurrences
, ParsedModule
, parsedModuleLoaded
, parsedModuleIdentified
, parsedModuleResolved
, parsedModuleAddress
, parsedModuleImports
, parsedModuleBlocks
, parsedModuleSyntaxInterface
, parsedModuleSourceContentId
, parsedModuleKey
, parsedModulePayload
, parsedModuleId
, ParsedSyntaxOccurrence
, parsedSyntaxOccurrenceBlockIndex
, parsedSyntaxOccurrenceLocation
, parsedSyntaxOccurrenceMarker
, parsedSyntaxOccurrenceEntry
, parsedModuleSyntaxOccurrences
, ParsedSourceWorkspace
, parsedWorkspaceRoot
, parsedWorkspaceRootModule
, parsedWorkspaceModules
, parsedWorkspaceImportedBeforeImporter
, importedBeforeImporterBlocks
, parseSourceWorkspace
, ParseMeasurements
, parseMeasurementResolutionNanoseconds
, parseMeasurementTokenizationNanoseconds
, parseMeasurementScanningNanoseconds
, parseMeasurementSyntaxInterfaceNanoseconds
, parseMeasurementParsingNanoseconds
, parseMeasurementParsedHitCount
, parseMeasurementParsedMissCount
, parseMeasurementParserTableMaterializationCount
, parseMeasurementModuleCount
, parseMeasurementImportOccurrenceCount
, parseMeasurementChunkCount
, parseMeasurementSourceByteCount
, parseMeasurementCandidateProbeCount
, parseMeasurementCanonicalizationCount
, parseMeasurementTargetInspectionCount
, parseSourceWorkspaceMeasured
, parseSourceWorkspaceMeasuredWithSyntaxInputs
, parseSourceWorkspaceMeasuredWithSyntaxInputsAndGraphValidation
, parseSourceWorkspaceMeasuredWithStoreAndSyntaxInputs
, parseSourceWorkspaceMeasuredWithStoreAndSyntaxInputsAndGraphValidation
, parseSourceWorkspaceMeasuredWithStoreAndSyntaxInputsAndCallback
, parseSourceWorkspaceWith
, parseResolvedSourceGraph
, parseResolvedSourceGraphWith
) where
import Base
import Felix.Cache.Codec (CacheDecodeError)
import Felix.Parsed.Identity qualified as Parsed
import Felix.Parsed.Payload qualified as Parsed
import Felix.Module
import Felix.Source
import Felix.Source.Content qualified as Content
import Felix.Source.Graph
import Felix.Store qualified as Store
import Report.Location
import Syntax.Abstract qualified as Raw
import Syntax.Adapt
( LexicalScanError(..)
, ScannedLexicalItem
, SyntaxMaterializationError(..)
, canonicalScannedItem
, materializeSyntaxDelta
, scanChunk
, scannedItemMarker
)
import Syntax.Concrete (grammar)
import Syntax.Interface
import Syntax.Lexicon (Lexicon)
import Syntax.Pragma
import Syntax.Token
import Control.DeepSeq (NFData, force)
import Control.Exception (Exception, evaluate)
import Control.Monad (foldM, unless, when)
import Control.Monad.Trans.Except
( ExceptT(..)
, runExceptT
, throwE
, withExceptT
)
import Data.Bifunctor qualified as Bifunctor
import Data.List (intercalate)
import Data.List qualified as List
import Data.List.NonEmpty qualified as NonEmpty
import Data.Map.Strict qualified as Map
import Data.Set qualified as Set
import Data.ByteString (ByteString)
import Data.Text qualified as Text
import Data.Text.Encoding qualified as Text
import Text.Earley (Parser, Report(..), fullParses, parser)
import Text.Megaparsec (errorBundlePretty)
data ParseException
= UnconsumedTokens [Text] (NonEmpty (Located Token))
| AmbiguousParse [Raw.Block]
| EmptyParse
| TokenError String
| LexicalScanFailure !LexicalScanError
instance Show ParseException where
show = \case
UnconsumedTokens expectations (locatedToken :| locatedTokens) ->
let token = unLocated locatedToken
tokens = unLocated <$> locatedTokens
in
"unconsumed " <> describeToken token <> " at "
<> prettyLocation (startPos locatedToken) <> "\n"
<> " " <> unwords (tokToString <$> (token : take 4 tokens)) <> "\n"
<> " " <> replicate (length (tokToString token)) '^' <> "\n"
<> case expectations of
[] ->
"while expecting nothing"
_ ->
"while expecting one of the following:\n"
<> intercalate ", "
(Text.unpack <$> nubOrd expectations)
AmbiguousParse blocks ->
"ambiguous parse: " <> show blocks
EmptyParse ->
"empty parse"
TokenError err ->
err
LexicalScanFailure err ->
show err
instance Exception ParseException
data ParseWorkspaceError
= SourceWorkspaceError !SourceError
| SourceLexiconCollision !LexiconCollision
| SourceSyntaxPragmaError !ResolvedSource !SyntaxPragmaError
| SourceSyntaxDeclarationError
!ResolvedSource
!SyntaxDeclarationError
| SourceSyntaxMaterializationError
!SyntaxMaterializationError
| SourceParsedModuleKeyError
!ResolvedSource
!Parsed.ParsedModuleKeyError
| SourceParseError !ResolvedSource !ParseException
instance Exception ParseWorkspaceError
instance Show ParseWorkspaceError where
show = Text.unpack . renderParseWorkspaceError
renderParseWorkspaceError :: ParseWorkspaceError -> Text
renderParseWorkspaceError = \case
SourceWorkspaceError err ->
renderSourceError err
SourceLexiconCollision collision ->
Text.pack (show collision)
SourceSyntaxPragmaError source err ->
resolvedSourceLabel source <> ": " <> renderSyntaxPragmaError err
SourceSyntaxDeclarationError source err ->
resolvedSourceLabel source <> ": " <> Text.pack (show err)
SourceSyntaxMaterializationError err ->
renderSyntaxMaterializationError err
SourceParsedModuleKeyError source err ->
resolvedSourceLabel source
<> ": parsed module has duplicate direct syntax input "
<> case err of
Parsed.DuplicateParsedDirectSyntaxInput duplicate ->
Text.pack (show duplicate)
SourceParseError source err ->
resolvedSourceLabel source <> ": " <> Text.pack (show err)
data ParsedArtifactIntegrityError
= ParsedArtifactPayloadDecodeFailure !CacheDecodeError
| ParsedArtifactImportMismatch ![ImportRef] ![ImportRef]
| ParsedArtifactOccurrenceFailure !Text
| ParsedArtifactAssociationFailure !SyntaxDeclarationError
| ParsedArtifactSyntaxFailure !ParseWorkspaceError
| ParsedArtifactSyntaxInterfaceMismatch
!SyntaxInterfaceId !SyntaxInterfaceId
deriving stock (Show)
data ParseExecutionError
= ParseExecutionWorkspaceError !ParseWorkspaceError
| ParseExecutionStoreFailure !Store.StoreFailure
| ParseExecutionArtifactIntegrityFailure
!ResolvedSource
!ParsedArtifactIntegrityError
deriving stock (Show)
renderSyntaxMaterializationError :: SyntaxMaterializationError -> Text
renderSyntaxMaterializationError = \case
MaterializedSyntaxCollision collision ->
"effective syntax has conflicting entries for pattern "
<> Text.pack (show (canonicalCollisionPattern collision))
<> ": "
<> Text.pack
(show (toList (canonicalCollisionEntries collision)))
PrefixPredicateArityOutOfRange arity ->
"prefix predicate arity is outside the supported range: "
<> Text.pack (show arity)
resolvedSourceLabel :: ResolvedSource -> Text
resolvedSourceLabel source =
sourceMountIdText (resolvedSourceMount source)
<> ":"
<> Text.pack
(safeRelativePathFilePath
(resolvedSourceRelativePath source))
data SyntaxDeclarationError
= SyntaxPragmaOutsideDeclaration !Location
| DuplicateSyntaxPragma !Location !Location
| IrrelevantSyntaxPragma !Location !Location
| MissingSyntaxPragma !Location !Raw.Pattern
| AmbiguousSyntaxPragmaTarget
!Location
!(NonEmpty Raw.Pattern)
| MultipleNewSyntaxPatternsWithoutPragma
!Location
!(NonEmpty Raw.Pattern)
| SyntaxPragmaOnFixedReuse !Location !Raw.Pattern
| SyntaxPragmaOnImportedReuse !Location !Raw.Pattern
| SyntaxOccurrenceMarkerMismatch
!Location
!Raw.Marker
!Raw.Marker
| SyntaxOccurrenceMissingBlockMarker
!Location
!Raw.Marker
deriving stock (Eq)
instance Show SyntaxDeclarationError where
show = \case
SyntaxPragmaOutsideDeclaration location ->
"syntax pragma at "
<> prettyLocation location
<> " is outside a syntax-producing declaration"
DuplicateSyntaxPragma first second ->
"duplicate syntax pragma at "
<> prettyLocation second
<> "; the first pragma is at "
<> prettyLocation first
IrrelevantSyntaxPragma pragma declaration ->
"syntax pragma at "
<> prettyLocation pragma
<> " does not apply to the declaration at "
<> prettyLocation declaration
MissingSyntaxPragma location pat ->
"expression pattern "
<> show pat
<> " at "
<> prettyLocation location
<> " requires a syntax pragma"
AmbiguousSyntaxPragmaTarget location patterns ->
"syntax pragma at "
<> prettyLocation location
<> " has several eligible patterns: "
<> intercalate ", " (show <$> toList patterns)
MultipleNewSyntaxPatternsWithoutPragma location patterns ->
"syntax declaration at "
<> prettyLocation location
<> " has several new eligible patterns that V1 cannot select between: "
<> intercalate ", " (show <$> toList patterns)
<> "; make the declaration unambiguous"
SyntaxPragmaOnFixedReuse location pat ->
"syntax pragma at "
<> prettyLocation location
<> " cannot override fixed-base pattern "
<> show pat
SyntaxPragmaOnImportedReuse location pat ->
"syntax pragma at "
<> prettyLocation location
<> " cannot override imported pattern "
<> show pat
SyntaxOccurrenceMarkerMismatch
location
scannerMarker
actual ->
"syntax declaration at "
<> prettyLocation location
<> " has scanner marker "
<> show scannerMarker
<> " but parsed block marker "
<> show actual
SyntaxOccurrenceMissingBlockMarker location scannerMarker ->
"syntax declaration at "
<> prettyLocation location
<> " with scanner marker "
<> show scannerMarker
<> " is associated with a block without a marker"
data LexiconCollisionOrigin
= FixedLexiconOrigin !CanonicalLexicalEntry
| ImportedLexiconOrigin
!CanonicalLexicalEntry
!SyntaxInterfaceId
| SourceLexiconOrigin
!CanonicalLexicalEntry
!ResolvedSource
!Location
| ReservedLexiconOrigin
!CanonicalLexicalEntry
!FilePath
!Location
deriving stock (Show, Eq, Ord)
data LexiconCollision = LexiconCollision
!Raw.Pattern
!LexiconCollisionOrigin
!LexiconCollisionOrigin
![LexiconCollisionOrigin]
deriving stock (Eq)
lexiconCollisionPattern :: LexiconCollision -> Raw.Pattern
lexiconCollisionPattern
(LexiconCollision pat _first _second _rest) =
pat
lexiconCollisionOrigins
:: LexiconCollision
-> NonEmpty LexiconCollisionOrigin
lexiconCollisionOrigins
(LexiconCollision _pat first second rest) =
first :| (second : rest)
lexiconCollisionDeclarations :: LexiconCollision -> [Location]
lexiconCollisionDeclarations collision =
[ location
| Just location <-
originLocation
<$> toList
(lexiconCollisionOrigins collision)
]
lexiconCollisionFirstDeclaration
:: LexiconCollision
-> Maybe Location
lexiconCollisionFirstDeclaration =
listToMaybe . lexiconCollisionDeclarations
lexiconCollisionSecondDeclaration
:: LexiconCollision
-> Maybe Location
lexiconCollisionSecondDeclaration collision =
listToMaybe
(drop 1 (lexiconCollisionDeclarations collision))
originLocation :: LexiconCollisionOrigin -> Maybe Location
originLocation = \case
FixedLexiconOrigin _entry ->
Nothing
ImportedLexiconOrigin _entry _interface ->
Nothing
SourceLexiconOrigin _entry _source location ->
Just location
ReservedLexiconOrigin _entry _label location ->
Just location
instance Show LexiconCollision where
show collision =
"lexical pattern "
<> show (lexiconCollisionPattern collision)
<> " has conflicting providers:\n"
<> unlines
[ " " <> renderOrigin origin
| origin <- toList (lexiconCollisionOrigins collision)
]
where
origins =
toList (lexiconCollisionOrigins collision)
renderOrigin = \case
FixedLexiconOrigin entry ->
"fixed base entry " <> show entry
ImportedLexiconOrigin entry interface ->
"implicit syntax interface "
<> show interface
<> " provides "
<> show entry
SourceLexiconOrigin entry source location ->
"source declaration at "
<> renderSourceLocation origins source location
<> " provides "
<> show entry
ReservedLexiconOrigin entry label location ->
"reserved declaration at "
<> prettyLocation location
<> " ("
<> show label
<> ") provides "
<> show entry
renderSourceLocation
:: [LexiconCollisionOrigin]
-> ResolvedSource
-> Location
-> String
renderSourceLocation origins source location
| any sameDisplayDifferentSource origins =
prettyLocation location
<> " (canonical "
<> show
(canonicalPathFilePath
(resolvedSourceCanonicalPath source))
<> ")"
| otherwise =
prettyLocation location
where
sameDisplayDifferentSource = \case
FixedLexiconOrigin _entry ->
False
ImportedLexiconOrigin _entry _interface ->
False
SourceLexiconOrigin _entry other otherLocation ->
locFile otherLocation == locFile location
&& resolvedSourceCanonicalPath other
/= resolvedSourceCanonicalPath source
ReservedLexiconOrigin{} ->
False
data ParsedModuleImport = ParsedModuleImport
!ImportRef
!ResolvedSourceAddress
deriving stock (Show, Eq, Generic)
deriving anyclass (NFData)
parsedImportReference :: ParsedModuleImport -> ImportRef
parsedImportReference (ParsedModuleImport reference _imported) =
reference
parsedImportedAddress :: ParsedModuleImport -> ResolvedSourceAddress
parsedImportedAddress (ParsedModuleImport _reference imported) =
imported
data FreshSourceBinding
= FreshPhysicalSource !ResolvedSource
| FreshReservedSource
deriving stock (Show, Eq)
data FreshModuleInput = FreshModuleInput
!ModuleName
!FreshSourceBinding
!FileId
!FilePath
!ByteString
!Text
![ImportRef]
!ModuleSyntaxInterface
data FreshModuleInputError
= FreshModuleTextDoesNotMatchBytes
| FreshPhysicalOwnerMismatch !ModuleName !ModuleName
| FreshPhysicalLocationPathMismatch !FilePath !FilePath
deriving stock (Show, Eq)
data ReservedModuleParseError
= ReservedModuleSyntaxPragmaError !SyntaxPragmaError
| ReservedModuleImportError ![FilePath]
| ReservedModuleLexicalScanError !LexicalScanError
| ReservedModuleSyntaxDeclarationError !SyntaxDeclarationError
| ReservedModuleLexiconCollision !LexiconCollision
| ReservedModuleSyntaxInterfaceError !SyntaxInterfaceError
| ReservedModuleSyntaxMaterializationError !SyntaxMaterializationError
| ReservedModuleParseException !ParseException
| ReservedModuleFreshInputError !FreshModuleInputError
| ReservedModuleParsedKeyError !Parsed.ParsedModuleKeyError
| ReservedModuleInvariantError !Text
deriving stock (Show)
freshModuleInput
:: ModuleName
-> FreshSourceBinding
-> FileId
-> FilePath
-> ByteString
-> Text
-> [ImportRef]
-> ModuleSyntaxInterface
-> Either FreshModuleInputError FreshModuleInput
freshModuleInput owner binding fileId locationPath bytes sourceText imports syntax
| Text.encodeUtf8 sourceText /= bytes =
Left FreshModuleTextDoesNotMatchBytes
| Just expectedOwner <- physicalOwner
, expectedOwner /= owner =
Left (FreshPhysicalOwnerMismatch expectedOwner owner)
| Just expectedPath <- physicalLocationPath
, expectedPath /= locationPath =
Left
(FreshPhysicalLocationPathMismatch
expectedPath
locationPath)
| otherwise =
Right
(FreshModuleInput
owner
binding
fileId
locationPath
bytes
sourceText
imports
syntax)
where
physicalOwner = case binding of
FreshPhysicalSource source ->
Just (moduleName (resolvedSourceAddress source))
FreshReservedSource ->
Nothing
physicalLocationPath = case binding of
FreshPhysicalSource source ->
Just (resolvedSourceLocationPath source)
FreshReservedSource ->
Nothing
freshModuleInputOwner :: FreshModuleInput -> ModuleName
freshModuleInputOwner
(FreshModuleInput owner _binding _fileId _locationPath _bytes _text
_imports _syntax) =
owner
freshModuleInputBinding
:: FreshModuleInput
-> FreshSourceBinding
freshModuleInputBinding
(FreshModuleInput _owner binding _fileId _locationPath _bytes _text
_imports _syntax) =
binding
freshModuleInputFileId :: FreshModuleInput -> FileId
freshModuleInputFileId
(FreshModuleInput _owner _binding fileId _locationPath _bytes _text
_imports _syntax) =
fileId
freshModuleInputLocationPath :: FreshModuleInput -> FilePath
freshModuleInputLocationPath
(FreshModuleInput _owner _binding _fileId locationPath _bytes _text
_imports _syntax) =
locationPath
freshModuleInputBytes :: FreshModuleInput -> ByteString
freshModuleInputBytes
(FreshModuleInput _owner _binding _fileId _locationPath bytes _text
_imports _syntax) =
bytes
freshModuleInputText :: FreshModuleInput -> Text
freshModuleInputText
(FreshModuleInput _owner _binding _fileId _locationPath _bytes sourceText
_imports _syntax) =
sourceText
freshModuleInputImports :: FreshModuleInput -> [ImportRef]
freshModuleInputImports
(FreshModuleInput _owner _binding _fileId _locationPath _bytes _text
imports _syntax) =
imports
freshModuleInputSyntaxInterface
:: FreshModuleInput
-> ModuleSyntaxInterface
freshModuleInputSyntaxInterface
(FreshModuleInput _owner _binding _fileId _locationPath _bytes _text
_imports syntax) =
syntax
data IdentifiedParsedModule = IdentifiedParsedModule
![Raw.Block]
!ModuleSyntaxInterface
![ParsedSyntaxOccurrence]
!Content.SourceContentId
!Parsed.ParsedModuleKey
!Parsed.CanonicalParsedPayload
!Parsed.ParsedModuleId
deriving stock (Show, Generic)
deriving anyclass (NFData)
identifiedParsedModuleBlocks :: IdentifiedParsedModule -> [Raw.Block]
identifiedParsedModuleBlocks
(IdentifiedParsedModule blocks _interface _occurrences
_content _key _payload _identity) =
blocks
identifiedParsedModuleSyntaxInterface
:: IdentifiedParsedModule
-> ModuleSyntaxInterface
identifiedParsedModuleSyntaxInterface
(IdentifiedParsedModule _blocks interface _occurrences
_content _key _payload _identity) =
interface
identifiedParsedModuleSourceContentId
:: IdentifiedParsedModule
-> Content.SourceContentId
identifiedParsedModuleSourceContentId
(IdentifiedParsedModule _blocks _interface _occurrences
content _key _payload _identity) =
content
identifiedParsedModuleKey
:: IdentifiedParsedModule
-> Parsed.ParsedModuleKey
identifiedParsedModuleKey
(IdentifiedParsedModule _blocks _interface _occurrences
_content key _payload _identity) =
key
identifiedParsedModulePayload
:: IdentifiedParsedModule
-> Parsed.CanonicalParsedPayload
identifiedParsedModulePayload
(IdentifiedParsedModule _blocks _interface _occurrences
_content _key payload _identity) =
payload
identifiedParsedModuleId
:: IdentifiedParsedModule
-> Parsed.ParsedModuleId
identifiedParsedModuleId
(IdentifiedParsedModule _blocks _interface _occurrences
_content _key _payload identity) =
identity
identifiedParsedModuleSyntaxOccurrences
:: IdentifiedParsedModule
-> [ParsedSyntaxOccurrence]
identifiedParsedModuleSyntaxOccurrences
(IdentifiedParsedModule _blocks _interface occurrences
_content _key _payload _identity) =
occurrences
identifyParsedModule
:: FreshModuleInput
-> [Raw.Block]
-> [ParsedSyntaxOccurrence]
-> Either Parsed.ParsedModuleKeyError IdentifiedParsedModule
identifyParsedModule input blocks occurrences = do
key <-
Parsed.parsedModuleKey
sourceContent
(moduleSyntaxBase syntax)
(moduleSyntaxDirectInputs syntax)
let payload =
Parsed.canonicalParsedPayload
(freshModuleInputImports input)
blocks
[ ( parsedSyntaxOccurrenceBlockIndex occurrence
, parsedSyntaxOccurrenceLocation occurrence
, parsedSyntaxOccurrenceMarker occurrence
, parsedSyntaxOccurrenceEntry occurrence
)
| occurrence <- occurrences
]
(moduleSyntaxAssertedId syntax)
identity =
Parsed.parsedModuleId
key
(Parsed.canonicalParsedPayloadBytes payload)
pure
(IdentifiedParsedModule
blocks
syntax
occurrences
sourceContent
key
payload
identity)
where
sourceContent =
Content.sourceContentIdBytes
(freshModuleInputBytes input)
syntax = freshModuleInputSyntaxInterface input
-- | Parse one reserved, import-free module through the ordinary fresh-source
-- scanner, syntax, grammar, and occurrence-association stages.
parseReservedFreshModule
:: ModuleName
-> FileId
-> FilePath
-> ByteString
-> Text
-> Either
ReservedModuleParseError
(FreshModuleInput, IdentifiedParsedModule)
parseReservedFreshModule owner fileId label bytes sourceText = do
pragmas <-
Bifunctor.first ReservedModuleSyntaxPragmaError
(extractSyntaxPragmas fileId label sourceText)
(imports, tokenChunks) <-
Bifunctor.first
(ReservedModuleParseException
. TokenError
. errorBundlePretty)
(runLexer fileId label sourceText)
unless (null imports)
(Left (ReservedModuleImportError imports))
associated <-
Bifunctor.first ReservedModuleSyntaxDeclarationError
(associateSyntaxPragmas tokenChunks pragmas)
chunks <- traverse scanReservedChunk (zip tokenChunks associated)
(localEntries, preparedOccurrences) <-
Bifunctor.first reservedLocalSyntaxError
(prepareLocalSyntax
0
(ReservedSyntaxSite label)
Map.empty
chunks)
delta <-
Bifunctor.first reservedLocalSyntaxError
(validateSyntaxInventory localEntries)
syntax <-
Bifunctor.first ReservedModuleSyntaxInterfaceError
(moduleSyntaxInterface [] delta)
lexicon <-
Bifunctor.first ReservedModuleSyntaxMaterializationError
(materializeSyntaxDelta delta)
input <-
Bifunctor.first ReservedModuleFreshInputError
(freshModuleInput
owner
FreshReservedSource
fileId
label
bytes
sourceText
[]
syntax)
let moduleParser
:: Parser Text [Located Token] Raw.Block
moduleParser = parser (grammar lexicon)
(blocks, occurrences) <-
parseReservedChunks moduleParser chunks preparedOccurrences
identified <-
Bifunctor.first ReservedModuleParsedKeyError
(identifyParsedModule input blocks occurrences)
pure (input, identified)
where
scanReservedChunk (tokens, chunkPragmas) = do
declarations <-
Bifunctor.first ReservedModuleLexicalScanError
(scanChunk tokens)
pure (ScannedChunk tokens chunkPragmas declarations)
reservedLocalSyntaxError = \case
LocalSyntaxDeclarationError failure ->
ReservedModuleSyntaxDeclarationError failure
LocalSyntaxCollision collision ->
ReservedModuleLexiconCollision collision
parseReservedChunks
:: Parser Text [Located Token] Raw.Block
-> [ScannedChunk]
-> [[PreparedSyntaxOccurrence]]
-> Either
ReservedModuleParseError
([Raw.Block], [ParsedSyntaxOccurrence])
parseReservedChunks moduleParser chunks occurrences
| length chunks /= length occurrences =
Left
(ReservedModuleInvariantError
"reserved syntax occurrence groups do not match source chunks")
| otherwise = do
parsed <- traverse
(parseReservedChunk moduleParser)
(zip3 [0 ..] chunks occurrences)
pure
( fst <$> parsed
, concatMap snd parsed
)
parseReservedChunk
:: Parser Text [Located Token] Raw.Block
-> (Int, ScannedChunk, [PreparedSyntaxOccurrence])
-> Either
ReservedModuleParseError
(Raw.Block, [ParsedSyntaxOccurrence])
parseReservedChunk moduleParser
(blockIndex, ScannedChunk tokens _pragmas _items, prepared) = do
block <-
Bifunctor.first ReservedModuleParseException
(parsePreparedTokenChunk moduleParser tokens)
Bifunctor.first reservedAssociationError
(validateOccurrenceAssociation
(ReservedSyntaxSite label)
blockIndex
block
prepared)
pure
( block
, [ ParsedSyntaxOccurrence
blockIndex
(syntaxSiteLocation (preparedSyntaxSite occurrence))
(syntaxSiteMarker (preparedSyntaxSite occurrence))
(preparedSyntaxEntry occurrence)
| occurrence <- prepared
]
)
reservedAssociationError = \case
OccurrenceAssociationDeclarationError failure ->
ReservedModuleSyntaxDeclarationError failure
OccurrenceAssociationInvariantError message ->
ReservedModuleInvariantError message
data ParsedModule = ParsedModule
!LoadedSource
![ParsedModuleImport]
!IdentifiedParsedModule
deriving stock (Show, Generic)
deriving anyclass (NFData)
parsedModuleLoaded :: ParsedModule -> LoadedSource
parsedModuleLoaded (ParsedModule loaded _imports _identified) =
loaded
parsedModuleIdentified :: ParsedModule -> IdentifiedParsedModule
parsedModuleIdentified (ParsedModule _loaded _imports identified) =
identified
parsedModuleResolved :: ParsedModule -> ResolvedSource
parsedModuleResolved = loadedSource . parsedModuleLoaded
parsedModuleAddress :: ParsedModule -> ResolvedSourceAddress
parsedModuleAddress = resolvedSourceAddress . parsedModuleResolved
parsedModuleImports :: ParsedModule -> [ParsedModuleImport]
parsedModuleImports (ParsedModule _loaded imports _identified) =
imports
parsedModuleBlocks :: ParsedModule -> [Raw.Block]
parsedModuleBlocks (ParsedModule _loaded _imports identified) =
identifiedParsedModuleBlocks identified
parsedModuleSyntaxInterface
:: ParsedModule
-> ModuleSyntaxInterface
parsedModuleSyntaxInterface (ParsedModule _loaded _imports identified) =
identifiedParsedModuleSyntaxInterface identified
parsedModuleSourceContentId
:: ParsedModule
-> Content.SourceContentId
parsedModuleSourceContentId (ParsedModule _loaded _imports identified) =
identifiedParsedModuleSourceContentId identified
parsedModuleKey :: ParsedModule -> Parsed.ParsedModuleKey
parsedModuleKey (ParsedModule _loaded _imports identified) =
identifiedParsedModuleKey identified
parsedModulePayload
:: ParsedModule
-> Parsed.CanonicalParsedPayload
parsedModulePayload (ParsedModule _loaded _imports identified) =
identifiedParsedModulePayload identified
parsedModuleId :: ParsedModule -> Parsed.ParsedModuleId
parsedModuleId (ParsedModule _loaded _imports identified) =
identifiedParsedModuleId identified
data ParsedSyntaxOccurrence = ParsedSyntaxOccurrence
!Int
!Location
!Raw.Marker
!CanonicalLexicalEntry
deriving stock (Show, Eq, Generic)
deriving anyclass (NFData)
parsedSyntaxOccurrenceBlockIndex
:: ParsedSyntaxOccurrence
-> Int
parsedSyntaxOccurrenceBlockIndex
(ParsedSyntaxOccurrence blockIndex _location _marker _entry) =
blockIndex
parsedSyntaxOccurrenceLocation
:: ParsedSyntaxOccurrence
-> Location
parsedSyntaxOccurrenceLocation
(ParsedSyntaxOccurrence _blockIndex location _marker _entry) =
location
parsedSyntaxOccurrenceMarker
:: ParsedSyntaxOccurrence
-> Raw.Marker
parsedSyntaxOccurrenceMarker
(ParsedSyntaxOccurrence _blockIndex _location marker _entry) =
marker
parsedSyntaxOccurrenceEntry
:: ParsedSyntaxOccurrence
-> CanonicalLexicalEntry
parsedSyntaxOccurrenceEntry
(ParsedSyntaxOccurrence _blockIndex _location _marker entry) =
entry
parsedModuleSyntaxOccurrences
:: ParsedModule
-> [ParsedSyntaxOccurrence]
parsedModuleSyntaxOccurrences (ParsedModule _loaded _imports identified) =
identifiedParsedModuleSyntaxOccurrences identified
data ParsedSourceWorkspace = ParsedSourceWorkspace
!(NonEmpty ParsedModule)
deriving stock (Show)
parsedWorkspaceRoot :: ParsedSourceWorkspace -> ResolvedSource
parsedWorkspaceRoot = parsedModuleResolved . parsedWorkspaceRootModule
parsedWorkspaceRootModule :: ParsedSourceWorkspace -> ParsedModule
parsedWorkspaceRootModule (ParsedSourceWorkspace modules) =
NonEmpty.last modules
parsedWorkspaceModules :: ParsedSourceWorkspace -> [ParsedModule]
parsedWorkspaceModules (ParsedSourceWorkspace modules) =
NonEmpty.toList modules
parsedWorkspaceImportedBeforeImporter
:: ParsedSourceWorkspace
-> NonEmpty ParsedModule
parsedWorkspaceImportedBeforeImporter
(ParsedSourceWorkspace modules) =
modules
-- | Flatten source-local blocks in deterministic imported-before-importer
-- order.
importedBeforeImporterBlocks :: ParsedSourceWorkspace -> [Raw.Block]
importedBeforeImporterBlocks =
concatMap parsedModuleBlocks . parsedWorkspaceImportedBeforeImporter
data TokenizedModule = TokenizedModule
!SourceNode
![ParsedModuleImport]
![SyntaxPragma]
![[Located Token]]
data ScannedChunk = ScannedChunk
![Located Token]
![SyntaxPragma]
![Located ScannedLexicalItem]
data ScannedModule = ScannedModule
!SourceNode
![ParsedModuleImport]
![ScannedChunk]
data SyntaxSiteSource
= PhysicalSyntaxSite !ResolvedSource
| ReservedSyntaxSite !FilePath
deriving stock (Show, Eq, Ord)
data SyntaxDeclarationSite = SyntaxDeclarationSite
{ syntaxSiteModuleIndex :: !Int
, syntaxSiteBlockIndex :: !Int
, syntaxSiteItemIndex :: !Int
, syntaxSiteSource :: !SyntaxSiteSource
, syntaxSiteLocation :: !Location
, syntaxSiteMarker :: !Raw.Marker
}
deriving stock (Show, Eq, Ord)
data SyntaxEntryProvider
= DeclarationSyntaxProvider !SyntaxDeclarationSite
| ImplicitSyntaxProvider !SyntaxInterfaceId
deriving stock (Show, Eq, Ord)
type SyntaxEntryInventory =
Map CanonicalLexicalEntry (Set SyntaxEntryProvider)
data LocalSyntaxError
= LocalSyntaxDeclarationError !SyntaxDeclarationError
| LocalSyntaxCollision !LexiconCollision
localSyntaxWorkspaceError
:: ResolvedSource
-> LocalSyntaxError
-> ParseWorkspaceError
localSyntaxWorkspaceError source = \case
LocalSyntaxDeclarationError failure ->
SourceSyntaxDeclarationError source failure
LocalSyntaxCollision collision ->
SourceLexiconCollision collision
localSyntaxCollisionWorkspaceError
:: LocalSyntaxError
-> ParseWorkspaceError
localSyntaxCollisionWorkspaceError = \case
LocalSyntaxCollision collision ->
SourceLexiconCollision collision
LocalSyntaxDeclarationError{} ->
impossible
"canonical syntax validation produced a declaration error"
data OccurrenceAssociationError
= OccurrenceAssociationDeclarationError !SyntaxDeclarationError
| OccurrenceAssociationInvariantError !Text
occurrenceWorkspaceError
:: ResolvedSource
-> OccurrenceAssociationError
-> ParseWorkspaceError
occurrenceWorkspaceError source = \case
OccurrenceAssociationDeclarationError failure ->
SourceSyntaxDeclarationError source failure
OccurrenceAssociationInvariantError message ->
SourceWorkspaceError (SourceGraphInvariantViolation message)
data PreparedSyntaxOccurrence = PreparedSyntaxOccurrence
{ preparedSyntaxSite :: !SyntaxDeclarationSite
, preparedSyntaxEntry :: !CanonicalLexicalEntry
}
data SyntaxItemDisposition
= EmitSyntaxEntry !CanonicalLexicalEntry
| ReuseFixedSyntax !CanonicalLexicalEntry
| ReuseImportedSyntax !CanonicalLexicalEntry
data ClassifiedSyntaxItem = ClassifiedSyntaxItem
!SyntaxDeclarationSite
!SyntaxItemDisposition
!Bool
data PreparedSyntaxModule = PreparedSyntaxModule
{ preparedAddress :: !ResolvedSourceAddress
, preparedInterface :: !ModuleSyntaxInterface
, preparedSyntaxDirectAddresses :: ![ResolvedSourceAddress]
, preparedLocalEntries :: !SyntaxEntryInventory
}
data FreshRuntimeSyntax = FreshRuntimeSyntax
{ freshRuntimePrepared :: !PreparedSyntaxModule
, freshRuntimeLexicon :: !Lexicon
, freshRuntimeOccurrences :: ![[PreparedSyntaxOccurrence]]
}
data ModuleSyntaxContext = ModuleSyntaxContext
{ syntaxContextDirectIds :: ![SyntaxInterfaceId]
, syntaxContextDirectAddresses :: ![ResolvedSourceAddress]
, syntaxContextImportedEntries :: !SyntaxEntryInventory
}
-- | Invocation-local parser work. A module is one strictly read source file.
data ParseMeasurements = ParseMeasurements
{ parseMeasurementResolutionNanoseconds :: !Word64
, parseMeasurementTokenizationNanoseconds :: !Word64
, parseMeasurementScanningNanoseconds :: !Word64
, parseMeasurementSyntaxInterfaceNanoseconds :: !Word64
, parseMeasurementParsingNanoseconds :: !Word64
, parseMeasurementParsedHitCount :: !Int
, parseMeasurementParsedMissCount :: !Int
, parseMeasurementParserTableMaterializationCount :: !Int
, parseMeasurementModuleCount :: !Int
, parseMeasurementImportOccurrenceCount :: !Int
, parseMeasurementChunkCount :: !Int
, parseMeasurementSourceByteCount :: !Word64
, parseMeasurementCandidateProbeCount :: !Int
, parseMeasurementCanonicalizationCount :: !Int
, parseMeasurementTargetInspectionCount :: !Int
}
deriving stock (Show, Eq)
-- | Resolve, strictly load, and parse one source closure without callbacks.
--
-- Mounts and the root request are explicit. Resolution, loading, and location
-- registration perform filesystem and process-local registry I/O. This entry
-- point does not initialize checking, provers, logging, or rendering.
parseSourceWorkspace
:: SourceMounts
-> RootRequest
-> IO (Either ParseWorkspaceError ParsedSourceWorkspace)
parseSourceWorkspace mounts request =
parseSourceWorkspaceWith mounts request (\_source _block -> pure ())
parseSourceWorkspaceMeasured
:: SourceMounts
-> RootRequest
-> IO
(Either
ParseWorkspaceError
(ParsedSourceWorkspace, ParseMeasurements))
parseSourceWorkspaceMeasured mounts request =
parseSourceWorkspaceMeasuredWithSyntaxInputsAndCallback
mounts
request
(const [])
(\_source _block -> pure ())
parseSourceWorkspaceMeasuredWithSyntaxInputs
:: SourceMounts
-> RootRequest
-> (ResolvedSource -> [ModuleSyntaxInterface])
-> IO
(Either
ParseWorkspaceError
(ParsedSourceWorkspace, ParseMeasurements))
-- Implicit syntax inputs must be self-contained module interfaces.
parseSourceWorkspaceMeasuredWithSyntaxInputs mounts request syntaxInputs =
parseSourceWorkspaceMeasuredWithSyntaxInputsAndGraphValidation
mounts
request
syntaxInputs
(const (Right ()))
parseSourceWorkspaceMeasuredWithSyntaxInputsAndGraphValidation
:: SourceMounts
-> RootRequest
-> (ResolvedSource -> [ModuleSyntaxInterface])
-> (ResolvedSourceGraph -> Either SourceError ())
-> IO
(Either
ParseWorkspaceError
(ParsedSourceWorkspace, ParseMeasurements))
parseSourceWorkspaceMeasuredWithSyntaxInputsAndGraphValidation
mounts request syntaxInputs validateGraph =
parseSourceWorkspaceMeasuredWithSyntaxInputsAndGraphValidationAndCallback
mounts
request
syntaxInputs
validateGraph
(\_source _block -> pure ())
parseSourceWorkspaceMeasuredWithStoreAndSyntaxInputs
:: Store.Store
-> SourceMounts
-> RootRequest
-> (ResolvedSource -> [ModuleSyntaxInterface])
-> IO
(Either
ParseExecutionError
(ParsedSourceWorkspace, ParseMeasurements))
parseSourceWorkspaceMeasuredWithStoreAndSyntaxInputs
store mounts request syntaxInputs =
parseSourceWorkspaceMeasuredWithStoreAndSyntaxInputsAndGraphValidation
store mounts request syntaxInputs (const (Right ()))
parseSourceWorkspaceMeasuredWithStoreAndSyntaxInputsAndGraphValidation
:: Store.Store
-> SourceMounts
-> RootRequest
-> (ResolvedSource -> [ModuleSyntaxInterface])
-> (ResolvedSourceGraph -> Either SourceError ())
-> IO
(Either
ParseExecutionError
(ParsedSourceWorkspace, ParseMeasurements))
parseSourceWorkspaceMeasuredWithStoreAndSyntaxInputsAndGraphValidation
store mounts request syntaxInputs validateGraph =
parseSourceWorkspaceMeasuredWithStoreAndSyntaxInputsAndGraphValidationAndCallback
store mounts request syntaxInputs validateGraph
(\_source _block -> pure ())
parseSourceWorkspaceMeasuredWithStoreAndSyntaxInputsAndCallback
:: Store.Store
-> SourceMounts
-> RootRequest
-> (ResolvedSource -> [ModuleSyntaxInterface])
-> (ResolvedSource -> Raw.Block -> IO ())
-> IO
(Either
ParseExecutionError
(ParsedSourceWorkspace, ParseMeasurements))
parseSourceWorkspaceMeasuredWithStoreAndSyntaxInputsAndCallback
store mounts request syntaxInputs emitBlock = do
parseSourceWorkspaceMeasuredWithStoreAndSyntaxInputsAndGraphValidationAndCallback
store mounts request syntaxInputs (const (Right ())) emitBlock
parseSourceWorkspaceMeasuredWithStoreAndSyntaxInputsAndGraphValidationAndCallback
:: Store.Store
-> SourceMounts
-> RootRequest
-> (ResolvedSource -> [ModuleSyntaxInterface])
-> (ResolvedSourceGraph -> Either SourceError ())
-> (ResolvedSource -> Raw.Block -> IO ())
-> IO
(Either
ParseExecutionError
(ParsedSourceWorkspace, ParseMeasurements))
parseSourceWorkspaceMeasuredWithStoreAndSyntaxInputsAndGraphValidationAndCallback
store mounts request syntaxInputs validateGraph emitBlock = do
resolutionStart <- getMonotonicTimeNSec
graphResult <- buildResolvedSourceGraphMeasured mounts request
resolutionEnd <- getMonotonicTimeNSec
case graphResult of
Left err ->
pure
(Left
(ParseExecutionWorkspaceError
(SourceWorkspaceError err)))
Right (graph, selectionMeasurements) ->
case validateGraph graph of
Left err ->
pure
(Left
(ParseExecutionWorkspaceError
(SourceWorkspaceError err)))
Right () ->
fmap
(fmap
(\(workspace, measurements) ->
( workspace
, withResolutionMeasurements
measurements
(resolutionEnd - resolutionStart)
selectionMeasurements
)))
(parseResolvedSourceGraphMeasuredWithArtifacts
(PersistentParsedArtifacts store)
graph
syntaxInputs
emitBlock)
-- | Resolve, strictly load, and parse one source closure with a block
-- callback.
--
-- The callback may perform arbitrary I/O. It runs in deterministic source and
-- chunk order, and callbacks for earlier blocks may have completed when a
-- later parse fails. Callback exceptions propagate to the caller.
parseSourceWorkspaceWith
:: SourceMounts
-> RootRequest
-> (ResolvedSource -> Raw.Block -> IO ())
-> IO (Either ParseWorkspaceError ParsedSourceWorkspace)
parseSourceWorkspaceWith mounts request emitBlock = do
fmap (fmap fst)
(parseSourceWorkspaceMeasuredWith
mounts
request
emitBlock)
parseSourceWorkspaceMeasuredWith
:: SourceMounts
-> RootRequest
-> (ResolvedSource -> Raw.Block -> IO ())
-> IO
(Either
ParseWorkspaceError
(ParsedSourceWorkspace, ParseMeasurements))
parseSourceWorkspaceMeasuredWith mounts request emitBlock = do
parseSourceWorkspaceMeasuredWithSyntaxInputsAndCallback
mounts
request
(const [])
emitBlock
parseSourceWorkspaceMeasuredWithSyntaxInputsAndCallback
:: SourceMounts
-> RootRequest
-> (ResolvedSource -> [ModuleSyntaxInterface])
-> (ResolvedSource -> Raw.Block -> IO ())
-> IO
(Either
ParseWorkspaceError
(ParsedSourceWorkspace, ParseMeasurements))
parseSourceWorkspaceMeasuredWithSyntaxInputsAndCallback
mounts request syntaxInputs emitBlock = do
parseSourceWorkspaceMeasuredWithSyntaxInputsAndGraphValidationAndCallback
mounts request syntaxInputs (const (Right ())) emitBlock
parseSourceWorkspaceMeasuredWithSyntaxInputsAndGraphValidationAndCallback
:: SourceMounts
-> RootRequest
-> (ResolvedSource -> [ModuleSyntaxInterface])
-> (ResolvedSourceGraph -> Either SourceError ())
-> (ResolvedSource -> Raw.Block -> IO ())
-> IO
(Either
ParseWorkspaceError
(ParsedSourceWorkspace, ParseMeasurements))
parseSourceWorkspaceMeasuredWithSyntaxInputsAndGraphValidationAndCallback
mounts request syntaxInputs validateGraph emitBlock = do
resolutionStart <- getMonotonicTimeNSec
graphResult <- buildResolvedSourceGraphMeasured mounts request
resolutionEnd <- getMonotonicTimeNSec
case graphResult of
Left err ->
pure (Left (SourceWorkspaceError err))
Right (graph, selectionMeasurements) ->
case validateGraph graph of
Left err ->
pure (Left (SourceWorkspaceError err))
Right () ->
fmap
(fmap
(\(workspace, measurements) ->
let
-- Resolution includes source loading and
-- import scanning for graph construction.
measured =
withResolutionMeasurements
measurements
(resolutionEnd - resolutionStart)
selectionMeasurements
in
(workspace, measured)))
(parseResolvedSourceGraphMeasuredWith
graph
syntaxInputs
emitBlock)
parseResolvedSourceGraph
:: ResolvedSourceGraph
-> IO (Either ParseWorkspaceError ParsedSourceWorkspace)
parseResolvedSourceGraph graph =
parseResolvedSourceGraphWith graph (\_source _block -> pure ())
-- | Parse in the graph's deterministic imported-before-importer order.
--
-- Graph construction errors occur before this order exists.
--
-- Every source is tokenized from its already loaded text, so this function
-- performs no source resolution or file reads. The callback may perform
-- arbitrary I/O and may have completed for earlier blocks when parsing fails.
parseResolvedSourceGraphWith
:: ResolvedSourceGraph
-> (ResolvedSource -> Raw.Block -> IO ())
-> IO (Either ParseWorkspaceError ParsedSourceWorkspace)
parseResolvedSourceGraphWith graph emitBlock =
fmap (fmap fst)
(parseResolvedSourceGraphMeasuredWith
graph
(const [])
emitBlock)
parseResolvedSourceGraphMeasuredWith
:: ResolvedSourceGraph
-> (ResolvedSource -> [ModuleSyntaxInterface])
-> (ResolvedSource -> Raw.Block -> IO ())
-> IO
(Either
ParseWorkspaceError
(ParsedSourceWorkspace, ParseMeasurements))
parseResolvedSourceGraphMeasuredWith graph syntaxInputs emitBlock =
fmap unwrapUncachedExecution
(parseResolvedSourceGraphMeasuredWithArtifacts
UncachedParsedArtifacts
graph
syntaxInputs
emitBlock)
data ParsedArtifactAccess
= UncachedParsedArtifacts
| PersistentParsedArtifacts !Store.Store
unwrapUncachedExecution
:: Either ParseExecutionError value
-> Either ParseWorkspaceError value
unwrapUncachedExecution = \case
Left (ParseExecutionWorkspaceError failure) ->
Left failure
Left ParseExecutionStoreFailure{} ->
impossible "uncached parsing attempted a store operation"
Left ParseExecutionArtifactIntegrityFailure{} ->
impossible "uncached parsing installed a parsed artifact"
Right value ->
Right value
parseResolvedSourceGraphMeasuredWithArtifacts
:: ParsedArtifactAccess
-> ResolvedSourceGraph
-> (ResolvedSource -> [ModuleSyntaxInterface])
-> (ResolvedSource -> Raw.Block -> IO ())
-> IO
(Either
ParseExecutionError
(ParsedSourceWorkspace, ParseMeasurements))
parseResolvedSourceGraphMeasuredWithArtifacts
artifactAccess graph syntaxInputs emitBlock =
runExceptT do
let orderedNodes =
sourceGraphImportedBeforeImporter graph
addresses =
Map.fromList
[ ( resolvedSourceCanonicalPath
(sourceNodeResolved node)
, resolvedSourceAddress
(sourceNodeResolved node)
)
| node <- NonEmpty.toList orderedNodes
]
completed <- foldM
(parseOneModule
artifactAccess graph addresses syntaxInputs emitBlock)
emptyModuleParseState
(zip [0 ..] (NonEmpty.toList orderedNodes))
parsedModules <- case NonEmpty.nonEmpty
(reverse (moduleParseReversed completed)) of
Just modules ->
pure modules
Nothing ->
throwE
(ParseExecutionWorkspaceError
(SourceWorkspaceError
(SourceGraphInvariantViolation
"source graph produced no parsed modules")))
let measurements =
ParseMeasurements
{ parseMeasurementResolutionNanoseconds =
0
, parseMeasurementTokenizationNanoseconds =
moduleParseTokenizationNanoseconds completed
, parseMeasurementScanningNanoseconds =
moduleParseScanningNanoseconds completed
, parseMeasurementSyntaxInterfaceNanoseconds =
moduleParseSyntaxNanoseconds completed
, parseMeasurementParsingNanoseconds =
moduleParseParsingNanoseconds completed
, parseMeasurementParsedHitCount =
moduleParseHitCount completed
, parseMeasurementParsedMissCount =
moduleParseMissCount completed
, parseMeasurementParserTableMaterializationCount =
moduleParseParserTableCount completed
, parseMeasurementModuleCount =
NonEmpty.length orderedNodes
, parseMeasurementImportOccurrenceCount =
length (sourceGraphImportEdges graph)
, parseMeasurementChunkCount =
moduleParseChunkCount completed
, parseMeasurementSourceByteCount =
sum
(loadedByteCount
. sourceNodeLoaded
<$> NonEmpty.toList orderedNodes)
, parseMeasurementCandidateProbeCount = 0
, parseMeasurementCanonicalizationCount = 0
, parseMeasurementTargetInspectionCount = 0
}
pure
( ParsedSourceWorkspace parsedModules
, measurements
)
data ModuleParseState = ModuleParseState
{ moduleParsePrepared
:: !(Map ResolvedSourceAddress PreparedSyntaxModule)
, moduleParseReversed :: ![ParsedModule]
, moduleParseTokenizationNanoseconds :: !Word64
, moduleParseScanningNanoseconds :: !Word64
, moduleParseSyntaxNanoseconds :: !Word64
, moduleParseParsingNanoseconds :: !Word64
, moduleParseChunkCount :: !Int
, moduleParseHitCount :: !Int
, moduleParseMissCount :: !Int
, moduleParseParserTableCount :: !Int
}
emptyModuleParseState :: ModuleParseState
emptyModuleParseState =
ModuleParseState Map.empty [] 0 0 0 0 0 0 0 0
parseOneModule
:: ParsedArtifactAccess
-> ResolvedSourceGraph
-> Map CanonicalPath ResolvedSourceAddress
-> (ResolvedSource -> [ModuleSyntaxInterface])
-> (ResolvedSource -> Raw.Block -> IO ())
-> ModuleParseState
-> (Int, SourceNode)
-> ExceptT ParseExecutionError IO ModuleParseState
parseOneModule artifactAccess graph addresses syntaxInputs emitBlock state
(moduleIndex, node) = do
imports <- liftWorkspaceEither
(resolveParsedModuleImports graph addresses node)
context <- liftWorkspaceEither
(prepareModuleSyntaxContext
(moduleParsePrepared state)
(syntaxInputs (sourceNodeResolved node))
imports)
key <- liftWorkspaceEither
(moduleParsedKey node context)
selected <- case artifactAccess of
UncachedParsedArtifacts ->
pure Nothing
PersistentParsedArtifacts store ->
liftIO (Store.loadParsedArtifact store key) >>= \case
Left failure ->
throwE (ParseExecutionStoreFailure failure)
Right found ->
pure found
case selected of
Just artifact ->
installCachedModule
emitBlock
moduleIndex
node
imports
context
key
artifact
state
Nothing ->
parseAndPublishFreshModule
artifactAccess
emitBlock
moduleIndex
node
imports
context
key
state
parseAndPublishFreshModule
:: ParsedArtifactAccess
-> (ResolvedSource -> Raw.Block -> IO ())
-> Int
-> SourceNode
-> [ParsedModuleImport]
-> ModuleSyntaxContext
-> Parsed.ParsedModuleKey
-> ModuleParseState
-> ExceptT ParseExecutionError IO ModuleParseState
parseAndPublishFreshModule artifactAccess emitBlock moduleIndex node imports
context expectedKey state = do
tokenizationStart <- liftIO getMonotonicTimeNSec
tokenized <- withExceptT ParseExecutionWorkspaceError
(ExceptT (tokenizeModule node imports))
tokenizationEnd <- liftIO getMonotonicTimeNSec
scanningStart <- liftIO getMonotonicTimeNSec
scanned <- withExceptT ParseExecutionWorkspaceError
(scanTokenizedModule tokenized)
scanningEnd <- liftIO getMonotonicTimeNSec
syntaxStart <- liftIO getMonotonicTimeNSec
runtime <- liftWorkspaceEither
(prepareFreshRuntimeSyntaxModule
moduleIndex
context
scanned)
syntaxEnd <- liftIO getMonotonicTimeNSec
parsingStart <- liftIO getMonotonicTimeNSec
parsed <- withExceptT ParseExecutionWorkspaceError
(parseScannedModule emitBlock runtime scanned)
parsingEnd <- liftIO getMonotonicTimeNSec
unless
(parsedModuleKey parsed == expectedKey)
(throwE
(ParseExecutionWorkspaceError
(SourceWorkspaceError
(SourceGraphInvariantViolation
"fresh parsed module key disagrees with its syntax context"))))
case artifactAccess of
UncachedParsedArtifacts ->
pure ()
PersistentParsedArtifacts store -> do
let artifact =
Parsed.parsedArtifact
expectedKey
(parsedModulePayload parsed)
unless
(Parsed.parsedArtifactId artifact == parsedModuleId parsed)
(throwE
(ParseExecutionWorkspaceError
(SourceWorkspaceError
(SourceGraphInvariantViolation
"fresh parsed artifact identity disagrees with its module"))))
liftIO
(Store.writeParsedArtifact store expectedKey artifact)
>>= \case
Left failure ->
throwE (ParseExecutionStoreFailure failure)
Right acknowledged ->
unless
(acknowledged == artifact)
(throwE
(ParseExecutionStoreFailure
Store.StoreParsedArtifactIdMismatch))
let prepared = freshRuntimePrepared runtime
address = preparedAddress prepared
when
(Map.member address (moduleParsePrepared state))
(throwE
(ParseExecutionWorkspaceError
(SourceWorkspaceError
(SourceGraphInvariantViolation
"prepared syntax module address is duplicated"))))
pure
state
{ moduleParsePrepared =
Map.insert address prepared (moduleParsePrepared state)
, moduleParseReversed =
parsed : moduleParseReversed state
, moduleParseTokenizationNanoseconds =
moduleParseTokenizationNanoseconds state
+ tokenizationEnd - tokenizationStart
, moduleParseScanningNanoseconds =
moduleParseScanningNanoseconds state
+ scanningEnd - scanningStart
, moduleParseSyntaxNanoseconds =
moduleParseSyntaxNanoseconds state
+ syntaxEnd - syntaxStart
, moduleParseParsingNanoseconds =
moduleParseParsingNanoseconds state
+ parsingEnd - parsingStart
, moduleParseChunkCount =
moduleParseChunkCount state
+ tokenizedModuleChunkCount tokenized
, moduleParseMissCount =
moduleParseMissCount state + 1
, moduleParseParserTableCount =
moduleParseParserTableCount state + 1
}
liftWorkspaceEither
:: Either ParseWorkspaceError value
-> ExceptT ParseExecutionError IO value
liftWorkspaceEither =
either (throwE . ParseExecutionWorkspaceError) pure
installCachedModule
:: (ResolvedSource -> Raw.Block -> IO ())
-> Int
-> SourceNode
-> [ParsedModuleImport]
-> ModuleSyntaxContext
-> Parsed.ParsedModuleKey
-> Parsed.ParsedArtifact
-> ModuleParseState
-> ExceptT ParseExecutionError IO ModuleParseState
installCachedModule emitBlock moduleIndex node imports context key artifact
state = do
syntaxStart <- liftIO getMonotonicTimeNSec
let source = sourceNodeResolved node
loaded = sourceNodeLoaded node
payload = Parsed.parsedArtifactPayload artifact
decoded <-
either
(throwIntegrity source . ParsedArtifactPayloadDecodeFailure)
pure
(Parsed.decodeCanonicalParsedPayload
(sourceNodeFileId node)
payload)
let expectedImports = parsedImportReference <$> imports
storedImports = Parsed.decodedParsedImports decoded
unless
(storedImports == expectedImports)
(throwIntegrity source
(ParsedArtifactImportMismatch expectedImports storedImports))
(localEntries, occurrences) <-
either (throwIntegrity source) pure
(prepareCachedOccurrences
moduleIndex
node
context
(Parsed.decodedParsedBlocks decoded)
(Parsed.decodedParsedOccurrences decoded))
(prepared, _effectiveDelta) <-
either
(throwIntegrity source . ParsedArtifactSyntaxFailure)
pure
(prepareSyntaxModule
(resolvedSourceAddress source)
context
localEntries)
let actualSyntax = moduleSyntaxAssertedId (preparedInterface prepared)
assertedSyntax = Parsed.decodedParsedSyntaxInterface decoded
unless
(actualSyntax == assertedSyntax)
(throwIntegrity source
(ParsedArtifactSyntaxInterfaceMismatch
assertedSyntax actualSyntax))
let content = Content.sourceContentIdBytes (loadedBytes loaded)
identified =
IdentifiedParsedModule
(Parsed.decodedParsedBlocks decoded)
(preparedInterface prepared)
occurrences
content
key
payload
(Parsed.parsedArtifactId artifact)
parsed = ParsedModule loaded imports identified
forced <- liftIO (evaluate (force parsed))
syntaxEnd <- liftIO getMonotonicTimeNSec
liftIO
(forM_
(parsedModuleBlocks forced)
(emitBlock source))
let address = preparedAddress prepared
when
(Map.member address (moduleParsePrepared state))
(throwE
(ParseExecutionWorkspaceError
(SourceWorkspaceError
(SourceGraphInvariantViolation
"prepared syntax module address is duplicated"))))
pure
state
{ moduleParsePrepared =
Map.insert address prepared (moduleParsePrepared state)
, moduleParseReversed =
forced : moduleParseReversed state
, moduleParseSyntaxNanoseconds =
moduleParseSyntaxNanoseconds state
+ syntaxEnd - syntaxStart
, moduleParseChunkCount =
moduleParseChunkCount state
+ length (Parsed.decodedParsedBlocks decoded)
, moduleParseHitCount =
moduleParseHitCount state + 1
}
throwIntegrity
:: ResolvedSource
-> ParsedArtifactIntegrityError
-> ExceptT ParseExecutionError IO value
throwIntegrity source =
throwE . ParseExecutionArtifactIntegrityFailure source
prepareCachedOccurrences
:: Int
-> SourceNode
-> ModuleSyntaxContext
-> [Raw.Block]
-> [(Int, Location, Raw.Marker, CanonicalLexicalEntry)]
-> Either
ParsedArtifactIntegrityError
( SyntaxEntryInventory
, [ParsedSyntaxOccurrence]
)
prepareCachedOccurrences moduleIndex node context blocks supplied = do
(localEntries, groups, _previous) <-
foldM insertOccurrence
(Map.empty, Map.empty, Nothing)
supplied
forM_
(zip [0 ..] blocks)
\(blockIndex, block) ->
case validateOccurrenceAssociation
(PhysicalSyntaxSite source)
blockIndex
block
(reverse
(Map.findWithDefault [] blockIndex groups)) of
Left (OccurrenceAssociationDeclarationError failure) ->
Left (ParsedArtifactAssociationFailure failure)
Left (OccurrenceAssociationInvariantError message) ->
Left
(ParsedArtifactOccurrenceFailure
message)
Right () ->
Right ()
pure
( localEntries
, [ ParsedSyntaxOccurrence blockIndex location marker entry
| (blockIndex, location, marker, entry) <- supplied
]
)
where
source = sourceNodeResolved node
expectedFileId = sourceNodeFileId node
importedEntries = syntaxContextImportedEntries context
importedIndex = syntaxSurfaceIndex importedEntries
blockBounds = Map.fromAscList (indexBlockBounds 0 blocks)
indexBlockBounds _index [] =
[]
indexBlockBounds index [block] =
[(index, (locate block, Nothing))]
indexBlockBounds index (block : rest@(next : _)) =
(index, (locate block, Just (locate next)))
: indexBlockBounds (index + 1) rest
insertOccurrence (entries, groups, previous)
(blockIndex, location, marker, entry) = do
unless
(locFileId location == Just expectedFileId)
(Left
(ParsedArtifactOccurrenceFailure
"syntax occurrence has an invalid source location"))
(blockStart, nextStart) <-
maybe
(Left
(ParsedArtifactOccurrenceFailure
"syntax occurrence has an invalid block index"))
Right
(Map.lookup blockIndex blockBounds)
let orderedLocation =
( blockIndex
, locLine location
, locColumn location
)
unless
(location >= blockStart
&& maybe True (location <) nextStart)
(Left
(ParsedArtifactOccurrenceFailure
"syntax occurrence lies outside its decoded block"))
case previous of
Just prior
| orderedLocation < prior ->
Left
(ParsedArtifactOccurrenceFailure
"syntax occurrences are not in source order")
_ ->
Right ()
let itemIndex =
length (Map.findWithDefault [] blockIndex groups)
site =
SyntaxDeclarationSite
{ syntaxSiteModuleIndex = moduleIndex
, syntaxSiteBlockIndex = blockIndex
, syntaxSiteItemIndex = itemIndex
, syntaxSiteSource = PhysicalSyntaxSite source
, syntaxSiteLocation = location
, syntaxSiteMarker = marker
}
disposition <-
Bifunctor.first ParsedArtifactSyntaxFailure
(classifyCachedSyntaxItem
importedEntries importedIndex site entry)
let entries' = case disposition of
EmitSyntaxEntry emitted ->
Map.insertWith
Set.union
emitted
(Set.singleton
(DeclarationSyntaxProvider site))
entries
ReuseFixedSyntax _fixed ->
entries
ReuseImportedSyntax _imported ->
entries
prepared = PreparedSyntaxOccurrence site entry
pure
( entries'
, Map.insertWith (++) blockIndex [prepared] groups
, Just orderedLocation
)
classifyCachedSyntaxItem
:: SyntaxEntryInventory
-> Map Raw.Pattern (Set CanonicalLexicalEntry)
-> SyntaxDeclarationSite
-> CanonicalLexicalEntry
-> Either ParseWorkspaceError SyntaxItemDisposition
classifyCachedSyntaxItem importedEntries importedIndex site entry =
case Set.toAscList
(entriesForSurfaces fixedBaseSurfaceIndex entry) of
[] ->
classifyImported
[fixedEntry]
| entry == fixedEntry ->
Right (ReuseFixedSyntax fixedEntry)
| otherwise ->
Left
(SourceLexiconCollision
(makeLexiconCollision
(sharedSurface entry fixedEntry)
[ FixedLexiconOrigin fixedEntry
, sourceCollisionOrigin entry site
]))
_ ->
impossible
"fixed base has several entries for one parser surface"
where
classifyImported = case entry of
CanonicalExpressionFunction localPattern marker _fixity ->
case Set.toAscList
(entriesForSurfaces importedIndex entry) of
[] ->
Right (EmitSyntaxEntry entry)
[importedEntry@(CanonicalExpressionFunction
importedPattern importedMarker _importedFixity)]
| localPattern == importedPattern
&& marker == importedMarker
&& entry == importedEntry ->
Right (ReuseImportedSyntax importedEntry)
entries ->
Left
(SourceLexiconCollision
(makeLexiconCollision
(firstSharedSurface entry entries)
( importedCollisionOrigins
importedEntries entries
<> [sourceCollisionOrigin entry site]
)))
_ ->
Right (EmitSyntaxEntry entry)
withResolutionMeasurements
:: ParseMeasurements
-> Word64
-> SourceSelectionMeasurements
-> ParseMeasurements
withResolutionMeasurements
measurements
resolution
selectionMeasurements =
measurements
{ parseMeasurementResolutionNanoseconds =
resolution
, parseMeasurementCandidateProbeCount =
sourceSelectionCandidateProbeCount selectionMeasurements
, parseMeasurementCanonicalizationCount =
sourceSelectionCanonicalizationCount
selectionMeasurements
, parseMeasurementTargetInspectionCount =
sourceSelectionTargetInspectionCount
selectionMeasurements
}
tokenizedModuleChunkCount :: TokenizedModule -> Int
tokenizedModuleChunkCount
(TokenizedModule _node _imports _pragmas chunks) =
length chunks
tokenizeModule
:: SourceNode
-> [ParsedModuleImport]
-> IO (Either ParseWorkspaceError TokenizedModule)
tokenizeModule node imports = do
let loaded = sourceNodeLoaded node
source = loadedSource loaded
locationPath = resolvedSourceLocationPath source
pure do
pragmas <-
Bifunctor.first
(SourceSyntaxPragmaError source)
(extractSyntaxPragmas
(sourceNodeFileId node)
locationPath
(loadedText loaded))
case runLexer
(sourceNodeFileId node)
locationPath
(loadedText loaded) of
Left err ->
Left
(SourceParseError
source
(TokenError (errorBundlePretty err)))
Right (_imports, chunks) ->
Right
(TokenizedModule
node
imports
pragmas
chunks)
resolveParsedModuleImports
:: ResolvedSourceGraph
-> Map CanonicalPath ResolvedSourceAddress
-> SourceNode
-> Either ParseWorkspaceError [ParsedModuleImport]
resolveParsedModuleImports graph addresses node =
traverse
(parsedImport addresses)
[ edge
| edge <- sourceGraphImportEdges graph
, sourceImportingNode edge
== resolvedSourceCanonicalPath source
]
where
source = sourceNodeResolved node
parsedImport
:: Map CanonicalPath ResolvedSourceAddress
-> SourceImportEdge
-> Either ParseWorkspaceError ParsedModuleImport
parsedImport addresses edge =
case Map.lookup (sourceImportedNode edge) addresses of
Nothing ->
Left
(SourceWorkspaceError
(SourceGraphInvariantViolation
"logical import refers to an unknown source node"))
Just imported ->
Right
(ParsedModuleImport
(sourceImportReference edge)
imported)
scanTokenizedModule
:: TokenizedModule
-> ExceptT
ParseWorkspaceError
IO
ScannedModule
scanTokenizedModule
(TokenizedModule node imports pragmas chunks) = do
associated <- either
(throwE . SourceSyntaxDeclarationError source)
pure
(associateSyntaxPragmas chunks pragmas)
scannedChunks <- traverse scanOne
(zip chunks associated)
pure (ScannedModule node imports scannedChunks)
where
source = sourceNodeResolved node
scanOne (tokens, chunkPragmas) =
case scanChunk tokens of
Left err ->
throwE
(SourceParseError
source
(LexicalScanFailure err))
Right declarations ->
pure
(ScannedChunk
tokens
chunkPragmas
declarations)
associateSyntaxPragmas
:: [[Located Token]]
-> [SyntaxPragma]
-> Either SyntaxDeclarationError [[SyntaxPragma]]
associateSyntaxPragmas chunks =
foldM associate (replicate (length chunks) [])
where
associate groups pragma =
case
[ index
| (index, chunk) <- zip [0 :: Int ..] chunks
, pragmaWithinChunk pragma chunk
] of
[] ->
Left
(SyntaxPragmaOutsideDeclaration
(syntaxPragmaLocation pragma))
[selected] ->
Right
[ if index == selected
then group <> [pragma]
else group
| (index, group) <- zip [0 :: Int ..] groups
]
_ ->
impossible
"one syntax pragma belongs to overlapping top-level chunks"
pragmaWithinChunk
:: SyntaxPragma
-> [Located Token]
-> Bool
pragmaWithinChunk pragma = \case
firstToken : rest ->
case reverse rest of
finalToken : _ ->
let pragmaLocation =
syntaxPragmaLocation pragma
firstLocation =
startPos firstToken
finalLocation =
startPos finalToken
in
locFileId pragmaLocation
== locFileId firstLocation
&& locLine firstLocation
< locLine pragmaLocation
&& locLine pragmaLocation
< locLine finalLocation
[] ->
False
[] ->
False
prepareFreshRuntimeSyntaxModule
:: Int
-> ModuleSyntaxContext
-> ScannedModule
-> Either ParseWorkspaceError FreshRuntimeSyntax
prepareFreshRuntimeSyntaxModule moduleIndex context
(ScannedModule node _imports chunks) = do
(localEntries, preparedOccurrences) <-
Bifunctor.first
(localSyntaxWorkspaceError source)
(prepareLocalSyntax
moduleIndex
(PhysicalSyntaxSite source)
(syntaxContextImportedEntries context)
chunks)
(prepared, effectiveDelta) <-
prepareSyntaxModule address context localEntries
lexicon <-
Bifunctor.first
SourceSyntaxMaterializationError
(materializeSyntaxDelta effectiveDelta)
pure
FreshRuntimeSyntax
{ freshRuntimePrepared = prepared
, freshRuntimeLexicon = lexicon
, freshRuntimeOccurrences = preparedOccurrences
}
where
source = sourceNodeResolved node
address = resolvedSourceAddress source
prepareSyntaxModule
:: ResolvedSourceAddress
-> ModuleSyntaxContext
-> SyntaxEntryInventory
-> Either
ParseWorkspaceError
(PreparedSyntaxModule, CanonicalSyntaxDelta)
prepareSyntaxModule address context localEntries = do
localDelta <-
Bifunctor.first
localSyntaxCollisionWorkspaceError
(validateSyntaxInventory localEntries)
interface <-
Bifunctor.first
(const
(SourceWorkspaceError
(SourceGraphInvariantViolation
"module syntax interface rejected distinct direct inputs")))
(moduleSyntaxInterface
(syntaxContextDirectIds context)
localDelta)
let effectiveEntries =
Map.unionWith
Set.union
(syntaxContextImportedEntries context)
localEntries
effectiveDelta <-
Bifunctor.first
localSyntaxCollisionWorkspaceError
(validateSyntaxInventory effectiveEntries)
pure
( PreparedSyntaxModule
{ preparedAddress = address
, preparedInterface = interface
, preparedSyntaxDirectAddresses =
syntaxContextDirectAddresses context
, preparedLocalEntries = localEntries
}
, effectiveDelta
)
prepareModuleSyntaxContext
:: Map ResolvedSourceAddress PreparedSyntaxModule
-> [ModuleSyntaxInterface]
-> [ParsedModuleImport]
-> Either ParseWorkspaceError ModuleSyntaxContext
prepareModuleSyntaxContext preparedByAddress implicitSyntax imports = do
unless
(all (null . moduleSyntaxDirectInputs) implicitSyntax)
(Left
(SourceWorkspaceError
(SourceGraphInvariantViolation
"implicit syntax input is not self-contained")))
directModules <- traverse
(lookupPreparedSyntaxModule preparedByAddress)
(nubOrd (parsedImportedAddress <$> imports))
let (seenImplicit, implicitReversed) =
foldl' insertImplicit (Set.empty, []) implicitSyntax
(_seenAll, directReversed) =
foldl' insertDirect (seenImplicit, []) directModules
implicitSelected = reverse implicitReversed
directSelected = reverse directReversed
directAddresses = preparedAddress <$> directSelected
directIds =
(moduleSyntaxAssertedId <$> implicitSelected)
<> ( moduleSyntaxAssertedId . preparedInterface
<$> directSelected
)
directEntries <-
foldImportedSyntax preparedByAddress directAddresses
let importedEntries =
foldl'
(Map.unionWith Set.union)
directEntries
(implicitSyntaxInventory <$> implicitSelected)
pure
ModuleSyntaxContext
{ syntaxContextDirectIds = directIds
, syntaxContextDirectAddresses = directAddresses
, syntaxContextImportedEntries = importedEntries
}
where
insertImplicit (seen, reversed) interface =
let identity = moduleSyntaxAssertedId interface
in
if identity `Set.member` seen
then (seen, reversed)
else
(Set.insert identity seen, interface : reversed)
insertDirect (seen, reversed) prepared =
let identity =
moduleSyntaxAssertedId (preparedInterface prepared)
in
if identity `Set.member` seen
then (seen, reversed)
else
(Set.insert identity seen, prepared : reversed)
implicitSyntaxInventory interface =
Map.fromList
[ ( entry
, Set.singleton
(ImplicitSyntaxProvider
(moduleSyntaxAssertedId interface))
)
| entry <-
canonicalSyntaxDeltaEntries
(moduleSyntaxLocalDelta interface)
]
moduleParsedKey
:: SourceNode
-> ModuleSyntaxContext
-> Either ParseWorkspaceError Parsed.ParsedModuleKey
moduleParsedKey node context =
Bifunctor.first
(SourceParsedModuleKeyError source)
(Parsed.parsedModuleKey
(Content.sourceContentIdBytes
(loadedBytes (sourceNodeLoaded node)))
baseSyntaxInterfaceId
(syntaxContextDirectIds context))
where
source = sourceNodeResolved node
lookupPreparedSyntaxModule
:: Map ResolvedSourceAddress PreparedSyntaxModule
-> ResolvedSourceAddress
-> Either ParseWorkspaceError PreparedSyntaxModule
lookupPreparedSyntaxModule preparedByAddress address =
maybe
(Left
(SourceWorkspaceError
(SourceGraphInvariantViolation
"syntax import refers to an unprepared module")))
Right
(Map.lookup address preparedByAddress)
foldImportedSyntax
:: Map ResolvedSourceAddress PreparedSyntaxModule
-> [ResolvedSourceAddress]
-> Either ParseWorkspaceError SyntaxEntryInventory
foldImportedSyntax preparedByAddress addresses =
snd <$> foldM visit (Set.empty, Map.empty) addresses
where
visit state address = do
prepared <- lookupPreparedSyntaxModule preparedByAddress address
let identity =
moduleSyntaxAssertedId
(preparedInterface prepared)
if identity `Set.member` fst state
then
Right state
else do
let marked =
(Set.insert identity (fst state), snd state)
afterImports <- foldM
visit
marked
(preparedSyntaxDirectAddresses prepared)
Right
( fst afterImports
, Map.unionWith
Set.union
(snd afterImports)
(preparedLocalEntries prepared)
)
prepareLocalSyntax
:: Int
-> SyntaxSiteSource
-> SyntaxEntryInventory
-> [ScannedChunk]
-> Either
LocalSyntaxError
( SyntaxEntryInventory
, [[PreparedSyntaxOccurrence]]
)
prepareLocalSyntax
moduleIndex
source
importedEntries
chunks = do
(localEntries, reversedOccurrences) <-
foldM
prepareOne
(Map.empty, [])
(zip [0 ..] chunks)
pure
( localEntries
, reverse reversedOccurrences
)
where
importedIndex =
syntaxSurfaceIndex importedEntries
prepareOne
(localEntries, reversedOccurrences)
(blockIndex, chunk) = do
classified <-
prepareSyntaxChunk
moduleIndex
source
blockIndex
importedEntries
importedIndex
chunk
(localEntries', reversedPrepared) <-
foldM
insertClassified
(localEntries, [])
classified
pure
( localEntries'
, reverse reversedPrepared : reversedOccurrences
)
insertClassified
(entries, reversed)
(ClassifiedSyntaxItem site disposition _eligible) =
case disposition of
EmitSyntaxEntry entry ->
Right
( Map.insertWith
Set.union
entry
(Set.singleton
(DeclarationSyntaxProvider site))
entries
, PreparedSyntaxOccurrence
site
entry
: reversed
)
ReuseImportedSyntax entry ->
Right
( entries
, PreparedSyntaxOccurrence
site
entry
: reversed
)
ReuseFixedSyntax entry ->
Right
( entries
, PreparedSyntaxOccurrence
site
entry
: reversed
)
prepareSyntaxChunk
:: Int
-> SyntaxSiteSource
-> Int
-> SyntaxEntryInventory
-> Map Raw.Pattern (Set CanonicalLexicalEntry)
-> ScannedChunk
-> Either LocalSyntaxError [ClassifiedSyntaxItem]
prepareSyntaxChunk
moduleIndex
source
blockIndex
importedEntries
importedIndex
(ScannedChunk tokens pragmas declarations) = do
classified <- traverse classify
(zip [0 ..] declarations)
case (classified, pragmas) of
([], pragma : _) ->
Left
(LocalSyntaxDeclarationError
(SyntaxPragmaOutsideDeclaration
(syntaxPragmaLocation pragma)))
(_, firstPragma : secondPragma : _) ->
Left
(LocalSyntaxDeclarationError
(DuplicateSyntaxPragma
(syntaxPragmaLocation firstPragma)
(syntaxPragmaLocation secondPragma)))
(_, [pragma]) ->
applyOnePragma pragma classified
(_, []) ->
requireNewFixities classified
where
declarationLocation =
case tokens of
token : _ ->
startPos token
[] ->
Nowhere
classify (itemIndex, locatedItem) = do
let item = unLocated locatedItem
location = startPos locatedItem
site =
SyntaxDeclarationSite
{ syntaxSiteModuleIndex = moduleIndex
, syntaxSiteBlockIndex = blockIndex
, syntaxSiteItemIndex = itemIndex
, syntaxSiteSource = source
, syntaxSiteLocation = location
, syntaxSiteMarker = scannedItemMarker item
}
localEntry =
canonicalScannedItem
defaultSourceFixity
item
eligible =
case localEntry of
CanonicalExpressionFunction pat _marker _fixity ->
eligibleExpressionPattern pat
_ ->
False
fixedMatches =
entriesForSurfaces
fixedBaseSurfaceIndex
localEntry
disposition <- case Set.toAscList fixedMatches of
[] ->
classifyImported
site
localEntry
[fixedEntry]
| sameFixedSyntaxShape localEntry fixedEntry ->
Right (ReuseFixedSyntax fixedEntry)
| otherwise ->
Left
(LocalSyntaxCollision
(makeLexiconCollision
(sharedSurface
localEntry
fixedEntry)
[ FixedLexiconOrigin fixedEntry
, sourceCollisionOrigin
localEntry
site
]))
_ ->
impossible
"fixed base has several entries for one parser surface"
Right
(ClassifiedSyntaxItem
site
disposition
eligible)
classifyImported site localEntry =
let importedMatches =
entriesForSurfaces importedIndex localEntry
in
case localEntry of
CanonicalExpressionFunction
localPattern
localMarker
_localFixity ->
case Set.toAscList importedMatches of
[] ->
Right (EmitSyntaxEntry localEntry)
[ importedEntry@(CanonicalExpressionFunction
importedPattern
importedMarker
_importedFixity)
]
| localPattern == importedPattern
&& localMarker == importedMarker ->
Right
(ReuseImportedSyntax importedEntry)
entries ->
Left
(LocalSyntaxCollision
(makeLexiconCollision
(firstSharedSurface
localEntry
entries)
(importedCollisionOrigins
importedEntries
entries
<> [ sourceCollisionOrigin
localEntry
site
])))
_ ->
Right (EmitSyntaxEntry localEntry)
applyOnePragma pragma classified =
case List.filter classifiedItemEligible classified of
[] ->
Left
(LocalSyntaxDeclarationError
(IrrelevantSyntaxPragma
(syntaxPragmaLocation pragma)
declarationLocation))
[only] ->
case classifiedDisposition only of
ReuseFixedSyntax entry ->
Left
(LocalSyntaxDeclarationError
(SyntaxPragmaOnFixedReuse
(syntaxPragmaLocation pragma)
(entryPrimarySurface entry)))
ReuseImportedSyntax entry ->
Left
(LocalSyntaxDeclarationError
(SyntaxPragmaOnImportedReuse
(syntaxPragmaLocation pragma)
(entryPrimarySurface entry)))
EmitSyntaxEntry entry ->
Right
[ replaceClassifiedEntry
only
(setExpressionFixity
(sourcePragmaFixity pragma)
entry)
current
| current <- classified
]
several ->
Left
(LocalSyntaxDeclarationError
(AmbiguousSyntaxPragmaTarget
(syntaxPragmaLocation pragma)
(eligiblePatterns several)))
requireNewFixities classified =
case
[ item
| item <- classified
, classifiedItemEligible item
, case classifiedDisposition item of
EmitSyntaxEntry _entry ->
True
_ ->
False
] of
[] ->
Right classified
[only] ->
Left
(LocalSyntaxDeclarationError
(MissingSyntaxPragma
(classifiedLocation only)
(classifiedPattern only)))
several@(firstItem : _) ->
Left
(LocalSyntaxDeclarationError
(MultipleNewSyntaxPatternsWithoutPragma
(classifiedLocation firstItem)
(eligiblePatterns several)))
defaultSourceFixity :: Fixity
defaultSourceFixity =
Fixity
Raw.NonAssoc
(case mixfixLevel 9 of
Right level ->
level
Left err ->
impossible
("source default fixity is invalid: "
<> show err))
fixedBaseSurfaceIndex
:: Map Raw.Pattern (Set CanonicalLexicalEntry)
fixedBaseSurfaceIndex =
entrySurfaceIndex fixedBaseSyntaxEntries
syntaxSurfaceIndex
:: SyntaxEntryInventory
-> Map Raw.Pattern (Set CanonicalLexicalEntry)
syntaxSurfaceIndex =
entrySurfaceIndex . Map.keys
entrySurfaceIndex
:: [CanonicalLexicalEntry]
-> Map Raw.Pattern (Set CanonicalLexicalEntry)
entrySurfaceIndex =
foldl' insertEntry Map.empty
where
insertEntry index entry =
foldl'
(\current pat ->
Map.insertWith
Set.union
pat
(Set.singleton entry)
current)
index
(canonicalLexicalSurfacePatterns entry)
entriesForSurfaces
:: Map Raw.Pattern (Set CanonicalLexicalEntry)
-> CanonicalLexicalEntry
-> Set CanonicalLexicalEntry
entriesForSurfaces index entry =
Set.unions
[ Map.findWithDefault Set.empty pat index
| pat <- toList
(canonicalLexicalSurfacePatterns entry)
]
sameFixedSyntaxShape
:: CanonicalLexicalEntry
-> CanonicalLexicalEntry
-> Bool
sameFixedSyntaxShape left right =
case (left, right) of
( CanonicalLeftAdjective leftPattern _leftMarker
, CanonicalLeftAdjective rightPattern _rightMarker
) ->
leftPattern == rightPattern
( CanonicalRightAdjective leftPattern _leftMarker
, CanonicalRightAdjective rightPattern _rightMarker
) ->
leftPattern == rightPattern
( CanonicalFunctionPhrase leftSingular leftPlural _leftMarker
, CanonicalFunctionPhrase rightSingular rightPlural _rightMarker
) ->
(leftSingular, leftPlural)
== (rightSingular, rightPlural)
( CanonicalNoun leftSingular leftPlural _leftMarker
, CanonicalNoun rightSingular rightPlural _rightMarker
) ->
(leftSingular, leftPlural)
== (rightSingular, rightPlural)
( CanonicalStructureNoun leftSingular leftPlural _leftMarker
, CanonicalStructureNoun rightSingular rightPlural _rightMarker
) ->
(leftSingular, leftPlural)
== (rightSingular, rightPlural)
( CanonicalVerb leftSingular leftPlural _leftMarker
, CanonicalVerb rightSingular rightPlural _rightMarker
) ->
(leftSingular, leftPlural)
== (rightSingular, rightPlural)
( CanonicalRelation leftToken leftArity _leftMarker
, CanonicalRelation rightToken rightArity _rightMarker
) ->
(leftToken, leftArity)
== (rightToken, rightArity)
( CanonicalExpressionFunction
leftPattern
_leftMarker
_leftFixity
, CanonicalExpressionFunction
rightPattern
_rightMarker
_rightFixity
) ->
leftPattern == rightPattern
( CanonicalPrefixPredicate
leftCommand
leftArity
_leftMarker
, CanonicalPrefixPredicate
rightCommand
rightArity
_rightMarker
) ->
(leftCommand, leftArity)
== (rightCommand, rightArity)
( CanonicalStructureOperation leftCommand
, CanonicalStructureOperation rightCommand
) ->
leftCommand == rightCommand
_ ->
False
sharedSurface
:: CanonicalLexicalEntry
-> CanonicalLexicalEntry
-> Raw.Pattern
sharedSurface left right =
case Set.lookupMin
(Set.intersection
(entrySurfaces left)
(entrySurfaces right)) of
Just pat ->
pat
Nothing ->
impossible
"colliding syntax entries have no shared parser surface"
firstSharedSurface
:: CanonicalLexicalEntry
-> [CanonicalLexicalEntry]
-> Raw.Pattern
firstSharedSurface localEntry entries =
case Set.lookupMin
(Set.unions
[ Set.intersection
(entrySurfaces localEntry)
(entrySurfaces entry)
| entry <- entries
]) of
Just pat ->
pat
Nothing ->
impossible
"imported syntax collision has no shared parser surface"
entryPrimarySurface :: CanonicalLexicalEntry -> Raw.Pattern
entryPrimarySurface entry =
NonEmpty.head (canonicalLexicalSurfacePatterns entry)
entrySurfaces :: CanonicalLexicalEntry -> Set Raw.Pattern
entrySurfaces =
Set.fromList
. toList
. canonicalLexicalSurfacePatterns
classifiedItemEligible :: ClassifiedSyntaxItem -> Bool
classifiedItemEligible
(ClassifiedSyntaxItem _site _disposition eligible) =
eligible
classifiedDisposition
:: ClassifiedSyntaxItem
-> SyntaxItemDisposition
classifiedDisposition
(ClassifiedSyntaxItem _site disposition _eligible) =
disposition
classifiedLocation :: ClassifiedSyntaxItem -> Location
classifiedLocation
(ClassifiedSyntaxItem site _disposition _eligible) =
syntaxSiteLocation site
classifiedPattern :: ClassifiedSyntaxItem -> Raw.Pattern
classifiedPattern =
entryPrimarySurface . dispositionEntry . classifiedDisposition
dispositionEntry :: SyntaxItemDisposition -> CanonicalLexicalEntry
dispositionEntry = \case
EmitSyntaxEntry entry ->
entry
ReuseFixedSyntax entry ->
entry
ReuseImportedSyntax entry ->
entry
eligiblePatterns
:: [ClassifiedSyntaxItem]
-> NonEmpty Raw.Pattern
eligiblePatterns = \case
[] ->
impossible
"an ambiguous pragma target has no eligible patterns"
item : rest ->
classifiedPattern item
:| (classifiedPattern <$> rest)
replaceClassifiedEntry
:: ClassifiedSyntaxItem
-> CanonicalLexicalEntry
-> ClassifiedSyntaxItem
-> ClassifiedSyntaxItem
replaceClassifiedEntry
(ClassifiedSyntaxItem targetSite _targetDisposition _targetEligible)
replacement
current@(ClassifiedSyntaxItem site _disposition eligible)
| site == targetSite =
ClassifiedSyntaxItem
site
(EmitSyntaxEntry replacement)
eligible
| otherwise =
current
setExpressionFixity
:: Fixity
-> CanonicalLexicalEntry
-> CanonicalLexicalEntry
setExpressionFixity fixity = \case
CanonicalExpressionFunction pat marker _oldFixity ->
CanonicalExpressionFunction pat marker fixity
entry ->
impossible
("a pragma targeted a non-expression entry: "
<> show entry)
validateSyntaxInventory
:: SyntaxEntryInventory
-> Either LocalSyntaxError CanonicalSyntaxDelta
validateSyntaxInventory inventory =
case canonicalSyntaxDelta (Map.keys inventory) of
Right delta ->
Right delta
Left collision ->
Left
(LocalSyntaxCollision
(inventoryCollision inventory collision))
inventoryCollision
:: SyntaxEntryInventory
-> CanonicalSyntaxCollision
-> LexiconCollision
inventoryCollision inventory collision =
makeLexiconCollision
(canonicalCollisionPattern collision)
(syntaxCollisionOrigins
inventory
(toList (canonicalCollisionEntries collision)))
importedCollisionOrigins
:: SyntaxEntryInventory
-> [CanonicalLexicalEntry]
-> [LexiconCollisionOrigin]
importedCollisionOrigins inventory entries =
syntaxCollisionOrigins inventory entries
syntaxCollisionOrigins
:: SyntaxEntryInventory
-> [CanonicalLexicalEntry]
-> [LexiconCollisionOrigin]
syntaxCollisionOrigins inventory entries =
[ providerCollisionOrigin entry provider
| (provider, entry) <-
List.sortOn fst
[ (provider, entry)
| entry <- entries
, provider <-
Set.toList
(Map.findWithDefault
Set.empty
entry
inventory)
]
]
providerCollisionOrigin
:: CanonicalLexicalEntry
-> SyntaxEntryProvider
-> LexiconCollisionOrigin
providerCollisionOrigin entry = \case
DeclarationSyntaxProvider site ->
sourceCollisionOrigin entry site
ImplicitSyntaxProvider interface ->
ImportedLexiconOrigin entry interface
sourceCollisionOrigin
:: CanonicalLexicalEntry
-> SyntaxDeclarationSite
-> LexiconCollisionOrigin
sourceCollisionOrigin entry site =
case syntaxSiteSource site of
PhysicalSyntaxSite source ->
SourceLexiconOrigin
entry
source
(syntaxSiteLocation site)
ReservedSyntaxSite label ->
ReservedLexiconOrigin
entry
label
(syntaxSiteLocation site)
makeLexiconCollision
:: Raw.Pattern
-> [LexiconCollisionOrigin]
-> LexiconCollision
makeLexiconCollision pat origins =
case origins of
firstOrigin : secondOrigin : rest ->
LexiconCollision
pat
firstOrigin
secondOrigin
rest
_ ->
impossible
"a lexical collision has fewer than two providers"
-- V1 associates scanner items with one parsed declaration. The block-head
-- marker anchors the declaration; additional datatype and structure items
-- retain scanner order and are not matched to individual AST nodes here.
validateOccurrenceAssociation
:: SyntaxSiteSource
-> Int
-> Raw.Block
-> [PreparedSyntaxOccurrence]
-> Either OccurrenceAssociationError ()
validateOccurrenceAssociation _source _blockIndex _block [] =
Right ()
validateOccurrenceAssociation source blockIndex block prepared = do
forM_ prepared
\occurrence -> do
let site =
preparedSyntaxSite occurrence
unless
(syntaxSiteSource site == source)
(Left
(OccurrenceAssociationInvariantError
"syntax occurrence belongs to a different source"))
unless
(syntaxSiteBlockIndex site == blockIndex)
(Left
(OccurrenceAssociationInvariantError
"syntax occurrence belongs to a different block"))
validateHeadMarker
where
validateHeadMarker = case prepared of
occurrence : _rest -> do
let site =
preparedSyntaxSite occurrence
location =
syntaxSiteLocation site
expectedMarker =
syntaxSiteMarker site
case rawBlockMarker block of
Nothing ->
Left
(OccurrenceAssociationDeclarationError
(SyntaxOccurrenceMissingBlockMarker
location
expectedMarker))
Just actual ->
unless
(actual == expectedMarker)
(Left
(OccurrenceAssociationDeclarationError
(SyntaxOccurrenceMarkerMismatch
location
expectedMarker
actual)))
rawBlockMarker :: Raw.Block -> Maybe Raw.Marker
rawBlockMarker = \case
Raw.BlockAxiom _location _title marker _axiom ->
Just marker
Raw.BlockClaim _kind _location _title marker _claim ->
Just marker
Raw.BlockProof{} ->
Nothing
Raw.BlockDefn _location _title marker _definition ->
Just marker
Raw.BlockAbbr _location _title marker _abbreviation ->
Just marker
Raw.BlockData _location _title marker _datatype ->
Just marker
Raw.BlockInductive _location _title marker _inductive ->
Just marker
Raw.BlockSig _location _title marker _assumptions _signature ->
Just marker
Raw.BlockStruct _location _title marker _structure ->
Just marker
parseScannedModule
:: (ResolvedSource -> Raw.Block -> IO ())
-> FreshRuntimeSyntax
-> ScannedModule
-> ExceptT ParseWorkspaceError IO ParsedModule
parseScannedModule
emitBlock
runtime
(ScannedModule node imports chunks) = do
let preparedRuntime = freshRuntimePrepared runtime
unless
(preparedAddress preparedRuntime
== resolvedSourceAddress source)
(throwE
(SourceWorkspaceError
(SourceGraphInvariantViolation
"runtime syntax was paired with the wrong source module")))
unless
(length chunks
== length (freshRuntimeOccurrences runtime))
(throwE
(SourceWorkspaceError
(SourceGraphInvariantViolation
"runtime syntax occurrence groups do not match source chunks")))
let loaded = sourceNodeLoaded node
input <-
either
(const
(throwE
(SourceWorkspaceError
(SourceGraphInvariantViolation
"validated source text does not match its exact bytes"))))
pure
(freshModuleInput
(moduleName (resolvedSourceAddress source))
(FreshPhysicalSource source)
(sourceNodeFileId node)
(resolvedSourceLocationPath source)
(loadedBytes loaded)
(loadedText loaded)
(parsedImportReference <$> imports)
(preparedInterface preparedRuntime))
(reversedBlocks, reversedOccurrences) <-
foldM
parsePreparedChunk
([], [])
(zip3
[0 ..]
chunks
(freshRuntimeOccurrences runtime))
let blocks = reverse reversedBlocks
occurrences = reverse reversedOccurrences
fresh <-
either
(throwE . SourceParsedModuleKeyError source)
pure
(identifyParsedModule input blocks occurrences)
let
parsedModule =
ParsedModule
loaded
imports
fresh
-- Force each module before it leaves the parser producer.
liftIO (evaluate (force parsedModule))
where
source = sourceNodeResolved node
-- Reuse one immutable parser for every chunk in this module.
moduleParser
:: Parser Text [Located Token] Raw.Block
moduleParser =
parser (grammar (freshRuntimeLexicon runtime))
parsePreparedChunk
(currentBlocks, currentOccurrences)
(blockIndex, ScannedChunk tokens _pragmas _items, prepared) =
case parsePreparedTokenChunk moduleParser tokens of
Left err ->
throwE (SourceParseError source err)
Right parsedBlock -> do
block <- liftIO (evaluate (force parsedBlock))
either
(throwE . occurrenceWorkspaceError source)
pure
(validateOccurrenceAssociation
(PhysicalSyntaxSite source)
blockIndex
block
prepared)
liftIO (emitBlock source block)
pure
( block : currentBlocks
, foldl'
(flip (:))
currentOccurrences
[ ParsedSyntaxOccurrence
blockIndex
(syntaxSiteLocation
(preparedSyntaxSite occurrence))
(syntaxSiteMarker
(preparedSyntaxSite occurrence))
(preparedSyntaxEntry occurrence)
| occurrence <- prepared
]
)
parseChunkResult
:: ([Raw.Block], Report Text [Located Token])
-> Either ParseException [Raw.Block]
parseChunkResult = \case
(_, Report _ expectations (token : tokens)) ->
Left (UnconsumedTokens expectations (token :| tokens))
([], _) ->
Left EmptyParse
(ambiguous@(_ : _ : _), _) ->
case nubOrd ambiguous of
[block] ->
Right [block]
distinct ->
Left (AmbiguousParse distinct)
([block], _) ->
Right [block]
parsePreparedTokenChunk
:: Parser Text [Located Token] Raw.Block
-> [Located Token]
-> Either ParseException Raw.Block
parsePreparedTokenChunk prepared tokens = do
parsed <- parseChunkResult (fullParses prepared tokens)
case parsed of
[block] -> Right block
_ ->
impossible
"one token chunk parsed into multiple blocks"
describeToken :: Token -> String
describeToken = \case
Word _ -> "word"
Variable _ -> "variable"
Symbol _ -> "symbol"
Integer _ -> "integer"
Command _ -> "command"
BeginEnv _ -> "begin of environment"
EndEnv _ -> "end of environment"
_ -> "delimiter"
|