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
|
(* camlp5r *)
(* plexer.ml,v *)
(* Copyright (c) INRIA 2007-2017 *)
(* #load "pa_lexer.cmo" *)
open Versdep;;
let simplest_raw_strings = ref false;;
let no_quotations = ref false;;
let error_on_unknown_keywords = ref false;;
let dollar_for_antiquotation = ref true;;
let specific_space_dot = ref false;;
let force_antiquot_loc = ref false;;
type context =
{ mutable after_space : bool;
simplest_raw_strings : bool;
dollar_for_antiquotation : bool;
specific_space_dot : bool;
find_kwd : string -> string;
is_kwd : string -> bool;
line_cnt : int -> char -> unit;
set_line_nb : unit -> unit;
make_lined_loc : int * int -> string -> Ploc.t }
;;
let err ctx loc msg =
Ploc.raise (ctx.make_lined_loc loc "") (Plexing.Error msg)
;;
let keyword_or_error ctx loc s =
try "", ctx.find_kwd s with
Not_found ->
if !error_on_unknown_keywords then err ctx loc ("illegal token: " ^ s)
else "", s
;;
let rev_implode l =
let s = string_create (List.length l) in
let rec loop i =
function
c :: l -> string_unsafe_set s i c; loop (i - 1) l
| [] -> s
in
bytes_to_string (loop (string_length s - 1) l)
;;
let implode l = rev_implode (List.rev l);;
let stream_peek_nth n strm =
let rec loop n =
function
[] -> None
| [x] -> if n == 1 then Some x else None
| _ :: l -> loop (n - 1) l
in
loop n (Stream.npeek n strm)
;;
let utf8_lexing = ref false;;
let greek_tab =
["α"; "β"; "γ"; "δ"; "ε"; "ζ"; "η"; "θ"; "ι"; "κ"; "λ"; "μ"; "ν"; "ξ"; "ο";
"π"; "ρ"; "σ"; "τ"; "υ"; "φ"; "χ"; "ψ"; "ω"]
;;
let greek_letter buf strm =
if !utf8_lexing then
match Stream.peek strm with
Some c ->
if Char.code c >= 128 then
let x = implode (Stream.npeek 2 strm) in
if List.mem x greek_tab then
begin Stream.junk strm; Plexing.Lexbuf.add c buf end
else raise Stream.Failure
else raise Stream.Failure
| None -> raise Stream.Failure
else raise Stream.Failure
;;
let misc_letter buf strm =
if !utf8_lexing then
match Stream.peek strm with
Some c ->
if Char.code c >= 128 then
match implode (Stream.npeek 3 strm) with
"→" | "≤" | "≥" -> raise Stream.Failure
| _ -> Stream.junk strm; Plexing.Lexbuf.add c buf
else raise Stream.Failure
| None -> raise Stream.Failure
else
let (strm__ : _ Stream.t) = strm in
match Stream.peek strm__ with
Some ('\128'..'\225' as c) ->
Stream.junk strm__; Plexing.Lexbuf.add c buf
| Some ('\227'..'\255' as c) ->
Stream.junk strm__; Plexing.Lexbuf.add c buf
| _ -> raise Stream.Failure
;;
let misc_punct buf strm =
if !utf8_lexing then
let (strm__ : _ Stream.t) = strm in
match Stream.peek strm__ with
Some '\226' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some c ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some c1 ->
Stream.junk strm__;
Plexing.Lexbuf.add c1
(Plexing.Lexbuf.add c (Plexing.Lexbuf.add '\226' buf))
| _ -> raise (Stream.Error "")
end
| _ -> raise (Stream.Error "")
end
| _ -> raise Stream.Failure
else let (_ : _ Stream.t) = strm in raise Stream.Failure
;;
let utf8_equiv ctx bp buf strm =
if !utf8_lexing then
let (strm__ : _ Stream.t) = strm in
match Stream.peek strm__ with
Some '\226' ->
Stream.junk strm__;
begin try
match Stream.peek strm__ with
Some '\134' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some '\146' ->
Stream.junk strm__;
keyword_or_error ctx (bp, Stream.count strm__) "->"
| _ -> raise (Stream.Error "")
end
| Some '\137' ->
Stream.junk strm__;
begin try
match Stream.peek strm__ with
Some '\164' ->
Stream.junk strm__;
keyword_or_error ctx (bp, Stream.count strm__) "<="
| Some '\165' ->
Stream.junk strm__;
keyword_or_error ctx (bp, Stream.count strm__) ">="
| _ -> raise Stream.Failure
with Stream.Failure -> raise (Stream.Error "")
end
| _ -> raise Stream.Failure
with Stream.Failure -> raise (Stream.Error "")
end
| _ -> raise Stream.Failure
else let (_ : _ Stream.t) = strm in raise Stream.Failure
;;
let rec ident buf (strm__ : _ Stream.t) =
match
try
Some
(match Stream.peek strm__ with
Some ('A'..'Z' | 'a'..'z' | '0'..'9' | '_' | '\'' as c) ->
Stream.junk strm__; Plexing.Lexbuf.add c buf
| _ -> misc_letter buf strm__)
with Stream.Failure -> None
with
Some buf -> ident buf strm__
| _ -> buf
;;
let rec ident2_or other buf (strm__ : _ Stream.t) =
match
try
Some
(match Stream.peek strm__ with
Some
('!' | '?' | '~' | '=' | '@' | '^' | '&' | '+' | '-' | '*' |
'/' | '%' | '.' | ':' | '<' | '>' | '|' | '$' as c) ->
Stream.junk strm__; Plexing.Lexbuf.add c buf
| _ ->
try other buf strm__ with
Stream.Failure -> misc_punct buf strm__)
with Stream.Failure -> None
with
Some buf -> ident2_or other buf strm__
| _ -> buf
;;
let ident2 = ident2_or (fun buf strm -> raise Stream.Failure);;
let hash_follower_chars =
ident2_or
(fun buf (strm__ : _ Stream.t) ->
match Stream.peek strm__ with
Some '#' -> Stream.junk strm__; Plexing.Lexbuf.add '#' buf
| _ -> raise Stream.Failure)
;;
let rec ident3 buf (strm__ : _ Stream.t) =
match Stream.peek strm__ with
Some
('0'..'9' | 'A'..'Z' | 'a'..'z' | '_' | '!' | '%' | '&' | '*' | '+' |
'-' | '.' | '/' | ':' | '<' | '=' | '>' | '?' | '@' | '^' | '|' | '~' |
'\'' | '$' | '\128'..'\255' as c) ->
Stream.junk strm__; ident3 (Plexing.Lexbuf.add c buf) strm__
| _ -> buf
;;
let binary buf (strm__ : _ Stream.t) =
match Stream.peek strm__ with
Some ('0' | '1' as c) -> Stream.junk strm__; Plexing.Lexbuf.add c buf
| _ -> raise Stream.Failure
;;
let octal buf (strm__ : _ Stream.t) =
match Stream.peek strm__ with
Some ('0'..'7' as c) -> Stream.junk strm__; Plexing.Lexbuf.add c buf
| _ -> raise Stream.Failure
;;
let decimal buf (strm__ : _ Stream.t) =
match Stream.peek strm__ with
Some ('0'..'9' as c) -> Stream.junk strm__; Plexing.Lexbuf.add c buf
| _ -> raise Stream.Failure
;;
let hexa buf (strm__ : _ Stream.t) =
match Stream.peek strm__ with
Some ('0'..'9' | 'a'..'f' | 'A'..'F' as c) ->
Stream.junk strm__; Plexing.Lexbuf.add c buf
| _ -> raise Stream.Failure
;;
let end_integer buf (strm__ : _ Stream.t) =
match Stream.peek strm__ with
Some 'l' -> Stream.junk strm__; "INT_l", Plexing.Lexbuf.get buf
| Some 'L' -> Stream.junk strm__; "INT_L", Plexing.Lexbuf.get buf
| Some 'n' -> Stream.junk strm__; "INT_n", Plexing.Lexbuf.get buf
| _ -> "INT", Plexing.Lexbuf.get buf
;;
let rec digits_under kind buf (strm__ : _ Stream.t) =
match try Some (kind buf strm__) with Stream.Failure -> None with
Some buf -> digits_under kind buf strm__
| _ ->
match Stream.peek strm__ with
Some '_' ->
Stream.junk strm__;
digits_under kind (Plexing.Lexbuf.add '_' buf) strm__
| _ -> end_integer buf strm__
;;
let digits kind buf (strm__ : _ Stream.t) =
let buf =
try kind buf strm__ with
Stream.Failure -> raise (Stream.Error "ill-formed integer constant")
in
digits_under kind buf strm__
;;
let rec decimal_digits_under buf (strm__ : _ Stream.t) =
match Stream.peek strm__ with
Some ('0'..'9' | '_' as c) ->
Stream.junk strm__;
decimal_digits_under (Plexing.Lexbuf.add c buf) strm__
| _ -> buf
;;
let exponent_part buf (strm__ : _ Stream.t) =
match Stream.peek strm__ with
Some ('e' | 'E' as c) ->
Stream.junk strm__;
let buf = Plexing.Lexbuf.add c buf in
let buf =
match Stream.peek strm__ with
Some ('+' | '-' as c) ->
Stream.junk strm__; Plexing.Lexbuf.add c buf
| _ -> buf
in
begin match Stream.peek strm__ with
Some ('0'..'9' as c) ->
Stream.junk strm__;
decimal_digits_under (Plexing.Lexbuf.add c buf) strm__
| _ -> raise (Stream.Error "ill-formed floating-point constant")
end
| _ -> raise Stream.Failure
;;
let number buf (strm__ : _ Stream.t) =
let buf = decimal_digits_under buf strm__ in
match Stream.peek strm__ with
Some '.' ->
Stream.junk strm__;
let buf = decimal_digits_under (Plexing.Lexbuf.add '.' buf) strm__ in
begin match
(try Some (exponent_part buf strm__) with Stream.Failure -> None)
with
Some buf -> "FLOAT", Plexing.Lexbuf.get buf
| _ -> "FLOAT", Plexing.Lexbuf.get buf
end
| _ ->
match
try Some (exponent_part buf strm__) with Stream.Failure -> None
with
Some buf -> "FLOAT", Plexing.Lexbuf.get buf
| _ -> end_integer buf strm__
;;
(*
let hex_float_literal =
'0' ['x' 'X']
['0'-'9' 'A'-'F' 'a'-'f'] ['0'-'9' 'A'-'F' 'a'-'f' '_']*
('.' ['0'-'9' 'A'-'F' 'a'-'f' '_']* )?
(['p' 'P'] ['+' '-']? ['0'-'9'] ['0'-'9' '_']* )?
let literal_modifier = ['G'-'Z' 'g'-'z']
let hex_float_literal =
'0' ['x' 'X']
['0'-'9' 'A'-'F' 'a'-'f'] ['0'-'9' 'A'-'F' 'a'-'f' '_']*
('.' ['0'-'9' 'A'-'F' 'a'-'f' '_']* )?
(['p' 'P'] ['+' '-']? ['0'-'9'] ['0'-'9' '_']* )?
let literal_modifier = ['G'-'Z' 'g'-'z']
*)
(* hex_digits* *)
let rec hex_digits_under_star buf (strm__ : _ Stream.t) =
match Stream.peek strm__ with
Some ('0'..'9' | 'a'..'f' | 'A'..'F' | '_' as c) ->
Stream.junk strm__;
hex_digits_under_star (Plexing.Lexbuf.add c buf) strm__
| _ -> buf
;;
let rec hex_under_integer buf (strm__ : _ Stream.t) =
match Stream.peek strm__ with
Some ('0'..'9' | 'a'..'f' | 'A'..'F' as c) ->
Stream.junk strm__;
begin try hex_digits_under_star (Plexing.Lexbuf.add c buf) strm__ with
Stream.Failure -> raise (Stream.Error "")
end
| _ -> raise Stream.Failure
;;
let rec decimal_under_integer buf (strm__ : _ Stream.t) =
let buf =
match Stream.peek strm__ with
Some ('0'..'9' as c) -> Stream.junk strm__; Plexing.Lexbuf.add c buf
| _ -> buf
in
decimal_digits_under buf strm__
;;
let hex_exponent_part buf (strm__ : _ Stream.t) =
match Stream.peek strm__ with
Some ('p' | 'P' as c) ->
Stream.junk strm__;
let buf = Plexing.Lexbuf.add c buf in
let buf =
match Stream.peek strm__ with
Some ('+' | '-' as c) ->
Stream.junk strm__; Plexing.Lexbuf.add c buf
| _ -> buf
in
decimal_under_integer buf strm__
| _ -> raise Stream.Failure
;;
let hex_number buf (strm__ : _ Stream.t) =
let buf = hex_under_integer buf strm__ in
match Stream.peek strm__ with
Some '.' ->
Stream.junk strm__;
let buf = hex_digits_under_star (Plexing.Lexbuf.add '.' buf) strm__ in
begin match
(try Some (hex_exponent_part buf strm__) with Stream.Failure -> None)
with
Some buf -> "FLOAT", Plexing.Lexbuf.get buf
| _ -> "FLOAT", Plexing.Lexbuf.get buf
end
| _ ->
match
try Some (hex_exponent_part buf strm__) with Stream.Failure -> None
with
Some buf -> "FLOAT", Plexing.Lexbuf.get buf
| _ ->
match
try Some (exponent_part buf strm__) with Stream.Failure -> None
with
Some buf -> "FLOAT", Plexing.Lexbuf.get buf
| _ -> end_integer buf strm__
;;
let char_after_bslash buf (strm__ : _ Stream.t) =
match Stream.peek strm__ with
Some '\'' -> Stream.junk strm__; buf
| Some c ->
Stream.junk strm__;
let buf = Plexing.Lexbuf.add c buf in
begin try
match Stream.peek strm__ with
Some '\'' -> Stream.junk strm__; buf
| Some c ->
Stream.junk strm__;
let buf = Plexing.Lexbuf.add c buf in
begin match Stream.peek strm__ with
Some '\'' -> Stream.junk strm__; buf
| _ -> buf
end
| _ -> raise Stream.Failure
with Stream.Failure -> raise (Stream.Error "")
end
| _ -> raise Stream.Failure
;;
let char ctx bp buf (strm__ : _ Stream.t) =
match Stream.peek strm__ with
Some '\\' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some c ->
Stream.junk strm__;
char_after_bslash
(Plexing.Lexbuf.add c (Plexing.Lexbuf.add '\\' buf)) strm__
| _ -> err ctx (bp, Stream.count strm__) "char not terminated"
end
| _ ->
match Stream.npeek 2 strm__ with
[_; '\''] ->
begin match Stream.peek strm__ with
Some c ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some '\'' -> Stream.junk strm__; Plexing.Lexbuf.add c buf
| _ -> raise (Stream.Error "")
end
| _ -> raise Stream.Failure
end
| _ -> raise Stream.Failure
;;
let any ctx buf (strm__ : _ Stream.t) =
let bp = Stream.count strm__ in
match Stream.peek strm__ with
Some c -> Stream.junk strm__; ctx.line_cnt bp c; Plexing.Lexbuf.add c buf
| _ -> raise Stream.Failure
;;
let rec skiplws buf (strm__ : _ Stream.t) =
match Stream.peek strm__ with
Some ' ' -> Stream.junk strm__; skiplws buf strm__
| Some '\t' -> Stream.junk strm__; skiplws buf strm__
| _ -> buf
;;
let incrline ctx buf (strm__ : _ Stream.t) =
let bp = Stream.count strm__ in ctx.line_cnt (bp - 1) '\n'; buf
;;
let rec string ctx bp buf (strm__ : _ Stream.t) =
match Stream.peek strm__ with
Some '"' -> Stream.junk strm__; buf
| Some '\\' ->
Stream.junk strm__;
begin try
match Stream.npeek 1 strm__ with
['\n'] ->
begin match Stream.peek strm__ with
Some '\n' ->
Stream.junk strm__;
let buf = incrline ctx buf strm__ in
let buf = skiplws buf strm__ in string ctx bp buf strm__
| _ -> raise (Stream.Error "")
end
| _ ->
match Stream.npeek 1 strm__ with
['\n'] | [' '] ->
let buf =
try any ctx buf strm__ with
Stream.Failure -> raise (Stream.Error "")
in
string ctx bp buf strm__
| _ ->
let buf = any ctx (Plexing.Lexbuf.add '\\' buf) strm__ in
string ctx bp buf strm__
with Stream.Failure -> raise (Stream.Error "")
end
| _ ->
match try Some (any ctx buf strm__) with Stream.Failure -> None with
Some buf -> string ctx bp buf strm__
| _ -> err ctx (bp, Stream.count strm__) "string not terminated"
;;
let rec quotation ctx bp buf (strm__ : _ Stream.t) =
match Stream.peek strm__ with
Some '>' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some '>' -> Stream.junk strm__; buf
| _ -> quotation ctx bp (Plexing.Lexbuf.add '>' buf) strm__
end
| Some '<' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some '<' ->
Stream.junk strm__;
let buf =
quotation ctx bp
(Plexing.Lexbuf.add '<' (Plexing.Lexbuf.add '<' buf)) strm__
in
let buf = Plexing.Lexbuf.add '>' (Plexing.Lexbuf.add '>' buf) in
quotation ctx bp buf strm__
| Some ':' ->
Stream.junk strm__;
let buf =
ident (Plexing.Lexbuf.add ':' (Plexing.Lexbuf.add '<' buf)) strm__
in
begin match Stream.peek strm__ with
Some '<' ->
Stream.junk strm__;
let buf =
quotation ctx bp (Plexing.Lexbuf.add '<' buf) strm__
in
let buf = Plexing.Lexbuf.add '>' (Plexing.Lexbuf.add '>' buf) in
quotation ctx bp buf strm__
| _ -> quotation ctx bp buf strm__
end
| _ -> quotation ctx bp (Plexing.Lexbuf.add '<' buf) strm__
end
| Some '\\' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some ('>' | '<' | '\\' as c) ->
Stream.junk strm__;
quotation ctx bp (Plexing.Lexbuf.add c buf) strm__
| _ -> quotation ctx bp (Plexing.Lexbuf.add '\\' buf) strm__
end
| _ ->
match try Some (any ctx buf strm__) with Stream.Failure -> None with
Some buf -> quotation ctx bp buf strm__
| _ -> err ctx (bp, Stream.count strm__) "quotation not terminated"
;;
let less_expected = "character '<' expected";;
let less ctx bp buf strm =
if !no_quotations then
let (strm__ : _ Stream.t) = strm in
let buf = Plexing.Lexbuf.add '<' buf in
let buf = ident2 buf strm__ in
keyword_or_error ctx (bp, Stream.count strm__) (Plexing.Lexbuf.get buf)
else
let (strm__ : _ Stream.t) = strm in
match Stream.peek strm__ with
Some '<' ->
Stream.junk strm__;
let buf =
try quotation ctx bp buf strm__ with
Stream.Failure -> raise (Stream.Error "")
in
"QUOTATION", ":" ^ Plexing.Lexbuf.get buf
| Some ':' ->
Stream.junk strm__;
let buf = ident buf strm__ in
begin try
match Stream.peek strm__ with
Some '<' ->
Stream.junk strm__;
let buf = Plexing.Lexbuf.add ':' buf in
let buf =
try quotation ctx bp buf strm__ with
Stream.Failure -> raise (Stream.Error "")
in
"QUOTATION", Plexing.Lexbuf.get buf
| _ ->
match Stream.peek strm__ with
Some ':' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some '<' ->
Stream.junk strm__;
let buf = Plexing.Lexbuf.add '@' buf in
let buf =
try quotation ctx bp buf strm__ with
Stream.Failure -> raise (Stream.Error "")
in
"QUOTATION", Plexing.Lexbuf.get buf
| _ -> raise (Stream.Error less_expected)
end
| _ -> raise Stream.Failure
with Stream.Failure -> raise (Stream.Error "")
end
| _ ->
let buf = Plexing.Lexbuf.add '<' buf in
let buf = ident2 buf strm__ in
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get buf)
;;
let rec antiquot_rest ctx bp buf (strm__ : _ Stream.t) =
match Stream.peek strm__ with
Some '$' -> Stream.junk strm__; buf
| Some '\\' ->
Stream.junk strm__;
let buf =
try any ctx buf strm__ with Stream.Failure -> raise (Stream.Error "")
in
antiquot_rest ctx bp buf strm__
| _ ->
match try Some (any ctx buf strm__) with Stream.Failure -> None with
Some buf -> antiquot_rest ctx bp buf strm__
| _ -> err ctx (bp, Stream.count strm__) "antiquotation not terminated"
;;
let rec antiquot ctx bp buf (strm__ : _ Stream.t) =
match Stream.peek strm__ with
Some '$' -> Stream.junk strm__; ":" ^ Plexing.Lexbuf.get buf
| Some ('a'..'z' | 'A'..'Z' | '0'..'9' | '!' | '_' as c) ->
Stream.junk strm__; antiquot ctx bp (Plexing.Lexbuf.add c buf) strm__
| Some ':' ->
Stream.junk strm__;
let buf = antiquot_rest ctx bp (Plexing.Lexbuf.add ':' buf) strm__ in
Plexing.Lexbuf.get buf
| Some '\\' ->
Stream.junk strm__;
let buf =
try any ctx buf strm__ with Stream.Failure -> raise (Stream.Error "")
in
let buf = antiquot_rest ctx bp buf strm__ in
":" ^ Plexing.Lexbuf.get buf
| _ ->
match try Some (any ctx buf strm__) with Stream.Failure -> None with
Some buf ->
let buf = antiquot_rest ctx bp buf strm__ in
":" ^ Plexing.Lexbuf.get buf
| _ -> err ctx (bp, Stream.count strm__) "antiquotation not terminated"
;;
let antiloc bp ep s = Printf.sprintf "%d,%d:%s" bp ep s;;
let skip_to_next_colon s i =
let rec loop j =
if j = String.length s then i, 0
else
match s.[j] with
':' -> j, j - i - 1
| 'a'..'z' | 'A'..'Z' | '0'..'9' | '!' | '_' -> loop (j + 1)
| _ -> i, 0
in
loop (i + 1)
;;
let parse_antiquot s =
try
let i = String.index s ':' in
let kind = String.sub s 0 i in
let name = String.sub s (i + 1) (String.length s - (i + 1)) in
Some (kind, name)
with Not_found | Failure _ -> None
;;
let int_of_string_result s =
try Some (int_of_string s) with Failure _ -> None
;;
let parse_antiloc s =
try
let i = String.index s ':' in
let (j, len) = skip_to_next_colon s i in
let kind = String.sub s (i + 1) len in
let loc =
let k = String.index s ',' in
let bp = int_of_string (String.sub s 0 k) in
let ep = int_of_string (String.sub s (k + 1) (i - k - 1)) in
Ploc.make_unlined (bp, ep)
in
Some (loc, kind, String.sub s (j + 1) (String.length s - j - 1))
with Not_found | Failure _ -> None
;;
let rec antiquot_loc ctx bp buf (strm__ : _ Stream.t) =
match Stream.peek strm__ with
Some '$' ->
Stream.junk strm__;
antiloc bp (Stream.count strm__) (":" ^ Plexing.Lexbuf.get buf)
| Some ('a'..'z' | 'A'..'Z' | '0'..'9' | '!' | '_' as c) ->
Stream.junk strm__;
antiquot_loc ctx bp (Plexing.Lexbuf.add c buf) strm__
| Some ':' ->
Stream.junk strm__;
let buf = antiquot_rest ctx bp (Plexing.Lexbuf.add ':' buf) strm__ in
antiloc bp (Stream.count strm__) (Plexing.Lexbuf.get buf)
| Some '\\' ->
Stream.junk strm__;
let buf =
try any ctx buf strm__ with Stream.Failure -> raise (Stream.Error "")
in
let buf = antiquot_rest ctx bp buf strm__ in
antiloc bp (Stream.count strm__) (":" ^ Plexing.Lexbuf.get buf)
| _ ->
match try Some (any ctx buf strm__) with Stream.Failure -> None with
Some buf ->
let buf = antiquot_rest ctx bp buf strm__ in
antiloc bp (Stream.count strm__) (":" ^ Plexing.Lexbuf.get buf)
| _ -> err ctx (bp, Stream.count strm__) "antiquotation not terminated"
;;
let dollar ctx bp buf strm =
if not !no_quotations && ctx.dollar_for_antiquotation then
"ANTIQUOT", antiquot ctx bp buf strm
else if !force_antiquot_loc then
"ANTIQUOT_LOC", antiquot_loc ctx bp buf strm
else
let (strm__ : _ Stream.t) = strm in
let buf = Plexing.Lexbuf.add '$' buf in
let buf = ident2 buf strm__ in "", Plexing.Lexbuf.get buf
;;
(* ANTIQUOT - specific case for QUESTIONIDENT and QUESTIONIDENTCOLON
input expr patt
----- ---- ----
?$abc:d$ ?abc:d ?abc
?$abc:d$: ?abc:d: ?abc:
?$d$ ?:d ?
?$d$: ?:d: ?:
*)
(* ANTIQUOT_LOC - specific case for QUESTIONIDENT and QUESTIONIDENTCOLON
input expr patt
----- ---- ----
?$abc:d$ ?8,13:abc:d ?abc
?$abc:d$: ?8,13:abc:d: ?abc:
?$d$ ?8,9::d ?
?$d$: ?8,9::d: ?:
*)
let question ctx bp buf strm =
if ctx.dollar_for_antiquotation then
let (strm__ : _ Stream.t) = strm in
match Stream.peek strm__ with
Some '$' ->
Stream.junk strm__;
let s =
try antiquot ctx bp Plexing.Lexbuf.empty strm__ with
Stream.Failure -> raise (Stream.Error "")
in
begin match Stream.peek strm__ with
Some ':' -> Stream.junk strm__; "ANTIQUOT", "?" ^ s ^ ":"
| _ -> "ANTIQUOT", "?" ^ s
end
| _ ->
let (strm__ : _ Stream.t) = strm in
let buf = hash_follower_chars buf strm__ in
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get buf)
else if !force_antiquot_loc then
let (strm__ : _ Stream.t) = strm in
match Stream.peek strm__ with
Some '$' ->
Stream.junk strm__;
let s =
try antiquot_loc ctx bp Plexing.Lexbuf.empty strm__ with
Stream.Failure -> raise (Stream.Error "")
in
begin match Stream.peek strm__ with
Some ':' -> Stream.junk strm__; "ANTIQUOT_LOC", "?" ^ s ^ ":"
| _ -> "ANTIQUOT_LOC", "?" ^ s
end
| _ ->
let (strm__ : _ Stream.t) = strm in
let buf = hash_follower_chars buf strm__ in
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get buf)
else
let (strm__ : _ Stream.t) = strm in
let buf = hash_follower_chars buf strm__ in
keyword_or_error ctx (bp, Stream.count strm__) (Plexing.Lexbuf.get buf)
;;
let tilde ctx bp buf strm =
if ctx.dollar_for_antiquotation then
let (strm__ : _ Stream.t) = strm in
match Stream.peek strm__ with
Some '$' ->
Stream.junk strm__;
let s =
try antiquot ctx bp Plexing.Lexbuf.empty strm__ with
Stream.Failure -> raise (Stream.Error "")
in
begin match Stream.peek strm__ with
Some ':' -> Stream.junk strm__; "ANTIQUOT", "~" ^ s ^ ":"
| _ -> "ANTIQUOT", "~" ^ s
end
| _ ->
let (strm__ : _ Stream.t) = strm in
let buf = hash_follower_chars buf strm__ in
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get buf)
else if !force_antiquot_loc then
let (strm__ : _ Stream.t) = strm in
match Stream.peek strm__ with
Some '$' ->
Stream.junk strm__;
let s =
try antiquot_loc ctx bp Plexing.Lexbuf.empty strm__ with
Stream.Failure -> raise (Stream.Error "")
in
begin match Stream.peek strm__ with
Some ':' -> Stream.junk strm__; "ANTIQUOT_LOC", "~" ^ s ^ ":"
| _ -> "ANTIQUOT_LOC", "~" ^ s
end
| _ ->
let (strm__ : _ Stream.t) = strm in
let buf = hash_follower_chars buf strm__ in
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get buf)
else
let (strm__ : _ Stream.t) = strm in
let buf = hash_follower_chars buf strm__ in
keyword_or_error ctx (bp, Stream.count strm__) (Plexing.Lexbuf.get buf)
;;
let tildeident ~raw ctx loc =
let check_kwd s =
if raw then s
else if ctx.is_kwd s then err ctx loc "illegal token in TILDEIDENT"
else s
in
fun buf (strm__ : _ Stream.t) ->
match Stream.peek strm__ with
Some ':' ->
Stream.junk strm__;
"TILDEIDENTCOLON", check_kwd (Plexing.Lexbuf.get buf)
| _ -> "TILDEIDENT", check_kwd (Plexing.Lexbuf.get buf)
;;
let questionident ~raw ctx loc =
let check_kwd s =
if raw then s
else if ctx.is_kwd s then err ctx loc "illegal token in QUESTIONIDENT"
else s
in
fun buf (strm__ : _ Stream.t) ->
match Stream.peek strm__ with
Some ':' ->
Stream.junk strm__;
"QUESTIONIDENTCOLON", check_kwd (Plexing.Lexbuf.get buf)
| _ -> "QUESTIONIDENT", check_kwd (Plexing.Lexbuf.get buf)
;;
let rec linedir n s =
match stream_peek_nth n s with
Some (' ' | '\t') -> linedir (n + 1) s
| Some ('0'..'9') -> linedir_digits (n + 1) s
| _ -> false
and linedir_digits n s =
match stream_peek_nth n s with
Some ('0'..'9') -> linedir_digits (n + 1) s
| _ -> linedir_quote n s
and linedir_quote n s =
match stream_peek_nth n s with
Some (' ' | '\t') -> linedir_quote (n + 1) s
| Some '"' -> true
| _ -> false
;;
let linedir_result n s =
let rec linedir n s =
match stream_peek_nth n s with
Some (' ' | '\t') -> linedir (n + 1) s
| Some ('0'..'9' as c) -> linedir_digits [c] (n + 1) s
| _ -> None
and linedir_digits acc n s =
match stream_peek_nth n s with
Some ('0'..'9' as c) -> linedir_digits (c :: acc) (n + 1) s
| _ ->
match int_of_string_result (rev_implode acc) with
Some lnum -> linedir_quote lnum n s
| None -> None
and linedir_quote lnum n s =
match stream_peek_nth n s with
Some (' ' | '\t') -> linedir_quote lnum (n + 1) s
| Some '"' -> linedir_qs lnum [] (n + 1) s
| _ -> None
and linedir_qs lnum acc n s =
match stream_peek_nth n s with
Some '"' -> Some (lnum, rev_implode acc)
| Some ('\n' | '\r') -> None
| Some c -> linedir_qs lnum (c :: acc) (n + 1) s
| _ -> None
in
linedir n s
;;
let rec any_to_nl buf (strm__ : _ Stream.t) =
match Stream.peek strm__ with
Some ('\r' | '\n' as c) -> Stream.junk strm__; Plexing.Lexbuf.add c buf
| Some c -> Stream.junk strm__; any_to_nl (Plexing.Lexbuf.add c buf) strm__
| _ -> buf
;;
let rec rawstring1 delimtok (ofs, delim) ctx buf (strm__ : _ Stream.t) =
let bp = Stream.count strm__ in
match Stream.peek strm__ with
Some c ->
Stream.junk strm__;
let strm = strm__ in
ctx.line_cnt bp c;
let buf = Plexing.Lexbuf.add c buf in
if String.get delim ofs <> c then
if String.get delim 0 = c then
rawstring1 delimtok (1, delim) ctx buf strm
else rawstring1 delimtok (0, delim) ctx buf strm
else if ofs + 1 < String.length delim then
rawstring1 delimtok (ofs + 1, delim) ctx buf strm
else
let s = Plexing.Lexbuf.get buf in
let slen = String.length s in
delimtok, String.sub s 0 (slen - String.length delim)
| _ -> raise Stream.Failure
;;
let rec rawstring0 ctx bp buf (strm__ : _ Stream.t) =
let bp = Stream.count strm__ in
match Stream.peek strm__ with
Some '|' ->
Stream.junk strm__;
let strm = strm__ in
rawstring1 (Plexing.Lexbuf.get buf)
(0, "|" ^ Plexing.Lexbuf.get buf ^ "}") ctx Plexing.Lexbuf.empty strm
| Some ('a'..'z' | '_' as c) ->
Stream.junk strm__;
let strm = strm__ in rawstring0 ctx bp (Plexing.Lexbuf.add c buf) strm
| _ -> raise Stream.Failure
;;
let add_string buf s =
let slen = String.length s in
let rec addrec buf i =
if i = slen then buf
else addrec (Plexing.Lexbuf.add (String.get s i) buf) (i + 1)
in
addrec buf 0
;;
(*
* This predicate checks that the stream contains a valid raw-string starter.
* The definition of "valid raw string starter" depends on the value of
* the variable [simplest_raw_strings]: if it is [False], then a valid
* raw-string starter is "[:alpha:]+|"; if it is [True], a valid raw-string
* starter is "[:alpha:]*|". [simplest_raw_strings] is set to True in
* original syntax.
* This predicate gets called when the main lexer has already seen a "{".
*)
let raw_string_starter_p ctx strm =
let rec predrec n =
match stream_peek_nth n strm with
None -> false
| Some ('a'..'z' | '_') -> predrec (n + 1)
| Some '|' when ctx.simplest_raw_strings || n > 1 -> true
| Some _ -> false
in
predrec 1
;;
let zerobuf f buf strm = f Plexing.Lexbuf.empty strm;;
let rec ws buf (strm__ : _ Stream.t) =
let buf =
match Stream.peek strm__ with
Some ' ' -> Stream.junk strm__; buf
| Some '\t' -> Stream.junk strm__; buf
| Some '\n' -> Stream.junk strm__; buf
| _ -> raise Stream.Failure
in
try ws buf strm__ with Stream.Failure -> buf
;;
let rec extattrident buf (strm__ : _ Stream.t) =
let buf = ident buf strm__ in
match Stream.peek strm__ with
Some '.' ->
Stream.junk strm__;
begin try extattrident (Plexing.Lexbuf.add '.' buf) strm__ with
Stream.Failure -> raise (Stream.Error "")
end
| _ -> buf
;;
let comment_rawstring ctx bp (buf : Plexing.Lexbuf.t) strm =
if not (raw_string_starter_p ctx strm) then buf
else
let (delim, s) = rawstring0 ctx bp Plexing.Lexbuf.empty strm in
let rs = Printf.sprintf "{%s|%s|%s}" delim s delim in add_string buf rs
;;
let comment_quoted_extension1 ctx bp extid buf strm =
let (delim, s) = rawstring0 ctx bp Plexing.Lexbuf.empty strm in
let exts = Printf.sprintf "{%%%s %s|%s|%s}" extid delim s delim in
add_string buf exts
;;
let comment_quoted_extension0 ctx bp extid buf (strm__ : _ Stream.t) =
match try Some (ws buf strm__) with Stream.Failure -> None with
Some buf ->
begin try
zerobuf (comment_quoted_extension1 ctx bp extid) buf strm__
with Stream.Failure -> raise (Stream.Error "")
end
| _ -> zerobuf (comment_quoted_extension1 ctx bp extid) buf strm__
;;
let comment_quoted_extension ctx bp buf (strm__ : _ Stream.t) =
let buf = extattrident buf strm__ in
try
zerobuf (comment_quoted_extension0 ctx bp (Plexing.Lexbuf.get buf)) buf
strm__
with Stream.Failure -> raise (Stream.Error "")
;;
let comment ctx bp =
let rec comment buf (strm__ : _ Stream.t) =
match Stream.peek strm__ with
Some '*' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some ')' ->
Stream.junk strm__;
Plexing.Lexbuf.add ')' (Plexing.Lexbuf.add '*' buf)
| _ -> comment (Plexing.Lexbuf.add '*' buf) strm__
end
| Some '{' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some '%' ->
Stream.junk strm__;
let buf = comment_quoted_extension ctx bp buf strm__ in
comment buf strm__
| _ ->
let buf =
comment_rawstring ctx bp (Plexing.Lexbuf.add '{' buf) strm__
in
comment buf strm__
end
| Some '(' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some '*' ->
Stream.junk strm__;
let buf =
comment (Plexing.Lexbuf.add '*' (Plexing.Lexbuf.add '(' buf))
strm__
in
comment buf strm__
| _ -> comment (Plexing.Lexbuf.add '(' buf) strm__
end
| Some '"' ->
Stream.junk strm__;
let buf = string ctx bp (Plexing.Lexbuf.add '"' buf) strm__ in
let buf = Plexing.Lexbuf.add '"' buf in comment buf strm__
| Some '\'' ->
Stream.junk strm__;
begin try
match Stream.peek strm__ with
Some '*' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some ')' ->
Stream.junk strm__;
Plexing.Lexbuf.add ')'
(Plexing.Lexbuf.add '*' (Plexing.Lexbuf.add '\'' buf))
| _ ->
comment
(Plexing.Lexbuf.add '*' (Plexing.Lexbuf.add '\'' buf))
strm__
end
| _ ->
let buf = any ctx (Plexing.Lexbuf.add '\'' buf) strm__ in
comment buf strm__
with Stream.Failure -> raise (Stream.Error "")
end
| _ ->
match try Some (any ctx buf strm__) with Stream.Failure -> None with
Some buf -> comment buf strm__
| _ -> err ctx (bp, Stream.count strm__) "comment not terminated"
in
comment
;;
let keyword_or_error_or_rawstring ctx bp (loc, s) buf strm =
if not (raw_string_starter_p ctx strm) then
match stream_peek_nth 1 strm with
Some '|' when not ctx.simplest_raw_strings ->
Stream.junk strm; keyword_or_error ctx loc "{|"
| _ -> keyword_or_error ctx loc "{"
else
let (delim, s) = rawstring0 ctx bp Plexing.Lexbuf.empty strm in
"RAWSTRING",
Printf.sprintf "%d:%s" (String.length delim) (String.escaped s)
;;
let rec keepws buf (strm__ : _ Stream.t) =
match Stream.peek strm__ with
Some (' ' | '\t' | '\n' as c) ->
Stream.junk strm__;
let buf = Plexing.Lexbuf.add c buf in
(try keepws buf strm__ with Stream.Failure -> buf)
| _ -> raise Stream.Failure
;;
let quoted_extension1 kind ctx (bp, _) buf strm =
let (delim, s) = rawstring0 ctx bp Plexing.Lexbuf.empty strm in
let lhs = Plexing.Lexbuf.get buf in
let qext = Printf.sprintf "%s%s|%s|%s}" lhs delim s delim in kind, qext
;;
let quoted_extension0 kind ctx (bp, _) buf (strm__ : _ Stream.t) =
match try Some (keepws buf strm__) with Stream.Failure -> None with
Some buf ->
begin try
quoted_extension1 kind ctx (bp, Stream.count strm__) buf strm__
with Stream.Failure -> raise (Stream.Error "")
end
| _ -> quoted_extension1 kind ctx (bp, Stream.count strm__) buf strm__
;;
let quoted_extension (kind : string) ctx (bp, _) buf (strm__ : _ Stream.t) =
let buf = extattrident buf strm__ in
try quoted_extension0 kind ctx (bp, Stream.count strm__) buf strm__ with
Stream.Failure -> raise (Stream.Error "")
;;
let dotsymbolchar buf (strm__ : _ Stream.t) =
match Stream.peek strm__ with
Some
('!' | '$' | '%' | '&' | '*' | '+' | '-' | '/' | ':' | '=' | '>' | '?' |
'@' | '^' | '|' as c) ->
Stream.junk strm__; Plexing.Lexbuf.add c buf
| _ -> raise Stream.Failure
;;
let rec dotsymbolchar_star buf (strm__ : _ Stream.t) =
match try Some (dotsymbolchar buf strm__) with Stream.Failure -> None with
Some buf ->
begin try dotsymbolchar_star buf strm__ with
Stream.Failure -> raise (Stream.Error "")
end
| _ -> buf
;;
let kwdopchar buf (strm__ : _ Stream.t) =
match Stream.peek strm__ with
Some
('$' | '&' | '*' | '+' | '-' | '/' | '<' | '=' | '>' | '@' | '^' |
'|' as c) ->
Stream.junk strm__; Plexing.Lexbuf.add c buf
| _ -> raise Stream.Failure
;;
let symbolchar buf (strm__ : _ Stream.t) =
match Stream.peek strm__ with
Some
('!' | '$' | '%' | '&' | '*' | '+' | '-' | '.' | '/' | ':' | '<' | '=' |
'>' | '?' | '@' | '^' | '|' | '~' as c) ->
Stream.junk strm__; Plexing.Lexbuf.add c buf
| _ -> raise Stream.Failure
;;
let rec symbolchar_star buf (strm__ : _ Stream.t) =
match try Some (symbolchar buf strm__) with Stream.Failure -> None with
Some buf ->
begin try symbolchar_star buf strm__ with
Stream.Failure -> raise (Stream.Error "")
end
| _ -> buf
;;
let word_operators ctx id buf (strm__ : _ Stream.t) =
match try Some (kwdopchar buf strm__) with Stream.Failure -> None with
Some buf ->
let buf =
try dotsymbolchar_star buf strm__ with
Stream.Failure -> raise (Stream.Error "")
in
"", id ^ Plexing.Lexbuf.get buf
| _ -> try "", ctx.find_kwd id with Not_found -> "LIDENT", id
;;
let keyword ~raw ctx buf strm =
let id = Plexing.Lexbuf.get buf in
if raw then "LIDENT", id
else if id = "let" || id = "and" then
word_operators ctx id Plexing.Lexbuf.empty strm
else try "", ctx.find_kwd id with Not_found -> "LIDENT", id
;;
let dot ctx (bp, pos) buf strm =
match Stream.peek strm with
None ->
let id =
if ctx.specific_space_dot && ctx.after_space then " ." else "."
in
keyword_or_error ctx (bp, pos) id
| _ ->
let (strm__ : _ Stream.t) = strm in
let buf = Plexing.Lexbuf.add '.' buf in
let buf = dotsymbolchar_star buf strm__ in
keyword_or_error ctx (bp, Stream.count strm__) (Plexing.Lexbuf.get buf)
;;
let next_token_after_spaces ctx bp buf (strm__ : _ Stream.t) =
match Stream.peek strm__ with
Some ('A'..'Z' as c) ->
Stream.junk strm__;
let buf = ident (Plexing.Lexbuf.add c buf) strm__ in
let id = Plexing.Lexbuf.get buf in
(try "", ctx.find_kwd id with Not_found -> "UIDENT", id)
| _ ->
match
try Some (greek_letter buf strm__) with Stream.Failure -> None
with
Some buf ->
let buf = ident buf strm__ in "GIDENT", Plexing.Lexbuf.get buf
| _ ->
match
try
Some
(match Stream.peek strm__ with
Some ('a'..'z' | '_' as c) ->
Stream.junk strm__; Plexing.Lexbuf.add c buf
| _ -> misc_letter buf strm__)
with Stream.Failure -> None
with
Some buf ->
let buf = ident buf strm__ in
begin try keyword ~raw:false ctx buf strm__ with
Stream.Failure -> raise (Stream.Error "")
end
| _ ->
match Stream.peek strm__ with
Some ('1'..'9' as c) ->
Stream.junk strm__; number (Plexing.Lexbuf.add c buf) strm__
| Some '0' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some ('o' | 'O' as c) ->
Stream.junk strm__;
digits octal
(Plexing.Lexbuf.add c (Plexing.Lexbuf.add '0' buf))
strm__
| Some ('x' | 'X' as c) ->
Stream.junk strm__;
hex_number
(Plexing.Lexbuf.add c (Plexing.Lexbuf.add '0' buf))
strm__
| Some ('b' | 'B' as c) ->
Stream.junk strm__;
digits binary
(Plexing.Lexbuf.add c (Plexing.Lexbuf.add '0' buf))
strm__
| _ -> number (Plexing.Lexbuf.add '0' buf) strm__
end
| Some '\'' ->
Stream.junk strm__;
begin match Stream.npeek 2 strm__ with
['\\'; '#'] ->
keyword_or_error ctx (bp, Stream.count strm__) "'"
| _ ->
match
try Some (char ctx bp buf strm__) with
Stream.Failure -> None
with
Some buf -> "CHAR", Plexing.Lexbuf.get buf
| _ ->
keyword_or_error ctx (bp, Stream.count strm__) "'"
end
| Some '"' ->
Stream.junk strm__;
let buf = string ctx bp buf strm__ in
"STRING", Plexing.Lexbuf.get buf
| Some '$' -> Stream.junk strm__; dollar ctx bp buf strm__
| Some
('=' | '@' | '^' | '&' | '+' | '-' | '*' | '/' |
'%' as c) ->
Stream.junk strm__;
let buf = ident2 (Plexing.Lexbuf.add c buf) strm__ in
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get buf)
| Some '!' ->
Stream.junk strm__;
let buf =
hash_follower_chars (Plexing.Lexbuf.add '!' buf) strm__
in
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get buf)
| Some '~' ->
Stream.junk strm__;
begin try
match Stream.peek strm__ with
Some '\\' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some '#' ->
Stream.junk strm__;
begin try
match Stream.peek strm__ with
Some ('a'..'z' as c) ->
Stream.junk strm__;
let buf =
ident (Plexing.Lexbuf.add c buf) strm__
in
tildeident ~raw:true ctx
(bp, Stream.count strm__) buf strm__
| Some '_' ->
Stream.junk strm__;
let buf =
ident (Plexing.Lexbuf.add '_' buf) strm__
in
tildeident ~raw:true ctx
(bp, Stream.count strm__) buf strm__
| _ -> raise Stream.Failure
with Stream.Failure -> raise (Stream.Error "")
end
| _ -> raise (Stream.Error "")
end
| Some ('a'..'z' as c) ->
Stream.junk strm__;
let buf = ident (Plexing.Lexbuf.add c buf) strm__ in
tildeident ~raw:false ctx (bp, Stream.count strm__)
buf strm__
| Some '_' ->
Stream.junk strm__;
let buf = ident (Plexing.Lexbuf.add '_' buf) strm__ in
tildeident ~raw:false ctx (bp, Stream.count strm__)
buf strm__
| _ -> tilde ctx bp (Plexing.Lexbuf.add '~' buf) strm__
with Stream.Failure -> raise (Stream.Error "")
end
| Some '?' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some '\\' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some '#' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some ('a'..'z' as c) ->
Stream.junk strm__;
let buf =
ident (Plexing.Lexbuf.add c buf) strm__
in
questionident ~raw:true ctx
(bp, Stream.count strm__) buf strm__
| _ -> raise (Stream.Error "")
end
| _ -> raise (Stream.Error "")
end
| Some ('a'..'z' as c) ->
Stream.junk strm__;
let buf = ident (Plexing.Lexbuf.add c buf) strm__ in
questionident ~raw:false ctx (bp, Stream.count strm__)
buf strm__
| _ -> question ctx bp (Plexing.Lexbuf.add '?' buf) strm__
end
| Some '<' -> Stream.junk strm__; less ctx bp buf strm__
| Some ':' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some ']' ->
Stream.junk strm__;
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get
(Plexing.Lexbuf.add ']'
(Plexing.Lexbuf.add ':' buf)))
| Some ':' ->
Stream.junk strm__;
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get
(Plexing.Lexbuf.add ':'
(Plexing.Lexbuf.add ':' buf)))
| Some '=' ->
Stream.junk strm__;
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get
(Plexing.Lexbuf.add '='
(Plexing.Lexbuf.add ':' buf)))
| Some '>' ->
Stream.junk strm__;
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get
(Plexing.Lexbuf.add '>'
(Plexing.Lexbuf.add ':' buf)))
| _ ->
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get (Plexing.Lexbuf.add ':' buf))
end
| Some '>' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some ']' ->
Stream.junk strm__;
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get
(Plexing.Lexbuf.add ']'
(Plexing.Lexbuf.add '>' buf)))
| Some '}' ->
Stream.junk strm__;
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get
(Plexing.Lexbuf.add '}'
(Plexing.Lexbuf.add '>' buf)))
| _ ->
let buf = ident2 (Plexing.Lexbuf.add '>' buf) strm__ in
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get buf)
end
| Some '|' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some ']' ->
Stream.junk strm__;
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get
(Plexing.Lexbuf.add ']'
(Plexing.Lexbuf.add '|' buf)))
| Some '}' ->
Stream.junk strm__;
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get
(Plexing.Lexbuf.add '}'
(Plexing.Lexbuf.add '|' buf)))
| _ ->
let buf = ident2 (Plexing.Lexbuf.add '|' buf) strm__ in
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get buf)
end
| Some '[' ->
Stream.junk strm__;
begin match Stream.npeek 2 strm__ with
['<'; '<'] | ['<'; ':'] ->
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get (Plexing.Lexbuf.add '[' buf))
| _ ->
match Stream.peek strm__ with
Some '@' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some '@' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some '@' ->
Stream.junk strm__;
keyword_or_error ctx
(bp, Stream.count strm__)
(Plexing.Lexbuf.get
(Plexing.Lexbuf.add '@'
(Plexing.Lexbuf.add '@'
(Plexing.Lexbuf.add '@'
(Plexing.Lexbuf.add '['
buf)))))
| _ ->
keyword_or_error ctx
(bp, Stream.count strm__)
(Plexing.Lexbuf.get
(Plexing.Lexbuf.add '@'
(Plexing.Lexbuf.add '@'
(Plexing.Lexbuf.add '[' buf))))
end
| _ ->
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get
(Plexing.Lexbuf.add '@'
(Plexing.Lexbuf.add '[' buf)))
end
| Some '%' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some '%' ->
Stream.junk strm__;
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get
(Plexing.Lexbuf.add '%'
(Plexing.Lexbuf.add '%'
(Plexing.Lexbuf.add '[' buf))))
| _ ->
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get
(Plexing.Lexbuf.add '%'
(Plexing.Lexbuf.add '[' buf)))
end
| Some '|' ->
Stream.junk strm__;
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get
(Plexing.Lexbuf.add '|'
(Plexing.Lexbuf.add '[' buf)))
| Some '<' ->
Stream.junk strm__;
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get
(Plexing.Lexbuf.add '<'
(Plexing.Lexbuf.add '[' buf)))
| Some ':' ->
Stream.junk strm__;
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get
(Plexing.Lexbuf.add ':'
(Plexing.Lexbuf.add '[' buf)))
| _ ->
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get (Plexing.Lexbuf.add '[' buf))
end
| Some '{' ->
Stream.junk strm__;
begin try
match Stream.npeek 2 strm__ with
['<'; '<'] | ['<'; ':'] ->
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get (Plexing.Lexbuf.add '{' buf))
| _ ->
match Stream.peek strm__ with
Some '<' ->
Stream.junk strm__;
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get
(Plexing.Lexbuf.add '<'
(Plexing.Lexbuf.add '{' buf)))
| Some '%' ->
Stream.junk strm__;
begin try
match Stream.peek strm__ with
Some '%' ->
Stream.junk strm__;
begin try
quoted_extension "QUOTEDEXTENSION_ITEM"
ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.add '%'
(Plexing.Lexbuf.add '%'
(Plexing.Lexbuf.add '{' buf)))
strm__
with Stream.Failure ->
raise (Stream.Error "")
end
| _ ->
quoted_extension "QUOTEDEXTENSION_EXPR" ctx
(bp, Stream.count strm__)
(Plexing.Lexbuf.add '%'
(Plexing.Lexbuf.add '{' buf))
strm__
with Stream.Failure -> raise (Stream.Error "")
end
| Some ':' ->
Stream.junk strm__;
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get
(Plexing.Lexbuf.add ':'
(Plexing.Lexbuf.add '{' buf)))
| _ ->
keyword_or_error_or_rawstring ctx bp
((bp, Stream.count strm__),
Plexing.Lexbuf.get buf)
(Plexing.Lexbuf.add '{' buf) strm__
with Stream.Failure -> raise (Stream.Error "")
end
| Some '.' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some '.' ->
Stream.junk strm__;
keyword_or_error ctx (bp, Stream.count strm__) ".."
| _ ->
match
try
Some
(dotsymbolchar (Plexing.Lexbuf.add '.' buf)
strm__)
with Stream.Failure -> None
with
Some buf ->
let buf =
try symbolchar_star buf strm__ with
Stream.Failure -> raise (Stream.Error "")
in
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get buf)
| _ ->
let id =
if ctx.specific_space_dot && ctx.after_space then
" ."
else "."
in
keyword_or_error ctx (bp, Stream.count strm__) id
end
| Some ';' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some ';' ->
Stream.junk strm__;
keyword_or_error ctx (bp, Stream.count strm__) ";;"
| _ -> keyword_or_error ctx (bp, Stream.count strm__) ";"
end
| _ ->
try utf8_equiv ctx bp buf strm__ with
Stream.Failure ->
match
try Some (misc_punct buf strm__) with
Stream.Failure -> None
with
Some buf ->
let buf = ident2 buf strm__ in
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get buf)
| _ ->
match Stream.peek strm__ with
Some '\\' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some '#' ->
Stream.junk strm__;
let buf =
try
match Stream.peek strm__ with
Some ('a'..'z' | '_' as c) ->
Stream.junk strm__;
Plexing.Lexbuf.add c buf
| _ -> misc_letter buf strm__
with Stream.Failure ->
raise (Stream.Error "")
in
let buf = ident buf strm__ in
begin try
keyword ~raw:true ctx buf strm__
with Stream.Failure ->
raise (Stream.Error "")
end
| _ ->
let buf = ident3 buf strm__ in
"LIDENT", Plexing.Lexbuf.get buf
end
| Some '#' ->
Stream.junk strm__;
let buf =
hash_follower_chars
(Plexing.Lexbuf.add '#' buf) strm__
in
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get buf)
| _ ->
let buf = any ctx buf strm__ in
keyword_or_error ctx (bp, Stream.count strm__)
(Plexing.Lexbuf.get buf)
;;
let get_comment buf strm = Plexing.Lexbuf.get buf;;
let rec next_token ctx buf (strm__ : _ Stream.t) =
let bp = Stream.count strm__ in
match Stream.peek strm__ with
Some ('\n' | '\r' as c) ->
Stream.junk strm__;
let s = strm__ in
let ep = Stream.count strm__ in
if c = '\n' then incr !(Plexing.line_nb);
!(Plexing.bol_pos) := ep;
ctx.set_line_nb ();
ctx.after_space <- true;
next_token ctx (Plexing.Lexbuf.add c buf) s
| Some (' ' | '\t' | '\026' | '\012' as c) ->
Stream.junk strm__;
let s = strm__ in
ctx.after_space <- true; next_token ctx (Plexing.Lexbuf.add c buf) s
| Some '#' when bp = !(!(Plexing.bol_pos)) ->
Stream.junk strm__;
let s = strm__ in
let comm = get_comment buf () in
begin match linedir_result 1 s with
Some (linenum, fname) ->
let buf = any_to_nl (Plexing.Lexbuf.add '#' buf) s in
!(Plexing.line_nb) := linenum;
Plexing.input_file := fname;
!(Plexing.bol_pos) := Stream.count s;
ctx.set_line_nb ();
ctx.after_space <- true;
next_token ctx buf s
| None ->
let loc = ctx.make_lined_loc (bp, bp + 1) comm in
keyword_or_error ctx (bp, bp + 1) "#", loc
end
| Some '(' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some '*' ->
Stream.junk strm__;
let buf =
comment ctx bp
(Plexing.Lexbuf.add '*' (Plexing.Lexbuf.add '(' buf)) strm__
in
let s = strm__ in
ctx.set_line_nb (); ctx.after_space <- true; next_token ctx buf s
| _ ->
let ep = Stream.count strm__ in
let loc = ctx.make_lined_loc (bp, ep) (Plexing.Lexbuf.get buf) in
keyword_or_error ctx (bp, ep) "(", loc
end
| _ ->
let comm = get_comment buf strm__ in
try
match
try
Some (next_token_after_spaces ctx bp Plexing.Lexbuf.empty strm__)
with Stream.Failure -> None
with
Some tok ->
let ep = Stream.count strm__ in
let loc = ctx.make_lined_loc (bp, max (bp + 1) ep) comm in
tok, loc
| _ ->
let _ = Stream.empty strm__ in
let loc = ctx.make_lined_loc (bp, bp + 1) comm in ("EOI", ""), loc
with Stream.Failure -> raise (Stream.Error "")
;;
let next_token_fun ctx glexr (cstrm, s_line_nb, s_bol_pos) =
try
begin match !(Plexing.restore_lexing_info) with
Some (line_nb, bol_pos) ->
s_line_nb := line_nb;
s_bol_pos := bol_pos;
Plexing.restore_lexing_info := None
| None -> ()
end;
Plexing.line_nb := s_line_nb;
Plexing.bol_pos := s_bol_pos;
let comm_bp = Stream.count cstrm in
ctx.set_line_nb ();
ctx.after_space <- false;
let (r, loc) = next_token ctx Plexing.Lexbuf.empty cstrm in
begin match !glexr.Plexing.tok_comm with
Some list ->
if Ploc.first_pos loc > comm_bp then
let comm_loc = Ploc.make_unlined (comm_bp, Ploc.last_pos loc) in
!glexr.Plexing.tok_comm <- Some (comm_loc :: list)
| None -> ()
end;
r, loc
with Stream.Error str ->
err ctx (Stream.count cstrm, Stream.count cstrm + 1) str
;;
let make_ctx kwd_table =
let line_nb = ref 0 in
let bol_pos = ref 0 in
{after_space = false; dollar_for_antiquotation = !dollar_for_antiquotation;
simplest_raw_strings = !simplest_raw_strings;
specific_space_dot = !specific_space_dot;
find_kwd = Hashtbl.find kwd_table; is_kwd = Hashtbl.mem kwd_table;
line_cnt =
(fun bp1 c ->
match c with
'\n' | '\r' ->
if c = '\n' then incr !(Plexing.line_nb);
!(Plexing.bol_pos) := bp1 + 1
| c -> ());
set_line_nb =
(fun () ->
line_nb := !(!(Plexing.line_nb)); bol_pos := !(!(Plexing.bol_pos)));
make_lined_loc =
fun loc comm ->
Ploc.make_loc !(Plexing.input_file) !line_nb !bol_pos loc comm}
;;
let func ctx kwd_table glexr =
Plexing.lexer_func_of_parser (next_token_fun ctx glexr)
;;
let rec check_keyword_stream (strm__ : _ Stream.t) =
let _ = check Plexing.Lexbuf.empty strm__ in
let _ =
try Stream.empty strm__ with Stream.Failure -> raise (Stream.Error "")
in
true
and check buf (strm__ : _ Stream.t) =
match
try
Some
(match Stream.peek strm__ with
Some ('A'..'Z' | 'a'..'z' as c) ->
Stream.junk strm__; Plexing.Lexbuf.add c buf
| _ -> misc_letter buf strm__)
with Stream.Failure -> None
with
Some buf -> check_ident buf strm__
| _ ->
match Stream.peek strm__ with
Some
('!' | '?' | '~' | '=' | '@' | '^' | '&' | '+' | '-' | '*' | '/' |
'%' | '.' as c) ->
Stream.junk strm__; check_ident2 (Plexing.Lexbuf.add c buf) strm__
| Some '$' ->
Stream.junk strm__; check_ident2 (Plexing.Lexbuf.add '$' buf) strm__
| Some '<' ->
Stream.junk strm__;
begin match Stream.npeek 1 strm__ with
[':'] | ['<'] -> Plexing.Lexbuf.add '<' buf
| _ -> check_ident2 (Plexing.Lexbuf.add '<' buf) strm__
end
| Some ':' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some ']' ->
Stream.junk strm__;
Plexing.Lexbuf.add ']' (Plexing.Lexbuf.add ':' buf)
| Some ':' ->
Stream.junk strm__;
Plexing.Lexbuf.add ':' (Plexing.Lexbuf.add ':' buf)
| Some '=' ->
Stream.junk strm__;
Plexing.Lexbuf.add '=' (Plexing.Lexbuf.add ':' buf)
| Some '>' ->
Stream.junk strm__;
Plexing.Lexbuf.add '>' (Plexing.Lexbuf.add ':' buf)
| _ -> Plexing.Lexbuf.add ':' buf
end
| Some '>' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some ']' ->
Stream.junk strm__;
Plexing.Lexbuf.add ']' (Plexing.Lexbuf.add '>' buf)
| Some '}' ->
Stream.junk strm__;
Plexing.Lexbuf.add '}' (Plexing.Lexbuf.add '>' buf)
| _ -> check_ident2 (Plexing.Lexbuf.add '>' buf) strm__
end
| Some '|' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some ']' ->
Stream.junk strm__;
Plexing.Lexbuf.add ']' (Plexing.Lexbuf.add '|' buf)
| Some '}' ->
Stream.junk strm__;
Plexing.Lexbuf.add '}' (Plexing.Lexbuf.add '|' buf)
| _ -> check_ident2 (Plexing.Lexbuf.add '|' buf) strm__
end
| Some '[' ->
Stream.junk strm__;
begin match Stream.npeek 2 strm__ with
['<'; '<'] | ['<'; ':'] -> Plexing.Lexbuf.add '[' buf
| _ ->
match Stream.peek strm__ with
Some '@' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some '@' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some '@' ->
Stream.junk strm__;
Plexing.Lexbuf.add '@'
(Plexing.Lexbuf.add '@'
(Plexing.Lexbuf.add '@'
(Plexing.Lexbuf.add '[' buf)))
| _ ->
Plexing.Lexbuf.add '@'
(Plexing.Lexbuf.add '@'
(Plexing.Lexbuf.add '[' buf))
end
| _ -> Plexing.Lexbuf.add '@' (Plexing.Lexbuf.add '[' buf)
end
| Some '%' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some '%' ->
Stream.junk strm__;
Plexing.Lexbuf.add '%'
(Plexing.Lexbuf.add '%' (Plexing.Lexbuf.add '[' buf))
| _ -> Plexing.Lexbuf.add '%' (Plexing.Lexbuf.add '[' buf)
end
| Some '|' ->
Stream.junk strm__;
Plexing.Lexbuf.add '|' (Plexing.Lexbuf.add '[' buf)
| Some '<' ->
Stream.junk strm__;
Plexing.Lexbuf.add '<' (Plexing.Lexbuf.add '[' buf)
| Some ':' ->
Stream.junk strm__;
Plexing.Lexbuf.add ':' (Plexing.Lexbuf.add '[' buf)
| _ -> Plexing.Lexbuf.add '[' buf
end
| Some '{' ->
Stream.junk strm__;
begin match Stream.npeek 2 strm__ with
['<'; '<'] | ['<'; ':'] -> Plexing.Lexbuf.add '{' buf
| _ ->
match Stream.peek strm__ with
Some '|' ->
Stream.junk strm__;
Plexing.Lexbuf.add '|' (Plexing.Lexbuf.add '{' buf)
| Some '<' ->
Stream.junk strm__;
Plexing.Lexbuf.add '<' (Plexing.Lexbuf.add '{' buf)
| Some ':' ->
Stream.junk strm__;
Plexing.Lexbuf.add ':' (Plexing.Lexbuf.add '{' buf)
| _ -> Plexing.Lexbuf.add '{' buf
end
| Some ';' ->
Stream.junk strm__;
begin match Stream.peek strm__ with
Some ';' ->
Stream.junk strm__;
Plexing.Lexbuf.add ';' (Plexing.Lexbuf.add ';' buf)
| _ -> Plexing.Lexbuf.add ';' buf
end
| _ ->
match
try Some (misc_punct buf strm__) with Stream.Failure -> None
with
Some buf -> check_ident2 buf strm__
| _ ->
match Stream.peek strm__ with
Some c -> Stream.junk strm__; Plexing.Lexbuf.add c buf
| _ -> raise Stream.Failure
and check_ident buf (strm__ : _ Stream.t) =
match
try
Some
(match Stream.peek strm__ with
Some ('A'..'Z' | 'a'..'z' | '0'..'9' | '_' | '\'' as c) ->
Stream.junk strm__; Plexing.Lexbuf.add c buf
| _ -> misc_letter buf strm__)
with Stream.Failure -> None
with
Some buf -> check_ident buf strm__
| _ -> buf
and check_ident2 buf (strm__ : _ Stream.t) =
match
try
Some
(match Stream.peek strm__ with
Some
('!' | '?' | '~' | '=' | '@' | '^' | '&' | '+' | '-' | '*' |
'/' | '%' | '.' | ':' | '<' | '>' | '|' as c) ->
Stream.junk strm__; Plexing.Lexbuf.add c buf
| _ -> misc_punct buf strm__)
with Stream.Failure -> None
with
Some buf -> check_ident2 buf strm__
| _ -> buf
;;
let check_keyword ctx s =
if ctx.simplest_raw_strings && (s = "{|" || s = "|}") then false
else try check_keyword_stream (Stream.of_string s) with _ -> false
;;
let error_no_respect_rules p_con p_prm =
raise
(Plexing.Error
("the token " ^
(if p_con = "" then "\"" ^ p_prm ^ "\""
else if p_prm = "" then p_con
else p_con ^ " \"" ^ p_prm ^ "\"") ^
" does not respect Plexer rules"))
;;
let using_token ctx kwd_table (p_con, p_prm) =
match p_con with
"" ->
if not (hashtbl_mem kwd_table p_prm) then
if check_keyword ctx p_prm then Hashtbl.add kwd_table p_prm p_prm
else error_no_respect_rules p_con p_prm
| "LIDENT" ->
if p_prm = "" then ()
else
begin match p_prm.[0] with
'A'..'Z' -> error_no_respect_rules p_con p_prm
| _ -> ()
end
| "UIDENT" ->
if p_prm = "" then ()
else
begin match p_prm.[0] with
'a'..'z' -> error_no_respect_rules p_con p_prm
| _ -> ()
end
| "TILDEIDENT" | "TILDEIDENTCOLON" | "QUESTIONIDENT" |
"QUESTIONIDENTCOLON" | "INT" | "INT_l" | "INT_L" | "INT_n" | "FLOAT" |
"QUOTEDEXTENSION_EXPR" | "QUOTEDEXTENSION_ITEM" | "CHAR" | "STRING" |
"RAWSTRING" | "QUOTATION" | "GIDENT" | "ANTIQUOT" | "ANTIQUOT_LOC" |
"EOI" ->
()
| _ ->
raise
(Plexing.Error
("the constructor \"" ^ p_con ^ "\" is not recognized by Plexer"))
;;
let removing_token kwd_table (p_con, p_prm) =
match p_con with
"" -> Hashtbl.remove kwd_table p_prm
| _ -> ()
;;
let text =
function
"", t -> "'" ^ t ^ "'"
| "LIDENT", "" -> "lowercase identifier"
| "LIDENT", t -> "'" ^ t ^ "'"
| "UIDENT", "" -> "uppercase identifier"
| "UIDENT", t -> "'" ^ t ^ "'"
| "INT", "" -> "integer"
| "INT", s -> "'" ^ s ^ "'"
| "FLOAT", "" -> "float"
| "STRING", "" -> "string"
| "RAWSTRING", "" -> "raw string"
| "CHAR", "" -> "char"
| "QUOTATION", "" -> "quotation"
| "ANTIQUOT", k -> "antiquot \"" ^ k ^ "\""
| "EOI", "" -> "end of input"
| con, "" -> con
| con, prm -> con ^ " \"" ^ prm ^ "\""
;;
let eq_before_colon p e =
let rec loop i =
if i == String.length e then
failwith "Internal error in Plexer: incorrect ANTIQUOT"
else if i == String.length p then e.[i] == ':'
else if p.[i] == e.[i] then loop (i + 1)
else false
in
loop 0
;;
let after_colon e =
try
let i = String.index e ':' in
String.sub e (i + 1) (String.length e - i - 1)
with Not_found -> ""
;;
let after_colon_except_last e =
try
let i = String.index e ':' in
String.sub e (i + 1) (String.length e - i - 2)
with Not_found -> ""
;;
let tok_match =
function
"ANTIQUOT", p_prm ->
if p_prm <> "" && (p_prm.[0] = '~' || p_prm.[0] = '?') then
if p_prm.[String.length p_prm - 1] = ':' then
let p_prm = String.sub p_prm 0 (String.length p_prm - 1) in
function
"ANTIQUOT", prm ->
if prm <> "" && prm.[String.length prm - 1] = ':' then
if eq_before_colon p_prm prm then after_colon_except_last prm
else raise Stream.Failure
else raise Stream.Failure
| _ -> raise Stream.Failure
else
function
"ANTIQUOT", prm ->
if prm <> "" && prm.[String.length prm - 1] = ':' then
raise Stream.Failure
else if eq_before_colon p_prm prm then after_colon prm
else raise Stream.Failure
| _ -> raise Stream.Failure
else
(function
"ANTIQUOT", prm when eq_before_colon p_prm prm -> after_colon prm
| _ -> raise Stream.Failure)
| "LIDENT", p_prm ->
(* also treats the case when a LIDENT is also a keyword *)
(fun (con, prm) ->
if con = "LIDENT" then
if p_prm = "" || prm = p_prm then prm else raise Stream.Failure
else if con = "" && prm = p_prm then prm
else raise Stream.Failure)
| "UIDENT", p_prm ->
(* also treats the case when a UIDENT is also a keyword *)
(fun (con, prm) ->
if con = "UIDENT" then
if p_prm = "" || prm = p_prm then prm else raise Stream.Failure
else if con = "" && prm = p_prm then prm
else raise Stream.Failure)
| tok -> Plexing.default_match tok
;;
let gmake () =
let kwd_table = Hashtbl.create 301 in
let ctx = make_ctx kwd_table in
let glexr =
ref
{Plexing.tok_func =
(fun _ -> raise (Match_failure ("plexer.ml", 1101, 25)));
tok_using = (fun _ -> raise (Match_failure ("plexer.ml", 1101, 45)));
tok_removing =
(fun _ -> raise (Match_failure ("plexer.ml", 1101, 68)));
tok_match = (fun _ -> raise (Match_failure ("plexer.ml", 1102, 18)));
tok_text = (fun _ -> raise (Match_failure ("plexer.ml", 1102, 37)));
tok_comm = None; kwds = kwd_table}
in
let glex =
{Plexing.tok_func = func ctx kwd_table glexr;
tok_using = using_token ctx kwd_table;
tok_removing = removing_token kwd_table; tok_match = tok_match;
tok_text = text; tok_comm = None; kwds = kwd_table}
in
glexr := glex; glex
;;
|