1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090
|
(* Yoann Padioleau
*
* Copyright (C) 2010 INRIA, University of Copenhagen DIKU
* Copyright (C) 1998-2009 Yoann Padioleau
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* version 2.1 as published by the Free Software Foundation, with the
* special exception on linking described in file license.txt.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the file
* license.txt for more details.
*)
(*****************************************************************************)
(* Notes *)
(*****************************************************************************)
(* ---------------------------------------------------------------------- *)
(* Maybe could split common.ml and use include tricks as in ofullcommon.ml or
* Jane Street core lib. But then harder to bundle simple scripts like my
* make_full_linux_kernel.ml because would then need to pass all the files
* either to ocamlc or either to some #load. Also as the code of many
* functions depends on other functions from this common, it would
* be tedious to add those dependencies. Here simpler (have just the
* pb of the Prelude, but it's a small problem).
*
* pixel means code from Pascal Rigaux
* julia means code from Julia Lawall
*)
(* ---------------------------------------------------------------------- *)
(*****************************************************************************)
(* We use *)
(*****************************************************************************)
(*
* modules:
* - Pervasives, of course
* - List
* - Str
* - Hashtbl
* - Format
* - Buffer
* - Unix and Sys
* - Arg
*
* functions:
* - =, <=, max min, abs, ...
* - List.rev, List.mem, List.partition,
* - List.fold*, List.concat, ...
* - Str.global_replace
* - Filename.is_relative
* - String.uppercase, String.lowercase
*
*
* The Format library allows to hide passing an indent_level variable.
* You use as usual the print_string function except that there is
* this automatic indent_level variable handled for you (and maybe
* more services). src: julia in coccinelle unparse_cocci.
*
* Extra packages
* - ocamlbdb
* - ocamlgtk, and gtksourceview
* - ocamlgl
* - ocamlpython
* - ocamlagrep
* - ocamlfuse
* - ocamlmpi
* - ocamlcalendar
*
* - pcre
* - sdl
*
* Many functions in this file were inspired by Haskell or Lisp libraries.
*)
(*****************************************************************************)
(* Prelude *)
(*****************************************************************************)
(* The following functions should be in their respective sections but
* because some functions in some sections use functions in other
* sections, and because I don't want to take care of the order of
* those sections, of those dependencies, I put the functions causing
* dependency problem here. C is better than caml on this with the
* ability to declare prototype, enabling some form of forward
* reference. *)
let (+>) o f = f o
exception Timeout
exception UnixExit of int
let rec (do_n: int -> (unit -> unit) -> unit) = fun i f ->
if i = 0 then () else (f(); do_n (i-1) f)
let rec (foldn: ('a -> int -> 'a) -> 'a -> int -> 'a) = fun f acc i ->
if i = 0 then acc else foldn f (f acc i) (i-1)
let sum_int = List.fold_left (+) 0
(* could really call it 'for' :) *)
let fold_left_with_index f acc =
let rec fold_lwi_aux acc n = function
| [] -> acc
| x::xs -> fold_lwi_aux (f acc x n) (n+1) xs
in fold_lwi_aux acc 0
let rec drop n xs =
match (n,xs) with
| (0,_) -> xs
| (_,[]) -> failwith "drop: not enough"
| (n,x::xs) -> drop (n-1) xs
let rec enum_orig x n = if x = n then [n] else x::enum_orig (x+1) n
let enum x n =
if not(x <= n)
then failwith (Printf.sprintf "bad values in enum, expect %d <= %d" x n);
let rec enum_aux acc x n =
if x = n then n::acc else enum_aux (x::acc) (x+1) n
in
List.rev (enum_aux [] x n)
let rec take n xs =
match (n,xs) with
| (0,_) -> []
| (_,[]) -> failwith "take: not enough"
| (n,x::xs) -> x::take (n-1) xs
let last_n n l = List.rev (take n (List.rev l))
let last l = List.hd (last_n 1 l)
let (list_of_string: string -> char list) = function
"" -> []
| s -> (enum 0 ((String.length s) - 1) +> List.map (String.get s))
let (lines: string -> string list) = fun s ->
let rec lines_aux = function
| [] -> []
| [x] -> if x = "" then [] else [x]
| x::xs ->
x::lines_aux xs
in
Str.split_delim (Str.regexp "\n") s +> lines_aux
let push2 v l =
l := v :: !l
let debugger = ref false
let unwind_protect f cleanup =
if !debugger then f() else
try f ()
with e -> begin cleanup e; raise e end
let finalize f cleanup =
if !debugger then f() else
try
let res = f () in
cleanup ();
res
with e ->
cleanup ();
raise e
let command2 s = ignore(Sys.command s)
let (matched: int -> string -> string) = fun i s ->
Str.matched_group i s
let matched1 = fun s -> matched 1 s
let matched2 = fun s -> (matched 1 s, matched 2 s)
let matched3 = fun s -> (matched 1 s, matched 2 s, matched 3 s)
let matched4 = fun s -> (matched 1 s, matched 2 s, matched 3 s, matched 4 s)
let matched5 = fun s -> (matched 1 s, matched 2 s, matched 3 s, matched 4 s, matched 5 s)
let matched6 = fun s -> (matched 1 s, matched 2 s, matched 3 s, matched 4 s, matched 5 s, matched 6 s)
let matched7 = fun s -> (matched 1 s, matched 2 s, matched 3 s, matched 4 s, matched 5 s, matched 6 s, matched 7 s)
let (with_open_stringbuf: (((string -> unit) * Buffer.t) -> unit) -> string) =
fun f ->
let buf = Buffer.create 100 in
let pr s = Buffer.add_string buf (s ^ "\n") in
f (pr, buf);
Buffer.contents buf
let foldl1 p = function x::xs -> List.fold_left p x xs | _ -> failwith "foldl1"
(*****************************************************************************)
(* Debugging/logging *)
(*****************************************************************************)
(* I used this in coccinelle where the huge logging of stuff ask for
* a more organized solution that use more visual indentation hints.
*
* todo? could maybe use log4j instead ? or use Format module more
* consistently ?
*)
let _tab_level_print = ref 0
let _tab_indent = 5
let _prefix_pr = ref ""
let indent_do f =
_tab_level_print := !_tab_level_print + _tab_indent;
finalize f
(fun () -> _tab_level_print := !_tab_level_print - _tab_indent;)
let pr s =
print_string !_prefix_pr;
do_n !_tab_level_print (fun () -> print_string " ");
print_string s;
print_string "\n";
flush stdout
let pr_no_nl s =
print_string !_prefix_pr;
do_n !_tab_level_print (fun () -> print_string " ");
print_string s;
flush stdout
let _chan_pr2 = ref (None: out_channel option)
let out_chan_pr2 ?(newline=true) s =
match !_chan_pr2 with
| None -> ()
| Some chan ->
output_string chan (s ^ (if newline then "\n" else ""));
flush chan
let print_to_stderr = ref true
let pr2 s =
if !print_to_stderr
then
begin
prerr_string !_prefix_pr;
do_n !_tab_level_print (fun () -> prerr_string " ");
prerr_string s;
prerr_string "\n";
flush stderr;
out_chan_pr2 s;
()
end
let pr2_no_nl s =
if !print_to_stderr
then
begin
prerr_string !_prefix_pr;
do_n !_tab_level_print (fun () -> prerr_string " ");
prerr_string s;
flush stderr;
out_chan_pr2 ~newline:false s;
()
end
let pr_xxxxxxxxxxxxxxxxx () =
pr "-----------------------------------------------------------------------"
let pr2_xxxxxxxxxxxxxxxxx () =
pr2 "-----------------------------------------------------------------------"
let reset_pr_indent () =
_tab_level_print := 0
(* old:
* let pr s = (print_string s; print_string "\n"; flush stdout)
* let pr2 s = (prerr_string s; prerr_string "\n"; flush stderr)
*)
(* ---------------------------------------------------------------------- *)
(* I can not use the _xxx ref tech that I use for common_extra.ml here because
* ocaml don't like the polymorphism of Dumper mixed with refs.
*
* let (_dump_func : ('a -> string) ref) = ref
* (fun x -> failwith "no dump yet, have you included common_extra.cmo?")
* let (dump : 'a -> string) = fun x ->
* !_dump_func x
*
* So I have included directly dumper.ml in common.ml. It's more practical
* when want to give script that use my common.ml, I just have to give
* this file.
*)
(* don't the code below, use the Dumper module in ocamlextra instead.
(* start of dumper.ml *)
(* Dump an OCaml value into a printable string.
* By Richard W.M. Jones (rich@annexia.org).
* dumper.ml 1.2 2005/02/06 12:38:21 rich Exp
*)
open Printf
open Obj
let rec dump r =
if is_int r then
string_of_int (magic r : int)
else ( (* Block. *)
let rec get_fields acc = function
| 0 -> acc
| n -> let n = n-1 in get_fields (field r n :: acc) n
in
let rec is_list r =
if is_int r then (
if (magic r : int) = 0 then true (* [] *)
else false
) else (
let s = size r and t = tag r in
if t = 0 && s = 2 then is_list (field r 1) (* h :: t *)
else false
)
in
let rec get_list r =
if is_int r then []
else let h = field r 0 and t = get_list (field r 1) in h :: t
in
let opaque name =
(* XXX In future, print the address of value 'r'. Not possible in
* pure OCaml at the moment.
*)
"<" ^ name ^ ">"
in
let s = size r and t = tag r in
(* From the tag, determine the type of block. *)
if is_list r then ( (* List. *)
let fields = get_list r in
"[" ^ String.concat "; " (List.map dump fields) ^ "]"
)
else if t = 0 then ( (* Tuple, array, record. *)
let fields = get_fields [] s in
"(" ^ String.concat ", " (List.map dump fields) ^ ")"
)
(* Note that [lazy_tag .. forward_tag] are < no_scan_tag. Not
* clear if very large constructed values could have the same
* tag. XXX *)
else if t = lazy_tag then opaque "lazy"
else if t = closure_tag then opaque "closure"
else if t = object_tag then ( (* Object. *)
let fields = get_fields [] s in
let clasz, id, slots =
match fields with h::h'::t -> h, h', t | _ -> assert false in
(* No information on decoding the class (first field). So just print
* out the ID and the slots.
*)
"Object #" ^ dump id ^
" (" ^ String.concat ", " (List.map dump slots) ^ ")"
)
else if t = infix_tag then opaque "infix"
else if t = forward_tag then opaque "forward"
else if t < no_scan_tag then ( (* Constructed value. *)
let fields = get_fields [] s in
"Tag" ^ string_of_int t ^
" (" ^ String.concat ", " (List.map dump fields) ^ ")"
)
else if t = string_tag then (
"\"" ^ String.escaped (magic r : string) ^ "\""
)
else if t = double_tag then (
string_of_float (magic r : float)
)
else if t = abstract_tag then opaque "abstract"
else if t = custom_tag then opaque "custom"
else if t = final_tag then opaque "final"
else failwith ("dump: impossible tag (" ^ string_of_int t ^ ")")
)
let dump v = dump (repr v)
(* end of dumper.ml *)
*)
(*
let (dump : 'a -> string) = fun x ->
Dumper.dump x
*)
(* ---------------------------------------------------------------------- *)
let pr2_gen x = pr2 (Dumper.dump x)
(* ---------------------------------------------------------------------- *)
let _already_printed = Hashtbl.create 101
let disable_pr2_once = ref false
let xxx_once f s =
if !disable_pr2_once then pr2 s
else
if not (Hashtbl.mem _already_printed s)
then begin
Hashtbl.add _already_printed s true;
f ("(ONCE) " ^ s)
end
let pr2_once s = xxx_once pr2 s
let clear_pr2_once _ = Hashtbl.clear _already_printed
(* ---------------------------------------------------------------------- *)
let mk_pr2_wrappers aref =
let fpr2 s =
if !aref
then pr2 s
else
(* just to the log file *)
out_chan_pr2 s
in
let fpr2_once s =
if !aref
then pr2_once s
else
xxx_once out_chan_pr2 s
in
fpr2, fpr2_once
(* ---------------------------------------------------------------------- *)
(* could also be in File section *)
let redirect_stdout file f =
begin
let chan = open_out file in
let descr = Unix.descr_of_out_channel chan in
let saveout = Unix.dup Unix.stdout in
Unix.dup2 descr Unix.stdout;
flush stdout;
let res = f() in
flush stdout;
Unix.dup2 saveout Unix.stdout;
close_out chan;
res
end
let redirect_stdout_opt optfile f =
match optfile with
| None -> f()
| Some outfile -> redirect_stdout outfile f
let redirect_stdout_stderr file f =
begin
let chan = open_out file in
let descr = Unix.descr_of_out_channel chan in
let saveout = Unix.dup Unix.stdout in
let saveerr = Unix.dup Unix.stderr in
Unix.dup2 descr Unix.stdout;
Unix.dup2 descr Unix.stderr;
flush stdout; flush stderr;
f();
flush stdout; flush stderr;
Unix.dup2 saveout Unix.stdout;
Unix.dup2 saveerr Unix.stderr;
close_out chan;
end
let redirect_stdin file f =
begin
let chan = open_in file in
let descr = Unix.descr_of_in_channel chan in
let savein = Unix.dup Unix.stdin in
Unix.dup2 descr Unix.stdin;
let res = f() in
Unix.dup2 savein Unix.stdin;
close_in chan;
res
end
let redirect_stdin_opt optfile f =
match optfile with
| None -> f()
| Some infile -> redirect_stdin infile f
(* cf end
let with_pr2_to_string f =
*)
let spf = Printf.sprintf
(* ---------------------------------------------------------------------- *)
let _chan = ref stderr
let start_log_file () =
let filename = (spf "/tmp/debugml%d:%d" (Unix.getuid()) (Unix.getpid())) in
pr2 (spf "now using %s for logging" filename);
_chan := open_out filename
let dolog s = output_string !_chan (s ^ "\n"); flush !_chan
let verbose_level = ref 1
let log s = if !verbose_level >= 1 then dolog s
let log2 s = if !verbose_level >= 2 then dolog s
let log3 s = if !verbose_level >= 3 then dolog s
let log4 s = if !verbose_level >= 4 then dolog s
let if_log f = if !verbose_level >= 1 then f()
let if_log2 f = if !verbose_level >= 2 then f()
let if_log3 f = if !verbose_level >= 3 then f()
let if_log4 f = if !verbose_level >= 4 then f()
(* ---------------------------------------------------------------------- *)
let pause () = (pr2 "pause: type return"; ignore(read_line ()))
(* src: from getopt from frish *)
let bip () = Printf.printf "\007"; flush stdout
let wait () = Unix.sleep 1
(* was used by fix_caml *)
let _trace_var = ref 0
let add_var() = incr _trace_var
let dec_var() = decr _trace_var
let get_var() = !_trace_var
let (print_n: int -> string -> unit) = fun i s ->
do_n i (fun () -> print_string s)
let (printerr_n: int -> string -> unit) = fun i s ->
do_n i (fun () -> prerr_string s)
let _debug = ref true
let debugon () = _debug := true
let debugoff () = _debug := false
let debug f = if !_debug then f () else ()
(* now in prelude:
* let debugger = ref false
*)
(*****************************************************************************)
(* Profiling *)
(*****************************************************************************)
type prof = PALL | PNONE | PSOME of string list
let profile = ref PNONE
let show_trace_profile = ref false
let check_profile category =
match !profile with
PALL -> true
| PNONE -> false
| PSOME l -> List.mem category l
let _profile_table = ref (Hashtbl.create 101)
let adjust_profile_entry category difftime =
let (xtime, xcount) =
(try Hashtbl.find !_profile_table category
with Not_found ->
let xtime = ref 0.0 in
let xcount = ref 0 in
Hashtbl.add !_profile_table category (xtime, xcount);
(xtime, xcount)
) in
xtime := !xtime +. difftime;
xcount := !xcount + 1;
()
let profile_start category = failwith "todo"
let profile_end category = failwith "todo"
(* subtil: don't forget to give all arguments to f, otherwise partial app
* and will profile nothing.
*
* todo: try also detect when complexity augment each time, so can
* detect the situation for a function gets worse and worse ?
*)
let profile_code category f =
if not (check_profile category)
then f()
else begin
if !show_trace_profile then pr2 (spf "p: %s" category);
let t = Unix.gettimeofday () in
let res, prefix =
try Some (f ()), ""
with Timeout -> None, "*"
in
let category = prefix ^ category in (* add a '*' to indicate timeout func *)
let t' = Unix.gettimeofday () in
adjust_profile_entry category (t' -. t);
(match res with
| Some res -> res
| None -> raise Timeout
);
end
let _is_in_exclusif = ref (None: string option)
let profile_code_exclusif category f =
if not (check_profile category)
then f()
else begin
match !_is_in_exclusif with
| Some s ->
failwith (spf "profile_code_exclusif: %s but already in %s " category s);
| None ->
_is_in_exclusif := (Some category);
finalize
(fun () ->
profile_code category f
)
(fun () ->
_is_in_exclusif := None
)
end
let profile_code_inside_exclusif_ok category f =
failwith "Todo"
(* todo: also put % ? also add % to see if coherent numbers *)
let profile_diagnostic () =
if !profile = PNONE then "" else
let xs =
Hashtbl.fold (fun k v acc -> (k,v)::acc) !_profile_table []
+> List.sort (fun (k1, (t1,n1)) (k2, (t2,n2)) -> compare t2 t1)
in
with_open_stringbuf (fun (pr,_) ->
pr "---------------------";
pr "profiling result";
pr "---------------------";
xs +> List.iter (fun (k, (t,n)) ->
pr (Printf.sprintf "%-40s : %10.3f sec %10d count" k !t !n)
)
)
let reset_profile _ =
(if !profile <> PNONE
then pr2 (profile_diagnostic ()));
Hashtbl.clear !_profile_table
let report_if_take_time timethreshold s f =
let t = Unix.gettimeofday () in
let res = f () in
let t' = Unix.gettimeofday () in
if (t' -. t > float_of_int timethreshold)
then pr2 (Printf.sprintf "Note: processing took %7.1fs: %s" (t' -. t) s);
res
let profile_code2 category f =
profile_code category (fun () ->
if !profile = PALL
then pr2 ("starting: " ^ category);
let t = Unix.gettimeofday () in
let res = f () in
let t' = Unix.gettimeofday () in
if !profile = PALL
then pr2 (spf "ending: %s, %fs" category (t' -. t));
res
)
(*****************************************************************************)
(* Test *)
(*****************************************************************************)
let example b = assert b
let _ex1 = example (enum 1 4 = [1;2;3;4])
let assert_equal a b =
if not (a = b)
then failwith ("assert_equal: those 2 values are not equal:\n\t" ^
(Dumper.dump a) ^ "\n\t" ^ (Dumper.dump b) ^ "\n")
let (example2: string -> bool -> unit) = fun s b ->
try assert b with x -> failwith s
(*-------------------------------------------------------------------*)
let _list_bool = ref []
let (example3: string -> bool -> unit) = fun s b ->
_list_bool := (s,b)::(!_list_bool)
(* could introduce a fun () otherwise the calculus is made at compile time
* and this can be long. This would require to redefine test_all.
* let (example3: string -> (unit -> bool) -> unit) = fun s func ->
* _list_bool := (s,func):: (!_list_bool)
*
* I would like to do as a func that take 2 terms, and make an = over it
* avoid to add this ugly fun (), but pb of type, can't do that :(
*)
let (test_all: unit -> unit) = fun () ->
List.iter (fun (s, b) ->
Printf.printf "%s: %s\n" s (if b then "passed" else "failed")
) !_list_bool
let (test: string -> unit) = fun s ->
Printf.printf "%s: %s\n" s
(if (List.assoc s (!_list_bool)) then "passed" else "failed")
let _ex = example3 "@" ([1;2]@[3;4;5] = [1;2;3;4;5])
(*-------------------------------------------------------------------*)
(* Regression testing *)
(*-------------------------------------------------------------------*)
(* cf end of file. It uses too many other common functions so I
* have put the code at the end of this file.
*)
(* todo? take code from julien signoles in calendar-2.0.2/tests *)
(*
(* Generic functions used in the tests. *)
val reset : unit -> unit
val nb_ok : unit -> int
val nb_bug : unit -> int
val test : bool -> string -> unit
val test_exn : 'a Lazy.t -> string -> unit
let ok_ref = ref 0
let ok () = incr ok_ref
let nb_ok () = !ok_ref
let bug_ref = ref 0
let bug () = incr bug_ref
let nb_bug () = !bug_ref
let reset () =
ok_ref := 0;
bug_ref := 0
let test x s =
if x then ok () else begin Printf.printf "%s\n" s; bug () end;;
let test_exn x s =
try
ignore (Lazy.force x);
Printf.printf "%s\n" s;
bug ()
with _ ->
ok ();;
*)
(*****************************************************************************)
(* Quickcheck like (sfl) *)
(*****************************************************************************)
(* Better than quickcheck, cos can't do a test_all_prop in haskell cos
* prop were functions, whereas here we have not prop_Unix x = ... but
* laws "unit" ...
*
* How to do without overloading ? objet ? can pass a generator as a
* parameter, mais lourd, prefer automatic inferring of the
* generator? But at the same time quickcheck does not do better cos
* we must explicitly type the property. So between a
* prop_unit:: [Int] -> [Int] -> bool ...
* prop_unit x = reverse [x] == [x]
* and
* let _ = laws "unit" (fun x -> reverse [x] = [x]) (listg intg)
* there is no real differences.
*
* Yes I define typeg generator but quickcheck too, he must define
* class instance. I emulate the context Gen a => Gen [a] by making
* listg take as a param a type generator. Moreover I have not the pb of
* monad. I can do random independently, so my code is more simple
* I think than the haskell code of quickcheck.
*
* update: apparently Jane Street have copied some of my code for their
* Ounit_util.ml and quichcheck.ml in their Core library :)
*)
(*---------------------------------------------------------------------------*)
(* generators *)
(*---------------------------------------------------------------------------*)
type 'a gen = unit -> 'a
let (ig: int gen) = fun () ->
Random.int 10
let (lg: ('a gen) -> ('a list) gen) = fun gen () ->
foldn (fun acc i -> (gen ())::acc) [] (Random.int 10)
let (pg: ('a gen) -> ('b gen) -> ('a * 'b) gen) = fun gen1 gen2 () ->
(gen1 (), gen2 ())
let polyg = ig
let (ng: (string gen)) = fun () ->
"a" ^ (string_of_int (ig ()))
let (oneofl: ('a list) -> 'a gen) = fun xs () ->
List.nth xs (Random.int (List.length xs))
(* let oneofl l = oneof (List.map always l) *)
let (oneof: (('a gen) list) -> 'a gen) = fun xs ->
List.nth xs (Random.int (List.length xs))
let (always: 'a -> 'a gen) = fun e () -> e
let (frequency: ((int * ('a gen)) list) -> 'a gen) = fun xs ->
let sums = sum_int (List.map fst xs) in
let i = Random.int sums in
let rec freq_aux acc = function
| (x,g)::xs -> if i < acc+x then g else freq_aux (acc+x) xs
| _ -> failwith "frequency"
in
freq_aux 0 xs
let frequencyl l = frequency (List.map (fun (i,e) -> (i,always e)) l)
(*
let b = oneof [always true; always false] ()
let b = frequency [3, always true; 2, always false] ()
*)
(* cannot do this:
* let rec (lg: ('a gen) -> ('a list) gen) = fun gen -> oneofl [[]; lg gen ()]
* nor
* let rec (lg: ('a gen) -> ('a list) gen) = fun gen -> oneof [always []; lg gen]
*
* because caml is not as lazy as haskell :( fix the pb by introducing a size
* limit. take the bounds/size as parameter. morover this is needed for
* more complex type.
*
* how make a bintreeg ?? we need recursion
*
* let rec (bintreeg: ('a gen) -> ('a bintree) gen) = fun gen () ->
* let rec aux n =
* if n = 0 then (Leaf (gen ()))
* else frequencyl [1, Leaf (gen ()); 4, Branch ((aux (n / 2)), aux (n / 2))]
* ()
* in aux 20
*
*)
(*---------------------------------------------------------------------------*)
(* property *)
(*---------------------------------------------------------------------------*)
(* todo: a test_all_laws, better syntax (done already a little with ig in
* place of intg. En cas d'erreur, print the arg that not respect
*
* todo: with monitoring, as in haskell, laws = laws2, no need for 2 func,
* but hard i found
*
* todo classify, collect, forall
*)
(* return None when good, and Just the_problematic_case when bad *)
let (laws: string -> ('a -> bool) -> ('a gen) -> 'a option) = fun s func gen ->
let res = foldn (fun acc i -> let n = gen() in (n, func n)::acc) [] 1000 in
let res = List.filter (fun (x,b) -> not b) res in
if res = [] then None else Some (fst (List.hd res))
let rec (statistic_number: ('a list) -> (int * 'a) list) = function
| [] -> []
| x::xs -> let (splitg, splitd) = List.partition (fun y -> y = x) xs in
(1+(List.length splitg), x)::(statistic_number splitd)
(* in pourcentage *)
let (statistic: ('a list) -> (int * 'a) list) = fun xs ->
let stat_num = statistic_number xs in
let totals = sum_int (List.map fst stat_num) in
List.map (fun (i, v) -> ((i * 100) / totals), v) stat_num
let (laws2:
string -> ('a -> (bool * 'b)) -> ('a gen) ->
('a option * ((int * 'b) list ))) =
fun s func gen ->
let res = foldn (fun acc i -> let n = gen() in (n, func n)::acc) [] 1000 in
let stat = statistic (List.map (fun (x,(b,v)) -> v) res) in
let res = List.filter (fun (x,(b,v)) -> not b) res in
if res = [] then (None, stat) else (Some (fst (List.hd res)), stat)
(*
let b = laws "unit" (fun x -> reverse [x] = [x] )ig
let b = laws "app " (fun (xs,ys) -> reverse (xs @ ys) = reverse ys @ reverse xs)(pg (lg ig)(lg ig))
let b = laws "rev " (fun xs -> reverse (reverse xs) = xs )(lg ig)
let b = laws "appb" (fun (xs,ys) -> reverse (xs @ ys) = reverse xs @ reverse ys)(pg (lg ig)(lg ig))
let b = laws "max" (fun (x,y) -> x <= y ==> (max x y = y) )(pg ig ig)
let b = laws2 "max" (fun (x,y) -> ((x <= y ==> (max x y = y)), x <= y))(pg ig ig)
*)
(* todo, do with coarbitrary ?? idea is that given a 'a, generate a 'b
* depending of 'a and gen 'b, that is modify gen 'b, what is important is
* that each time given the same 'a, we must get the same 'b !!!
*)
(*
let (fg: ('a gen) -> ('b gen) -> ('a -> 'b) gen) = fun gen1 gen2 () ->
let b = laws "funs" (fun (f,g,h) -> x <= y ==> (max x y = y) )(pg ig ig)
*)
(*
let one_of xs = List.nth xs (Random.int (List.length xs))
let take_one xs =
if xs=[] then failwith "Take_one: empty list"
else
let i = Random.int (List.length xs) in
List.nth xs i, filter_index (fun j _ -> i <> j) xs
*)
(*****************************************************************************)
(* Persistence *)
(*****************************************************************************)
let get_value filename =
let chan = open_in filename in
let x = input_value chan in (* <=> Marshal.from_channel *)
(close_in chan; x)
let write_value valu filename =
let chan = open_out filename in
(output_value chan valu; (* <=> Marshal.to_channel *)
(* Marshal.to_channel chan valu [Marshal.Closures]; *)
close_out chan)
let write_back func filename =
write_value (func (get_value filename)) filename
let read_value f = get_value f
let marshal__to_string2 v flags =
Marshal.to_string v flags
let marshal__to_string a b =
profile_code "Marshalling" (fun () -> marshal__to_string2 a b)
let marshal__from_string2 v flags =
Marshal.from_string v flags
let marshal__from_string a b =
profile_code "Marshalling" (fun () -> marshal__from_string2 a b)
(*****************************************************************************)
(* Counter *)
(*****************************************************************************)
let _counter = ref 0
let counter () = (_counter := !_counter +1; !_counter)
let _counter2 = ref 0
let counter2 () = (_counter2 := !_counter2 +1; !_counter2)
let _counter3 = ref 0
let counter3 () = (_counter3 := !_counter3 +1; !_counter3)
type timestamp = int
(*****************************************************************************)
(* String_of *)
(*****************************************************************************)
(* To work with the macro system autogenerated string_of and print_ function
(kind of deriving a la haskell) *)
(* int, bool, char, float, ref ?, string *)
let string_of_string s = "\"" ^ s "\""
let string_of_list f xs =
"[" ^ (xs +> List.map f +> String.concat ";" ) ^ "]"
let string_of_unit () = "()"
let string_of_array f xs =
"[|" ^ (xs +> Array.to_list +> List.map f +> String.concat ";") ^ "|]"
let string_of_option f = function
| None -> "None "
| Some x -> "Some " ^ (f x)
let print_bool x = print_string (if x then "True" else "False")
let print_option pr = function
| None -> print_string "None"
| Some x -> print_string "Some ("; pr x; print_string ")"
let print_list pr xs =
begin
print_string "[";
List.iter (fun x -> pr x; print_string ",") xs;
print_string "]";
end
(* specialized
let (string_of_list: char list -> string) =
List.fold_left (fun acc x -> acc^(Char.escaped x)) ""
*)
let rec print_between between fn = function
| [] -> ()
| [x] -> fn x
| x::xs -> fn x; between(); print_between between fn xs
let adjust_pp_with_indent f =
Format.open_box !_tab_level_print;
(*Format.force_newline();*)
f();
Format.close_box ();
Format.print_newline()
let adjust_pp_with_indent_and_header s f =
Format.open_box (!_tab_level_print + String.length s);
do_n !_tab_level_print (fun () -> Format.print_string " ");
Format.print_string s;
f();
Format.close_box ();
Format.print_newline()
let pp_do_in_box f = Format.open_box 1; f(); Format.close_box ()
let pp_do_in_zero_box f = Format.open_box 0; f(); Format.close_box ()
let pp_f_in_box f =
Format.open_box 1;
let res = f() in
Format.close_box ();
res
let pp s = Format.print_string s
let mk_str_func_of_assoc_conv xs =
let swap (x,y) = (y,x) in
(fun s ->
let xs' = List.map swap xs in
List.assoc s xs'
),
(fun a ->
List.assoc a xs
)
(* julia: convert something printed using format to print into a string *)
(* now at bottom of file
let format_to_string f =
...
*)
(*****************************************************************************)
(* Composition/Control *)
(*****************************************************************************)
(* I like the obj.func object notation. In OCaml cannot use '.' so I use +>
*
* update: it seems that F# agrees with me :) but they use |>
*)
(* now in prelude:
* let (+>) o f = f o
*)
let (+!>) refo f = refo := f !refo
(* alternatives:
* let ((@): 'a -> ('a -> 'b) -> 'b) = fun a b -> b a
* let o f g x = f (g x)
*)
let ($) f g x = g (f x)
let compose f g x = f (g x)
(* don't work :( let ( \B0 ) f g x = f(g(x)) *)
(* trick to have something similar to the 1 `max` 4 haskell infix notation.
by Keisuke Nakano on the caml mailing list.
> let ( /* ) x y = y x
> and ( */ ) x y = x y
or
let ( <| ) x y = y x
and ( |> ) x y = x y
> Then we can make an infix operator <| f |> for a binary function f.
*)
let flip f = fun a b -> f b a
let curry f x y = f (x,y)
let uncurry f (a,b) = f a b
let id = fun x -> x
let do_nothing () = ()
let rec applyn n f o = if n = 0 then o else applyn (n-1) f (f o)
let forever f =
while true do
f();
done
class ['a] shared_variable_hook (x:'a) =
object(self)
val mutable data = x
val mutable registered = []
method set x =
begin
data <- x;
pr "refresh registered";
registered +> List.iter (fun f -> f());
end
method get = data
method modify f = self#set (f self#get)
method register f =
registered <- f :: registered
end
(* src: from aop project. was called ptFix *)
let rec fixpoint trans elem =
let image = trans elem in
if (image = elem)
then elem (* point fixe *)
else fixpoint trans image
(* le point fixe pour les objets. was called ptFixForObjetct *)
let rec fixpoint_for_object trans elem =
let image = trans elem in
if (image#equal elem) then elem (* point fixe *)
else fixpoint_for_object trans image
let (add_hook: ('a -> ('a -> 'b) -> 'b) ref -> ('a -> ('a -> 'b) -> 'b) -> unit) =
fun var f ->
let oldvar = !var in
var := fun arg k -> f arg (fun x -> oldvar x k)
let (add_hook_action: ('a -> unit) -> ('a -> unit) list ref -> unit) =
fun f hooks ->
push2 f hooks
let (run_hooks_action: 'a -> ('a -> unit) list ref -> unit) =
fun obj hooks ->
!hooks +> List.iter (fun f -> try f obj with _ -> ())
type 'a mylazy = (unit -> 'a)
(* a la emacs *)
let save_excursion reference f =
let old = !reference in
let res = try f() with e -> reference := old; raise e in
reference := old;
res
let save_excursion_and_disable reference f =
save_excursion reference (fun () ->
reference := false;
f ()
)
let save_excursion_and_enable reference f =
save_excursion reference (fun () ->
reference := true;
f ()
)
let memoized h k f =
try Hashtbl.find h k
with Not_found ->
let v = f () in
begin
Hashtbl.add h k v;
v
end
let cache_in_ref myref f =
match !myref with
| Some e -> e
| None ->
let e = f () in
myref := Some e;
e
let once f =
let already = ref false in
(fun x ->
if not !already
then begin already := true; f x end
)
(* cache_file, cf below *)
let before_leaving f x =
f x;
x
(* finalize, cf prelude *)
(* cheat *)
let rec y f = fun x -> f (y f) x
(*****************************************************************************)
(* Concurrency *)
(*****************************************************************************)
(* from http://en.wikipedia.org/wiki/File_locking
*
* "When using file locks, care must be taken to ensure that operations
* are atomic. When creating the lock, the process must verify that it
* does not exist and then create it, but without allowing another
* process the opportunity to create it in the meantime. Various
* schemes are used to implement this, such as taking advantage of
* system calls designed for this purpose (but such system calls are
* not usually available to shell scripts) or by creating the lock file
* under a temporary name and then attempting to move it into place."
*
* => can't use 'if(not (file_exist xxx)) then create_file xxx' because
* file_exist/create_file are not in atomic section (classic problem).
*
* from man open:
*
* "O_EXCL When used with O_CREAT, if the file already exists it
* is an error and the open() will fail. In this context, a
* symbolic link exists, regardless of where it points to.
* O_EXCL is broken on NFS file systems; programs which
* rely on it for performing locking tasks will contain a
* race condition. The solution for performing atomic file
* locking using a lockfile is to create a unique file on
* the same file system (e.g., incorporating host- name and
* pid), use link(2) to make a link to the lockfile. If
* link(2) returns 0, the lock is successful. Otherwise,
* use stat(2) on the unique file to check if its link
* count has increased to 2, in which case the lock is also
* successful."
*)
exception FileAlreadyLocked
(* Racy if lock file on NFS!!! But still racy with recent Linux ? *)
let acquire_file_lock filename =
pr2 ("Locking file: " ^ filename);
try
let _fd = Unix.openfile filename [Unix.O_CREAT;Unix.O_EXCL] 0o777 in
()
with Unix.Unix_error (e, fm, argm) ->
pr2 (spf "exn Unix_error: %s %s %s\n" (Unix.error_message e) fm argm);
raise FileAlreadyLocked
let release_file_lock filename =
pr2 ("Releasing file: " ^ filename);
Unix.unlink filename;
()
(*****************************************************************************)
(* Error management *)
(*****************************************************************************)
exception Todo
exception Impossible of int
exception Here
exception ReturnExn
exception Multi_found (* to be consistent with Not_found *)
exception WrongFormat of string
(* old: let _TODO () = failwith "TODO", now via fix_caml with raise Todo *)
let internal_error s = failwith ("internal error: "^s)
let error_cant_have x = internal_error ("can't have this case: " ^(Dumper.dump x))
let myassert cond = if cond then () else failwith "assert error"
(* before warning I was forced to do stuff like this:
*
* let (fixed_int_to_posmap: fixed_int -> posmap) = fun fixed ->
* let v = ((fix_to_i fixed) / (power 2 16)) in
* let _ = Printf.printf "coord xy = %d\n" v in
* v
*
* The need for printf make me force to name stuff :(
* How avoid ? use 'it' special keyword ?
* In fact don't have to name it, use +> (fun v -> ...) so when want
* erase debug just have to erase one line.
*)
let warning s v = (pr2 ("Warning: " ^ s ^ "; value = " ^ (Dumper.dump v)); v)
let exn_to_s exn =
Printexc.to_string exn
(* alias *)
let string_of_exn exn = exn_to_s exn
(* want or of merd, but cannot cos cannot put die ... in b (strict call) *)
let (|||) a b = try a with _ -> b
(* emacs/lisp inspiration, (vouillon does that too in unison I think) *)
(* now in Prelude:
* let unwind_protect f cleanup = ...
* let finalize f cleanup = ...
*)
(* sometimes to get help from ocaml compiler to tell me places where
* I should update, we sometimes need to change some type from pair
* to triple, hence this kind of fake type.
*)
type evotype = unit
let evoval = ()
(*****************************************************************************)
(* Environment *)
(*****************************************************************************)
let check_stack = ref true
let check_stack_size limit =
if !check_stack then begin
pr2 "checking stack size (do ulimit -s 50000 if problem)";
let rec aux i =
if i = limit
then 0
else 1 + aux (i + 1)
in
assert(aux 0 = limit);
()
end
let test_check_stack_size limit =
(* bytecode: 100000000 *)
(* native: 10000000 *)
check_stack_size (int_of_string limit)
(* only relevant in bytecode, in native the stacklimit is the os stacklimit
* (adjustable by ulimit -s)
*)
let _init_gc_stack =
Gc.set {(Gc.get ()) with Gc.stack_limit = 100 * 1024 * 1024}
(* if process a big set of files then don't want get overflow in the middle
* so for this we are ready to spend some extra time at the beginning that
* could save far more later.
*)
let check_stack_nbfiles nbfiles =
if nbfiles > 200
then check_stack_size 10000000
(*****************************************************************************)
(* Arguments/options and command line (cocci and acomment) *)
(*****************************************************************************)
(*
* Why define wrappers ? Arg not good enough ? Well the Arg.Rest is not that
* good and I need a way sometimes to get a list of argument.
*
* I could define maybe a new Arg.spec such as
* | String_list of (string list -> unit), but the action may require
* some flags to be set, so better to process this after all flags have
* been set by parse_options. So have to split. Otherwise it would impose
* an order of the options such as
* -verbose_parsing -parse_c file1 file2. and I really like to use bash
* history and add just at the end of my command a -profile for instance.
*
*
* Why want a -action arg1 arg2 arg3 ? (which in turn requires this
* convulated scheme ...) Why not use Arg.String action such as
* "-parse_c", Arg.String (fun file -> ...) ?
* I want something that looks like ocaml function but at the UNIX
* command line level. So natural to have this scheme instead of
* -taxo_file arg2 -sample_file arg3 -parse_c arg1.
*
*
* Why not use the toplevel ?
* - because to debug, ocamldebug is far superior to the toplevel
* (can go back, can go directly to a specific point, etc).
* I want a kind of testing at cmdline level.
* - Also I don't have file completion when in the ocaml toplevel.
* I have to type "/path/to/xxx" without help.
*
*
* Why having variable flags ? Why use 'if !verbose_parsing then ...' ?
* why not use strings and do stuff like the following
* 'if (get_config "verbose_parsing") then ...'
* Because I want to make the interface for flags easier for the code
* that use it. The programmer should not be bothered whether this
* flag is set via args cmd line or a config file, so I want to make it
* as simple as possible, just use a global plain caml ref variable.
*
* Same spirit a little for the action. Instead of having function such as
* test_parsing_c, I could do it only via string. But I still prefer
* to have plain caml test functions. Also it makes it easier to call
* those functions from a toplevel for people who prefer the toplevel.
*
*
* So have flag_spec and action_spec. And in flag have debug_xxx flags,
* verbose_xxx flags and other flags.
*
* I would like to not have to separate the -xxx actions spec from the
* corresponding actions, but those actions may need more than one argument
* and so have to wait for parse_options, which in turn need the options
* spec, so circle.
*
* Also I don't want to mix code with data structures, so it's better that the
* options variable contain just a few stuff and have no side effects except
* setting global variables.
*
* Why not have a global variable such as Common.actions that
* other modules modify ? No, I prefer to do less stuff behind programmer's
* back so better to let the user merge the different options at call
* site, but at least make it easier by providing shortcut for set of options.
*
*
*
*
* todo? isn't unison or scott-mcpeak-lib-in-cil handles that kind of
* stuff better ? That is the need to localize command line argument
* while still being able to gathering them. Same for logging.
* Similar to the type prof = PALL | PNONE | PSOME of string list.
* Same spirit of fine grain config in log4j ?
*
* todo? how mercurial/cvs/git manage command line options ? because they
* all have a kind of DSL around arguments with some common options,
* specific options, conventions, etc.
*
*
* todo? generate the corresponding noxxx options ?
* todo? generate list of options and show their value ?
*
* todo? make it possible to set this value via a config file ?
*
*
*)
type arg_spec_full = Arg.key * Arg.spec * Arg.doc
type cmdline_options = arg_spec_full list
(* the format is a list of triples:
* (title of section * (optional) explanation of sections * options)
*)
type options_with_title = string * string * arg_spec_full list
type cmdline_sections = options_with_title list
(* ---------------------------------------------------------------------- *)
(* now I use argv as I like at the call sites to show that
* this function internally use argv.
*)
let parse_options options usage_msg argv =
let args = ref [] in
(try
Arg.parse_argv argv options (fun file -> args := file::!args) usage_msg;
args := List.rev !args;
!args
with
| Arg.Bad msg -> Printf.eprintf "%s" msg; exit 2
| Arg.Help msg -> Printf.printf "%s" msg; exit 0
)
let usage usage_msg options =
Arg.usage (Arg.align options) usage_msg
(* for coccinelle *)
(* If you don't want the -help and --help that are appended by Arg.align *)
let arg_align2 xs =
Arg.align xs +> List.rev +> drop 2 +> List.rev
let short_usage usage_msg ~short_opt =
usage usage_msg short_opt
let long_usage usage_msg ~short_opt ~long_opt =
pr usage_msg;
pr "";
let all_options_with_title =
(("main options", "", short_opt)::long_opt) in
all_options_with_title +> List.iter
(fun (title, explanations, xs) ->
pr title;
pr_xxxxxxxxxxxxxxxxx();
if explanations <> ""
then begin pr explanations; pr "" end;
arg_align2 xs +> List.iter (fun (key,action,s) ->
pr (" " ^ key ^ s)
);
pr "";
);
()
(* copy paste of Arg.parse. Don't want the default -help msg *)
let arg_parse2 l msg short_usage_fun =
let args = ref [] in
let f = (fun file -> args := file::!args) in
let l = Arg.align l in
(try begin
Arg.parse_argv Sys.argv l f msg;
args := List.rev !args;
!args
end
with
| Arg.Bad msg -> (* eprintf "%s" msg; exit 2; *)
let xs = lines msg in
(* take only head, it's where the error msg is *)
pr2 (List.hd xs);
short_usage_fun();
raise (UnixExit (2))
| Arg.Help msg -> (* printf "%s" msg; exit 0; *)
raise (Impossible 1) (* -help is specified in speclist *)
)
(* ---------------------------------------------------------------------- *)
(* kind of unit testing framework, or toplevel like functionality
* at shell command line. I realize than in fact It follows a current trend
* to have a main cmdline program where can then select different actions,
* as in cvs/hg/git where do hg <action> <arguments>, and the shell even
* use a curried syntax :)
*
*
* Not-perfect-but-basic-feels-right: an action
* spec looks like this:
*
* let actions () = [
* "-parse_taxo", " <file>",
* Common.mk_action_1_arg test_parse_taxo;
* ...
* ]
*
* Not-perfect-but-basic-feels-right because for such functionality we
* need a way to transform a string into a caml function and pass arguments
* and the preceding design does exactly that, even if then the
* functions that use this design are not so convenient to use (there
* are 2 places where we need to pass those data, in the options and in the
* main dispatcher).
*
* Also it's not too much intrusive. Still have an
* action ref variable in the main.ml and can still use the previous
* simpler way to do where the match args with in main.ml do the
* dispatch.
*
* Use like this at option place:
* (Common.options_of_actions actionref (Test_parsing_c.actions())) @
* Use like this at dispatch action place:
* | xs when List.mem !action (Common.action_list all_actions) ->
* Common.do_action !action xs all_actions
*
*)
type flag_spec = Arg.key * Arg.spec * Arg.doc
type action_spec = Arg.key * Arg.doc * action_func
and action_func = (string list -> unit)
type cmdline_actions = action_spec list
exception WrongNumberOfArguments
let options_of_actions action_ref actions =
actions +> List.map (fun (key, doc, _func) ->
(key, (Arg.Unit (fun () -> action_ref := key)), doc)
)
let (action_list: cmdline_actions -> Arg.key list) = fun xs ->
List.map (fun (a,b,c) -> a) xs
let (do_action: Arg.key -> string list (* args *) -> cmdline_actions -> unit) =
fun key args xs ->
let assoc = xs +> List.map (fun (a,b,c) -> (a,c)) in
let action_func = List.assoc key assoc in
action_func args
(* todo? if have a function with default argument ? would like a
* mk_action_0_or_1_arg ?
*)
let mk_action_0_arg f =
(function
| [] -> f ()
| _ -> raise WrongNumberOfArguments
)
let mk_action_1_arg f =
(function
| [file] -> f file
| _ -> raise WrongNumberOfArguments
)
let mk_action_2_arg f =
(function
| [file1;file2] -> f file1 file2
| _ -> raise WrongNumberOfArguments
)
let mk_action_3_arg f =
(function
| [file1;file2;file3] -> f file1 file2 file3
| _ -> raise WrongNumberOfArguments
)
let mk_action_n_arg f = f
(*###########################################################################*)
(* And now basic types *)
(*###########################################################################*)
(*****************************************************************************)
(* Bool *)
(*****************************************************************************)
let (==>) b1 b2 = if b1 then b2 else true (* could use too => *)
(* superseded by another <=> below
let (<=>) a b = if a = b then 0 else if a < b then -1 else 1
*)
let xor a b = not (a = b)
(*****************************************************************************)
(* Char *)
(*****************************************************************************)
let string_of_char c = String.make 1 c
let is_single = String.contains ",;()[]{}_`"
let is_symbol = String.contains "!@#$%&*+./<=>?\\^|:-~"
let is_space = String.contains "\n\t "
let cbetween min max c =
(int_of_char c) <= (int_of_char max) &&
(int_of_char c) >= (int_of_char min)
let is_upper = cbetween 'A' 'Z'
let is_lower = cbetween 'a' 'z'
let is_alpha c = is_upper c || is_lower c
let is_digit = cbetween '0' '9'
let string_of_chars cs = cs +> List.map (String.make 1) +> String.concat ""
(*****************************************************************************)
(* Num *)
(*****************************************************************************)
(* since 3.08, div by 0 raise Div_by_rezo, and not anymore a hardware trap :)*)
let (/!) x y = if y = 0 then (log "common.ml: div by 0"; 0) else x / y
(* now in prelude
* let rec (do_n: int -> (unit -> unit) -> unit) = fun i f ->
* if i = 0 then () else (f(); do_n (i-1) f)
*)
(* now in prelude
* let rec (foldn: ('a -> int -> 'a) -> 'a -> int -> 'a) = fun f acc i ->
* if i = 0 then acc else foldn f (f acc i) (i-1)
*)
let sum_float = List.fold_left (+.) 0.0
let sum_int = List.fold_left (+) 0
let pi = 3.14159265358979323846
let pi2 = pi /. 2.0
let pi4 = pi /. 4.0
(* 180 = pi *)
let (deg_to_rad: float -> float) = fun deg ->
(deg *. pi) /. 180.0
let clampf = function
| n when n < 0.0 -> 0.0
| n when n > 1.0 -> 1.0
| n -> n
let square x = x *. x
let rec power x n = if n = 0 then 1 else x * power x (n-1)
let between i min max = i > min && i < max
let (between_strict: int -> int -> int -> bool) = fun a b c ->
a < b && b < c
let bitrange x p = let v = power 2 p in between x (-v) v
(* descendant *)
let (prime1: int -> int option) = fun x ->
let rec prime1_aux n =
if n = 1 then None
else
if (x / n) * n = x then Some n else prime1_aux (n-1)
in if x = 1 then None else if x < 0 then failwith "negative" else prime1_aux (x-1)
(* montant, better *)
let (prime: int -> int option) = fun x ->
let rec prime_aux n =
if n = x then None
else
if (x / n) * n = x then Some n else prime_aux (n+1)
in if x = 1 then None else if x < 0 then failwith "negative" else prime_aux 2
let sum xs = List.fold_left (+) 0 xs
let product = List.fold_left ( * ) 1
let decompose x =
let rec decompose x =
if x = 1 then []
else
(match prime x with
| None -> [x]
| Some n -> n::decompose (x / n)
)
in assert (product (decompose x) = x); decompose x
let mysquare x = x * x
let sqr a = a *. a
type compare = Equal | Inf | Sup
let (<=>) a b = if a = b then Equal else if a < b then Inf else Sup
let (<==>) a b = if a = b then 0 else if a < b then -1 else 1
type uint = int
let int_of_stringchar s =
fold_left_with_index (fun acc e i -> acc + (Char.code e*(power 8 i))) 0 (List.rev (list_of_string s))
let int_of_base s base =
fold_left_with_index (fun acc e i ->
let j = Char.code e - Char.code '0' in
if j >= base then failwith "not in good base"
else acc + (j*(power base i))
)
0 (List.rev (list_of_string s))
let int_of_stringbits s = int_of_base s 2
let _ = example (int_of_stringbits "1011" = 1*8 + 1*2 + 1*1)
let int_of_octal s = int_of_base s 8
let _ = example (int_of_octal "017" = 15)
(* let int_of_hex s = int_of_base s 16, NONONONO cos 'A' - '0' does not give 10 !! *)
let int_of_all s =
if String.length s >= 2 && (String.get s 0 = '0') && is_digit (String.get s 1)
then int_of_octal s else int_of_string s
let (+=) ref v = ref := !ref + v
let (-=) ref v = ref := !ref - v
let pourcent x total =
(x * 100) / total
let pourcent_float x total =
((float_of_int x) *. 100.0) /. (float_of_int total)
let pourcent_float_of_floats x total =
(x *. 100.0) /. total
let pourcent_good_bad good bad =
(good * 100) / (good + bad)
let pourcent_good_bad_float good bad =
(float_of_int good *. 100.0) /. (float_of_int good +. float_of_int bad)
type 'a max_with_elem = int ref * 'a ref
let update_max_with_elem (aref, aelem) ~is_better (newv, newelem) =
if is_better newv aref
then begin
aref := newv;
aelem := newelem;
end
(*****************************************************************************)
(* Numeric/overloading *)
(*****************************************************************************)
type 'a numdict =
NumDict of (('a-> 'a -> 'a) *
('a-> 'a -> 'a) *
('a-> 'a -> 'a) *
('a -> 'a));;
let add (NumDict(a, m, d, n)) = a;;
let mul (NumDict(a, m, d, n)) = m;;
let div (NumDict(a, m, d, n)) = d;;
let neg (NumDict(a, m, d, n)) = n;;
let numd_int = NumDict(( + ),( * ),( / ),( ~- ));;
let numd_float = NumDict(( +. ),( *. ), ( /. ),( ~-. ));;
let testd dict n =
let ( * ) x y = mul dict x y in
let ( / ) x y = div dict x y in
let ( + ) x y = add dict x y in
(* Now you can define all sorts of things in terms of *, /, + *)
let f num = (num * num) / (num + num) in
f n;;
module ArithFloatInfix = struct
let (+..) = (+)
let (-..) = (-)
let (/..) = (/)
let ( *.. ) = ( * )
let (+) = (+.)
let (-) = (-.)
let (/) = (/.)
let ( * ) = ( *. )
let (+=) ref v = ref := !ref + v
let (-=) ref v = ref := !ref - v
end
(*****************************************************************************)
(* Tuples *)
(*****************************************************************************)
type 'a pair = 'a * 'a
type 'a triple = 'a * 'a * 'a
let fst3 (x,_,_) = x
let snd3 (_,y,_) = y
let thd3 (_,_,z) = z
let sndthd (a,b,c) = (b,c)
let map_fst f (x, y) = f x, y
let map_snd f (x, y) = x, f y
let pair f (x,y) = (f x, f y)
(* for my ocamlbeautify script *)
let snd = snd
let fst = fst
let double a = a,a
let swap (x,y) = (y,x)
let tuple_of_list1 = function [a] -> a | _ -> failwith "tuple_of_list1"
let tuple_of_list2 = function [a;b] -> a,b | _ -> failwith "tuple_of_list2"
let tuple_of_list3 = function [a;b;c] -> a,b,c | _ -> failwith "tuple_of_list3"
let tuple_of_list4 = function [a;b;c;d] -> a,b,c,d | _ -> failwith "tuple_of_list4"
let tuple_of_list5 = function [a;b;c;d;e] -> a,b,c,d,e | _ -> failwith "tuple_of_list5"
let tuple_of_list6 = function [a;b;c;d;e;f] -> a,b,c,d,e,f | _ -> failwith "tuple_of_list6"
(*****************************************************************************)
(* Maybe *)
(*****************************************************************************)
(* type 'a maybe = Just of 'a | None *)
type ('a,'b) either = Left of 'a | Right of 'b
(* with sexp *)
type ('a, 'b, 'c) either3 = Left3 of 'a | Middle3 of 'b | Right3 of 'c
(* with sexp *)
let just = function
| (Some x) -> x
| _ -> failwith "just: pb"
let some = just
let fmap f = function
| None -> None
| Some x -> Some (f x)
let map_option = fmap
let equal_option sub_equal o o' =
match o, o' with
None, None -> true
| Some x, Some x' -> sub_equal x x'
| None, Some _
| Some _, None -> false
let default d f = function
None -> d
| Some x -> f x
let do_option f = default () f
let optionise f =
try Some (f ()) with Not_found -> None
(* pixel *)
let some_or = function
| None -> id
| Some e -> fun _ -> e
let partition_either f l =
let rec part_either left right = function
| [] -> (List.rev left, List.rev right)
| x :: l ->
(match f x with
| Left e -> part_either (e :: left) right l
| Right e -> part_either left (e :: right) l) in
part_either [] [] l
let partition_either3 f l =
let rec part_either left middle right = function
| [] -> (List.rev left, List.rev middle, List.rev right)
| x :: l ->
(match f x with
| Left3 e -> part_either (e :: left) middle right l
| Middle3 e -> part_either left (e :: middle) right l
| Right3 e -> part_either left middle (e :: right) l) in
part_either [] [] [] l
(* pixel *)
let rec filter_some = function
| [] -> []
| None :: l -> filter_some l
| Some e :: l -> e :: filter_some l
let map_filter f xs = filter_some (List.map f xs)
(* avoid recursion *)
let tail_map_filter f xs =
List.rev
(List.fold_left
(function prev ->
function cur ->
match f cur with
Some x -> x :: prev
| None -> prev)
[] xs)
let rec find_some p = function
| [] -> raise Not_found
| x :: l ->
match p x with
| Some v -> v
| None -> find_some p l
(* same
let map_find f xs =
xs +> List.map f +> List.find (function Some x -> true | None -> false)
+> (function Some x -> x | None -> raise Impossible)
*)
let list_to_single_or_exn xs =
match xs with
| [] -> raise Not_found
| x::y::zs -> raise Multi_found
| [x] -> x
(*****************************************************************************)
(* TriBool *)
(*****************************************************************************)
type bool3 = True3 | False3 | TrueFalsePb3 of string
(*****************************************************************************)
(* Regexp, can also use PCRE *)
(*****************************************************************************)
(* Note: OCaml Str regexps are different from Perl regexp:
* - The OCaml regexp must match the entire way.
* So "testBee" =~ "Bee" is wrong
* but "testBee" =~ ".*Bee" is right
* Can have the perl behavior if use Str.search_forward instead of
* Str.string_match.
* - Must add some additional \ in front of some special char. So use
* \\( \\| and also \\b
* - It does not always handle newlines very well.
* - \\b does consider _ but not numbers in indentifiers.
*
* Note: PCRE regexps are then different from Str regexps ...
* - just use '(' ')' for grouping, not '\\)'
* - still need \\b for word boundary, but this time it works ...
* so can match some word that have some digits in them.
*
*)
(* put before String section because String section use some =~ *)
(* let gsubst = global_replace *)
let (==~) s re = Str.string_match re s 0
let _memo_compiled_regexp = Hashtbl.create 101
let candidate_match_func s re =
(* old: Str.string_match (Str.regexp re) s 0 *)
let compile_re =
memoized _memo_compiled_regexp re (fun () -> Str.regexp re)
in
Str.string_match compile_re s 0
let match_func s re =
profile_code "Common.=~" (fun () -> candidate_match_func s re)
let (=~) s re =
match_func s re
let string_match_substring re s =
try let _i = Str.search_forward re s 0 in true
with Not_found -> false
let _ =
example(string_match_substring (Str.regexp "foo") "a foo b")
let _ =
example(string_match_substring (Str.regexp "\\bfoo\\b") "a foo b")
let _ =
example(string_match_substring (Str.regexp "\\bfoo\\b") "a\n\nfoo b")
let _ =
example(string_match_substring (Str.regexp "\\bfoo_bar\\b") "a\n\nfoo_bar b")
(* does not work :(
let _ =
example(string_match_substring (Str.regexp "\\bfoo_bar2\\b") "a\n\nfoo_bar2 b")
*)
let (regexp_match: string -> string -> string) = fun s re ->
assert(s =~ re);
Str.matched_group 1 s
(* beurk, side effect code, but hey, it is convenient *)
(* now in prelude
* let (matched: int -> string -> string) = fun i s ->
* Str.matched_group i s
*
* let matched1 = fun s -> matched 1 s
* let matched2 = fun s -> (matched 1 s, matched 2 s)
* let matched3 = fun s -> (matched 1 s, matched 2 s, matched 3 s)
* let matched4 = fun s -> (matched 1 s, matched 2 s, matched 3 s, matched 4 s)
* let matched5 = fun s -> (matched 1 s, matched 2 s, matched 3 s, matched 4 s, matched 5 s)
* let matched6 = fun s -> (matched 1 s, matched 2 s, matched 3 s, matched 4 s, matched 5 s, matched 6 s)
*)
let split sep s = Str.split (Str.regexp sep) s
let _ = example ((split "/" "") = [])
(*
let rec join str = function
| [] -> ""
| [x] -> x
| x::xs -> x ^ str ^ (join str xs)
*)
let (split_list_regexp: string -> string list -> (string * string list) list) =
fun re xs ->
let rec split_lr_aux (heading, accu) = function
| [] -> [(heading, List.rev accu)]
| x::xs ->
if x =~ re
then (heading, List.rev accu)::split_lr_aux (x, []) xs
else split_lr_aux (heading, x::accu) xs
in
split_lr_aux ("__noheading__", []) xs
+> (fun xs -> if List.hd xs = ("__noheading__",[]) then List.tl xs else xs)
let regexp_alpha = Str.regexp
"^[a-zA-Z_][A-Za-z_0-9]*$"
let regexp_int = Str.regexp
"^[0-9]+$"
let all_match re s =
let regexp = Str.regexp re in
let res = ref [] in
let _ = Str.global_substitute regexp (fun _s ->
let substr = Str.matched_string s in
assert(substr ==~ regexp); (* @Effect: also use it's side effect *)
let paren_matched = matched1 substr in
push2 paren_matched res;
"" (* @Dummy *)
) s in
List.rev !res
let _ = example (all_match "\\(@[A-Za-z]+\\)" "ca va @Et toi @Comment"
= ["@Et";"@Comment"])
let global_replace_regexp re f_on_substr s =
let regexp = Str.regexp re in
Str.global_substitute regexp (fun _wholestr ->
let substr = Str.matched_string s in
f_on_substr substr
) s
let regexp_word_str =
"\\([a-zA-Z_][A-Za-z_0-9]*\\)"
let regexp_word = Str.regexp regexp_word_str
let regular_words s =
all_match regexp_word_str s
let contain_regular_word s =
let xs = regular_words s in
List.length xs >= 1
(*****************************************************************************)
(* Strings *)
(*****************************************************************************)
(* strings take space in memory. Better when can share the space used by
similar strings *)
let _shareds = Hashtbl.create 100
let (shared_string: string -> string) = fun s ->
try Hashtbl.find _shareds s
with Not_found -> (Hashtbl.add _shareds s s; s)
let chop = function
| "" -> ""
| s -> String.sub s 0 (String.length s - 1)
let chop_dirsymbol = function
| s when s =~ "\\(.*\\)/$" -> matched1 s
| s -> s
let (<!!>) s (i,j) =
String.sub s i (if j < 0 then String.length s - i + j + 1 else j - i)
(* let _ = example ( "tototati"<!!>(3,-2) = "otat" ) *)
let (<!>) s i = String.get s i
(* pixel *)
let quote s = "\"" ^ s ^ "\""
(* easier to have this to be passed as hof, because ocaml don't have
* haskell "section" operators
*)
let is_blank_string s =
s =~ "^\\([ \t]\\)*$"
(* src: lablgtk2/examples/entrycompletion.ml *)
let is_string_prefix s1 s2 =
(String.length s1 <= String.length s2) &&
(String.sub s2 0 (String.length s1) = s1)
let plural i s =
if i = 1
then Printf.sprintf "%d %s" i s
else Printf.sprintf "%d %ss" i s
let showCodeHex xs = List.iter (fun i -> Printf.printf "%02x" i) xs
let take_string n s =
String.sub s 0 (n-1)
let take_string_safe n s =
if n > String.length s
then s
else take_string n s
(* used by LFS *)
let size_mo_ko i =
let ko = (i / 1024) mod 1024 in
let mo = (i / 1024) / 1024 in
(if mo > 0
then Printf.sprintf "%dMo%dKo" mo ko
else Printf.sprintf "%dKo" ko
)
let size_ko i =
let ko = i / 1024 in
Printf.sprintf "%dKo" ko
(* done in summer 2007 for julia
* Reference: P216 of gusfeld book
* For two strings S1 and S2, D(i,j) is defined to be the edit distance of S1[1..i] to S2[1..j]
* So edit distance of S1 (of length n) and S2 (of length m) is D(n,m)
*
* Dynamic programming technique
* base:
* D(i,0) = i for all i (cos to go from S1[1..i] to 0 characters of S2 you have to delete all characters from S1[1..i]
* D(0,j) = j for all j (cos j characters must be inserted)
* recurrence:
* D(i,j) = min([D(i-1, j)+1, D(i, j - 1 + 1), D(i-1, j-1) + t(i,j)])
* where t(i,j) is equal to 1 if S1(i) != S2(j) and 0 if equal
* intuition = there is 4 possible action = deletion, insertion, substitution, or match
* so Lemma =
*
* D(i,j) must be one of the three
* D(i, j-1) + 1
* D(i-1, j)+1
* D(i-1, j-1) +
* t(i,j)
*
*
*)
let matrix_distance s1 s2 =
let n = (String.length s1) in
let m = (String.length s2) in
let mat = Array.make_matrix (n+1) (m+1) 0 in
let t i j =
if String.get s1 (i-1) = String.get s2 (j-1)
then 0
else 1
in
let min3 a b c = min (min a b) c in
begin
for i = 0 to n do
mat.(i).(0) <- i
done;
for j = 0 to m do
mat.(0).(j) <- j;
done;
for i = 1 to n do
for j = 1 to m do
mat.(i).(j) <-
min3 (mat.(i).(j-1) + 1) (mat.(i-1).(j) + 1) (mat.(i-1).(j-1) + t i j)
done
done;
mat
end
let edit_distance s1 s2 =
(matrix_distance s1 s2).(String.length s1).(String.length s2)
let test = edit_distance "vintner" "writers"
let _ = assert (edit_distance "winter" "winter" = 0)
let _ = assert (edit_distance "vintner" "writers" = 5)
(*****************************************************************************)
(* Filenames *)
(*****************************************************************************)
type filename = string (* TODO could check that exist :) type sux *)
(* with sexp *)
type dirname = string (* TODO could check that exist :) type sux *)
(* with sexp *)
module BasicType = struct
type filename = string
end
let (filesuffix: filename -> string) = fun s ->
(try regexp_match s ".+\\.\\([a-zA-Z0-9_]+\\)$" with _ -> "NOEXT")
let (fileprefix: filename -> string) = fun s ->
(try regexp_match s "\\(.+\\)\\.\\([a-zA-Z0-9_]+\\)?$" with _ -> s)
let _ = example (filesuffix "toto.c" = "c")
let _ = example (fileprefix "toto.c" = "toto")
(*
assert (s = fileprefix s ^ filesuffix s)
let withoutExtension s = global_replace (regexp "\\..*$") "" s
let () = example "without"
(withoutExtension "toto.s.toto" = "toto")
*)
let adjust_ext_if_needed filename ext =
if String.get ext 0 <> '.'
then failwith "I need an extension such as .c not just c";
if not (filename =~ (".*\\" ^ ext))
then
if Sys.file_exists filename
then filename
else
begin
pr2 ("Warning: extending nonstandard filename: "^filename);
filename ^ ext
end
else filename
let db_of_filename file =
Filename.dirname file, Filename.basename file
let filename_of_db (basedir, file) =
Filename.concat basedir file
let dbe_of_filename file =
(* raise Invalid_argument if no ext, so safe to use later the unsafe
* fileprefix and filesuffix functions.
*)
ignore(Filename.chop_extension file);
Filename.dirname file,
Filename.basename file +> fileprefix,
Filename.basename file +> filesuffix
let filename_of_dbe (dir, base, ext) =
Filename.concat dir (base ^ "." ^ ext)
let dbe_of_filename_safe file =
try Left (dbe_of_filename file)
with Invalid_argument _ ->
Right (Filename.dirname file, Filename.basename file)
let dbe_of_filename_nodot file =
let (d,b,e) = dbe_of_filename file in
let d = if d = "." then "" else d in
d,b,e
let replace_ext file oldext newext =
let (d,b,e) = dbe_of_filename file in
assert(e = oldext);
filename_of_dbe (d,b,newext)
let normalize_path file =
let (dir, filename) = Filename.dirname file, Filename.basename file in
let xs = split "/" dir in
let rec aux acc = function
| [] -> List.rev acc
| x::xs ->
(match x with
| "." -> aux acc xs
| ".." -> aux (List.tl acc) xs
| x -> aux (x::acc) xs
)
in
let xs' = aux [] xs in
Filename.concat (String.concat "/" xs') filename
(*
let relative_to_absolute s =
if Filename.is_relative s
then
begin
let old = Sys.getcwd () in
Sys.chdir s;
let current = Sys.getcwd () in
Sys.chdir old;
s
end
else s
*)
let relative_to_absolute s =
if Filename.is_relative s
then Sys.getcwd () ^ "/" ^ s
else s
let is_relative s = Filename.is_relative s
let is_absolute s = not (is_relative s)
(* @Pre: prj_path must not contain regexp symbol *)
let filename_without_leading_path prj_path s =
let prj_path = chop_dirsymbol prj_path in
if s =~ ("^" ^ prj_path ^ "/\\(.*\\)$")
then matched1 s
else
failwith
(spf "can't find filename_without_project_path: %s %s" prj_path s)
let rec join_path dir path =
match path with
[] -> assert false
| hd :: tl ->
if hd = Filename.current_dir_name then
join_path dir tl
else if hd = Filename.parent_dir_name then
join_path (Filename.dirname dir) tl
else
List.fold_left Filename.concat dir path
let rec path_of_filename accu filename =
let accu = Filename.basename filename :: accu in
let dirname = Filename.dirname filename in
if dirname = filename then
accu
else
path_of_filename accu dirname
let path_of_filename filename = path_of_filename [] filename
let join_filename dir filename =
if Filename.is_relative filename then
join_path dir (path_of_filename filename)
else
filename
let rec resolve_symlink filename =
match
try Some (Unix.readlink filename)
with _ -> None
with
Some realpath ->
let dirname = Filename.dirname filename in
resolve_symlink (join_filename dirname realpath)
| None -> filename
(*****************************************************************************)
(* i18n *)
(*****************************************************************************)
type langage =
| English
| Francais
| Deutsch
(* gettext ? *)
(*****************************************************************************)
(* Dates *)
(*****************************************************************************)
(* maybe I should use ocamlcalendar, but I don't like all those functors ... *)
type month =
| Jan | Feb | Mar | Apr | May | Jun
| Jul | Aug | Sep | Oct | Nov | Dec
type year = Year of int
type day = Day of int
type wday = Sunday | Monday | Tuesday | Wednesday | Thursday | Friday | Saturday
type date_dmy = DMY of day * month * year
type hour = Hour of int
type minute = Min of int
type second = Sec of int
type time_hms = HMS of hour * minute * second
type full_date = date_dmy * time_hms
(* intervalle *)
type days = Days of int
type time_dmy = TimeDMY of day * month * year
type float_time = float
let check_date_dmy (DMY (day, month, year)) =
raise Todo
let check_time_dmy (TimeDMY (day, month, year)) =
raise Todo
let check_time_hms (HMS (x,y,a)) =
raise Todo
(* ---------------------------------------------------------------------- *)
(* older code *)
let int_to_month i =
assert (i <= 12 && i >= 1);
match i with
| 1 -> "Jan"
| 2 -> "Feb"
| 3 -> "Mar"
| 4 -> "Apr"
| 5 -> "May"
| 6 -> "Jun"
| 7 -> "Jul"
| 8 -> "Aug"
| 9 -> "Sep"
| 10 -> "Oct"
| 11 -> "Nov"
| 12 -> "Dec"
(*
| 1 -> "January"
| 2 -> "February"
| 3 -> "March"
| 4 -> "April"
| 5 -> "May"
| 6 -> "June"
| 7 -> "July"
| 8 -> "August"
| 9 -> "September"
| 10 -> "October"
| 11 -> "November"
| 12 -> "December"
*)
| _ -> raise (Impossible 2)
let month_info = [
1 , Jan, "Jan", "January", 31;
2 , Feb, "Feb", "February", 28;
3 , Mar, "Mar", "March", 31;
4 , Apr, "Apr", "April", 30;
5 , May, "May", "May", 31;
6 , Jun, "Jun", "June", 30;
7 , Jul, "Jul", "July", 31;
8 , Aug, "Aug", "August", 31;
9 , Sep, "Sep", "September", 30;
10 , Oct, "Oct", "October", 31;
11 , Nov, "Nov", "November", 30;
12 , Dec, "Dec", "December", 31;
]
let week_day_info = [
0 , Sunday , "Sun" , "Dim" , "Sunday";
1 , Monday , "Mon" , "Lun" , "Monday";
2 , Tuesday , "Tue" , "Mar" , "Tuesday";
3 , Wednesday , "Wed" , "Mer" , "Wednesday";
4 , Thursday , "Thu" ,"Jeu" ,"Thursday";
5 , Friday , "Fri" , "Ven" , "Friday";
6 , Saturday , "Sat" ,"Sam" , "Saturday";
]
let i_to_month_h =
month_info +> List.map (fun (i,month,monthstr,mlong,days) -> i, month)
let s_to_month_h =
month_info +> List.map (fun (i,month,monthstr,mlong,days) -> monthstr, month)
let slong_to_month_h =
month_info +> List.map (fun (i,month,monthstr,mlong,days) -> mlong, month)
let month_to_s_h =
month_info +> List.map (fun (i,month,monthstr,mlong,days) -> month, monthstr)
let month_to_i_h =
month_info +> List.map (fun (i,month,monthstr,mlong,days) -> month, i)
let i_to_wday_h =
week_day_info +> List.map (fun (i,day,dayen,dayfr,daylong) -> i, day)
let wday_to_en_h =
week_day_info +> List.map (fun (i,day,dayen,dayfr,daylong) -> day, dayen)
let wday_to_fr_h =
week_day_info +> List.map (fun (i,day,dayen,dayfr,daylong) -> day, dayfr)
let month_of_string s =
List.assoc s s_to_month_h
let month_of_string_long s =
List.assoc s slong_to_month_h
let string_of_month s =
List.assoc s month_to_s_h
let month_of_int i =
List.assoc i i_to_month_h
let int_of_month m =
List.assoc m month_to_i_h
let wday_of_int i =
List.assoc i i_to_wday_h
let string_en_of_wday wday =
List.assoc wday wday_to_en_h
let string_fr_of_wday wday =
List.assoc wday wday_to_fr_h
(* ---------------------------------------------------------------------- *)
let wday_str_of_int ~langage i =
let wday = wday_of_int i in
match langage with
| English -> string_en_of_wday wday
| Francais -> string_fr_of_wday wday
| Deutsch -> raise Todo
let string_of_date_dmy (DMY (Day n, month, Year y)) =
(spf "%02d-%s-%d" n (string_of_month month) y)
let string_of_unix_time ?(langage=English) tm =
let y = tm.Unix.tm_year + 1900 in
let mon = string_of_month (month_of_int (tm.Unix.tm_mon + 1)) in
let d = tm.Unix.tm_mday in
let h = tm.Unix.tm_hour in
let min = tm.Unix.tm_min in
let s = tm.Unix.tm_sec in
let wday = wday_str_of_int ~langage tm.Unix.tm_wday in
spf "%02d/%3s/%04d (%s) %02d:%02d:%02d" d mon y wday h min s
(* ex: 21/Jul/2008 (Lun) 21:25:12 *)
let unix_time_of_string s =
if s =~
("\\([0-9][0-9]\\)/\\(...\\)/\\([0-9][0-9][0-9][0-9]\\) " ^
"\\(.*\\) \\([0-9][0-9]\\):\\([0-9][0-9]\\):\\([0-9][0-9]\\)")
then
let (sday, smonth, syear, _sday, shour, smin, ssec) = matched7 s in
let y = int_of_string syear - 1900 in
let mon =
smonth +> month_of_string +> int_of_month +> (fun i -> i -1)
in
let tm = Unix.localtime (Unix.time ()) in
{ tm with
Unix.tm_year = y;
Unix.tm_mon = mon;
Unix.tm_mday = int_of_string sday;
Unix.tm_hour = int_of_string shour;
Unix.tm_min = int_of_string smin;
Unix.tm_sec = int_of_string ssec;
}
else failwith ("unix_time_of_string: " ^ s)
let short_string_of_unix_time ?(langage=English) tm =
let y = tm.Unix.tm_year + 1900 in
let mon = string_of_month (month_of_int (tm.Unix.tm_mon + 1)) in
let d = tm.Unix.tm_mday in
let _h = tm.Unix.tm_hour in
let _min = tm.Unix.tm_min in
let _s = tm.Unix.tm_sec in
let wday = wday_str_of_int ~langage tm.Unix.tm_wday in
spf "%02d/%3s/%04d (%s)" d mon y wday
let string_of_unix_time_lfs time =
spf "%02d--%s--%d"
time.Unix.tm_mday
(int_to_month (time.Unix.tm_mon + 1))
(time.Unix.tm_year + 1900)
(* ---------------------------------------------------------------------- *)
let string_of_floattime ?langage i =
let tm = Unix.localtime i in
string_of_unix_time ?langage tm
let short_string_of_floattime ?langage i =
let tm = Unix.localtime i in
short_string_of_unix_time ?langage tm
let floattime_of_string s =
let tm = unix_time_of_string s in
let (sec,_tm) = Unix.mktime tm in
sec
(* ---------------------------------------------------------------------- *)
let days_in_week_of_day day =
let tm = Unix.localtime day in
let wday = tm.Unix.tm_wday in
let wday = if wday = 0 then 6 else wday -1 in
let mday = tm.Unix.tm_mday in
let start_d = mday - wday in
let end_d = mday + (6 - wday) in
enum start_d end_d +> List.map (fun mday ->
Unix.mktime {tm with Unix.tm_mday = mday} +> fst
)
let first_day_in_week_of_day day =
List.hd (days_in_week_of_day day)
let last_day_in_week_of_day day =
last (days_in_week_of_day day)
(* ---------------------------------------------------------------------- *)
(* (modified) copy paste from ocamlcalendar/src/date.ml *)
let days_month =
[| 0; 31; 59; 90; 120; 151; 181; 212; 243; 273; 304; 334(*; 365*) |]
let rough_days_since_jesus (DMY (Day nday, month, Year year)) =
let n =
nday +
(days_month.(int_of_month month -1)) +
year * 365
in
Days n
let is_more_recent d1 d2 =
let (Days n1) = rough_days_since_jesus d1 in
let (Days n2) = rough_days_since_jesus d2 in
(n1 > n2)
let max_dmy d1 d2 =
if is_more_recent d1 d2
then d1
else d2
let min_dmy d1 d2 =
if is_more_recent d1 d2
then d2
else d1
let maximum_dmy ds =
foldl1 max_dmy ds
let minimum_dmy ds =
foldl1 min_dmy ds
let rough_days_between_dates d1 d2 =
let (Days n1) = rough_days_since_jesus d1 in
let (Days n2) = rough_days_since_jesus d2 in
Days (n2 - n1)
let _ = example
(rough_days_between_dates
(DMY (Day 7, Jan, Year 1977))
(DMY (Day 13, Jan, Year 1977)) = Days 6)
(* because of rough days, it is a bit buggy, here it should return 1 *)
(*
let _ = assert_equal
(rough_days_between_dates
(DMY (Day 29, Feb, Year 1977))
(DMY (Day 1, Mar , Year 1977)))
(Days 1)
*)
(* from julia, in gitsort.ml *)
(*
let antimonths =
[(1,31);(2,28);(3,31);(4,30);(5,31); (6,6);(7,7);(8,31);(9,30);(10,31);
(11,30);(12,31);(0,31)]
let normalize (year,month,day,hour,minute,second) =
if hour < 0
then
let (day,hour) = (day - 1,hour + 24) in
if day = 0
then
let month = month - 1 in
let day = List.assoc month antimonths in
let day =
if month = 2 && year / 4 * 4 = year && not (year / 100 * 100 = year)
then 29
else day in
if month = 0
then (year-1,12,day,hour,minute,second)
else (year,month,day,hour,minute,second)
else (year,month,day,hour,minute,second)
else (year,month,day,hour,minute,second)
*)
let mk_date_dmy day month year =
let date = DMY (Day day, month_of_int month, Year year) in
(* check_date_dmy date *)
date
(* ---------------------------------------------------------------------- *)
(* conversion to unix.tm *)
let dmy_to_unixtime (DMY (Day n, month, Year year)) =
let tm = {
Unix.tm_sec = 0; (* Seconds 0..60 *)
tm_min = 0; (* Minutes 0..59 *)
tm_hour = 12; (* Hours 0..23 *)
tm_mday = n; (* Day of month 1..31 *)
tm_mon = (int_of_month month -1); (* Month of year 0..11 *)
tm_year = year - 1900; (* Year - 1900 *)
tm_wday = 0; (* Day of week (Sunday is 0) *)
tm_yday = 0; (* Day of year 0..365 *)
tm_isdst = false; (* Daylight time savings in effect *)
} in
Unix.mktime tm
let unixtime_to_dmy tm =
let n = tm.Unix.tm_mday in
let month = month_of_int (tm.Unix.tm_mon + 1) in
let year = tm.Unix.tm_year + 1900 in
DMY (Day n, month, Year year)
let unixtime_to_floattime tm =
Unix.mktime tm +> fst
let floattime_to_unixtime sec =
Unix.localtime sec
let sec_to_days sec =
let minfactor = 60 in
let hourfactor = 60 * 60 in
let dayfactor = 60 * 60 * 24 in
let days = sec / dayfactor in
let hours = (sec mod dayfactor) / hourfactor in
let mins = (sec mod hourfactor) / minfactor in
let sec = (sec mod 60) in
(* old: Printf.sprintf "%d days, %d hours, %d minutes" days hours mins *)
(if days > 0 then plural days "day" ^ " " else "") ^
(if hours > 0 then plural hours "hour" ^ " " else "") ^
(if mins > 0 then plural mins "min" ^ " " else "") ^
(spf "%dsec" sec)
let sec_to_hours sec =
let minfactor = 60 in
let hourfactor = 60 * 60 in
let hours = sec / hourfactor in
let mins = (sec mod hourfactor) / minfactor in
let sec = (sec mod 60) in
(* old: Printf.sprintf "%d days, %d hours, %d minutes" days hours mins *)
(if hours > 0 then plural hours "hour" ^ " " else "") ^
(if mins > 0 then plural mins "min" ^ " " else "") ^
(spf "%dsec" sec)
let test_date_1 () =
let date = DMY (Day 17, Sep, Year 1991) in
let float, tm = dmy_to_unixtime date in
pr2 (spf "date: %.0f" float);
()
(* src: ferre in logfun/.../date.ml *)
let day_secs : float = 86400.
let today : unit -> float = fun () -> (Unix.time () )
let yesterday : unit -> float = fun () -> (Unix.time () -. day_secs)
let tomorrow : unit -> float = fun () -> (Unix.time () +. day_secs)
let lastweek : unit -> float = fun () -> (Unix.time () -. (7.0 *. day_secs))
let lastmonth : unit -> float = fun () -> (Unix.time () -. (30.0 *. day_secs))
let week_before : float_time -> float_time = fun d ->
(d -. (7.0 *. day_secs))
let month_before : float_time -> float_time = fun d ->
(d -. (30.0 *. day_secs))
let week_after : float_time -> float_time = fun d ->
(d +. (7.0 *. day_secs))
let this_year() =
let time = Unix.gmtime (Unix.time()) in
time.Unix.tm_year + 1900
(*****************************************************************************)
(* Lines/words/strings *)
(*****************************************************************************)
(* now in prelude:
* let (list_of_string: string -> char list) = fun s ->
* (enum 0 ((String.length s) - 1) +> List.map (String.get s))
*)
let _ = example (list_of_string "abcd" = ['a';'b';'c';'d'])
(*
let rec (list_of_stream: ('a Stream.t) -> 'a list) =
parser
| [< 'c ; stream >] -> c :: list_of_stream stream
| [<>] -> []
let (list_of_string: string -> char list) =
Stream.of_string $ list_of_stream
*)
(* now in prelude:
* let (lines: string -> string list) = fun s -> ...
*)
let (lines_with_nl: string -> string list) = fun s ->
let rec lines_aux = function
| [] -> []
| [x] -> if x = "" then [] else [x ^ "\n"] (* old: [x] *)
| x::xs ->
let e = x ^ "\n" in
e::lines_aux xs
in
(Str.split_delim (Str.regexp "\n") s) +> lines_aux
(* in fact better make it return always complete lines, simplify *)
(* Str.split, but lines "\n1\n2\n" don't return the \n and forget the first \n => split_delim better than split *)
(* +> List.map (fun s -> s ^ "\n") but add an \n even at the end => lines_aux *)
(* old: slow
let chars = list_of_string s in
chars +> List.fold_left (fun (acc, lines) char ->
let newacc = acc ^ (String.make 1 char) in
if char = '\n'
then ("", newacc::lines)
else (newacc, lines)
) ("", [])
+> (fun (s, lines) -> List.rev (s::lines))
*)
(* CHECK: unlines (lines x) = x *)
let (unlines: string list -> string) = fun s ->
(String.concat "\n" s) ^ "\n"
let (words: string -> string list) = fun s ->
Str.split (Str.regexp "[ \t()\";]+") s
let (unwords: string list -> string) = fun s ->
String.concat "" s
let (split_space: string -> string list) = fun s ->
Str.split (Str.regexp "[ \t\n]+") s
(* todo opti ? *)
let nblines s =
lines s +> List.length
let _ = example (nblines "" = 0)
let _ = example (nblines "toto" = 1)
let _ = example (nblines "toto\n" = 1)
let _ = example (nblines "toto\ntata" = 2)
let _ = example (nblines "toto\ntata\n" = 2)
(*****************************************************************************)
(* Process/Files *)
(*****************************************************************************)
let cat_orig file =
let chan = open_in file in
let rec cat_orig_aux () =
try
(* cannot do input_line chan::aux() cos ocaml eval from right to left ! *)
let l = input_line chan in
l :: cat_orig_aux ()
with End_of_file -> [] in
cat_orig_aux()
(* tail recursive efficient version *)
let cat file =
let chan = open_in file in
let rec cat_aux acc () =
(* cannot do input_line chan::aux() cos ocaml eval from right to left ! *)
let (b, l) = try (true, input_line chan) with End_of_file -> (false, "") in
if b
then cat_aux (l::acc) ()
else acc
in
cat_aux [] () +> List.rev +> (fun x -> close_in chan; x)
let cat_array file =
(""::cat file) +> Array.of_list
let interpolate str =
begin
command2 ("printf \"%s\\n\" " ^ str ^ ">/tmp/caml");
cat "/tmp/caml"
end
(* could do a print_string but printf don't like print_string *)
let echo s = Printf.printf "%s" s; flush stdout; s
let sleep_little () =
(*old: *)
Unix.sleep 1
(*ignore(Sys.command ("usleep " ^ !_sleep_time))*)
(* now in prelude:
* let command2 s = ignore(Sys.command s)
*)
let do_in_fork f =
let pid = Unix.fork () in
if pid = 0
then
begin
(* Unix.setsid(); *)
Sys.set_signal Sys.sigint (Sys.Signal_handle (fun _ ->
pr2 "being killed";
Unix.kill 0 Sys.sigkill;
));
f();
exit 0;
end
else pid
let process_output_to_list2 = fun command ->
let chan = Unix.open_process_in command in
let res = ref ([] : string list) in
let rec process_otl_aux () =
let e = input_line chan in
res := e::!res;
process_otl_aux() in
try process_otl_aux ()
with End_of_file ->
let stat = Unix.close_process_in chan in (List.rev !res,stat)
let cmd_to_list command =
let (l,_) = process_output_to_list2 command in l
let process_output_to_list = cmd_to_list
let cmd_to_list_and_status = process_output_to_list2
let file_to_stdout file =
let i = open_in file in
let rec loop _ =
Printf.printf "%s\n" (input_line i); loop() in
try loop() with End_of_file -> close_in i
let file_to_stderr file =
let i = open_in file in
let rec loop _ =
Printf.eprintf "%s\n" (input_line i); loop() in
try loop() with End_of_file -> close_in i
(* now in prelude:
* let command2 s = ignore(Sys.command s)
*)
let _batch_mode = ref false
let command2_y_or_no cmd =
if !_batch_mode then begin command2 cmd; true end
else begin
pr2 (cmd ^ " [y/n] ?");
match read_line () with
| "y" | "yes" | "Y" -> command2 cmd; true
| "n" | "no" | "N" -> false
| _ -> failwith "answer by yes or no"
end
let command2_y_or_no_exit_if_no cmd =
let res = command2_y_or_no cmd in
if res
then ()
else raise (UnixExit (1))
let mkdir ?(mode=0o770) file =
Unix.mkdir file mode
let read_file_orig file = cat file +> unlines
let write_file ~file s =
let chan = open_out file in
(output_string chan s; close_out chan)
let filesize file =
(Unix.stat file).Unix.st_size
let filemtime file =
(Unix.stat file).Unix.st_mtime
(* opti? use wc -l ? *)
let nblines_file file =
cat file +> List.length
let lfile_exists filename =
try
(match (Unix.lstat filename).Unix.st_kind with
| (Unix.S_REG | Unix.S_LNK) -> true
| _ -> false
)
with
Unix.Unix_error (Unix.ENOENT, _, _) -> false
| Unix.Unix_error (Unix.ENOTDIR, _, _) -> false
| Unix.Unix_error (error, _, fl) ->
failwith
(Printf.sprintf "unexpected error %s for file %s"
(Unix.error_message error) fl)
let is_directory file =
(Unix.stat file).Unix.st_kind = Unix.S_DIR
(* src: from chailloux et al book *)
let capsule_unix f args =
try (f args)
with Unix.Unix_error (e, fm, argm) ->
log (Printf.sprintf "exn Unix_error: %s %s %s\n" (Unix.error_message e) fm argm)
let (readdir_to_kind_list: string -> Unix.file_kind -> string list) =
fun path kind ->
Sys.readdir path
+> Array.to_list
+> List.filter (fun s ->
try
let stat = Unix.lstat (path ^ "/" ^ s) in
stat.Unix.st_kind = kind
with e ->
pr2 ("EXN pb stating file: " ^ s);
false
)
let (readdir_to_dir_list: string -> string list) = fun path ->
readdir_to_kind_list path Unix.S_DIR
let (readdir_to_file_list: string -> string list) = fun path ->
readdir_to_kind_list path Unix.S_REG
let (readdir_to_link_list: string -> string list) = fun path ->
readdir_to_kind_list path Unix.S_LNK
let (readdir_to_dir_size_list: string -> (string * int) list) = fun path ->
Sys.readdir path
+> Array.to_list
+> map_filter (fun s ->
let stat = Unix.lstat (path ^ "/" ^ s) in
if stat.Unix.st_kind = Unix.S_DIR
then Some (s, stat.Unix.st_size)
else None
)
(* could be in control section too *)
(* Why a use_cache argument ? because sometimes want disable it but don't
* want put the cache_computation funcall in comment, so just easier to
* pass this extra option.
*)
let cache_computation2 ?(verbose=false) ?(use_cache=true) file ext_cache f =
if not use_cache
then f ()
else begin
if not (Sys.file_exists file)
then failwith ("can't find: " ^ file);
let file_cache = (file ^ ext_cache) in
if Sys.file_exists file_cache &&
filemtime file_cache >= filemtime file
then begin
if verbose then pr2 ("using cache: " ^ file_cache);
get_value file_cache
end
else begin
let res = f () in
write_value res file_cache;
res
end
end
let cache_computation ?verbose ?use_cache a b c =
profile_code "Common.cache_computation" (fun () ->
cache_computation2 ?verbose ?use_cache a b c)
let cache_computation_robust2
dest_dir file ext_cache
(need_no_changed_files, need_no_changed_variables) ext_depend
f =
(if not (Sys.file_exists file)
then failwith ("can't find: " ^ file));
let (file_cache,dependencies_cache) =
let file_cache = (file ^ ext_cache) in
let dependencies_cache = (file ^ ext_depend) in
match dest_dir with
None -> (file_cache, dependencies_cache)
| Some dir ->
let file_cache =
Filename.concat dir
(if String.get file_cache 0 = '/'
then String.sub file_cache 1 ((String.length file_cache) - 1)
else file_cache) in
let dependencies_cache =
Filename.concat dir
(if String.get dependencies_cache 0 = '/'
then
String.sub dependencies_cache 1
((String.length dependencies_cache) - 1)
else dependencies_cache) in
let _ = Sys.command
(Printf.sprintf "mkdir -p %s" (Filename.dirname file_cache)) in
(file_cache,dependencies_cache) in
let dependencies =
(* could do md5sum too *)
((file::need_no_changed_files) +> List.map (fun f -> f, filemtime f),
need_no_changed_variables)
in
if Sys.file_exists dependencies_cache &&
get_value dependencies_cache = dependencies
then
(*begin
pr2 ("cache computation reuse " ^ file);*)
get_value file_cache
(*end*)
else begin
(*pr2 ("cache computation recompute " ^ file);*)
let res = f () in
write_value dependencies dependencies_cache;
write_value res file_cache;
res
end
let cache_computation_robust a b c d e =
profile_code "Common.cache_computation_robust" (fun () ->
cache_computation_robust2 None a b c d e)
let cache_computation_robust_in_dir a b c d e f =
profile_code "Common.cache_computation_robust" (fun () ->
cache_computation_robust2 a b c d e f)
(* don't forget that cmd_to_list call bash and so pattern may contain
* '*' symbols that will be expanded, so can do glob "*.c"
*)
let glob pattern =
cmd_to_list ("ls -1 " ^ pattern)
(* update: have added the -type f, so normally need less the sanity_check_xxx
* function below *)
let files_of_dir_or_files ext xs =
xs +> List.map (fun x ->
if is_directory x
then cmd_to_list ("find " ^ x ^" -noleaf -type f -name \"*." ^ext^"\"")
else [x]
) +> List.concat
let files_of_dir_or_files_no_vcs ext xs =
xs +> List.map (fun x ->
if is_directory x
then
cmd_to_list
("find " ^ x ^" -noleaf -type f -name \"*." ^ext^"\"" ^
"| grep -v /.hg/ |grep -v /CVS/ | grep -v /.git/ |grep -v /_darcs/"
)
else [x]
) +> List.concat
let files_of_dir_or_files_no_vcs_post_filter regex xs =
xs +> List.map (fun x ->
if is_directory x
then
cmd_to_list
("find " ^ x ^
" -noleaf -type f | grep -v /.hg/ |grep -v /CVS/ | grep -v /.git/ |grep -v /_darcs/"
)
+> List.filter (fun s -> s =~ regex)
else [x]
) +> List.concat
let sanity_check_files_and_adjust ext files =
let files = files +> List.filter (fun file ->
if not (file =~ (".*\\."^ext))
then begin
pr2 ("warning: seems not a ."^ext^" file");
false
end
else
if is_directory file
then begin
pr2 (spf "warning: %s is a directory" file);
false
end
else true
) in
files
(* taken from mlfuse, the predecessor of ocamlfuse *)
type rwx = [`R|`W|`X] list
let file_perm_of : u:rwx -> g:rwx -> o:rwx -> Unix.file_perm =
fun ~u ~g ~o ->
let to_oct l =
List.fold_left (fun acc p -> acc lor ((function `R -> 4 | `W -> 2 | `X -> 1) p)) 0 l in
let perm =
((to_oct u) lsl 6) lor
((to_oct g) lsl 3) lor
(to_oct o)
in
perm
(* pixel *)
let has_env var =
try
let _ = Sys.getenv var in true
with Not_found -> false
(* emacs/lisp inspiration (eric cooper and yaron minsky use that too) *)
let (with_open_outfile: filename -> (((string -> unit) * out_channel) -> 'a) -> 'a) =
fun file f ->
let chan = open_out file in
let pr s = output_string chan s in
unwind_protect (fun () ->
let res = f (pr, chan) in
close_out chan;
res)
(fun e -> close_out chan)
let (with_open_infile: filename -> ((in_channel) -> 'a) -> 'a) = fun file f ->
let chan = open_in file in
unwind_protect (fun () ->
let res = f chan in
close_in chan;
res)
(fun e -> close_in chan)
let (with_open_outfile_append: filename -> (((string -> unit) * out_channel) -> 'a) -> 'a) =
fun file f ->
let chan = open_out_gen [Open_creat;Open_append] 0o666 file in
let pr s = output_string chan s in
unwind_protect (fun () ->
let res = f (pr, chan) in
close_out chan;
res)
(fun e -> close_out chan)
(* now in prelude:
* exception Timeout
*)
(* it seems that the toplevel block such signals, even with this explicit
* command :(
* let _ = Unix.sigprocmask Unix.SIG_UNBLOCK [Sys.sigalrm]
*)
(* could be in Control section *)
(* subtil: have to make sure that timeout is not intercepted before here, so
* avoid exn handle such as try (...) with _ -> cos timeout will not bubble up
* enough. In such case, add a case before such as
* with Timeout -> raise Timeout | _ -> ...
*
* question: can we have a signal and so exn when in a exn handler ?
*)
let interval_timer = ref (
try
ignore(Unix.getitimer Unix.ITIMER_VIRTUAL);
true
with Unix.Unix_error(_, _, _) -> false)
let timeout_function s timeoutval = fun f ->
try
if !interval_timer
then
begin
Sys.set_signal Sys.sigvtalrm
(Sys.Signal_handle (fun _ -> raise Timeout));
ignore
(Unix.setitimer Unix.ITIMER_VIRTUAL
{Unix.it_interval=float_of_int timeoutval;
Unix.it_value =float_of_int timeoutval});
let x = f() in
ignore(Unix.alarm 0);
x
end
else
begin
Sys.set_signal Sys.sigalrm
(Sys.Signal_handle (fun _ -> raise Timeout ));
ignore(Unix.alarm timeoutval);
let x = f() in
ignore(Unix.alarm 0);
x
end
with Timeout ->
begin
(if !print_to_stderr
then log (Printf.sprintf "timeout (we abort)")
else log (Printf.sprintf "timeout (we abort): %s" s));
(*pr2 (List.hd(cmd_to_list "free -m | grep Mem"));*)
raise Timeout;
end
| e ->
(* subtil: important to disable the alarm before relaunching the exn,
* otherwise the alarm is still running.
*
* robust?: and if alarm launched after the log (...) ?
* Maybe signals are disabled when process an exception handler ?
*)
begin
ignore(Unix.alarm 0);
(* log ("exn while in transaction (we abort too, even if ...) = " ^
Printexc.to_string e);
*)
log "exn while in timeout_function";
raise e
end
let timeout_function_opt s timeoutvalopt f =
match timeoutvalopt with
| None -> f()
| Some x -> timeout_function s x f
(* removes only if the file does not exists *)
let remove_file path =
if Sys.file_exists path
then Sys.remove path
else ()
(* creation of tmp files, a la gcc *)
let _temp_files_created = ref ([] : filename list)
let temp_files = ref "/tmp"
(* ex: new_temp_file "cocci" ".c" will give "/tmp/cocci-3252-434465.c" *)
let new_temp_file prefix suffix =
let processid = string_of_int (Unix.getpid ()) in
let tmp_file =
Filename.temp_file ~temp_dir:(!temp_files)
(prefix ^ "-" ^ processid ^ "-") suffix in
push2 tmp_file _temp_files_created;
tmp_file
let save_tmp_files = ref false
let erase_temp_files () =
if not !save_tmp_files then begin
!_temp_files_created +> List.iter (fun s ->
(* pr2 ("erasing: " ^ s); *)
remove_file s
);
_temp_files_created := []
end
let erase_this_temp_file f =
if not !save_tmp_files then begin
_temp_files_created :=
List.filter (function x -> not (x = f)) !_temp_files_created;
remove_file f
end
(* now in prelude: exception UnixExit of int *)
let exn_to_real_unixexit f =
try f()
with UnixExit x -> exit x
let uncat xs file =
with_open_outfile file (fun (pr,_chan) ->
xs +> List.iter (fun s -> pr s; pr "\n");
)
(*****************************************************************************)
(* List *)
(*****************************************************************************)
(* pixel *)
let uncons l = (List.hd l, List.tl l)
(* pixel *)
let safe_tl l = try List.tl l with _ -> []
let push l v =
l := v :: !l
let rec zip xs ys =
match (xs,ys) with
| ([],[]) -> []
| ([],_) -> failwith "zip: not same length"
| (_,[]) -> failwith "zip: not same length"
| (x::xs,y::ys) -> (x,y)::zip xs ys
let rec combine4 : 'a list -> 'b list -> 'c list -> 'd list ->
('a * 'b * 'c * 'd) list
= fun a b c d -> match (a,b,c,d) with
| ([],[],[],[]) -> []
| (w::ws,x::xs,y::ys,z::zs) -> (w,x,y,z)::combine4 ws xs ys zs
| ___else___ -> invalid_arg "combine4: not same length"
let rec zip_safe xs ys =
match (xs,ys) with
| ([],_) -> []
| (_,[]) -> []
| (x::xs,y::ys) -> (x,y)::zip_safe xs ys
let unzip zs =
List.fold_right (fun e (xs, ys) ->
(fst e::xs), (snd e::ys)) zs ([],[])
let map_withkeep f xs =
xs +> List.map (fun x -> f x, x)
(* now in prelude
* let rec take n xs =
* match (n,xs) with
* | (0,_) -> []
* | (_,[]) -> failwith "take: not enough"
* | (n,x::xs) -> x::take (n-1) xs
*)
let rec take_safe n xs =
match (n,xs) with
| (0,_) -> []
| (_,[]) -> []
| (n,x::xs) -> x::take_safe (n-1) xs
let rec take_until p = function
| [] -> []
| x::xs -> if p x then [] else x::(take_until p xs)
let take_while p = take_until (p $ not)
(* now in prelude: let rec drop n xs = ... *)
let _ = example (drop 3 [1;2;3;4] = [4])
let rec drop_while p = function
| [] -> []
| x::xs -> if p x then drop_while p xs else x::xs
let drop_until p xs =
drop_while (fun x -> not (p x)) xs
let _ = example (drop_until (fun x -> x = 3) [1;2;3;4;5] = [3;4;5])
let span p xs = (take_while p xs, drop_while p xs)
let rec (span: ('a -> bool) -> 'a list -> 'a list * 'a list) =
fun p -> function
| [] -> ([], [])
| x::xs ->
if p x then
let (l1, l2) = span p xs in
(x::l1, l2)
else ([], x::xs)
let _ = example ((span (fun x -> x <= 3) [1;2;3;4;1;2] = ([1;2;3],[4;1;2])))
let rec groupBy eq l =
match l with
| [] -> []
| x::xs ->
let (xs1,xs2) = List.partition (fun x' -> eq x x') xs in
(x::xs1)::(groupBy eq xs2)
let rec group_by_mapped_key fkey l =
match l with
| [] -> []
| x::xs ->
let k = fkey x in
let (xs1,xs2) = List.partition (fun x' -> let k2 = fkey x' in k=k2) xs
in
(k, (x::xs1))::(group_by_mapped_key fkey xs2)
let (exclude_but_keep_attached: ('a -> bool) -> 'a list -> ('a * 'a list) list)=
fun f xs ->
let rec aux_filter acc ans = function
| [] -> (* drop what was accumulated because nothing to attach to *)
List.rev ans
| x::xs ->
if f x
then aux_filter (x::acc) ans xs
else aux_filter [] ((x, List.rev acc)::ans) xs
in
aux_filter [] [] xs
let _ = example
(exclude_but_keep_attached (fun x -> x = 3) [3;3;1;3;2;3;3;3] =
[(1,[3;3]);(2,[3])])
let group_by_post: ('a -> bool) -> 'a list -> ('a list * 'a) list * 'a list =
fun f xs ->
let rec aux_filter grouped_acc acc = function
| [] ->
List.rev grouped_acc, List.rev acc
| x::xs ->
if f x
then
aux_filter ((List.rev acc,x)::grouped_acc) [] xs
else
aux_filter grouped_acc (x::acc) xs
in
aux_filter [] [] xs
let _ = example
(group_by_post (fun x -> x = 3) [1;1;3;2;3;4;5;3;6;6;6] =
([([1;1],3);([2],3);[4;5],3], [6;6;6]))
let (group_by_pre: ('a -> bool) -> 'a list -> 'a list * ('a * 'a list) list)=
fun f xs ->
let xs' = List.rev xs in
let (ys, unclassified) = group_by_post f xs' in
List.rev unclassified,
ys +> List.rev +> List.map (fun (xs, x) -> x, List.rev xs )
let _ = example
(group_by_pre (fun x -> x = 3) [1;1;3;2;3;4;5;3;6;6;6] =
([1;1], [(3,[2]); (3,[4;5]); (3,[6;6;6])]))
let split_when: ('a -> bool) -> 'a list -> 'a list * 'a * 'a list =
fun p l ->
let rec loop acc = function
| [] -> raise Not_found
| x::xs ->
if p x then
List.rev acc, x, xs
else loop (x :: acc) xs in
loop [] l
let _ = example (split_when (fun x -> x = 3)
[1;2;3;4;1;2] = ([1;2],3,[4;1;2]))
(* not so easy to come up with ... used in aComment for split_paragraph *)
let rec split_gen_when_aux f acc xs =
match xs with
| [] ->
if acc=[]
then []
else [List.rev acc]
| (x::xs) ->
(match f (x::xs) with
| None ->
split_gen_when_aux f (x::acc) xs
| Some (rest) ->
let before = List.rev acc in
if before=[]
then split_gen_when_aux f [] rest
else before::split_gen_when_aux f [] rest
)
(* could avoid introduce extra aux function by using ?(acc = []) *)
let split_gen_when f xs =
split_gen_when_aux f [] xs
(* generate exception (Failure "tl") if there is no element satisfying p *)
let rec (skip_until: ('a list -> bool) -> 'a list -> 'a list) = fun p xs ->
if p xs then xs else skip_until p (List.tl xs)
let _ = example
(skip_until (function 1::2::xs -> true | _ -> false)
[1;3;4;1;2;4;5] = [1;2;4;5])
let rec skipfirst e = function
| [] -> []
| e'::l when e = e' -> skipfirst e l
| l -> l
(* now in prelude:
* let rec enum x n = ...
*)
let index_list xs =
if xs=[] then [] (* enum 0 (-1) generate an exception *)
else zip xs (enum 0 ((List.length xs) -1))
let index_list_and_total xs =
let total = List.length xs in
if xs=[] then [] (* enum 0 (-1) generate an exception *)
else zip xs (enum 0 ((List.length xs) -1))
+> List.map (fun (a,b) -> (a,b,total))
let index_list_1 xs =
xs +> index_list +> List.map (fun (x,i) -> x, i+1)
let or_list = List.fold_left (||) false
let and_list = List.fold_left (&&) true
let avg_list xs =
let sum = sum_int xs in
(float_of_int sum) /. (float_of_int (List.length xs))
let snoc x xs = xs @ [x]
let cons x xs = x::xs
let head_middle_tail xs =
match xs with
| x::y::xs ->
let head = x in
let reversed = List.rev (y::xs) in
let tail = List.hd reversed in
let middle = List.rev (List.tl reversed) in
head, middle, tail
| _ -> failwith "head_middle_tail, too small list"
let _ = assert_equal (head_middle_tail [1;2;3]) (1, [2], 3)
let _ = assert_equal (head_middle_tail [1;3]) (1, [], 3)
(* let (++) l1 l2 = List.fold_right (fun x acc -> x::acc) l1 l2 *)
let remove x xs =
let newxs = List.filter (fun y -> y <> x) xs in
assert (List.length newxs = List.length xs - 1);
newxs
let exclude p xs =
List.filter (fun x -> not (p x)) xs
(* now in prelude
*)
let fold_k f lastk acc xs =
let rec fold_k_aux acc = function
| [] -> lastk acc
| x::xs ->
f acc x (fun acc -> fold_k_aux acc xs)
in
fold_k_aux acc xs
let rec list_init = function
| [] -> raise Not_found
| [x] -> []
| x::y::xs -> x::(list_init (y::xs))
let rec list_last = function
| [] -> raise Not_found
| [x] -> x
| x::y::xs -> list_last (y::xs)
(* pixel *)
(* now in prelude
* let last_n n l = List.rev (take n (List.rev l))
* let last l = List.hd (last_n 1 l)
*)
let rec join_gen a = function
| [] -> []
| [x] -> [x]
| x::xs -> x::a::(join_gen a xs)
(* todo: foldl, foldr (a more consistent foldr) *)
(* start pixel *)
let iter_index f l =
let rec iter_ n = function
| [] -> ()
| e::l -> f e n ; iter_ (n+1) l
in iter_ 0 l
let map_index f l =
let rec map_ n = function
| [] -> []
| e::l -> f e n :: map_ (n+1) l
in map_ 0 l
(* pixel *)
let filter_index f l =
let rec filt i = function
| [] -> []
| e::l -> if f i e then e :: filt (i+1) l else filt (i+1) l
in
filt 0 l
(* pixel *)
let do_withenv doit f env l =
let r_env = ref env in
let l' = doit (fun e ->
let e', env' = f !r_env e in
r_env := env' ; e'
) l in
l', !r_env
(* now in prelude:
* let fold_left_with_index f acc = ...
*)
let map_withenv f env e = do_withenv List.map f env e
let rec collect_accu f accu = function
| [] -> accu
| e::l -> collect_accu f (List.rev_append (f e) accu) l
let collect f l = List.rev (collect_accu f [] l)
(* cf also List.partition *)
let fpartition p l =
let rec part yes no = function
| [] -> (List.rev yes, List.rev no)
| x :: l ->
(match p x with
| None -> part yes (x :: no) l
| Some v -> part (v :: yes) no l) in
part [] [] l
(* end pixel *)
let rec removelast = function
| [] -> failwith "removelast"
| [_] -> []
| e::l -> e :: removelast l
let remove x = List.filter (fun y -> y != x)
let rec inits = function
| [] -> [[]]
| e::l -> [] :: List.map (fun l -> e::l) (inits l)
let rec tails = function
| [] -> [[]]
| (_::xs) as xxs -> xxs :: tails xs
let reverse = List.rev
let rev = List.rev
let nth = List.nth
let fold_left = List.fold_left
let rev_map = List.rev_map
(* pixel *)
let rec fold_right1 f = function
| [] -> failwith "fold_right1"
| [e] -> e
| e::l -> f e (fold_right1 f l)
let maximum l = foldl1 max l
let minimum l = foldl1 min l
(* do a map tail recursive, and result is reversed, it is a tail recursive map => efficient *)
let map_eff_rev = fun f l ->
let rec map_eff_aux acc =
function
| [] -> acc
| x::xs -> map_eff_aux ((f x)::acc) xs
in
map_eff_aux [] l
let acc_map f l =
let rec loop acc = function
[] -> List.rev acc
| x::xs -> loop ((f x)::acc) xs in
loop [] l
let rec (generate: int -> 'a -> 'a list) = fun i el ->
if i = 0 then []
else el::(generate (i-1) el)
let rec uniq = function
| [] -> []
| e::l -> if List.mem e l then uniq l else e :: uniq l
let has_no_duplicate xs =
List.length xs = List.length (uniq xs)
let is_set_as_list = has_no_duplicate
let rec get_duplicates xs =
match xs with
| [] -> []
| x::xs ->
if List.mem x xs
then x::get_duplicates xs (* todo? could x from xs to avoid double dups?*)
else get_duplicates xs
let rec all_assoc e = function
| [] -> []
| (e',v) :: l when e=e' -> v :: all_assoc e l
| _ :: l -> all_assoc e l
let prepare_want_all_assoc l =
List.map (fun n -> n, uniq (all_assoc n l)) (uniq (List.map fst l))
let rotate list = List.tl list @ [(List.hd list)]
let or_list = List.fold_left (||) false
let and_list = List.fold_left (&&) true
let rec (return_when: ('a -> 'b option) -> 'a list -> 'b) = fun p -> function
| [] -> raise Not_found
| x::xs -> (match p x with None -> return_when p xs | Some b -> b)
let rec splitAt n xs =
if n = 0 then ([],xs)
else
(match xs with
| [] -> ([],[])
| (x::xs) -> let (a,b) = splitAt (n-1) xs in (x::a, b)
)
let pack n xs =
let rec pack_aux l i = function
| [] -> failwith "not on a boundary"
| [x] -> if i = n then [l @ [x]] else failwith "not on a boundary"
| x::xs ->
if i = n
then (l @ [x])::(pack_aux [] 1 xs)
else pack_aux (l @ [x]) (i+1) xs
in
pack_aux [] 1 xs
let min_with f = function
| [] -> raise Not_found
| e :: l ->
let rec min_with_ min_val min_elt = function
| [] -> min_elt
| e::l ->
let val_ = f e in
if val_ < min_val
then min_with_ val_ e l
else min_with_ min_val min_elt l
in min_with_ (f e) e l
let two_mins_with f = function
| e1 :: e2 :: l ->
let rec min_with_ min_val min_elt min_val2 min_elt2 = function
| [] -> min_elt, min_elt2
| e::l ->
let val_ = f e in
if val_ < min_val2
then
if val_ < min_val
then min_with_ val_ e min_val min_elt l
else min_with_ min_val min_elt val_ e l
else min_with_ min_val min_elt min_val2 min_elt2 l
in
let v1 = f e1 in
let v2 = f e2 in
if v1 < v2 then min_with_ v1 e1 v2 e2 l else min_with_ v2 e2 v1 e1 l
| _ -> raise Not_found
let grep_with_previous f = function
| [] -> []
| e::l ->
let rec grep_with_previous_ previous = function
| [] -> []
| e::l -> if f previous e then e :: grep_with_previous_ e l else grep_with_previous_ previous l
in e :: grep_with_previous_ e l
let iter_with_previous f = function
| [] -> ()
| e::l ->
let rec iter_with_previous_ previous = function
| [] -> ()
| e::l -> f previous e ; iter_with_previous_ e l
in iter_with_previous_ e l
let iter_with_before_after f xs =
let rec aux before_rev after =
match after with
| [] -> ()
| x::xs ->
f before_rev x xs;
aux (x::before_rev) xs
in
aux [] xs
(* kind of cartesian product of x*x *)
let rec (get_pair: ('a list) -> (('a * 'a) list)) = function
| [] -> []
| x::xs -> (List.map (fun y -> (x,y)) xs) @ (get_pair xs)
(* retourne le rang dans une liste d'un element *)
let rang elem liste =
let rec rang_rec elem accu = function
| [] -> raise Not_found
| a::l -> if a = elem then accu
else rang_rec elem (accu+1) l in
rang_rec elem 1 liste
(* retourne vrai si une liste contient des doubles *)
let rec doublon = function
| [] -> false
| a::l -> if List.mem a l then true
else doublon l
let rec (insert_in: 'a -> 'a list -> 'a list list) = fun x -> function
| [] -> [[x]]
| y::ys -> (x::y::ys) :: (List.map (fun xs -> y::xs) (insert_in x ys))
(* insert_in 3 [1;2] = [[3; 1; 2]; [1; 3; 2]; [1; 2; 3]] *)
let rec (permutation: 'a list -> 'a list list) = function
| [] -> []
| [x] -> [[x]]
| x::xs -> List.flatten (List.map (insert_in x) (permutation xs))
(* permutation [1;2;3] =
* [[1; 2; 3]; [2; 1; 3]; [2; 3; 1]; [1; 3; 2]; [3; 1; 2]; [3; 2; 1]]
*)
let rec remove_elem_pos pos xs =
match (pos, xs) with
| _, [] -> failwith "remove_elem_pos"
| 0, x::xs -> xs
| n, x::xs -> x::(remove_elem_pos (n-1) xs)
let rec insert_elem_pos (e, pos) xs =
match (pos, xs) with
| 0, xs -> e::xs
| n, x::xs -> x::(insert_elem_pos (e, (n-1)) xs)
| n, [] -> failwith "insert_elem_pos"
let uncons_permut xs =
let indexed = index_list xs in
indexed +> List.map (fun (x, pos) -> (x, pos), remove_elem_pos pos xs)
let _ =
example
(uncons_permut ['a';'b';'c'] =
[('a', 0), ['b';'c'];
('b', 1), ['a';'c'];
('c', 2), ['a';'b']
])
let uncons_permut_lazy xs =
let indexed = index_list xs in
indexed +> List.map (fun (x, pos) ->
(x, pos),
lazy (remove_elem_pos pos xs)
)
(* pixel *)
let map_flatten f l =
let rec map_flatten_aux accu = function
| [] -> accu
| e :: l -> map_flatten_aux (List.rev (f e) @ accu) l
in List.rev (map_flatten_aux [] l)
let repeat e n =
let rec repeat_aux acc = function
| 0 -> acc
| n when n < 0 -> failwith "repeat"
| n -> repeat_aux (e::acc) (n-1) in
repeat_aux [] n
let rec map2 f = function
| [] -> []
| x::xs -> let r = f x in r::map2 f xs
let map3 f l =
let rec map3_aux acc = function
| [] -> acc
| x::xs -> map3_aux (f x::acc) xs in
map3_aux [] l
(*
let tails2 xs = map rev (inits (rev xs))
let res = tails2 [1;2;3;4]
let res = tails [1;2;3;4]
let id x = x
*)
let pack_sorted same xs =
let rec pack_s_aux acc xs =
match (acc,xs) with
| ((cur,rest),[]) -> cur::rest
| ((cur,rest), y::ys) ->
if same (List.hd cur) y then pack_s_aux (y::cur, rest) ys
else pack_s_aux ([y], cur::rest) ys
in pack_s_aux ([List.hd xs],[]) (List.tl xs) +> List.rev
let test = pack_sorted (=) [1;1;1;2;2;3;4]
let rec keep_best f =
let rec partition e = function
| [] -> e, []
| e' :: l ->
match f(e,e') with
| None -> let (e'', l') = partition e l in e'', e' :: l'
| Some e'' -> partition e'' l
in function
| [] -> []
| e::l ->
let (e', l') = partition e l in
e' :: keep_best f l'
let rec sorted_keep_best f = function
| [] -> []
| [a] -> [a]
| a :: b :: l ->
match f a b with
| None -> a :: sorted_keep_best f (b :: l)
| Some e -> sorted_keep_best f (e :: l)
let (cartesian_product: 'a list -> 'b list -> ('a * 'b) list) = fun xs ys ->
xs +> List.map (fun x -> ys +> List.map (fun y -> (x,y)))
+> List.flatten
let _ = assert_equal
(cartesian_product [1;2] ["3";"4";"5"])
[1,"3";1,"4";1,"5"; 2,"3";2,"4";2,"5"]
let rec equal_list f l0 l1 =
match l0, l1 with
[], [] -> true
| h0 :: t0, h1 :: t1 -> f h0 h1 && equal_list f t0 t1
| [], _ :: _
| _ :: _, [] -> false
let sort_prof a b =
profile_code "Common.sort_by_xxx" (fun () -> List.sort a b)
let sort_by_val_highfirst xs =
sort_prof (fun (k1,v1) (k2,v2) -> compare v2 v1) xs
let sort_by_val_lowfirst xs =
sort_prof (fun (k1,v1) (k2,v2) -> compare v1 v2) xs
let sort_by_key_highfirst xs =
sort_prof (fun (k1,v1) (k2,v2) -> compare k2 k1) xs
let sort_by_key_lowfirst xs =
sort_prof (fun (k1,v1) (k2,v2) -> compare k1 k2) xs
let _ = example (sort_by_key_lowfirst [4, (); 7,()] = [4,(); 7,()])
let _ = example (sort_by_key_highfirst [4,(); 7,()] = [7,(); 4,()])
let sortgen_by_key_highfirst xs =
sort_prof (fun (k1,v1) (k2,v2) -> compare k2 k1) xs
let sortgen_by_key_lowfirst xs =
sort_prof (fun (k1,v1) (k2,v2) -> compare k1 k2) xs
(*----------------------------------*)
(* sur surEnsemble [p1;p2] [[p1;p2;p3] [p1;p2] ....] -> [[p1;p2;p3] ... *)
(* mais pas p2;p3 *)
(* (aop) *)
let surEnsemble liste_el liste_liste_el =
List.filter
(function liste_elbis ->
List.for_all (function el -> List.mem el liste_elbis) liste_el
) liste_liste_el;;
(*----------------------------------*)
(* combinaison/product/.... (aop) *)
(* 123 -> 123 12 13 23 1 2 3 *)
let rec realCombinaison = function
| [] -> []
| [a] -> [[a]]
| a::l ->
let res = realCombinaison l in
let res2 = List.map (function x -> a::x) res in
res2 @ res @ [[a]]
(* genere toutes les combinaisons possible de paire *)
(* par example combinaison [1;2;4] -> [1, 2; 1, 4; 2, 4] *)
let rec combinaison = function
| [] -> []
| [a] -> []
| [a;b] -> [(a, b)]
| a::b::l -> (List.map (function elem -> (a, elem)) (b::l)) @
(combinaison (b::l))
(*----------------------------------*)
(* list of list(aop) *)
(* insere elem dans la liste de liste (si elem est deja present dans une de *)
(* ces listes, on ne fait rien *)
let rec insere elem = function
| [] -> [[elem]]
| a::l ->
if (List.mem elem a) then a::l
else a::(insere elem l)
let rec insereListeContenant lis el = function
| [] -> [el::lis]
| a::l ->
if List.mem el a then
(List.append lis a)::l
else a::(insereListeContenant lis el l)
(* fusionne les listes contenant et1 et et2 dans la liste de liste*)
let rec fusionneListeContenant (et1, et2) = function
| [] -> [[et1; et2]]
| a::l ->
(* si les deux sont deja dedans alors rien faire *)
if List.mem et1 a then
if List.mem et2 a then a::l
else
insereListeContenant a et2 l
else if List.mem et2 a then
insereListeContenant a et1 l
else a::(fusionneListeContenant (et1, et2) l)
(*****************************************************************************)
(* Arrays *)
(*****************************************************************************)
(* do bound checking ? *)
let array_find_index f a =
let rec array_find_index_ i =
if f i then i else array_find_index_ (i+1)
in
try array_find_index_ 0 with _ -> raise Not_found
let array_find_index_via_elem f a =
let rec array_find_index_ i =
if f a.(i) then i else array_find_index_ (i+1)
in
try array_find_index_ 0 with _ -> raise Not_found
type idx = Idx of int
let next_idx (Idx i) = (Idx (i+1))
let int_of_idx (Idx i) = i
let array_find_index_typed f a =
let rec array_find_index_ i =
if f i then i else array_find_index_ (next_idx i)
in
try array_find_index_ (Idx 0) with _ -> raise Not_found
(*****************************************************************************)
(* Matrix *)
(*****************************************************************************)
type 'a matrix = 'a array array
let map_matrix f mat =
mat +> Array.map (fun arr -> arr +> Array.map f)
let (make_matrix_init:
nrow:int -> ncolumn:int -> (int -> int -> 'a) -> 'a matrix) =
fun ~nrow ~ncolumn f ->
Array.init nrow (fun i ->
Array.init ncolumn (fun j ->
f i j
)
)
let iter_matrix f m =
Array.iteri (fun i e ->
Array.iteri (fun j x ->
f i j x
) e
) m
let nb_rows_matrix m =
Array.length m
let nb_columns_matrix m =
assert(Array.length m > 0);
Array.length m.(0)
(* check all nested arrays have the same size *)
let invariant_matrix m =
raise Todo
let (rows_of_matrix: 'a matrix -> 'a list list) = fun m ->
Array.to_list m +> List.map Array.to_list
let (columns_of_matrix: 'a matrix -> 'a list list) = fun m ->
let nbcols = nb_columns_matrix m in
let nbrows = nb_rows_matrix m in
(enum 0 (nbcols -1)) +> List.map (fun j ->
(enum 0 (nbrows -1)) +> List.map (fun i ->
m.(i).(j)
))
let all_elems_matrix_by_row m =
rows_of_matrix m +> List.flatten
let ex_matrix1 =
[|
[|0;1;2|];
[|3;4;5|];
[|6;7;8|];
|]
let ex_rows1 =
[
[0;1;2];
[3;4;5];
[6;7;8];
]
let ex_columns1 =
[
[0;3;6];
[1;4;7];
[2;5;8];
]
let _ = example (rows_of_matrix ex_matrix1 = ex_rows1)
let _ = example (columns_of_matrix ex_matrix1 = ex_columns1)
(*****************************************************************************)
(* Fast array *)
(*****************************************************************************)
(*
module B_Array = Bigarray.Array2
*)
(*
open B_Array
open Bigarray
*)
(* for the string_of auto generation of camlp4
val b_array_string_of_t : 'a -> 'b -> string
val bigarray_string_of_int16_unsigned_elt : 'a -> string
val bigarray_string_of_c_layout : 'a -> string
let b_array_string_of_t f a = "<>"
let bigarray_string_of_int16_unsigned_elt a = "<>"
let bigarray_string_of_c_layout a = "<>"
*)
(*****************************************************************************)
(* Set. Have a look too at set*.mli *)
(*****************************************************************************)
type 'a set = 'a list
(* with sexp *)
let (empty_set: 'a set) = []
let (insert_set: 'a -> 'a set -> 'a set) = fun x xs ->
if List.mem x xs
then (* let _ = print_string "warning insert: already exist" in *)
xs
else x::xs
let is_set xs =
has_no_duplicate xs
let (single_set: 'a -> 'a set) = fun x -> insert_set x empty_set
let (set: 'a list -> 'a set) = fun xs ->
xs +> List.fold_left (flip insert_set) empty_set
let (exists_set: ('a -> bool) -> 'a set -> bool) = List.exists
let (forall_set: ('a -> bool) -> 'a set -> bool) = List.for_all
let (filter_set: ('a -> bool) -> 'a set -> 'a set) = List.filter
let (fold_set: ('a -> 'b -> 'a) -> 'a -> 'b set -> 'a) = List.fold_left
let (map_set: ('a -> 'b) -> 'a set -> 'b set) = List.map
let (member_set: 'a -> 'a set -> bool) = List.mem
let find_set = List.find
let sort_set = List.sort
let iter_set = List.iter
let (top_set: 'a set -> 'a) = List.hd
let (inter_set: 'a set -> 'a set -> 'a set) = fun s1 s2 ->
s1 +> fold_set (fun acc x -> if member_set x s2 then insert_set x acc else acc) empty_set
let (union_set: 'a set -> 'a set -> 'a set) = fun s1 s2 ->
s2 +> fold_set (fun acc x -> if member_set x s1 then acc else insert_set x acc) s1
let (minus_set: 'a set -> 'a set -> 'a set) = fun s1 s2 ->
s1 +> filter_set (fun x -> not (member_set x s2))
let union_all l = List.fold_left union_set [] l
let inter_all = function
[] -> []
| x::xs -> List.fold_left inter_set x xs
let big_union_set f xs = xs +> map_set f +> fold_set union_set empty_set
let (card_set: 'a set -> int) = List.length
let (include_set: 'a set -> 'a set -> bool) = fun s1 s2 ->
(s1 +> forall_set (fun p -> member_set p s2))
let equal_set s1 s2 = include_set s1 s2 && include_set s2 s1
let (include_set_strict: 'a set -> 'a set -> bool) = fun s1 s2 ->
(card_set s1 < card_set s2) && (include_set s1 s2)
let ($*$) = inter_set
let ($+$) = union_set
let ($-$) = minus_set
let ($?$) a b = profile_code "$?$" (fun () -> member_set a b)
let ($<$) = include_set_strict
let ($<=$) = include_set
let ($=$) = equal_set
(* as $+$ but do not check for memberness, allow to have set of func *)
let ($@$) = fun a b -> a @ b
let nub l =
let l = List.sort compare l in
let rec loop = function
[] -> []
| x::((y::_) as xs) when x = y -> loop xs
| x::xs -> x :: loop xs in
loop l
(*****************************************************************************)
(* Set as normal list *)
(*****************************************************************************)
(*
let (union: 'a list -> 'a list -> 'a list) = fun l1 l2 ->
List.fold_left (fun acc x -> if List.mem x l1 then acc else x::acc) l1 l2
let insert_normal x xs = union xs [x]
(* retourne lis1 - lis2 *)
let minus l1 l2 = List.filter (fun x -> not (List.mem x l2)) l1
let inter l1 l2 = List.fold_left (fun acc x -> if List.mem x l2 then x::acc else acc) [] l1
let union_list = List.fold_left union []
let uniq lis =
List.fold_left (function acc -> function el -> union [el] acc) [] lis
(* pixel *)
let rec non_uniq = function
| [] -> []
| e::l -> if mem e l then e :: non_uniq l else non_uniq l
let rec inclu lis1 lis2 =
List.for_all (function el -> List.mem el lis2) lis1
let equivalent lis1 lis2 =
(inclu lis1 lis2) && (inclu lis2 lis1)
*)
(*****************************************************************************)
(* Set as sorted list *)
(*****************************************************************************)
(* liste trie, cos we need to do intersection, and insertion (it is a set
cos when introduce has, if we create a new has => must do a recurse_rep
and another categ can have to this has => must do an union
*)
(*
let rec insert x = function
| [] -> [x]
| y::ys ->
if x = y then y::ys
else (if x < y then x::y::ys else y::(insert x ys))
(* same, suppose sorted list *)
let rec intersect x y =
match(x,y) with
| [], y -> []
| x, [] -> []
| x::xs, y::ys ->
if x = y then x::(intersect xs ys)
else
(if x < y then intersect xs (y::ys)
else intersect (x::xs) ys
)
(* intersect [1;3;7] [2;3;4;7;8];; *)
*)
(*****************************************************************************)
(* Assoc *)
(*****************************************************************************)
type ('a,'b) assoc = ('a * 'b) list
(* with sexp *)
let (assoc_to_function: ('a, 'b) assoc -> ('a -> 'b)) = fun xs ->
xs +> List.fold_left (fun acc (k, v) ->
(fun k' ->
if k = k' then v else acc k'
)) (fun k -> failwith "no key in this assoc")
(* simpler:
let (assoc_to_function: ('a, 'b) assoc -> ('a -> 'b)) = fun xs ->
fun k -> List.assoc k xs
*)
let (empty_assoc: ('a, 'b) assoc) = []
let fold_assoc = List.fold_left
let insert_assoc = fun x xs -> x::xs
let map_assoc = List.map
let filter_assoc = List.filter
let assoc = List.assoc
let keys xs = List.map fst xs
let lookup = assoc
(* assert unique key ?*)
let del_assoc key xs = xs +> List.filter (fun (k,v) -> k <> key)
let replace_assoc (key, v) xs = insert_assoc (key, v) (del_assoc key xs)
let apply_assoc key f xs =
let old = assoc key xs in
replace_assoc (key, f old) xs
let big_union_assoc f xs = xs +> map_assoc f +> fold_assoc union_set empty_set
(* todo: pb normally can suppr fun l -> .... l but if do that, then strange type _a
=> assoc_map is strange too => equal don't work
*)
let (assoc_reverse: (('a * 'b) list) -> (('b * 'a) list)) = fun l ->
List.map (fun(x,y) -> (y,x)) l
let (assoc_map: (('a * 'b) list) -> (('a * 'b) list) -> (('a * 'a) list)) =
fun l1 l2 ->
let (l1bis, l2bis) = (assoc_reverse l1, assoc_reverse l2) in
List.map (fun (x,y) -> (y, List.assoc x l2bis )) l1bis
let rec (lookup_list: 'a -> ('a , 'b) assoc list -> 'b) = fun el -> function
| [] -> raise Not_found
| (xs::xxs) -> try List.assoc el xs with Not_found -> lookup_list el xxs
let (lookup_list2: 'a -> ('a , 'b) assoc list -> ('b * int)) = fun el xxs ->
let rec lookup_l_aux i = function
| [] -> raise Not_found
| (xs::xxs) ->
try let res = List.assoc el xs in (res,i)
with Not_found -> lookup_l_aux (i+1) xxs
in lookup_l_aux 0 xxs
let _ = example
(lookup_list2 "c" [["a",1;"b",2];["a",1;"b",3];["a",1;"c",7]] = (7,2))
let assoc_option k l =
optionise (fun () -> List.assoc k l)
let assoc_with_err_msg k l =
try List.assoc k l
with Not_found ->
pr2 (spf "pb assoc_with_err_msg: %s" (Dumper.dump k));
raise Not_found
(*****************************************************************************)
(* Assoc int -> xxx with binary tree. Have a look too at Mapb.mli *)
(*****************************************************************************)
(* ex: type robot_list = robot_info IntMap.t *)
module IntMap = Map.Make
(struct
type t = int
let compare (x : int) (y : int) = Pervasives.compare x y
end)
let intmap_to_list m = IntMap.fold (fun id v acc -> (id, v) :: acc) m []
let intmap_string_of_t f a = "<Not Yet>"
module IntIntMap = Map.Make
(struct
type t = int * int
let compare ((x1, y1) : int * int) ((x2, y2) : int * int) =
let cmp_x = Pervasives.compare x1 x2 in
if cmp_x <> 0 then
cmp_x
else
Pervasives.compare y1 y2
end)
let intintmap_to_list m = IntIntMap.fold (fun id v acc -> (id, v) :: acc) m []
let intintmap_string_of_t f a = "<Not Yet>"
(*****************************************************************************)
(* Hash *)
(*****************************************************************************)
(* il parait que better when choose a prime *)
let hcreate () = Hashtbl.create 401
let hadd (k,v) h = Hashtbl.add h k v
let hmem k h = Hashtbl.mem h k
let hfind k h = Hashtbl.find h k
let hreplace (k,v) h = Hashtbl.replace h k v
let hiter = Hashtbl.iter
let hfold = Hashtbl.fold
let hremove k h = Hashtbl.remove h k
let hash_to_list h =
Hashtbl.fold (fun k v acc -> (k,v)::acc) h []
+> List.sort compare
let hash_to_list_unsorted h =
Hashtbl.fold (fun k v acc -> (k,v)::acc) h []
let hash_of_list xs =
let h = Hashtbl.create 101 in
begin
xs +> List.iter (fun (k, v) -> Hashtbl.add h k v);
h
end
let hashadd tbl k v =
let cell =
try Hashtbl.find tbl k
with Not_found ->
let cell = ref [] in
Hashtbl.add tbl k cell;
cell in
if not (List.mem v !cell) then cell := v :: !cell
let hashinc tbl k v =
let cell =
try Hashtbl.find tbl k
with Not_found ->
let cell = ref 0 in
Hashtbl.add tbl k cell;
cell in
cell := v + !cell
let _ =
let h = Hashtbl.create 101 in
Hashtbl.add h "toto" 1;
Hashtbl.add h "toto" 1;
assert(hash_to_list h = ["toto",1; "toto",1])
let hfind_default key value_if_not_found h =
try Hashtbl.find h key
with Not_found ->
(Hashtbl.add h key (value_if_not_found ()); Hashtbl.find h key)
(* not as easy as Perl $h->{key}++; but still possible *)
let hupdate_default key op value_if_not_found h =
let old = hfind_default key value_if_not_found h in
Hashtbl.replace h key (op old)
let hfind_option key h =
optionise (fun () -> Hashtbl.find h key)
(* see below: let hkeys h = ... *)
(*****************************************************************************)
(* Hash sets *)
(*****************************************************************************)
type 'a hashset = ('a, bool) Hashtbl.t
(* with sexp *)
let hash_hashset_add k e h =
match optionise (fun () -> Hashtbl.find h k) with
| Some hset -> Hashtbl.replace hset e true
| None ->
let hset = Hashtbl.create 11 in
begin
Hashtbl.add h k hset;
Hashtbl.replace hset e true;
end
let hashset_to_set baseset h =
h +> hash_to_list +> List.map fst +> (fun xs -> baseset#fromlist xs)
let hashset_to_list h = hash_to_list h +> List.map fst
let hashset_of_list xs =
xs +> List.map (fun x -> x, true) +> hash_of_list
let hkeys h =
let hkey = Hashtbl.create 101 in
h +> Hashtbl.iter (fun k v -> Hashtbl.replace hkey k true);
hashset_to_list hkey
let group_assoc_bykey_eff2 xs =
let h = Hashtbl.create 101 in
xs +> List.iter (fun (k, v) -> Hashtbl.add h k v);
let keys = hkeys h in
keys +> List.map (fun k -> k, Hashtbl.find_all h k)
let group_assoc_bykey_eff xs =
group_assoc_bykey_eff2 xs
let test_group_assoc () =
let xs = enum 0 10000 +> List.map (fun i -> string_of_int i, i) in
let xs = ("0", 2)::xs in
(* let _ys = xs +> Common.groupBy (fun (a,resa) (b,resb) -> a = b) *)
let ys = xs +> group_assoc_bykey_eff
in
pr2_gen ys
let uniq_eff xs =
let h = Hashtbl.create 101 in
xs +> List.iter (fun k ->
Hashtbl.add h k true
);
hkeys h
let diff_two_say_set_eff xs1 xs2 =
let h1 = hashset_of_list xs1 in
let h2 = hashset_of_list xs2 in
let hcommon = Hashtbl.create 101 in
let honly_in_h1 = Hashtbl.create 101 in
let honly_in_h2 = Hashtbl.create 101 in
h1 +> Hashtbl.iter (fun k _ ->
if Hashtbl.mem h2 k
then Hashtbl.replace hcommon k true
else Hashtbl.add honly_in_h1 k true
);
h2 +> Hashtbl.iter (fun k _ ->
if Hashtbl.mem h1 k
then Hashtbl.replace hcommon k true
else Hashtbl.add honly_in_h2 k true
);
hashset_to_list hcommon,
hashset_to_list honly_in_h1,
hashset_to_list honly_in_h2
(*****************************************************************************)
(* Stack *)
(*****************************************************************************)
type 'a stack = 'a list
(* with sexp *)
let (empty_stack: 'a stack) = []
let (push: 'a -> 'a stack -> 'a stack) = fun x xs -> x::xs
let (top: 'a stack -> 'a) = List.hd
let (pop: 'a stack -> 'a stack) = List.tl
let top_option = function
| [] -> None
| x::xs -> Some x
(* now in prelude:
* let push2 v l = l := v :: !l
*)
let pop2 l =
let v = List.hd !l in
begin
l := List.tl !l;
v
end
(*****************************************************************************)
(* Undoable Stack *)
(*****************************************************************************)
(* Okasaki use such structure also for having efficient data structure
* supporting fast append.
*)
type 'a undo_stack = 'a list * 'a list (* redo *)
let (empty_undo_stack: 'a undo_stack) =
[], []
(* push erase the possible redo *)
let (push_undo: 'a -> 'a undo_stack -> 'a undo_stack) = fun x (undo,redo) ->
x::undo, []
let (top_undo: 'a undo_stack -> 'a) = fun (undo, redo) ->
List.hd undo
let (pop_undo: 'a undo_stack -> 'a undo_stack) = fun (undo, redo) ->
match undo with
| [] -> failwith "empty undo stack"
| x::xs ->
xs, x::redo
let (undo_pop: 'a undo_stack -> 'a undo_stack) = fun (undo, redo) ->
match redo with
| [] -> failwith "empty redo, nothing to redo"
| x::xs ->
x::undo, xs
let redo_undo x = undo_pop x
let top_undo_option = fun (undo, redo) ->
match undo with
| [] -> None
| x::xs -> Some x
(*****************************************************************************)
(* Binary tree *)
(*****************************************************************************)
type 'a bintree = Leaf of 'a | Branch of ('a bintree * 'a bintree)
(*****************************************************************************)
(* N-ary tree *)
(*****************************************************************************)
(* no empty tree, must have one root at list *)
type 'a tree = Tree of 'a * ('a tree) list
let rec (tree_iter: ('a -> unit) -> 'a tree -> unit) = fun f tree ->
match tree with
| Tree (node, xs) ->
f node;
xs +> List.iter (tree_iter f)
(*****************************************************************************)
(* N-ary tree with updatable childrens *)
(*****************************************************************************)
(* no empty tree, must have one root at list *)
type 'a treeref =
| NodeRef of 'a * 'a treeref list ref
let treeref_children_ref tree =
match tree with
| NodeRef (n, x) -> x
let rec (treeref_node_iter:
(* (('a * ('a, 'b) treeref list ref) -> unit) ->
('a, 'b) treeref -> unit
*) 'a)
=
fun f tree ->
match tree with
(* | LeafRef _ -> ()*)
| NodeRef (n, xs) ->
f (n, xs);
!xs +> List.iter (treeref_node_iter f)
let find_treeref f tree =
let res = ref [] in
tree +> treeref_node_iter (fun (n, xs) ->
if f (n,xs)
then push2 (n, xs) res;
);
match !res with
| [n,xs] -> NodeRef (n, xs)
| [] -> raise Not_found
| x::y::zs -> raise Multi_found
let (treeref_node_iter_with_parents:
(* (('a * ('a, 'b) treeref list ref) -> ('a list) -> unit) ->
('a, 'b) treeref -> unit)
*) 'a)
=
fun f tree ->
let rec aux acc tree =
match tree with
(* | LeafRef _ -> ()*)
| NodeRef (n, xs) ->
f (n, xs) acc ;
!xs +> List.iter (aux (n::acc))
in
aux [] tree
(* ---------------------------------------------------------------------- *)
(* Leaf can seem redundant, but sometimes want to directly see if
* a children is a leaf without looking if the list is empty.
*)
type ('a, 'b) treeref2 =
| NodeRef2 of 'a * ('a, 'b) treeref2 list ref
| LeafRef2 of 'b
let treeref2_children_ref tree =
match tree with
| LeafRef2 _ -> failwith "treeref_tail: leaf"
| NodeRef2 (n, x) -> x
let rec (treeref_node_iter2:
(('a * ('a, 'b) treeref2 list ref) -> unit) ->
('a, 'b) treeref2 -> unit) =
fun f tree ->
match tree with
| LeafRef2 _ -> ()
| NodeRef2 (n, xs) ->
f (n, xs);
!xs +> List.iter (treeref_node_iter2 f)
let find_treeref2 f tree =
let res = ref [] in
tree +> treeref_node_iter2 (fun (n, xs) ->
if f (n,xs)
then push2 (n, xs) res;
);
match !res with
| [n,xs] -> NodeRef2 (n, xs)
| [] -> raise Not_found
| x::y::zs -> raise Multi_found
let (treeref_node_iter_with_parents2:
(('a * ('a, 'b) treeref2 list ref) -> ('a list) -> unit) ->
('a, 'b) treeref2 -> unit) =
fun f tree ->
let rec aux acc tree =
match tree with
| LeafRef2 _ -> ()
| NodeRef2 (n, xs) ->
f (n, xs) acc ;
!xs +> List.iter (aux (n::acc))
in
aux [] tree
let find_treeref_with_parents_some f tree =
let res = ref [] in
tree +> treeref_node_iter_with_parents (fun (n, xs) parents ->
match f (n,xs) parents with
| Some v -> push2 v res;
| None -> ()
);
match !res with
| [v] -> v
| [] -> raise Not_found
| x::y::zs -> raise Multi_found
let find_multi_treeref_with_parents_some f tree =
let res = ref [] in
tree +> treeref_node_iter_with_parents (fun (n, xs) parents ->
match f (n,xs) parents with
| Some v -> push2 v res;
| None -> ()
);
match !res with
| [v] -> !res
| [] -> raise Not_found
| x::y::zs -> !res
(*****************************************************************************)
(* Graph. Have a look too at Ograph_*.mli *)
(*****************************************************************************)
(* todo: generalise to put in common (need 'edge (and 'c ?),
* and take in param a display func, cos caml sux, no overloading of show :(
* Simple implementation. Can do also matrix, or adjacent list, or pointer(ref)
* todo: do some check (don't exist already, ...)
*)
type 'node graph = ('node set) * (('node * 'node) set)
let (add_node: 'a -> 'a graph -> 'a graph) = fun node (nodes, arcs) ->
(node::nodes, arcs)
let (del_node: 'a -> 'a graph -> 'a graph) = fun node (nodes, arcs) ->
(nodes $-$ set [node], arcs)
(* could do more job:
let _ = assert (successors node (nodes, arcs) = []) in
+> List.filter (fun (src, dst) -> dst != node))
*)
let (add_arc: ('a * 'a) -> 'a graph -> 'a graph) = fun arc (nodes, arcs) ->
(nodes, set [arc] $+$ arcs)
let (del_arc: ('a * 'a) -> 'a graph -> 'a graph) = fun arc (nodes, arcs) ->
(nodes, arcs +> List.filter (fun a -> not (arc = a)))
let (successors: 'a -> 'a graph -> 'a set) = fun x (nodes, arcs) ->
arcs +> List.filter (fun (src, dst) -> src = x) +> List.map snd
let (predecessors: 'a -> 'a graph -> 'a set) = fun x (nodes, arcs) ->
arcs +> List.filter (fun (src, dst) -> dst = x) +> List.map fst
let (nodes: 'a graph -> 'a set) = fun (nodes, arcs) -> nodes
(* pre: no cycle *)
let rec (fold_upward: ('b -> 'a -> 'b) -> 'a set -> 'b -> 'a graph -> 'b) =
fun f xs acc graph ->
match xs with
| [] -> acc
| x::xs -> (f acc x)
+> (fun newacc -> fold_upward f (graph +> predecessors x) newacc graph)
+> (fun newacc -> fold_upward f xs newacc graph)
(* TODO avoid already visited *)
let empty_graph = ([], [])
(*
let (add_arcs_toward: int -> (int list) -> 'a graph -> 'a graph) = fun i xs ->
function
(nodes, arcs) -> (nodes, (List.map (fun j -> (j,i) ) xs) @ arcs)
let (del_arcs_toward: int -> (int list) -> 'a graph -> 'a graph)= fun i xs g ->
List.fold_left (fun acc el -> del_arc (el, i) acc) g xs
let (add_arcs_from: int -> (int list) -> 'a graph -> 'a graph) = fun i xs ->
function
(nodes, arcs) -> (nodes, (List.map (fun j -> (i,j) ) xs) @ arcs)
let (del_node: (int * 'node) -> 'node graph -> 'node graph) = fun node ->
function (nodes, arcs) ->
let newnodes = List.filter (fun a -> not (node = a)) nodes in
if newnodes = nodes then (raise Not_found) else (newnodes, arcs)
let (replace_node: int -> 'node -> 'node graph -> 'node graph) = fun i n ->
function (nodes, arcs) ->
let newnodes = List.filter (fun (j,_) -> not (i = j)) nodes in
((i,n)::newnodes, arcs)
let (get_node: int -> 'node graph -> 'node) = fun i -> function
(nodes, arcs) -> List.assoc i nodes
let (get_free: 'a graph -> int) = function
(nodes, arcs) -> (maximum (List.map fst nodes))+1
(* require no cycle !!
TODO if cycle check that we have already visited a node *)
let rec (succ_all: int -> 'a graph -> (int list)) = fun i -> function
(nodes, arcs) as g ->
let direct = succ i g in
union direct (union_list (List.map (fun i -> succ_all i g) direct))
let rec (pred_all: int -> 'a graph -> (int list)) = fun i -> function
(nodes, arcs) as g ->
let direct = pred i g in
union direct (union_list (List.map (fun i -> pred_all i g) direct))
(* require that the nodes are different !! *)
let rec (equal: 'a graph -> 'a graph -> bool) = fun g1 g2 ->
let ((nodes1, arcs1),(nodes2, arcs2)) = (g1,g2) in
try
(* do 2 things, check same length and to assoc *)
let conv = assoc_map nodes1 nodes2 in
List.for_all (fun (i1,i2) ->
List.mem (List.assoc i1 conv, List.assoc i2 conv) arcs2)
arcs1
&& (List.length arcs1 = List.length arcs2)
(* could think that only forall is needed, but need check same length too*)
with _ -> false
let (display: 'a graph -> ('a -> unit) -> unit) = fun g display_func ->
let rec aux depth i =
print_n depth " ";
print_int i; print_string "->"; display_func (get_node i g);
print_string "\n";
List.iter (aux (depth+2)) (succ i g)
in aux 0 1
let (display_dot: 'a graph -> ('a -> string) -> unit)= fun (nodes,arcs) func ->
let file = open_out "test.dot" in
output_string file "digraph misc {\n" ;
List.iter (fun (n, node) ->
output_int file n; output_string file " [label=\"";
output_string file (func node); output_string file " \"];\n"; ) nodes;
List.iter (fun (i1,i2) -> output_int file i1 ; output_string file " -> " ;
output_int file i2 ; output_string file " ;\n"; ) arcs;
output_string file "}\n" ;
close_out file;
let status = Unix.system "viewdot test.dot" in
()
(* todo: faire = graphe (int can change !!! => cannot make simply =)
reassign number first !!
*)
(* todo: mettre diff(modulo = !!) en rouge *)
let (display_dot2: 'a graph -> 'a graph -> ('a -> string) -> unit) =
fun (nodes1, arcs1) (nodes2, arcs2) func ->
let file = open_out "test.dot" in
output_string file "digraph misc {\n" ;
output_string file "rotate = 90;\n";
List.iter (fun (n, node) ->
output_string file "100"; output_int file n;
output_string file " [label=\"";
output_string file (func node); output_string file " \"];\n"; ) nodes1;
List.iter (fun (n, node) ->
output_string file "200"; output_int file n;
output_string file " [label=\"";
output_string file (func node); output_string file " \"];\n"; ) nodes2;
List.iter (fun (i1,i2) ->
output_string file "100"; output_int file i1 ; output_string file " -> " ;
output_string file "100"; output_int file i2 ; output_string file " ;\n";
)
arcs1;
List.iter (fun (i1,i2) ->
output_string file "200"; output_int file i1 ; output_string file " -> " ;
output_string file "200"; output_int file i2 ; output_string file " ;\n"; )
arcs2;
(* output_string file "500 -> 1001; 500 -> 2001}\n" ; *)
output_string file "}\n" ;
close_out file;
let status = Unix.system "viewdot test.dot" in
()
*)
(*****************************************************************************)
(* Generic op *)
(*****************************************************************************)
(* overloading *)
let map = List.map (* note: really really slow, use rev_map if possible *)
let filter = List.filter
let fold = List.fold_left
let member = List.mem
let iter = List.iter
let find = List.find
let exists = List.exists
let forall = List.for_all
let big_union f xs = xs +> map f +> fold union_set empty_set
let sort = List.sort
let length = List.length
let head = List.hd
let tail = List.tl
let is_singleton = fun xs -> List.length xs = 1
let tail_map f l = (* tail recursive map, using rev *)
let rec loop acc = function
[] -> acc
| x::xs -> loop ((f x) :: acc) xs in
List.rev(loop [] l)
(*****************************************************************************)
(* Geometry (raytracer) *)
(*****************************************************************************)
type vector = (float * float * float)
type point = vector
type color = vector (* color(0-1) *)
(* todo: factorise *)
let (dotproduct: vector * vector -> float) =
fun ((x1,y1,z1),(x2,y2,z2)) -> (x1*.x2 +. y1*.y2 +. z1*.z2)
let (vector_length: vector -> float) =
fun (x,y,z) -> sqrt (square x +. square y +. square z)
let (minus_point: point * point -> vector) =
fun ((x1,y1,z1),(x2,y2,z2)) -> ((x1 -. x2),(y1 -. y2),(z1 -. z2))
let (distance: point * point -> float) =
fun (x1, x2) -> vector_length (minus_point (x2,x1))
let (normalise: vector -> vector) =
fun (x,y,z) ->
let len = vector_length (x,y,z) in (x /. len, y /. len, z /. len)
let (mult_coeff: vector -> float -> vector) =
fun (x,y,z) c -> (x *. c, y *. c, z *. c)
let (add_vector: vector -> vector -> vector) =
fun v1 v2 -> let ((x1,y1,z1),(x2,y2,z2)) = (v1,v2) in
(x1+.x2, y1+.y2, z1+.z2)
let (mult_vector: vector -> vector -> vector) =
fun v1 v2 -> let ((x1,y1,z1),(x2,y2,z2)) = (v1,v2) in
(x1*.x2, y1*.y2, z1*.z2)
let sum_vector = List.fold_left add_vector (0.0,0.0,0.0)
(*****************************************************************************)
(* Pics (raytracer) *)
(*****************************************************************************)
type pixel = (int * int * int) (* RGB *)
(* required pixel list in row major order, line after line *)
let (write_ppm: int -> int -> (pixel list) -> string -> unit) = fun
width height xs filename ->
let chan = open_out filename in
begin
output_string chan "P6\n";
output_string chan ((string_of_int width) ^ "\n");
output_string chan ((string_of_int height) ^ "\n");
output_string chan "255\n";
List.iter (fun (r,g,b) ->
List.iter (fun byt -> output_byte chan byt) [r;g;b]
) xs;
close_out chan
end
let test_ppm1 () = write_ppm 100 100
((generate (50*100) (1,45,100)) @ (generate (50*100) (1,1,100)))
"img.ppm"
(*****************************************************************************)
(* Diff (lfs) *)
(*****************************************************************************)
type diff = Match | BnotinA | AnotinB
let (diff: (int -> int -> diff -> unit)-> (string list * string list) -> unit)=
fun f (xs,ys) ->
let file1 = "/tmp/diff1-" ^ (string_of_int (Unix.getuid ())) in
let file2 = "/tmp/diff2-" ^ (string_of_int (Unix.getuid ())) in
let fileresult = "/tmp/diffresult-" ^ (string_of_int (Unix.getuid ())) in
write_file file1 (unwords xs);
write_file file2 (unwords ys);
command2
("diff --side-by-side -W 1 " ^ file1 ^ " " ^ file2 ^ " > " ^ fileresult);
let res = cat fileresult in
let a = ref 0 in
let b = ref 0 in
res +> List.iter (fun s ->
match s with
| ("" | " ") -> f !a !b Match; incr a; incr b;
| ">" -> f !a !b BnotinA; incr b;
| ("|" | "/" | "\\" ) ->
f !a !b BnotinA; f !a !b AnotinB; incr a; incr b;
| "<" -> f !a !b AnotinB; incr a;
| _ -> raise (Impossible 3)
)
(*
let _ =
diff
["0";"a";"b";"c";"d"; "f";"g";"h";"j";"q"; "z"]
[ "a";"b";"c";"d";"e";"f";"g";"i";"j";"k";"r";"x";"y";"z"]
(fun x y -> pr "match")
(fun x y -> pr "a_not_in_b")
(fun x y -> pr "b_not_in_a")
*)
let (diff2: (int -> int -> diff -> unit) -> (string * string) -> unit) =
fun f (xstr,ystr) ->
write_file "/tmp/diff1" xstr;
write_file "/tmp/diff2" ystr;
command2
("diff --side-by-side --left-column -W 1 " ^
"/tmp/diff1 /tmp/diff2 > /tmp/diffresult");
let res = cat "/tmp/diffresult" in
let a = ref 0 in
let b = ref 0 in
res +> List.iter (fun s ->
match s with
| "(" -> f !a !b Match; incr a; incr b;
| ">" -> f !a !b BnotinA; incr b;
| "|" -> f !a !b BnotinA; f !a !b AnotinB; incr a; incr b;
| "<" -> f !a !b AnotinB; incr a;
| _ -> raise (Impossible 4)
)
(*****************************************************************************)
(* parser combinators *)
(*****************************************************************************)
(* cf parser_combinators.ml
*
* Could also use ocaml stream. but not backtrack and forced to do LL,
* so combinators are better.
*
*)
(*****************************************************************************)
(* Parser related (cocci) *)
(*****************************************************************************)
type parse_info = {
str: string;
charpos: int;
line: int;
column: int;
file: filename;
}
(* with sexp *)
let fake_parse_info = {
charpos = -1; str = "";
line = -1; column = -1; file = "";
}
let string_of_parse_info x =
spf "%s at %s:%d:%d" x.str x.file x.line x.column
let string_of_parse_info_bis x =
spf "%s:%d:%d" x.file x.line x.column
let (info_from_charpos2: int -> filename -> (int * int * string)) =
fun charpos filename ->
(* Currently lexing.ml does not handle the line number position.
* Even if there is some fields in the lexing structure, they are not
* maintained by the lexing engine :( So the following code does not work:
* let pos = Lexing.lexeme_end_p lexbuf in
* sprintf "at file %s, line %d, char %d" pos.pos_fname pos.pos_lnum
* (pos.pos_cnum - pos.pos_bol) in
* Hence this function to overcome the previous limitation.
*)
let chan = open_in filename in
let linen = ref 0 in
let posl = ref 0 in
let rec charpos_to_pos_aux last_valid =
let s =
try Some (input_line chan)
with End_of_file when charpos = last_valid -> None in
incr linen;
match s with
Some s ->
let s = s ^ "\n" in
let slength = String.length s in
if (!posl + slength > charpos)
then begin
close_in chan;
(!linen, charpos - !posl, s)
end
else begin
posl := !posl + slength;
charpos_to_pos_aux !posl;
end
| None -> (!linen, charpos - !posl, "\n")
in
let res = charpos_to_pos_aux 0 in
close_in chan;
res
let info_from_charpos a b =
profile_code "Common.info_from_charpos" (fun () -> info_from_charpos2 a b)
let full_charpos_to_pos2 = fun filename ->
let size = (filesize filename + 2) in
let arr = Array.make size (0,0) in
let chan = open_in filename in
let charpos = ref 0 in
let line = ref 0 in
let rec full_charpos_to_pos_aux () =
try
let s = (input_line chan) in
incr line;
(* '... +1 do' cos input_line don't return the trailing \n *)
let slength = String.length s in
for i = 0 to (slength - 1) + 1 do
arr.(!charpos + i) <- (!line, i);
done;
charpos := !charpos + slength + 1;
full_charpos_to_pos_aux();
with End_of_file ->
for i = !charpos to Array.length arr - 1 do
arr.(i) <- (!line, 0);
done;
();
in
begin
full_charpos_to_pos_aux ();
close_in chan;
arr
end
let full_charpos_to_pos a =
profile_code "Common.full_charpos_to_pos" (fun () -> full_charpos_to_pos2 a)
let test_charpos file =
full_charpos_to_pos file +> Dumper.dump +> pr2
let complete_parse_info filename table x =
{ x with
file = filename;
line = fst (table.(x.charpos));
column = snd (table.(x.charpos));
}
(*---------------------------------------------------------------------------*)
(* Decalage is here to handle stuff such as cpp which include file and who
* can make shift.
*)
let (error_messagebis: filename -> (string * int) -> int -> string)=
fun filename (lexeme, lexstart) decalage ->
let charpos = lexstart + decalage in
let tok = lexeme in
let (line, pos, linecontent) = info_from_charpos charpos filename in
Printf.sprintf "File \"%s\", line %d, column %d, charpos = %d\
\n around = '%s',\n whole content = %s"
filename line pos charpos tok (chop linecontent)
let error_message = fun filename (lexeme, lexstart) ->
try error_messagebis filename (lexeme, lexstart) 0
with
End_of_file ->
("PB in Common.error_message, position " ^ string_of_int lexstart ^
" given out of file:" ^ filename)
let error_message_short = fun filename (lexeme, lexstart) ->
try
let charpos = lexstart in
let (line, pos, linecontent) = info_from_charpos charpos filename in
Printf.sprintf "File \"%s\", line %d" filename line
with End_of_file ->
begin
("PB in Common.error_message, position " ^ string_of_int lexstart ^
" given out of file:" ^ filename);
end
(*****************************************************************************)
(* Regression testing bis (cocci) *)
(*****************************************************************************)
(* todo: keep also size of file, compute md5sum ? cos maybe the file
* has changed!.
*
* todo: could also compute the date, or some version info of the program,
* can record the first date when was found a OK, the last date where
* was ok, and then first date when found fail. So the
* Common.Ok would have more information that would be passed
* to the Common.Pb of date * date * date * string peut etre.
*
* todo? maybe use plain text file instead of marshalling.
*)
type score_result = Ok | Pb of string
(* with sexp *)
type score = (string (* usually a filename *), score_result) Hashtbl.t
(* with sexp *)
type score_list = (string (* usually a filename *) * score_result) list
(* with sexp *)
let empty_score () = (Hashtbl.create 101 : score)
let save_score score path =
write_value score path
let load_score path () =
read_value path
(* be insensitive to newlines, to allow improvements in the error message
formatting *)
let close_enough s1 s2 =
let first = String.concat " " (Str.split (Str.regexp "\n") s1) in
let second = String.concat " " (Str.split (Str.regexp "\n") s2) in
let first = String.concat " " (Str.split (Str.regexp " +") first) in
let second = String.concat " " (Str.split (Str.regexp " +") second) in
first = second
let regression_testing_vs newscore bestscore =
let newbestscore = empty_score () in
let allres =
(hash_to_list newscore +> List.map fst)
$+$
(hash_to_list bestscore +> List.map fst)
in
begin
allres +> List.iter (fun res ->
match
optionise (fun () -> Hashtbl.find newscore res),
optionise (fun () -> Hashtbl.find bestscore res)
with
| None, None -> raise (Impossible 5)
| Some x, None ->
Printf.printf "new test file appeared: %s\n" res;
Hashtbl.add newbestscore res x;
| None, Some x ->
Printf.printf "old test file disappeared: %s\n" res;
| Some newone, Some bestone ->
(match newone, bestone with
| Ok, Ok ->
Hashtbl.add newbestscore res Ok
| Pb x, Ok ->
Printf.printf
"PBBBBBBBB: a test file does not work anymore!!! : %s\n" res;
Printf.printf "Error : %s\n" x;
Hashtbl.add newbestscore res Ok
| Ok, Pb x ->
Printf.printf "Great: a test file now works: %s\n" res;
Hashtbl.add newbestscore res Ok
| Pb x, Pb y ->
Hashtbl.add newbestscore res (Pb x);
if not (close_enough x y)
then begin
Printf.printf
"Semipb: still error but not same error : %s\n" res;
Printf.printf "%s\n" (chop ("Old error: " ^ y));
Printf.printf "New error: %s\n" x;
end
)
);
flush stdout; flush stderr;
newbestscore
end
let regression_testing newscore best_score_file =
pr2 ("regression file: "^ best_score_file);
let (bestscore : score) =
if not (Sys.file_exists best_score_file)
then write_value (empty_score()) best_score_file;
get_value best_score_file
in
let newbestscore = regression_testing_vs newscore bestscore in
write_value newbestscore (best_score_file ^ ".old");
write_value newbestscore best_score_file;
()
let string_of_score_result v =
match v with
| Ok -> "Ok"
| Pb s -> "Pb: " ^ s
let total_scores score =
let total = hash_to_list score +> List.length in
let good = hash_to_list score +> List.filter
(fun (s, v) -> v = Ok) +> List.length in
good, total
let print_total_score score =
pr2 "--------------------------------";
pr2 "total score";
pr2 "--------------------------------";
let (good, total) = total_scores score in
pr2 (Printf.sprintf "good = %d/%d" good total)
let print_score score =
score +> hash_to_list +> List.iter (fun (k, v) ->
pr2 (Printf.sprintf "%s --> %s" k (string_of_score_result v))
);
print_total_score score;
()
(*****************************************************************************)
(* Scope management (cocci) *)
(*****************************************************************************)
(* could also make a function Common.make_scope_functions that return
* the new_scope, del_scope, do_in_scope, add_env. Kind of functor :)
*)
type ('a, 'b) scoped_env = ('a, 'b) assoc list
let rec lookup_env k env =
match env with
| [] -> raise Not_found
| []::zs -> lookup_env k zs
| ((k',v)::xs)::zs ->
if k = k'
then v
else lookup_env k (xs::zs)
let member_env_key k env =
match optionise (fun () -> lookup_env k env) with
| None -> false
| Some _ -> true
let new_scope scoped_env = scoped_env := []::!scoped_env
let del_scope scoped_env = scoped_env := List.tl !scoped_env
let do_in_new_scope scoped_env f =
begin
new_scope scoped_env;
let res = f() in
del_scope scoped_env;
res
end
let add_in_scope scoped_env def =
let (current, older) = uncons !scoped_env in
scoped_env := (def::current)::older
(* note that ocaml hashtbl store also old value of a binding when add
* add a newbinding; that's why del_scope works
*)
type ('a, 'b) scoped_h_env = {
scoped_h : ('a, 'b) Hashtbl.t;
scoped_list : ('a, 'b) assoc list;
}
let empty_scoped_h_env () = {
scoped_h = Hashtbl.create 101;
scoped_list = [[]];
}
let clone_scoped_h_env x =
{ scoped_h = Hashtbl.copy x.scoped_h;
scoped_list = x.scoped_list;
}
let lookup_h_env k env =
Hashtbl.find env.scoped_h k
let member_h_env_key k env =
match optionise (fun () -> lookup_h_env k env) with
| None -> false
| Some _ -> true
let new_scope_h scoped_env =
scoped_env := {!scoped_env with scoped_list = []::!scoped_env.scoped_list}
let del_scope_h scoped_env =
begin
List.hd !scoped_env.scoped_list +> List.iter (fun (k, v) ->
Hashtbl.remove !scoped_env.scoped_h k
);
scoped_env := {!scoped_env with scoped_list =
List.tl !scoped_env.scoped_list
}
end
let clean_scope_h scoped_env = (* keep only top level (last scope) *)
let rec loop _ =
match (!scoped_env).scoped_list with
[] | [_] -> ()
| _::_ -> del_scope_h scoped_env; loop () in
loop()
let do_in_new_scope_h scoped_env f =
begin
new_scope_h scoped_env;
let res = f() in
del_scope_h scoped_env;
res
end
let add_in_scope_h x (k,v) =
begin
Hashtbl.add !x.scoped_h k v;
x := { !x with scoped_list =
((k,v)::(List.hd !x.scoped_list))::(List.tl !x.scoped_list);
};
end
(*****************************************************************************)
(* Terminal *)
(*****************************************************************************)
(* let ansi_terminal = ref true *)
let (_execute_and_show_progress_func: (int (* length *) -> ((unit -> unit) -> unit) -> unit) ref)
= ref
(fun a b ->
failwith "no execute yet, have you included common_extra.cmo?"
)
let execute_and_show_progress len f =
!_execute_and_show_progress_func len f
(* now in common_extra.ml:
* let execute_and_show_progress len f = ...
*)
(*****************************************************************************)
(* Random *)
(*****************************************************************************)
let _init_random = Random.self_init ()
(*
let random_insert i l =
let p = Random.int (length l +1)
in let rec insert i p l =
if (p = 0) then i::l else (hd l)::insert i (p-1) (tl l)
in insert i p l
let rec randomize_list = function
[] -> []
| a::l -> random_insert a (randomize_list l)
*)
let random_list xs =
List.nth xs (Random.int (length xs))
(* todo_opti: use fisher/yates algorithm.
* ref: http://en.wikipedia.org/wiki/Knuth_shuffle
*
* public static void shuffle (int[] array)
* {
* Random rng = new Random ();
* int n = array.length;
* while (--n > 0)
* {
* int k = rng.nextInt(n + 1); // 0 <= k <= n (!)
* int temp = array[n];
* array[n] = array[k];
* array[k] = temp;
* }
* }
*)
let randomize_list xs =
let permut = permutation xs in
random_list permut
let random_subset_of_list num xs =
let array = Array.of_list xs in
let len = Array.length array in
let h = Hashtbl.create 101 in
let cnt = ref num in
while !cnt > 0 do
let x = Random.int len in
if not (Hashtbl.mem h (array.(x))) (* bugfix2: not just x :) *)
then begin
Hashtbl.add h (array.(x)) true; (* bugfix1: not just x :) *)
decr cnt;
end
done;
let objs = hash_to_list h +> List.map fst in
objs
(*****************************************************************************)
(* Flags and actions *)
(*****************************************************************************)
(* I put it inside a func as it can help to give a chance to
* change the globals before getting the options as some
* options sometimes may want to show the default value.
*)
let cmdline_flags_devel () =
[
"-debugger", Arg.Set debugger ,
" option to set if launched inside ocamldebug";
"-profile", Arg.Unit (fun () -> profile := PALL),
" gather timing information about important functions";
]
let cmdline_flags_verbose () =
[
"-verbose_level", Arg.Set_int verbose_level,
" <int> guess what";
"-disable_pr2_once", Arg.Set disable_pr2_once,
" to print more messages";
"-show_trace_profile", Arg.Set show_trace_profile,
" show trace";
]
let cmdline_flags_other () =
[
"-nocheck_stack", Arg.Clear check_stack,
" ";
"-batch_mode", Arg.Set _batch_mode,
" no interactivity"
]
(* potentially other common options but not yet integrated:
"-timeout", Arg.Set_int timeout,
" <sec> interrupt LFS or buggy external plugins";
(* can't be factorized because of the $ cvs stuff, we want the date
* of the main.ml file, not common.ml
*)
"-version", Arg.Unit (fun () ->
pr2 "version: _dollar_Date: 2008/06/14 00:54:22 _dollar_";
raise (Common.UnixExit 0)
),
" guess what";
"-shorthelp", Arg.Unit (fun () ->
!short_usage_func();
raise (Common.UnixExit 0)
),
" see short list of options";
"-longhelp", Arg.Unit (fun () ->
!long_usage_func();
raise (Common.UnixExit 0)
),
"-help", Arg.Unit (fun () ->
!long_usage_func();
raise (Common.UnixExit 0)
),
" ";
"--help", Arg.Unit (fun () ->
!long_usage_func();
raise (Common.UnixExit 0)
),
" ";
*)
let cmdline_actions () =
[
"-test_check_stack", " <limit>",
mk_action_1_arg test_check_stack_size;
]
(*****************************************************************************)
(* Postlude *)
(*****************************************************************************)
(* stuff put here cos of of forward definition limitation of ocaml *)
(* Infix trick, seen in jane street lib and harrop's code, and maybe in GMP *)
module Infix = struct
let (+>) = (+>)
let (==~) = (==~)
let (=~) = (=~)
end
let main_boilerplate f =
if not (!Sys.interactive) then
exn_to_real_unixexit (fun () ->
Sys.set_signal Sys.sigint (Sys.Signal_handle (fun _ ->
pr2 "C-c intercepted, will do some cleaning before exiting";
(* But if do some try ... with e -> and if do not reraise the exn,
* the bubble never goes at top and so I cannot really C-c.
*
* A solution would be to not raise, but do the erase_temp_file in the
* syshandler, here, and then exit.
* The current solution is to not do some wild try ... with e
* by having in the exn handler a case: UnixExit x -> raise ... | e ->
*)
Sys.set_signal Sys.sigint Sys.Signal_default;
raise (UnixExit (-1))
));
(* The finalize below makes it tedious to go back to exn when use
* 'back' in the debugger. Hence this special case. But the
* Common.debugger will be set in main(), so too late, so
* have to be quicker
*)
if Sys.argv +> Array.to_list +> List.exists (fun x -> x = "-debugger")
then debugger := true;
finalize (fun ()->
pp_do_in_zero_box (fun () ->
f(); (* <---- here it is *)
))
(fun()->
if !profile <> PNONE
then pr2 (profile_diagnostic ());
erase_temp_files ();
clear_pr2_once()
)
)
(* let _ = if not !Sys.interactive then (main ()) *)
(* based on code found in cameleon from maxence guesdon *)
let md5sum_of_string s =
let com = spf "echo %s | md5sum | cut -d\" \" -f 1"
(Filename.quote s)
in
match cmd_to_list com with
| [s] ->
(*pr2 s;*)
s
| _ -> failwith "md5sum_of_string wrong output"
let with_pr2_to_string f =
let file = new_temp_file "pr2" "out" in
redirect_stdout_stderr file f;
cat file
(* julia: convert something printed using format to print into a string *)
let format_to_string f =
let acc = ref [] in
let (pr,flush) = Format.get_formatter_output_functions() in
Format.set_formatter_output_functions
(fun s p n -> acc := String.sub s p n :: !acc)
(fun _ -> ());
let _ = f() in
Format.print_newline();
Format.print_flush();
Format.set_formatter_output_functions pr flush;
String.concat "" (List.rev !acc)
(*****************************************************************************)
(* Misc/test *)
(*****************************************************************************)
let (generic_print: 'a -> string -> string) = fun v typ ->
write_value v "/tmp/generic_print";
command2
("printf 'let (v:" ^ typ ^ ")= Common.get_value \"/tmp/generic_print\" " ^
" in v;;' " ^
" | calc.top > /tmp/result_generic_print");
cat "/tmp/result_generic_print"
+> drop_while (fun e -> not (e =~ "^#.*")) +> tail
+> unlines
+> (fun s ->
if (s =~ ".*= \\(.+\\)")
then matched1 s
else "error in generic_print, not good format:" ^ s)
(* let main () = pr (generic_print [1;2;3;4] "int list") *)
class ['a] olist (ys: 'a list) =
object(o)
val xs = ys
method view = xs
(* method fold f a = List.fold_left f a xs *)
method fold : 'b. ('b -> 'a -> 'b) -> 'b -> 'b =
fun f accu -> List.fold_left f accu xs
end
(* let _ = write_value ((new setb[])#add 1) "/tmp/test" *)
let typing_sux_test () =
let x = Obj.magic [1;2;3] in
let f1 xs = List.iter print_int xs in
let f2 xs = List.iter print_string xs in
(f1 x; f2 x)
(* let (test: 'a osetb -> 'a ocollection) = fun o -> (o :> 'a ocollection) *)
(* let _ = test (new osetb (Setb.empty)) *)
module StringSet = Set.Make (String)
(* --------------------------------------------------------------------- *)
type 'a dll = DElem of 'a dll option ref * 'a * 'a dll option ref
let get_dll cell =
match !cell with
None -> failwith "bad cell"
| Some x -> x
let add_first_dll hd x =
let (DElem(bprev,_,bnext)) as bef = hd in
let (DElem(aprev,_,anext)) as aft = get_dll bnext in
let self = DElem(ref (Some bef),x,ref (Some aft)) in
bnext := Some self; aprev := Some self;
self
let remove_last_dll hd =
let (DElem(aprev,_,anext)) as aft = hd in
let (DElem(dprev,_,dnext)) as drop = get_dll aprev in
let (DElem(bprev,_,bnext)) as bef = get_dll dprev in
aprev := Some bef; bnext := Some aft;
drop
let create_bounded_cache n hval =
let tbl = Hashtbl.create 101 in
let prev = ref None in
let next = ref None in
let lst = DElem (prev,hval,next) in
prev := Some lst; next := Some lst;
(n,ref 0,tbl,lst)
let find_bounded_cache (n,cur,tbl,lst) x =
try
let DElem(prev,hval,next) = Hashtbl.find tbl x in
let _ = remove_last_dll (get_dll next) in
let _ = add_first_dll lst hval in
profile_code ("ok"^(string_of_int n)) (fun _ -> snd hval)
with x ->
(profile_code ("miss"^(string_of_int n)) (fun _ -> ());
raise x)
let extend_bounded_cache (n,cur,tbl,lst) x v =
cur := !cur + 1;
(if !cur > n
then
for i = 1 to (n/2) do
let DElem(prev,hval,next) = remove_last_dll lst in
Hashtbl.remove tbl (fst hval);
cur := !cur - 1
done);
let elem = add_first_dll lst (x,v) in
profile_code ("add"^(string_of_int n)) (fun _ -> ());
Hashtbl.add tbl x elem
|