Source file gen_js_api_ppx.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
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
open Ppxlib
open Asttypes
open Parsetree
open Longident
open Ast_helper
open Location
let mkloc txt loc =
{ txt; loc }
let mknoloc txt =
mkloc txt !Ast_helper.default_loc
(** Errors *)
type error =
| Expression_expected
| Identifier_expected
| Structure_expected
| Invalid_expression
| Multiple_binding_declarations
| Binding_type_mismatch
| Cannot_parse_type
| Cannot_parse_sigitem
| Cannot_parse_classdecl
| Cannot_parse_classfield
| Implicit_name of string
| Not_supported_here of string
| Record_expected of string
| Record_constructor_in_union
| Unknown_union_method
| Non_constant_constructor_in_enum
| Multiple_default_case
| Duplicate_case_value of location * location
| Invalid_variadic_type_arg
| No_input
| Multiple_inputs
| Unlabelled_argument_in_builder
| Spurious_attribute of label
| Sum_kind_args
| Union_without_discriminator
| Contravariant_type_parameter of string
exception Error of Location.t * error
let is_ascii s =
let exception Break in
try
String.iter (fun c -> if Char.code c > 127 then raise Break) s;
true
with Break -> false
let check_attribute = ref true
let used_attributes_tbl = Hashtbl.create 16
let merlin_hide =
{ attr_name = { txt = "merlin.hide"; loc = Location.none }
; attr_payload = PStr []
; attr_loc = Location.none
}
let register_loc attr =
Ppxlib.Attribute.mark_as_handled_manually attr;
Hashtbl.replace used_attributes_tbl attr.attr_name.loc ()
let is_registered_loc loc = Hashtbl.mem used_attributes_tbl loc
let error loc err = raise (Error (loc, err))
let filter_attr_name key attr =
if attr.attr_name.txt = key then begin
register_loc attr;
true
end else false
let filter_extension key name = name.txt = key
let has_attribute key attrs = List.exists (filter_attr_name key) attrs
let get_attribute key attrs =
match List.find (filter_attr_name key) attrs with
| exception Not_found -> None
| attr -> Some attr
let unoption = function
| Some x -> x
| None -> assert false
let expr_of_stritem = function
| {pstr_desc=Pstr_eval (e, _); _} -> e
| p -> error p.pstr_loc Expression_expected
let expr_of_payload {attr_loc; attr_payload; _} =
match attr_payload with
| PStr [x] -> expr_of_stritem x
| _ -> error attr_loc Expression_expected
let str_of_payload {attr_loc; attr_payload; _} =
match attr_payload with
| PStr x -> x
| _ -> error attr_loc Structure_expected
let id_of_expr = function
| {pexp_desc=Pexp_constant (Pconst_string (s, _, _)); _} -> s
| e -> error e.pexp_loc Identifier_expected
let get_expr_attribute key attrs =
match get_attribute key attrs with
| None -> None
| Some payload -> Some (expr_of_payload payload)
let get_string_attribute key attrs =
match get_attribute key attrs with
| None -> None
| Some payload -> Some (id_of_expr (expr_of_payload payload))
let get_string_attribute_default key default attrs =
match get_attribute key attrs with
| None -> default
| Some payload -> payload.attr_loc, id_of_expr (expr_of_payload payload)
let print_error ppf = function
| Expression_expected ->
Format.fprintf ppf "Expression expected"
| Structure_expected ->
Format.fprintf ppf "Structure expected"
| Identifier_expected ->
Format.fprintf ppf "String literal expected"
| Invalid_expression ->
Format.fprintf ppf "Invalid expression"
| Multiple_binding_declarations ->
Format.fprintf ppf "Multiple binding declarations"
| Binding_type_mismatch ->
Format.fprintf ppf "Binding declaration and type are not compatible"
| Cannot_parse_type ->
Format.fprintf ppf "Cannot parse type"
| Cannot_parse_sigitem ->
Format.fprintf ppf "Cannot parse signature item"
| Cannot_parse_classdecl ->
Format.fprintf ppf "Cannot parse class declaration"
| Cannot_parse_classfield ->
Format.fprintf ppf "Cannot parse class field"
| Implicit_name prefix ->
Format.fprintf ppf "Implicit name must start with '%s' and cannot be empty" prefix
| Not_supported_here msg ->
Format.fprintf ppf "%s not supported in this context" msg
| Non_constant_constructor_in_enum ->
Format.fprintf ppf "Constructors in enums cannot take arguments"
| Multiple_default_case ->
Format.fprintf ppf "At most one default constructor is supported in variants"
| Duplicate_case_value (loc1, loc2) ->
let line1, line2 = loc1.loc_start.pos_lnum, loc2.loc_start.pos_lnum in
let line1, line2 = if line1 < line2 then line1, line2 else line2, line1 in
Format.fprintf ppf "This case value is used twice at lines %d and %d" line1 line2
| Invalid_variadic_type_arg ->
Format.fprintf ppf "A variadic function argument must be of type list"
| No_input ->
Format.fprintf ppf "An input file must be provided"
| Multiple_inputs ->
Format.fprintf ppf "A single input file must be provided"
| Unlabelled_argument_in_builder ->
Format.fprintf ppf "Arguments of builder must be named"
| Spurious_attribute label ->
Format.fprintf ppf "Spurious %s attribute" label
| Sum_kind_args ->
Format.fprintf ppf "Incompatible label name for 'kind' and constructor arguments."
| Record_constructor_in_union ->
Format.fprintf ppf "Constructors in unions must not be an inline record."
| Unknown_union_method ->
Format.fprintf ppf "Unknown method to discriminate unions."
| Union_without_discriminator ->
Format.fprintf ppf "js.union without way to discriminate values."
| Contravariant_type_parameter label ->
Format.fprintf ppf "Contravariant type parameter '%s is not allowed." label
| Record_expected shape ->
Format.fprintf ppf "Record %s expected." shape
let () =
Location.Error.register_error_of_exn
(function
| Error (loc, err) ->
let createf ~loc fmt =
Format.kasprintf
(fun str -> Location.Error.make ~loc ~sub:[] str) fmt
in
Some (createf ~loc "%a" print_error err)
| _ -> None
)
let js_name ~global_attrs ?(capitalize = false) name =
if has_attribute "js.verbatim_names" global_attrs then
if capitalize then String.capitalize_ascii name
else name
else
let n = String.length name in
let buf = Buffer.create n in
let capitalize = ref capitalize in
for i = 0 to n-1 do
let c = name.[i] in
if c = '_' then capitalize := true
else if !capitalize then begin
Buffer.add_char buf (Char.uppercase_ascii c);
capitalize := false
end else Buffer.add_char buf c
done;
Buffer.contents buf
let get_js_constr ~global_attrs name attributes =
match get_attribute "js" attributes with
| None -> `String (js_name ~global_attrs name)
| Some payload ->
begin match (expr_of_payload payload).pexp_desc with
| Pexp_constant (Pconst_string (s, _, _)) -> `String s
| Pexp_constant (Pconst_integer (n, _)) -> `Int n
| Pexp_constant (Pconst_float (f, _)) -> `Float f
| Pexp_construct (ident_loc, _) ->
begin match ident_loc.txt with
| Lident "true" -> `Bool true
| Lident "false" -> `Bool false
| _ -> error ident_loc.loc Invalid_expression
end
| _ -> error payload.attr_loc Invalid_expression
end
(** AST *)
type typ =
| Arrow of arrow_params
| Unit of Location.t
| Js
| Name of string * typ list
| Variant of { location: Location.t;
global_attrs:attributes;
attributes:attributes;
constrs:constructor list }
| Tuple of typ list
| Typ_var of string
| Packaged_type of { local_name: string;
module_name: string }
and lab =
| Arg
| Lab of {ml: string}
| Opt of {ml: string; def: Parsetree.expression option}
and arg =
{
lab: lab;
att: attributes;
typ: typ;
}
and arrow_params =
{
ty_args: arg list;
ty_vararg: arg option;
unit_arg: bool;
ty_res: typ;
}
and constructor_arg =
| Constant
| Unary of typ
| Nary of typ list
| Record of (Location.t * lid * string * typ) list
and constructor =
{
mlconstr: string;
arg: constructor_arg;
attributes: attributes;
location: Location.t;
}
let arg_label = function
| Arg -> Nolabel
| Lab {ml; _} -> Labelled ml
| Opt {ml; _} -> Optional ml
type apply_type =
| Function
| NewableFunction
type valdef =
| Cast
| Ignore
| PropGet of string
| PropSet of string
| IndexGet
| IndexSet
| MethCall of string
| Apply of apply_type
| Invoke
| Global of string
| New of string option
| Builder of attributes
| Auto of valdef
let rec string_of_valdef = function
| Cast -> "js.cast"
| Ignore -> "js.ignore"
| PropGet _ -> "js.get"
| PropSet _ -> "js.set"
| IndexGet -> "js.index_get"
| IndexSet -> "js.index_set"
| MethCall _ -> "js.call"
| Apply Function -> "js.apply"
| Apply NewableFunction -> "js.apply_newable"
| Invoke -> "js.invoke"
| Global _ -> "js.global"
| New None -> "js.create"
| New (Some _) -> "js.new"
| Builder _ -> "js.builder"
| Auto valdef -> string_of_valdef valdef
let auto_deprecation_attribute loc valdef =
let message =
Printf.sprintf
"Heuristic for automatic binding is deprecated; please add the '@%s' attribute."
(string_of_valdef valdef)
in
attribute_of_warning loc message
type methoddef =
| Getter of string
| Setter of string
| IndexGetter
| IndexSetter
| MethodCall of string
| ApplyAsFunction of apply_type
type method_decl =
{
method_name: string;
method_typ: typ;
method_def: methoddef;
method_loc: Location.t;
method_attrs: attributes
}
type class_field =
| Method of method_decl
| Inherit of Longident.t Location.loc
type classdecl =
| Declaration of { class_name: string; class_fields: class_field list }
| Constructor of { class_name: string; js_class_name: string; class_arrow: arrow_params }
type decl =
| Module of functor_parameter list * string * decl list
| RecModule of (module_type * functor_parameter list * string * decl list) list
| ModuleAlias of string * Longident.t Location.loc
| Type of rec_flag * Parsetree.type_declaration list * attributes
| Val of { name:string;
ty: typ;
decl: valdef;
loc: Location.t;
packages: (string * string) list; (** reversed order, (local_name, module_name) *)
global_attrs: attributes }
| Class of classdecl list
| Implem of Parsetree.structure
| Open of Parsetree.open_description
| Include of Parsetree.module_expr Parsetree.include_infos
(** Parsing *)
let local_type_of_type_var label =
"__"^label
let neg_variance = function
| -1 -> 1
| 0 | 1 -> -1
| _ -> invalid_arg "neg_variance"
let no_attributes attributes =
List.iter (fun attr ->
ignore (filter_attr_name "js.dummy" attr)
) attributes;
attributes = []
type type_context =
{
type_params: string list;
packages: (string * string) list; (** reversed order, (local_name, module_name) *)
}
let empty_type_context = { type_params = []; packages = [] }
let rec parse_arg ~variance (ctx: type_context) lab ~global_attrs ty =
let lab =
match lab with
| Nolabel -> Arg
| Labelled ml -> Lab {ml}
| Optional ml ->
Opt {ml; def=get_expr_attribute "js.default" ty.ptyp_attributes}
in
{
lab;
att=ty.ptyp_attributes;
typ = parse_typ ~variance:(neg_variance variance) ctx ~global_attrs ty;
}
and parse_typ ~variance ctx ~global_attrs ty =
match ty.ptyp_desc with
| Ptyp_arrow (lab, t1, t2) when has_attribute "js.variadic" t1.ptyp_attributes ->
begin match parse_arg ~variance ctx lab ~global_attrs t1 with
| {lab; att; typ=Name ("list", [typ])} ->
let ty_vararg = Some {lab; att; typ} in
begin match parse_typ ~variance ctx ~global_attrs t2 with
| Arrow ({ty_args = []; ty_vararg = None; unit_arg = _; ty_res = _} as params) when no_attributes t2.ptyp_attributes ->
Arrow {params with ty_vararg}
| Arrow _ when t2.ptyp_attributes = [] -> error ty.ptyp_loc Cannot_parse_type
| tres -> Arrow {ty_args = []; ty_vararg; unit_arg = false; ty_res = tres}
end
| _ -> error t1.ptyp_loc Invalid_variadic_type_arg
end
| Ptyp_arrow (lab, t1, t2) ->
let t1 = parse_arg ~variance ctx lab ~global_attrs t1 in
begin match parse_typ ~variance ctx ~global_attrs t2 with
| Arrow ({ty_args; ty_vararg = _; unit_arg = _; ty_res = _} as params) when no_attributes t2.ptyp_attributes -> Arrow {params with ty_args = t1 :: ty_args}
| tres ->
begin match t1 with
| {lab=Arg; att=[]; typ=Unit _} -> Arrow {ty_args = []; ty_vararg = None; unit_arg = true; ty_res = tres}
| _ -> Arrow {ty_args = [t1]; ty_vararg = None; unit_arg = false; ty_res = tres}
end
end
| Ptyp_constr ({txt = lid; loc = _}, tl) ->
begin match String.concat "." (Longident.flatten_exn lid), tl with
| "unit", [] -> Unit ty.ptyp_loc
| "Ojs.t", [] -> Js
| s, tl -> Name (s, List.map (parse_typ ~variance ctx ~global_attrs) tl)
end
| Ptyp_variant (rows, Closed, None) ->
let location = ty.ptyp_loc in
let prepare_row = function
| {prf_desc = Rtag ({txt = mlconstr; _}, true, []); prf_attributes = attributes; prf_loc = location} ->
{ mlconstr; arg = Constant; attributes; location }
| {prf_desc = Rtag ({txt = mlconstr; _}, false, [typ]); prf_attributes = attributes; prf_loc = location} ->
begin match parse_typ ~variance ctx ~global_attrs typ with
| Tuple typs -> { mlconstr; arg = Nary typs; attributes; location }
| typ -> { mlconstr; arg = Unary typ; attributes; location }
end
| _ -> error location Cannot_parse_type
in
Variant {location; global_attrs; attributes = ty.ptyp_attributes; constrs = List.map prepare_row rows}
| Ptyp_tuple typs ->
let typs = List.map (parse_typ ~variance ctx ~global_attrs) typs in
Tuple typs
| Ptyp_var label ->
if List.mem label ctx.type_params then
if variance < 0 then
error ty.ptyp_loc (Contravariant_type_parameter label)
else
Name (local_type_of_type_var label, [])
else
begin match List.assoc_opt label ctx.packages with
| Some module_name -> Packaged_type { local_name = label; module_name }
| None -> Typ_var label
end
| _ ->
error ty.ptyp_loc Cannot_parse_type
let parse_typ = parse_typ ~variance:0
let check_prefix ~prefix s =
let l = String.length prefix in
if l <= String.length s && String.sub s 0 l = prefix
then
Some (String.sub s l (String.length s - l))
else
None
let has_prefix ~prefix s = check_prefix ~prefix s <> None
let drop_prefix ~prefix s =
match check_prefix ~prefix s with
| Some x -> x
| None -> assert false
let check_suffix ~suffix s =
let l = String.length suffix in
if l <= String.length s && String.sub s (String.length s - l) l = suffix
then
Some (String.sub s 0 (String.length s - l))
else
None
let rec choose f = function
| [] -> []
| x :: xs ->
begin match f x with
| None -> choose f xs
| Some y -> y :: choose f xs
end
let derived_from_type s ty =
match ty with
| Arrow {ty_args; ty_vararg = None; unit_arg = false; ty_res = Js} ->
begin match List.rev ty_args with
| {lab=Arg; att=_; typ=Name (t, _);} :: _ -> check_suffix ~suffix:"_to_js" s = Some t
| _ -> false
end
| Arrow {ty_res = Name (t, _); ty_vararg = None; unit_arg = false; ty_args } ->
begin match List.rev ty_args with
| {lab=Arg; att=_; typ= Js;} :: _ -> check_suffix ~suffix:"_of_js" s = Some t
| _ -> false
end
| _ -> false
let auto ~global_attrs s ty =
if derived_from_type s ty then
Ignore
else
Auto begin match ty with
| Arrow {ty_args = _; ty_vararg = None; unit_arg = _; ty_res = Name _} when s = "create" -> New None
| Arrow {ty_args = _; ty_vararg = None; unit_arg = _; ty_res = Name _} when has_prefix ~prefix:"new_" s -> New (Some (js_name ~capitalize:true ~global_attrs (drop_prefix ~prefix:"new_" s)))
| Arrow {ty_args = [_]; ty_vararg = None; unit_arg = false; ty_res = Unit _} when has_prefix ~prefix:"set_" s -> PropSet (js_name ~global_attrs (drop_prefix ~prefix:"set_" s))
| Arrow {ty_args = [{lab=Arg; att=_; typ=Name _}; _; _]; ty_vararg = None; unit_arg = false; ty_res = Unit _} when s = "set" -> IndexSet
| Arrow {ty_args = [{lab=Arg; att=_; typ=Name _}; _]; ty_vararg = None; unit_arg = false; ty_res = Unit _} when has_prefix ~prefix:"set_" s -> PropSet (js_name ~global_attrs (drop_prefix ~prefix:"set_" s))
| Arrow {ty_args = [{lab=Arg; att=_; typ=Name _}]; ty_vararg = None; unit_arg = false; ty_res = Unit _} -> MethCall (js_name ~global_attrs s)
| Arrow {ty_args = [{lab=Arg; att=_; typ=Name _}; _]; ty_vararg = None; unit_arg = false; ty_res = _} when s = "get" -> IndexGet
| Arrow {ty_args = [{lab=Arg; att=_; typ=Name _}]; ty_vararg = None; unit_arg = false; ty_res = _} -> PropGet (js_name ~global_attrs s)
| Arrow {ty_args = []; ty_vararg = None; unit_arg = true; ty_res = _} -> PropGet (js_name ~global_attrs s)
| Arrow {ty_args = {lab=Arg; att=_; typ=Name _} :: _; ty_vararg = _; unit_arg = _; ty_res = _} when s = "apply" -> Apply Function
| Arrow {ty_args = {lab=Arg; att=_; typ=Name _} :: _; ty_vararg = _; unit_arg = _; ty_res = _} -> MethCall (js_name ~global_attrs s)
| _ -> Global (js_name ~global_attrs s)
end
let auto_in_object ~global_attrs s typ =
Auto begin match typ with
| Arrow {ty_args = [{lab=Arg; att=_; typ=_}]; ty_vararg = None; unit_arg = false; ty_res = Unit _} when has_prefix ~prefix:"set_" s -> PropSet (js_name ~global_attrs (drop_prefix ~prefix:"set_" s))
| Arrow {ty_args = [_]; ty_vararg = None; unit_arg = _; ty_res = _} when s = "get" -> IndexGet
| Arrow {ty_args = [_; _]; ty_vararg = None; unit_arg = false; ty_res = Unit _} when s = "set" -> IndexSet
| Arrow _ when s = "apply" -> Apply Function
| Arrow _ -> MethCall (js_name ~global_attrs s)
| Unit _ -> MethCall (js_name ~global_attrs s)
| _ -> PropGet (js_name ~global_attrs s)
end
let parse_attr ~global_attrs (s, loc, auto) attribute =
let opt_name ?(prefix = "") ?(capitalize = false) () =
match attribute.attr_payload with
| PStr [] ->
begin match check_prefix ~prefix s with
| None | Some "" -> error loc (Implicit_name prefix)
| Some s ->
js_name ~global_attrs ~capitalize s
end
| _ -> id_of_expr (expr_of_payload attribute)
in
let actions =
[ "js.cast", (fun () -> Cast);
"js.get", (fun () -> PropGet (opt_name ()));
"js.set", (fun () -> PropSet (opt_name ~prefix:"set_" ()));
"js.index_get", (fun () -> IndexGet);
"js.index_set", (fun () -> IndexSet);
"js.call", (fun () -> MethCall (opt_name ()));
"js.apply", (fun () -> Apply Function);
"js.apply_newable", (fun () -> Apply NewableFunction);
"js.invoke", (fun () -> Invoke);
"js.global", (fun () -> Global (opt_name ()));
"js", (fun () -> auto ());
"js.create", (fun () -> New None);
"js.new", (fun () -> New (Some (opt_name ~prefix:"new_" ~capitalize:true ())));
"js.builder", (fun () -> Builder global_attrs);
]
in
match List.find (fun (name, _) -> filter_attr_name name attribute) actions with
| exception Not_found -> None
| _, f -> Some (f ())
let ty =
let is_ojs_T (ojs_T: Longident.t) (t: Longident.t) =
match Longident.flatten_exn ojs_T, Longident.flatten_exn t with
| ["Ojs"; "T"], ["t"] -> true
| _ -> false
in
let rec go acc ty =
match ty.ptyp_desc with
| Ptyp_arrow (Nolabel, { ptyp_desc = Ptyp_package ({ txt = ojs_T; _ }, [{ txt = t; _}, { ptyp_desc = Ptyp_var tyvar; _ }]); ptyp_attributes; _ }, rest)
when is_ojs_T ojs_T t && has_attribute "js" ptyp_attributes ->
let module_name =
String.mapi (fun i c -> if i = 0 then Char.uppercase_ascii c else c) tyvar
in
go ((tyvar, module_name) :: acc) rest
| _ -> ty, acc
in
go [] ty
let parse_valdecl ~global_attrs ~in_sig vd =
let attributes = vd.pval_attributes in
let global_attrs = attributes @ global_attrs in
let s = vd.pval_name.txt in
let loc = vd.pval_loc in
let ty, packages = extract_packages_for_valdecl vd.pval_type in
let ty = parse_typ { empty_type_context with packages } ~global_attrs ty in
let auto () = auto ~global_attrs s ty in
let defs = choose (parse_attr ~global_attrs (s, loc, auto)) attributes in
let r =
match defs with
| [x] -> x
| [] when in_sig -> auto ()
| [] -> raise Exit
| _ -> error loc Multiple_binding_declarations
in
Val { name = s; ty; decl = r; packages; loc; global_attrs }
let rec functor_of_module_type = function
| {pmty_desc = Pmty_signature si; pmty_attributes; _} -> Some ([], si, pmty_attributes)
| {pmty_desc = Pmty_functor (params, body); _} ->
begin match functor_of_module_type body with
| Some (parameters, si, attrs) ->
Some (params :: parameters, si, attrs)
| None -> None
end
| _ -> None
let rec parse_sig_item ~global_attrs rest s =
let parse_module_declaration = function
| {pmd_name = { txt = Some name; _}; pmd_type; pmd_loc = _; pmd_attributes} ->
begin match functor_of_module_type pmd_type with
| None -> error s.psig_loc Cannot_parse_sigitem
| Some (functor_parameters, si, attrs) ->
let global_attrs =
push_module_attributes name attrs
(push_module_attributes name pmd_attributes global_attrs)
in
(functor_parameters, name, parse_sig ~global_attrs si)
end
| _ ->
error s.psig_loc Cannot_parse_sigitem
in
match s.psig_desc with
| Psig_value vd when vd.pval_prim = [] ->
parse_valdecl ~global_attrs ~in_sig:true vd :: rest ~global_attrs
| Psig_type (rec_flag, decls) ->
Type (rec_flag, decls, global_attrs) :: rest ~global_attrs
| Psig_module {pmd_name = {txt = Some name; _}; pmd_type = {pmty_desc = Pmty_alias lid; _}; _} ->
ModuleAlias (name, lid) :: rest ~global_attrs
| Psig_module md ->
let functor_parameters, name, decls = parse_module_declaration md in
Module (functor_parameters, name, decls) :: rest ~global_attrs
| Psig_recmodule mds ->
let mapper md =
let functor_parameters, name, decls = parse_module_declaration md in
let module_type = md.pmd_type in
(module_type, functor_parameters, name, decls)
in
RecModule (List.map mapper mds) :: rest ~global_attrs
| Psig_class cs -> Class (List.map (parse_class_decl ~global_attrs) cs) :: rest ~global_attrs
| Psig_attribute ({attr_payload = PStr str; _} as attribute) when filter_attr_name "js.implem" attribute -> Implem str :: rest ~global_attrs
| Psig_attribute attribute ->
let global_attrs = attribute :: global_attrs in
rest ~global_attrs
| Psig_open descr -> Open descr :: rest ~global_attrs
| Psig_include ({pincl_mod; _} as info) ->
let rec module_expr mod_typ =
match mod_typ.pmty_desc with
| Pmty_typeof module_expr -> module_expr
| Pmty_with (t, _) -> module_expr t
| _ -> error s.psig_loc Cannot_parse_sigitem
in
Include {info with pincl_mod = module_expr pincl_mod} :: rest ~global_attrs
| _ ->
error s.psig_loc Cannot_parse_sigitem
and push_module_attributes module_name module_attributes global_attrs =
let rec rev_append acc = function
| ({attr_name = {txt = "js.scope"; _}; attr_payload = PStr []; _}) as attribute :: tl ->
rev_append ({ attribute with attr_payload = PStr [Str.eval (Exp.constant (Pconst_string (module_name, Location.none, None)))] } :: acc) tl
| hd :: tl -> rev_append (hd :: acc) tl
| [] -> acc
in
rev_append global_attrs (List.rev module_attributes)
and parse_sig ~global_attrs = function
| [] -> []
| {psig_desc = Psig_attribute attribute; _} :: rest when filter_attr_name "js.stop" attribute ->
parse_sig_verbatim ~global_attrs rest
| {psig_desc = Psig_value vd; _} :: rest when
has_attribute "js.custom" vd.pval_attributes ->
let attribute = unoption (get_attribute "js.custom" vd.pval_attributes) in
let str = str_of_payload attribute in
Implem str :: parse_sig ~global_attrs rest
| s :: rest ->
parse_sig_item ~global_attrs (parse_sig rest) s
and parse_sig_verbatim ~global_attrs = function
| [] -> []
| {psig_desc = Psig_attribute attribute; _} :: rest when filter_attr_name "js.start" attribute -> parse_sig ~global_attrs rest
| _ :: rest -> parse_sig_verbatim ~global_attrs rest
and parse_class_decl ~global_attrs = function
| {pci_virt = Concrete; pci_params = []; pci_name; pci_expr = {pcty_desc = Pcty_arrow (Nolabel, {ptyp_desc = Ptyp_constr ({txt = Longident.Ldot (Lident "Ojs", "t"); loc = _}, []); ptyp_loc = _; ptyp_attributes = _; ptyp_loc_stack = _}, {pcty_desc = Pcty_signature {pcsig_self = {ptyp_desc = Ptyp_any; _}; pcsig_fields}; pcty_loc = _; pcty_attributes = _}); _}; pci_attributes; pci_loc = _} ->
let global_attrs = pci_attributes @ global_attrs in
let class_name = pci_name.txt in
Declaration { class_name; class_fields = List.map (parse_class_field ~global_attrs) pcsig_fields }
| {pci_virt = Concrete; pci_params = []; pci_name; pci_expr; pci_attributes; pci_loc} ->
let global_attrs = pci_attributes @ global_attrs in
let rec convert_typ = function
| { pcty_desc = Pcty_constr (id, typs); pcty_attributes; pcty_loc } ->
Typ.constr ~loc:pcty_loc ~attrs:pcty_attributes id typs
| { pcty_desc = Pcty_arrow (label, typ, ct); pcty_attributes; pcty_loc } ->
Typ.arrow ~loc:pcty_loc ~attrs:pcty_attributes label typ (convert_typ ct)
| _ -> error pci_loc Cannot_parse_classdecl
in
let class_arrow =
match parse_typ empty_type_context ~global_attrs (convert_typ pci_expr) with
| Arrow ({ty_args = _; ty_vararg = _; unit_arg = _; ty_res = Name (_, [])} as params) -> params
| (Name (_, []) as ty_res) -> {ty_args = []; ty_vararg = None; unit_arg = false; ty_res}
| _ -> error pci_loc Cannot_parse_classdecl
in
let class_name = pci_name.txt in
let js_class_name =
match get_string_attribute "js.new" pci_attributes with
| None -> js_name ~global_attrs ~capitalize:true class_name
| Some s -> s
in
Constructor {class_name; js_class_name; class_arrow}
| {pci_loc; _} -> error pci_loc Cannot_parse_classdecl
and parse_class_field ~global_attrs = function
| {pctf_desc = Pctf_method ({txt = method_name; _}, Public, Concrete, typ); pctf_loc; pctf_attributes} ->
let ty = parse_typ empty_type_context ~global_attrs typ in
let auto () = auto_in_object ~global_attrs method_name ty in
let defs = choose (parse_attr ~global_attrs (method_name, pctf_loc, auto)) pctf_attributes in
let kind =
match defs with
| [x] -> x
| [] -> auto ()
| _ -> error pctf_loc Multiple_binding_declarations
in
let rec method_def = function
| Auto def -> method_def def
| PropGet s -> Getter s
| PropSet s -> Setter s
| IndexGet -> IndexGetter
| IndexSet -> IndexSetter
| MethCall s -> MethodCall s
| Apply t -> ApplyAsFunction t
| _ -> error pctf_loc Cannot_parse_classfield
in
let method_attrs =
match kind with
| Auto _ ->
[ auto_deprecation_attribute pctf_loc kind ]
| _ -> []
in
Method
{
method_name;
method_typ = ty;
method_def = method_def kind;
method_loc = pctf_loc;
method_attrs;
}
| {pctf_desc = Pctf_inherit {pcty_desc = Pcty_constr (id, []); _}; _} ->
Inherit id
| {pctf_loc; _} -> error pctf_loc Cannot_parse_classfield
(** Code generation *)
let longident_parse x = Longident.parse x [@@ocaml.alert "-deprecated"]
let var x = Exp.ident (mknoloc (longident_parse x))
let str s = Exp.constant (Pconst_string (s, Location.none, None))
let int_of_repr n = Exp.constant (Pconst_integer (n, None))
let int n = int_of_repr (string_of_int n)
let float_of_repr f = Exp.constant (Pconst_float (f, None))
let bool b = Exp.construct (mknoloc (longident_parse (if b then "true" else "false"))) None
let pat_int n = Pat.constant (Pconst_integer (n, None))
let pat_float f = Pat.constant (Pconst_float (f, None))
let pat_str s = Pat.constant (Pconst_string (s, Location.none, None))
let pat_bool b = Pat.construct (mknoloc (longident_parse (if b then "true" else "false"))) None
let attr s e = (Attr.mk (mknoloc s) (PStr [Str.eval e]))
let disable_warnings = Str.attribute (attr "ocaml.warning" (str "-7-32-39"))
let incl = function
| [x] -> x
| str -> Str.include_ (Incl.mk (Mod.structure str))
let nolabel args = List.map (function x -> Nolabel, x) args
let ojs_typ = Typ.constr (mknoloc (longident_parse "Ojs.t")) []
let ojs_var s = Exp.ident (mknoloc (Ldot (Lident "Ojs", s)))
let ojs s args = Exp.apply (ojs_var s) (nolabel args)
let ojs_null = ojs_var "null"
let list_iter f x =
Exp.apply (Exp.ident (mknoloc (longident_parse "List.iter"))) (nolabel [f; x])
let fun_ ?(eta = true) (label, s, typ) e =
match e.pexp_desc with
| Pexp_apply (f, [Nolabel, {pexp_desc = Pexp_ident {txt = Lident x; loc = _}; _}])
when x = s && eta -> f
| _ ->
Exp.fun_ label None (Pat.constraint_ (Pat.var (mknoloc s)) typ) e
let fun_unit e =
match e.pexp_desc with
| Pexp_apply (f, [Nolabel, {pexp_desc = Pexp_construct ({txt = Lident "()"; loc = _}, None); _}]) ->
f
| _ ->
Exp.fun_ Nolabel None (Pat.construct (mknoloc (Lident "()")) None) e
let func args unit_arg body =
let body = if unit_arg then fun_unit body else body in
List.fold_right (fun s rest -> fun_ s rest) args body
let uid = ref 0
let fresh () =
incr uid;
Printf.sprintf "x%i" !uid
let apply f args = Exp.apply f args
let unit_lid = mknoloc (Lident "()")
let unit_expr = Exp.construct unit_lid None
let unit_pat = Pat.construct unit_lid None
let some_pat arg =
Pat.construct (mknoloc (longident_parse "Some")) (Some arg)
let none_pat () =
Pat.construct (mknoloc (longident_parse "None")) None
let match_some_none ~some ~none exp =
let s = fresh () in
Exp.match_ exp
[
Exp.case (some_pat (Pat.var (mknoloc s))) (some (var s));
Exp.case (none_pat ()) none;
]
let app f args unit_arg =
let args = if unit_arg then args @ [Nolabel, unit_expr] else args in
apply f args
let exp_ignore res =
apply (var "ignore") [ Nolabel, res ]
let split sep s =
let n = String.length s in
let rec aux start i =
if i < n then
if s.[i] = sep then String.sub s start (i - start) :: aux (i+1) (i+1)
else aux start (i+1)
else [String.sub s start (i - start)]
in
aux 0 0
let ojs_global = ojs_var "global"
let ojs_get o s =
if is_ascii s then
ojs "get_prop_ascii" [o; str s]
else
ojs "get_prop" [o; ojs "string_to_js" [str s]]
let ojs_set o s v =
if is_ascii s then
ojs "set_prop_ascii" [o; str s; v]
else
ojs "set_prop" [o; ojs "string_to_js" [str s]; v]
let select_path o s =
let rec select_path o = function
| [] -> assert false
| [x] -> o, x
| x :: xs -> select_path (ojs_get o x) xs
in
select_path o (split '.' s)
let get_path global_object s =
let o, x = select_path global_object s in
ojs_get o x
let ojs_variable s =
get_path ojs_global s
let set_path global_object s v =
let o, x = select_path global_object s in
ojs_set o x v
let def ?packages s ty body =
let ty, body =
match packages with
| None | Some [] -> ty, body
| Some packages ->
let folder1 (ty, body) (local_name, module_name) =
let package is_local =
let t =
if is_local then Typ.constr (mknoloc (Lident local_name)) []
else Typ.var local_name
in
Typ.package (mknoloc (Ldot (Lident "Ojs", "T"))) [mknoloc (Lident "t"), t] in
let ty = Typ.arrow Nolabel (package false) ty in
let body =
let arg =
Pat.constraint_
(Pat.unpack (mknoloc (Some module_name)))
(package true)
in
Exp.fun_ Nolabel None arg body
in
ty, body
in
let folder2 (ty, body) (local_name, _) =
ty, Exp.newtype (mknoloc local_name) body
in
List.fold_left folder2 (List.fold_left folder1 (ty, body) packages) packages
in
Str.value Nonrecursive [ Vb.mk (Pat.constraint_ (Pat.var (mknoloc s)) ty) body ]
let builtin_type = function
| "int" | "string" | "bool" | "float"
| "array" | "list" | "option" -> true
| _ -> false
let let_exp_in exp f =
let x = fresh () in
let pat = Pat.var (mknoloc x) in
Exp.let_ Nonrecursive [Vb.mk pat exp] (f (var x))
let ojs_apply_arr o = function
| `Simple arr -> ojs "apply" [o; arr]
| `Push arr ->
ojs "call" [o; str "apply"; Exp.array [ ojs_null; arr ]]
let ojs_call_arr o s = function
| `Simple arr -> ojs "call" [o; str s; arr]
| `Push arr ->
let_exp_in o
(fun o ->
ojs "call" [ojs_get o s; str "apply"; Exp.array [ o; arr ]]
)
let ojs_new_obj_arr cl = function
| `Simple arr -> ojs "new_obj" [cl; arr]
| `Push arr -> ojs "new_obj_arr" [cl; arr]
let assert_false = Exp.assert_ (Exp.construct (mknoloc (longident_parse "false")) None)
let clear_attr_mapper =
object
inherit Ast_traverse.map
method! attributes attrs =
let f {attr_name = {txt = _; loc}; _} = not (is_registered_loc loc) in
List.filter f attrs
end
let rewrite_typ_decl t =
let t = clear_attr_mapper # type_declaration {t with ptype_private = Public} in
match t.ptype_manifest, t.ptype_kind with
| None, Ptype_abstract -> {t with ptype_manifest = Some ojs_typ}
| _ -> t
let string_typ = Name ("string", [])
let int_typ = Name ("int", [])
let bool_typ = Name ("bool", [])
let float_typ = Name ("float", [])
let is_discriminator_type = function
| Name (("string"|"int"|"float"|"bool"), []) -> true
| _ -> false
let is_simple_enum params =
let p {mlconstr = _; arg; attributes; location = _} =
match arg with
| Constant -> true
| Unary arg_typ when is_discriminator_type arg_typ -> has_attribute "js.default" attributes
| Unary _
| Nary _
| Record _ -> false
in
List.for_all p params
type union_discriminator =
| No_discriminator
| On_field of string
let get_variant_kind loc attrs =
if has_attribute "js.enum" attrs then `Enum
else if has_attribute "js.union" attrs then begin
match get_attribute "js.union" attrs with
| None -> assert false
| Some attribute ->
begin match attribute.attr_payload with
| PStr [] -> `Union No_discriminator
| _ ->
begin match expr_of_payload attribute with
| {pexp_desc = Pexp_apply ({pexp_desc = Pexp_ident {txt = Lident "on_field";_}; _}, [Nolabel, {pexp_desc = Pexp_constant (Pconst_string (s, _, _)); _}]); _} -> `Union (On_field s)
| _ -> error attribute.attr_loc Unknown_union_method
end
end
end else if has_attribute "js.sum" attrs then begin
match get_attribute "js.sum" attrs with
| None -> assert false
| Some attribute ->
begin match attribute.attr_payload with
| PStr [] -> `Sum "kind"
| _ -> `Sum (id_of_expr (expr_of_payload attribute))
end
end else error loc (Not_supported_here "Sum types without js.* attribute")
type variant_cases =
{
int_default: case option;
int_cases: float case_value list;
float_default: case option;
float_cases: float case_value list;
string_default: case option;
string_cases: string case_value list;
bool_default: case option;
bool_cases: bool case_value list;
}
and 'a case_value = {
value: 'a;
case: case;
loc: location;
}
let case_value ~loc ~value pat x =
let case = Exp.case pat x in
{ value; case; loc }
let empty_variant_cases =
{
int_default = None; int_cases = [];
float_default = None; float_cases = [];
string_default = None; string_cases = [];
bool_default = None; bool_cases = []
}
let rec js2ml ty exp =
match ty with
| Js ->
exp
| Name (s, tl) ->
let s = if builtin_type s then "Ojs." ^ s else s in
let args = List.map (js2ml_fun ~eta:true) tl in
app (var (s ^ "_of_js")) (nolabel (args @ [exp])) false
| Arrow {ty_args; ty_vararg; unit_arg; ty_res} ->
let formal_args, concrete_args = prepare_args ty_args ty_vararg in
let res = ojs_apply_arr exp concrete_args in
func formal_args unit_arg (js2ml_unit ty_res res)
| Unit _ ->
app (var "Ojs.unit_of_js") (nolabel [exp]) false
| Variant {location; global_attrs; attributes; constrs} ->
js2ml_of_variant ~variant:true location ~global_attrs attributes constrs exp
| Tuple typs ->
let f x =
Exp.tuple (List.mapi (fun i typ -> js2ml typ (ojs "array_get" [x; int i])) typs)
in
let_exp_in exp f
| Typ_var _ ->
app (var ("Obj.magic")) (nolabel ([exp])) false
| Packaged_type { module_name; _ } ->
app (var (module_name ^ ".t_of_js")) (nolabel [exp]) false
and js2ml_of_variant ~variant loc ~global_attrs attrs constrs exp =
let variant_kind = get_variant_kind loc attrs in
let check_label =
match variant_kind with
| `Sum kind -> (fun loc label -> if label = kind then error loc Sum_kind_args)
| _ -> (fun _ _ -> ())
in
let mkval =
if variant then fun x arg -> Exp.variant x arg
else fun x arg -> Exp.construct (mknoloc (Longident.Lident x)) arg
in
let f exp =
let gen_cases (cases: variant_cases) {mlconstr; arg; attributes; location} =
let case x =
let loc = location in
match get_js_constr ~global_attrs mlconstr attributes with
| `String s -> { cases with string_cases = case_value ~loc ~value:s (pat_str s) x :: cases.string_cases }
| `Int n -> { cases with int_cases = case_value ~loc ~value:(float_of_string n) (pat_int n) x :: cases.int_cases }
| `Float f -> { cases with float_cases = case_value ~loc ~value:(float_of_string f) (pat_float f) x :: cases.float_cases }
| `Bool b -> { cases with bool_cases = case_value ~loc ~value:b (pat_bool b) x :: cases.bool_cases }
in
let get_arg key typ = js2ml typ (ojs_get exp key) in
match arg with
| Constant -> case (mkval mlconstr None)
| Unary arg_typ ->
let otherwise() =
match variant_kind with
| `Enum -> error location Non_constant_constructor_in_enum
| `Sum _ ->
let loc, arg_field = get_string_attribute_default "js.arg" (location, "arg") attributes in
check_label loc arg_field;
case (mkval mlconstr (Some (get_arg arg_field arg_typ)))
| `Union _ -> case (mkval mlconstr (Some (js2ml arg_typ exp)))
in
let process_default defs cont =
match get_attribute "js.default" attributes with
| None -> otherwise()
| Some attribute ->
if List.for_all ((=) None) defs then begin
match variant_kind with
| `Enum ->
let x = fresh() in
cont (Some (Exp.case (Pat.var (mknoloc x)) (mkval mlconstr (Some (var x)))))
| `Sum _ | `Union _ ->
cont (Some (Exp.case (Pat.any ()) (mkval mlconstr (Some (js2ml arg_typ exp)))))
end else error attribute.attr_loc Multiple_default_case
in
begin match variant_kind with
| `Enum when arg_typ = int_typ ->
process_default [cases.int_default] (fun int_default -> { cases with int_default })
| `Enum when arg_typ = string_typ ->
process_default [cases.string_default] (fun string_default -> { cases with string_default })
| `Enum when arg_typ = bool_typ ->
process_default [cases.bool_default] (fun bool_default -> { cases with bool_default })
| `Enum when arg_typ = float_typ ->
process_default [cases.float_default] (fun float_default -> { cases with float_default })
| `Sum _ | `Union _ when arg_typ = Js ->
process_default [cases.int_default; cases.float_default; cases.string_default; cases.bool_default] (fun default -> { cases with int_default = default; float_default = default; string_default = default; bool_default = default })
| _ -> otherwise()
end
| Nary args_typ ->
begin match variant_kind with
| `Enum -> error location Non_constant_constructor_in_enum
| `Sum _ ->
let loc, args_field = get_string_attribute_default "js.arg" (location, "arg") attributes in
check_label loc args_field;
let get_args key i typ = js2ml typ (ojs "array_get" [ojs_get exp key; int i]) in
case (mkval mlconstr (Some (Exp.tuple (List.mapi (get_args args_field) args_typ))))
| `Union _ -> case (mkval mlconstr (Some (js2ml (Tuple args_typ) exp)))
end
| Record args ->
begin match variant_kind with
| `Enum -> error location Non_constant_constructor_in_enum
| `Sum _ ->
case (mkval mlconstr (Some (Exp.record (List.map (fun (loc, mlname, jsname, typ) -> check_label loc jsname; mlname, get_arg jsname typ) args) None)))
| `Union _ -> error location Record_constructor_in_union
end
in
let { int_default; int_cases; float_default; float_cases; string_default; string_cases; bool_default; bool_cases; _ } =
let cases = List.fold_left gen_cases empty_variant_cases constrs in
let _ =
let {
string_cases; float_cases; int_cases; bool_cases;
int_default = _; float_default = _; bool_default = _; string_default = _
} = cases in
let check_duplicates l =
let compare_values x y = Stdlib.compare x.value y.value in
let l = List.sort compare_values l in
let rec has_dup = function
| [] | [ _ ] -> ()
| x :: ((y :: _) as l) ->
if compare_values x y = 0 then
error loc (Duplicate_case_value (x.loc, y.loc))
else
has_dup l
in
has_dup l
in
check_duplicates string_cases;
check_duplicates bool_cases;
check_duplicates (float_cases @ int_cases);
in
cases
in
let bool_default, generate_fail_pattern_for_bool =
if List.exists (fun {value; _} -> value) bool_cases && List.exists (fun {value; _} -> not value) bool_cases then None, false
else bool_default, true
in
let gen_match ~fail_pattern e default other_cases =
let other_cases = List.map (fun {case;_} -> case) other_cases in
match default, other_cases with
| None, [] -> None
| Some default, [] when default.pc_lhs.ppat_desc = Ppat_any ->
Some default.pc_rhs
| Some default, _ ->
let cases = List.rev (default :: other_cases) in
Some (Exp.match_ e cases)
| None, _ :: _ ->
let cases =
if fail_pattern then (Exp.case (Pat.any ()) assert_false) :: other_cases
else other_cases
in
Some (Exp.match_ e (List.rev cases))
in
let discriminator =
match variant_kind with
| `Enum -> exp
| `Sum kind -> ojs_get exp kind
| `Union No_discriminator -> error loc Union_without_discriminator
| `Union (On_field kind) -> ojs_get exp kind
in
let number_match =
let default_expr exprOpt = Option.map (fun expr -> Exp.case (Pat.any ()) expr) exprOpt in
let get_int_match int_default = gen_match ~fail_pattern:true (js2ml int_typ discriminator) int_default int_cases in
let get_float_match float_default = gen_match ~fail_pattern:true (js2ml float_typ discriminator) float_default float_cases in
let int_match = get_int_match int_default in
let float_match = get_float_match float_default in
match int_match, float_match with
| Some m, None | None, Some m -> Some m
| None, None -> None
| Some _, Some _ ->
match int_default, float_default with
| _, None -> get_float_match (default_expr int_match)
| None, Some d ->
let case =
match get_int_match (default_expr (Some d.pc_rhs)) with
| None -> d
| Some int_match -> { d with pc_rhs = int_match }
in
get_float_match (Some case)
| Some d1, Some d2 ->
if d1 = d2 then get_float_match (default_expr int_match)
else error loc Multiple_default_case
in
let string_match = gen_match ~fail_pattern:true (js2ml string_typ discriminator) string_default string_cases in
let bool_match = gen_match ~fail_pattern:generate_fail_pattern_for_bool (js2ml bool_typ discriminator) bool_default bool_cases in
match number_match, string_match, bool_match with
| None, None, None -> assert false
| Some number_match, None, None -> number_match
| None, Some string_match, None -> string_match
| None, None, Some bool_match -> bool_match
| _ ->
let case_number = Option.map (Exp.case (pat_str "number")) number_match in
let case_string = Option.map (Exp.case (pat_str "string")) string_match in
let case_bool = Option.map (Exp.case (pat_str "boolean")) bool_match in
let case_default =
match variant_kind, int_default, float_default, string_default, bool_default with
| `Enum, _, _, _, _
| _, None, None, None, None -> Exp.case (Pat.any ()) assert_false
| (`Sum _ | `Union _), _, _, _, _ ->
let defaults = List.filter_map Fun.id [int_default; float_default; string_default; bool_default] in
match defaults with
| def :: rest when List.for_all ((=) def) rest -> def
| _ -> assert false
in
let cases =
List.fold_left
(fun state -> function Some x -> x :: state | None -> state)
[case_default]
[case_bool; case_string; case_number]
in
Exp.match_ (ojs "type_of" [discriminator]) cases
in
let_exp_in exp f
and ml2js ty exp =
match ty with
| Js -> exp
| Name (s, tl) ->
let s = if builtin_type s then "Ojs." ^ s else s in
let args = List.map (ml2js_fun ~eta:true) tl in
app (var (s ^ "_to_js")) (nolabel (args @ [exp])) false
| Arrow {ty_args; ty_vararg = None; unit_arg; ty_res} ->
let args =
let f _i {lab; att=_; typ} =
let s = fresh() in
let typ =
match lab with
| Arg | Lab _ -> typ
| Opt _ -> Name ("option", [typ])
in
(s, gen_typ typ), (arg_label lab, js2ml typ (var s))
in
List.mapi f ty_args
in
let formal_args, concrete_args = List.map fst args, List.map snd args in
let res = ml2js_unit ty_res (app exp concrete_args unit_arg) in
let body = if formal_args = [] then Exp.fun_ Nolabel None (Pat.any ()) res else res in
let f = List.fold_right (fun (s, _) -> fun_ (Nolabel, s, ojs_typ)) formal_args body in
ojs "fun_to_js" [int (max 1 (List.length formal_args)); f]
| Arrow {ty_args; ty_vararg = Some {lab=label_variadic; att=_; typ=ty_variadic};
unit_arg; ty_res} ->
let arguments = fresh() in
let n_args = List.length ty_args in
let concrete_args =
List.mapi
(fun i {lab; att=_; typ} -> arg_label lab, js2ml typ (ojs "array_get" [var arguments; int i])) ty_args
in
let = ojs "list_of_js_from" [ js2ml_fun ty_variadic; var arguments; int n_args ] in
let =
match label_variadic with
| Arg | Lab _ -> extra_arg
| Opt _ -> Exp.construct (mknoloc (longident_parse "Some")) (Some extra_arg)
in
let concrete_args = concrete_args @ [arg_label label_variadic, extra_arg] in
let res = app exp concrete_args unit_arg in
let f = func [Nolabel, arguments, Typ.any ()] false (ml2js_unit ty_res res) in
ojs "fun_to_js_args" [f]
| Unit _ -> app (var "Ojs.unit_to_js") (nolabel [exp]) false
| Variant {location; global_attrs; attributes; constrs} ->
ml2js_of_variant ~variant:true location ~global_attrs attributes constrs exp
| Tuple typs ->
let typed_vars = List.mapi (fun i typ -> i, typ, fresh ()) typs in
let pat = Pat.tuple (List.map (function (_, _, x) -> Pat.var (mknoloc x)) typed_vars) in
Exp.let_ Nonrecursive [Vb.mk pat exp] begin
let n = List.length typs in
let a = fresh () in
let new_array = ojs "array_make" [int n] in
Exp.let_ Nonrecursive [Vb.mk (Pat.var (mknoloc a)) new_array] begin
let f e (i, typ, x) =
Exp.sequence (ojs "array_set" [var a; int i; ml2js typ (var x)]) e
in
List.fold_left f (var a) (List.rev typed_vars)
end
end
| Typ_var _ ->
app (var ("Obj.magic")) (nolabel ([exp])) false
| Packaged_type { module_name; _ } ->
app (var (module_name ^ ".t_to_js")) (nolabel [exp]) false
and ml2js_discriminator ~global_attrs mlconstr attributes =
match get_js_constr ~global_attrs mlconstr attributes with
| `Int n -> ml2js int_typ (int_of_repr n)
| `Float f -> ml2js float_typ (float_of_repr f)
| `String s -> ml2js string_typ (str s)
| `Bool b -> ml2js bool_typ (bool b)
and ml2js_of_variant ~variant loc ~global_attrs attrs constrs exp =
let variant_kind = get_variant_kind loc attrs in
let check_label =
match variant_kind with
| `Sum kind -> (fun loc label -> if label = kind then error loc Sum_kind_args)
| _ -> (fun _ _ -> ())
in
let mkpat =
if variant then fun x arg -> Pat.variant x arg
else fun x arg -> Pat.construct (mknoloc (Longident.Lident x)) arg
in
let pair key typ value = Exp.tuple [str key; ml2js typ value] in
let case {mlconstr; arg; attributes; location} =
let mkobj args =
let discriminator = ml2js_discriminator ~global_attrs mlconstr attributes in
match variant_kind, args with
| `Enum, [] -> discriminator
| `Enum, _ :: _ -> error location Non_constant_constructor_in_enum
| `Sum kind, _ -> ojs "obj" [Exp.array ((Exp.tuple [str kind; discriminator]) :: args)]
| `Union _, [] -> ojs_null
| `Union _, _ :: _ -> error location Record_constructor_in_union
in
match arg with
| Constant -> Exp.case (mkpat mlconstr None) (mkobj [])
| Unary arg_typ ->
let x = fresh() in
let value =
match variant_kind with
| `Enum when
is_discriminator_type arg_typ &&
has_attribute "js.default" attributes -> ml2js arg_typ (var x)
| `Enum | `Sum _ ->
let loc, arg_field = get_string_attribute_default "js.arg" (location, "arg") attributes in
check_label loc arg_field;
mkobj [pair arg_field arg_typ (var x)]
| `Union _ -> ml2js arg_typ (var x)
in
Exp.case (mkpat mlconstr (Some (Pat.var (mknoloc x)))) value
| Nary args_typ ->
begin match variant_kind with
| `Enum | `Sum _ ->
let loc, args_field = get_string_attribute_default "js.arg" (location, "arg") attributes in
check_label loc args_field;
let xis = List.mapi (fun i typ -> i, typ, fresh()) args_typ in
let n_args = List.length xis in
Exp.case
(mkpat mlconstr (Some (Pat.tuple (List.map (fun (_, _, xi) -> Pat.var (mknoloc xi)) xis))))
(let args = fresh() in
Exp.let_ Nonrecursive
[Vb.mk (Pat.var (mknoloc args)) (ojs "array_make" [int n_args])]
(List.fold_left
(fun e (i, typi, xi) ->
Exp.sequence
(ojs "array_set" [var args; int i; ml2js typi (var xi)]) e)
(mkobj [pair args_field Js (var args)])
xis))
| `Union _ ->
let x = fresh() in
Exp.case (mkpat mlconstr (Some (Pat.var (mknoloc x)))) (ml2js (Tuple args_typ) (var x))
end
| Record args ->
let x = fresh() in
Exp.case
(mkpat mlconstr (Some (Pat.var (mknoloc x))))
(mkobj (List.map (fun (loc, mlname, jsname, typ) -> check_label loc jsname; pair jsname typ (Exp.field (var x) mlname)) args))
in
Exp.match_ exp (List.map case constrs)
and js2ml_fun ?eta ty = mkfun ?eta ~typ:Js (js2ml ty)
and ml2js_fun ?eta ty = mkfun ?eta ~typ:ty (ml2js ty)
and prepare_args ty_args ty_vararg : (arg_label * label * _) list * [ `Push of expression | `Simple of expression ] =
if ty_vararg = None &&
List.for_all
(function
| {lab = Opt {def = None; _}; _} -> false
| {typ = Variant {location = _; global_attrs = _; attributes; constrs}; _} when has_attribute "js.enum" attributes -> is_simple_enum constrs
| {lab = Arg | Lab _ | Opt {def = Some _; _}; _} -> true
)
ty_args
then
let x,y = prepare_args_simple ty_args in
x, `Simple y
else
let x, y = prepare_args_push ty_args ty_vararg in
x, `Push y
and prepare_args_simple ty_args =
let f {lab; att=_; typ} =
let s = fresh () in
let e, typ =
match lab with
| Arg | Lab _ -> ml2js typ (var s), typ
| Opt {def; _} ->
begin match def with
| None -> assert false
| Some none ->
ml2js typ (match_some_none ~none ~some:(fun v -> v) (var s)), Name ("option", [typ])
end
in
(arg_label lab, s, gen_typ typ), e
in
let formal_args, concrete = List.split (List.map f ty_args) in
let concrete_args = Exp.array concrete in
formal_args, concrete_args
and prepare_args_push ty_args ty_vararg =
let push arr typ x =
match typ with
| Variant {location = _; global_attrs; attributes; constrs} when
(has_attribute "js.enum" attributes && not (is_simple_enum constrs)) ->
let f {mlconstr; arg; attributes; location = _} =
let gen_tuple typs =
let xis = List.map (fun typ -> typ, fresh ()) typs in
let cargs =
match xis with
| [] -> None
| [_, x] -> Some (Pat.var (mknoloc x))
| _ :: _ :: _ -> Some (Pat.tuple (List.map (fun (_, xi) -> Pat.var (mknoloc xi)) xis))
in
let args =
ml2js_discriminator ~global_attrs mlconstr attributes ::
List.map (fun (typi, xi) -> ml2js typi (var xi)) xis
in
let e = exp_ignore (ojs "call" [arr; str "push"; Exp.array args]) in
Exp.case (Pat.variant mlconstr cargs) e
in
match arg with
| Constant -> gen_tuple []
| Unary typ -> gen_tuple [typ]
| Nary typs -> gen_tuple typs
| Record _ -> assert false
in
let cases = List.map f constrs in
Exp.match_ (Exp.constraint_ x (gen_typ typ)) cases
| typ -> exp_ignore (ojs "call" [arr; str "push"; Exp.array [ml2js typ x]])
in
let f {lab; att=_; typ} =
let s = fresh () in
let arg_typ =
match lab with
| Arg | Lab _ -> typ
| Opt _ -> Name ("option", [typ])
in
(arg_label lab, s, gen_typ arg_typ),
fun arr ->
let s = var s in
match lab with
| Arg | Lab _ -> push arr typ s
| Opt {def; _} ->
begin match def with
| None ->
match_some_none ~none:unit_expr ~some:(fun s -> push arr typ s) s
| Some none ->
push arr typ (match_some_none ~none ~some:(fun v -> v) s)
end
in
let formal_args, concrete_args = List.split (List.map f ty_args) in
let formal_args, concrete_args =
match ty_vararg with
| None -> formal_args, concrete_args
| Some {lab; att=_; typ} ->
let arg = fresh () in
formal_args @ [arg_label lab, arg, gen_typ (Name ("list", [typ]))],
concrete_args @ [fun arr ->
let = list_iter (mkfun ~typ (fun x -> push arr typ x)) in
match lab with
| Arg | Lab _ -> extra_args (var arg)
| Opt _ -> match_some_none ~none:unit_expr ~some:extra_args (var arg)
]
in
let body arr = List.fold_right (fun code -> Exp.sequence (code arr)) concrete_args arr in
formal_args, let_exp_in (ojs "new_obj" [ojs_variable "Array"; Exp.array []]) body
and ml2js_unit ty_res res =
match ty_res with
| Unit _ -> res
| _ -> ml2js ty_res res
and js2ml_unit ty_res res =
match ty_res with
| Unit _ -> exp_ignore res
| _ -> js2ml ty_res res
and gen_typ ?(packaged_type_as_type_var = false) = function
| Name (s, tyl) ->
Typ.constr (mknoloc (longident_parse s)) (List.map (gen_typ ~packaged_type_as_type_var) tyl)
| Js -> ojs_typ
| Unit _ ->
Typ.constr (mknoloc (Lident "unit")) []
| Arrow {ty_args; ty_vararg; unit_arg; ty_res} ->
let tl =
match ty_vararg with
| None -> ty_args
| Some {lab; att; typ} -> ty_args @ [{lab; att; typ=Name ("list", [typ])}]
in
let tl = if unit_arg then tl @ [{lab=Arg;att=[];typ=Unit none}] else tl in
List.fold_right (fun {lab; att=_; typ} t2 ->
Typ.arrow (arg_label lab) (gen_typ ~packaged_type_as_type_var typ) t2) tl (gen_typ ~packaged_type_as_type_var ty_res)
| Variant {location = _; global_attrs = _; attributes = _; constrs} ->
let f {mlconstr; arg; attributes = _; location = _} =
let mlconstr = mknoloc mlconstr in
match arg with
| Constant -> Rf.mk (Rtag (mlconstr, true, []))
| Unary typ -> Rf.mk (Rtag (mlconstr, false, [gen_typ ~packaged_type_as_type_var typ]))
| Nary typs -> Rf.mk (Rtag (mlconstr, false, [gen_typ ~packaged_type_as_type_var (Tuple typs)]))
| Record _ -> assert false
in
let rows = List.map f constrs in
Typ.variant rows Closed None
| Tuple typs ->
Typ.tuple (List.map (gen_typ ~packaged_type_as_type_var) typs)
| Typ_var label -> Typ.var label
| Packaged_type { local_name; _ } ->
if packaged_type_as_type_var then Typ.var local_name
else Typ.constr (mknoloc (Lident local_name)) []
and mkfun ?typ ?eta f =
let s = fresh () in
let typ =
match typ with
| None -> Typ.any ()
| Some typ -> gen_typ typ
in
fun_ ?eta (Nolabel, s, typ) (f (var s))
let process_fields ctx ~global_attrs l =
let loc = l.pld_name.loc in
let mlname = l.pld_name.txt in
let attrs = l.pld_attributes in
let typ = l.pld_type in
let jsname =
match get_string_attribute "js" attrs with
| None -> js_name ~global_attrs mlname
| Some s -> s
in
loc,
mknoloc (Lident mlname),
jsname,
parse_typ ctx ~global_attrs typ
let global_object ~global_attrs =
let rec traverse = function
| [] -> ojs_global
| hd :: tl ->
begin match get_expr_attribute "js.scope" [hd] with
| None -> traverse tl
| Some {pexp_desc=Pexp_constant (Pconst_string (prop, _, _)); _} -> ojs_get (traverse tl) prop
| Some {pexp_desc=Pexp_tuple path; _} ->
let init = traverse tl in
let folder state pexp =
match pexp.pexp_desc with
| Pexp_constant (Pconst_string (prop, _, _)) -> ojs_get state prop
| _ -> pexp
in
List.fold_left folder init path
| Some global_object -> global_object
end
in
traverse global_attrs
let rec gen_decls si =
List.concat (List.map gen_decl si)
and gen_funs ~global_attrs p =
let name = p.ptype_name.txt in
let decl_attrs = p.ptype_attributes in
let global_attrs = global_attrs in
let ctx_withloc =
List.map (function
| {ptyp_desc = Ptyp_any; ptyp_loc = loc; ptyp_attributes = _; ptyp_loc_stack = _}, (NoVariance, _) ->
{ loc = loc; txt = fresh () }
| {ptyp_desc = Ptyp_var label; ptyp_loc = loc; ptyp_attributes = _; ptyp_loc_stack = _}, (NoVariance, _) ->
{ loc = loc; txt = label }
| _ -> error p.ptype_loc Cannot_parse_type
) p.ptype_params
in
let ctx = List.map (fun lwl -> lwl.txt) ctx_withloc in
let full_ctx = { empty_type_context with type_params = ctx } in
let loc = p.ptype_loc in
let exception Skip_mapping_generation in
let local_type = Name (name, List.map (fun txt -> Name (local_type_of_type_var txt, [])) ctx) in
let of_js, to_js, custom_funs =
match p.ptype_kind with
| _ when has_attribute "js.custom" decl_attrs ->
begin match get_attribute "js.custom" decl_attrs with
| None -> assert false
| Some attribute ->
match expr_of_payload attribute with
| { pexp_desc = Pexp_record (
( [ { txt = Lident "of_js"; loc = loc_of}, of_js;
{ txt = Lident "to_js"; loc = loc_to}, to_js ]
| [ { txt = Lident "to_js"; loc = loc_to}, to_js;
{ txt = Lident "of_js"; loc = loc_of}, of_js ] ), None); _} ->
let value_binding suffix loc (body: expression) (ty: core_type) =
let name = { txt = Printf.sprintf "%s_%s" name suffix; loc} in
Vb.mk ~loc (Pat.constraint_ (Pat.var name) ty) body
in
let ty = gen_typ (Name (name, List.map (fun x -> Typ_var x) ctx)) in
let fold_types f base =
let ty =
List.fold_right (fun tv acc -> Typ.arrow Nolabel (f tv) acc) ctx base
in
Typ.poly ctx_withloc ty
in
let of_js_ty =
fold_types (fun tv -> Typ.arrow Nolabel ojs_typ (Typ.var tv)) (Typ.arrow Nolabel ojs_typ ty)
in
let to_js_ty =
fold_types (fun tv -> Typ.arrow Nolabel (Typ.var tv) ojs_typ) (Typ.arrow Nolabel ty ojs_typ)
in
let vbs =
[
value_binding "of_js" loc_of of_js of_js_ty;
value_binding "to_js" loc_to to_js to_js_ty;
]
in
lazy (raise Skip_mapping_generation),
lazy (raise Skip_mapping_generation),
vbs
| { pexp_loc; _ } -> error pexp_loc (Record_expected "{ to_js = ...; of_js = ... }")
end
| Ptype_abstract ->
let ty, eta =
match p.ptype_manifest with
| None -> Js, true
| Some ty -> parse_typ full_ctx ~global_attrs { ty with ptyp_attributes = decl_attrs @ ty.ptyp_attributes }, false
in
lazy (js2ml_fun ~eta ty),
lazy (ml2js_fun ~eta ty),
[]
| Ptype_variant cstrs ->
let prepare_constructor c =
let mlconstr = c.pcd_name.txt in
let arg =
match c.pcd_args with
| Pcstr_tuple args ->
begin match args with
| [] -> Constant
| [x] -> Unary (parse_typ full_ctx ~global_attrs x)
| _ :: _ :: _ -> Nary (List.map (parse_typ full_ctx ~global_attrs) args)
end
| Pcstr_record args ->
let global_attrs = c.pcd_attributes @ global_attrs in
Record (List.map (process_fields full_ctx ~global_attrs) args)
in
{ mlconstr; arg; attributes = c.pcd_attributes; location = c.pcd_loc }
in
let params = List.map prepare_constructor cstrs in
lazy (mkfun ~typ:Js (js2ml_of_variant ~variant:false loc ~global_attrs decl_attrs params)),
lazy (mkfun ~typ:local_type (ml2js_of_variant ~variant:false loc ~global_attrs decl_attrs params)),
[]
| Ptype_record lbls ->
let global_attrs = decl_attrs @ global_attrs in
let lbls = List.map (process_fields full_ctx ~global_attrs) lbls in
let of_js x (_loc, ml, js, ty) = ml, js2ml ty (ojs_get x js) in
let to_js x (_loc, ml, js, ty) = Exp.tuple [str js; ml2js ty (Exp.field x ml)] in
lazy (mkfun ~typ:Js (fun x -> Exp.record (List.map (of_js x) lbls) None)),
lazy (mkfun ~typ:local_type (fun x -> ojs "obj" [Exp.array (List.map (to_js x) lbls)])),
[]
| _ ->
error p.ptype_loc Cannot_parse_type
in
let force_opt x = try (Some (Lazy.force x)) with Error (_, Union_without_discriminator) | Skip_mapping_generation -> None in
let of_js, to_js = force_opt of_js, force_opt to_js in
let alpha_of_js typ =
Arrow {ty_args = [{lab=Arg; att=[]; typ = Js}]; ty_vararg = None; unit_arg = false; ty_res = typ}
in
let alpha_to_js typ =
Arrow {ty_args = [{lab=Arg; att=[]; typ}]; ty_vararg = None; unit_arg = false; ty_res = Js}
in
let push_typ f l =
List.map (fun label -> f (Typ_var label)) ctx @ l
in
let push_fun suffix typ body =
match body with
| None -> None
| Some body ->
Some
(List.fold_right
(fun label acc ->
Exp.newtype ({ label with txt = local_type_of_type_var label.txt}) acc
) ctx_withloc
(List.fold_right
(fun label acc ->
let name = (local_type_of_type_var label)^suffix in
let label = Name (local_type_of_type_var label, []) in
Exp.fun_ Nolabel None (Pat.constraint_ (Pat.var (mknoloc name)) (gen_typ (typ label))) acc
) ctx body
))
in
let f (name, input_typs, ret_typ, code) =
match code with
| None -> None
| Some code ->
Some
(Vb.mk ~loc:p.ptype_loc
(Pat.constraint_
(Pat.var (mknoloc name))
(Typ.poly ctx_withloc
(gen_typ (Arrow
{
ty_args = (List.map (fun typ -> {lab=Arg; att=[]; typ}) input_typs);
ty_vararg = None; unit_arg = false; ty_res = ret_typ
}))))
code)
in
let funs =
choose f [ name ^ "_of_js", push_typ alpha_of_js [Js], Name (name, List.map (fun x -> Typ_var x) ctx), push_fun "_of_js" alpha_of_js of_js;
name ^ "_to_js", push_typ alpha_to_js [Name (name, List.map (fun x -> Typ_var x) ctx)], Js, push_fun "_to_js" alpha_to_js to_js ]
in
funs @ custom_funs
and gen_decl = function
| Type (rec_flag, decls, global_attrs) ->
let funs = List.concat (List.map (gen_funs ~global_attrs) decls) in
let decls = List.map rewrite_typ_decl decls in
[ Str.type_ rec_flag decls; Str.value rec_flag funs ]
| Module (functor_parameters, s, decls) ->
[ Str.module_ (gen_module functor_parameters s decls) ]
| RecModule modules ->
[ Str.rec_module (List.map (fun (module_type, functor_parameters, s, decls) -> gen_module ~module_type functor_parameters s decls) modules) ]
| ModuleAlias (s, lid) ->
[ Str.module_ (Mb.mk (mknoloc (Some s)) (Mod.ident lid)) ]
| Val { decl = Ignore; _ } -> []
| Val { name = s; ty; decl; packages; loc; global_attrs } ->
let global_object = global_object ~global_attrs in
let d = gen_def ~global_object loc decl ty in
[ def ~packages s (gen_typ ~packaged_type_as_type_var:true ty) d ]
| Class decls ->
let cast_funcs = List.concat (List.map gen_class_cast decls) in
let classes = List.map (gen_classdecl cast_funcs) decls in
[Str.class_ classes; Str.value Nonrecursive cast_funcs]
| Implem str ->
(Lazy.force mapper) # structure str
| Open descr ->
let descr = {descr with popen_expr = Mod.ident descr.popen_expr} in
[ Str.open_ descr ]
| Include descr ->
[ Str.include_ descr ]
and gen_module ?module_type functor_parameters s decls : module_binding =
let structure = Mod.structure (gen_decls decls) in
let functors =
List.fold_left (fun acc param ->
Mod.functor_ param acc
) structure (List.rev functor_parameters)
in
let body =
match module_type with
| None -> functors
| Some mty -> Mod.constraint_ functors mty
in
Mb.mk (mknoloc (Some s)) body
and gen_classdecl cast_funcs = function
| Declaration { class_name; class_fields } ->
let x = fresh() in
let obj =
Cl.structure
(Cstr.mk (Pat.any()) (List.map (gen_class_field x) class_fields))
in
let ign = function
| {pvb_pat = {ppat_desc = Ppat_var {txt; loc = _}; _}; _} -> Vb.mk (Pat.any ()) (var txt)
| _ -> assert false
in
let obj = Cl.let_ Nonrecursive (List.map ign cast_funcs) obj in
let obj = Cl.let_ Nonrecursive cast_funcs obj in
Ci.mk
(mknoloc class_name)
(Cl.fun_ Nolabel None (Pat.constraint_ (Pat.var (mknoloc x)) ojs_typ) obj)
| Constructor {class_name; js_class_name; class_arrow = {ty_args; ty_vararg; unit_arg; ty_res}} ->
let formal_args, concrete_args = prepare_args ty_args ty_vararg in
let obj = ojs_new_obj_arr (ojs_variable js_class_name) concrete_args in
let super_class =
match ty_res with
| Name (super_class, []) -> super_class
| _ -> assert false
in
let e = Cl.apply (Cl.constr (mknoloc (longident_parse super_class)) []) [Nolabel, obj] in
let e = if unit_arg then Cl.fun_ Nolabel None unit_pat e else e in
let f e (label, x, _) = Cl.fun_ label None (Pat.var (mknoloc x)) e in
Ci.mk (mknoloc class_name) (List.fold_left f e (List.rev formal_args))
and gen_class_field x = function
| Method {method_name; method_typ; method_def; method_loc; method_attrs} ->
let body =
match method_def, method_typ with
| Getter s, ty_res -> js2ml ty_res (ojs_get (var x) s)
| Setter s, Arrow {ty_args = [{lab=Arg; att=_; typ}]; ty_vararg = None; unit_arg = false; ty_res = Unit _} ->
mkfun (fun arg -> ojs_set (var x) s (ml2js typ arg))
| MethodCall s, Arrow {ty_args; ty_vararg; unit_arg; ty_res} ->
let formal_args, concrete_args = prepare_args ty_args ty_vararg in
let res = ojs_call_arr (var x) s concrete_args in
func formal_args unit_arg (js2ml_unit ty_res res)
| MethodCall s, ty_res ->
js2ml_unit ty_res (ojs "call" [var x; str s; Exp.array []])
| IndexGetter, Arrow {ty_args = [{lab=Arg; att=_; typ=ty_index}]; ty_vararg = None; unit_arg = false; ty_res } ->
gen_index_get ty_index (var x) ty_res
| IndexSetter, Arrow {ty_args = [{lab=Arg; att=_; typ=ty_index}; {lab=Arg; att=_; typ=ty_value}]; ty_vararg = None; unit_arg = false; ty_res = Unit _ } ->
gen_index_set ty_index (var x) ty_value
| ApplyAsFunction t, Arrow {ty_args; ty_vararg; unit_arg; ty_res} ->
let formal_args, concrete_args = prepare_args ty_args ty_vararg in
let res =
match t with
| Function -> ojs_apply_arr (var x) concrete_args
| NewableFunction -> ojs_new_obj_arr (var x) concrete_args
in
func formal_args unit_arg (js2ml_unit ty_res res)
| _ -> error method_loc Binding_type_mismatch
in
Cf.method_ ~attrs:method_attrs (mknoloc method_name) Public (Cf.concrete Fresh (Exp.constraint_ body (gen_typ method_typ)))
| Inherit super ->
let e = Cl.apply (Cl.constr super []) [Nolabel, var x] in
Cf.inherit_ Fresh e None
and gen_class_cast = function
| Declaration { class_name; class_fields = _ } ->
let class_typ = Typ.constr (mknoloc (longident_parse class_name)) [] in
let to_js =
let arg = fresh() in
Vb.mk (Pat.var (mknoloc (class_name ^ "_to_js")))
(Exp.fun_ Nolabel None
(Pat.constraint_ (Pat.var (mknoloc arg)) class_typ)
(Exp.constraint_ (Exp.send (var arg) (mknoloc "to_js")) ojs_typ))
in
let of_js =
let arg = fresh() in
Vb.mk (Pat.var (mknoloc (class_name ^ "_of_js")))
(Exp.fun_ Nolabel None
(Pat.constraint_ (Pat.var (mknoloc arg)) ojs_typ)
(Exp.constraint_ (Exp.apply (Exp.new_ (mknoloc (Longident.Lident class_name))) [Nolabel, var arg]) class_typ))
in
[to_js; of_js]
| Constructor {class_name = _; js_class_name = _; class_arrow = _} -> []
and gen_def ~global_object loc decl ty =
match decl, ty with
| Cast, Arrow {ty_args = [{lab=Arg; att=_; typ}]; ty_vararg = None; unit_arg = false; ty_res} ->
mkfun ~typ (fun this -> js2ml ty_res (ml2js typ this))
| PropGet s, Arrow {ty_args = [{lab=Arg; att=_; typ}]; ty_vararg = None; unit_arg = false; ty_res} ->
mkfun ~typ (fun this -> js2ml ty_res (ojs_get (ml2js typ this) s))
| PropGet s, Arrow {ty_args = []; ty_vararg = None; unit_arg = true; ty_res} ->
fun_unit (gen_def ~global_object loc (Global s) ty_res)
| Global s, ty_res ->
begin match ty_res with
| Arrow {ty_args; ty_vararg; unit_arg; ty_res} ->
let this, s = select_path global_object s in
let formal_args, concrete_args = prepare_args ty_args ty_vararg in
let res this = ojs_call_arr (ml2js Js this) s concrete_args in
func formal_args unit_arg (js2ml_unit ty_res (res this))
| _ -> js2ml ty_res (get_path global_object s)
end
| PropSet s,
Arrow {ty_args = [{lab=Arg; att=_; typ=(Name _ as ty_this)};
{lab=Arg; att=_; typ=ty_arg}];
ty_vararg = None; unit_arg = false; ty_res = Unit _} ->
let res this arg =
ojs_set (ml2js ty_this this) s (ml2js ty_arg arg)
in
mkfun ~typ:ty_this (fun this -> mkfun ~typ:ty_arg (fun arg -> res this arg))
| PropSet s, Arrow {ty_args = [{lab = Arg; att = _; typ = ty_arg}]; ty_vararg = None; unit_arg = false; ty_res = Unit _} ->
mkfun ~typ:ty_arg (fun arg -> set_path global_object s (ml2js ty_arg arg))
| MethCall s,
Arrow {ty_args = {lab=Arg; att=_; typ} :: ty_args; ty_vararg; unit_arg; ty_res} ->
let formal_args, concrete_args = prepare_args ty_args ty_vararg in
let res this = ojs_call_arr (ml2js typ this) s concrete_args in
mkfun ~typ (fun this -> func formal_args unit_arg (js2ml_unit ty_res (res this)))
| New name, Arrow {ty_args; ty_vararg; unit_arg; ty_res} ->
let formal_args, concrete_args = prepare_args ty_args ty_vararg in
let res =
let constructor =
match name with
| None -> global_object
| Some name -> get_path global_object name
in
ojs_new_obj_arr constructor concrete_args
in
func formal_args unit_arg (js2ml ty_res res)
| Builder global_attrs, Arrow {ty_args; ty_vararg = None; unit_arg; ty_res} ->
let gen_arg {lab; att; typ} =
let s = fresh () in
let arg_typ =
match lab with
| Arg | Lab _ -> typ
| Opt _ -> Name ("option", [typ])
in
(arg_label lab, s, gen_typ arg_typ),
fun x ->
let js =
match get_string_attribute "js" att, lab with
| Some s, _ -> s
| None, Arg -> error loc Unlabelled_argument_in_builder
| None, (Lab {ml; _} | Opt {ml; _}) -> js_name ~global_attrs ml
in
let code exp = ojs_set x js (ml2js typ exp) in
match lab with
| Arg | Lab _ -> code (var s)
| Opt {def; _} ->
begin match def with
| None ->
match_some_none (var s) ~none:unit_expr ~some:code
| Some none ->
code (match_some_none ~none ~some:(fun v -> v) (var s))
end
in
let args = List.map gen_arg ty_args in
let formal_args = List.map fst args in
let concrete_args = List.map snd args in
let f x init code = Exp.sequence (code x) init in
let init x = List.fold_left (f x) (js2ml_unit ty_res x) (List.rev concrete_args) in
let body = let_exp_in (ojs "empty_obj" [unit_expr]) init in
func formal_args unit_arg body
| Apply t,
Arrow {ty_args = {lab=Arg; att=_; typ} :: ty_args; ty_vararg; unit_arg; ty_res} ->
let formal_args, concrete_args = prepare_args ty_args ty_vararg in
let res this =
match t with
| Function -> ojs_apply_arr (ml2js typ this) concrete_args
| NewableFunction -> ojs_new_obj_arr (ml2js typ this) concrete_args
in
mkfun ~typ (fun this -> func formal_args unit_arg (js2ml_unit ty_res (res this)))
| Invoke, Arrow {ty_args; ty_vararg; unit_arg; ty_res} ->
let formal_args, concrete_args = prepare_args ty_args ty_vararg in
let res = ojs_apply_arr global_object concrete_args in
func formal_args unit_arg (js2ml ty_res res)
| IndexGet,
Arrow {ty_args = [{lab=Arg; att=_; typ=(Name _ as ty_this)}; {lab=Arg; att=_; typ=ty_index}];
ty_vararg = None; unit_arg = false; ty_res} ->
mkfun ~typ:ty_this (fun this -> gen_index_get ty_index (ml2js ty_this this) ty_res)
| IndexSet,
Arrow {ty_args = [{lab=Arg; att=_; typ=(Name _ as ty_this)};
{lab=Arg; att=_; typ=ty_index};
{lab=Arg; att=_; typ=ty_value}];
ty_vararg = None; unit_arg = false; ty_res = Unit _} ->
mkfun ~typ:ty_this (fun this -> gen_index_set ty_index (ml2js ty_this this) ty_value)
| Auto valdef, _ ->
Ast_helper.Exp.attr
(gen_def ~global_object loc valdef ty)
(auto_deprecation_attribute loc valdef)
| _ ->
error loc Binding_type_mismatch
and gen_index_get ty_index this ty_res =
let res index =
match ty_index with
| Name ("int", []) -> ojs "array_get" [this; index]
| _ -> ojs "get_prop" [this; ml2js ty_index index]
in
mkfun ~typ:ty_index (fun index -> js2ml ty_res (res index))
and gen_index_set ty_index this ty_value =
let res index value =
let value_js = ml2js ty_value value in
match ty_index with
| Name ("int", []) -> ojs "array_set" [this; index; value_js]
| _ -> ojs "set_prop" [this; ml2js ty_index index; value_js]
in
mkfun ~typ:ty_index (fun index -> mkfun ~typ:ty_value (fun value -> res index value))
(** ppx mapper *)
and str_of_sg ~global_attrs sg =
let decls = parse_sig ~global_attrs sg in
let attr =
attr "js.dummy" (str "!! This code has been generated by gen_js_api !!")
in
register_loc attr;
Str.attribute attr ::
disable_warnings ::
gen_decls decls
and module_expr_rewriter ~loc ~attrs sg =
let str = str_of_sg ~global_attrs:attrs sg in
Mod.constraint_
(Mod.structure ~attrs:[ merlin_hide ] str)
(Mty.signature ~loc ~attrs (clear_attr_mapper # signature sg))
and js_to_rewriter ~loc ty =
let e' = with_default_loc {loc with loc_ghost = true }
(fun () -> js2ml_fun (parse_typ empty_type_context ~global_attrs:[] ty))
in
{ e' with pexp_loc = loc }
and js_of_rewriter ~loc ty =
let e' = with_default_loc {loc with loc_ghost = true}
(fun () -> ml2js_fun (parse_typ empty_type_context ~global_attrs:[] ty))
in
{ e' with pexp_loc = loc }
and type_decl_rewriter ~loc rec_flag l =
let itm = with_default_loc {loc with loc_ghost = true}
(fun () ->
let funs = List.concat (List.map (gen_funs ~global_attrs:[]) l) in
[
disable_warnings;
Str.value ~loc:loc rec_flag funs
]
)
in
itm
and mapper =
lazy (object
inherit Ast_traverse.map as super
method! module_expr mexp =
let mexp = super # module_expr mexp in
match mexp.pmod_desc with
| Pmod_extension ({txt = "js"; _}, PSig sg) ->
module_expr_rewriter ~loc:mexp.pmod_loc ~attrs:mexp.pmod_attributes sg
| _ -> mexp
method! structure_item str =
let str = super # structure_item str in
let global_attrs = [] in
match str.pstr_desc with
| Pstr_primitive vd when vd.pval_prim = [] ->
begin match parse_valdecl ~global_attrs ~in_sig:false vd with
| exception Exit -> str
| d -> incl (gen_decls [d])
end
| Pstr_type (rec_flag, decls) ->
let js_decls = List.filter (fun d -> has_attribute "js" d.ptype_attributes) decls in
begin match js_decls with
| [] -> str
| l ->
incl (
{str with pstr_desc = Pstr_type (rec_flag, List.map (fun d -> if has_attribute "js" d.ptype_attributes then rewrite_typ_decl d else d) decls)}
::
type_decl_rewriter ~loc:str.pstr_loc rec_flag l
)
end
| _ ->
str
method! expression e =
let e = super # expression e in
match e.pexp_desc with
| Pexp_extension (attr, PTyp ty) when filter_extension "js.to" attr ->
js_to_rewriter ~loc:e.pexp_loc ty
| Pexp_extension (attr, PTyp ty) when filter_extension "js.of" attr ->
js_of_rewriter ~loc:e.pexp_loc ty
| _ ->
e
method! attribute a =
ignore (filter_attr_name "js.dummy" a : bool);
super # attribute a
end)
let is_js_attribute txt = txt = "js" || has_prefix ~prefix:"js." txt
let check_loc_mapper =
object
inherit Ast_traverse.map
method! attribute ({attr_name = {txt; loc}; _} as attr) =
if is_js_attribute txt then begin
if is_registered_loc loc || not !check_attribute || txt = "js.dummy" then ()
else error loc (Spurious_attribute txt)
end;
attr
end
(** Main *)
let out = ref ""
let specs =
[
"-o", Arg.Set_string out, " Specify output .ml file (- for stdout).";
]
let usage = "gen_js_api [-o mymodule.ml] mymodule.mli"
let standalone () =
let files = ref [] in
Arg.parse specs (fun s -> files := s :: !files) usage;
let src =
match !files with
| [src] -> src
| [] -> error Location.none No_input
| _ -> error Location.none Multiple_inputs
in
if !out = "" then out := Filename.chop_extension src ^ ".ml";
let oc = if !out = "-" then stdout else open_out !out in
let sg =
Ocaml_common.Pparse.parse_interface
~tool_name:"gen_js_iface"
src |> Selected_ast.Of_ocaml.copy_signature
in
let str = str_of_sg ~global_attrs:[] sg in
ignore (check_loc_mapper # signature sg);
let str = clear_attr_mapper # structure str in
Format.fprintf (Format.formatter_of_out_channel oc) "%a@." Pprintast.structure str;
if !out <> "-" then close_out oc
let mapper =
object
inherit Ast_traverse.map as super
method! structure str =
check_loc_mapper # structure (super#structure str)
end
let mark_attributes_as_used =
object
inherit Ast_traverse.map as super
method! attribute ({attr_name = {txt; _}; _} as attr) =
if is_js_attribute txt then
ignore (filter_attr_name txt attr : bool);
super # attribute attr
end