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
module C = Piqi_common
open C
module Idtable = Piqi_db.Idtable
type idtable = T.typedef Idtable.t
let is_boot_mode = ref true
let piqi_lang_def :T.piqtype ref = ref `bool
let piqi_spec_def :T.piqtype ref = ref `bool
let piq_def :T.piqtype ref = ref `bool
let typedef_def :T.piqtype ref = ref `bool
let field_def :T.piqtype ref = ref `bool
let option_def :T.piqtype ref = ref `bool
let function_def :T.piqtype ref = ref `bool
let import_def :T.piqtype ref = ref `bool
let piqi_spec :T.piqi option ref = ref None
let piqi_lang :T.piqi option ref = ref None
let piq_spec :T.piqi option ref = ref None
let is_boot_piqi piqi =
match !piqi_spec with
| Some x -> x == piqi
| None -> false
let processing_hooks = ref []
let register_processing_hook (f :idtable -> T.piqi -> unit) =
debug "register_processing_hook(0)\n";
let idtable = Idtable.empty in
debug "register_processing_hook(1.5)\n";
f idtable (some_of !piqi_lang);
debug "register_processing_hook(1.6)\n";
f idtable (some_of !piqi_spec);
debug "register_processing_hook(1.7)\n";
f idtable (some_of !piq_spec);
debug "register_processing_hook(1)\n";
processing_hooks := !processing_hooks @ [f]
let add_typedef idtable (typedef:T.typedef) =
let name = C.typedef_name typedef in
debug "add_typedef: %s\n" name;
if Idtable.mem idtable name
then (
let prev_def = Idtable.find idtable name in
if C.is_builtin_def prev_def
then (
C.warning typedef ("override of built-in type definition " ^ U.quote name);
Idtable.add idtable name typedef
)
else
C.error typedef
("duplicate type definition " ^ U.quote name ^ "\n" ^
error_string prev_def "first defined here")
)
else
Idtable.add idtable name typedef
let add_typedefs idtable defs =
List.fold_left add_typedef idtable defs
let add_imported_typedef idtable (typedef:T.typedef) =
let open Import in
let import =
match get_parent typedef with
| `import x -> x
| _ -> assert false
in
let name = some_of import.name ^ "/" ^ C.typedef_name typedef in
debug "add_imported_typedef: %s\n" name;
Idtable.add idtable name typedef
let add_imported_typedefs idtable defs =
List.fold_left add_imported_typedef idtable defs
let find_def idtable name =
try Idtable.find idtable name
with Not_found ->
error name ("unknown type " ^ U.quote name)
let is_func_param def =
match def with
| `record x -> x.R.is_func_param
| `variant x -> x.V.is_func_param
| `enum x -> x.E.is_func_param
| `alias x -> x.A.is_func_param
| `list x -> x.L.is_func_param
let set_is_func_param_flag def =
match def with
| `record x -> x.R.is_func_param <- true
| `variant x -> x.V.is_func_param <- true
| `enum x -> x.E.is_func_param <- true
| `alias x -> x.A.is_func_param <- true
| `list x -> x.L.is_func_param <- true
let resolve_typename map name :T.piqtype =
let def = find_def map name in
(def :> T.piqtype)
let resolve_field_typename map f =
let open F in
match f.typename with
| None -> ()
| Some name ->
f.piqtype <- Some (resolve_typename map name)
let resolve_option_typename map o =
let open O in
match o.typename with
| None -> ()
| Some name ->
o.piqtype <- Some (resolve_typename map name)
let resolve_def_typenames map = function
| `record r ->
List.iter (resolve_field_typename map) r.R.field
| `variant v ->
List.iter (resolve_option_typename map) v.V.option
| `alias a ->
let piqtype =
match a.A.typename with
| Some name ->
resolve_typename map name
| None ->
let piqi_type = some_of a.A.piqi_type in
(piqi_type :> T.piqtype)
in
a.A.piqtype <- Some piqtype
| `list l ->
l.L.piqtype <- Some (resolve_typename map l.L.typename)
| `enum _ ->
()
let check_name x =
if not (Piqi_name.is_valid_name x)
then error x ("invalid name: " ^ U.quote x)
else ()
let check_opt_name = function
| None -> ()
| Some x -> check_name x
let check_dup_names what names =
match U.find_dups names with
| None -> ()
| Some (name, prev) ->
error name
("duplicate " ^ what ^ " name " ^ U.quote name ^ "\n" ^
error_string prev "first defined here")
let check_field f =
let open Field in
begin
begin
check_opt_name f.name;
match f.name, f.typename with
| None, None ->
error f "name or type must be specified for a field"
| Some _, None ->
begin
(if f.mode <> `optional
then error f "flags must be optional");
(if f.default <> None
then error f "flags may not specify default");
end
| _ ->
()
end;
if f.default <> None && f.mode <> `optional
then
error f.default "default values may only be specified for optional fields"
end
let check_def_name obj = function
| Some x -> check_name x
| None ->
error obj "missing field \"name\""
let check_record r =
check_def_name r r.R.name;
let fields = r.R.field in
List.iter check_field fields
let check_option o =
let open Option in
begin
check_opt_name o.name;
match o.name, o.typename with
| None, None ->
error o "name or type must be specified for an option"
| _ -> ()
end
let check_variant v =
check_def_name v v.V.name;
let name = some_of v.V.name in
let options = v.V.option in
if options = []
then error v ("variant " ^ U.quote name ^ " doesn't specify any options");
List.iter check_option options
let check_enum_option x =
let open O in
begin
if x.name = None
then error x ("enum options must specify name");
if x.typename <> None
then error x ("enum options must not specify type");
check_opt_name x.name;
end
let check_enum e =
check_def_name e e.E.name;
let name = some_of e.E.name in
let options = e.E.option in
if options = []
then error e ("enum " ^ U.quote name ^ " doesn't specify any options");
List.iter check_enum_option options
let check_alias a =
let open A in
begin
check_def_name a a.name;
let name = some_of a.name in
if a.typename = None && a.piqi_type = None
then
error a ("alias " ^ U.quote name ^ " must specify either piqi-type or type");
end
let check_list l =
let open L in
begin
check_def_name l l.name;
end
let check_def def =
match def with
| `record x -> check_record x
| `variant x -> check_variant x
| `enum x -> check_enum x
| `alias x -> check_alias x
| `list x -> check_list x
let check_resolved_alias a =
let open A in
begin
(match some_of a.piqtype with
| `alias b ->
if a.piqi_type <> None && a.piqi_type <> b.piqi_type
then error a "piqi-type doesn't match piqi-type in the redefined alias"
| #T.piqi_type -> ()
| _ when a.piqi_type <> None ->
error a "piqi-type can not be specified for an non-alias"
| _ -> ()
);
end
let check_resolved_def def =
match def with
| `record x ->
let names = List.map (fun x -> name_of_field x) x.R.field in
check_dup_names "field" names
| `variant x ->
let names = List.map (fun x -> name_of_option x) x.V.option in
check_dup_names "option" names
| `enum x ->
let names = List.map (fun x -> name_of_option x) x.E.option in
check_dup_names "enum option" names
| `alias x ->
check_resolved_alias x
| _ -> ()
let check_no_infinite_types ~parent defs =
let black = ref [] in
let grey = ref [] in
let set_color node = function
| `grey ->
grey := node::!grey
| color ->
(match !grey with
| h::t when h == node ->
grey := t
| _ ->
assert false
);
if color = `black
then
black := node::!black
in
let get_color node =
if List.memq node !black
then `black
else if List.memq node !grey
then `grey
else `white
in
let is_local_type piqtype =
match piqtype with
| (#T.typedef as x) ->
C.get_parent x == parent
| _ ->
true
in
let infinite_type = ref None in
let rec finite_path_exists piqtype =
let finite = true in
let infinite err =
infinite_type := Some (piqtype, err);
false
in
match get_color piqtype with
| `black ->
true
| `grey ->
let err =
match piqtype with
| `alias x ->
"alias " ^ U.quote (some_of x.A.name) ^ " forms a loop"
| _ ->
""
in
infinite err
| `white ->
set_color piqtype `grey;
let res =
if not (is_local_type piqtype)
then
finite
else
match piqtype with
| `record x ->
let rec check_fields = function
| [] ->
finite
| f::tail ->
(match f.F.piqtype with
| Some piqtype when f.F.mode = `required ->
if not (finite_path_exists piqtype)
then
infinite (
"record " ^ U.quote (some_of x.R.name) ^
" is an infinite type (field " ^ U.quote (name_of_field f) ^ " forms a loop)"
)
else
check_fields tail
| _ ->
check_fields tail
)
in
check_fields x.R.field
| `variant x ->
let options = x.V.option in
let is_variant_finite =
if List.exists (fun x -> x.O.piqtype = None) options
then true
else List.exists (fun x -> finite_path_exists (some_of x.O.piqtype)) options
in
if not is_variant_finite
then infinite ("variant " ^ U.quote (some_of x.V.name) ^ " is an infinite type (each option forms a loop)")
else finite
| `list x ->
if not (finite_path_exists (some_of x.L.piqtype))
then infinite ("list " ^ U.quote (some_of x.L.name) ^ " forms a loop")
else finite
| `alias x ->
finite_path_exists (some_of x.A.piqtype)
| _ ->
finite
in
if res
then set_color piqtype `black
else set_color piqtype `white;
res
in
let check_typedef x =
if not (finite_path_exists (x :> T.piqtype))
then
let piqtype, err = some_of !infinite_type in
error piqtype err
in
let variants, non_variants =
List.partition (function `variant _ -> true | _ -> false) defs
in
List.iter check_typedef (non_variants @ variants)
let is_valid_scoped_extension_name name =
if not (Piqi_name.is_valid_name name ~allow:".")
then false
else
match U.string_split name '.' with
| [a; b] -> Piqi_name.is_valid_name a && Piqi_name.is_valid_name b
| _ -> false
let check_extension_name = function
| `name name | `typedef name | `import name | `func name ->
if not (Piqi_name.is_valid_name name)
then error name "invalid extension name"
| `field name | `option name ->
if not (is_valid_scoped_extension_name name)
then error name "invalid scoped extension name"
let check_extension_spec spec =
check_extension_name spec;
match spec with
| `name name ->
C.warning name "use of .name for extending typedefs is deprecated; use .typedef instead"
| _ -> ()
let check_extension x =
let open Extend in
begin
if x.what = [] && x.piqi_with = []
then error x ("extension doesn't specify any names");
if x.quote = [] && x.piqi_with = []
then error x ("extension doesn't specify any extensions");
if x.quote <> []
then C.warning (List.hd x.quote) "this style of extensions is deprecated; always use .with prefix";
List.iter check_extension_spec x.what
end
let debug_loc prefix =
debug "%s out count = %d, in count = %d\n" prefix !Piqloc.ocount !Piqloc.icount
let assert_loc () =
if (!Piqloc.ocount <> !Piqloc.icount)
then
let s = Printf.sprintf "internal_error: out count = %d, in count = %d\n" !Piqloc.ocount !Piqloc.icount in
piqi_warning s
let add_fake_loc (obj :Piqobj.obj) =
Piqloc.do_add_fake_loc obj ~label:"_self_piqi_default";
match obj with
| `enum x ->
Piqloc.do_add_fake_loc x ~label:"_self_piqi_default_enum"
| _ ->
()
let resolve_default_value piqi_any piqtype =
assert_loc ();
debug_loc "resolve_default_value(0)";
let any = Piqobj.any_of_piqi_any piqi_any in
Piqobj.resolve_obj any ~piqtype;
if !is_boot_mode
then add_fake_loc (some_of any.Piqobj.Any.obj);
Piqloc.icount := !Piqloc.ocount;
debug_loc "resolve_default_value(1)";
()
let resolve_field_default x =
let open F in
match x.default, x.piqtype with
| None, _ -> ()
| Some piqi_any, Some piqtype ->
debug "resolve_field_default: %s\n" (C.name_of_field x);
resolve_default_value piqi_any piqtype
| _ ->
assert false
let resolve_field_piq_flag_default x =
let open F in
match x.piq_flag_default, x.piqtype with
| None, _ -> ()
| Some piqi_any, Some piqtype ->
debug "resolve_field_default: %s\n" (C.name_of_field x);
resolve_default_value piqi_any piqtype
| _ ->
assert false
let resolve_defaults = function
| `record x ->
List.iter resolve_field_default x.R.field;
List.iter resolve_field_piq_flag_default x.R.field
| _ ->
()
let copy_obj (x:'a) :'a =
Obj.obj (Obj.dup (Obj.repr x))
let copy_obj x = reference copy_obj x
let copy_obj_list l = List.map copy_obj l
let copy_variant ?(copy_parts=true) x =
if copy_parts
then Piqloc.addrefret x V.({x with option = copy_obj_list x.option})
else copy_obj x
let copy_enum ?(copy_parts=true) x =
if copy_parts
then Piqloc.addrefret x E.({x with option = copy_obj_list x.option})
else copy_obj x
let copy_record ?(copy_parts=true) x =
if copy_parts
then Piqloc.addrefret x R.({x with field = copy_obj_list x.field})
else copy_obj x
let copy_def ~copy_parts (x:T.typedef) =
let res =
match x with
| `record x -> `record (copy_record ~copy_parts x)
| `variant x -> `variant (copy_variant ~copy_parts x)
| `enum x -> `enum (copy_enum ~copy_parts x)
| `alias x -> `alias (copy_obj x)
| `list x -> `list (copy_obj x)
in
Piqloc.addrefret x res
let copy_defs ?(copy_parts=true) defs = List.map (copy_def ~copy_parts) defs
let copy_imports l = List.map copy_obj l
let transform_flag x =
let open F in
if x.typename = None
then (
x.typename <- Some "bool";
x.default <- Some (Piqobj.make_piqi_any_from_obj (`bool false));
);
if x.typename = Some "bool" && x.piq_flag_default = None
then (
x.piq_flag_default <- Some (Piqobj.make_piqi_any_from_obj (`bool true));
)
let transform_flags = function
| `record x ->
List.iter transform_flag x.R.field
| _ ->
()
let resolve_defs ~piqi idtable (defs:T.typedef list) =
List.iter check_def defs;
List.iter transform_flags defs;
let idtable = add_typedefs idtable defs in
List.iter (resolve_def_typenames idtable) defs;
let parent = `piqi piqi in
List.iter (fun def -> set_parent def parent) defs;
List.iter check_resolved_def defs;
check_no_infinite_types defs ~parent;
Piqi_protobuf.process_typedefs defs;
Piq.process_typedefs defs;
idtable
let check_defs ~piqi idtable defs =
ignore (resolve_defs idtable (copy_defs defs) ~piqi)
let read_piqi_common fname piq_parser :piq_ast =
let res = Piq_parser.read_all piq_parser in
if res = []
then piqi_warning ("piqi file is empty: " ^ fname);
let res = `list res in
let startloc = (fname, 1, 1) in
let ast = Piqloc.addlocret startloc res in
Piq_parser.expand ast
let read_piqi_channel fname ch :piq_ast =
let piq_parser = Piq_parser.init_from_channel fname ch in
read_piqi_common fname piq_parser
let read_piqi_string fname content :piq_ast =
let piq_parser = Piq_parser.init_from_string fname content in
read_piqi_common fname piq_parser
let open_piqi fname =
try Pervasives.open_in_bin fname
with Sys_error s ->
piqi_error ("error opening piqi file: " ^ s)
let read_piqi_file fname :piq_ast =
let ch = open_piqi fname in
let res =
try read_piqi_channel fname ch
with x ->
Pervasives.close_in ch;
raise x
in
Pervasives.close_in ch;
res
let check_modname x =
if Piqi_name.is_valid_modname x
then ()
else error x ("invalid piqi module name: " ^ x)
let check_assign_module_name ?modname fname (piqi:T.piqi) =
let open P in
match piqi.modname, modname with
| Some x, Some x' ->
check_modname x;
if x <> x'
then
error piqi
("module loaded as " ^ U.quote x' ^
" has different name " ^ U.quote x)
else ()
| Some x, None ->
check_modname x
| None, Some x ->
piqi.modname <- modname
| None, None ->
let basename = Piqi_file.basename fname in
if Piqi_name.is_valid_modname basename
then piqi.modname <- Some basename
else error piqi "piqi module name can not be derived from the file name"
let assign_import_name x =
let open Import in
match x.name with
| Some x ->
check_name x
| None ->
let name = Piqi_name.get_local_name x.modname in
x.name <- Some name
let name_of_import x =
let open Import in
match x.name with
| Some x -> x
| None ->
Piqi_name.get_local_name x.modname
let mlobj_to_piqobj piqtype wire_generator mlobj =
debug_loc "mlobj_to_piqobj(0)";
assert_loc ();
let binobj = Piqirun.gen_binobj wire_generator mlobj in
debug_loc "mlobj_to_piqobj(1.5)";
let piqobj =
U.with_bool C.is_inside_parse_piqi true
(fun () ->
C.with_resolve_defaults false (fun () -> Piqobj_of_protobuf.parse_binobj piqtype binobj)
)
in
debug_loc "mlobj_to_piqobj(1)";
assert_loc ();
piqobj
let mlobj_to_ast piqtype wire_generator mlobj =
debug_loc "mlobj_to_ast(0)";
let piqobj = mlobj_to_piqobj piqtype wire_generator mlobj in
debug_loc "mlobj_to_ast(1.5)";
let ast = Piqobj_to_piq.gen_obj piqobj in
debug_loc "mlobj_to_ast(1)";
assert_loc ();
ast
let mlobj_of_piqobj wire_parser piqobj =
let binobj = Piqobj_to_protobuf.gen_binobj piqobj in
let mlobj = Piqirun.parse_binobj wire_parser binobj in
mlobj
let mlobj_of_ast piqtype wire_parser ast =
debug_loc "mlobj_of_ast(0)";
let piqobj =
U.with_bool C.is_inside_parse_piqi true
(fun () ->
C.with_resolve_defaults true (fun () -> Piqobj_of_piq.parse_obj piqtype ast)
)
in
debug_loc "mlobj_of_ast(1.5)";
let mlobj = mlobj_of_piqobj wire_parser piqobj in
debug_loc "mlobj_of_ast(1)";
assert_loc ();
mlobj
let parse_piqi ast =
debug "parse_piqi(0)\n";
let res = mlobj_of_ast !piqi_lang_def T.parse_piqi ast in
debug "parse_piqi(1)\n";
res
let is_unknown_field custom_fields x =
match x with
| `named {Piq_ast.Named.name = name} | `name name ->
if List.mem name custom_fields
then false
else true
| _ -> true
let check_unknown_fields ?prepend unknown_fields custom_fields =
let unknown_fields =
List.filter (is_unknown_field custom_fields) unknown_fields
in
let warn x =
(match prepend with
| Some f -> f ()
| None -> ());
Piqobj_of_piq.warn_unknown_field x
in
List.iter warn unknown_fields
let parse_scoped_name name =
match U.string_split name '.' with
| [def_name; nested_name] -> def_name, nested_name
| _ -> assert false
let list_replace l f x =
let rec aux accu = function
| [] ->
assert false
| h::t ->
if f h
then List.rev_append accu (x::t)
else aux (h::accu) t
in
aux [] l
let name_of_function x = x.T.Func.name
let idtable_of_defs defs =
List.fold_left
(fun t x -> Idtable.add t (C.typedef_name x) x)
Idtable.empty defs
let idtable_of_imports imports =
List.fold_left
(fun t x -> Idtable.add t (name_of_import x) x)
Idtable.empty imports
let idtable_of_functions funcs =
List.fold_left
(fun t x -> Idtable.add t (name_of_function x) x)
Idtable.empty funcs
let list_of_idtable idtable l name_of_elem =
List.map (fun x -> Idtable.find idtable (name_of_elem x)) l
let find_field r field_name scoped_name =
try
List.find (fun x -> name_of_field x = field_name) r.R.field
with Not_found ->
error scoped_name ("record doesn't have field named " ^ U.quote field_name)
let find_option v option_name scoped_name =
try
List.find (fun x -> name_of_option x = option_name) v.V.option
with Not_found ->
error scoped_name ("variant doesn't have option named " ^ U.quote option_name)
let replace_field r f field_name =
let fields = r.R.field in
let new_fields = list_replace fields (fun x -> name_of_field x = field_name) f in
Piqloc.addref fields new_fields;
let new_record = R.({r with field = new_fields}) in
Piqloc.addref r new_record;
new_record
let replace_option v o option_name =
let options = v.V.option in
let new_options = list_replace options (fun x -> name_of_option x = option_name) o in
Piqloc.addref options new_options;
let new_variant = V.({v with option = new_options}) in
Piqloc.addref v new_variant;
new_variant
let apply_extensions obj obj_def obj_parse_f obj_gen_f extension_entries custom_fields ~override =
let trace' = !Piqloc.trace in
debug "apply_extensions(0)\n";
let obj_ast = mlobj_to_ast obj_def obj_gen_f obj in
let extension_asts = List.map (fun x -> Piq_parser.expand (Piqobj.piq_of_piqi_any x)) extension_entries in
let override l =
if not override
then l
else
let extension_labels =
U.flatmap (function
| `named x -> [x.Piq_ast.Named.name]
| `name name -> [name]
| _ -> []
) extension_asts
in
let is_overridden = function
| `named x ->
let res = List.mem x.Piq_ast.Named.name extension_labels in
res
| `name name ->
let res = List.mem name extension_labels in
res
| _ -> false
in
List.filter (fun x -> not (is_overridden x)) l
in
let extended_obj_ast =
match obj_ast with
| `named ({Piq_ast.Named.value = ((`list l) as _ref)} as x) ->
let v = `list (override l @ extension_asts) in
let v = Piq_parser.piq_addrefret _ref v in
let res = `named {x with Piq_ast.Named.value = v} in
ignore (Piq_parser.piq_addrefret x res);
res
| (`list l) as _ref ->
let v = `list (override l @ extension_asts) in
Piq_parser.piq_addrefret _ref v
| _ ->
assert false
in
let context_str = "while applying extensions to this element ..." in
debug "apply_extensions(1)\n";
let extended_obj =
try
mlobj_of_ast obj_def obj_parse_f extended_obj_ast
with (C.Error _) as e ->
(
prerr_endline (C.error_string obj context_str);
raise e
)
in
debug "apply_extensions(2)\n";
Piqloc.trace := trace';
let unknown_fields = Piqobj_of_piq.get_unknown_fields () in
check_unknown_fields unknown_fields custom_fields
~prepend:(fun () -> C.warning obj context_str);
extended_obj
let apply_option_extensions idtable scoped_name extension_entries custom_fields ~override =
let def_name, option_name = parse_scoped_name scoped_name in
match find_def idtable def_name with
| `variant v ->
let option = find_option v option_name scoped_name in
let extended_option =
apply_extensions option !option_def T.parse_option T.gen__option
extension_entries custom_fields ~override
in
let extended_variant = replace_option v extended_option option_name in
let extended_typedef = `variant extended_variant in
Piqloc.addref extended_variant extended_typedef;
Idtable.add idtable def_name extended_typedef
| _ ->
error scoped_name
("can't apply option extensions no non-variant definition " ^ U.quote def_name)
let apply_field_extensions idtable scoped_name extension_entries custom_fields ~override =
let def_name, field_name = parse_scoped_name scoped_name in
match find_def idtable def_name with
| `record r ->
let field = find_field r field_name scoped_name in
let extended_field =
apply_extensions field !field_def T.parse_field T.gen__field
extension_entries custom_fields ~override
in
let extended_record = replace_field r extended_field field_name in
let extended_typedef = `record extended_record in
Piqloc.addref extended_record extended_typedef;
Idtable.add idtable def_name extended_typedef
| _ ->
error scoped_name
("can't apply field extensions no non-record definition " ^ U.quote def_name)
let extend_import idtable name extension_entries custom_fields ~override =
let import =
try Idtable.find idtable name
with Not_found -> error name ("unknown import " ^ U.quote name)
in
let extended_import =
apply_extensions import !import_def T.parse_import T.gen__import
extension_entries custom_fields ~override
in
Idtable.add idtable name extended_import
let extend_imports imports extensions custom_fields =
let idtable = idtable_of_imports imports in
let idtable =
List.fold_left
(fun idtable (spec, override, extension_items) ->
let name =
match spec with
| `import name -> name
| _ -> assert false
in
extend_import idtable name extension_items custom_fields ~override
)
idtable
extensions
in
list_of_idtable idtable imports name_of_import
let extend_function idtable name extension_entries custom_fields ~override =
let func =
try Idtable.find idtable name
with Not_found -> error name ("unknown function " ^ U.quote name)
in
let extended_func =
apply_extensions func !function_def T.parse_func T.gen__func
extension_entries custom_fields ~override
in
Idtable.add idtable name extended_func
let extend_functions funs extensions custom_fields =
let idtable = idtable_of_functions funs in
let idtable =
List.fold_left
(fun idtable (spec, override, extension_items) ->
let name =
match spec with
| `func name -> name
| _ -> assert false
in
extend_function idtable name extension_items custom_fields ~override
)
idtable
extensions
in
list_of_idtable idtable funs name_of_function
let apply_def_extensions idtable spec extension_entries custom_fields ~override =
match spec with
| `name name | `typedef name ->
let typedef = find_def idtable name in
let extended_typedef =
apply_extensions typedef !typedef_def T.parse_typedef T.gen__typedef
extension_entries custom_fields ~override
in
Idtable.add idtable name extended_typedef
| `field x ->
apply_field_extensions idtable x extension_entries custom_fields ~override
| `option x ->
apply_option_extensions idtable x extension_entries custom_fields ~override
| _ ->
assert false
let apply_defs_extensions defs extensions custom_fields =
let defs_extensions, other_extensions =
List.partition (fun (spec, _, _) ->
match spec with
| `name _ | `typedef _ -> true
| _ -> false
) extensions
in
let extensions = defs_extensions @ other_extensions in
let idtable = idtable_of_defs defs in
let idtable =
List.fold_left
(fun idtable (spec, override, extension_items) ->
apply_def_extensions idtable spec extension_items custom_fields ~override
)
idtable extensions
in
list_of_idtable idtable defs C.typedef_name
let partition_extensions extensions =
let open Extend in
let l = U.flatmap
(fun x -> List.map (fun what -> what, x.override, (x.piqi_with @ x.quote)) x.what)
extensions
in
let d, f, i =
List.fold_left
(fun (d, f, i) ((spec, _, _) as x) ->
match spec with
| `func _ -> (d, x::f, i)
| `import _ -> (d, f, x::i)
| `typedef _ | `name _ | `field _ | `option _ -> (x::d, f, i))
([], [], []) l
in
(List.rev d, List.rev f, List.rev i)
let get_imported_defs imports =
let aux x =
let piqi = some_of x.Import.piqi in
let imported_defs = copy_defs piqi.P.resolved_typedef ~copy_parts:false in
List.iter (fun def -> set_parent def (`import x)) imported_defs;
imported_defs
in
U.flatmap aux imports
let make_param_name func param_name =
let func_name = func.T.Func.name in
let type_name = func_name ^ "-" ^ param_name in
type_name
let make_param_alias_from_name name x =
let res =
A.({
(T.default_alias ()) with
name = Some name;
typename = Some x;
is_func_param = true;
})
in
Piqloc.addrefret x res
let make_param_record name x =
let res = R.({x with name = Some name}) in
let res = copy_record res in
Piqloc.addrefret x res
let make_param_variant name x =
let res = V.({x with name = Some name}) in
let res = copy_variant res in
Piqloc.addrefret x res
let make_param_enum name x =
let res = E.({x with name = Some name}) in
let res = copy_enum res in
Piqloc.addrefret x res
let make_param_list name x =
let res = L.({x with name = Some name}) in
Piqloc.addrefret x res
let make_param_alias name x =
let res = A.({x with name = Some name}) in
Piqloc.addrefret x res
let resolve_param func param_name param =
let type_name = make_param_name func param_name in
Piqloc.addref param type_name;
let def =
match param with
| `name x ->
`alias (make_param_alias_from_name type_name x)
| `record x ->
`record (make_param_record type_name x)
| `variant x ->
`variant (make_param_variant type_name x)
| `enum x ->
`enum (make_param_enum type_name x)
| `list x ->
`list (make_param_list type_name x)
| `alias x ->
`alias (make_param_alias type_name x)
in
Piqloc.addref param def;
def
let process_func f =
let open T.Func in
let set_input def = set_is_func_param_flag def; f.resolved_input <- Some def
and set_output def = set_is_func_param_flag def; f.resolved_output <- Some def
and set_error def = set_is_func_param_flag def; f.resolved_error <- Some def
in
let process_param param_name param set_f =
match param with
| None -> []
| Some param ->
let def = resolve_param f param_name param in
let res = (def, (C.typedef_name def, set_f)) in
[res]
in
let input = process_param "input" f.input set_input
and output = process_param "output" f.output set_output
and error = process_param "error" f.error set_error
in
(input @ output @ error)
let get_function_defs (non_func_defs: T.typedef list) resolved_funs =
let defs_pairs = List.map process_func resolved_funs in
let defs_pairs = List.concat defs_pairs in
let defs, name_setter_assoc_l = List.split defs_pairs in
let setter_map = List.fold_left
(fun t (name, setter) -> Idtable.add t name setter)
Idtable.empty
name_setter_assoc_l
in
let find_existing_def name =
List.find
(fun def -> name = C.typedef_name def)
non_func_defs
in
let defs = List.filter
(function
| `alias implicit_alias when implicit_alias.A.is_func_param ->
(try
let def = find_existing_def (some_of implicit_alias.A.name) in
match def with
| `alias explicit_alias when explicit_alias.A.typename <> implicit_alias.A.typename ->
if implicit_alias.A.typename = implicit_alias.A.name
then false
else true
| _ ->
false
with Not_found ->
true
)
| _ ->
true
)
defs
in
defs, setter_map
let prepare_included_piqi_ast ast =
match ast with
| `list l ->
List.filter
(function
| `named {Piq_ast.Named.name = "module"} -> false
| `named {Piq_ast.Named.name = "include"} -> false
| _ -> true
)
l
| _ ->
assert false
let expand_includes piqi included_piqi =
let included_asts =
U.flatmap (fun x -> prepare_included_piqi_ast (some_of x.P.ast)) included_piqi
in
let ast = some_of piqi.P.ast in
let new_ast =
match ast with
| `list l ->
let res = `list (l @ included_asts) in
Piqloc.addrefret ast res
| _ ->
assert false
in
let res_piqi = parse_piqi new_ast in
ignore (Piqobj_of_piq.get_unknown_fields ());
res_piqi.P.ast <- Some ast;
res_piqi
let is_extension modname =
String.contains (Piqi_name.get_local_name modname) '.'
let find_piqi_file from_piqi modname =
if from_piqi.P.is_embedded <> None
then
let fname =
try
ignore (Piqi_db.find_piqi modname);
modname ^ ".piqi"
with Not_found ->
Piqi_file.find_piqi modname
in
(modname, fname)
else
let dir = Filename.dirname (some_of from_piqi.P.file) in
let found_dir, found_fname = Piqi_file.find_piqi_file modname ~extra_paths:[dir] in
let fname = Filename.concat found_dir found_fname in
let is_existing_path = List.mem dir !Piqi_config.paths in
let modname =
if is_existing_path || found_dir <> dir
then modname
else
let referee_modname = some_of from_piqi.P.modname in
match Piqi_name.get_module_name referee_modname with
| None ->
modname
| Some dirname ->
dirname ^ "/" ^ modname
in
(modname, fname)
let find_extensions piqi =
let modname = some_of piqi.P.modname in
let find_extension ext_name =
try
let modname = modname ^ "." ^ ext_name in
let modname, fname = find_piqi_file piqi modname in
trace "found extension: %s (%s)\n" modname fname;
[modname]
with Not_found ->
[]
in
if is_extension modname
then []
else U.flatmap find_extension !Config.extensions
let pre_process_piqi ?modname ~fname ?(ast: piq_ast option) (orig_piqi: T.piqi) =
if ast <> None
then (
let unknown_fields = Piqobj_of_piq.get_unknown_fields () in
let custom_fields = orig_piqi.P.custom_field in
check_unknown_fields unknown_fields custom_fields;
);
let piqi = copy_obj orig_piqi in
piqi.P.original_piqi <- Some orig_piqi;
piqi.P.ast <- ast;
piqi.P.file <- Some fname;
check_assign_module_name ?modname fname piqi;
piqi
let is_processed piqi =
piqi.P.included_piqi <> []
let is_being_processed piqi include_path =
if is_processed piqi
then false
else
match piqi.P.modname with
| None -> false
| Some n ->
List.exists (fun x -> n = some_of x.P.modname) include_path
let rec process_piqi ?modname ?(include_path=[]) ?(fname="") ?(ast: piq_ast option) ~cache (input_piqi: T.piqi) =
if is_processed input_piqi || is_being_processed input_piqi include_path
then input_piqi
else (
let piqi =
match input_piqi.P.original_piqi with
| None ->
let piqi = pre_process_piqi ?modname ~fname ?ast input_piqi in
if cache then Piqi_db.add_piqi piqi;
trace "processing module %s\n" (some_of piqi.P.modname);
piqi
| Some _ ->
trace "processing already pre-processed module %s\n" (some_of input_piqi.P.modname);
input_piqi
in
let orig_piqi = some_of piqi.P.original_piqi in
let ast = piqi.P.ast in
trace_enter ();
let extension_includes =
if ast = None
then
[]
else
List.map (fun x -> Includ.({modname = x; unparsed_piq_ast = None}))
(find_extensions piqi)
in
let includes = piqi.P.includ @ extension_includes in
let included_piqi = load_includes piqi includes ~include_path in
let piqi =
if included_piqi = []
then piqi
else (
let extended_piqi = expand_includes piqi included_piqi in
extended_piqi.P.original_piqi <- Some orig_piqi;
extended_piqi.P.modname <- piqi.P.modname;
extended_piqi.P.file <- piqi.P.file;
Piqi_db.replace_piqi extended_piqi;
List.iter (fun p ->
if List.exists (fun pp -> pp == piqi) p.P.included_piqi
then
p.P.included_piqi <- List.map (
fun pp -> if pp == piqi then extended_piqi else pp
) p.P.included_piqi
) included_piqi;
extended_piqi
)
in
let modules = included_piqi @ [piqi] in
piqi.P.included_piqi <- modules;
List.iter check_extension orig_piqi.P.extend;
let defs_extensions, func_extensions, import_extensions =
partition_extensions piqi.P.extend
in
let custom_fields = piqi.P.custom_field in
let imports = piqi.P.import in
let extended_imports =
if import_extensions = []
then imports
else extend_imports imports import_extensions custom_fields
in
let resolved_imports = copy_imports extended_imports in
load_imports piqi resolved_imports;
piqi.P.resolved_import <- resolved_imports;
piqi.P.extended_import <- extended_imports;
let imported_defs = get_imported_defs resolved_imports in
piqi.P.imported_typedef <- imported_defs;
let idtable = Idtable.empty in
let idtable = add_imported_typedefs idtable imported_defs in
let idtable =
if not !Config.flag_no_builtin_types && not !is_boot_mode && not (C.is_self_spec piqi)
then add_typedefs idtable !C.builtin_typedefs
else idtable
in
let funs = piqi.P.func in
let func_names = List.map (fun x -> x.T.Func.name) funs in
List.iter check_name func_names;
check_dup_names "function" func_names;
let extended_funs =
if func_extensions = []
then funs
else extend_functions funs func_extensions custom_fields
in
let resolved_funs = List.map copy_obj extended_funs in
piqi.P.resolved_func <- resolved_funs;
piqi.P.extended_func <- extended_funs;
let func_defs, func_defs_map = get_function_defs piqi.P.typedef resolved_funs in
piqi.P.func_typedef <- func_defs;
let defs = piqi.P.typedef @ func_defs in
let extended_defs =
if defs_extensions = []
then (
List.iter check_def defs;
defs
)
else (
check_defs idtable defs ~piqi;
apply_defs_extensions defs defs_extensions custom_fields
)
in
let resolved_defs = copy_defs extended_defs in
List.iter
(fun def ->
try
let setter = Idtable.find func_defs_map (C.typedef_name def) in
setter def
with
Not_found -> ()
)
resolved_defs;
let is_func_def name =
List.exists
(fun def -> name = C.typedef_name def)
func_defs
in
let extended_func_defs, extended_defs = List.partition
(fun def -> is_func_def (C.typedef_name def))
extended_defs
in
if ast <> None && C.is_self_spec piqi
then Piqi_protobuf.add_hashcodes resolved_defs;
let idtable = resolve_defs idtable resolved_defs ~piqi in
piqi.P.extended_typedef <- extended_defs;
piqi.P.extended_func_typedef <- extended_func_defs;
piqi.P.resolved_typedef <- resolved_defs;
List.iter (fun f -> f idtable piqi) !processing_hooks;
List.iter resolve_defaults resolved_defs;
trace_leave ();
piqi
)
and load_piqi_file ?modname ?include_path fname =
trace "file: %s\n" fname;
trace_enter ();
let ast = read_piqi_file fname in
let cache = modname <> None in
let piqi = load_piqi_ast ?modname ?include_path ~cache fname ast in
trace_leave ();
piqi
and load_piqi_ast ?modname ?(include_path=[]) ~cache fname (ast :piq_ast) =
let piqi = parse_piqi ast in
process_piqi piqi ?modname ~include_path ~cache ~ast ~fname
and load_piqi_module ?(include_path=[]) modname fname =
try
let piqi = Piqi_db.find_piqi modname in
process_piqi piqi ~include_path ~cache:false
with Not_found ->
load_piqi_file fname ~modname ~include_path
and load_imports piqi l =
List.iter (load_import piqi) l;
let rec check_dups = function
| [] -> ()
| h::t ->
begin
if List.exists (fun x -> h.Import.name = x.Import.name) t
then error h ("duplicate import name " ^ U.quote (some_of h.Import.name));
if List.exists (fun x -> h.Import.piqi == x.Import.piqi) t
then warning h ("duplicate import module " ^ U.quote h.Import.modname);
check_dups t
end
in
check_dups l;
if List.exists (fun x -> some_of x.Import.piqi == piqi) l
then error piqi "imported piqi modules form a loop"
and load_import from_piqi x =
let open Import in (
trace "import: %s\n" x.modname;
check_modname x.modname;
let scoped_modname, fname =
try find_piqi_file from_piqi x.modname
with Not_found ->
error x.modname ("imported piqi module is not found: " ^ U.quote x.modname)
in
x.orig_modname <- Some x.modname;
x.modname <- scoped_modname;
let piqi = load_piqi_module scoped_modname fname in
x.piqi <- Some piqi;
assign_import_name x;
)
and load_includes ~include_path piqi l =
List.iter (fun x ->
if x.Includ.modname = some_of piqi.P.modname
then error x "piqi module includes itself"
) l;
let remove_extensions l include_path =
if List.exists (fun x ->
let n = x.Includ.modname in
is_extension n &&
List.exists (fun x -> n = some_of x.P.modname) include_path
) l
then
List.filter (fun x ->
let n = x.Includ.modname in
let keep = not (is_extension x.Includ.modname) in
if not keep
then trace "removing extension include %s\n" (U.quote n);
keep
) l
else l
in
let new_include_path = piqi :: include_path in
let l = remove_extensions l include_path in
let included_piqi = List.map (load_include piqi ~include_path:new_include_path) l in
let process_recursive_piqi p =
trace "included piqi module %s forms a loop\n" (U.quote (some_of p.P.modname));
let includes = remove_extensions p.P.includ new_include_path in
List.iter
(fun x ->
let n = x.Includ.modname in
if List.exists (fun p -> n = some_of p.P.modname) new_include_path
then error x ("recursive include " ^ U.quote n)
)
includes;
trace_enter ();
let res = load_includes ~include_path piqi includes in
trace_leave ();
res
in
let l = U.flatmap
(fun x ->
let res = x.P.included_piqi in
if res = []
then
(process_recursive_piqi x) @ [ x ]
else
res
)
included_piqi
in
let res = U.uniqq l in
List.filter (fun x -> x != piqi) res
and load_include ~include_path from_piqi x =
let open Includ in (
trace "include: %s\n" x.modname;
check_modname x.modname;
let scoped_modname, fname =
try find_piqi_file from_piqi x.modname
with Not_found ->
error x.modname ("included piqi module is not found: " ^ U.quote x.modname)
in
x.modname <- scoped_modname;
load_piqi_module scoped_modname fname ~include_path
)
let piqi_loader ?modname fname =
load_piqi_file ?modname fname
let embedded_modname = "embedded/piqi-lang"
let find_embedded_piqtype name =
Piqi_db.find_piqtype (embedded_modname ^ "/" ^ name)
let boot () =
trace "boot(0)\n";
trace "boot(1)\n";
let lang = process_piqi Piqi_boot.piqi_lang ~cache:false in
piqi_lang := Some lang;
trace "boot(2)\n";
let spec = process_piqi Piqi_boot.piqi_spec ~cache:false in
piqi_spec := Some spec;
trace "boot(3)\n";
C.builtin_typedefs := List.filter C.is_builtin_def spec.P.resolved_typedef;
spec.P.modname <- Some "embedded/piqi";
Piqi_db.add_piqi spec;
lang.P.modname <- Some embedded_modname;
Piqi_db.add_piqi lang;
piqi_lang_def := find_embedded_piqtype "piqi";
piqi_spec_def := Piqi_db.find_piqtype "embedded/piqi/piqi";
typedef_def := find_embedded_piqtype "typedef";
field_def := find_embedded_piqtype "field";
option_def := find_embedded_piqtype "option";
function_def := find_embedded_piqtype "function";
import_def := find_embedded_piqtype "import";
is_boot_mode := false;
trace "boot_piq(0)\n";
let piqi = process_piqi Piqi_boot.piq ~cache:false in
piq_spec := Some piqi;
piqi.P.modname <- Some "embedded/piq";
Piqi_db.add_piqi piqi;
piq_def := Piqi_db.find_piqtype "piq";
debug "boot_piq(1)\n";
Piqloc.resume ();
Piqloc.preserve ();
Piqi_db.piqi_loader := Some piqi_loader;
trace "boot(1)\n";
()
let _ =
(
boot ();
)
let load_piqi fname ch :T.piqi =
trace "loading piqi file: %s\n" fname;
trace_enter ();
let ast = read_piqi_channel fname ch in
let piqi = load_piqi_ast fname ast ~cache:true in
trace_leave ();
piqi
let reconsitute_extended_functions funs func_typedefs =
let idtable = add_typedefs Idtable.empty func_typedefs in
let reconstitute_param f param_name orig_param =
match orig_param with
| None
| Some (`name _) ->
orig_param
| _ ->
let type_name = make_param_name f param_name in
let typedef = Idtable.find idtable type_name in
let embedded_typedef =
match typedef with
| `record x ->
`record {x with R.name = None}
| `variant x ->
`variant {x with V.name = None}
| `enum x ->
`enum {x with E.name = None}
| `list x ->
`list {x with L.name = None}
| `alias x ->
`alias {x with A.name = None}
in
Some (embedded_typedef :> T.function_param)
in
let reconsitute_extended_function f =
T.Func.({
f with
input = reconstitute_param f "input" f.input;
output = reconstitute_param f "output" f.output;
error = reconstitute_param f "error" f.error;
})
in
List.map reconsitute_extended_function funs
let expand_function f =
let transform_param param_name param =
match param with
| None ->
None
| Some (`name _) ->
param
| Some _ ->
let type_name = make_param_name f param_name in
Some (`name type_name)
in
T.Func.({
f with
input = transform_param "input" f.input;
output = transform_param "output" f.output;
error = transform_param "error" f.error;
})
let expand_piqi ~extensions ~functions piqi =
let open P in
let orig_piqi = some_of piqi.original_piqi in
let res_piqi = {
orig_piqi with
includ = [];
unparsed_piq_ast = piqi.unparsed_piq_ast;
}
in
let res_piqi =
if not extensions
then res_piqi
else
{
res_piqi with
extend = [];
typedef = piqi.extended_typedef;
import = piqi.extended_import;
func = reconsitute_extended_functions piqi.extended_func piqi.extended_func_typedef;
}
in
let res_piqi =
if not functions
then res_piqi
else
let func_typedefs =
if extensions
then piqi.extended_func_typedef
else piqi.func_typedef
in
{
res_piqi with
typedef = res_piqi.typedef @ func_typedefs;
func = List.map expand_function res_piqi.func;
}
in res_piqi
let lang_to_spec piqi =
let open P in
let res_piqi = expand_piqi piqi ~extensions:true ~functions:true in
List.iter transform_flags res_piqi.typedef;
res_piqi
let piqi_to_ast ?(is_external_mode=true) piqi =
debug "piqi_to_ast(0)\n";
Piqloc.pause ();
let ast =
U.with_bool Piqobj_to_piq.is_external_mode is_external_mode
(fun () -> mlobj_to_ast !piqi_lang_def T.gen__piqi piqi)
in
Piqloc.resume ();
debug "piqi_to_ast(1)\n";
ast
let transform_piqi_ast (ast: piq_ast) =
let tr = Piq_ast.transform_ast in
let path =
tr path (
function
| `named {Piq_ast.Named.name = "name"; value = v} -> [v]
| x -> [x]
)
in
let (|>) a f = f a in
ast
|> rm_param_extra ["function"; "input"]
|> rm_param_extra ["function"; "output"]
|> rm_param_extra ["function"; "error"]
let piqi_to_piqobj
?(piqi_piqtype: T.piqtype option)
?(add_codes=false)
piqi =
debug "piqi_to_piqobj(0)\n";
Piqloc.pause ();
let custom_fields = piqi.P.custom_field in
let piqi_spec = lang_to_spec piqi in
let piqi_spec = P.({piqi_spec with modname = piqi.P.modname}) in
if C.is_self_spec piqi
then Piqi_protobuf.add_hashcodes piqi_spec.P.typedef
else if add_codes
then Piqi_protobuf.add_codes piqi_spec.P.typedef;
if add_codes
then (
piqi_spec.P.file <- piqi.P.file;
let included_piqi = List.filter (fun x -> x != piqi) piqi.P.included_piqi in
piqi_spec.P.included_file <- List.map (fun x-> some_of x.P.file) included_piqi;
);
let ast = piqi_to_ast piqi_spec ~is_external_mode:false in
let ast = transform_piqi_ast ast in
if !Config.debug_level > 1
then (
debug "BEGIN piqi_to_piqobj ast:\n\n";
Piq_gen.to_channel stderr ast;
debug "\n\nEND piqi_to_piqobj ast\n";
);
let piqobj =
match piqi_piqtype with
| None ->
U.with_bool C.Config.flag_no_warnings true
(fun () -> Piqobj_of_piq.parse_obj !piqi_spec_def ast)
| Some piqi_piqtype ->
let piqobj =
U.with_bool C.is_inside_parse_piqi true
(fun () -> Piqobj_of_piq.parse_obj piqi_piqtype ast)
in
let unknown_fields = Piqobj_of_piq.get_unknown_fields () in
check_unknown_fields unknown_fields custom_fields
~prepend:(fun () ->
C.piqi_warning "the following property is not recognized by the custom self-spec and will be ignored:"
);
piqobj
in
Piqloc.resume ();
debug "piqi_to_piqobj(1)\n";
piqobj
let piqi_of_piqobj ?(process=true) piqobj =
debug "piqi_of_piqobj(0)\n";
let piqi_ast = Piqobj_to_piq.gen_obj piqobj in
let piqi = parse_piqi piqi_ast in
piqi.P.is_embedded <- Some true;
let piqi =
if process
then
process_piqi piqi ~cache:false
else
piqi
in
debug "piqi_of_piqobj(-)\n";
piqi
let piqi_to_pb ?(code = -1) piqi =
debug "piqi_to_pb(0)\n";
let piqobj = piqi_to_piqobj piqi in
Piqloc.pause ();
let res =
U.with_bool Piqobj_to_protobuf.is_external_mode true
(fun () -> Piqobj_to_protobuf.gen_obj code piqobj)
in
Piqloc.resume ();
debug "piqi_to_pb(1)\n";
res
let piqi_of_pb ?(process=true) buf =
debug "piqi_of_pb(0)\n";
Piqloc.pause ();
let piqtype = !piqi_spec_def in
let piqobj =
C.with_resolve_defaults false (fun () -> Piqobj_of_protobuf.parse_obj piqtype buf)
in
let piqi = piqi_of_piqobj piqobj ~process in
Piqloc.resume ();
debug "piqi_of_pb(1)\n";
piqi
let rec get_piqi_deps ?(only_imports=true) piqi =
let include_deps =
if only_imports
then []
else
List.filter (fun x -> x != piqi) piqi.P.included_piqi
in
let import_deps =
U.flatmap (fun x ->
let piqi = some_of x.T.Import.piqi in
U.flatmap (get_piqi_deps ~only_imports) piqi.P.included_piqi)
piqi.P.resolved_import
in
let l = include_deps @ import_deps @ [piqi] in
U.uniqq l