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
|
#!/bin/bash
#%$> out/ble.sh
#%[release = 0]
#%[measure_load_time = 0]
#%[debug_keylogger = 1]
#%[leakvar = ""]
#%#----------------------------------------------------------------------------
#%if measure_load_time
_ble_init_measure_prev=
_ble_init_measure_section=
function ble/init/measure/section {
local now=${EPOCHREALTIME:-$(date +'%s.%N')}
local s=${now%%[!0-9]*} u=000000
if [[ $s != "$now" ]]; then
u=${now##*[!0-9]}000000
u=${u::6}
fi
local stime=$s.$u time=$((s*1000000+10#0$u))
if [[ $_ble_init_measure_section ]]; then
local elapsed=$((time-_ble_init_measure_prev))
s=$((elapsed/1000))
u=00$((elapsed%1000))
u=${u:${#u}-3}
elapsed=$s.${u}ms
builtin printf '[ble.sh init %s] %s done (%s)\n' "$stime" "$_ble_init_measure_section" "$elapsed" >&2
else
builtin printf '[ble.sh init %s] start\n' "$stime" >&2
fi
_ble_init_measure_section=$1
_ble_init_measure_prev=$time
}
_ble_debug_measure_fork_count=$(echo $BASHPID)
TIMEFORMAT=' [Elapsed %Rs; CPU U:%Us S:%Ss (%P%%)]'
function ble/debug/measure-set-timeformat {
local title=$1 opts=$2
local new=$(echo $BASHPID)
local fork=$(((new-_ble_debug_measure_fork_count-1)&0xFFFF))
_ble_debug_measure_fork_count=$new
TIMEFORMAT=" [Elapsed %Rs; CPU U:%Us S:%Ss (%P%%)] $title"
[[ :$opts: != *:nofork:* ]] &&
TIMEFORMAT=$TIMEFORMAT" ($fork forks)"
}
#%end
#%if leakvar
#%%expand
$"leakvar"=__t1wJltaP9nmow__
#%%end.i
function ble/bin/grep { command grep "$@"; }
function ble/util/print { printf '%s\n' "$1"; }
source -- "${BASH_SOURCE%/*}/lib/core-debug.sh"
#%end
#%define inc
#%%[guard_name = "@_included".replace("[^_a-zA-Z0-9]", "_")]
#%%expand
#%%%if $"guard_name" != 1
#%%%%[$"guard_name" = 1]
###############################################################################
# Included from @.sh
#%%%%if leakvar
ble/debug/leakvar#check $"leakvar" "[before include @.sh]"
#%%%%end.i
#%%%%if measure_load_time
time {
#%%%%%include @.sh
ble/debug/measure-set-timeformat '@.sh'
}
#%%%%else
#%%%%%include @.sh
#%%%%end
#%%%%if leakvar
ble/debug/leakvar#check $"leakvar" "[after include @.sh]"
#%%%%end.i
#%%%end
#%%end.i
#%end
#%#----------------------------------------------------------------------------
# ble.sh -- Bash Line Editor (https://github.com/akinomyoga/ble.sh)
#
# Bash configuration designed to be sourced in interactive bash sessions.
#
# Copyright: 2013, 2015-2019, Koichi Murase <myoga.murase@gmail.com>
#
#%if measure_load_time
ble/init/measure/section 'parse'
time {
ble/init/measure/section 'source'
# load_time (2015-12-03)
# core 12ms
# decode 10ms
# color 2ms
# edit 9ms
# syntax 5ms
# ble-initialize 14ms
time {
#%end
#------------------------------------------------------------------------------
# check --help or --version
{
#%[commit_hash = getenv("BLE_GIT_COMMIT_ID")]
#%[ble_version = getenv("FULLVER")]
#%expand
##%if commit_hash != ""
_ble_init_version=$"ble_version"
##%else
###%error Failed to get the commit id (version = $"ble_version").
##%end
#%end.i
_ble_init_exit=
_ble_init_command=
_ble_init_skip=
for _ble_init_arg; do
if [ -n "$_ble_init_skip" ]; then
_ble_init_skip=
continue
fi
case $_ble_init_arg in
--version)
_ble_init_exit=0
echo "ble.sh (Bash Line Editor), version $_ble_init_version" ;;
--help)
_ble_init_exit=0
printf '%s\n' \
"# ble.sh (Bash Line Editor), version $_ble_init_version" \
'usage: source ble.sh [OPTION...]' \
'' \
'OPTION' \
'' \
' --help' \
' Show this help and exit' \
' --version' \
' Show version and exit' \
' --clear-cache' \
' Clear ble.sh cache and exit' \
' --install PREFIX' \
' Install ble.sh and exit' \
' --lib' \
' Only load ble.sh and do nothing else' \
' --test' \
' Run test and exit' \
' --update' \
' Update ble.sh and exit' \
'' \
' --rcfile=BLERC' \
' --init-file=BLERC' \
' Specify the ble init file. The default is ~/.blerc if any, or' \
' ~/.config/blesh/init.sh.' \
'' \
' --norc' \
' Do not load the ble init file.' \
'' \
' --attach=ATTACH' \
' --noattach' \
' The option "--attach" selects the strategy of "ble-attach" from the list:' \
' ATTACH = "attach" | "prompt" | "none". The default strategy is "prompt".' \
' When "attach" is specified, ble.sh immediately attaches to the session in' \
' "source ble.sh". When "prompt" is specified, ble.sh attaches to the' \
' session before the first prompt using PROMPT_COMMAND. When "none" is' \
' specified, ble.sh does not attach to the session automatically, so' \
' ble-attach needs to be called explicitly. The option "--noattach" is a' \
' synonym for "--attach=none".' \
'' \
' --inputrc=TYPE' \
' --noinputrc' \
' The option "--inputrc" selects the strategy of reconstructing user' \
' keybindings from the list: "auto" (default), "diff", "all", "user", "none".' \
' When "diff" is specified, user keybindings are extracted by the diff of the' \
' outputs of the "bind" builtin between the current session and the plain' \
' Bash. When "all" is specified, the user keybindings are extracted from' \
' /etc/inputrc and ${INPUTRC:-~/.inputrc*}. When "user" is specified, the' \
' user keybindings are extracted from ${INPUTRC:-~/.inputrc*}. When "none"' \
' is specified, the user keybindings are not reconstructed from the state of' \
' Readline, and only the bindings by "ble-bind" are applied. The option' \
' "--noinputrc" is a synonym for "--inputrc=none".' \
'' \
' --keep-rlvars' \
' Do not change readline settings for ble.sh' \
'' \
' --bash-debug-version=TYPE' \
' This controls the warning mesage for the debug version of Bash. When' \
' "full" is specified to TYPE, ble.sh prints the full message to the terminal' \
' when it is loaded in a debug version of Bash. This is the default. When' \
' "short" is specified, a short version of the message is printed. When' \
' "once" is specified, the full message is printed only once for a specific' \
' version of debug Bash. When "ignore" is specified, the message is not' \
' printed even when ble.sh is loaded in a debug version of Bash.' \
'' \
' -o BLEOPT=VALUE' \
' Set a value for the specified bleopt option.' \
' --debug-bash-output' \
' Internal settings for debugging' \
'' ;;
--test | --update | --clear-cache | --lib | --install) _ble_init_command=1 ;;
-o | --attach | --inputrc | --rcfile | --init-file | --bash-debug-version) _ble_init_skip=1 ;;
-o* | --attach=* | --inputrc=* | --rcfile=* | --init-file=* | --bash-debug-version=*) ;;
noattach | --noattach | --noinputrc | --norc | --keep-rlvars | --debug-bash-output) ;;
-*) _ble_init_command=error ;;
esac
done
unset _ble_init_skip
unset _ble_init_arg
if [ -n "$_ble_init_exit" ]; then
unset _ble_init_exit
unset _ble_init_command
unset _ble_init_version
return 0 2>/dev/null || exit 0
fi
} 2>/dev/null # set -x 対策 #D0930
#------------------------------------------------------------------------------
# check shell
if [ -z "${BASH_VERSION-}" ]; then
echo "ble.sh: This shell is not Bash. Please use this script with Bash." >&3
unset _ble_init_exit
unset _ble_init_command
unset _ble_init_version
return 1 2>/dev/null || exit 1
fi 3>&2 >/dev/null 2>&1 # set -x 対策 #D0930
if [ -z "${BASH_VERSINFO-}" ] || [ "${BASH_VERSINFO-0}" -lt 3 ]; then
echo "ble.sh: Bash with a version under 3.0 is not supported." >&3
unset -v _ble_init_exit _ble_init_command _ble_init_version
return 1 2>/dev/null || exit 1
fi 3>&2 >/dev/null 2>&1 # set -x 対策 #D0930
if [[ ! $_ble_init_command ]]; then
# We here check the cases where we do not want a line editor. We first check
# the cases that Bash provides. We also check the cases where other
# frameworks try to do a hack using an interactive Bash. We honestly do not
# want to add exceptions for every random framework that tries to do a naive
# hack using interactive sessions, but it is easier than instructing users to
# add a proper workaround/check by themselves.
if [[ ${BASH_EXECUTION_STRING+set} ]]; then
# builtin echo "ble.sh: ble.sh will not be activated for Bash started with '-c' option." >&3
_ble_init_exit=1
elif ((BASH_SUBSHELL)); then
builtin echo "ble.sh: ble.sh cannot be loaded into a subshell." >&3
_ble_init_exit=1
elif [[ $- != *i* ]]; then
case " ${BASH_SOURCE[*]##*/} " in
(*' .bashrc '* | *' .bash_profile '* | *' .profile '* | *' bashrc '* | *' profile '*) ((0)) ;;
esac &&
builtin echo "ble.sh: This is not an interactive session." >&3 || ((1))
_ble_init_exit=1
elif ! [[ -t 4 && -t 5 ]] &&
! [[ :${bleopt_connect_tty-}: == *:inherit:* && -t ${_ble_util_fd_tty_stdin:-} && -t ${_ble_util_fd_tty_stdout:-} ]] 2>/dev/null &&
! { [[ ${bleopt_connect_tty-} ]] && >/dev/tty; }
then
if [[ ${bleopt_connect_tty-} ]]; then
builtin echo "ble.sh: cannot find a controlling TTY/PTY in this session." >&3
else
builtin echo "ble.sh: stdout/stdin are not connected to TTY/PTY." >&3
fi
_ble_init_exit=1
elif [[ ${NRF_CONNECT_VSCODE-} && ! -t 3 ]]; then
# Note #D2129: VS Code Extension "nRF Connect" tries to extract an
# interactive setting by sending multiline commands to an interactive
# session. We may turn off accept_line_threshold for an nRF Connect
# session as we do for Midnight Commander, but we do not need to enable the
# line editor for nRF Connect in the first place.
_ble_init_exit=1
fi
if [[ $_ble_init_exit ]]; then
builtin unset -v _ble_init_exit _ble_init_command _ble_init_version
return 1 2>/dev/null || builtin exit 1
fi
fi 3>&2 4<&0 5>&1 &>/dev/null # set -x 対策 #D0930
{
_ble_bash=$((BASH_VERSINFO[0]*10000+BASH_VERSINFO[1]*100+BASH_VERSINFO[2]))
## @var _ble_bash_POSIXLY_CORRECT_adjusted
## 現在 POSIXLY_CORRECT 状態を待避した状態かどうかを保持します。
## @var _ble_bash_POSIXLY_CORRECT_set
## 待避した POSIXLY_CORRECT の設定・非設定状態を保持します。
## @var _ble_bash_POSIXLY_CORRECT_set
## 待避した POSIXLY_CORRECT の値を保持します。
_ble_bash_POSIXLY_CORRECT_adjusted=1
_ble_bash_POSIXLY_CORRECT_set=${POSIXLY_CORRECT+set}
_ble_bash_POSIXLY_CORRECT=${POSIXLY_CORRECT-}
POSIXLY_CORRECT=y
# 暫定対策 expand_aliases (ble/base/adjust-bash-options を呼び出す迄の暫定)
_ble_bash_expand_aliases=
\shopt -q expand_aliases &&
_ble_bash_expand_aliases=1 &&
\shopt -u expand_aliases || ((1))
# 対策 FUNCNEST
_ble_bash_FUNCNEST_adjusted=
_ble_bash_FUNCNEST=
_ble_bash_FUNCNEST_set=
_ble_bash_FUNCNEST_adjust='
if [[ ! $_ble_bash_FUNCNEST_adjusted ]]; then
_ble_bash_FUNCNEST_adjusted=1
_ble_bash_FUNCNEST_set=${FUNCNEST+set}
_ble_bash_FUNCNEST=${FUNCNEST-}
\builtin unset -v FUNCNEST
fi 2>/dev/null'
_ble_bash_FUNCNEST_restore='
if [[ $_ble_bash_FUNCNEST_adjusted ]]; then
_ble_bash_FUNCNEST_adjusted=
if [[ $_ble_bash_FUNCNEST_set ]]; then
FUNCNEST=$_ble_bash_FUNCNEST
else
\builtin unset -v FUNCNEST
fi
fi 2>/dev/null'
_ble_bash_FUNCNEST_local_adjust='
\local _ble_local_FUNCNEST _ble_local_FUNCNEST_set
_ble_local_FUNCNEST_set=${FUNCNEST+set}
_ble_local_FUNCNEST=${FUNCNEST-}
if [[ $_ble_local_FUNCNEST_set ]]; then
\local FUNCNEST
\builtin unset -v FUNCNEST
fi'
_ble_bash_FUNCNEST_local_leave='
if [[ $_ble_local_FUNCNEST_set ]]; then
FUNCNEST=$_ble_local_FUNCNEST
fi'
\builtin eval -- "$_ble_bash_FUNCNEST_adjust"
\builtin unset -v POSIXLY_CORRECT
_ble_bash_POSIXLY_CORRECT_adjust='
if [[ ! ${_ble_bash_POSIXLY_CORRECT_adjusted-} ]]; then
_ble_bash_POSIXLY_CORRECT_adjusted=1
_ble_bash_POSIXLY_CORRECT_set=${POSIXLY_CORRECT+set}
_ble_bash_POSIXLY_CORRECT=${POSIXLY_CORRECT-}
if [[ $_ble_bash_POSIXLY_CORRECT_set ]]; then
\builtin unset -v POSIXLY_CORRECT
fi
# ユーザが触ったかもしれないので何れにしても workaround を呼び出す。
ble/base/workaround-POSIXLY_CORRECT
fi'
_ble_bash_POSIXLY_CORRECT_unset='
if [[ ${POSIXLY_CORRECT+set} ]]; then
\builtin unset -v POSIXLY_CORRECT
ble/base/workaround-POSIXLY_CORRECT
fi'
_ble_bash_POSIXLY_CORRECT_local_adjust='
\builtin local _ble_local_POSIXLY_CORRECT _ble_local_POSIXLY_CORRECT_set
_ble_local_POSIXLY_CORRECT_set=${POSIXLY_CORRECT+set}
_ble_local_POSIXLY_CORRECT=${POSIXLY_CORRECT-}
'$_ble_bash_POSIXLY_CORRECT_unset
_ble_bash_POSIXLY_CORRECT_local_leave='
if [[ $_ble_local_POSIXLY_CORRECT_set ]]; then
POSIXLY_CORRECT=$_ble_local_POSIXLY_CORRECT
fi'
_ble_bash_POSIXLY_CORRECT_local_enter='
_ble_local_POSIXLY_CORRECT_set=${POSIXLY_CORRECT+set}
_ble_local_POSIXLY_CORRECT=${POSIXLY_CORRECT-}
'$_ble_bash_POSIXLY_CORRECT_unset
_ble_bash_POSIXLY_CORRECT_local_return='
\builtin local _ble_local_POSIXLY_CORRECT_ext=$?
if [[ $_ble_local_POSIXLY_CORRECT_set ]]; then
POSIXLY_CORRECT=$_ble_local_POSIXLY_CORRECT
fi
\return "$_ble_local_POSIXLY_CORRECT_ext"'
} 2>/dev/null
function ble/base/workaround-POSIXLY_CORRECT {
# This function will be overwritten by ble-decode
true
}
function ble/base/restore-POSIXLY_CORRECT {
if [[ ! $_ble_bash_POSIXLY_CORRECT_adjusted ]]; then return 0; fi # Note: set -e の為 || は駄目
_ble_bash_POSIXLY_CORRECT_adjusted=
if [[ $_ble_bash_POSIXLY_CORRECT_set ]]; then
POSIXLY_CORRECT=$_ble_bash_POSIXLY_CORRECT
else
builtin eval -- "$_ble_bash_POSIXLY_CORRECT_unset"
fi
}
## @fn ble/base/is-POSIXLY_CORRECT
## Check if the POSIX mode is enabled in the user context. This function is
## assumed to be called in the adjusted state.
function ble/base/is-POSIXLY_CORRECT {
[[ $_ble_bash_POSIXLY_CORRECT_adjusted && $_ble_bash_POSIXLY_CORRECT_set ]]
}
function ble/variable#load-user-state/variable:FUNCNEST {
if [[ $_ble_bash_FUNCNEST_adjusted ]]; then
__ble_var_set=$_ble_bash_FUNCNEST_set
__ble_var_val=$_ble_bash_FUNCNEST
return 0
elif [[ ${_ble_local_FUNCNEST_set-} ]]; then
__ble_var_set=$_ble_local_FUNCNEST_set
__ble_var_set=$_ble_local_FUNCNEST
return 0
else
return 1
fi
}
function ble/variable#load-user-state/variable:POSIXLY_CORRECT {
if [[ $_ble_bash_POSIXLY_CORRECT_adjusted ]]; then
__ble_var_set=$_ble_bash_POSIXLY_CORRECT_set
__ble_var_val=$_ble_bash_POSIXLY_CORRECT
return 0
elif [[ ${_ble_local_POSIXLY_CORRECT_set-} ]]; then
__ble_var_set=$_ble_local_POSIXLY_CORRECT_set
__ble_var_set=$_ble_local_POSIXLY_CORRECT
return 0
else
return 1
fi
}
## @fn ble/base/list-shopt names...
## @var[out] shopt
if ((_ble_bash>=40100)); then
function ble/base/list-shopt { shopt=$BASHOPTS; }
else
function ble/base/list-shopt {
shopt=
local name
for name; do
shopt -q "$name" 2>/dev/null && shopt=$shopt:$name
done
}
fi 2>/dev/null # set -x 対策
function ble/base/evaldef {
local shopt
ble/base/list-shopt extglob expand_aliases
shopt -s extglob
shopt -u expand_aliases
builtin eval -- "$1"; local ext=$?
[[ :$shopt: == *:extglob:* ]] || shopt -u extglob
[[ :$shopt: != *:expand_aliases:* ]] || shopt -s expand_aliases
return "$ext"
}
# will be overwritten by src/util.sh
if ((_ble_bash>=50300)); then
function ble/util/assign { builtin eval -- "$1=\${ builtin eval -- \"\$2\"; }"; }
else
function ble/util/assign { builtin eval -- "$1=\$(builtin eval -- \"\$2\")"; }
fi
{
_ble_bash_builtins_adjusted=
_ble_bash_builtins_save=
} 2>/dev/null # set -x 対策
function ble/base/adjust-builtin-wrappers/.impl1 {
# Note: 何故か local POSIXLY_CORRECT の効果が
# builtin unset -v POSIXLY_CORRECT しても残存するので関数に入れる。
# Note: set -o posix にしても read, type, builtin, local 等は上書き
# された儘なので難しい。unset -f builtin さえすれば色々動く様になる
# ので builtin は unset -f builtin してしまう。
unset -f builtin
builtin local builtins1 keywords1
builtins1=(builtin unset enable unalias return break continue declare local typeset eval exec set)
keywords1=(if then elif else case esac while until for select do done '{' '}' '[[' function)
if [[ ! $_ble_bash_builtins_adjusted ]]; then
_ble_bash_builtins_adjusted=1
builtin local defs
ble/util/assign defs '
\builtin declare -f "${builtins1[@]}" || ((1))
\builtin alias "${builtins1[@]}" "${keywords1[@]}" || ((1))' # set -e 対策
_ble_bash_builtins_save=$defs
fi
builtin local POSIXLY_CORRECT=y
builtin unset -f "${builtins1[@]}"
builtin unalias "${builtins1[@]}" "${keywords1[@]}" || ((1)) # set -e 対策
builtin eval -- "$_ble_bash_POSIXLY_CORRECT_unset"
}
function ble/base/adjust-builtin-wrappers/.impl2 {
# Workaround (bash-3.0..4.3) #D0722
#
# builtin unset -v POSIXLY_CORRECT でないと unset -f : できないが、bash-3.0
# -- 4.3 のバグで、local POSIXLY_CORRECT の時、builtin unset -v
# POSIXLY_CORRECT しても POSIXLY_CORRECT が有効であると判断されるので、
# "unset -f :" (非POSIX関数名) は別関数で実行する事にする。呼び出し元で既に
# builtin unset -v POSIXLY_CORRECT されている事を前提とする。
# function :, alias : の保存
local defs
ble/util/assign defs 'LC_ALL= LC_MESSAGES=C builtin type :; alias :' || ((1)) # set -e 対策
defs=${defs#$': is a shell builtin\n'}
_ble_bash_builtins_save=$_ble_bash_builtins_save$'\n'$defs
builtin unset -f :
builtin unalias : || ((1)) # set -e 対策
}
## @fn ble/base/adjust-builtin-wrappers
##
## Note: This function needs to be called after adjusting POSIXLY_CORRECT by
## calling « builtin eval -- "$_ble_bash_POSIXLY_CORRECT_adjust" »
##
## Note (#D2221) We have been delayed the execution of "unset -f :"
## (adjust-builtin-wrappers-2) until POSIXLY_CORRECT is unset. However, .
## we can now call "ble/base/adjust-builtin-wrappers/.impl2" immediately
## after "ble/base/adjust-builtin-wrappers/.impl1" because we now unset
## POSIXLY_CORRECT earlier. We combine those two functions again.
##
function ble/base/adjust-builtin-wrappers {
ble/base/adjust-builtin-wrappers/.impl1
# Note (#D2221): In Bash 3.0 and 3.1, when "local POSIXLY_CORRECT" is used in
# a function, the POSIX mode remains effective even after the function
# returns. This can be fixed by calling "unset -v POSIXLY_CORRECT".
builtin unset -v POSIXLY_CORRECT
ble/base/adjust-builtin-wrappers/.impl2
} 2>/dev/null
function ble/base/restore-builtin-wrappers {
if [[ $_ble_bash_builtins_adjusted ]]; then
_ble_bash_builtins_adjusted=
ble/base/evaldef "$_ble_bash_builtins_save"
return 0
fi
}
{
ble/base/adjust-builtin-wrappers
# 対策 expand_aliases (暫定) 終了
if [[ $_ble_bash_expand_aliases ]]; then
shopt -s expand_aliases
fi
} 2>/dev/null # set -x 対策
# From src/util.sh
function ble/variable#copy-state {
local src=$1 dst=$2
if [[ ${!src+set} ]]; then
builtin eval -- "$dst=\${$src}"
else
builtin unset -v "$dst[0]" 2>/dev/null || builtin unset -v "$dst"
fi
}
# BASH_XTRACEFD は書き換えると勝手に元々設定されていた fd を閉じてしまうので、
# 元々の fd を dup しておくなど特別な配慮が必要。
{
_ble_bash_xtrace=()
_ble_bash_xtrace_debug_enabled=
_ble_bash_xtrace_debug_filename=
_ble_bash_xtrace_debug_fd=
_ble_bash_XTRACEFD=
_ble_bash_XTRACEFD_set=
_ble_bash_XTRACEFD_dup=
_ble_bash_PS4=
} 2>/dev/null # set -x 対策
# From src/util.sh (ble/fd#is-open and ble/fd#alloc/.nextfd)
function ble/base/xtrace/.fdcheck { >&"$1"; } 2>/dev/null
function ble/base/xtrace/.fdnext {
local _ble_local_init=${_ble_util_openat_nextfd:=${bleopt_openat_base:-30}}
for (($1=_ble_local_init;$1<_ble_local_init+1024;$1++)); do
ble/base/xtrace/.fdcheck "${!1}" || break
done
(($1<_ble_local_init+1024)) ||
{ (($1=_ble_local_init,_ble_util_openat_nextfd++)); builtin eval "exec ${!1}>&-"; } ||
((1))
}
function ble/base/xtrace/.log {
local open=---- close=----
if ((_ble_bash>=40200)); then
builtin printf '%s [%(%F %T %Z)T] %s %s\n' "$open" -1 "$1" "$close"
else
local date
ble/util/assign date 'date 2>/dev/null'
builtin printf '%s [%s] %s %s\n' "$open" "$date" "$1" "$close"
fi >&"${BASH_XTRACEFD:-2}"
}
function ble/base/xtrace/adjust {
local level=${#_ble_bash_xtrace[@]} IFS=$' \t\n'
if [[ $- == *x* ]]; then
_ble_bash_xtrace[level]=1
else
_ble_bash_xtrace[level]=
fi
set +x
((_ble_bash>=40000&&level==0)) || return 0
_ble_bash_xtrace_debug_enabled=
if [[ ${bleopt_debug_xtrace:-/dev/null} == /dev/null ]]; then
if [[ $_ble_bash_xtrace_debug_fd ]]; then
builtin eval "exec $_ble_bash_xtrace_debug_fd>&-" || return 0 # disable=#D2164 (here bash4+)
_ble_bash_xtrace_debug_filename=
_ble_bash_xtrace_debug_fd=
fi
else
if [[ $_ble_bash_xtrace_debug_filename != "$bleopt_debug_xtrace" ]]; then
_ble_bash_xtrace_debug_filename=$bleopt_debug_xtrace
[[ $_ble_bash_xtrace_debug_fd ]] || ble/base/xtrace/.fdnext _ble_bash_xtrace_debug_fd
builtin eval "exec $_ble_bash_xtrace_debug_fd>>\"$bleopt_debug_xtrace\"" || return 0
fi
_ble_bash_XTRACEFD=${BASH_XTRACEFD-}
_ble_bash_XTRACEFD_set=${BASH_XTRACEFD+set}
if [[ ${BASH_XTRACEFD-} =~ ^[0-9]+$ ]] && ble/base/xtrace/.fdcheck "$BASH_XTRACEFD"; then
ble/base/xtrace/.fdnext _ble_bash_XTRACEFD_dup
builtin eval "exec $_ble_bash_XTRACEFD_dup>&$BASH_XTRACEFD" || return 0
builtin eval "exec $BASH_XTRACEFD>&$_ble_bash_xtrace_debug_fd" || return 0
else
_ble_bash_XTRACEFD_dup=
local newfd; ble/base/xtrace/.fdnext newfd
builtin eval "exec $newfd>&$_ble_bash_xtrace_debug_fd" || return 0
BASH_XTRACEFD=$newfd
fi
ble/variable#copy-state PS4 _ble_base_PS4
PS4=${bleopt_debug_xtrace_ps4:-'+ '}
_ble_bash_xtrace_debug_enabled=1
ble/base/xtrace/.log "$FUNCNAME"
set -x
fi
}
function ble/base/xtrace/restore {
local level=$((${#_ble_bash_xtrace[@]}-1)) IFS=$' \t\n'
((level>=0)) || return 0
if [[ ${_ble_bash_xtrace[level]-} ]]; then
set -x
else
set +x
fi
builtin unset -v '_ble_bash_xtrace[level]'
((_ble_bash>=40000&&level==0)) || return 0
if [[ $_ble_bash_xtrace_debug_enabled ]]; then
ble/base/xtrace/.log "$FUNCNAME"
_ble_bash_xtrace_debug_enabled=
# Note: ユーザーの BASH_XTRACEFD にごみが混入しない様にする為、
# BASH_XTRACEFD を書き換える前に先に PS4 を戻す。
ble/variable#copy-state _ble_base_PS4 PS4
if [[ $_ble_bash_XTRACEFD_dup ]]; then
# BASH_XTRACEFD の fd を元の出力先に繋ぎ直す
builtin eval "exec $BASH_XTRACEFD>&$_ble_bash_XTRACEFD_dup" &&
builtin eval "exec $_ble_bash_XTRACEFD_dup>&-" || ((1)) # disable=#D2164 (here bash4+)
else
# BASH_XTRACEFD の fd は新しく割り当てた fd なので値上書きで閉じて良い
if [[ $_ble_bash_XTRACEFD_set ]]; then
BASH_XTRACEFD=$_ble_bash_XTRACEFD
else
builtin unset -v BASH_XTRACEFD
fi
fi
fi
}
## @fn ble/base/.adjust-bash-options vset vshopt
## @var[out] $vset
## @var[out] $vshopt
function ble/base/.adjust-bash-options {
builtin eval -- "$1=\$-"
set +evukT -B
ble/base/xtrace/adjust
[[ $2 == shopt ]] || local shopt
# Note: nocasematch は bash-3.1 以上
ble/base/list-shopt extdebug nocasematch
[[ $2 == shopt ]] || builtin eval -- "$2=\$shopt"
shopt -u extdebug
shopt -u nocasematch 2>/dev/null
return 0
} 2>/dev/null # set -x 対策
## @fn ble/base/.restore-bash-options var_set var_shopt
## @param[out] var_set var_shopt
function ble/base/.restore-bash-options {
local set=${!1} shopt=${!2}
[[ :$shopt: == *:nocasematch:* ]] && shopt -s nocasematch
[[ :$shopt: == *:extdebug:* ]] && shopt -s extdebug
ble/base/xtrace/restore
[[ $set == *B* ]] || set +B
[[ $set == *T* ]] && set -T
[[ $set == *k* ]] && set -k
[[ $set == *u* ]] && set -u
[[ $set == *v* ]] && set -v
[[ $set == *e* ]] && set -e # set -e は最後
return 0
} 2>/dev/null # set -x 対策
{
: "${_ble_bash_options_adjusted=}"
_ble_bash_set=$-
_ble_bash_shopt=${BASHOPTS-}
} 2>/dev/null # set -x 対策
function ble/base/adjust-bash-options {
[[ $_ble_bash_options_adjusted ]] && return 1 || ((1)) # set -e 対策
_ble_bash_options_adjusted=1
ble/base/.adjust-bash-options _ble_bash_set _ble_bash_shopt
# Note: expand_aliases はユーザー設定を復元する為に記録する
_ble_bash_expand_aliases=
shopt -q expand_aliases 2>/dev/null &&
_ble_bash_expand_aliases=1
# locale 待避
# Note #D1854: ble/widget/display-shell-version で此処で待避した変数を参照す
# る事に注意する。此処に新しい変数を追加する時は display-shell-version の方
# にも処理スキップを追加する必要がある。
ble/variable#copy-state LC_ALL _ble_bash_LC_ALL
if [[ ${LC_ALL-} ]]; then
ble/variable#copy-state LC_CTYPE _ble_bash_LC_CTYPE
ble/variable#copy-state LC_MESSAGES _ble_bash_LC_MESSAGES
ble/variable#copy-state LC_NUMERIC _ble_bash_LC_NUMERIC
ble/variable#copy-state LC_TIME _ble_bash_LC_TIME
ble/variable#copy-state LANG _ble_bash_LANG
[[ ${LC_CTYPE-} ]] && LC_CTYPE=$LC_ALL
[[ ${LC_MESSAGES-} ]] && LC_MESSAGES=$LC_ALL
[[ ${LC_NUMERIC-} ]] && LC_NUMERIC=$LC_ALL
[[ ${LC_TIME-} ]] && LC_TIME=$LC_ALL
LANG=$LC_ALL
LC_ALL=
fi
ble/variable#copy-state LC_COLLATE _ble_bash_LC_COLLATE
LC_COLLATE=C
# TMOUT 確認 #D1630 WA readonly TMOUT
if local TMOUT= 2>/dev/null; then # #D1630 WA
_ble_bash_tmout_wa=()
else
_ble_bash_tmout_wa=(-t 2147483647)
fi
} 2>/dev/null # set -x 対策 #D0930 / locale 変更
function ble/base/restore-bash-options {
[[ $_ble_bash_options_adjusted ]] || return 1
_ble_bash_options_adjusted=
# locale 復元
ble/variable#copy-state _ble_bash_LC_COLLATE LC_COLLATE
if [[ $_ble_bash_LC_ALL ]]; then
ble/variable#copy-state _ble_bash_LC_CTYPE LC_CTYPE
ble/variable#copy-state _ble_bash_LC_MESSAGES LC_MESSAGES
ble/variable#copy-state _ble_bash_LC_NUMERIC LC_NUMERIC
ble/variable#copy-state _ble_bash_LC_TIME LC_TIME
ble/variable#copy-state _ble_bash_LANG LANG
fi
ble/variable#copy-state _ble_bash_LC_ALL LC_ALL
[[ $_ble_bash_nocasematch ]] && shopt -s nocasematch
ble/base/.restore-bash-options _ble_bash_set _ble_bash_shopt
} 2>/dev/null # set -x 対策 #D0930 / locale 変更
function ble/base/recover-bash-options {
# bind -x が終わる度に設定が復元されてしまうので毎回設定し直す #D1526 #D1574
if [[ $_ble_bash_expand_aliases ]]; then
shopt -s expand_aliases
else
shopt -u expand_aliases
fi
}
function ble/variable#load-user-state/variable:LC_ALL/.impl {
local __ble_save=_ble_bash_$1
__ble_var_set=${!__ble_save+set}
__ble_var_val=${!__ble_save-}
[[ $__ble_var_set ]] && ble/variable#get-attr -v __ble_var_att "$1"
return 0
}
function ble/variable#load-user-state/variable:LC_COLLATE {
ble/variable#load-user-state/variable:LC_ALL/.impl LC_COLLATE
}
function ble/variable#load-user-state/variable:LC_ALL {
ble/variable#load-user-state/variable:LC_ALL/.impl LC_ALL
}
function ble/variable#load-user-state/variable:LC_CTYPE {
[[ $_ble_bash_LC_ALL ]] && ble/variable#load-user-state/variable:LC_ALL/.impl LC_CTYPE
}
function ble/variable#load-user-state/variable:LC_MESSAGES {
[[ $_ble_bash_LC_ALL ]] && ble/variable#load-user-state/variable:LC_ALL/.impl LC_MESSAGES
}
function ble/variable#load-user-state/variable:LC_NUMERIC {
[[ $_ble_bash_LC_ALL ]] && ble/variable#load-user-state/variable:LC_ALL/.impl LC_NUMERIC
}
function ble/variable#load-user-state/variable:LC_TIME {
[[ $_ble_bash_LC_ALL ]] && ble/variable#load-user-state/variable:LC_ALL/.impl LC_TIME
}
function ble/variable#load-user-state/variable:LANG {
[[ $_ble_bash_LC_ALL ]] && ble/variable#load-user-state/variable:LC_ALL/.impl LANG
}
{ ble/base/adjust-bash-options; } &>/dev/null # set -x 対策 #D0930
function ble/init/force-load-inputrc {
builtin unset -f "$FUNCNAME"
builtin bind &>/dev/null # force to load .inputrc
# WA #D1534 workaround for msys2 .inputrc
if [[ $OSTYPE == msys* ]]; then
local bind_emacs
ble/util/assign bind_emacs 'builtin bind -m emacs -p 2>/dev/null'
[[ $'\n'$bind_emacs$'\n' == *$'\n"\\C-?": backward-kill-line\n' ]] &&
builtin bind -m emacs '"\C-?": backward-delete-char' 2>/dev/null
fi
}
ble/init/force-load-inputrc
if [[ ! -o emacs && ! -o vi && ! $_ble_init_command ]]; then
builtin echo "ble.sh: ble.sh is not intended to be used with the line-editing mode disabled (--noediting)." >&2
ble/base/restore-bash-options
ble/base/restore-builtin-wrappers
ble/base/restore-POSIXLY_CORRECT
builtin eval -- "$_ble_bash_FUNCNEST_restore"
builtin unset -v _ble_bash
return 1 2>/dev/null || builtin exit 1
fi
if shopt -q restricted_shell; then
builtin echo "ble.sh: ble.sh is not intended to be used in restricted shells (--restricted)." >&2
ble/base/restore-bash-options
ble/base/restore-builtin-wrappers
ble/base/restore-POSIXLY_CORRECT
builtin eval -- "$_ble_bash_FUNCNEST_restore"
builtin unset -v _ble_bash
return 1 2>/dev/null || builtin exit 1
fi
#--------------------------------------
# save IFS / BASH_REMATCH
function ble/init/adjust-IFS {
_ble_init_original_IFS_set=${IFS+set}
_ble_init_original_IFS=$IFS
IFS=$' \t\n'
}
function ble/init/restore-IFS {
if [[ $_ble_init_original_IFS_set ]]; then
IFS=$_ble_init_original_IFS
else
builtin unset -v IFS
fi
builtin unset -v _ble_init_original_IFS_set
builtin unset -v _ble_init_original_IFS
}
function ble/variable#load-user-state/variable:IFS {
__ble_var_set=${_ble_init_original_IFS_set-}
__ble_var_val=${_ble_init_original_IFS-}
ble/variable#get-attr -v __ble_var_att IFS
return 0
}
if ((_ble_bash>=50100)); then
_ble_bash_BASH_REMATCH_level=0
_ble_bash_BASH_REMATCH=()
function ble/base/adjust-BASH_REMATCH {
((_ble_bash_BASH_REMATCH_level++==0)) || return 0
_ble_bash_BASH_REMATCH=("${BASH_REMATCH[@]}")
}
function ble/base/restore-BASH_REMATCH {
((_ble_bash_BASH_REMATCH_level>0&&
--_ble_bash_BASH_REMATCH_level==0)) || return 0
BASH_REMATCH=("${_ble_bash_BASH_REMATCH[@]}")
}
else
_ble_bash_BASH_REMATCH_level=0
_ble_bash_BASH_REMATCH=()
_ble_bash_BASH_REMATCH_rex=none
## @fn ble/base/adjust-BASH_REMATCH/increase delta
## @param[in] delta
## @var[in,out] i rex
function ble/base/adjust-BASH_REMATCH/increase {
local delta=$1
((delta)) || return 1
((i+=delta))
if ((delta==1)); then
rex=$rex.
else
rex=$rex.{$delta}
fi
}
function ble/base/adjust-BASH_REMATCH/is-updated {
local i n=${#_ble_bash_BASH_REMATCH[@]}
((n!=${#BASH_REMATCH[@]})) && return 0
for ((i=0;i<n;i++)); do
[[ ${_ble_bash_BASH_REMATCH[i]} != "${BASH_REMATCH[i]}" ]] && return 0
done
return 1
}
# This is a simplified version of ble/string#index-of text sub
function ble/base/adjust-BASH_REMATCH/.find-substr {
local t=${1#*"$2"}
((ret=${#1}-${#t}-${#2},ret<0&&(ret=-1),ret>=0))
}
function ble/base/adjust-BASH_REMATCH {
((_ble_bash_BASH_REMATCH_level++==0)) || return 0
ble/base/adjust-BASH_REMATCH/is-updated || return 1
local size=${#BASH_REMATCH[@]}
if ((size==0)); then
_ble_bash_BASH_REMATCH=()
_ble_bash_BASH_REMATCH_rex=none
return 0
fi
local rex= i=0
local text=$BASH_REMATCH sub ret isub
local -a rparens=()
local isub rex i=0 count=0
for ((isub=1;isub<size;isub++)); do
local sub=${BASH_REMATCH[isub]}
# 既存の子一致の孫一致になるか確認
while ((count>=1)); do
local end=${rparens[count-1]}
if ble/base/adjust-BASH_REMATCH/.find-substr "${text:i:end-i}" "$sub"; then
ble/base/adjust-BASH_REMATCH/increase "$ret"
((rparens[count++]=i+${#sub}))
rex=$rex'('
break
else
ble/base/adjust-BASH_REMATCH/increase "$((end-i))"
rex=$rex')'
builtin unset -v 'rparens[--count]'
fi
done
((count>0)) && continue
# 新しい子一致
if ble/base/adjust-BASH_REMATCH/.find-substr "${text:i}" "$sub"; then
ble/base/adjust-BASH_REMATCH/increase "$ret"
((rparens[count++]=i+${#sub}))
rex=$rex'('
else
break # 復元失敗
fi
done
while ((count>=1)); do
local end=${rparens[count-1]}
ble/base/adjust-BASH_REMATCH/increase "$((end-i))"
rex=$rex')'
builtin unset -v 'rparens[--count]'
done
ble/base/adjust-BASH_REMATCH/increase "$((${#text}-i))"
_ble_bash_BASH_REMATCH=("${BASH_REMATCH[@]}")
_ble_bash_BASH_REMATCH_rex=$rex
}
function ble/base/restore-BASH_REMATCH {
((_ble_bash_BASH_REMATCH_level>0&&
--_ble_bash_BASH_REMATCH_level==0)) || return 0
[[ ${_ble_bash_BASH_REMATCH-} =~ $_ble_bash_BASH_REMATCH_rex ]]
}
fi
function ble/variable#load-user-state/variable:BASH_REMATCH {
if ((_ble_bash_BASH_REMATCH_level)); then
__ble_var_set=${BASH_REMATCH+set}
__ble_var_val=("${_ble_bash_BASH_REMATCH[@]}")
ble/variable#get-attr -v __ble_var_att BASH_REMATCH
return 0
else
return 1
fi
}
ble/init/adjust-IFS
ble/base/adjust-BASH_REMATCH
## @fn ble/init/clean-up [opts]
function ble/init/clean-up {
local ext=$? opts=$1 # preserve exit status
# 一時グローバル変数消去
builtin unset -v _ble_init_version
builtin unset -v _ble_init_exit
builtin unset -v _ble_init_command
builtin unset -v _ble_init_attached
# 状態復元
ble/base/restore-BASH_REMATCH
ble/init/restore-IFS
if [[ :$opts: != *:check-attach:* || ! $_ble_attached ]]; then
ble/base/restore-bash-options
ble/base/restore-POSIXLY_CORRECT
ble/base/restore-builtin-wrappers
builtin eval -- "$_ble_bash_FUNCNEST_restore"
fi
return "$ext"
}
#------------------------------------------------------------------------------
# read arguments
function ble/util/put { builtin printf '%s' "$1"; }
function ble/util/print { builtin printf '%s\n' "$1"; }
function ble/util/print-lines { builtin printf '%s\n' "$@"; }
_ble_base_arguments_opts=
_ble_base_arguments_attach=
_ble_base_arguments_rcfile=
## @fn ble/base/read-blesh-arguments args
## @var[out] _ble_base_arguments_opts
## @var[out] _ble_base_arguments_attach
## @var[out] _ble_base_arguments_rcfile
function ble/base/read-blesh-arguments {
local opts=
local opt_attach=prompt
local opt_inputrc=auto
builtin unset -v _ble_init_command # 再解析
while (($#)); do
local arg=$1; shift
case $arg in
(--noattach|noattach)
opt_attach=none ;;
(--attach=*) opt_attach=${arg#*=} ;;
(--attach)
if (($#)); then
opt_attach=$1; shift
else
opt_attach=attach
opts=$opts:E
ble/util/print "ble.sh ($arg): an option argument is missing." >&2
fi ;;
(--noinputrc)
opt_inputrc=none ;;
(--inputrc=*) opt_inputrc=${arg#*=} ;;
(--inputrc)
if (($#)); then
opt_inputrc=$1; shift
else
opt_inputrc=inputrc
opts=$opts:E
ble/util/print "ble.sh ($arg): an option argument is missing." >&2
fi ;;
(--rcfile=*|--init-file=*|--rcfile|--init-file)
if [[ $arg != *=* ]]; then
local rcfile=$1; shift
else
local rcfile=${arg#*=}
fi
_ble_base_arguments_rcfile=${rcfile:-/dev/null}
if [[ ! $rcfile || ! -e $rcfile ]]; then
ble/util/print "ble.sh ($arg): '$rcfile' does not exist." >&2
opts=$opts:E
elif [[ ! -r $rcfile ]]; then
ble/util/print "ble.sh ($arg): '$rcfile' is not readable." >&2
opts=$opts:E
fi ;;
(--norc)
_ble_base_arguments_rcfile=/dev/null ;;
(--keep-rlvars)
opts=$opts:keep-rlvars ;;
(--bash-debug-version=*|--bash-debug-version)
local value=
if [[ $arg == *=* ]]; then
value=${arg#*=}
elif (($#)); then
value=$1; shift
else
opts=$opts:E
ble/util/print "ble.sh ($arg): an option argument is missing." >&2
continue
fi
case $value in
(full|short|once|ignore)
opts=$opts:bash-debug-version=$value ;;
(*)
opts=$opts:E
ble/util/print "ble.sh ($arg): unrecognized value '$value'." >&2
esac ;;
(--debug-bash-output)
bleopt_internal_suppress_bash_output= ;;
(--test | --update | --clear-cache | --lib | --install)
if [[ $_ble_init_command ]]; then
ble/util/print "ble.sh ($arg): the option '--$_ble_init_command' has already been specified." >&2
opts=$opts:E
else
_ble_init_command=${arg#--}
fi ;;
(--*)
ble/util/print "ble.sh: unrecognized long option '$arg'" >&2
opts=$opts:E ;;
(-?*)
local i c
for ((i=1;i<${#arg};i++)); do
c=${arg:i:1}
case -$c in
(-o)
if ((i+1<${#arg})); then
local oarg=${arg:i+1}
i=${#arg}
elif (($#)); then
local oarg=$1; shift
else
opts=$opts:E
i=${#arg}
continue
fi
local rex='^[_a-zA-Z][_a-zA-Z0-9]*='
if [[ $oarg =~ $rex ]]; then
builtin eval -- "bleopt_${oarg%%=*}=\${oarg#*=}"
else
ble/util/print "ble.sh: unrecognized option '-o $oarg'" >&2
opts=$opts:E
fi ;;
(-*)
ble/util/print "ble.sh: unrecognized option '-$c'" >&2
opts=$opts:E ;;
esac
done
;;
(*)
if [[ ${_ble_init_command-} ]]; then
_ble_init_command[${#_ble_init_command[@]}]=$arg
else
ble/util/print "ble.sh: unrecognized argument '$arg'" >&2
opts=$opts:E
fi ;;
esac
done
_ble_base_arguments_opts=$opts
_ble_base_arguments_attach=$opt_attach
_ble_base_arguments_inputrc=$opt_inputrc
[[ :$opts: != *:E:* ]]
}
if ! ble/base/read-blesh-arguments "$@"; then
builtin echo "ble.sh: cancel initialization." >&2
ble/init/clean-up 2>/dev/null # set -x 対策 #D0930
builtin unset -v _ble_bash
return 2 2>/dev/null || builtin exit 2
fi
if [[ ${_ble_base-} ]]; then
[[ $_ble_init_command ]] && _ble_init_attached=$_ble_attached
if ! _ble_bash=$_ble_bash ble/base/unload-for-reload; then
builtin echo "ble.sh: an old version of ble.sh seems to be already loaded." >&2
ble/init/clean-up 2>/dev/null # set -x 対策 #D0930
return 1 2>/dev/null || builtin exit 1
fi
fi
#------------------------------------------------------------------------------
# Initialize version information
_ble_bash_loaded_in_function=0
local _ble_local_test 2>/dev/null && _ble_bash_loaded_in_function=1
_ble_version=0
BLE_VERSION=$_ble_init_version
function ble/base/initialize-version-variables {
local version=$BLE_VERSION
local hash=
if [[ $version == *+* ]]; then
hash=${version#*+}
version=${version%%+*}
fi
local status=release
if [[ $version == *-* ]]; then
status=${version#*-}
version=${version%%-*}
fi
if [[ $version == *~* ]]; then
status=${version#*~}
version=${version%%~*}
fi
local major=${version%%.*}; version=${version#*.}
local minor=${version%%.*}; version=${version#*.}
local patch=${version%%.*}
((_ble_version=major*10000+minor*100+patch))
BLE_VERSINFO=("$major" "$minor" "$patch" "$hash" "$status" noarch)
BLE_VER=$_ble_version
}
function ble/base/clear-version-variables {
builtin unset -v _ble_bash _ble_version BLE_VERSION BLE_VERSINFO BLE_VER
}
ble/base/initialize-version-variables
#------------------------------------------------------------------------------
# workarounds for builtin read
function ble/bash/read {
local TMOUT= 2>/dev/null # #D1630 WA readonly TMOUT
builtin read "${_ble_bash_tmout_wa[@]}" -r "$@"
}
function ble/bash/read-timeout { builtin read -t "$@"; }
# WA for bash-5.2 nested read by WINCH causes corrupted "running_trap" (#D1982)
_ble_bash_read_winch=
if ((50200<=_ble_bash&&_ble_bash<50300)); then
function ble/bash/read/.process-winch {
if [[ $_ble_bash_read_winch != - ]]; then
local _ble_local_handler=$_ble_bash_read_winch
local _ble_bash_read_winch=
builtin eval -- "$_ble_local_handler"
fi
}
function ble/bash/read {
local TMOUT= 2>/dev/null # #D1630 WA readonly TMOUT
local _ble_bash_read_winch=-
builtin read "${_ble_bash_tmout_wa[@]}" -r "$@"; local _ble_local_ext=$?
ble/bash/read/.process-winch
return "$_ble_local_ext"
}
function ble/bash/read-timeout {
local _ble_bash_read_winch=-
builtin read -t "$@"; local _ble_local_ext=$?
ble/bash/read/.process-winch
return "$_ble_local_ext"
}
fi
#------------------------------------------------------------------------------
# check environment
# ble/bin
if ((_ble_bash>=40000)); then
function ble/bin#has { builtin type -t -- "$@" &>/dev/null; }
else
function ble/bin#has {
local cmd
for cmd; do builtin type -t -- "$cmd" || return 1; done &>/dev/null
return 0
}
fi
## @fn ble/bin#get-path command
## @var[out] path
function ble/bin#get-path {
local cmd=$1
ble/util/assign path 'builtin type -P -- "$cmd" 2>/dev/null' && [[ $path ]] || return 1
# Resolve relative paths
if [[ ( $path == ./* || $path == ../* ) && -r $PWD/$path && -x $PWD/$path ]]; then
path=$PWD/$path
fi
return 0
}
## @fn ble/bin/.default-utility-path commands...
## 取り敢えず ble/bin/* からコマンドを呼び出せる様にします。
function ble/bin/.default-utility-path {
local cmd
for cmd; do
builtin eval "function ble/bin/$cmd { command $cmd \"\$@\"; }"
done
}
## @fn ble/bin#freeze-utility-path [-n] commands...
## PATH が破壊された後でも ble が動作を続けられる様に、
## 現在の PATH で基本コマンドのパスを固定して ble/bin/* から使える様にする。
##
## 実装に ble/util/assign を使用しているので ble-core 初期化後に実行する必要がある。
##
function ble/bin#freeze-utility-path {
local cmd path q=\' Q="'\''" fail= flags=
for cmd; do
if [[ $cmd == -n ]]; then
flags=n$flags
continue
fi
[[ $flags == *n* ]] && ble/bin#has ble/bin/"$cmd" && continue
ble/bin#has ble/bin/.frozen:"$cmd" && continue
if ble/bin#get-path "$cmd"; then
builtin eval "function ble/bin/$cmd { command '${path//$q/$Q}' \"\$@\"; }"
else
fail=1
fi
done
((!fail))
}
# POSIX utilities
_ble_init_posix_command_list=(sed date rm mkdir mkfifo sleep stty tty sort awk chmod grep cat wc mv sh od cp ps)
function ble/init/check-environment {
if ! ble/bin#has "${_ble_init_posix_command_list[@]}"; then
local cmd commandMissing=
for cmd in "${_ble_init_posix_command_list[@]}"; do
if ! ble/bin#has "$cmd"; then
commandMissing="$commandMissing\`$cmd', "
fi
done
ble/util/print "ble.sh: insane environment: The command(s), ${commandMissing}are not found. Check your environment variable PATH. If these commands are not available in your system, please install them." >&2
# try to fix PATH
local default_path
ble/util/assign default_path 'command -p getconf PATH 2>/dev/null'
[[ $default_path ]] || return 1
local original_path=$PATH
export PATH=${default_path}${PATH:+:}${PATH}
[[ :$PATH: == *:/bin:* ]] || PATH=/bin${PATH:+:}$PATH
[[ :$PATH: == *:/usr/bin:* ]] || PATH=/usr/bin${PATH:+:}$PATH
if ! ble/bin#has "${_ble_init_posix_command_list[@]}"; then
PATH=$original_path
return 1
fi
ble/util/print "ble.sh: modified PATH=${PATH::${#PATH}-${#original_path}}\$PATH" >&2
fi
if [[ ! ${USER-} ]]; then
ble/util/print-lines \
'ble.sh: insane environment: $USER is empty. Please consider checking the' \
' terminal'\''s settings or setting export USER=$(id -un) in your .bash_profile.' >&2
if ble/util/assign USER 'id -un 2>/dev/null' && [[ $USER ]]; then
export USER
ble/util/print "ble.sh: modified USER=$USER" >&2
fi
fi
_ble_base_env_USER=$USER
if [[ ! ${HOSTNAME-} ]]; then
ble/util/print-lines \
'ble.sh: suspicious environment: $HOSTNAME is empty. Please consider checking' \
' the terminal'\''settings or setting export HOSTNAME=$(hostname), etc. in your' \
' .bash_profile' >&2
if ble/util/assign HOSTNAME 'uname -n 2>/dev/null' && [[ $HOSTNAME ]]; then
export HOSTNAME
ble/util/print "ble.sh: fixed HOSTNAME=$HOSTNAME" >&2
fi
fi
_ble_base_env_HOSTNAME=$HOSTNAME
if [[ ! ${HOME-} ]]; then
ble/util/print-lines \
'ble.sh: insane environment: $HOME is empty. Please consider checking' \
' the terminal'\''s settings or setting export HOME=... in your .bash_profile.' >&2
local home
if ble/util/assign home 'getent passwd 2>/dev/null | awk -F : -v UID="$UID" '\''$3 == UID {print $6}'\''' && [[ $home && -d $home ]] ||
{ [[ $USER && -d /home/$USER && -O /home/$USER ]] && home=/home/$USER; } ||
{ [[ $USER && -d /Users/$USER && -O /Users/$USER ]] && home=/Users/$USER; } ||
{ [[ $home && ! ( -e $home && -h $home ) ]] && ble/bin/mkdir -p "$home" 2>/dev/null; }
then
export HOME=$home
ble/util/print "ble.sh: modified HOME=$HOME" >&2
fi
fi
if [[ ! ${LANG-} ]]; then
ble/util/print-lines \
'ble.sh: suspicious environment: $LANG is empty. Please consider checking the' \
' terminal'\''s settings or setting export LANG=... in your .bash_profile.' >&2
fi
# Check locale and work around `convert-meta on' in bash >= 5.2
if ((_ble_bash>=50200)); then
# Note #D2069: In bash >= 5.2, when the specified locale does not exist,
# the readline setting `convert-meta' is automatically turned on when
# Readline is first initialized. This interferes with ble.sh's trick to
# distinguish isolated ESCs from meta ESCs, i.e., the combination "ESC ["
# is converted to "<C0> <9B> [" by ble.sh's macro, <C0> is converted to
# "ESC @" by `convert-meta', and "ESC @" is again converted to "<C0> <9B>
# @". This forms an infinite loop. ble.sh tries to adjust `convert-meta',
# but Readline's adjustment takes place at a random timing which is not
# controllable. To work around this, we need to forcibly initialize
# Readline before ble.sh adjusts `convert-meta'.
local error
# Note: We check if the current locale setting produces an error message.
# We try the workaround only when the locale appears to be broken because
# the workaround may have a side effect of consuming user's input.
ble/util/assign error '{ LC_ALL= LC_CTYPE=C ble/util/put; } 2>&1'
if [[ $error ]]; then
ble/util/print "$error" >&2
ble/util/print "ble.sh: please check the locale settings (LANG and LC_*)." >&2
# Note: Somehow, the workaround of using "read -et" only works after
# running `LC_ALL= LC_CTYPE=C cmd'. In bash < 5.3, ble/util/assign at
# this point is executed under a subshell, so we need to run `LC_ALL=
# LC_CTYPE=C ble/util/put' again in the main shell
((_ble_bash>=50300)) || { LC_ALL= LC_CTYPE=C ble/util/put; } 2>/dev/null
# We here forcibly initialize locales of Readline to make Readline's
# adjustment of convert-meta take place here.
local dummy
builtin read -et 0.000001 dummy </dev/tty
fi
fi
# 暫定的な ble/bin/$cmd 設定
ble/bin/.default-utility-path "${_ble_init_posix_command_list[@]}"
return 0
}
if ! ble/init/check-environment; then
ble/util/print "ble.sh: failed to adjust the environment. canceling the load of ble.sh." >&2
ble/base/clear-version-variables
ble/init/clean-up 2>/dev/null # set -x 対策 #D0930
return 1
fi
_ble_bin_awk_type=
## @fn ble/bin/awk/.instantiate
## Select the mplementation of ble/bin/awk.
##
## @remarks This function relies on ble/util/assign (used directly or through
## ble/bin#get-path) and ble/is-function, so this is called in src/util.sh
## after ble/util/assign and ble/is-function are defined.
function ble/bin/awk/.instantiate {
local path q=\' Q="'\''" ext=1
if ble/bin#get-path nawk; then
# Note: Some distribution (like Ubuntu) provides gawk as "nawk" by
# default. To avoid wrongly picking up gawk as nawk, we need to check the
# version output from the command. 2024-12-10 In KaKi87's server [1],
# Debian 12 provided mawk as "nawk".
# [1] https://github.com/akinomyoga/ble.sh/issues/535#issuecomment-2528258996
local version
ble/util/assign version '"$path" -W version' 2>/dev/null </dev/null
if [[ $version != *'GNU Awk'* && $version != *mawk* ]]; then
builtin eval "function ble/bin/nawk { command '${path//$q/$Q}' -v AWKTYPE=nawk \"\$@\"; }"
if [[ ! $_ble_bin_awk_type ]]; then
_ble_bin_awk_type=nawk
builtin eval "function ble/bin/awk { command '${path//$q/$Q}' -v AWKTYPE=nawk \"\$@\"; }" && ext=0
fi
fi
fi
if ble/bin#get-path mawk; then
builtin eval "function ble/bin/mawk { command '${path//$q/$Q}' -v AWKTYPE=mawk \"\$@\"; }"
if [[ ! $_ble_bin_awk_type ]]; then
_ble_bin_awk_type=mawk
builtin eval "function ble/bin/awk { command '${path//$q/$Q}' -v AWKTYPE=mawk \"\$@\"; }" && ext=0
fi
fi
if ble/bin#get-path gawk; then
builtin eval "function ble/bin/gawk { command '${path//$q/$Q}' -v AWKTYPE=gawk \"\$@\"; }"
if [[ ! $_ble_bin_awk_type ]]; then
_ble_bin_awk_type=gawk
builtin eval "function ble/bin/awk { command '${path//$q/$Q}' -v AWKTYPE=gawk \"\$@\"; }" && ext=0
fi
fi
if [[ ! $_ble_bin_awk_type ]]; then
if [[ $OSTYPE == solaris* ]] && ble/bin#has /usr/xpg4/bin/awk; then
# Solaris の既定の awk は全然駄目なので /usr/xpg4 以下の awk を使う。
_ble_bin_awk_type=xpg4
function ble/bin/awk { /usr/xpg4/bin/awk -v AWKTYPE=xpg4 "$@"; } && ext=0
elif ble/bin#get-path awk; then
local version
ble/util/assign version '"$path" -W version' 2>/dev/null </dev/null && [[ $version ]] ||
ble/util/assign version '"$path" --version' 2>/dev/null </dev/null
if [[ $version == *'GNU Awk'* ]]; then
_ble_bin_awk_type=gawk
elif [[ $version == *mawk* ]]; then
_ble_bin_awk_type=mawk
elif [[ $version == 'awk version '[12][0-9][0-9][0-9][01][0-9][0-3][0-9] ]]; then
_ble_bin_awk_type=nawk
else
_ble_bin_awk_type=unknown
fi
builtin eval "function ble/bin/awk { command '${path//$q/$Q}' -v AWKTYPE=$_ble_bin_awk_type \"\$@\"; }" && ext=0
if [[ $OSTYPE == darwin* && $path == /usr/bin/awk && $_ble_bin_awk_type == nawk ]]; then
# Note #D1974: macOS の awk-32 の multibyte character support が怪しい。
# 問題は GitHub Actions の上では再現できていないが特別の入力で失敗す
# るのかもしれない。または、報告者の環境が壊れているだけの可能性もあ
# る。テスト不可能だが、そもそも nawk は UTF-8 に対応していない前提な
# ので、取り敢えず LC_CTYPE=C で実行する。
function ble/bin/awk {
local -x LC_ALL= LC_CTYPE=C LC_COLLATE=C 2>/dev/null
/usr/bin/awk -v AWKTYPE=nawk "$@"; local ext=$?
ble/util/unlocal LC_ALL LC_CTYPE LC_COLLATE 2>/dev/null
return "$ext"
}
elif [[ $_ble_bin_awk_type == [gmn]awk ]] && ! ble/is-function ble/bin/"$_ble_bin_awk_type" ; then
builtin eval "function ble/bin/$_ble_bin_awk_type { command '${path//$q/$Q}' -v AWKTYPE=$_ble_bin_awk_type \"\$@\"; }"
fi
fi
fi
return "$ext"
}
# Note: ble//bin/awk/.instantiate が実行される前に使おうとした時の為の暫定実装
function ble/bin/awk {
if ble/bin/awk/.instantiate; then
ble/bin/awk "$@"
else
awk "$@"
fi
}
# Do not overwrite by ble/bin#freeze-utility-path
function ble/bin/.frozen:awk { return 0; }
function ble/bin/.frozen:nawk { return 0; }
function ble/bin/.frozen:mawk { return 0; }
function ble/bin/.frozen:gawk { return 0; }
if [[ $OSTYPE == darwin* ]]; then
function ble/bin/sed/.instantiate {
local path=
ble/bin#get-path sed || return 1
if [[ $path == /usr/bin/sed ]]; then
# macOS sed seems to have the same issue as macOS awk. In macOS, we
# always run "sed" in the C locale.
function ble/bin/sed {
local -x LC_ALL= LC_CTYPE=C LC_COLLATE=C 2>/dev/null
/usr/bin/sed "$@"; local ext=$?
ble/util/unlocal LC_ALL LC_CTYPE LC_COLLATE 2>/dev/null
return "$ext"
}
else
local q=\' Q="'\''"
builtin eval "function ble/bin/sed { command '${path//$q/$Q}' \"\$@\"; }"
fi
return 0
}
function ble/bin/sed {
if ble/bin/sed/.instantiate; then
ble/bin/sed "$@"
else
command sed "$@"
fi
}
function ble/bin/.frozen:sed { return 0; }
function ble/bin/stty/.instantiate {
local path=
ble/bin#get-path stty || return 1
# Some macOS users install coreutils using Homebrew and overwrite basic
# utilities with the coreutils versions. The problem is that stty provided
# by coreutils is not fully functional in macOS, yet the user replaces it.
# I have been thinking that such a setup is simply broken, but too many
# users seem to commit the same mistake, I decided to detect coreutils stty
# and avoid using it. Coreutils stty installed by Homebrew can be detected
# by checking whether the path ends with /coreutils/libexec/gnubin/stty.
if [[ $path == */coreutils/libexec/gnubin/stty ]]; then
if [[ -r /bin/stty && -x /bin/stty ]]; then
path=/bin/stty
fi
fi
local q=\' Q="'\''"
builtin eval "function ble/bin/stty { command '${path//$q/$Q}' \"\$@\"; }"
return 0
}
function ble/bin/stty {
if ble/bin/stty/.instantiate; then
ble/bin/stty "$@"
else
command stty "$@"
fi
}
function ble/bin/.frozen:stty { return 0; }
else
function ble/bin/sed/.instantiate { return 0; }
function ble/bin/stty/.instantiate { return 0; }
fi
## @fn ble/bin/awk0
## awk implementation that supports NUL record separator
## @fn ble/bin/awk0.available
## initialize ble/bin/awk0 and returns whether ble/bin/awk0 is available
function ble/bin/awk0.available/test {
local count=0 cmd_awk=$1 awk_script='BEGIN { RS = "\0"; } { count++; } END { print count; }'
ble/util/assign count 'printf "a\0b\0" | "$cmd_awk" "$awk_script"'
((count==2))
}
function ble/bin/awk0.available {
local awk
for awk in mawk gawk; do
if ble/bin#freeze-utility-path -n "$awk" &&
ble/bin/awk0.available/test ble/bin/"$awk" &&
builtin eval -- "function ble/bin/awk0 { ble/bin/$awk -v AWKTYPE=$awk \"\$@\"; }"; then
function ble/bin/awk0.available { return 0; }
return 0
fi
done
if ble/bin/awk0.available/test ble/bin/awk &&
function ble/bin/awk0 { ble/bin/awk "$@"; }; then
function ble/bin/awk0.available { return 0; }
return 0
fi
function ble/bin/awk0.available { return 1; }
return 1
}
function ble/base/is-msys1 {
local cr; cr=$'\r'
[[ $OSTYPE == msys && ! $cr ]]
}
function ble/base/is-wsl {
local kernel_version
if [[ -d /usr/lib/wsl/lib && -r /proc/version ]] &&
ble/bash/read kernel_version < /proc/version &&
[[ $kernel_version == *-microsoft-* ]]
then
function ble/base/is-wsl { return 0; }
return 0
else
function ble/base/is-wsl { return 1; }
return 1
fi
}
function ble/util/mkd {
local dir
for dir; do
[[ -d $dir ]] && continue
[[ -e $dir || -L $dir ]] && ble/bin/rm -f "$dir"
ble/bin/mkdir -p "$dir"
done
}
#------------------------------------------------------------------------------
# readlink -f (Originally taken from akinomyoga/mshex.git)
## @fn ble/util/readlink path
## @var[out] ret
if ((_ble_bash>=40000)); then
_ble_util_readlink_visited_init='local -A visited=()'
function ble/util/readlink/.visited {
[[ ${visited[$1]+set} ]] && return 0
visited[$1]=1
return 1
}
else
_ble_util_readlink_visited_init="local -a visited=()"
function ble/util/readlink/.visited {
local key
for key in "${visited[@]}"; do
[[ $1 == "$key" ]] && return 0
done
visited=("$1" "${visited[@]}")
return 1
}
fi
## @fn ble/util/readlink/.readlink path
## @var[out] link
function ble/util/readlink/.readlink {
local path=$1
if ble/bin#has ble/bin/readlink; then
ble/util/assign link 'ble/bin/readlink -- "$path"'
[[ $link ]]
elif ble/bin#has ble/bin/ls; then
ble/util/assign link 'ble/bin/ls -ld -- "$path"' &&
[[ $link == *" $path -> "?* ]] &&
link=${link#*" $path -> "}
else
false
fi
} 2>/dev/null
## @fn ble/util/readlink/.resolve-physical-directory
## @var[in,out] path
function ble/util/readlink/.resolve-physical-directory {
[[ $path == */?* ]] || return 0
local PWD=$PWD OLDPWD=$OLDPWD CDPATH=
if builtin cd -L .; then
local pwd=$PWD
builtin cd -P "${path%/*}/" &&
path=${PWD%/}/${path##*/}
# Note #D1849: 現在ディレクトリが他者により改名されている場合や PWD がユー
# ザーに書き換えられている場合にも元のディレクトリに戻る為、cd -L . した
# 後のパスに cd する。但し pwd の結果はこの関数の呼び出し前と変わってしま
# う (が実際にはこの方が良いだろう)。PWD は local にして元の値に戻すので
# 変わらない。
builtin cd "$pwd"
fi
return 0
}
function ble/util/readlink/.resolve-loop {
local path=$ret
while [[ $path == ?*/ ]]; do path=${path%/}; done
builtin eval -- "$_ble_util_readlink_visited_init"
while [[ -h $path ]]; do
local link
ble/util/readlink/.visited "$path" && break
ble/util/readlink/.readlink "$path" || break
if [[ $link == /* || $path != */* ]]; then
path=$link
else
# 相対パス ../ は物理ディレクトリ構造に従って遡る。
ble/util/readlink/.resolve-physical-directory
path=${path%/*}/$link
fi
while [[ $path == ?*/ ]]; do path=${path%/}; done
done
ret=$path
}
function ble/util/readlink/.resolve {
# 初回呼び出し時に実装を選択
_ble_util_readlink_type=
# より効率的な実装が可能な場合は ble/util/readlink/.resolve を独自定義。
case $OSTYPE in
(cygwin | msys | linux-gnu)
# これらのシステムの標準 readlink では readlink -f が使える。
#
# Note: 例えば NixOS では標準の readlink を使おうとすると問題が起こるらしい
# ので、見えている readlink を使う。見えている readlink が非標準の時は -f
# が使えるか分からないので readlink -f による実装は有効化しない。
#
local readlink
ble/util/assign readlink 'type -P readlink'
case $readlink in
(/bin/readlink | /usr/bin/readlink)
_ble_util_readlink_type=readlink-f
builtin eval "function ble/util/readlink/.resolve { ble/util/assign ret '$readlink -f -- \"\$ret\"'; }" ;;
esac ;;
esac
if [[ ! $_ble_util_readlink_type ]]; then
_ble_util_readlink_type=loop
ble/bin#freeze-utility-path readlink ls
function ble/util/readlink/.resolve { ble/util/readlink/.resolve-loop; }
fi
ble/util/readlink/.resolve
}
function ble/util/readlink {
ret=$1
if [[ -h $ret ]]; then ble/util/readlink/.resolve; fi
}
#---------------------------------------
function ble/init/adjust-environment {
builtin unset -f "$FUNCNAME"
if [[ ${IN_NIX_SHELL-} ]]; then
# Since "nix-shell" overwrites BASH to the path to a binary image different
# from the current one, the Bash process crashes on attempting loading
# loadable builtins. We rewrite it to the correct one.
local ret=
ble/util/readlink "/proc/$$/exe" 2>/dev/null
[[ -x $ret ]] && BASH=$ret
fi
}
ble/init/adjust-environment
_ble_bash_path=
function ble/bin/.load-builtin {
local name=$1 path=$2
if [[ ! $_ble_bash_path ]]; then
local ret; ble/util/readlink "$BASH"
_ble_bash_path=$ret
fi
if [[ ! $path ]]; then
local bash_prefix=${ret%/*/*}
path=$bash_prefix/lib/bash/$name
[[ -s $path ]] || return 1
fi
if (enable -f "$path" "$name") &>/dev/null; then
enable -f "$path" "$name"
builtin eval -- "function ble/bin/$name { builtin $name \"\$@\"; }"
return 0
else
return 1
fi
}
# ble/bin/.load-builtin mkdir
# ble/bin/.load-builtin mkfifo
# ble/bin/.load-builtin rm
#------------------------------------------------------------------------------
function ble/base/.create-user-directory {
local var=$1 dir=$2
if [[ ! -d $dir ]]; then
# dangling symlinks are silently removed
[[ ! -e $dir && -h $dir ]] && ble/bin/rm -f "$dir"
if [[ -e $dir || -h $dir ]]; then
ble/util/print "ble.sh: cannot create a directory '$dir' since there is already a file." >&2
return 1
fi
if ! (umask 077; ble/bin/mkdir -p "$dir" && [[ -O $dir ]]); then
ble/util/print "ble.sh: failed to create a directory '$dir'." >&2
return 1
fi
elif ! [[ -r $dir && -w $dir && -x $dir ]]; then
ble/util/print "ble.sh: permission of '$dir' is not correct." >&2
return 1
elif [[ ! -O $dir ]]; then
ble/util/print "ble.sh: owner of '$dir' is not correct." >&2
return 1
fi
builtin eval "$var=\$dir"
}
##
## @var _ble_base
## @var _ble_base_blesh
## @var _ble_base_blesh_raw
##
## ble.sh のインストール先ディレクトリ。
## 読み込んだ ble.sh の実体があるディレクトリとして解決される。
##
function ble/base/initialize-base-directory {
local src=$1
local defaultDir=${2-}
# resolve symlink
_ble_base_blesh_raw=$src
if [[ -h $src ]]; then
local ret; ble/util/readlink "$src"; src=$ret
fi
_ble_base_blesh=$src
if [[ -s $src && $src != */* ]]; then
_ble_base=$PWD
elif [[ $src == */* ]]; then
local dir=${src%/*}
if [[ ! $dir ]]; then
_ble_base=/
elif [[ $dir != /* ]]; then
_ble_base=$PWD/$dir
else
_ble_base=$dir
fi
else
_ble_base=${defaultDir:-$HOME/.local/share/blesh}
fi
[[ -d $_ble_base ]]
}
if ! ble/base/initialize-base-directory "${BASH_SOURCE[0]}"; then
ble/util/print "ble.sh: ble base directory not found!" >&2
ble/base/clear-version-variables
ble/init/clean-up 2>/dev/null # set -x 対策 #D0930
return 1
fi
##
## @var _ble_base_run
##
## 実行時の一時ファイルを格納するディレクトリ。以下の手順で決定する。
##
## 1. ${XDG_RUNTIME_DIR:=/run/user/$UID} が存在すればその下に blesh を作成して使う。
## 2. /tmp/blesh/$UID を作成可能ならば、それを使う。
## 3. $_ble_base/tmp/$UID を使う。
##
function ble/base/initialize-runtime-directory/.xdg {
local runtime_dir=
if [[ $XDG_RUNTIME_DIR ]]; then
if [[ ! -d $XDG_RUNTIME_DIR ]]; then
ble/util/print "ble.sh: XDG_RUNTIME_DIR='$XDG_RUNTIME_DIR' is not a directory." >&2
return 1
elif [[ -O $XDG_RUNTIME_DIR ]]; then
runtime_dir=$XDG_RUNTIME_DIR
else
# When XDG_RUNTIME_DIR is not owned by the current user, maybe "su" is
# used to enter this session keeping the environment variables of the
# original user. We just ignore XDG_RUNTIME_DIR (without issueing
# warnings) for such a case.
false
fi
fi
if [[ ! $runtime_dir ]]; then
runtime_dir=/run/user/$UID
[[ -d $runtime_dir && -O $runtime_dir ]] || return 1
fi
# Note: Some versions of WSL around 2023-09 seem to have an issue with the
# permission of /run/user/*, so we avoid to use them in WSL.
[[ $runtime_dir == /run/user/* ]] && ble/base/is-wsl && return 1
if ! [[ -r $runtime_dir && -w $runtime_dir && -x $runtime_dir ]]; then
[[ $runtime_dir == "$XDG_RUNTIME_DIR" ]] &&
ble/util/print "ble.sh: XDG_RUNTIME_DIR='$XDG_RUNTIME_DIR' doesn't have a proper permission." >&2
return 1
fi
ble/base/.create-user-directory _ble_base_run "$runtime_dir/blesh"
}
function ble/base/initialize-runtime-directory/.tmp {
[[ -r /tmp && -w /tmp && -x /tmp ]] || return 1
# Note: WSL seems to clear /tmp after the first instance of Bash starts,
# which causes a problem of missing /tmp after blesh's initialization.
# https://github.com/microsoft/WSL/issues/8441#issuecomment-1139434972
# https://github.com/akinomyoga/ble.sh/discussions/462
ble/base/is-wsl && return 1
local tmp_dir=/tmp/blesh
if [[ ! -d $tmp_dir ]]; then
[[ ! -e $tmp_dir && -h $tmp_dir ]] && ble/bin/rm -f "$tmp_dir"
if [[ -e $tmp_dir || -h $tmp_dir ]]; then
ble/util/print "ble.sh: cannot create a directory '$tmp_dir' since there is already a file." >&2
return 1
fi
ble/bin/mkdir -p "$tmp_dir" || return 1
ble/bin/chmod a+rwxt "$tmp_dir" || return 1
elif ! [[ -r $tmp_dir && -w $tmp_dir && -x $tmp_dir ]]; then
ble/util/print "ble.sh: permission of '$tmp_dir' is not correct." >&2
return 1
fi
ble/base/.create-user-directory _ble_base_run "$tmp_dir/$UID"
}
function ble/base/initialize-runtime-directory/.base {
local tmp_dir=$_ble_base/run
if [[ ! -d $tmp_dir ]]; then
ble/bin/mkdir -p "$tmp_dir" || return 1
ble/bin/chmod a+rwxt "$tmp_dir" || return 1
fi
ble/base/.create-user-directory _ble_base_run "$tmp_dir/${USER:-$UID}@$HOSTNAME"
}
function ble/base/initialize-runtime-directory/.home {
local cache_dir=${XDG_CACHE_HOME:-$HOME/.cache}
if [[ ! -d $cache_dir ]]; then
if [[ $XDG_CACHE_HOME ]]; then
ble/util/print "ble.sh: XDG_CACHE_HOME='$XDG_CACHE_HOME' is not a directory." >&2
return 1
else
ble/bin/mkdir -p "$cache_dir" || return 1
fi
fi
if ! [[ -r $cache_dir && -w $cache_dir && -x $cache_dir ]]; then
if [[ $XDG_CACHE_HOME ]]; then
ble/util/print "ble.sh: XDG_CACHE_HOME='$XDG_CACHE_HOME' doesn't have a proper permission." >&2
else
ble/util/print "ble.sh: '$cache_dir' doesn't have a proper permission." >&2
fi
return 1
fi
ble/base/.create-user-directory _ble_base_run "$cache_dir/blesh/run"
}
function ble/base/initialize-runtime-directory {
ble/base/initialize-runtime-directory/.xdg && return 0
ble/base/initialize-runtime-directory/.tmp && return 0
ble/base/initialize-runtime-directory/.base && return 0
ble/base/initialize-runtime-directory/.home
}
if ! ble/base/initialize-runtime-directory; then
ble/util/print "ble.sh: failed to initialize \$_ble_base_run." >&2
ble/base/clear-version-variables
ble/init/clean-up 2>/dev/null # set -x 対策 #D0930
return 1
fi
# ロード時刻の記録 (ble-update で使う為)
>| "$_ble_base_run/$$.load"
## @fn ble/base/clean-up-runtime-directory [opts]
## 既に存在しないプロセスに属する実行時ファイルを削除します。*.pid のファイル
## 名を持つ実行時ファイルはについては、子バックグラウンドプロセスのプロセスID
## を含むと見做し、ファイルの内容を読み取ってそれが整数であればその整数に対し
## て kill を実行します。
##
## @param[in,opt] opts
## finalize ... 自プロセス $$ に関連するファイルも削除します。現セッション
## における ble.sh の終了処理時に呼び出される事を想定しています。
##
function ble/base/clean-up-runtime-directory {
local opts=$1 failglob= noglob=
if [[ $- == *f* ]]; then
noglob=1
set +f
fi
if shopt -q failglob &>/dev/null; then
failglob=1
shopt -u failglob
fi
local -a alive=() removed=() bgpids=()
[[ :$opts: == *:finalize:* ]] && alive[$$]=0
local file pid iremoved=0 ibgpid=0
for file in "$_ble_base_run"/[1-9]*.*; do
[[ -e $file || -h $file ]] || continue
# extract pid (skip if it is not a number)
pid=${file##*/}; pid=${pid%%.*}
[[ $pid && ! ${pid//[0-9]} ]] || continue
if [[ ! ${alive[pid]+set} ]]; then
builtin kill -0 "$pid" &>/dev/null
((alive[pid]=$?==0))
fi
((alive[pid])) && continue
# kill process specified by the pid file
if [[ $file == *.pid && -s $file ]]; then
local run_pid IFS=
ble/bash/read run_pid < "$file"
if ble/string#match "$run_pid" '^-?[0-9]+$' && kill -0 "$run_pid" &>/dev/null; then
if ((pid==$$)); then
# 現セッションの背景プロセスの場合は遅延させる
bgpids[ibgpid++]=$run_pid
else
builtin kill -- "$run_pid" &>/dev/null
ble/util/msleep 50
builtin kill -0 "$run_pid" &>/dev/null &&
(ble/util/nohup "ble/util/conditional-sync '' '((1))' 100 progressive-weight:pid=$run_pid:no-wait-pid:timeout=3000:SIGKILL")
fi
fi
fi
removed[iremoved++]=$file
done
((iremoved)) && ble/bin/rm -rf "${removed[@]}" 2>/dev/null
((ibgpid)) && (ble/util/nohup 'ble/bin/sleep 3; builtin kill -- "${bgpids[@]}" &>/dev/null')
[[ $failglob ]] && shopt -s failglob
[[ $noglob ]] && set -f
return 0
}
##
## @var _ble_base_cache
##
## 環境毎の初期化ファイルを格納するディレクトリ。以下の手順で決定する。
##
## 1. ${XDG_CACHE_HOME:=$HOME/.cache} が存在すればその下に blesh を作成して使う。
## 2. $_ble_base/cache.d/$UID を使う。
##
function ble/base/initialize-cache-directory/.xdg {
[[ $_ble_base != */out ]] || return 1
local cache_dir=${XDG_CACHE_HOME:-$HOME/.cache}
if [[ ! -d $cache_dir ]]; then
[[ $XDG_CACHE_HOME ]] &&
ble/util/print "ble.sh: XDG_CACHE_HOME='$XDG_CACHE_HOME' is not a directory." >&2
return 1
fi
if ! [[ -r $cache_dir && -w $cache_dir && -x $cache_dir ]]; then
[[ $XDG_CACHE_HOME ]] &&
ble/util/print "ble.sh: XDG_CACHE_HOME='$XDG_CACHE_HOME' doesn't have a proper permission." >&2
return 1
fi
local ver=${BLE_VERSINFO[0]}.${BLE_VERSINFO[1]}
ble/base/.create-user-directory _ble_base_cache "$cache_dir/blesh/$ver"
}
function ble/base/initialize-cache-directory {
ble/base/initialize-cache-directory/.xdg && return 0
# fallback
local cache_dir=$_ble_base/cache.d
if [[ ! -d $cache_dir ]]; then
ble/bin/mkdir -p "$cache_dir" || return 1
ble/bin/chmod a+rwxt "$cache_dir" || return 1
# relocate an old cache directory if any
local old_cache_dir=$_ble_base/cache
if [[ -d $old_cache_dir && ! -h $old_cache_dir ]]; then
mv "$old_cache_dir" "$cache_dir/$UID"
ln -s "$cache_dir/$UID" "$old_cache_dir"
fi
fi
ble/base/.create-user-directory _ble_base_cache "$cache_dir/$UID"
}
function ble/base/migrate-cache-directory/.move {
local old=$1 new=$2
[[ -e $old ]] || return 0
if [[ -e $new || -L $old ]]; then
ble/bin/rm -rf "$old"
else
ble/bin/mv "$old" "$new"
fi
}
function ble/base/migrate-cache-directory/.check-old-prefix {
local old_prefix=$_ble_base_cache/$1
local new_prefix=$_ble_base_cache/$2
local file
for file in "$old_prefix"*; do
local old=$file
local new=$new_prefix${file#"$old_prefix"}
ble/base/migrate-cache-directory/.move "$old" "$new"
done
}
function ble/base/migrate-cache-directory {
local failglob=
shopt -q failglob && { failglob=1; shopt -u failglob; }
ble/base/migrate-cache-directory/.check-old-prefix cmap+default.binder-source decode.cmap.allseq
ble/base/migrate-cache-directory/.check-old-prefix cmap+default decode.cmap
ble/base/migrate-cache-directory/.check-old-prefix ble-decode-bind decode.bind
local file
for file in "$_ble_base_cache"/*.term; do
local old=$file
local new=$_ble_base_cache/term.${file#"$_ble_base_cache/"}; new=${new%.term}
ble/base/migrate-cache-directory/.move "$old" "$new"
done
ble/base/migrate-cache-directory/.move "$_ble_base_cache/man" "$_ble_base_cache/complete.mandb"
[[ $failglob ]] && shopt -s failglob
}
if ! ble/base/initialize-cache-directory; then
ble/util/print "ble.sh: failed to initialize \$_ble_base_cache." >&2
ble/base/clear-version-variables
ble/init/clean-up 2>/dev/null # set -x 対策 #D0930
return 1
fi
ble/base/migrate-cache-directory
##
## @var _ble_base_state
##
## 環境毎の初期化ファイルを格納するディレクトリ。以下の手順で決定する。
##
## 1. ${XDG_STATE_HOME:=$HOME/.state} (存在しなくても強制的に作成) の下に blesh を作成して使う。
## 2. (1. に失敗した時) $_ble_base/state.d/$UID を使う。
##
function ble/base/initialize-state-directory/.xdg {
local state_dir=${XDG_STATE_HOME:-$HOME/.local/state}
if [[ -e $state_dir || -L $state_dir ]]; then
if [[ ! -d $state_dir ]]; then
if [[ $XDG_STATE_HOME ]]; then
ble/util/print "ble.sh: XDG_STATE_HOME='$XDG_STATE_HOME' is not a directory." >&2
else
ble/util/print "ble.sh: '$state_dir' is not a directory." >&2
fi
return 1
fi
if ! [[ -r $state_dir && -w $state_dir && -x $state_dir ]]; then
if [[ $XDG_STATE_HOME ]]; then
ble/util/print "ble.sh: XDG_STATE_HOME='$XDG_STATE_HOME' doesn't have a proper permission." >&2
else
ble/util/print "ble.sh: '$state_dir' doesn't have a proper permission." >&2
fi
return 1
fi
fi
ble/base/.create-user-directory _ble_base_state "$state_dir/blesh"
}
function ble/base/initialize-state-directory {
ble/base/initialize-state-directory/.xdg && return 0
# fallback
local state_dir=$_ble_base/state.d
if [[ ! -d $state_dir ]]; then
ble/bin/mkdir -p "$state_dir" || return 1
ble/bin/chmod a+rwxt "$state_dir" || return 1
# relocate an old state directory if any
local old_state_dir=$_ble_base/state
if [[ -d $old_state_dir && ! -h $old_state_dir ]]; then
mv "$old_state_dir" "$state_dir/$UID"
ln -s "$state_dir/$UID" "$old_state_dir"
fi
fi
ble/util/print "ble.sh: using the non-standard position of the state directory: '$state_dir/$UID'" >&2
ble/base/.create-user-directory _ble_base_state "$state_dir/$UID"
}
if ! ble/base/initialize-state-directory; then
ble/util/print "ble.sh: failed to initialize \$_ble_base_state." >&2
ble/base/clear-version-variables
ble/init/clean-up 2>/dev/null # set -x 対策 #D0930
return 1
fi
function ble/base/print-usage-for-no-argument-command {
local name=${FUNCNAME[1]} desc=$1; shift
ble/util/print-lines \
"usage: $name" \
"$desc" >&2
[[ $1 != --help ]] && return 2
return 0
}
function ble-reload {
builtin eval -- "$_ble_bash_POSIXLY_CORRECT_local_adjust"
local -a _ble_local_options=()
[[ ! -e $_ble_base_rcfile ]] ||
ble/array#push _ble_local_options --rcfile="${_ble_base_rcfile:-/dev/null}"
[[ $_ble_base_arguments_inputrc == auto ]] ||
ble/array#push _ble_local_options --inputrc="$_ble_base_arguments_inputrc"
local name
for name in keep-rlvars; do
if [[ :$_ble_base_arguments_opts: == *:"$name":* ]]; then
ble/array#push _ble_local_options "--$name"
fi
done
ble/util/unlocal name
ble/array#push _ble_local_options '--bash-debug-version=ignore'
builtin eval -- "$_ble_bash_POSIXLY_CORRECT_local_leave"
source -- "$_ble_base/ble.sh" "${_ble_local_options[@]}"
}
#%[quoted_repository = "'" + getenv("PWD" ).replace("'", "'\\''") + "'"]
#%[quoted_branch = "'" + getenv("BLE_GIT_BRANCH" ).replace("'", "'\\''") + "'"]
#%[quoted_git_version = "'" + getenv("BUILD_GIT_VERSION" ).replace("'", "'\\''") + "'"]
#%[quoted_make_version = "'" + getenv("BUILD_MAKE_VERSION").replace("'", "'\\''") + "'"]
#%[quoted_gawk_version = "'" + getenv("BUILD_GAWK_VERSION").replace("'", "'\\''") + "'"]
#%expand
_ble_base_repository=$"quoted_repository"
_ble_base_branch=$"quoted_branch"
_ble_base_repository_url=https://github.com/akinomyoga/ble.sh
_ble_base_build_git_version=$"quoted_git_version"
_ble_base_build_make_version=$"quoted_make_version"
_ble_base_build_gawk_version=$"quoted_gawk_version"
#%end.i
function ble-update/.check-install-directory-ownership {
if [[ ! -O $_ble_base ]]; then
ble/util/print 'ble-update: install directory is owned by another user:' >&2
ls -ld "$_ble_base"
return 1
elif [[ ! -r $_ble_base || ! -w $_ble_base || ! -x $_ble_base ]]; then
ble/util/print 'ble-update: install directory permission denied:' >&2
ls -ld "$_ble_base"
return 1
fi
}
function ble-update/.make {
local sudo=
if [[ $1 == --sudo ]]; then
sudo=1
shift
fi
if ! "$make" -q "$@"; then
if [[ $sudo ]]; then
sudo "$make" "$@"
else
"$make" "$@"
fi
else
# インストール先に更新がなくても現在の session でロードされている ble.sh が
# 古いかもしれないのでチェックしてリロードする。
return 6
fi
}
function ble-update/.reload {
local ext=$1
if [[ $ext -eq 0 || $ext -eq 6 && $_ble_base/ble.sh -nt $_ble_base_run/$$.load ]]; then
if [[ ! -e $_ble_base/ble.sh ]]; then
ble/util/print "ble-update: new ble.sh not found at '$_ble_base/ble.sh'." >&2
return 1
elif [[ ! -s $_ble_base/ble.sh ]]; then
ble/util/print "ble-update: new ble.sh '$_ble_base/ble.sh' is empty." >&2
return 1
elif [[ $- == *i* && $_ble_attached ]] && ! ble/util/is-running-in-subshell; then
builtin eval -- "$_ble_bash_POSIXLY_CORRECT_local_leave"
ble-reload
ext=$?
builtin eval -- "$_ble_bash_POSIXLY_CORRECT_local_enter"
return "$ext"
fi
return 0
fi
((ext==6)) && ext=0
return "$ext"
}
function ble-update/.download-nightly-build {
if ! ble/bin#has tar xz; then
local command
for command in tar xz; do
ble/bin#has "$command" ||
ble/util/print "ble-update (nightly): '$command' command is not available." >&2
done
return 1
fi
if ((EUID!=0)) && ! ble-update/.check-install-directory-ownership; then
# _ble_base が自分の物でない時は sudo でやり直す
sudo "$BASH" "$_ble_base/ble.sh" --update &&
ble-update/.reload 6
return "$?"
fi
local tarname=ble-nightly.tar.xz
local url_tar=$_ble_base_repository_url/releases/download/nightly/$tarname
(
ble/util/joblist/__suppress__
set +f
shopt -u failglob nullglob
# mkcd "$_ble_base/src"
if ! ble/bin/mkdir -p "$_ble_base/src"; then
ble/util/print "ble-update (nightly): failed to create the directory '$_ble_base/src'" >&2
return 1
fi
if ! builtin cd "$_ble_base/src"; then
ble/util/print "ble-update (nightly): failed to enter the directory '$_ble_base/src'" >&2
return 1
fi
local ret
ble/file#hash "$tarname"; local ohash=$ret
# download "$url_tar" "$tarname"
# Note: アップロードした直後は暫く 404 Not Found になるようなので何回か再試
# 行する。
local retry max_retry=5
for ((retry=0;retry<=max_retry;retry++)); do
if ((retry>0)); then
local wait=$((retry<3?retry*10:30))
ble/util/print "ble-update (nightly): retry downloading in $wait seconds... ($retry/$max_retry)" >&2
ble/util/sleep "$wait"
fi
if ble/bin#has wget; then
wget -N "$url_tar" && break
elif ble/bin#has curl; then
curl -LRo "$tarname" -z "$tarname" "$url_tar" && break
else
ble/util/print "ble-update (nightly): command 'wget' nor 'curl' is available." >&2
return 1
fi
done
if ((retry>max_retry)); then
ble/util/print "ble-update (nightly): failed to download the archive from '$url_tar'." >&2
return 7
fi
# 前回ダウンロードした物と同じ場合は省略
ble/file#hash "$tarname"; local nhash=$ret
[[ $ohash == "$nhash" ]] && return 6
# tar xJf "$tarname"
ble/bin/rm -rf ble-nightly*/
if ! tar xJf "$tarname"; then
ble/util/print 'ble-update (nightly): failed to extract the tarball. Removing possibly broken tarball.' >&2
ble/bin/rm -rf "$tarname"
return 1
fi
# cp -T ble-nightly* "$_ble_base"
local extracted_dir=ble-nightly
if [[ ! -d $extracted_dir ]]; then
ble/util/print "ble-update (nightly): the directory 'ble-nightly' not found in the tarball '$PWD/$tarname'." >&2
return 1
fi
ble/bin/cp -Rf "$extracted_dir"/* "$_ble_base/" || return 1
ble/bin/rm -rf "$extracted_dir"
) &&
ble-update/.reload
}
## @fn ble-update/.check-build-dependencies
## @var[out] make
function ble-update/.check-build-dependencies {
# check make
make=
if ble/bin#has gmake; then
make=gmake
elif ble/bin#has make && make --version 2>&1 | ble/bin/grep -qiF 'GNU Make'; then
make=make
else
ble/util/print "ble-update: GNU Make is not available." >&2
return 1
fi
# check git, gawk
if ! ble/bin#has git gawk; then
local command
for command in git gawk; do
ble/bin#has "$command" ||
ble/util/print "ble-update: '$command' command is not available." >&2
done
return 1
fi
return 0
}
## @fn ble-update/.check-repository
function ble-update/.check-repository {
if [[ ${_ble_base_repository-} && $_ble_base_repository != release:* ]]; then
if [[ ! -e $_ble_base_repository/.git ]]; then
ble/util/print "ble-update: git repository not found at '$_ble_base_repository'." >&2
elif [[ ! -O $_ble_base_repository ]]; then
ble/util/print "ble-update: git repository is owned by another user:" >&2
ls -ld "$_ble_base_repository"
elif [[ ! -r $_ble_base_repository || ! -w $_ble_base_repository || ! -x $_ble_base_repository ]]; then
ble/util/print 'ble-update: git repository permission denied:' >&2
ls -ld "$_ble_base_repository"
else
return 0
fi
fi
return 1
}
function ble-update/.impl {
if (($#)); then
ble/base/print-usage-for-no-argument-command 'Update and reload ble.sh.' "$@"
return "$?"
fi
if [[ ${_ble_base_package_type-} ]] && ble/is-function ble/base/package:"$_ble_base_package_type"/update; then
ble/util/print "ble-update: delegate to '$_ble_base_package_type' package manager..." >&2
ble/base/package:"$_ble_base_package_type"/update; local ext=$?
if ((ext==125)); then
ble/util/print 'ble-update: fallback to the default update process.' >&2
else
ble-update/.reload "$ext"
return "$?"
fi
fi
if [[ ${_ble_base_repository-} == release:nightly-* ]]; then
if ble-update/.download-nightly-build; local ext=$?; ((ext==0||ext==6||ext==7)); then
if ((ext==6)); then
ble/util/print 'ble-update (nightly): Already up to date.' >&2
elif ((ext==7)); then
ble/util/print 'ble-update (nightly): Remote temporarily unavailable. Try it again later.' >&2
fi
return 0
fi
fi
local make
ble-update/.check-build-dependencies || return 1
local insdir_doc=$_ble_base/doc
[[ ! -d $insdir_doc && -d ${_ble_base%/*}/doc/blesh ]] &&
insdir_doc=${_ble_base%/*}/doc/blesh
if ble-update/.check-repository; then
( ble/util/print "cd into $_ble_base_repository..." >&2 &&
builtin cd "$_ble_base_repository" &&
git pull && git submodule update --recursive --remote &&
if [[ $_ble_base == "$_ble_base_repository"/out ]]; then
ble-update/.make all
elif ((EUID!=0)) && ! ble-update/.check-install-directory-ownership; then
ble-update/.make all
ble-update/.make --sudo INSDIR="$_ble_base" INSDIR_DOC="$insdir_doc" install
else
ble-update/.make INSDIR="$_ble_base" INSDIR_DOC="$insdir_doc" install
fi )
ble-update/.reload "$?"
return "$?"
fi
if ((EUID!=0)) && ! ble-update/.check-install-directory-ownership; then
# _ble_base が自分の物でない時は sudo でやり直す
sudo "$BASH" "$_ble_base/ble.sh" --update &&
ble-update/.reload 6
return "$?"
else
# _ble_base/src 内部に clone して make install
local branch=${_ble_base_branch:-master}
( ble/bin/mkdir -p "$_ble_base/src" && builtin cd "$_ble_base/src" &&
git clone --recursive --depth 1 "$_ble_base_repository_url" "$_ble_base/src/ble.sh" -b "$branch" &&
builtin cd ble.sh && "$make" all &&
"$make" INSDIR="$_ble_base" INSDIR_DOC="$insdir_doc" install ) &&
ble-update/.reload
return "$?"
fi
return 1
}
function ble-update {
builtin eval -- "$_ble_bash_POSIXLY_CORRECT_local_adjust"
ble-update/.impl "$@"
builtin eval -- "$_ble_bash_POSIXLY_CORRECT_local_return"
}
#%if measure_load_time
ble/debug/measure-set-timeformat ble.pp/prologue
}
#%end
#------------------------------------------------------------------------------
_ble_attached=
BLE_ATTACHED=
#%x inc.r|@|src/def|
#%x inc.r|@|src/util|
bleopt/declare -v debug_xtrace ''
bleopt/declare -v debug_xtrace_ps4 '+ '
ble/bin#freeze-utility-path "${_ble_init_posix_command_list[@]}" # <- this uses ble/util/assign.
ble/bin#freeze-utility-path man
ble/bin#freeze-utility-path groff nroff mandoc gzip bzcat lzcat xzcat # used by core-complete.sh
ble/bin/sed/.instantiate
ble/bin/stty/.instantiate
ble/function#trace trap ble/builtin/trap ble/builtin/trap/finalize
ble/function#trace ble/builtin/trap/.handler ble/builtin/trap/invoke ble/builtin/trap/invoke.sandbox
ble/builtin/trap/install-hook EXIT
ble/builtin/trap/install-hook INT
ble/builtin/trap/install-hook ERR inactive
ble/builtin/trap/install-hook RETURN inactive
# @var _ble_base_session
# @var BLE_SESSION_ID
function ble/base/initialize-session {
local ret
ble/string#split ret / "${_ble_base_session-}"
[[ ${ret[1]} == "$$" ]] && return 0
ble/util/timeval; local start_time=$ret
((start_time-=SECONDS*1000000))
_ble_base_session=${start_time::${#start_time}-6}.${start_time:${#start_time}-6}/$$
export BLE_SESSION_ID=$_ble_base_session
}
ble/base/initialize-session
# DEBUG version の Bash では遅いという通知
function ble/base/check-bash-debug-version {
# Unfortunately, because of /etc/gdm3/config-error-dialog.sh of Ubuntu, we
# cannot output anything to stderr if it is not TTY. Ubuntu shows an error
# message on the user's login to the desktop manager when anything is printed
# to stderr. Some other Debian/Ubuntu-based distributions may behave in a
# similar way.
[[ -t 2 ]] || return 0
case ${BASH_VERSINFO[4]} in
(alp*|bet*|dev*|rc*|releng*|maint*) ;;
(*) return 0 ;;
esac
local type=check ret
ble/opts#extract-last-optarg "$_ble_base_arguments_opts" bash-debug-version check && type=$ret
[[ $type == ignore ]] && return 0
if [[ $type == once ]]; then
local file=$_ble_base_cache/base.bash-debug-version-checked.txt
local -a checked=()
[[ ! -d $file && -r $file && -s $file ]] && ble/util/mapfile checked < "$file"
if ble/array#index checked "$BASH_VERSION"; then
return 0
else
ble/util/print "$BASH_VERSION" >> "$file"
fi
fi
local sgr0=$_ble_term_sgr0
local sgr1=${_ble_term_setaf[4]}
local sgr2=${_ble_term_setaf[6]}
local sgr3=${_ble_term_setaf[2]}
local sgrC=${_ble_term_setaf[8]}
local bold=$_ble_term_bold
if [[ $type == short || $_ble_init_command ]]; then
ble/util/print-lines \
"Note: ble.sh can be very slow in a debug version of Bash: $sgr3$BASH_VERSION$sgr0" >&2
else
ble/util/print-lines \
"$bold# ble.sh with debug version of Bash$sgr0" \
'' \
'ble.sh may become very slow because this is a debug version of Bash (version' \
"\`$sgr3$BASH_VERSION$sgr0', release status: \`$sgr3${BASH_VERSINFO[4]}$sgr0'). We recommend using" \
'ble.sh with a release version of Bash. If you want to use ble.sh with a' \
'non-release version of Bash, it is highly recommended to build Bash with the' \
"configure option \`$sgr2--with-bash-malloc=no$sgr0' for practical performance:" \
'' \
" $sgr1./configure $bold--with-bash-malloc=no$sgr0" \
'' \
'To suppress this startup warning message, please specify the option' \
"\`$sgr2--bash-debug-version=short$sgr0' or \`${sgr2}once$sgr0' or \`${sgr2}ignore$sgr0' to \`ble.sh':" \
'' \
" ${sgrC}# Show a short version of the message$sgr0" \
" ${sgr1}source -- /path/to/ble.sh $bold--bash-debug-version=short$sgr0" \
'' \
" ${sgrC}# Do not print the warning message more than once$sgr0" \
" ${sgr1}source -- /path/to/ble.sh $bold--bash-debug-version=once$sgr0" \
'' \
" ${sgrC}# Show the warning message only once for each debug version of Bash$sgr0" \
" ${sgr1}source -- /path/to/ble.sh $bold--bash-debug-version=ignore$sgr0" \
'' >&2
fi
}
ble/base/check-bash-debug-version
#%x inc.r|@|src/decode|
#%x inc.r|@|src/color|
#%x inc.r|@|src/canvas|
#%x inc.r|@|src/history|
#%x inc.r|@|src/edit|
#%x inc.r|@|lib/core-cmdspec-def|
#%x inc.r|@|lib/core-syntax-def|
#%x inc.r|@|lib/core-complete-def|
#%x inc.r|@|lib/core-debug-def|
#%x inc.r|@|contrib/integration/bash-preexec-def|
# initialization time = 9ms (for 70 files)
ble/function#try ble/util/idle.push ble/base/clean-up-runtime-directory
bleopt -I
#------------------------------------------------------------------------------
#%if measure_load_time
time {
#%end
## @fn ble [SUBCOMMAND]
##
## 無引数で呼び出した時、現在 ble.sh の内部空間に居るかどうかを判定します。
##
# Bluetooth Low Energy のツールが存在するかもしれない
ble/bin#freeze-utility-path ble
function ble/dispatch/.help {
ble/util/print-lines \
'usage: ble [SUBCOMMAND [ARGS...]]' \
'' \
'SUBCOMMAND' \
' # Manage ble.sh' \
' attach ... alias of ble-attach' \
' detach ... alias of ble-detach' \
' update ... alias of ble-update' \
' reload ... alias of ble-reload' \
' help ... Show this help' \
' version ... Show version' \
' check ... Run unit tests' \
'' \
' # Configuration' \
' opt ... alias of bleopt' \
' bind ... alias of ble-bind' \
' face ... alias of ble-face' \
' hook ... alias of blehook' \
' sabbrev ... alias of ble-sabbrev' \
' palette ... alias of ble-color-show' \
'' \
' # Diagnostics' \
' summary ... Summarize the current shell setup' \
''
}
function ble/dispatch:summary {
ble/widget/display-shell-version
}
function ble/dispatch {
if (($#==0)); then
[[ $_ble_attached && ! $_ble_edit_exec_inside_userspace ]]
return "$?"
fi
# import autoload measure assert stackdump color-show decode-{byte,char,key}
local cmd=$1; shift
case $cmd in
(attach) ble-attach "$@" ;;
(detach) ble-detach "$@" ;;
(update) ble-update "$@" ;;
(reload) ble-reload "$@" ;;
(face) ble-face "$@" ;;
(bind) ble-bind "$@" ;;
(opt) bleopt "$@" ;;
(hook) blehook "$@" ;;
(sabbrev) ble-sabbrev "$@" ;;
(palette) ble-palette "$@" ;;
(help|--help) ble/dispatch/.help "$@" ;;
(version|--version) ble/util/print "ble.sh, version $BLE_VERSION (noarch)" ;;
(check|--test) ble/base/sub:test "$@" ;;
(*)
if ble/string#match "$cmd" '^[-a-zA-Z0-9]+$'; then
if ble/is-function ble/dispatch:"$cmd"; then
ble/dispatch:"$cmd" "$@"
return "$?"
elif ble/is-function "ble-$cmd"; then
"ble-$cmd" "$@"
return "$?"
fi
fi
if ble/is-function ble/bin/ble; then
# There seems to be an existing command "ble" for BLE (Bluetooth Low
# Energy) which has the following subcommands [1]: abort, begin,
# callback, characteristics, close, connect, descriptors, disable,
# disconnect, dread, dwrite, enable, equal, execute, expand, getrssi,
# info, mtu, pair, read, reconnect, scanner, services, shorten, start,
# stop, unpair, userdata, write. If we receive an unknown subcommand and
# an external command "ble" exists, we redirect the call to the external
# command "ble".
#
# [1] https://www.androwish.org/home/wiki?name=ble+command
ble/bin/ble "$cmd" "$@"
return "$?"
fi
ble/util/print "ble (ble.sh): unrecognized subcommand '$cmd'." >&2
return 2
esac
}
function ble {
case ${1-} in
(attach|detach|update|reload)
# These subcommands can affect the POSIX mode, so we need to call them
# without the adjustment of the POSIX mode.
"ble-$@" ;;
(*)
builtin eval -- "$_ble_bash_POSIXLY_CORRECT_local_adjust"
ble/dispatch "$@"
builtin eval -- "$_ble_bash_POSIXLY_CORRECT_local_return" ;;
esac
}
# blerc
_ble_base_rcfile=
_ble_base_rcfile_initialized=
function ble/base/load-rcfile {
[[ $_ble_base_rcfile_initialized ]] && return 0
_ble_base_rcfile_initialized=1
# blerc
if [[ ! $_ble_base_rcfile ]]; then
{ _ble_base_rcfile=$HOME/.blerc; [[ -f $_ble_base_rcfile ]]; } ||
{ _ble_base_rcfile=${XDG_CONFIG_HOME:-$HOME/.config}/blesh/init.sh; [[ -f $_ble_base_rcfile ]]; } ||
_ble_base_rcfile=$HOME/.blerc
fi
if [[ -s $_ble_base_rcfile ]]; then
source -- "$_ble_base_rcfile"
blehook/.compatibility-ble-0.3/check
fi
}
# ble-attach needs to be performed at the very end of the Bash startup file.
# However, in some environment, the terminal or the session manager would start
# Bash with a custom startup file, and ~/.bashrc is sourced from the custom
# startup file. In this case, when the user puts "ble-attach" at the end of
# ~/.bashrc, other settings would continue to be executed even after the
# execution of "ble-attach".
function ble/base/attach/.needs-prompt-attach {
local ext=1
[[ $1 == *:force:* ]] && return 1
# nix-shell loads the Bash startup file from inside its custom file "rc".
if [[ ${IN_NIX_SHELL-} && "${BASH_SOURCE[*]}" == */rc ]]; then
# We force prompt-attach when ble-attach is run inside "nix-shell rc".
ext=0
fi
if [[ ${VSCODE_INJECTION-} ]]; then
# VS Code also tries to source ~/.bashrc from its
# "shellIntegration-bash.sh". VS Code shell integration seems to set the
# variable "VSCODE_INJECTION" while it sources the user's startup file, and
# it unsets the variable after the initialization.
ext=0
elif [[ ${kitty_bash_inject-} ]]; then
# When the startup file is sourced from kitty's shell ingteration
# "kitty.bash", the variable "kitty_bash_inject" is set. The variable is
# unset after the initialization. If we find it, we cancel the manual
# attaching and switch to the prompt attach.
ext=0
elif [[ ${ghostty_bash_inject-} || ${__ghostty_bash_flags-} ]]; then
# Ghostty seems to use a shell-integration code derived from kitty's. By
# the way, kitty is licensed under GPL-3.0, while Ghostty is licensed under
# the MIT license. Is it allowed to include a derivative of a part of
# kitty in the MIT-licensed Ghostty? It may be non-trivial whether the
# shell integration is an essential part of Ghostty.
# Note: Ghostty has updated the variable name on 2025-01-17 from
# "ghostty_bash_inject" to "__ghostty_bash_flags".
ext=0
fi
return "$ext"
}
## @fn ble-attach [opts]
function ble-attach {
#%if leakvar
ble/debug/leakvar#check $"leakvar" A1-begin
#%end.i
if (($# >= 2)); then
# Note: We may not use "ble/util/print-lines" because it can be in the
# POSIX mode.
builtin printf '%s\n' \
'usage: ble-attach [opts]' \
'Attach to ble.sh.' >&2
[[ $1 != --help ]] && return 2
return 0
fi
#%if leakvar
ble/debug/leakvar#check $"leakvar" A2-arg
#%end.i
# when detach flag is present
if [[ $_ble_edit_detach_flag ]]; then
case $_ble_edit_detach_flag in
(exit) return 0 ;;
(*) _ble_edit_detach_flag= ;; # cancel "detach"
esac
fi
[[ ! $_ble_attached ]] || return 0
#%if measure_load_time
ble/init/measure/section 'prompt'
#%end
_ble_attached=1
BLE_ATTACHED=1
#%if leakvar
ble/debug/leakvar#check $"leakvar" A3-guard
#%end.i
# 特殊シェル設定を待避
builtin eval -- "$_ble_bash_FUNCNEST_adjust"
builtin eval -- "$_ble_bash_POSIXLY_CORRECT_adjust"
ble/base/adjust-builtin-wrappers
ble/base/adjust-bash-options
ble/base/adjust-BASH_REMATCH
#%if leakvar
ble/debug/leakvar#check $"leakvar" A4-adjust
#%end.i
if ble/base/attach/.needs-prompt-attach; then
ble/base/install-prompt-attach
_ble_attached=
BLE_ATTACHED=
ble/base/restore-BASH_REMATCH
ble/base/restore-bash-options
ble/base/restore-builtin-wrappers
ble/base/restore-POSIXLY_CORRECT
#%if leakvar
ble/debug/leakvar#check $"leakvar" A4b1
#%end.i
builtin eval -- "$_ble_bash_FUNCNEST_restore"
return 0
fi
#%if leakvar
ble/debug/leakvar#check $"leakvar" A4b2
#%end.i
# reconnect standard streams
ble/fd/save-external-standard-streams
exec 0<&"$_ble_util_fd_tui_stdin"
exec 1>&"$_ble_util_fd_tui_stdout"
exec 2>&"$_ble_util_fd_tui_stderr"
# Terminal initialization and Terminal requests (5.0ms)
# The round-trip communication will take time, so we first adjust the
# terminal state and send requests. We then calculate the first prompt,
# which takes about 50ms, while waiting for the responses from the
# terminal.
ble/util/notify-broken-locale
ble/term/initialize # 0.4ms
ble/term/attach noflush # 2.5ms (起動時のずれ防止の為 stty -echo は早期に)
ble/canvas/attach # 1.8ms (requests for char_width_mode=auto)
ble/util/buffer.flush # 0.3ms
#%if leakvar
ble/debug/leakvar#check $"leakvar" A5-term/init
#%end.i
# Show the first prompt (44.7ms)
ble-edit/initialize # 0.3ms
ble-edit/attach # 2.1ms (_ble_edit_PS1 他の初期化)
ble_attach_first_prompt=1 \
ble/canvas/panel/render # 42ms
ble/util/buffer.flush # 0.2ms
#%if measure_load_time
ble/util/print >&2
ble/init/measure/section 'bind'
#%end
#%if leakvar
ble/debug/leakvar#check $"leakvar" A6-edit
#%end.i
# keymap 初期化
local IFS=$_ble_term_IFS
ble/decode/initialize # 7ms
ble/decode/reset-default-keymap # 264ms (keymap/vi.sh)
#%if leakvar
ble/debug/leakvar#check $"leakvar" A7-decode
#%end.i
if ! ble/decode/attach; then # 53ms
_ble_attached=
BLE_ATTACHED=
ble-edit/detach
ble/term/leave
ble/base/restore-BASH_REMATCH
ble/base/restore-bash-options
ble/base/restore-builtin-wrappers
ble/base/restore-POSIXLY_CORRECT
builtin eval -- "$_ble_bash_FUNCNEST_restore"
#%if leakvar
ble/debug/leakvar#check $"leakvar" A7b1
#%end.i
return 1
fi
ble/history:bash/reset # 27s for bash-3.0
#%if leakvar
ble/debug/leakvar#check $"leakvar" A8-history
#%end.i
# We here temporarily restore PS1 and PROMPT_COMMAND for the user hooks
# registered to ATTACH. Note that in this context, ble-edit/adjust-PS1 is
# already performed by the above ble-edit/attach.
ble-edit/restore-PS1
blehook/invoke ATTACH
ble-edit/adjust-PS1
#%if leakvar
ble/debug/leakvar#check $"leakvar" A9-ATTACH
#%end.i
# Note: 再描画 (初期化中のエラーメッセージ・プロンプト変更等の為)
ble/textarea#redraw
#%if leakvar
ble/debug/leakvar#check $"leakvar" A10-redraw
#%end.i
# Note: ble-decode/{initialize,reset-default-keymap} 内で
# info を設定する事があるので表示する。
ble/edit/info/default
#%if measure_load_time
ble/init/measure/section 'idle'
#%end
#%if leakvar
ble/debug/leakvar#check $"leakvar" A11-info
#%end.i
ble-edit/bind/.tail
#%if leakvar
ble/debug/leakvar#check $"leakvar" A12-tail
#%end.i
}
function ble-detach {
if (($#)); then
builtin eval -- "$_ble_bash_POSIXLY_CORRECT_local_adjust"
ble/base/print-usage-for-no-argument-command 'Detach from ble.sh.' "$@"
builtin eval -- "$_ble_bash_POSIXLY_CORRECT_local_leave"
return 2
fi
[[ $_ble_attached && ! $_ble_edit_detach_flag ]] || return 1
# Note: 実際の detach 処理は ble-edit/bind/.check-detach で実行される
_ble_edit_detach_flag=${1:-detach} # schedule detach
}
function ble-detach/impl {
[[ $_ble_attached ]] || return 1
_ble_attached=
BLE_ATTACHED=
blehook/invoke DETACH
ble-edit/detach
ble/decode/detach
READLINE_LINE='' READLINE_POINT=0
}
function ble-detach/message {
ble/util/buffer.print-lines "$@"
ble/util/buffer.flush
ble/edit/info/clear
ble/textarea#render
ble/util/buffer.flush
}
function ble/base/unload-for-reload {
if [[ $_ble_attached ]]; then
ble-detach/impl
local ret
ble/edit/marker#instantiate 'reload' &&
ble/util/print "$ret" >&"$_ble_util_fd_tui_stderr"
[[ $_ble_edit_detach_flag ]] ||
_ble_edit_detach_flag=reload
fi
# We here localize "_ble_bash" to avoid overwriting _ble_bash, which is
# already initialized by the new instance of ble.sh.
local _ble_bash=$_ble_bash
ble/base/unload reload
return 0
}
## @fn ble/base/unload [opts]
function ble/base/unload {
ble/util/is-running-in-subshell && return 1
# Adjust environment
local IFS=$_ble_term_IFS
builtin eval -- "$_ble_bash_POSIXLY_CORRECT_adjust"
ble/base/adjust-builtin-wrappers
ble/base/adjust-bash-options
ble/base/adjust-BASH_REMATCH
# src/edit.sh
ble-edit/bind/clear-keymap-definition-loader
ble/widget/.bell/.clear-DECSCNM
# decode.sh
ble/decode/keymap#unload
# src/util.sh
ble/term/stty/TRAPEXIT "$1"
ble/term/leave
ble/util/buffer.flush
blehook/invoke unload
ble/builtin/trap/finalize "$1"
ble/util/import/finalize
# main
ble/base/clean-up-runtime-directory finalize
ble/fd#finalize # this is used by the above function
ble/base/clear-version-variables
return 0
} 0<&"$_ble_util_fd_tui_stdin" 1>&"$_ble_util_fd_tui_stdout" 2>&"$_ble_util_fd_tui_stderr"
## @var _ble_base_attach_from_prompt
## 非空文字列の時、PROMPT_COMMAND 経由の ble-attach を現在試みている最中です。
##
## @arr _ble_base_attach_PROMPT_COMMAND
## PROMPT_COMMAND 経由の ble-attach をする時、元々の PROMPT_COMMAND の値を保
## 持する配列です。複数回 ble.sh をロードした時に、各ロード時に待避した
## PROMPT_COMMAND の値を配列の各要素に保持します。
##
## Note #D1851: 以前の ble.sh ロード時に設定された値を保持したいので、既に要
## 素がある場合にはクリアしない。
_ble_base_attach_from_prompt=
((${#_ble_base_attach_PROMPT_COMMAND[@]})) ||
_ble_base_attach_PROMPT_COMMAND=()
## @fn ble/base/install-prompt-attach
function ble/base/install-prompt-attach {
[[ ! $_ble_base_attach_from_prompt ]] || return 0
_ble_base_attach_from_prompt=1
if ((_ble_bash>=50100)); then
((${#PROMPT_COMMAND[@]})) || PROMPT_COMMAND[0]=
local prompt_command=ble/base/attach-from-PROMPT_COMMAND
if ((_ble_bash>=50300)); then
local prompt_command_new=ble::base::attach-from-PROMPT_COMMAND
ble/function#copy "$prompt_command" "$prompt_command_new" &&
prompt_command=$prompt_command_new
fi
ble/array#push PROMPT_COMMAND "$prompt_command"
if [[ $_ble_edit_detach_flag == reload ]]; then
_ble_edit_detach_flag=prompt-attach
blehook internal_PRECMD!=ble/base/attach-from-PROMPT_COMMAND
fi
else
local save_index=${#_ble_base_attach_PROMPT_COMMAND[@]}
_ble_base_attach_PROMPT_COMMAND[save_index]=${PROMPT_COMMAND-}
# Note: We adjust FUNCNEST and POSIXLY_CORRECT but do not need to be
# restore them here because "ble/base/attach-from-PROMPT_COMMAND" fails
# only when "ble-attach" fails, in such a case "ble-attach" already restore
# them.
ble/function#lambda PROMPT_COMMAND '
local _ble_local_lastexit=$? _ble_local_lastarg=$_
builtin eval -- "$_ble_bash_FUNCNEST_adjust"
builtin eval -- "$_ble_bash_POSIXLY_CORRECT_adjust"
ble/util/setexit "$_ble_local_lastexit" "$_ble_local_lastarg"
ble/base/attach-from-PROMPT_COMMAND '"$save_index"' "'"$FUNCNAME"'"'
ble/function#trace "$PROMPT_COMMAND"
if [[ $_ble_edit_detach_flag == reload ]]; then
_ble_edit_detach_flag=prompt-attach
blehook internal_PRECMD!="$PROMPT_COMMAND"
fi
fi
}
_ble_base_attach_from_prompt_lastexit=
_ble_base_attach_from_prompt_lastarg=
_ble_base_attach_from_prompt_PIPESTATUS=()
## @fn ble/base/attach-from-PROMPT_COMMAND prompt_command lambda
function ble/base/attach-from-PROMPT_COMMAND {
# 後続の設定によって PROMPT_COMMAND が置換された場合にはそれを保持する
{
# save $?, $_ and ${PIPE_STATUS[@]}
_ble_base_attach_from_prompt_lastexit=$? \
_ble_base_attach_from_prompt_lastarg=$_ \
_ble_base_attach_from_prompt_PIPESTATUS=("${PIPESTATUS[@]}")
builtin eval -- "$_ble_bash_FUNCNEST_adjust"
#%if measure_load_time
ble/util/print "ble.sh: $EPOCHREALTIME start prompt-attach" >&2
#%end
if ((BASH_LINENO[${#BASH_LINENO[@]}-1]>=1)); then
# 既にコマンドを実行している時にはそのコマンドの結果を記録する
_ble_edit_exec_lastexit=$_ble_base_attach_from_prompt_lastexit
_ble_edit_exec_lastarg=$_ble_base_attach_from_prompt_lastarg
_ble_edit_exec_PIPESTATUS=("${_ble_base_attach_from_prompt_PIPESTATUS[@]}")
# Note: 本当は一つ前のコマンドを知りたいが確実な方法がないのでこの関数の名前を入れておく。
_ble_edit_exec_BASH_COMMAND=$FUNCNAME
fi
local is_last_PROMPT_COMMAND=1
if (($#==0)); then
if local ret; ble/array#index PROMPT_COMMAND "$FUNCNAME"; then
local keys; keys=("${!PROMPT_COMMAND[@]}")
((ret==keys[${#keys[@]}-1])) || is_last_PROMPT_COMMAND=
ble/idict#replace PROMPT_COMMAND "$FUNCNAME"
fi
blehook internal_PRECMD-="$FUNCNAME" || ((1)) # set -e 対策
else
local save_index=$1 lambda=$2
# 待避していた内容を復元・実行
local PROMPT_COMMAND=${_ble_base_attach_PROMPT_COMMAND[save_index]}
local ble_base_attach_from_prompt_command=processing
ble/prompt/update/.eval-prompt_command 2>&"$_ble_util_fd_tui_stderr"
ble/util/unlocal ble_base_attach_from_prompt_command
_ble_base_attach_PROMPT_COMMAND[save_index]=$PROMPT_COMMAND
ble/util/unlocal PROMPT_COMMAND
# 可能なら自身を各 hook から除去
blehook internal_PRECMD-="$lambda" || ((1)) # set -e 対策
if [[ $PROMPT_COMMAND == "$lambda" ]]; then
PROMPT_COMMAND=${_ble_base_attach_PROMPT_COMMAND[save_index]}
else
is_last_PROMPT_COMMAND=
fi
# #D1354: 入れ子の ble/base/attach-from-PROMPT_COMMAND の時は一番外側で
# ble-attach を実行する様にする。2>/dev/null のリダイレクトにより
# stdout.off の効果が巻き戻されるのを防ぐ為。
[[ ${ble_base_attach_from_prompt_command-} != processing ]] || return 0
fi
# 既に attach 状態の時は処理はスキップ
[[ $_ble_base_attach_from_prompt ]] || return 0
_ble_base_attach_from_prompt=
# Note #D1778: この attach-from-PROMPT_COMMAND が PROMPT_COMMAND
# 処理の最後と見做せる場合、この時点で PROMPT_COMMAND は一通り終
# わったと見做せるので、ble-attach 内部で改めて PROMPT_COMMAND
# を実行する必要はなくなる。それを伝える為に中間状態の
# _ble_prompt_hash の値を設定する。
# Note #D1778: bash-preexec 経由でプロンプトを設定しようとしている
# 場合は、この時点で既に PRECMD に hook が移動している可能性があ
# るので PRECMD も発火しておく (PROMPT_COMMAND と PRECMD の順序
# が逆になるが仕方がない。問題になれば後で考える)。
if [[ $is_last_PROMPT_COMMAND ]]; then
ble-edit/exec:gexec/invoke-hook-with-setexit internal_PRECMD
ble-edit/exec:gexec/invoke-hook-with-setexit PRECMD
_ble_prompt_hash=$COLUMNS:$_ble_edit_lineno:prompt_attach
fi
} 2>/dev/null # set -x 対策 #D0930
ble-attach force; local ext=$?
# Note: When POSIXLY_CORRECT is adjusted outside this function, and when
# "ble-attach force" fails, the adjusted POSIXLY_CORRECT may be restored.
# For such a case, we need to locally adjust POSIXLY_CORRECT to work around
# 5.3 function names with a slash.
builtin eval -- "$_ble_bash_FUNCNEST_local_adjust"
builtin eval -- "$_ble_bash_POSIXLY_CORRECT_local_adjust"
# Note: 何故か分からないが PROMPT_COMMAND から ble-attach すると
# ble/bin/stty や ble/bin/mkfifo や tty 2>/dev/null などが
# ジョブとして表示されてしまう。joblist.flush しておくと平気。
# これで取り逃がすジョブもあるかもしれないが仕方ない。
ble/util/joblist.flush &>/dev/null
ble/util/joblist.check
#%if measure_load_time
ble/util/print "ble.sh: $EPOCHREALTIME end prompt-attach" >&2
#%end
builtin eval -- "$_ble_bash_POSIXLY_CORRECT_local_leave"
builtin eval -- "$_ble_bash_FUNCNEST_local_leave"
return "$?"
}
function ble/base/process-blesh-arguments {
local opts=$_ble_base_arguments_opts
local attach=$_ble_base_arguments_attach
local inputrc=$_ble_base_arguments_inputrc
_ble_base_rcfile=$_ble_base_arguments_rcfile
# reconstruction type of user-bindings
_ble_decode_initialize_inputrc=$inputrc
#%if measure_load_time
time {
#%end
ble/base/load-rcfile # blerc
#%if measure_load_time
ble/debug/measure-set-timeformat "blerc: '$_ble_base_rcfile'"; }
#%end
ble/util/invoke-hook BLE_ONLOAD
# attach
case $attach in
(attach) ble-attach ;;
(prompt) ble/base/install-prompt-attach ;;
(none) ;;
(*) ble/util/print "ble.sh: unrecognized attach method --attach='$attach'." ;;
esac
}
function ble/base/sub:test {
local error= logfile=
[[ ${LANG-} ]] || local LANG=en_US.UTF-8
ble-import lib/core-test
if (($#==0)); then
set -- bash main util canvas decode edit syntax complete keymap.vi
local timestamp
ble/util/strftime -v timestamp '%Y%m%d.%H%M%S'
logfile=$_ble_base_cache/test.$timestamp.log
>| "$logfile"
ble/test/log#open "$logfile"
fi
if ((!_ble_make_command_check_count)); then
ble/test/log "MACHTYPE: $MACHTYPE"
ble/test/log "BLE_VERSION: $BLE_VERSION"
fi
ble/test/log "BASH_VERSION: $BASH_VERSION"
local line='locale:' var ret
for var in LANG "${!LC_@}"; do
ble/string#quote-word "${!var}"
line="$line $var=$ret"
done
ble/test/log "$line"
local _ble_test_section_failure_count=0
local section
for section; do
local file=$_ble_base/lib/test-$section.sh
if [[ -f $file ]]; then
source -- "$file"
else
ble/test/log "ERROR: Test '$section' is not defined."
error=1
fi
done
((_ble_test_section_failure_count)) && error=1
if [[ $logfile ]]; then
ble/test/log#close
ble/util/print "ble.sh: The test log was saved to '${_ble_term_setaf[4]}$logfile$_ble_term_sgr0'."
fi
[[ ! $error ]]
}
function ble/base/sub:update { ble-update; }
function ble/base/sub:clear-cache {
(shopt -u failglob; ble/bin/rm -rf "$_ble_base_cache"/*)
}
function ble/base/sub:install {
local insdir=${1:-${XDG_DATA_HOME:-$HOME/.local/share}}/blesh
local dir=$insdir sudo=
[[ $dir == /* ]] || dir=./$dir
while [[ $dir && ! -d $dir ]]; do
dir=${dir%/*}
done
[[ $dir ]] || dir=/
if ! [[ -r $dir && -w $dir && -x $dir ]]; then
if ((EUID!=0)) && [[ ! -O $dir ]] && ble/bin#has sudo; then
sudo=1
else
ble/util/print "ble.sh --install: $dir: permission denied" >&2
return 1
fi
fi
if [[ ${_ble_base_repository-} == release:nightly-* ]]; then
if [[ $insdir == "$_ble_base" ]]; then
ble/util/print "ble.sh --install: already installed" >&2
return 1
fi
local ret
ble/string#quote-word "$insdir"; local qinsdir=$ret
ble/string#quote-word "$_ble_base"; local qbase=$ret
if [[ $sudo ]]; then
ble/util/print "\$ sudo mkdir -p $qinsdir"
sudo mkdir -p "$insdir"
ble/util/print "\$ sudo cp -Rf $qbase/* $qinsdir/"
sudo cp -Rf "$_ble_base"/* "$insdir/"
ble/util/print "\$ sudo rm -rf $qinsdir/{cache.d,run}"
sudo rm -rf "$insdir"/{cache.d,run}
else
ble/util/print "\$ mkdir -p $qinsdir"
ble/bin/mkdir -p "$insdir"
ble/util/print "\$ cp -Rf $qbase/* $qinsdir/"
ble/bin/cp -Rf "$_ble_base"/* "$insdir/"
ble/util/print "\$ rm -rf $qinsdir/cache.d/*"
ble/bin/rm -rf "$insdir/cache.d"/*
fi
elif local make; ble-update/.check-build-dependencies && ble-update/.check-repository; then
( ble/util/print "cd into $_ble_base_repository..." >&2 &&
builtin cd "$_ble_base_repository" &&
ble-update/.make ${sudo:+--sudo} install INSDIR="$insdir" )
else
ble/util/print "ble.sh --install: not supported." >&2
return 1
fi
}
function ble/base/sub:lib { return 0; } # do nothing
#%if measure_load_time
ble/debug/measure-set-timeformat ble.pp/epilogue; }
#%end
# Note: ble-attach 及びそれを呼び出す可能性がある物には DEBUG trap を
# 継承させる。これはユーザーの設定した user trap を正しく抽出する為
# に必要。現在は ble-attach から呼び出される ble-edit/attach で処理
# している。
ble/function#trace ble-attach
ble/function#trace ble
ble/function#trace ble/dispatch
ble/function#trace ble/base/attach-from-PROMPT_COMMAND
# Note #D1775: 以下は ble/base/unload 時に元の trap または ble.sh 有効時にユー
# ザーが設定した trap を復元する為に用いる物。ble/base/unload は中で
# ble/builtin/trap/finalize を呼び出す。ble/builtin/trap/finalize は別の箇所
# で ble/function#trace されている。
ble/function#trace ble/base/unload
ble-import -f lib/_package
if [[ $_ble_init_command ]]; then
ble/base/sub:"${_ble_init_command[@]}"; _ble_init_exit=$?
[[ $_ble_init_attached ]] && ble-attach
ble/util/setexit "$_ble_init_exit"
else
ble/base/process-blesh-arguments "$@"
fi
#%if measure_load_time
ble/debug/measure-set-timeformat 'Total' nofork; }
_ble_init_exit=$?
[[ ${BLE_ATTACHED-} ]] || ble/init/measure/section 'wait'
ble/util/setexit "$_ble_init_exit"
#%end
ble/init/clean-up check-attach 2>/dev/null # set -x 対策 #D0930
{ builtin eval "return $? || exit $?"; } 2>/dev/null # set -x 対策 #D0930
###############################################################################
|