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
|
"""Module containing :class:`Terminal`, the primary API entry point."""
# pylint: disable=too-many-lines
# std imports
import os
import re
import sys
import time
import codecs
import locale
import select
import struct
import platform
import warnings
import contextlib
import collections
from typing import IO, Dict, List, Match, Tuple, Union, Optional, Generator
# SupportsIndex was added in Python 3.8
if sys.version_info >= (3, 8):
# std imports
from typing import SupportsIndex
else:
SupportsIndex = int # type: ignore
# local
from .color import COLOR_DISTANCE_ALGORITHMS, xterm256gray_from_rgb, xterm256color_from_rgb
from .keyboard import (DEFAULT_ESCDELAY,
Keystroke,
DeviceAttribute,
SoftwareVersion,
KittyKeyboardProtocol,
_time_left,
_read_until,
resolve_sequence,
get_keyboard_codes,
get_leading_prefixes,
get_keyboard_sequences)
from .dec_modes import DecPrivateMode as _DecPrivateMode
from .dec_modes import DecModeResponse
from .sequences import Termcap, Sequence, SequenceTextWrapper
from .colorspace import RGB_256TABLE
from .formatters import (COLORS,
COMPOUNDABLES,
FormattingString,
NullCallableString,
ParameterizingString,
FormattingOtherString,
split_compound,
resolve_attribute,
resolve_capability)
from ._capabilities import (CAPABILITY_DATABASE,
CAPABILITIES_ADDITIVES,
CAPABILITIES_RAW_MIXIN,
CAPABILITIES_HORIZONTAL_DISTANCE)
# isort: off
HAS_TTY = True # pylint: disable=invalid-name
if platform.system() == 'Windows':
IS_WINDOWS = True
import jinxed as curses # pylint: disable=import-error
from jinxed.win32 import get_console_input_encoding # pylint: disable=import-error
else:
IS_WINDOWS = False
import curses
try:
import fcntl
import termios
import tty
except ImportError:
_TTY_METHODS = ('setraw', 'cbreak', 'kbhit', 'height', 'width')
_MSG_NOSUPPORT = (
"One or more of the modules: 'termios', 'fcntl', and 'tty' "
f"are not found on your platform '{platform.system()}'. "
"The following methods of Terminal are dummy/no-op "
f"unless a deriving class overrides them: {', '.join(_TTY_METHODS)}."
)
warnings.warn(_MSG_NOSUPPORT)
HAS_TTY = False # pylint: disable=invalid-name
_CUR_TERM = None # See comments at end of file pylint: disable=invalid-name
RE_GET_FGCOLOR_RESPONSE = re.compile(
'\x1b]10;rgb:([0-9a-fA-F]+)/([0-9a-fA-F]+)/([0-9a-fA-F]+)\x07')
RE_GET_BGCOLOR_RESPONSE = re.compile(
'\x1b]11;rgb:([0-9a-fA-F]+)/([0-9a-fA-F]+)/([0-9a-fA-F]+)\x07')
# XTSMGRAPHICS - Query sixel graphics geometry: ESC[?2;0;<width>;<height>S
_RE_XTSMGRAPHICS_RESPONSE = re.compile(r'\x1b\[\?2;0;(\d+);(\d+)S')
# XTSMGRAPHICS - Query sixel color registers: ESC[?1;0;<colors>S
_RE_XTSMGRAPHICS_COLORS_RESPONSE = re.compile(r'\x1b\[\?1;0;(\d+)S')
# XTWINOPS 14t - Query window pixel size: ESC[4;<height>;<width>t
_RE_XTWINOPS_14_RESPONSE = re.compile(r'\x1b\[4;(\d+);(\d+)t')
# XTWINOPS 16t - Query character cell pixel size: ESC[6;<height>;<width>t
_RE_XTWINOPS_16_RESPONSE = re.compile(r'\x1b\[6;(\d+);(\d+)t')
_RE_GET_DEVICE_ATTR_RESPONSE = re.compile('\x1b\\[\\?([0-9]+)((?:;[0-9]+)*)c')
_RE_GET_SOFTWARE_VERSION_RESPONSE = re.compile('\x1bP>\\|(.+?)\x1b\\\\')
class Terminal():
"""
An abstraction for color, style, positioning, and input in the terminal.
This keeps the endless calls to ``tigetstr()`` and ``tparm()`` out of your code, acts
intelligently when somebody pipes your output to a non-terminal, and abstracts over the
complexity of unbuffered keyboard input. It uses the terminfo database to remain portable across
terminal types.
"""
# pylint: disable=too-many-instance-attributes,too-many-public-methods
# Too many public methods (28/20)
# Too many instance attributes (12/7)
#: Sugary names for commonly-used capabilities
_sugar = {
'save': 'sc',
'restore': 'rc',
'clear_eol': 'el',
'clear_bol': 'el1',
'clear_eos': 'ed',
'enter_fullscreen': 'smcup',
'exit_fullscreen': 'rmcup',
'move': 'cup',
'move_yx': 'cup',
'move_x': 'hpa',
'move_y': 'vpa',
'hide_cursor': 'civis',
'normal_cursor': 'cnorm',
'reset_colors': 'op',
'normal': 'sgr0',
'reverse': 'rev',
'italic': 'sitm',
'no_italic': 'ritm',
'shadow': 'sshm',
'no_shadow': 'rshm',
'standout': 'smso',
'no_standout': 'rmso',
'subscript': 'ssubm',
'no_subscript': 'rsubm',
'superscript': 'ssupm',
'no_superscript': 'rsupm',
'underline': 'smul',
'no_underline': 'rmul',
'cursor_report': 'u6',
'cursor_request': 'u7',
'terminal_answerback': 'u8',
'terminal_enquire': 'u9',
}
#: DEC Private Mode constants accessible via Terminal.DecPrivateMode or term.DecPrivateMode
DecPrivateMode = _DecPrivateMode
def __init__(self,
kind: Optional[str] = None,
stream: Optional[IO[str]] = None,
force_styling: Union[bool, None] = False) -> None:
"""
Initialize the terminal.
:arg str kind: A terminal string as taken by :func:`curses.setupterm`.
Defaults to the value of the ``TERM`` environment variable.
.. note:: Terminals within a single process must share a common
``kind``. See :obj:`_CUR_TERM`.
:arg file stream: A file-like object representing the Terminal output.
Defaults to the original value of :obj:`sys.__stdout__`, like
:func:`curses.initscr` does.
If ``stream`` is not a tty, empty Unicode strings are returned for
all capability values, so things like piping your program output to
a pipe or file does not emit terminal sequences.
:arg bool force_styling: Whether to force the emission of capabilities
even if :obj:`sys.__stdout__` does not seem to be connected to a
terminal. If you want to force styling to not happen, use
``force_styling=None``.
This comes in handy if users are trying to pipe your output through
something like ``less -r`` or build systems which support decoding
of terminal sequences.
When the OS Environment variable FORCE_COLOR_ or CLICOLOR_FORCE_ is
*non-empty*, styling is used no matter the value specified by
``force_styling``.
Conversely, When OS Environment variable NO_COLOR_ is *non-empty*,
styling is **not** used no matter the value specified by
``force_styling`` and has precedence over FORCE_COLOR_ and
CLICOLOR_FORCE_.
.. _FORCE_COLOR: https://force-color.org/
.. _CLICOLOR_FORCE: https://bixense.com/clicolors/
.. _NO_COLOR: https://no-color.org/
"""
# pylint: disable=global-statement
global _CUR_TERM
self.errors = [
f'parameters: kind={kind!r}, stream={stream!r}, force_styling={force_styling!r}',
]
self._normal = None # cache normal attr, preventing recursive lookups
# we assume our input stream to be line-buffered until either the
# cbreak of raw context manager methods are entered with an attached tty.
self._line_buffered = True
self._stream = stream
self._keyboard_fd = None
self._init_descriptor = None
self._is_a_tty = False
self.__init__streams()
if IS_WINDOWS and self._init_descriptor is not None:
self._kind = kind or curses.get_term(self._init_descriptor)
else:
self._kind = kind or os.environ.get('TERM', 'dumb') or 'dumb'
self.__init_set_styling(force_styling)
if self.does_styling:
# Initialize curses (call setupterm), so things like tigetstr() work.
try:
curses.setupterm(self._kind, self._init_descriptor)
except curses.error as err:
msg = f'Failed to setupterm(kind={self._kind!r}): {err}'
warnings.warn(msg)
self.errors.append(msg)
self._kind = None
self._does_styling = False
else:
if _CUR_TERM is None or self._kind == _CUR_TERM:
_CUR_TERM = self._kind
else:
# termcap 'kind' is immutable in a python process! Once
# initialized by setupterm, it is unsupported by the
# 'curses' module to change the terminal type again. If you
# are a downstream developer and you need this
# functionality, consider sub-processing, instead.
warnings.warn(
f'A terminal of kind "{kind}" has been requested; due to an'
' internal python curses bug, terminal capabilities'
f' for a terminal of kind "{_CUR_TERM}" will continue to be'
' returned for the remainder of this process.'
)
self.__init__color_capabilities()
self.__init__capabilities()
self.__init__keycodes()
self.__init__dec_private_modes()
# Initialize Kitty keyboard protocol tracking
self._kitty_kb_first_query_failed = False
self._kitty_kb_first_query_attempted = False
# Device Attributes (DA1) cache and sticky failure tracking
self._device_attributes_cache: Optional[DeviceAttribute] = None
self._device_attributes_first_query_failed = False
# Software Version cache
self._software_version_cache: Optional[SoftwareVersion] = None
# Initialize sixel graphics query caches,
# Cache for _get_xtsmgraphics() query result - (height, width) or (-1, -1)
# the value of (-1, -1) is used for 'sticky failure' unless force=True
self._xtsmgraphics_cache: Optional[Tuple[int, int]] = None
# Cache for XTWINOPS window pixel dimensions - (height, width) or (-1, -1)
self._xtwinops_cache: Optional[Tuple[int, int]] = None
# Cache for get_sixel_colors() - stores color count or -1
self._xtsmgraphics_colors_cache: Optional[int] = None
# Cache for get_cell_height_and_width() - (height, width) or (-1, -1)
self._xtwinops_cell_cache: Optional[Tuple[int, int]] = None
# Cache for in-band resize notifications (mode 2048)
# When notify_on_resize() context manager is active, this stores the latest
# terminal dimensions from resize events
self._preferred_size_cache: Optional["WINSZ"] = None
def __init_set_styling(self, force_styling: bool) -> None:
self._does_styling = False
if os.getenv('NO_COLOR'):
self.errors.append(f'NO_COLOR={os.getenv("NO_COLOR")!r}')
elif os.getenv('FORCE_COLOR'):
self.errors.append(f'FORCE_COLOR={os.getenv("FORCE_COLOR")!r}')
self._does_styling = True
elif os.getenv('CLICOLOR_FORCE'):
self.errors.append(f'CLICOLOR_FORCE={os.getenv("CLICOLOR_FORCE")!r}')
self._does_styling = True
elif force_styling is None and self.is_a_tty:
self.errors.append('force_styling is None')
elif force_styling or self.is_a_tty:
self._does_styling = True
def __init__streams(self) -> None:
# pylint: disable=too-complex,too-many-branches
# Agree to disagree !
stream_fd = None
# Default stream is stdout
if self._stream is None:
self._stream = sys.__stdout__
if not hasattr(self._stream, 'fileno'):
self.errors.append('stream has no fileno method')
elif not callable(self._stream.fileno): # type: ignore[union-attr]
self.errors.append('stream.fileno is not callable')
else:
try:
stream_fd = self._stream.fileno() # type: ignore[union-attr]
except ValueError as err:
# The stream is not a file, such as the case of StringIO, or, when it has been
# "detached", such as might be the case of stdout in some test scenarios.
self.errors.append(f'Unable to determine output stream file descriptor: {err}')
else:
self._is_a_tty = os.isatty(stream_fd)
if not self._is_a_tty:
self.errors.append('stream not a TTY')
# Keyboard valid as stdin only when output stream is stdout or stderr and is a tty.
if self._stream in (sys.__stdout__, sys.__stderr__):
try:
self._keyboard_fd = sys.__stdin__.fileno() # type: ignore[union-attr]
except (AttributeError, ValueError) as err:
self.errors.append(f'Unable to determine input stream file descriptor: {err}')
else:
# _keyboard_fd only non-None if both stdin and stdout is a tty.
if not self.is_a_tty:
self.errors.append('Output stream is not a TTY')
self._keyboard_fd = None
elif not os.isatty(self._keyboard_fd):
self.errors.append('Input stream is not a TTY')
self._keyboard_fd = None
else:
self.errors.append('Output stream is not a default stream')
# The descriptor to direct terminal initialization sequences to.
self._init_descriptor = stream_fd
if stream_fd is None:
try:
self._init_descriptor = sys.__stdout__.fileno() # type: ignore[union-attr]
except ValueError as err:
self.errors.append(f'Unable to determine __stdout__ file descriptor: {err}')
def __init__color_capabilities(self) -> None:
self._color_distance_algorithm = 'cie2000'
if not self.does_styling:
self.number_of_colors = 0
elif IS_WINDOWS or os.environ.get('COLORTERM') in {'truecolor', '24bit'}:
self.number_of_colors = 1 << 24
else:
self.number_of_colors = max(0, curses.tigetnum('colors') or -1)
def __clear_color_capabilities(self) -> None:
for cached_color_cap in set(dir(self)) & COLORS:
delattr(self, cached_color_cap)
def __init__capabilities(self) -> None:
# important that we lay these in their ordered direction, so that our
# preferred, 'color' over 'set_a_attributes1', for example.
self.caps = collections.OrderedDict()
# some static injected patterns, esp. without named attribute access.
for name, args in CAPABILITIES_ADDITIVES.items():
self.caps[name] = Termcap(name, *args)
for name, (attribute, kwds) in CAPABILITY_DATABASE.items():
if self.does_styling:
# attempt dynamic lookup
cap = getattr(self, attribute)
if cap:
self.caps[name] = Termcap.build(
name, cap, attribute, **kwds)
continue
# fall-back
pattern = CAPABILITIES_RAW_MIXIN.get(name)
if pattern:
self.caps[name] = Termcap(name, pattern, attribute, kwds.get('nparams', 0))
# make a compiled named regular expression table
self.caps_compiled = re.compile(
'|'.join(cap.pattern for cap in self.caps.values())
)
# Used with padd() to separate plain text from caps
self._caps_named_compiled = re.compile(
'|'.join(cap.named_pattern for cap in self.caps.values())
)
# Used with padd() to strip non-horizontal caps
self._caps_compiled_without_hdist = re.compile('|'.join(
cap.pattern for cap in self.caps.values()
if cap.name not in CAPABILITIES_HORIZONTAL_DISTANCE)
)
# Used with padd() to iterate horizontal caps
self._hdist_caps_named_compiled = re.compile('|'.join(
cap.named_pattern for cap in self.caps.values()
if cap.name in CAPABILITIES_HORIZONTAL_DISTANCE)
)
# for tokenizer, the '.lastgroup' is the primary lookup key for
# 'self.caps', unless 'MISMATCH'; then it is an unmatched character.
self._caps_compiled_any = re.compile(
f'{"|".join(cap.named_pattern for cap in self.caps.values())}|(?P<MISMATCH>.)'
)
self._caps_unnamed_any = re.compile(
f'{"|".join(f"({cap.pattern})" for cap in self.caps.values())}|(.)'
)
def __init__keycodes(self) -> None:
# Initialize keyboard data determined by capability.
# Build database of int code <=> KEY_NAME.
self._keycodes = get_keyboard_codes()
# Store attributes as: self.KEY_NAME = code. These only work for porting
# legacy curses applications that used key codes, and are not really
# suggested, and they do not support modifier keys, eg. 'KEY_SHIFT_F1'
# does not exist and has no code.
for key_code, key_name in self._keycodes.items():
setattr(self, key_name, key_code)
# Build database of sequence <=> KEY_NAME.
self._keymap = get_keyboard_sequences(self)
# build set of prefixes of sequences
self._keymap_prefixes = get_leading_prefixes(self._keymap)
# Add DEC event prefixes (mouse, bracketed paste, focus tracking) These
# are not in the keymap but need to be recognized as valid "prefixes",
# so that they are not detected early as metaSendsEscape sequence until
# after esc_delay has elapsed.
self._keymap_prefixes.update([
'\x1b[M', # Legacy mouse (needs 3 more bytes)
'\x1b[<', # SGR mouse (variable length)
'\x1b[200', # Bracketed paste start and its starting prefixes,
'\x1b[20',
'\x1b[2',
])
# keyboard stream buffer
self._keyboard_buf: collections.deque[str] = collections.deque()
if self._keyboard_fd is not None:
# set input encoding and initialize incremental decoder
if IS_WINDOWS:
# pylint: disable-next=possibly-used-before-assignment
self._encoding = get_console_input_encoding() \
or locale.getpreferredencoding() or 'UTF-8'
else:
self._encoding = locale.getpreferredencoding() or 'UTF-8'
try:
self._keyboard_decoder = codecs.getincrementaldecoder(self._encoding)()
except LookupError as err:
# encoding is illegal or unsupported, use 'UTF-8'
warnings.warn(f'LookupError: {err}, defaulting to UTF-8 for keyboard.')
self._encoding = 'UTF-8'
self._keyboard_decoder = codecs.getincrementaldecoder(self._encoding)()
def __init__dec_private_modes(self) -> None:
"""Initialize DEC Private Mode caching and state tracking."""
# Cache for queried DEC private modes to avoid repeated queries
self._dec_mode_cache: Dict[int, int] = {}
# Global timeout tracking state
self._dec_any_query_succeeded = False
self._dec_first_query_failed = False
def __getattr__(self,
attr: str) -> Union[NullCallableString,
ParameterizingString,
FormattingString]:
r"""
Return a terminal capability as Unicode string.
For example, ``term.bold`` is a unicode string that may be prepended
to text to set the video attribute for bold, which should also be
terminated with the pairing :attr:`normal`. This capability
returns a callable, so you can use ``term.bold("hi")`` which
results in the joining of ``(term.bold, "hi", term.normal)``.
Compound formatters may also be used. For example::
>>> term.bold_blink_red_on_green("merry x-mas!")
For a parameterized capability such as ``move`` (or ``cup``), pass the
parameters as positional arguments::
>>> term.move(line, column)
See the manual page `terminfo(5)
<https://invisible-island.net/ncurses/man/terminfo.5.html>`_ for a
complete list of capabilities and their arguments.
"""
if not self._does_styling:
return NullCallableString()
# Fetch the missing 'attribute' into some kind of curses-resolved
# capability, and cache by attaching to this Terminal class instance.
#
# Note that this will prevent future calls to __getattr__(), but
# that's precisely the idea of the cache!
val = resolve_attribute(self, attr)
setattr(self, attr, val)
return val
@property
def kind(self) -> str:
"""
Read-only property: Terminal kind determined on class initialization.
:rtype: str
"""
return self._kind
@property
def does_styling(self) -> bool:
"""
Read-only property: Whether this class instance may emit sequences.
:rtype: bool
"""
return self._does_styling
@property
def is_a_tty(self) -> bool:
"""
Read-only property: Whether :attr:`~.stream` is a terminal.
:rtype: bool
"""
return self._is_a_tty
@property
def height(self) -> int:
"""
Read-only property: Height of the terminal (in number of lines).
:rtype: int
"""
return self._height_and_width().ws_row
@property
def width(self) -> int:
"""
Read-only property: Width of the terminal (in number of columns).
:rtype: int
"""
return self._height_and_width().ws_col
@property
def pixel_height(self) -> int:
"""
Read-only property: Height of the terminal (in pixels).
:rtype: int
"""
return self._height_and_width().ws_ypixel
@property
def pixel_width(self) -> int:
"""
Read-only property: Width of terminal (in pixels).
:rtype: int
"""
return self._height_and_width().ws_xpixel
@staticmethod
def _winsize(fd): # type: ignore[no-untyped-def]
"""
Return named tuple describing size of the terminal by ``fd``.
If the given platform does not have modules :mod:`termios`,
:mod:`fcntl`, or :mod:`tty`, window size of 80 columns by 25
rows is always returned.
:arg int fd: file descriptor queries for its window size.
:raises IOError: the file descriptor ``fd`` is not a terminal.
:rtype: WINSZ
:returns: named tuple describing size of the terminal
WINSZ is a :class:`collections.namedtuple` instance, whose structure
directly maps to the return value of the :const:`termios.TIOCGWINSZ`
ioctl return value. The return parameters are:
- ``ws_row``: width of terminal by its number of character cells.
- ``ws_col``: height of terminal by its number of character cells.
- ``ws_xpixel``: width of terminal by pixels (not accurate).
- ``ws_ypixel``: height of terminal by pixels (not accurate).
"""
if HAS_TTY:
# pylint: disable=protected-access,possibly-used-before-assignment
data = fcntl.ioctl(fd, termios.TIOCGWINSZ, WINSZ._BUF)
return WINSZ(*struct.unpack(WINSZ._FMT, data))
return WINSZ(ws_row=25, ws_col=80, ws_xpixel=0, ws_ypixel=0)
def _height_and_width(self) -> "WINSZ":
"""
Return a tuple of (terminal height, terminal width).
If :attr:`stream` or :obj:`sys.__stdout__` is not a tty or does not
support :func:`fcntl.ioctl` of :const:`termios.TIOCGWINSZ`, a window
size of 80 columns by 25 rows is returned for any values not
represented by environment variables ``LINES`` and ``COLUMNS``, which
is the default text mode of IBM PC compatibles.
:rtype: WINSZ
:returns: Named tuple specifying the terminal size
WINSZ is a :class:`collections.namedtuple` instance, whose structure
directly maps to the return value of the :const:`termios.TIOCGWINSZ`
ioctl return value. The return parameters are:
- ``ws_row``: height of terminal by its number of cell rows.
- ``ws_col``: width of terminal by its number of cell columns.
- ``ws_xpixel``: width of terminal by pixels (not accurate).
- ``ws_ypixel``: height of terminal by pixels (not accurate).
.. note:: the peculiar (height, width, width, height) order, which
matches the return order of TIOCGWINSZ!
"""
# Return preferred cache if available (from in-band resize notifications)
if self._preferred_size_cache is not None:
return self._preferred_size_cache
for fd in (self._init_descriptor, sys.__stdout__):
try:
if fd is not None:
return self._winsize(fd)
except (OSError, ValueError, TypeError):
pass
return WINSZ(ws_row=int(os.getenv('LINES', '25')),
ws_col=int(os.getenv('COLUMNS', '80')),
ws_xpixel=None,
ws_ypixel=None)
def _query_response(self, query_str: str, response_re: Union[str, Match[str]],
timeout: Optional[float]) -> Optional[Match[str]]:
"""
Sends a query string to the terminal and waits for a response.
:arg str query_str: Query string written to output
:arg str response_re: Regular expression matching query response
:arg float timeout: Return after time elapsed in seconds
:return: re.match object for response_re or None if not found
:rtype: re.Match
"""
# No query is ever done for terminals where is_a_tty is False
if not self.is_a_tty:
return None
# Avoid changing user's desired raw or cbreak mode if already entered,
# conditionally entering cbreak mode ourselves. This is necessary to
# receive user input without awaiting a human to press the return key.
ctx = None
try:
if self._line_buffered:
ctx = self.cbreak()
ctx.__enter__()
# Emit the query sequence,
self.stream.write(query_str)
self.stream.flush()
# Wait for response
match, data = _read_until(term=self,
pattern=response_re,
timeout=timeout)
# Exclude response from subsequent input
if match:
data = data[:match.start()] + data[match.end():]
# re-buffer keyboard data, if any
self.ungetch(data)
finally:
if ctx is not None:
# exit cbreak
ctx.__exit__(None, None, None)
return match
@contextlib.contextmanager
def location(self, x: Optional[int] = None, y: Optional[int]
= None) -> Generator[None, None, None]:
"""
Context manager for temporarily moving the cursor.
:arg int x: horizontal position, from left, *0*, to right edge of screen, *self.width - 1*.
:arg int y: vertical position, from top, *0*, to bottom of screen, *self.height - 1*.
:return: a context manager.
:rtype: Iterator
Move the cursor to a certain position on entry, do any kind of I/O, and upon exit
let you print stuff there, then return the cursor to its original position:
.. code-block:: python
term = Terminal()
with term.location(y=0, x=0):
for row_num in range(term.height-1):
print('Row #{row_num}')
print(term.clear_eol + 'Back to original location.')
Specify ``x`` to move to a certain column, ``y`` to move to a certain
row, both, or neither. If you specify neither, only the saving and
restoration of cursor position will happen. This can be useful if you
simply want to restore your place after doing some manual cursor
movement.
Calls cannot be nested: only one should be entered at a time.
.. note:: The argument order *(x, y)* differs from the return value order *(y, x)*
of :meth:`get_location`, or argument order *(y, x)* of :meth:`move`. This is
for API Compatibility with the blessings library, sorry for the trouble!
"""
# Save position and move to the requested column, row, or both:
self.stream.write(self.save)
if x is not None and y is not None:
self.stream.write(self.move(y, x))
elif x is not None:
self.stream.write(self.move_x(x))
elif y is not None:
self.stream.write(self.move_y(y))
try:
self.stream.flush()
yield
finally:
# Restore original cursor position:
self.stream.write(self.restore)
self.stream.flush()
def get_location(self, timeout: float = 1) -> Tuple[int, int]:
r"""
Return tuple (row, column) of cursor position.
When :attr:`is_a_tty` is False, no sequences are transmitted or response
awaited, and the value ``(-1, -1)`` is returned without inquiry.
:arg float timeout: Return after time elapsed in seconds with value ``(-1, -1)`` indicating
that the remote end did not respond.
:rtype: tuple
:returns: cursor position as tuple in form of ``(y, x)``. When a timeout is specified,
always ensure the return value is checked for ``(-1, -1)``.
The location of the cursor is determined by emitting the ``u7`` terminal capability, or
VT100 `Query Cursor Position
<https://www2.ccs.neu.edu/research/gpc/VonaUtils/vona/terminal/vtansi.htm#status>`_
when such capability is undefined, which elicits a response from a reply string described by
capability ``u6``, or again VT100's definition of ``\x1b[%i%d;%dR`` when undefined.
The ``(y, x)`` return value matches the parameter order of the :meth:`move_yx` capability.
The following sequence should cause the cursor to not move at all::
>>> term = Terminal()
>>> term.move_yx(*term.get_location()))
And the following should assert True with a terminal:
>>> term = Terminal()
>>> given_y, given_x = 10, 20
>>> with term.location(y=given_y, x=given_x):
... result_y, result_x = term.get_location()
...
>>> assert given_x == result_x, (given_x, result_x)
>>> assert given_y == result_y, (given_y, result_y)
"""
# Local lines attached by termios and remote login protocols such as
# ssh and telnet both provide a means to determine the window
# dimensions of a connected client, but **no means to determine the
# location of the cursor**.
#
# from https://invisible-island.net/ncurses/terminfo.src.html,
#
# > The System V Release 4 and XPG4 terminfo format defines ten string
# > capabilities for use by applications, <u0>...<u9>. In this file,
# > we use certain of these capabilities to describe functions which
# > are not covered by terminfo. The mapping is as follows:
# >
# > u9 terminal enquire string (equiv. to ANSI/ECMA-48 DA)
# > u8 terminal answerback description
# > u7 cursor position request (equiv. to VT100/ANSI/ECMA-48 DSR 6)
# > u6 cursor position report (equiv. to ANSI/ECMA-48 CPR)
response_str = getattr(self, self.caps['cursor_report'].attribute) or '\x1b[%i%d;%dR'
match = self._query_response(
self.u7 or '\x1b[6n', self.caps['cursor_report'].re_compiled, timeout)
if match:
# return matching sequence response, the cursor location.
row, col = (int(val) for val in match.groups())
# Per https://invisible-island.net/ncurses/terminfo.src.html
# The cursor position report (<u6>) string must contain two
# scanf(3)-style %d format elements. The first of these must
# correspond to the Y coordinate and the second to the %d.
# If the string contains the sequence %i, it is taken as an
# instruction to decrement each value after reading it (this is
# the inverse sense from the cup string).
if '%i' in response_str:
row -= 1
col -= 1
return row, col
# We chose to return an illegal value rather than an exception,
# favoring that users author function filters, such as max(0, y),
# rather than crowbarring such logic into an exception handler.
return -1, -1
def get_fgcolor(self, timeout: float = 1) -> Tuple[int, int, int]:
"""
Return tuple (r, g, b) of foreground color.
When :attr:`is_a_tty` is False, no sequences are transmitted or response
awaited, and the value ``(-1, -1, -1)`` is returned without inquiry.
:arg float timeout: Return after time elapsed in seconds with value ``(-1, -1, -1)``
indicating that the remote end did not respond.
:rtype: tuple
:returns: foreground color as tuple in form of ``(r, g, b)``. When a timeout is specified,
always ensure the return value is checked for ``(-1, -1, -1)``.
The foreground color is determined by emitting an `OSC 10 color query
<https://invisible-island.net/xterm/ctlseqs/ctlseqs.html#h3-Operating-System-Commands>`_.
See also :meth:`~.Terminal.get_bgcolor` for querying the background color.
"""
match = self._query_response('\x1b]10;?\x07', RE_GET_FGCOLOR_RESPONSE, timeout)
return tuple(int(val, 16) for val in match.groups()) if match else (-1, -1, -1)
def get_bgcolor(self, timeout: float = 1) -> Tuple[int, int, int]:
"""
Return tuple (r, g, b) of background color.
When :attr:`is_a_tty` is False, no sequences are transmitted or response
awaited, and the value ``(-1, -1, -1)`` is returned without inquiry.
:arg float timeout: Return after time elapsed in seconds with value ``(-1, -1, -1)``
indicating that the remote end did not respond.
:rtype: tuple
:returns: background color as tuple in form of ``(r, g, b)``. When a timeout is specified,
always ensure the return value is checked for ``(-1, -1, -1)``.
The background color is determined by emitting an `OSC 11 color query
<https://invisible-island.net/xterm/ctlseqs/ctlseqs.html#h3-Operating-System-Commands>`_.
See also :meth:`~.Terminal.get_fgcolor` for querying the foreground color.
"""
match = self._query_response('\x1b]11;?\x07', RE_GET_BGCOLOR_RESPONSE, timeout)
return tuple(int(val, 16) for val in match.groups()) if match else (-1, -1, -1)
def get_device_attributes(self, timeout: Optional[float] = 1,
force: bool = False) -> Optional[DeviceAttribute]:
"""
Query the terminal's Device Attributes (DA1).
When :attr:`is_a_tty` is False, no sequences are transmitted or response
awaited, and ``None`` is returned without inquiry.
If a Device Attributes query fails to respond within the ``timeout``
specified, ``None`` is returned. If this was the first query for device
attributes, all subsequent queries return ``None`` unless ``force=True``
is set (sticky failure).
**Responses are cached indefinitely** unless ``force=True`` is
specified.
.. note:: A ``timeout`` value should be set to avoid blocking when the
terminal does not respond to DA1 queries, which may happen with some
kinds of "dumb" terminals.
:arg float timeout: Timeout in seconds to await terminal response
:arg bool force: Force active terminal inquiry even if cached result exists
or previous query failed
:rtype: DeviceAttribute or None
:returns: DeviceAttribute instance with terminal capabilities, or None
if unsupported/timeout
.. code-block:: python
term = Terminal()
# Query device attributes
da = term.get_device_attributes(timeout=1.0)
if da is not None:
print(f"Service class: {da.service_class}")
print(f"Supports sixel: {da.supports_sixel}")
print(f"Extensions: {sorted(da.extensions)}")
"""
# Return None if first query failed and force is not set
if self._device_attributes_first_query_failed and not force:
return None
# Return cached result unless force=True
if self._device_attributes_cache is not None and not force:
return self._device_attributes_cache
query = '\x1b[c'
match = self._query_response(query, DeviceAttribute.RE_RESPONSE, timeout)
# invalid or no response (timeout)
if match is None:
self._device_attributes_first_query_failed = True
return None
result = DeviceAttribute.from_match(match)
if result is not None:
self._device_attributes_cache = result
return result
def get_software_version(self, timeout: Optional[float] = 1,
force: bool = False) -> Optional[SoftwareVersion]:
"""
Query the terminal's software name and version using XTVERSION.
Sends an XTVERSION query to the terminal and returns a
:class:`SoftwareVersion` instance with the terminal's name and version.
If an XTVERSION query fails to respond within the ``timeout``
specified, ``None`` is returned.
**Successful responses are cached indefinitely** unless ``force=True`` is
specified. Unlike other query methods, there is no sticky failure mechanism -
each failed query can be retried.
.. note:: A ``timeout`` value should be set to avoid blocking when the
terminal does not respond to XTVERSION queries, which may happen with
some kinds of "dumb" terminals.
:arg float timeout: Timeout in seconds to await terminal response
:arg bool force: Force active terminal inquiry even if cached result exists
:rtype: SoftwareVersion or None
:returns: SoftwareVersion instance with terminal name and version, or None
if unsupported/timeout
.. code-block:: python
term = Terminal()
# Query software version
sv = term.get_software_version(timeout=1.0)
if sv is not None:
print(f"Terminal: {sv.name} {sv.version}")
"""
# Return None if not a TTY
if not self.is_a_tty:
return None
# Return cached result unless force=True
if self._software_version_cache is not None and not force:
return self._software_version_cache
# Build and send query sequence and expected response pattern
query = '\x1b[>q'
match = self._query_response(query, _RE_GET_SOFTWARE_VERSION_RESPONSE, timeout)
# invalid or no response (timeout)
if match is None:
return None
# parse, cache, and return the response
self._software_version_cache = SoftwareVersion.from_match(match)
return self._software_version_cache
def does_sixel(self, timeout: Optional[float] = 1, force: bool = False) -> bool:
"""
Query whether the terminal supports sixel graphics.
Sixel is a bitmap graphics format supported by some modern terminal
emulators, allowing applications to display inline images.
When :attr:`is_a_tty` is False, no sequences are transmitted or response
awaited, and ``False`` is returned without inquiry.
This method calls :meth:`get_device_attributes` to query the terminal's
capabilities and checks for sixel support (extension 4 in the DA1 response).
Results are cached, so subsequent calls are fast.
:arg float timeout: Timeout in seconds to await terminal response. When
``None`` (default), the query may block indefinitely.
:arg bool force: Bypass cache and re-query the terminal
:rtype: bool
:returns: ``True`` if terminal supports sixel graphics, ``False`` otherwise
"""
da = self.get_device_attributes(timeout=timeout, force=force)
return da.supports_sixel if da is not None else False
def get_dec_mode(self, mode: Union[int, _DecPrivateMode],
timeout: float = 1, force: bool = False) -> DecModeResponse:
"""
Query the state of a DEC Private Mode (DECRQM).
Sends a DECRQM query to the terminal and returns a
:class:`DecModeResponse` instance. Use the helper methods like
:meth:`DecModeResponse.is_supported` or
:meth:`DecModeResponse.is_enabled` and others to interpret the result.
When :attr:`is_a_tty` is False, no sequences are transmitted or response
awaited, and the :class:`DecModeResponse` value returned is always
:attr:`DecModeResponse.NOT_QUERIED`.
In some cases a ``timeout`` value should be set, as it is possible for a
terminal that succeeds :attr:`is_a_tty` to fail to respond to DEC Private
Modes, such as in a CI Build Service or other "dumb" terminal, even a few
popular modern ones such as Konsole.
If a DEC Private mode query fails to respond within the ``timeout``
specified, the :class:`DecModeResponse` value returned is
:attr:`DecModeResponse.NO_RESPONSE`. If this was the first DEC Private
mode query, all subsequent queries return a :class:`DecModeResponse`
value of :attr:`DecModeResponse.NOT_QUERIED` unless ``force=True`` is
set.
**Repeat queries return the (cached) known state immediately** without
re-inquiry unless ``force=True``. Although there are special cases
where a user may re-configure their terminal settings after the state
was requested by an application, the application is generally restarted
to recognize the new settings rather than to repeatedly re-inquire about
their latest value!
:arg mode: DEC Private Mode to query
:type mode: DecPrivateMode | int
:arg float timeout: Timeout in seconds to await terminal response
:arg bool force: Force active terminal inquery in all cases
:rtype: DecModeResponse
:returns: DecModeResponse instance
:raises TypeError: If mode is not DecPrivateMode or int
.. code-block:: python
term = Terminal()
# Query synchronized output support
response = term.get_dec_mode(DecPrivateMode.SYNCHRONIZED_OUTPUT)
if response.supported:
print("Synchronized output is available")
"""
if not isinstance(mode, (int, _DecPrivateMode)):
raise TypeError(f"Invalid mode argument, got {mode!r}, "
"DecPrivateMode or int expected")
if self._dec_first_query_failed and not force:
# When the first query is not responded, we can safely assume all
# subsequent inqueries will be ignored
return DecModeResponse(mode, DecModeResponse.NOT_QUERIED)
# Always return the cached response when available unless force=True
if int(mode) in self._dec_mode_cache and not force:
cached_value = self._dec_mode_cache[int(mode)]
return DecModeResponse(mode, cached_value)
# Build and send query sequence and expected response pattern
query = f'\x1b[?{int(mode):d}$p'
response_pattern = re.compile(f'\x1b\\[\\?{int(mode):d};([0-4])\\$y')
match = self._query_response(query, response_pattern, timeout)
# invalid or no response (timeout or not a TTY)
if match is None:
# If not a TTY, _query_response() returned None immediately
if not self.is_a_tty:
return DecModeResponse(mode, DecModeResponse.NOT_QUERIED)
# We have a TTY but query failed (timeout)
if not self._dec_any_query_succeeded:
# This is the first-ever query and it failed! This query returns
# NO_RESPONSE to indicate the timeout, subsequent queries will
# return NOT_QUERIED.
# pylint: disable=attribute-defined-outside-init
self._dec_first_query_failed = True
return DecModeResponse(mode, DecModeResponse.NO_RESPONSE)
# Rather unusual, we've previously had success with get_dec_mode,
# but no response was found in this instance -- presumably the
# remote end is disconnected or stalled, indicated by NO_RESPONSE,
# or otherwise had some corruption in this specific response string.
return DecModeResponse(mode, DecModeResponse.NO_RESPONSE)
# parse, cache, and return the response value
response_value = int(match.group(1))
# pylint: disable=attribute-defined-outside-init
self._dec_mode_cache[int(mode)] = response_value
self._dec_any_query_succeeded = True
return DecModeResponse(mode, response_value)
@contextlib.contextmanager
def dec_modes_enabled(self, *modes: Union[int, _DecPrivateMode],
timeout: Optional[float] = 1) -> Generator[None, None, None]:
"""
Context manager for temporarily enabling DEC Private Modes.
On entry, queries each mode's current state using get_dec_mode().
For modes that are supported but currently disabled, enables them
and tracks them for restoration. On exit, disables all modes that
were enabled by this context manager, restoring original state.
Unsupported modes are silently ignored.
:arg modes: One or more DEC Private Mode numbers or enum members
:arg float timeout: Timeout in seconds for get_dec_mode calls
:raises TypeError: If mode is not DecPrivateMode or int
.. code-block:: python
term = Terminal()
# Enable synchronized output temporarily
with term.dec_modes_enabled(DecPrivateMode.SYNCHRONIZED_OUTPUT):
# All output will be atomic
print("Frame 1")
print("Frame 2")
"""
# Track modes enabled ('SET") to be re-enabled ('RESET') after the yield
enabled_modes = []
# Query current state of each mode and build enable list
for arg_pos, mode in enumerate(modes):
if isinstance(mode, _DecPrivateMode):
mode_num = mode.value
elif isinstance(mode, int):
mode_num = mode
else:
raise TypeError(f"Invalid mode argument number {arg_pos}, got {mode!r}, "
"DecPrivateMode or int expected")
response = self.get_dec_mode(mode_num, timeout=timeout)
if response.supported and not response.enabled:
enabled_modes.append(mode_num)
self._dec_mode_set_enabled(*enabled_modes)
try:
yield
finally:
self._dec_mode_set_disabled(*enabled_modes)
@contextlib.contextmanager
def dec_modes_disabled(self, *modes: Union[int, _DecPrivateMode],
timeout: Optional[float] = 1) -> Generator[None, None, None]:
"""
Context manager for temporarily disabling DEC Private Modes.
Uses the same logic as dec_modes_enabled but inverted: disables
supported modes that are currently enabled on entry, then restores
them on exit.
:arg modes: One or more DEC Private Mode numbers or enum members
:arg float timeout: Timeout in seconds for get_dec_mode calls
:raises TypeError: If mode is not DecPrivateMode or int
"""
# Track modes disabled ('RESET") to be re-enabled ('SET') after the yield
disabled_modes = []
# Query current state of each mode and build disable list
for arg_pos, mode in enumerate(modes):
if isinstance(mode, _DecPrivateMode):
mode_num = mode.value
elif isinstance(mode, int):
mode_num = mode
else:
raise TypeError(f"Invalid mode argument number {arg_pos}, got {mode!r}, "
"DecPrivateMode or int expected")
response = self.get_dec_mode(mode_num, timeout=timeout)
if response.supported and response.enabled:
disabled_modes.append(mode_num)
self._dec_mode_set_disabled(*disabled_modes)
try:
yield
finally:
self._dec_mode_set_enabled(*disabled_modes)
def does_mouse(self, *, clicks: bool = True, report_pixels: bool = False,
report_drag: bool = False, report_motion: bool = False,
timeout: float = 1.0) -> bool:
"""
Check if the terminal supports the specified mouse tracking features.
This method queries terminal support for the same DEC modes that
:meth:`mouse_enabled` would enable with the given parameters.
:arg bool clicks: Check for basic click reporting (default True)
:arg bool report_pixels: Check for pixel coordinate reporting
:arg bool report_drag: Check for drag reporting
:arg bool report_motion: Check for motion reporting
:arg float timeout: Timeout for mode queries (default 1.0s)
:returns: True if all required modes are supported
:rtype: bool
Example::
if term.does_mouse(report_drag=True, report_pixels=True):
with term.mouse_enabled(report_drag=True, report_pixels=True):
# Use mouse tracking with drag and pixel support
pass
"""
modes = [_DecPrivateMode.MOUSE_EXTENDED_SGR]
# Determine tracking mode by precedence: motion > drag > clicks
if report_motion:
modes.append(_DecPrivateMode.MOUSE_ALL_MOTION)
elif report_drag:
modes.append(_DecPrivateMode.MOUSE_REPORT_DRAG)
elif clicks:
modes.append(_DecPrivateMode.MOUSE_REPORT_CLICK)
# Add pixel reporting if requested
if report_pixels:
modes.append(_DecPrivateMode.MOUSE_SGR_PIXELS)
# Check if all required modes are supported
for mode in modes:
response = self.get_dec_mode(mode, timeout=timeout)
if not response.supported:
return False
return True
def does_inband_resize(self, timeout: float = 1.0) -> bool:
"""
Check if the terminal supports in-band window resize notifications.
This method queries whether the terminal supports DEC mode 2048
(IN_BAND_WINDOW_RESIZE), which allows receiving resize events as
in-band sequences through :meth:`inkey` instead of relying on
SIGWINCH signals.
:arg float timeout: Timeout for mode query (default 1.0s)
:returns: True if in-band resize notifications are supported
:rtype: bool
Example::
if term.does_inband_resize():
with term.notify_on_resize():
# Use in-band resize events
pass
else:
# Fall back to SIGWINCH or other methods
pass
"""
response = self.get_dec_mode(_DecPrivateMode.IN_BAND_WINDOW_RESIZE, timeout=timeout)
return response.supported
@contextlib.contextmanager
def mouse_enabled(self, *, clicks: bool = True, report_pixels: bool = False,
report_drag: bool = False, report_motion: bool = False,
timeout: float = 1.0) -> Generator[None, None, None]:
"""
Context manager for enabling mouse tracking with various reporting modes.
Enables mouse event reporting with sensible defaults, and always
enables SGR extended mouse mode (1006).
:arg bool clicks: Enable basic click reporting (default True)
:arg bool report_pixels: Report pixel coordinates instead of cell coordinates
:arg bool report_drag: Report mouse drag events (button held while moving)
:arg bool report_motion: Report all mouse motion events
:arg float timeout: Timeout for mode queries (default 1.0s)
The reporting modes have precedence: motion > drag > clicks. Enabling
a higher-precedence mode automatically includes lower modes.
Example::
with term.mouse_enabled():
# Basic click tracking
inp = term.inkey()
if inp.name and inp.name.startswith('MOUSE_'):
print(f"Clicked at {inp.x}, {inp.y}")
with term.mouse_enabled(report_drag=True):
# Track clicks and drags
pass
with term.mouse_enabled(report_motion=True, report_pixels=True):
# Track all motion with pixel coordinates
pass
"""
modes = [_DecPrivateMode.MOUSE_EXTENDED_SGR]
# Determine tracking mode by precedence: motion > drag > clicks
if report_motion:
modes.append(_DecPrivateMode.MOUSE_ALL_MOTION)
elif report_drag:
modes.append(_DecPrivateMode.MOUSE_REPORT_DRAG)
elif clicks:
modes.append(_DecPrivateMode.MOUSE_REPORT_CLICK)
# Add pixel reporting if requested
if report_pixels:
modes.append(_DecPrivateMode.MOUSE_SGR_PIXELS)
with self.dec_modes_enabled(*modes, timeout=timeout):
yield
@contextlib.contextmanager
def bracketed_paste(self, timeout: float = 1.0) -> Generator[None, None, None]:
"""
Context manager for enabling bracketed paste mode.
When enabled, pasted text is wrapped with special escape sequences,
allowing applications to distinguish pasted content from typed input.
:arg float timeout: Timeout for mode query (default 1.0s)
Example::
with term.bracketed_paste():
inp = term.inkey()
if inp.name == 'BRACKETED_PASTE':
pasted_text = inp.text
print(f"You pasted: {pasted_text}")
"""
with self.dec_modes_enabled(_DecPrivateMode.BRACKETED_PASTE, timeout=timeout):
yield
@contextlib.contextmanager
def synchronized_output(self, timeout: float = 1.0) -> Generator[None, None, None]:
"""
Context manager for enabling synchronized output mode.
Buffers all terminal output until the context exits, eliminating screen flicker during
redraws. Perfect for animations and full-screen updates.
:arg float timeout: Timeout for mode query (default 1.0s)
"""
with self.dec_modes_enabled(_DecPrivateMode.SYNCHRONIZED_OUTPUT, timeout=timeout):
yield
@contextlib.contextmanager
def focus_events(self, timeout: float = 1.0) -> Generator[None, None, None]:
"""
Context manager for enabling focus event reporting.
Reports when the terminal window gains or loses focus, useful for pausing animations or
updating status indicators.
:arg float timeout: Timeout for mode query (default 1.0s)
"""
with self.dec_modes_enabled(_DecPrivateMode.FOCUS_IN_OUT_EVENTS, timeout=timeout):
yield
@contextlib.contextmanager
def notify_on_resize(self, timeout: float = 1.0) -> Generator[None, None, None]:
"""
Context manager for enabling in-band window resize notifications.
When enabled, the terminal will automatically send resize events as in-band sequences
whenever the window size changes. These events are received by :meth:`inkey` as
keystroke events with :attr:`~.Keystroke.name` equal to ``'RESIZE_EVENT'``.
The new dimensions are automatically cached and available immediately through the
standard :attr:`height`, :attr:`width`, :attr:`pixel_height`, and :attr:`pixel_width`
properties without additional ioctl system calls.
This is the preferred method for handling terminal resizes as it avoids the race
conditions and signal handling complexity of SIGWINCH on Unix systems, and provides
a consistent cross-platform API.
:arg float timeout: Timeout for mode query (default 1.0s)
Example::
with term.notify_on_resize():
while True:
inp = term.inkey(timeout=0.1)
if inp.name == 'RESIZE_EVENT':
# Dimensions updated automatically
redraw_display(term.height, term.width)
elif inp == 'q':
break
"""
try:
with self.dec_modes_enabled(_DecPrivateMode.IN_BAND_WINDOW_RESIZE, timeout=timeout):
yield
finally:
# Clear the cache when exiting the context
self._preferred_size_cache = None
def _dec_mode_set_enabled(self, *modes: Union[int, _DecPrivateMode]) -> None:
"""
Enable one or more DEC Private Modes (DECSET).
:arg int | DecPrivateMode modes: One or more DEC Private Modes to enable
Emits the DECSET sequence to the attached stream as a side-effect, to
enable the specified modes, and cache their known state as 'SET'
(enabled) for subsequent :meth:`get_dec_mode` queries.
It is suggested to use the context manager, :meth:`dec_modes_enabled`.
Otherwise, an application should also evaluate the :meth:`get_dec_mode`
response to conditionally only call this method when
:meth:`DecModeResponse.is_supported` is True for the given mode, and to
conditionally call :meth:`_dec_mode_set_disabled` to return terminal to
its prior state in a try/finally clause.
"""
# Extract mode numbers
mode_numbers = []
for arg_pos, mode in enumerate(modes):
if isinstance(mode, _DecPrivateMode):
mode_num = mode.value
elif isinstance(mode, int):
mode_num = mode
else:
raise TypeError(f"Invalid mode argument number {arg_pos}, got {mode!r}, "
"DecPrivateMode or int expected")
mode_numbers.append(mode_num)
if not self.does_styling or not mode_numbers:
return
sequence = f'\x1b[?{";".join(str(val) for val in mode_numbers)}h'
self.stream.write(sequence)
self.stream.flush()
# Update cache for set (enabled) modes
for mode_num in mode_numbers:
self._dec_mode_cache[mode_num] = DecModeResponse.SET
def _dec_mode_set_disabled(self, *modes: Union[int, _DecPrivateMode]) -> None:
"""
Disable one or more DEC Private Modes (DECRST).
:arg int | DecPrivateMode modes: One or more DEC Private Modes to disable
Emits the DECRST sequence to the attached stream as a side-effect, to
enable the specified modes, and cache their known state as 'RESET'
(disabled) for subsequent :meth:`get_dec_mode` queries.
It is suggested to use the context manager, :meth:`dec_modes_disabled`.
Otherwise, an application should also evaluate the :meth:`get_dec_mode`
response to conditionally only call this method when
:meth:`DecModeResponse.is_supported` is True for the given mode, and to
conditionally call :meth:`_dec_mode_set_enabled` to return terminal to
its prior state in a try/finally clause.
"""
# Extract mode numbers
mode_numbers = []
for arg_pos, mode in enumerate(modes):
if isinstance(mode, _DecPrivateMode):
mode_num = mode.value
elif isinstance(mode, int):
mode_num = mode
else:
raise TypeError(f"Invalid mode argument number {arg_pos}, got {mode!r}, "
"DecPrivateMode or int expected")
mode_numbers.append(mode_num)
if not self.does_styling or not mode_numbers:
return
sequence = f'\x1b[?{";".join(str(val) for val in mode_numbers)}l'
self.stream.write(sequence)
self.stream.flush()
# Update cache for reset (disabled) modes
for mode_num in mode_numbers:
self._dec_mode_cache[mode_num] = DecModeResponse.RESET
def get_sixel_height_and_width(self, timeout: Optional[float] = 1,
force: bool = False) -> Tuple[int, int]:
# pylint: disable=too-complex,too-many-branches
"""
Query sixel graphics pixel dimensions.
Returns the maximum height and width in pixels for sixel graphics
rendering. Detection order (from most to least reliable):
1. XTWINOPS 16t (CSI 16 t) - Character cell size, multiplied by rows/cols
2. XTWINOPS 14t (CSI 14 t) - Text area size in pixels
3. XTSMGRAPHICS - Sixel graphics query
4. TIOCSWINSZ / In-band resize - System ioctl / event pixel dimensions
The cell-based calculation (method 1) is preferred because it accounts
for the actual drawable text area, excluding window margins and
decorations.
When :attr:`is_a_tty` is False, no sequences are transmitted or response
awaited, and ``(-1, -1)`` is returned without inquiry.
:arg float timeout: Timeout in seconds for queries
:arg bool force: Bypass cache and re-query the terminal
:rtype: tuple
:returns: ``(height, width)`` in pixels, or ``(-1, -1)`` if unsupported/timeout
"""
# Try methods in order of reliability, as suggested by @j4james,
# https://github.com/pexpect/ptyprocess/issues/79#issuecomment-3498498155
# Split timeout evenly across the 3 query methods (16t, 14t, XTSMGRAPHICS)
# for the worst-case scenario that all three methods timeout.
third_timeout = timeout / 3 if timeout is not None else None
# 1. Try XTWINOPS 16t (character cell size) - most accurate
# Sticky failure: don't re-query if previously failed, unless force=True
if self._xtwinops_cell_cache == (-1, -1) and not force:
cell_result = (-1, -1)
elif self._xtwinops_cell_cache is not None and not force:
cell_result = self._xtwinops_cell_cache
else:
cell_result = self.get_cell_height_and_width(third_timeout, force)
if cell_result != (-1, -1):
cell_height, cell_width = cell_result
return (cell_height * self.height, cell_width * self.width)
# 2. Try XTWINOPS 14t (text area size) - widely supported
# Sticky failure: don't re-query if previously failed, unless force=True
if self._xtwinops_cache == (-1, -1) and not force:
result = (-1, -1)
elif self._xtwinops_cache is not None and not force:
result = self._xtwinops_cache
else:
result = self._xtwinops_cache = self._get_xtwinops_window_size(third_timeout)
if result != (-1, -1):
return result
# 3. Try XTSMGRAPHICS - sixel-specific query
# Sticky failure: don't re-query if previously failed, unless force=True
if self._xtsmgraphics_cache == (-1, -1) and not force:
result = (-1, -1)
elif self._xtsmgraphics_cache is not None and not force:
result = self._xtsmgraphics_cache
else:
result = self._xtsmgraphics_cache = self._get_xtsmgraphics(third_timeout)
if result != (-1, -1):
return result
# 4. Try TIOCSWINSZ pixel dimensions or cached in-band resize dimensions
# Check preferred size cache (from in-band resize notifications) if available
if not force and self._preferred_size_cache is not None:
if (self._preferred_size_cache.ws_ypixel and
self._preferred_size_cache.ws_xpixel):
return (self._preferred_size_cache.ws_ypixel,
self._preferred_size_cache.ws_xpixel)
# Fallback to direct TIOCSWINSZ query
if self.is_a_tty:
winsize = self._height_and_width()
if (0 < winsize.ws_ypixel <= 32000 and
0 < winsize.ws_xpixel <= 32000):
return (winsize.ws_ypixel, winsize.ws_xpixel)
# All methods failed
return (-1, -1)
def get_sixel_colors(self, timeout: Optional[float] = 1,
force: bool = False) -> int:
"""
Query number of sixel color registers (XTSMGRAPHICS).
Returns the maximum number of color registers available for sixel
graphics rendering. If XTSMGRAPHICS query fails but the terminal
advertises Sixel support via DA1 (Device Attributes), returns 256
as a sensible default.
When :attr:`is_a_tty` is False, no sequences are transmitted or response
awaited, and ``-1`` is returned without inquiry.
:arg float timeout: Timeout in seconds for both possible queries
:arg bool force: Bypass cache and re-query the terminal
:rtype: int
:returns: Number of color registers, 256 if DA1 advertises sixel but
XTSMGRAPHICS fails, or ``-1`` if unsupported/timeout
"""
if self._xtsmgraphics_colors_cache is not None and not force:
return self._xtsmgraphics_colors_cache
stime = time.time()
# Use half of timeout for XTSMGRAPHICS, saving the other for DA1 fallback
half_timeout = timeout / 2 if timeout is not None else None
result = self._get_xtsmgraphics_colors(half_timeout)
self._xtsmgraphics_colors_cache = result
# If XTSMGRAPHICS failed but terminal advertises sixel support in DA1,
# assume 256 color registers as a sensible default
if self._xtsmgraphics_colors_cache == -1:
# Use remaining time for DA1 query, though usually this result is
if self.does_sixel(timeout=_time_left(stime, timeout), force=force):
self._xtsmgraphics_colors_cache = 256
return self._xtsmgraphics_colors_cache
def get_cell_height_and_width(self, timeout: Optional[float] = 1,
force: bool = False) -> Tuple[int, int]:
"""
Query character cell pixel dimensions (XTWINOPS).
Returns the height and width in pixels of a single character cell.
When :attr:`is_a_tty` is False, no sequences are transmitted or response
awaited, and ``(-1, -1)`` is returned without inquiry.
:arg float timeout: Timeout in seconds for the query
:arg bool force: Bypass cache and re-query the terminal
:rtype: tuple
:returns: ``(height, width)`` in pixels, or ``(-1, -1)`` if unsupported/timeout
"""
if self._xtwinops_cell_cache is not None and not force:
return self._xtwinops_cell_cache
result = self._get_xtwinops_cell_size(timeout)
self._xtwinops_cell_cache = result
return result
def _get_xtwinops_window_size(self, timeout: Optional[float]) -> Tuple[int, int]:
# Query XTWINOPS 14t for window size: ESC[14t
# Response: ESC[4;<height>;<width>t - return (height, width)
query = '\x1b[14t'
match = self._query_response(query, _RE_XTWINOPS_14_RESPONSE, timeout)
if match is None:
return -1, -1
# Response is height, width - return as-is
return int(match.group(1)), int(match.group(2))
def _get_xtwinops_cell_size(self, timeout: Optional[float]) -> Tuple[int, int]:
# Query XTWINOPS 16t for cell size: ESC[16t
# Response: ESC[6;<height>;<width>t - return (height, width)
query = '\x1b[16t'
match = self._query_response(query, _RE_XTWINOPS_16_RESPONSE, timeout)
if match is None:
return -1, -1
# Response is height, width - return as-is
return int(match.group(1)), int(match.group(2))
def _get_xtsmgraphics(self, timeout: Optional[float]) -> Tuple[int, int]:
# Query XTSMGRAPHICS for sixel geometry: ESC[?2;1;0S
# Response: ESC[?2;0;<width>;<height>S - return (height, width)
query = '\x1b[?2;1;0S'
match = self._query_response(query, _RE_XTSMGRAPHICS_RESPONSE, timeout)
if match is None:
return -1, -1
# Response is width, height - swap to return height, width
result = (int(match.group(2)), int(match.group(1)))
# Konsole workaround: Some terminals like Konsole report 16384x16384 (2^14) as the
# maximum sixel dimension instead of actual window size. Treat this as unsupported.
if result == (16384, 16384):
return -1, -1
return result
def _get_xtsmgraphics_colors(self, timeout: Optional[float]) -> int:
# Query XTSMGRAPHICS for color registers: ESC[?1;1;0S
# Response: ESC[?1;0;<colors>S
query = '\x1b[?1;1;0S'
match = self._query_response(query, _RE_XTSMGRAPHICS_COLORS_RESPONSE, timeout)
if match is None:
return -1
return int(match.group(1))
def get_kitty_keyboard_state(self, timeout: Optional[float] = 1,
force: bool = False) -> Optional[KittyKeyboardProtocol]:
"""
Query the current Kitty keyboard protocol flags.
Sends a Kitty keyboard protocol query to the terminal and returns a
:class:`KittyKeyboardProtocol` instance with the current flags. This
method is not normally used directly, rather it is used by the
:meth:`enable_kitty_keyboard` context manager on entrance to discover
and restore the previous state on exit.
When :attr:`is_a_tty` is False, no sequences are transmitted or response
awaited, and ``None`` is returned.
In many cases a ``timeout`` value (in seconds) should be set, as it is
possible for a terminal that succeeds :attr:`is_a_tty` to fail to respond
to either Kitty keyboard protocol state request, or the simple device
attribute request query carried with it! And not just "dumb" terminals
fail to respond, even some fairly modern terminals like Konsole.
If a Kitty keyboard protocol query fails to respond within the
``timeout`` specified, ``None`` is returned. If this was the first Kitty
keyboard protocol query, all subsequent queries return ``None`` unless
``force=True`` is set.
**No state caching is performed** - each call re-queries the terminal unless
the first query previously failed (sticky failure) and ``force=False``.
:arg float timeout: Timeout in seconds to await terminal response
:arg bool force: Force active terminal inquiry in all cases
:rtype: KittyKeyboardProtocol or None
:returns: KittyKeyboardProtocol instance with current flags, or None if unsupported/timeout
"""
# pylint: disable=too-many-return-statements
# This method uses a boundary detection approach on the first query to quickly
# determine terminal capabilities by sending both Kitty keyboard and Device
# Attributes (DA1) queries simultaneously, as suggested by Kitty,
# https://sw.kovidgoyal.net/kitty/keyboard-protocol/#detection-of-support-for-this-protocol
# By sending both queries together and checking which responses are
# received, we can quickly infer support without multiple round trips.
#
# > An application can query the terminal for support of this protocol by
# > sending the escape code querying for the current progressive
# > enhancement status followed by request for the primary device
# > attributes. If an answer for the device attributes is received without
# > getting back an answer for the progressive enhancement the terminal
# > does not support this protocol.
#
# Note that Kitty **does not answer** to DA1 despite making this very
# recommendation! So we must handle all possible 2x2 match combinations:
# DA1 + Kitty, !DA1 + Kitty, DA1 + !Kitty, and !DA1 and !Kitty (timeout)
if self._kitty_kb_first_query_failed and not force:
# When the first query is not responded, we can safely assume all
# subsequent inquiries will be ignored
return None
# Use boundary approach on first query attempt (when not previously
# attempted and not forced)
if not self._kitty_kb_first_query_attempted and not force:
# Mark that we've attempted the first query
self._kitty_kb_first_query_attempted = True
# Send both Kitty and DA queries together for boundary detection
# This allows us to quickly determine which protocols are supported:
# - Kitty terminal: responds to Kitty query but not DA1
# - xterm-like: responds to both Kitty and DA1
# - Konsole-like: responds to DA1 but not Kitty
# - Dumb terminals: respond to neither
boundary_query = '\x1b[?u\x1b[c'
# Use a simple pattern that captures the full response
boundary_pattern = re.compile('(.+)', re.DOTALL)
match = self._query_response(boundary_query, boundary_pattern, timeout)
# invalid or no response (timeout or not a TTY)
if match is None:
# Set sticky failure flag only if we have a TTY but query failed
# If not a TTY, _query_response() returned None immediately
if self.is_a_tty:
self._kitty_kb_first_query_failed = True
return None
response_text = match.group(1)
# Check for Kitty keyboard response first
kitty_pattern = re.compile(r'\x1b\[\?([0-9]+)u')
kitty_match = kitty_pattern.search(response_text)
if kitty_match:
# Kitty response found - parse and return flags
# (doesn't matter if DA1 also responded or not)
flags_value = int(kitty_match.group(1))
return KittyKeyboardProtocol(flags_value)
# Check for DA1 response
da1_pattern = re.compile(r'\x1b\[\?([0-9]+)(?:;[0-9]+)*c')
da1_match = da1_pattern.search(response_text)
if da1_match:
# Only DA1 response found, no Kitty support
self._kitty_kb_first_query_failed = True
return None
# Neither response found - no support
self._kitty_kb_first_query_failed = True
return None
# Subsequent calls or forced calls use the standard single-query approach
query = '\x1b[?u'
response_pattern = re.compile('\x1b\\[\\?([0-9]+)u')
match = self._query_response(query, response_pattern, timeout)
# invalid or no response (timeout or not a TTY)
if match is None:
self._kitty_kb_first_query_failed = True
return None
# parse and return the response value (no caching)
flags_value = int(match.group(1))
return KittyKeyboardProtocol(flags_value)
@contextlib.contextmanager
def enable_kitty_keyboard(self, *, disambiguate: bool = True, report_events: bool = False,
report_alternates: bool = False, report_all_keys: bool = False,
report_text: bool = False, mode: int = 1,
timeout: Optional[float] = 1,
force: bool = False) -> Generator[None, None, None]:
"""
Context manager that enables Kitty keyboard protocol features.
:arg bool disambiguate: Enable disambiguated escape codes (fixes issues
with Esc vs sequences)
:arg bool report_events: Report key repeat and release events
:arg bool report_alternates: Report shifted and base layout keys for shortcuts
:arg bool report_all_keys: Report all keys as escape codes (including text keys)
:arg bool report_text: Report associated text with key events (requires report_all_keys)
:arg int mode: Protocol mode (1=set/clear specified flags, 2=set only, 3=clear only)
:arg float timeout: Timeout for querying current flags before setting new ones
:arg bool force: Force sequences to be emitted even if timeout previously occurred
Always queries current state before setting new flags and restores previous state on exit.
Example::
with term.enable_kitty_keyboard(disambiguate=True):
# Now Alt+C won't conflict with Ctrl+C
key = term.inkey()
if key.alt and key.is_alt('c'):
print("Alt+C pressed")
.. note:: A ``timeout`` value should be set to avoid blocking when the
terminal does not respond to DA1 or kitty protocol queries, which
may happen with some kinds of "dumb" terminals, even some modern
terminals like Konsole.
"""
if not self.does_styling:
yield
return
# When not a real TTY (like StringIO), don't emit sequences unless force=True
if not self.is_a_tty and not force:
yield
return
# Check if timeout occurred before and force is not set
if self._kitty_kb_first_query_failed and not force:
yield
return
# Compute flags based on parameters
flags = 0
if disambiguate:
flags |= 1
if report_events:
flags |= 2
if report_alternates:
flags |= 4
if report_all_keys:
flags |= 8
if report_text:
flags |= 16
# Always query current flags before setting new ones
previous_flags = self.get_kitty_keyboard_state(timeout=timeout, force=force)
try:
# Set new flags
self.stream.write(f'\x1b[={flags};{mode}u') # Set flags with specified mode
self.stream.flush()
yield
finally:
# Restore previous state
if previous_flags is not None:
# Restore to specific previous flags
self.stream.write(f'\x1b[={previous_flags.value};1u') # Mode 1 = set flags exactly
self.stream.flush()
@contextlib.contextmanager
def fullscreen(self) -> Generator[None, None, None]:
"""
Context manager that switches to secondary screen, restoring on exit.
Under the hood, this switches between the primary screen buffer and
the secondary one. The primary one is saved on entry and restored on
exit. Likewise, the secondary contents are also stable and are
faithfully restored on the next entry::
with term.fullscreen():
main()
.. note:: There is only one primary and one secondary screen buffer.
:meth:`fullscreen` calls cannot be nested, only one should be
entered at a time.
"""
self.stream.write(self.enter_fullscreen)
self.stream.flush()
try:
yield
finally:
self.stream.write(self.exit_fullscreen)
self.stream.flush()
@contextlib.contextmanager
def hidden_cursor(self) -> Generator[None, None, None]:
"""
Context manager that hides the cursor, setting visibility on exit.
with term.hidden_cursor():
main()
.. note:: :meth:`hidden_cursor` calls cannot be nested: only one
should be entered at a time.
"""
self.stream.write(self.hide_cursor)
self.stream.flush()
try:
yield
finally:
self.stream.write(self.normal_cursor)
self.stream.flush()
def move_xy(self, x: int, y: int) -> str:
"""
A callable string that moves the cursor to the given ``(x, y)`` screen coordinates.
:arg int x: horizontal position, from left, *0*, to right edge of screen, *self.width - 1*.
:arg int y: vertical position, from top, *0*, to bottom of screen, *self.height - 1*.
:rtype: ParameterizingString
:returns: Callable string that moves the cursor to the given coordinates
"""
# this is just a convenience alias to the built-in, but hidden 'move'
# attribute -- we encourage folks to use only (x, y) positional
# arguments, or, if they must use (y, x), then use the 'move_yx'
# alias.
return self.move(y, x)
def move_yx(self, y: int, x: int) -> str:
"""
A callable string that moves the cursor to the given ``(y, x)`` screen coordinates.
:arg int y: vertical position, from top, *0*, to bottom of screen, *self.height - 1*.
:arg int x: horizontal position, from left, *0*, to right edge of screen, *self.width - 1*.
:rtype: ParameterizingString
:returns: Callable string that moves the cursor to the given coordinates
"""
return self.move(y, x)
@property
def move_left(self) -> FormattingOtherString:
"""Move cursor 1 cells to the left, or callable string for n>1 cells."""
return FormattingOtherString(self.cub1, ParameterizingString(self.cub))
@property
def move_right(self) -> FormattingOtherString:
"""Move cursor 1 or more cells to the right, or callable string for n>1 cells."""
return FormattingOtherString(self.cuf1, ParameterizingString(self.cuf))
@property
def move_up(self) -> FormattingOtherString:
"""Move cursor 1 or more cells upwards, or callable string for n>1 cells."""
return FormattingOtherString(self.cuu1, ParameterizingString(self.cuu))
@property
def move_down(self) -> FormattingOtherString:
"""Move cursor 1 or more cells downwards, or callable string for n>1 cells."""
return FormattingOtherString(self.cud1, ParameterizingString(self.cud))
@property
def color(self) -> Union[NullCallableString, ParameterizingString]:
"""
A callable string that sets the foreground color.
:rtype: ParameterizingString
The capability is unparameterized until called and passed a number, at which point it
returns another string which represents a specific color change. This second string can
further be called to color a piece of text and set everything back to normal afterward.
This should not be used directly, but rather a specific color by name or
:meth:`~.Terminal.color_rgb` value.
"""
if self.does_styling:
return ParameterizingString(self._foreground_color, self.normal, 'color')
return NullCallableString()
def color_rgb(self, red: int, green: int, blue: int) -> FormattingString:
"""
Provides callable formatting string to set foreground color to the specified RGB color.
:arg int red: RGB value of Red.
:arg int green: RGB value of Green.
:arg int blue: RGB value of Blue.
:rtype: FormattingString
:returns: Callable string that sets the foreground color
If the terminal does not support RGB color, the nearest supported
color will be determined using :py:attr:`color_distance_algorithm`.
"""
if self.number_of_colors == 1 << 24:
# "truecolor" 24-bit
fmt_attr = f'\x1b[38;2;{red};{green};{blue}m'
return FormattingString(fmt_attr, self.normal)
# color by approximation to 256 or 16-color terminals
color_idx = self.rgb_downconvert(red, green, blue)
return FormattingString(self._foreground_color(color_idx), self.normal)
@property
def on_color(self) -> Union[NullCallableString, ParameterizingString]:
"""
A callable capability that sets the background color.
:rtype: ParameterizingString
"""
if self.does_styling:
return ParameterizingString(self._background_color, self.normal, 'on_color')
return NullCallableString()
def on_color_rgb(self, red: int, green: int, blue: int) -> FormattingString:
"""
Provides callable formatting string to set background color to the specified RGB color.
:arg int red: RGB value of Red.
:arg int green: RGB value of Green.
:arg int blue: RGB value of Blue.
:rtype: FormattingString
:returns: Callable string that sets the foreground color
If the terminal does not support RGB color, the nearest supported
color will be determined using :py:attr:`color_distance_algorithm`.
"""
if self.number_of_colors == 1 << 24:
fmt_attr = f'\x1b[48;2;{red};{green};{blue}m'
return FormattingString(fmt_attr, self.normal)
color_idx = self.rgb_downconvert(red, green, blue)
return FormattingString(self._background_color(color_idx), self.normal)
def formatter(self, value: str) -> Union[NullCallableString, FormattingString]:
"""
Provides callable formatting string to set color and other text formatting options.
:arg str value: Sugary, ordinary, or compound formatted terminal capability,
such as "red_on_white", "normal", "red", or "bold_on_black".
:rtype: :class:`FormattingString` or :class:`NullCallableString`
:returns: Callable string that sets color and other text formatting options
Calling ``term.formatter('bold_on_red')`` is equivalent to ``term.bold_on_red``, but a
string that is not a valid text formatter will return a :class:`NullCallableString`.
This is intended to allow validation of text formatters without the possibility of
inadvertently returning another terminal capability.
"""
formatters = split_compound(value)
if all((fmt in COLORS or fmt in COMPOUNDABLES) for fmt in formatters):
return getattr(self, value)
return NullCallableString()
def rgb_downconvert(self, red: int, green: int, blue: int) -> int:
"""
Translate an RGB color to a color code of the terminal's color depth.
This method is only be used to downconvert for terminals of 256 or fewer colors.
:arg int red: RGB value of Red (0-255).
:arg int green: RGB value of Green (0-255).
:arg int blue: RGB value of Blue (0-255).
:rtype: int
:returns: Color code of downconverted RGB color
"""
# pylint: disable=too-many-locals
if self.number_of_colors == 0:
# bit of a waste to downconvert to no color at all, the final
# formatting string will be empty, we play along with color #7
return 7
target_rgb = (red, green, blue)
fn_distance = COLOR_DISTANCE_ALGORITHMS[self.color_distance_algorithm]
if self.number_of_colors < 256: # 8 or 16 colors
# because there just are not very many colors, we can use a color distance
# algorithm to measure all of 8 or 16 colors, selecting the nearest match.
best_idx = 7
best_distance = float('inf')
for idx in range(min(self.number_of_colors, 16)):
distance = fn_distance(RGB_256TABLE[idx], target_rgb)
if distance < best_distance:
best_distance = distance
best_idx = idx
return best_idx
# For 256-color terminals, use *only* cube (16-231) and grayscale
# (232-255) color matches, avoid ANSI colors 0-15 altogether, to prevent
# interference from user themes, and its fastest for our purpose,
# anyway! We chose the nearest distance of either color.
cube_idx, cube_rgb = xterm256color_from_rgb(red, green, blue)
gray_idx, gray_rgb = xterm256gray_from_rgb(red, green, blue)
cube_distance = fn_distance(cube_rgb, target_rgb)
gray_distance = fn_distance(gray_rgb, target_rgb)
return cube_idx if cube_distance <= gray_distance else gray_idx
@property
def normal(self) -> str:
"""
A capability that resets all video attributes.
:rtype: str
``normal`` is an alias for ``sgr0`` or ``exit_attribute_mode``. Any
styling attributes previously applied, such as foreground or
background colors, reverse video, or bold are reset to defaults.
"""
if self._normal:
return self._normal
self._normal = resolve_capability(self, 'normal')
return self._normal
def link(self, url: str, text: str, url_id: str = '') -> str:
"""
Display ``text`` that when touched or clicked, navigates to ``url``.
Optional ``url_id`` may be specified, so that non-adjacent cells can reference a single
target, all cells painted with the same "id" will highlight on hover, rather than any
individual one, as described in "Hovering and underlining the id parameter" of gist
https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda.
:param str url: Hyperlink URL.
:param str text: Clickable text.
:param str url_id: Optional 'id'.
:rtype: str
:returns: String of ``text`` as a hyperlink to ``url``.
"""
assert len(url) < 2000, (len(url), url)
if url_id:
assert len(str(url_id)) < 250, (len(str(url_id)), url_id)
params = f'id={url_id}'
else:
params = ''
if not self.does_styling:
return text
return f'\x1b]8;{params};{url}\x1b\\{text}\x1b]8;;\x1b\\'
@property
def stream(self) -> IO[str]:
"""
Read-only property: stream the terminal outputs to.
This is a convenience attribute. It is used internally for implied
writes performed by context managers :meth:`~.hidden_cursor`,
:meth:`~.fullscreen`, :meth:`~.location`, and :meth:`~.keypad`.
"""
return self._stream
@property
def number_of_colors(self) -> int:
"""
Number of colors supported by terminal.
Common return values are 0, 8, 16, 256, or 1 << 24.
This may be used to test whether the terminal supports colors, and at what depth, if that's
a concern.
If this property is assigned a value of 88, the value 16 will be saved. This is due to the
the rarity of 88 color support and the inconsistency of behavior between implementations.
Assigning this property to a value other than 0, 4, 8, 16, 88, 256, or 1 << 24 will raise an
:py:exc:`AssertionError`.
"""
return self._number_of_colors
@number_of_colors.setter
def number_of_colors(self, value: int) -> None:
assert value in (0, 4, 8, 16, 88, 256, 1 << 24)
# Because 88 colors is rare and we can't guarantee consistent behavior,
# when 88 colors is detected, it is treated as 16 colors
self._number_of_colors = 16 if value == 88 else value
self.__clear_color_capabilities()
@property
def color_distance_algorithm(self) -> str:
"""
Color distance algorithm used by :meth:`rgb_downconvert`.
The slowest, but most accurate, 'cie2000', is default. Other available options are 'rgb',
'rgb-weighted', 'cie76', and 'cie94'. This function is only be used to downconvert for
terminals of 256 or fewer colors.
"""
return self._color_distance_algorithm
@color_distance_algorithm.setter
def color_distance_algorithm(self, value: str) -> None:
assert value in COLOR_DISTANCE_ALGORITHMS
self._color_distance_algorithm = value
self.__clear_color_capabilities()
@property
def _foreground_color(self) -> Union[NullCallableString, ParameterizingString]:
"""
Convenience capability to support :attr:`~.on_color`.
Prefers returning sequence for capability ``setaf``, "Set foreground color to #1, using ANSI
escape". If the given terminal does not support such sequence, fallback to returning
attribute ``setf``, "Set foreground color #1".
"""
return self.setaf or self.setf
@property
def _background_color(self) -> Union[NullCallableString, ParameterizingString]:
"""
Convenience capability to support :attr:`~.on_color`.
Prefers returning sequence for capability ``setab``, "Set background color to #1, using ANSI
escape". If the given terminal does not support such sequence, fallback to returning
attribute ``setb``, "Set background color #1".
"""
return self.setab or self.setb
def ljust(self, text: str, width: Optional[SupportsIndex] = None, fillchar: str = ' ') -> str:
"""
Left-align ``text``, which may contain terminal sequences.
:arg str text: String to be aligned
:arg int width: Total width to fill with aligned text. If
unspecified, the whole width of the terminal is filled.
:arg str fillchar: String for padding the right of ``text``
:rtype: str
:returns: String of ``text``, left-aligned by ``width``.
"""
# Left justification is different from left alignment, but we continue
# the vocabulary error of the str method for polymorphism.
if width is None:
width = self.width
return Sequence(text, self).ljust(width, fillchar)
def rjust(self, text: str, width: Optional[SupportsIndex] = None, fillchar: str = ' ') -> str:
"""
Right-align ``text``, which may contain terminal sequences.
:arg str text: String to be aligned
:arg int width: Total width to fill with aligned text. If
unspecified, the whole width of the terminal is used.
:arg str fillchar: String for padding the left of ``text``
:rtype: str
:returns: String of ``text``, right-aligned by ``width``.
"""
if width is None:
width = self.width
return Sequence(text, self).rjust(width, fillchar)
def center(self, text: str, width: Optional[SupportsIndex] = None, fillchar: str = ' ') -> str:
"""
Center ``text``, which may contain terminal sequences.
:arg str text: String to be centered
:arg int width: Total width in which to center text. If
unspecified, the whole width of the terminal is used.
:arg str fillchar: String for padding the left and right of ``text``
:rtype: str
:returns: String of ``text``, centered by ``width``
"""
if width is None:
width = self.width
return Sequence(text, self).center(width, fillchar)
def truncate(self, text: str, width: Optional[SupportsIndex] = None) -> str:
r"""
Truncate ``text`` to maximum ``width`` printable characters, retaining terminal sequences.
:arg str text: Text to truncate
:arg int width: The maximum width to truncate it to
:rtype: str
:returns: ``text`` truncated to at most ``width`` printable characters
>>> term.truncate('xyz\x1b[0;3m', 2)
'xy\x1b[0;3m'
"""
if width is None:
width = self.width
return Sequence(text, self).truncate(width)
def length(self, text: str) -> int:
"""
Return printable length of a string containing sequences.
:arg str text: String to measure. May contain terminal sequences.
:rtype: int
:returns: The number of terminal character cells the string will occupy
when printed
Wide characters that consume 2 character cells are supported:
>>> term = Terminal()
>>> term.length(term.clear + term.red('コンニチハ'))
10
.. note:: Sequences such as 'clear', which is considered as a
"movement sequence" because it would move the cursor to
(y, x)(0, 0), are evaluated as a printable length of
*0*.
"""
return Sequence(text, self).length()
def strip(self, text: str, chars: Optional[str] = None) -> str:
r"""
Return ``text`` without sequences and leading or trailing whitespace.
:rtype: str
:returns: Text with leading and trailing whitespace removed
>>> term.strip(' \x1b[0;3m xyz ')
'xyz'
"""
return Sequence(text, self).strip(chars)
def rstrip(self, text: str, chars: Optional[str] = None) -> str:
r"""
Return ``text`` without terminal sequences or trailing whitespace.
:rtype: str
:returns: Text with terminal sequences and trailing whitespace removed
>>> term.rstrip(' \x1b[0;3m xyz ')
' xyz'
"""
return Sequence(text, self).rstrip(chars)
def lstrip(self, text: str, chars: Optional[str] = None) -> str:
r"""
Return ``text`` without terminal sequences or leading whitespace.
:rtype: str
:returns: Text with terminal sequences and leading whitespace removed
>>> term.lstrip(' \x1b[0;3m xyz ')
'xyz '
"""
return Sequence(text, self).lstrip(chars)
def strip_seqs(self, text: str) -> str:
r"""
Return ``text`` stripped of only its terminal sequences.
:rtype: str
:returns: Text with terminal sequences removed
>>> term.strip_seqs('\x1b[0;3mxyz')
'xyz'
>>> term.strip_seqs(term.cuf(5) + term.red('test'))
' test'
.. note:: Non-destructive sequences that adjust horizontal distance
(such as ``\b`` or ``term.cuf(5)``) are replaced by destructive
space or erasing.
"""
return Sequence(text, self).strip_seqs()
def split_seqs(self, text: str, maxsplit: int = 0) -> List[str]:
r"""
Return ``text`` split by individual character elements and sequences.
:arg str text: String containing sequences
:arg int maxsplit: When maxsplit is nonzero, at most maxsplit splits
occur, and the remainder of the string is returned as the final element
of the list (same meaning is argument for :func:`re.split`).
:rtype: list[str]
:returns: List of sequences and individual characters
>>> term.split_seqs(term.underline('xyz'))
['\x1b[4m', 'x', 'y', 'z', '\x1b(B', '\x1b[m']
>>> term.split_seqs(term.underline('xyz'), 1)
['\x1b[4m', r'xyz\x1b(B\x1b[m']
"""
result = []
for idx, match in enumerate(re.finditer(self._caps_unnamed_any, text)):
result.append(match.group())
if maxsplit and idx == maxsplit:
result[-1] += text[match.end():]
break
return result
def wrap(self, text: str, width: Optional[int] = None, **kwargs: object) -> List[str]:
r"""
Text-wrap a string, returning a list of wrapped lines.
:arg str text: Unlike :func:`textwrap.wrap`, ``text`` may contain
terminal sequences, such as colors, bold, or underline. By
default, tabs in ``text`` are expanded by
:func:`string.expandtabs`.
:arg int width: Unlike :func:`textwrap.wrap`, ``width`` will
default to the width of the attached terminal.
:arg \**kwargs: See :py:class:`textwrap.TextWrapper`
:rtype: list
:returns: List of wrapped lines
See :class:`textwrap.TextWrapper` for keyword arguments that can
customize wrapping behaviour.
"""
width = self.width if width is None else width
wrapper = SequenceTextWrapper(width=width, term=self, **kwargs)
lines: List[str] = []
for line in text.splitlines():
lines.extend(iter(wrapper.wrap(line)) if line.strip() else ('',))
return lines
def getch(self, decode_latin1: bool = False) -> str:
"""
Read, decode, and return the next byte from the keyboard stream.
:arg bool decode_latin1: If True, decode byte as latin-1 (for legacy mouse
sequences with 8-bit coordinates).
:rtype: unicode
:returns: a single unicode character, or ``''`` if a multi-byte
sequence has not yet been fully received.
This method name and behavior mimics curses ``getch(void)``, and
it supports :meth:`inkey`, reading only one byte from
the keyboard string at a time. This method should always return
without blocking if called after :meth:`kbhit` has returned True.
Implementers of alternate input stream methods should override
this method.
"""
assert self._keyboard_fd is not None
byte = os.read(self._keyboard_fd, 1)
if decode_latin1:
# Latin-1 is a simple 1:1 byte-to-character mapping (0-255)
# No incremental decoder needed
return chr(byte[0])
# Use UTF-8 incremental decoder for multi-byte sequences
return self._keyboard_decoder.decode(byte, final=False)
def ungetch(self, text: str) -> None:
"""
Buffer input data to be discovered by next call to :meth:`~.inkey`.
:arg str text: String to be buffered as keyboard input.
"""
self._keyboard_buf.extendleft(text)
def kbhit(self, timeout: Optional[float] = None) -> bool:
"""
Return whether a keypress has been detected on the keyboard.
This method is used by :meth:`inkey` to determine if a byte may
be read using :meth:`getch` without blocking. The standard
implementation simply uses the :func:`select.select` call on stdin.
:arg float timeout: When ``timeout`` is 0, this call is
non-blocking, otherwise blocking indefinitely until keypress
is detected when None (default). When ``timeout`` is a
positive number, returns after ``timeout`` seconds have
elapsed (float).
:rtype: bool
:returns: True if a keypress is awaiting to be read on the keyboard
attached to this terminal. When input is not a terminal, False is
always returned.
"""
ready_r = [None, ]
check_r = [self._keyboard_fd] if self._keyboard_fd is not None else []
if HAS_TTY:
ready_r, _, _ = select.select(check_r, [], [], timeout)
return False if self._keyboard_fd is None else check_r == ready_r
@contextlib.contextmanager
def cbreak(self) -> Generator[None, None, None]:
"""
Allow each keystroke to be read immediately after it is pressed.
This is a context manager for :func:`tty.setcbreak`.
This context manager activates 'rare' mode, the opposite of 'cooked'
mode: On entry, :func:`tty.setcbreak` mode is activated disabling
line-buffering of keyboard input and turning off automatic echo of
input as output.
.. note:: You must explicitly print any user input you would like
displayed. If you provide any kind of editing, you must handle
backspace and other line-editing control functions in this mode
as well!
**Normally**, characters received from the keyboard cannot be read
by Python until the *Return* key is pressed. Also known as *cooked* or
*canonical input* mode, it allows the tty driver to provide
line-editing before shuttling the input to your program and is the
(implicit) default terminal mode set by most unix shells before
executing programs.
Technically, this context manager sets the :mod:`termios` attributes
of the terminal attached to :obj:`sys.__stdin__`.
.. note:: :func:`tty.setcbreak` sets ``VMIN = 1`` and ``VTIME = 0``,
see http://www.unixwiz.net/techtips/termios-vmin-vtime.html
"""
if HAS_TTY and self._keyboard_fd is not None:
# Save current terminal mode:
save_mode = termios.tcgetattr(self._keyboard_fd)
save_line_buffered = self._line_buffered
# pylint: disable-next=possibly-used-before-assignment
tty.setcbreak(self._keyboard_fd, termios.TCSANOW)
try:
self._line_buffered = False
yield
finally:
# Restore prior mode:
termios.tcsetattr(self._keyboard_fd,
termios.TCSAFLUSH,
save_mode)
self._line_buffered = save_line_buffered
else:
yield
@contextlib.contextmanager
def raw(self) -> Generator[None, None, None]:
r"""
A context manager for :func:`tty.setraw`.
Although both :meth:`cbreak` and :meth:`raw` modes allow each keystroke
to be read immediately after it is pressed, Raw mode disables
processing of input and output by the terminal driver.
In cbreak mode, special input characters such as ``^C`` or ``^S`` are
interpreted by the terminal driver and excluded from the stdin stream.
In raw mode these values are received by the :meth:`inkey` method.
Because output processing is not done by the terminal driver, the
newline ``'\n'`` is not enough, you must also print carriage return to
ensure that the cursor is returned to the first column::
with term.raw():
print("printing in raw mode", end="\r\n")
"""
if HAS_TTY and self._keyboard_fd is not None:
# Save current terminal mode:
save_mode = termios.tcgetattr(self._keyboard_fd)
save_line_buffered = self._line_buffered
tty.setraw(self._keyboard_fd, termios.TCSANOW)
try:
self._line_buffered = False
yield
finally:
# Restore prior mode:
termios.tcsetattr(self._keyboard_fd,
termios.TCSAFLUSH,
save_mode)
self._line_buffered = save_line_buffered
else:
yield
@contextlib.contextmanager
def keypad(self) -> Generator[None, None, None]:
r"""
Context manager that enables directional keypad input.
On entry, this puts the terminal into "keyboard_transmit" mode by
emitting the keypad_xmit (smkx) capability. On exit, it emits
keypad_local (rmkx).
On an IBM-PC keyboard with numeric keypad of terminal-type *xterm*,
with numlock off, the lower-left diagonal key transmits sequence
``\\x1b[F``, translated to :class:`~.Terminal` attribute
``KEY_END``.
However, upon entering :meth:`keypad`, ``\\x1b[OF`` is transmitted,
translating to ``KEY_LL`` (lower-left key), allowing you to determine
diagonal direction keys.
"""
try:
self.stream.write(self.smkx)
self.stream.flush()
yield
finally:
self.stream.write(self.rmkx)
self.stream.flush()
def flushinp(self, timeout: float = 0) -> str:
r"""
Unbuffer and return all input available within ``timeout``.
When legacy mouse sequence ``'\x1b[M'`` is detected in input stream,
all remaining bytes are decoded as latin1 to handle 8-bit coordinates.
"""
stime = time.time()
ucs = ''
while self._keyboard_buf:
ucs += self._keyboard_buf.pop()
# and receive all immediately available bytes
decode_latin1 = False
while self.kbhit(timeout=_time_left(stime, timeout)):
# Use latin-1 decoding for legacy mouse sequences (ESC[M) which may
# contain high bytes (≥0x80) for coordinates > 127. Only check for
# '\x1b[M' when not already found (performance optimization).
decode_latin1 = decode_latin1 or '\x1b[M' in ucs
ucs += self.getch(decode_latin1=decode_latin1)
return ucs
def _is_incomplete_keystroke(self, text: str) -> bool:
# Check if text is an incomplete keystroke sequence: returns True if text
# matches (exact), builds toward (partial), or extends beyond a known prefix
if not text:
return False
return (text in self._keymap_prefixes or
any(text.startswith(p) for p in self._keymap_prefixes) or
any(p.startswith(text) for p in self._keymap_prefixes))
def inkey(self, timeout: Optional[float] = None,
esc_delay: float = DEFAULT_ESCDELAY) -> Keystroke:
r"""
Read and return the next keyboard event within given timeout.
Generally, this should be used inside the :meth:`raw` context manager.
:arg float timeout: Number of seconds to wait for a keystroke before
returning. When ``None`` (default), this method may block
indefinitely.
:arg float esc_delay: Time in seconds to block after Escape key
is received to await another key sequence beginning with
escape such as *KEY_LEFT*, sequence ``'\x1b[D'``], before returning a
:class:`~.Keystroke` instance for ``KEY_ESCAPE``.
Users may override the default value of ``esc_delay`` in seconds,
using environment value of ``ESCDELAY`` as milliseconds, see
`ncurses(3)`_ section labeled *ESCDELAY* for details. Setting
the value as an argument to this function will override any
such preference.
:rtype: :class:`~.Keystroke`.
:returns: :class:`~.Keystroke`, which may be empty (``''``) if
``timeout`` is specified and keystroke is not received.
.. note:: When used without the context manager :meth:`cbreak`, or
:meth:`raw`, :obj:`sys.__stdin__` remains line-buffered, and this
function will block until the return key is pressed!
.. note:: On Windows, a 10 ms sleep is added to the key press detection loop to reduce CPU
load. Due to the behavior of :py:func:`time.sleep` on Windows, this will actually
result in a 15.6 ms delay when using the default `time resolution
<https://docs.microsoft.com/en-us/windows/win32/api/timeapi/nf-timeapi-timebeginperiod>`_.
Decreasing the time resolution will reduce this to 10 ms, while increasing it, which
is rarely done, will have a perceptable impact on the behavior.
_`ncurses(3)`: https://www.man7.org/linux/man-pages/man3/ncurses.3x.html
"""
stime = time.time()
ucs = self.flushinp()
# decode buffered keystroke, if any
ks = resolve_sequence(ucs, self._keymap, self._keycodes, self._keymap_prefixes,
final=False, dec_mode_cache=self._dec_mode_cache)
# so long as the most immediately received or buffered keystroke is
# incomplete, (which may be a multibyte encoding), block until until
# a sequence is completed.
while not ks and self.kbhit(timeout=_time_left(stime, timeout)):
# receive any next byte
ucs += self.getch(decode_latin1=ucs.startswith('\x1b[M'))
# and all other immediately available bytes
while self.kbhit(timeout=0):
ucs += self.getch(decode_latin1=ucs.startswith('\x1b[M'))
# and then resolve for sequence
ks = resolve_sequence(ucs, self._keymap, self._keycodes, self._keymap_prefixes,
final=False, dec_mode_cache=self._dec_mode_cache)
# handle escape key (KEY_ESCAPE) vs. escape sequence (like those
# that begin with \x1b[ or \x1bO) up to esc_delay when
# received. This is not optimal, but causes least delay when
# "meta sends escape" is used, or when an unsupported sequence is
# sent.
#
# The statement, "ucs in self._keymap_prefixes" has an effect on
# keystrokes such as Alt + Z ("\x1b[z" with metaSendsEscape): because
# no known input sequences begin with such phrasing to allow it to be
# returned more quickly than esc_delay otherwise blocks for.
#
# Only bare escape ('\x1b') needs escape delay to distinguish from sequences.
# Kitty's disambiguated escape ('\x1b[27u') already resolves with len > 1.
if ks.code == self.KEY_ESCAPE and len(ks) == 1:
esctime = time.time()
while (ks.code == self.KEY_ESCAPE
and self._is_incomplete_keystroke(ucs)
and self.kbhit(timeout=_time_left(esctime, esc_delay))):
ucs += self.getch(decode_latin1=ucs.startswith('\x1b[M'))
# re-check 'final' after reading more bytes
final = bool(ucs) and not self._is_incomplete_keystroke(ucs)
ks = resolve_sequence(ucs, self._keymap, self._keycodes, self._keymap_prefixes,
final=final, dec_mode_cache=self._dec_mode_cache)
# If we still have KEY_ESCAPE and ucs is a prefix, resolve with final=True
# to handle unmatched sequences like '\x1b[' (CSI)
if ks.code == self.KEY_ESCAPE and self._is_incomplete_keystroke(ucs):
ks = resolve_sequence(ucs, self._keymap, self._keycodes, self._keymap_prefixes,
final=True, dec_mode_cache=self._dec_mode_cache)
# buffer any remaining text received
self.ungetch(ucs[len(ks):])
# Update preferred size cache if this is a resize event
if ks._mode == _DecPrivateMode.IN_BAND_WINDOW_RESIZE: # pylint: disable=protected-access
event_vals = ks._mode_values # pylint: disable=protected-access
self._preferred_size_cache = WINSZ(
ws_row=event_vals.height_chars, # type: ignore[union-attr]
ws_col=event_vals.width_chars, # type: ignore[union-attr]
ws_xpixel=event_vals.width_pixels, # type: ignore[union-attr]
ws_ypixel=event_vals.height_pixels) # type: ignore[union-attr]
return ks
class WINSZ(collections.namedtuple('WINSZ', (
'ws_row', 'ws_col', 'ws_xpixel', 'ws_ypixel'))):
"""
Structure represents return value of :const:`termios.TIOCGWINSZ`.
.. py:attribute:: ws_row
rows, in characters
.. py:attribute:: ws_col
columns, in characters
.. py:attribute:: ws_xpixel
horizontal size, pixels
.. py:attribute:: ws_ypixel
vertical size, pixels
"""
#: format of termios structure
_FMT = 'hhhh'
#: buffer of termios structure appropriate for ioctl argument
_BUF = '\x00' * struct.calcsize(_FMT)
#: _CUR_TERM = None
#: From libcurses/doc/ncurses-intro.html (ESR, Thomas Dickey, et. al)::
#:
#: "After the call to setupterm(), the global variable cur_term is set to
#: point to the current structure of terminal capabilities. By calling
#: setupterm() for each terminal, and saving and restoring cur_term, it
#: is possible for a program to use two or more terminals at once."
#:
#: However, if you study Python's ``./Modules/_cursesmodule.c``, you'll find::
#:
#: if (!initialised_setupterm && setupterm(termstr,fd,&err) == ERR) {
#:
#: Python - perhaps wrongly - will not allow for re-initialisation of new
#: terminals through :func:`curses.setupterm`, so the value of cur_term cannot
#: be changed once set: subsequent calls to :func:`curses.setupterm` have no
#: effect.
#:
#: Therefore, the :attr:`Terminal.kind` of each :class:`Terminal` is
#: essentially a singleton. This global variable reflects that, and a warning
#: is emitted if somebody expects otherwise.
|