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
|
vim9script
# Debugger plugin using gdb.
# Author: Bram Moolenaar
# Copyright: Vim license applies, see ":help license"
# Last Change: 2025 Dec 26
# Converted to Vim9: Ubaldo Tiberi <ubaldo.tiberi@gmail.com>
# WORK IN PROGRESS - The basics works stable, more to come
# Note: In general you need at least GDB 7.12 because this provides the
# frame= response in MI thread-selected events we need to sync stack to file.
# The one included with "old" MingW is too old (7.6.1), you may upgrade it or
# use a newer version from http://www.equation.com/servlet/equation.cmd?fa=gdb
# There are two ways to run gdb:
# - In a terminal window; used if possible, does not work on MS-Windows
# Not used when g:termdebug_use_prompt is set to true.
# - Using a "prompt" buffer; may use a terminal window for the program
# For both the current window is used to view source code and shows the
# current statement from gdb.
# USING A TERMINAL WINDOW
# Opens two visible terminal windows:
# 1. runs a pty for the debugged program, as with ":term NONE"
# 2. runs gdb, passing the pty of the debugged program
# A third terminal window is hidden, it is used for communication with gdb.
# USING A PROMPT BUFFER
# Opens a window with a prompt buffer to communicate with gdb.
# Gdb is run as a job with callbacks for I/O.
# On Unix another terminal window is opened to run the debugged program
# On MS-Windows a separate console is opened to run the debugged program
# but a terminal window is used to run remote debugged programs.
# The communication with gdb uses GDB/MI. See:
# https://sourceware.org/gdb/current/onlinedocs/gdb/GDB_002fMI.html
var DEBUG = false
if exists('g:termdebug_config')
DEBUG = get(g:termdebug_config, 'debug', false)
endif
def Echoerr(msg: string)
echohl ErrorMsg | echom $'[termdebug] {msg}' | echohl None
enddef
def Echowarn(msg: string)
echohl WarningMsg | echom $'[termdebug] {msg}' | echohl None
enddef
# Variables to keep their status among multiple instances of Termdebug
g:termdebug_is_running = false
# The command that starts debugging, e.g. ":Termdebug vim".
# To end type "quit" in the gdb window.
command -nargs=* -complete=file -bang Termdebug StartDebug(<bang>0, <f-args>)
command -nargs=+ -complete=file -bang TermdebugCommand StartDebugCommand(<bang>0, <f-args>)
enum Way
Prompt,
Terminal
endenum
# Script variables declaration. These variables are re-initialized at every
# Termdebug instance
var way: Way
var err: string
var pc_id: number
var asm_id: number
var break_id: number
var stopped: bool
var running: bool
var parsing_disasm_msg: number
var asm_lines: list<string>
var asm_addr: string
# These shall be constants but cannot be initialized here
# They indicate the buffer numbers of the main buffers used
var gdbbufnr: number
var gdbbufname: string
var varbufnr: number
var varbufname: string
var asmbufnr: number
var asmbufname: string
var promptbufnr: number
# 'pty' refers to the "debugged-program" pty
var ptybufnr: number
var ptybufname: string
var commbufnr: number
var commbufname: string
var gdbjob: job
var gdb_channel: channel
# These changes because they relate to windows
var pid: number
var gdbwin: number
var varwin: number
var asmwin: number
var ptywin: number
var sourcewin: number
# Contains breakpoints that have been placed, key is a string with the GDB
# breakpoint number.
# Each entry is a dict, containing the sub-breakpoints. Key is the subid.
# For a breakpoint that is just a number the subid is zero.
# For a breakpoint "123.4" the id is "123" and subid is "4".
# Example, when breakpoint "44", "123", "123.1" and "123.2" exist:
# {'44': {'0': entry}, '123': {'0': entry, '1': entry, '2': entry}}
var breakpoints: dict<any>
# Contains breakpoints by file/lnum. The key is "fname:lnum".
# Each entry is a list of breakpoint IDs at that position.
var breakpoint_locations: dict<any>
var BreakpointSigns: list<string>
var evalFromBalloonExpr: bool
var evalInPopup: bool
var evalPopupId: number
var evalExprResult: string
var ignoreEvalError: bool
var evalexpr: string
# Remember the old value of 'signcolumn' for each buffer that it's set in, so
# that we can restore the value for all buffers.
var signcolumn_buflist: list<number>
var saved_columns: number
var allleft: bool
# This was s:vertical but I cannot use vertical as variable name
var vvertical: bool
var winbar_winids: list<number>
var saved_mousemodel: string
var saved_K_map: dict<any>
var saved_visual_K_map: dict<any>
var saved_plus_map: dict<any>
var saved_minus_map: dict<any>
def InitScriptVariables()
if exists('g:termdebug_config') && has_key(g:termdebug_config, 'use_prompt')
way = g:termdebug_config['use_prompt'] ? Way.Prompt : Way.Terminal
elseif exists('g:termdebug_use_prompt')
way = g:termdebug_use_prompt ? Way.Prompt : Way.Terminal
elseif has('terminal') && !has('win32')
way = Way.Terminal
else
way = Way.Prompt
endif
err = ''
pc_id = 12
asm_id = 13
break_id = 14 # breakpoint number is added to this
stopped = true
running = false
parsing_disasm_msg = 0
asm_lines = []
asm_addr = ''
# They indicate the buffer numbers of the main buffers used
gdbbufnr = 0
gdbbufname = 'gdb'
varbufnr = 0
varbufname = 'Termdebug-variables-listing'
asmbufnr = 0
asmbufname = 'Termdebug-asm-listing'
promptbufnr = 0
# This is for the "debugged-program" thing
ptybufname = "debugged-program"
ptybufnr = 0
commbufname = "gdb-communication"
commbufnr = 0
gdbjob = null_job
gdb_channel = null_channel
# These changes because they relate to windows
pid = 0
gdbwin = 0
varwin = 0
asmwin = 0
ptywin = 0
sourcewin = 0
# Contains breakpoints that have been placed, key is a string with the GDB
# breakpoint number.
# Each entry is a dict, containing the sub-breakpoints. Key is the subid.
# For a breakpoint that is just a number the subid is zero.
# For a breakpoint "123.4" the id is "123" and subid is "4".
# Example, when breakpoint "44", "123", "123.1" and "123.2" exist:
# {'44': {'0': entry}, '123': {'0': entry, '1': entry, '2': entry}}
breakpoints = {}
# Contains breakpoints by file/lnum. The key is "fname:lnum".
# Each entry is a list of breakpoint IDs at that position.
breakpoint_locations = {}
BreakpointSigns = []
evalFromBalloonExpr = false
evalInPopup = false
evalPopupId = -1
evalExprResult = ''
ignoreEvalError = false
evalexpr = ''
# Remember the old value of 'signcolumn' for each buffer that it's set in, so
# that we can restore the value for all buffers.
signcolumn_buflist = [bufnr()]
saved_columns = &columns
winbar_winids = []
saved_K_map = maparg('K', 'n', false, true)
saved_plus_map = maparg('+', 'n', false, true)
saved_minus_map = maparg('-', 'n', false, true)
saved_visual_K_map = maparg('K', 'x', false, true)
if has('menu')
saved_mousemodel = &mousemodel
endif
enddef
def SanityCheck(): bool
var gdb_cmd = GetCommand()[0]
var cwd = $'{getcwd()}/'
if exists('+shellslash') && !&shellslash
# on windows, need to handle backslash
cwd->substitute('\\', '/', 'g')
endif
var is_check_ok = true
# Need either the +terminal feature or +channel and the prompt buffer.
# The terminal feature does not work with gdb on win32.
if (way is Way.Prompt) && !has('channel')
err = 'Cannot debug, +channel feature is not supported'
elseif (way is Way.Prompt) && !exists('*prompt_setprompt')
err = 'Cannot debug, missing prompt buffer support'
elseif (way is Way.Prompt) && !empty(glob($'{cwd}{gdb_cmd}'))
err = $"You have a file/folder named '{gdb_cmd}' in the current directory Termdebug may not work properly. Please exit and rename such a file/folder."
elseif !empty(glob($'{cwd}{asmbufname}'))
err = $"You have a file/folder named '{asmbufname}' in the current directory Termdebug may not work properly. Please exit and rename such a file/folder."
elseif !empty(glob($'{cwd}{varbufname}'))
err = $"You have a file/folder named '{varbufname}' in the current directory Termdebug may not work properly. Please exit and rename such a file/folder."
elseif !executable(gdb_cmd)
err = $"Cannot execute debugger program '{gdb_cmd}'"
endif
if !empty(err)
Echoerr(err)
is_check_ok = false
endif
return is_check_ok
enddef
def DeprecationWarnings()
# TODO Remove the deprecated features after 1 Jan 2025.
var config_param = ''
if exists('g:termdebug_wide')
config_param = 'g:termdebug_wide'
elseif exists('g:termdebug_popup')
config_param = 'g:termdebug_popup'
elseif exists('g:termdebugger')
config_param = 'g:termdebugger'
elseif exists('g:termdebug_variables_window')
config_param = 'g:termdebug_variables_window'
elseif exists('g:termdebug_disasm_window')
config_param = 'g:termdebug_disasm_window'
elseif exists('g:termdebug_map_K')
config_param = 'g:termdebug_map_K'
elseif exists('g:termdebug_use_prompt')
config_param = 'g:termdebug_use_prompt'
endif
if !empty(config_param)
Echowarn($"Deprecation Warning: '{config_param}' parameter
\ is deprecated and will be removed in the future. See ':h g:termdebug_config' for alternatives.")
endif
# termdebug config types
if exists('g:termdebug_config') && !empty(g:termdebug_config)
for key in keys(g:termdebug_config)
if index(['disasm_window', 'variables_window', 'use_prompt', 'map_K', 'map_minus', 'map_plus'], key) != -1
if typename(g:termdebug_config[key]) == 'number'
var val = g:termdebug_config[key]
Echowarn($"Deprecation Warning: 'g:termdebug_config[\"{key}\"] = {val}' will be deprecated.
\ Please use 'g:termdebug_config[\"{key}\"] = {val != 0}'" )
endif
endif
endfor
endif
enddef
# Take a breakpoint number as used by GDB and turn it into an integer.
# The breakpoint may contain a dot: 123.4 -> 123004
# The main breakpoint has a zero subid.
def Breakpoint2SignNumber(id: number, subid: number): number
return break_id + id * 1000 + subid
enddef
# Define or adjust the default highlighting, using background "new".
# When the 'background' option is set then "old" has the old value.
def Highlight(init: bool, old: string, new: string)
var default = init ? 'default ' : ''
if new ==# 'light' && old !=# 'light'
exe $"hi {default}debugPC term=reverse ctermbg=lightblue guibg=lightblue"
elseif new ==# 'dark' && old !=# 'dark'
exe $"hi {default}debugPC term=reverse ctermbg=darkblue guibg=darkblue"
endif
enddef
# Define the default highlighting, using the current 'background' value.
def InitHighlight()
Highlight(true, '', &background)
hi default debugBreakpoint term=reverse ctermbg=red guibg=red
hi default debugBreakpointDisabled term=reverse ctermbg=gray guibg=gray
enddef
# Setup an autocommand to redefine the default highlight when the colorscheme
# is changed.
def InitAutocmd()
augroup TermDebug
autocmd!
autocmd ColorScheme * InitHighlight()
augroup END
enddef
# Get the command to execute the debugger as a list, defaults to ["gdb"].
def GetCommand(): list<string>
var cmd: any
if exists('g:termdebug_config')
cmd = get(g:termdebug_config, 'command', 'gdb')
elseif exists('g:termdebugger')
cmd = g:termdebugger
else
cmd = 'gdb'
endif
return type(cmd) == v:t_list ? copy(cmd) : [cmd]
enddef
def StartDebug(bang: bool, ...gdb_args: list<string>)
# First argument is the command to debug, second core file or process ID.
StartDebug_internal({gdb_args: gdb_args, bang: bang})
enddef
def StartDebugCommand(bang: bool, ...args: list<string>)
# First argument is the command to debug, rest are run arguments.
StartDebug_internal({gdb_args: [args[0]], proc_args: args[1 : ], bang: bang})
enddef
def StartDebug_internal(dict: dict<any>)
if g:termdebug_is_running
Echoerr('Terminal debugger already running, cannot run two')
return
endif
InitScriptVariables()
if !SanityCheck()
return
endif
DeprecationWarnings()
if exists('#User#TermdebugStartPre')
doauto <nomodeline> User TermdebugStartPre
endif
# Uncomment this line to write logging in "debuglog".
# ch_logfile('debuglog', 'w')
# Assume current window is the source code window
sourcewin = win_getid()
var wide = 0
if exists('g:termdebug_config')
wide = get(g:termdebug_config, 'wide', 0)
elseif exists('g:termdebug_wide')
wide = g:termdebug_wide
endif
if wide > 0
if &columns < wide
&columns = wide
# If we make the Vim window wider, use the whole left half for the debug
# windows.
allleft = true
endif
vvertical = true
else
vvertical = false
endif
if way is Way.Prompt
StartDebug_prompt(dict)
else
StartDebug_term(dict)
endif
if GetDisasmWindow()
var curwinid = win_getid()
GotoAsmwinOrCreateIt()
win_gotoid(curwinid)
endif
if GetVariablesWindow()
var curwinid = win_getid()
GotoVariableswinOrCreateIt()
win_gotoid(curwinid)
endif
if exists('#User#TermdebugStartPost')
doauto <nomodeline> User TermdebugStartPost
endif
g:termdebug_is_running = true
enddef
# Use when debugger didn't start or ended.
def CloseBuffers()
var buf_numbers = [promptbufnr, ptybufnr, commbufnr, asmbufnr, varbufnr]
for buf_nr in buf_numbers
if buf_nr > 0 && bufexists(buf_nr)
exe $'bwipe! {buf_nr}'
endif
endfor
enddef
def IsGdbStarted(): bool
var gdbproc_status = job_status(term_getjob(gdbbufnr))
if gdbproc_status !=# 'run'
return false
endif
return true
enddef
# Check if the debugger is running remotely and return a suitable command to pty remotely
def GetRemotePtyCmd(gdb_cmd: list<string>): list<string>
# Check if the user provided a command to launch the program window
var term_cmd = null_list
if exists('g:termdebug_config') && has_key(g:termdebug_config, 'remote_window')
term_cmd = g:termdebug_config['remote_window']
term_cmd = type(term_cmd) == v:t_list ? copy(term_cmd) : [term_cmd]
else
# Check if it is a remote gdb, the program terminal should be started
# on the remote machine.
const remote_pattern = '^\(ssh\|wsl\)'
if gdb_cmd[0] =~? remote_pattern
var gdb_pos = indexof(gdb_cmd, $'v:val =~? "^{GetCommand()[-1]}"')
if gdb_pos > 0
# strip debugger call
term_cmd = gdb_cmd[0 : gdb_pos - 1]
# roundtrip to check if socat is available on the remote side
silent call system(join(term_cmd, ' ') .. ' socat -h')
if v:shell_error != 0
Echowarn('Install socat on the remote machine for a program window better experience')
else
# create a devoted tty slave device and link to stdin/stdout
term_cmd += ['socat', '-dd', '-', 'PTY,raw,echo=0']
ch_log($'launching remote ttys using "{join(term_cmd)}"')
endif
endif
endif
endif
return term_cmd
enddef
# Retrieve the remote pty device from a remote terminal
# If interact is true, use remote tty command to get the pty device
def GetRemotePtyDev(bufnr: number, interact: bool): string
var pty: string = null_string
var line = null_string
for j in range(5)
if interact
term_sendkeys(bufnr, "tty\<CR>")
endif
for i in range(0, term_getsize(bufnr)[0])
line = term_getline(bufnr, i)
if line =~? "/dev/pts"
pty = line
break
endif
term_wait(bufnr, 100)
endfor # i
if pty != null_string
# Clear the terminal window
if interact
term_sendkeys(bufnr, "clear\<CR>")
endif
break
endif
endfor # j
return pty
enddef
def CreateProgramPty(cmd: list<string> = null_list): string
ptybufnr = term_start(!cmd ? 'NONE' : cmd, {
term_name: ptybufname,
vertical: vvertical})
if ptybufnr == 0
return null_string
endif
ptywin = win_getid()
if vvertical
# Assuming the source code window will get a signcolumn, use two more
# columns for that, thus one less for the terminal window.
exe $":{(&columns / 2 - 1)}wincmd |"
if allleft
# use the whole left column
wincmd H
endif
endif
if !cmd
return job_info(term_getjob(ptybufnr))['tty_out']
else
var interact = indexof(cmd, 'v:val =~? "^socat"') < 0
var pty = GetRemotePtyDev(ptybufnr, interact)
if pty !~? "/dev/pts"
Echoerr('Failed to get the program window tty')
exe $'bwipe! {ptybufnr}'
pty = null_string
elseif pty !~? "^/dev/pts"
# remove the prompt
pty = pty->matchstr('/dev/pts/\d\+')
endif
return pty
endif
enddef
def CreateCommunicationPty(cmd: list<string> = null_list): string
# Create a hidden terminal window to communicate with gdb
var options: dict<any> = { term_name: commbufname, out_cb: CommOutput, hidden: 1 }
if !cmd
commbufnr = term_start('NONE', options)
else
# avoid message wrapping that prevents proper parsing
options['term_cols'] = 500
commbufnr = term_start(cmd, options)
endif
if commbufnr == 0
return null_string
endif
if !cmd
return job_info(term_getjob(commbufnr))['tty_out']
else
# CommunicationPty only will be reliable with socat
if indexof(cmd, 'v:val =~? "^socat"') < 0
Echoerr('Communication window should be started with socat')
exe $'bwipe! {commbufnr}'
return null_string
endif
var pty = GetRemotePtyDev(commbufnr, false)
if pty !~? "/dev/pts"
Echoerr('Failed to get the communication window tty')
exe $'bwipe! {commbufnr}'
pty = null_string
elseif pty !~? "^/dev/pts"
# remove the prompt
pty = pty->matchstr('/dev/pts/\d\+')
endif
return pty
endif
enddef
# Convenient filter to workaround remote escaping issues.
# For example, ssh doesn't escape spaces for the gdb arguments.
# Workaround doing:
# let g:termdebug_config['command_filter'] = function('g:Termdebug_escape_whitespace')
def g:Termdebug_escape_whitespace(args: list<string>): list<string>
var new_args: list<string> = []
for arg in args
new_args += [substitute(arg, ' ', '\\ ', 'g')]
endfor
return new_args
enddef
def CreateGdbConsole(dict: dict<any>, pty: string, commpty: string): string
# Start the gdb buffer
var gdb_args = get(dict, 'gdb_args', [])
var proc_args = get(dict, 'proc_args', [])
var gdb_cmd = GetCommand()
gdbbufname = gdb_cmd[0]
if exists('g:termdebug_config') && has_key(g:termdebug_config, 'command_add_args')
gdb_cmd = g:termdebug_config.command_add_args(gdb_cmd, pty)
else
# Add -quiet to avoid the intro message causing a hit-enter prompt.
gdb_cmd += ['-quiet']
# Disable pagination, it causes everything to stop at the gdb
gdb_cmd += ['-iex', 'set pagination off']
# Interpret commands while the target is running. This should usually only
# be exec-interrupt, since many commands don't work properly while the
# target is running (so execute during startup).
gdb_cmd += ['-iex', 'set mi-async on']
# Open a terminal window to run the debugger.
gdb_cmd += ['-tty', pty]
# Command executed _after_ startup is done, provides us with the necessary
# feedback
gdb_cmd += ['-ex', 'echo startupdone\n']
endif
# Escape whitespaces in the gdb arguments for ssh remoting
if exists('g:termdebug_config') && !has_key(g:termdebug_config, 'command_filter') &&
gdb_cmd[0] =~? '^ssh'
g:termdebug_config['command_filter'] = function('g:Termdebug_escape_whitespace')
endif
if exists('g:termdebug_config') && has_key(g:termdebug_config, 'command_filter')
gdb_cmd = g:termdebug_config.command_filter(gdb_cmd)
endif
# Adding arguments requested by the user
gdb_cmd += gdb_args
ch_log($'executing "{join(gdb_cmd)}"')
gdbbufnr = term_start(gdb_cmd, {
term_name: gdbbufname,
term_finish: 'close',
})
if gdbbufnr == 0
return 'Failed to open the gdb terminal window'
endif
gdbwin = win_getid()
# Wait for the "startupdone" message before sending any commands.
var counter = 0
var counter_max = 300
if exists('g:termdebug_config') && has_key(g:termdebug_config, 'timeout')
counter_max = g:termdebug_config['timeout']
endif
var success = false
while !success && counter < counter_max
if !IsGdbStarted()
return $'{gdbbufname} exited unexpectedly'
endif
for lnum in range(1, 200)
if term_getline(gdbbufnr, lnum) =~ 'startupdone'
success = true
endif
endfor
# Each count is 10ms
counter += 1
sleep 10m
endwhile
if !success
return 'Failed to startup the gdb program.'
endif
# ---- gdb started. Next, let's set the MI interface. ---
# Set arguments to be run.
if !empty(proc_args)
term_sendkeys(gdbbufnr, $"server set args {join(proc_args)}\r")
endif
# Connect gdb to the communication pty, using the GDB/MI interface.
# Prefix "server" to avoid adding this to the history.
term_sendkeys(gdbbufnr, $"server new-ui mi {commpty}\r")
# Wait for the response to show up, users may not notice the error and wonder
# why the debugger doesn't work.
counter = 0
counter_max = 300
success = false
while !success && counter < counter_max
if !IsGdbStarted()
return $'{gdbbufname} exited unexpectedly'
endif
var response = ''
for lnum in range(1, 200)
var line1 = term_getline(gdbbufnr, lnum)
var line2 = term_getline(gdbbufnr, lnum + 1)
if line1 =~ 'new-ui mi '
# response can be in the same line or the next line
response = $"{line1}{line2}"
if response =~ 'Undefined command'
# CHECKME: possibly send a "server show version" here
return 'Sorry, your gdb is too old, gdb 7.12 is required'
endif
if response =~ 'New UI allocated'
# Success!
success = true
endif
elseif line1 =~ 'Reading symbols from' && line2 !~ 'new-ui mi '
# Reading symbols might take a while, try more times
counter -= 1
endif
endfor
if response =~ 'New UI allocated'
break
endif
counter += 1
sleep 10m
endwhile
if !success
return 'Cannot check if your gdb works, continuing anyway'
endif
return ''
enddef
# Open a terminal window without a job, to run the debugged program in.
def StartDebug_term(dict: dict<any>)
# Retrieve command if remote pty is needed
var gdb_cmd = GetCommand()
var term_cmd = GetRemotePtyCmd(gdb_cmd)
var programpty = CreateProgramPty(term_cmd)
if programpty is null_string
Echoerr('Failed to open the program terminal window')
CloseBuffers()
return
endif
var commpty = CreateCommunicationPty(term_cmd)
if commpty is null_string
Echoerr('Failed to open the communication terminal window')
CloseBuffers()
return
endif
var err_message = CreateGdbConsole(dict, programpty, commpty)
if !empty(err_message)
Echoerr(err_message)
CloseBuffers()
return
endif
job_setoptions(term_getjob(gdbbufnr), {exit_cb: EndDebug})
# Set the filetype, this can be used to add mappings.
set filetype=termdebug
StartDebugCommon(dict)
enddef
# Open a window with a prompt buffer to run gdb in.
def StartDebug_prompt(dict: dict<any>)
var gdb_cmd = GetCommand()
gdbbufname = gdb_cmd[0]
if vvertical
vertical new
else
new
endif
gdbwin = win_getid()
promptbufnr = bufnr('')
prompt_setprompt(promptbufnr, 'gdb> ')
set buftype=prompt
exe $"file {gdbbufname}"
prompt_setcallback(promptbufnr, PromptCallback)
prompt_setinterrupt(promptbufnr, PromptInterrupt)
if vvertical
# Assuming the source code window will get a signcolumn, use two more
# columns for that, thus one less for the terminal window.
exe $":{(&columns / 2 - 1)}wincmd |"
endif
var gdb_args = get(dict, 'gdb_args', [])
var proc_args = get(dict, 'proc_args', [])
# directly communicate via mi2. This option must precede any -iex options for proper
# interpretation.
gdb_cmd += ['--interpreter=mi2']
# Disable pagination, it causes everything to stop at the gdb, needs to be run early
gdb_cmd += ['-iex', 'set pagination off']
# Interpret commands while the target is running. This should usually only
# be exec-interrupt, since many commands don't work properly while the
# target is running (so execute during startup).
gdb_cmd += ['-iex', 'set mi-async on']
# Add -quiet to avoid the intro message causing a hit-enter prompt.
gdb_cmd += ['-quiet']
# Escape whitespaces in the gdb arguments for ssh remoting
if exists('g:termdebug_config') && !has_key(g:termdebug_config, 'command_filter') &&
gdb_cmd[0] =~? '^ssh'
g:termdebug_config['command_filter'] = function('g:Termdebug_escape_whitespace')
endif
if exists('g:termdebug_config') && has_key(g:termdebug_config, 'command_filter')
gdb_cmd = g:termdebug_config.command_filter(gdb_cmd)
endif
# Adding arguments requested by the user
gdb_cmd += gdb_args
ch_log($'executing "{join(gdb_cmd)}"')
gdbjob = job_start(gdb_cmd, {
exit_cb: EndDebug,
out_cb: GdbOutCallback
})
if job_status(gdbjob) != "run"
Echoerr('Failed to start gdb')
exe $'bwipe! {promptbufnr}'
return
endif
exe $'au BufUnload <buffer={promptbufnr}> ++once ' ..
'call job_stop(gdbjob, ''kill'')'
# Mark the buffer modified so that it's not easy to close.
set modified
gdb_channel = job_getchannel(gdbjob)
# Retrieve command if remote pty is needed
var term_cmd = GetRemotePtyCmd(gdb_cmd)
# If we are not using socat maybe is a shell:
var interact = indexof(term_cmd, 'v:val =~? "^socat"') < 0
if has('terminal') && (term_cmd != null || !has('win32'))
# Try open terminal twice because sync with gdbjob may not succeed
# the first time (docker daemon for example)
var trials: number = 2
var pty: string = null_string
while trials > 0
# Run the debugged program in a window. Open it below the
# gdb window.
belowright ptybufnr = term_start(
term_cmd != null ? term_cmd : 'NONE', {
term_name: 'debugged program',
vertical: vvertical
})
if ptybufnr == 0
Echoerr('Failed to open the program terminal window')
job_stop(gdbjob)
return
endif
ptywin = win_getid()
if term_cmd is null
pty = job_info(term_getjob(ptybufnr))['tty_out']
else
# Retrieve remote pty value
pty = GetRemotePtyDev(ptybufnr, interact)
endif
if pty !~? "/dev/pts"
exe $'bwipe! {ptybufnr}'
--trials
pty = null_string
else
break
endif
endwhile
if pty !~? "/dev/pts"
Echoerr('Failed to get the program windows tty')
job_stop(gdbjob)
elseif pty !~? "^/dev/pts"
# remove the prompt
pty = pty->matchstr('/dev/pts/\d\+')
endif
SendCommand($'tty {pty}')
# Since GDB runs in a prompt window, the environment has not been set to
# match a terminal window, need to do that now.
SendCommand('set env TERM = xterm-color')
SendCommand($'set env ROWS = {winheight(ptywin)}')
SendCommand($'set env LINES = {winheight(ptywin)}')
SendCommand($'set env COLUMNS = {winwidth(ptywin)}')
SendCommand($'set env COLORS = {&t_Co}')
SendCommand($'set env VIM_TERMINAL = {v:version}')
elseif has('win32')
# MS-Windows: run in a new console window for maximum compatibility
SendCommand('set new-console on')
else
# TODO: open a new terminal, get the tty name, pass on to gdb
SendCommand('show inferior-tty')
endif
SendCommand('set print pretty on')
SendCommand('set breakpoint pending on')
# Set arguments to be run
if !empty(proc_args)
SendCommand($'set args {join(proc_args)}')
endif
StartDebugCommon(dict)
startinsert
enddef
def StartDebugCommon(dict: dict<any>)
# Sign used to highlight the line where the program has stopped.
# There can be only one.
sign_define('debugPC', {linehl: 'debugPC'})
# Install debugger commands in the text window.
win_gotoid(sourcewin)
InstallCommands()
win_gotoid(gdbwin)
# Enable showing a balloon with eval info
if has("balloon_eval") || has("balloon_eval_term")
set balloonexpr=TermDebugBalloonExpr()
if has("balloon_eval")
set ballooneval
endif
if has("balloon_eval_term")
set balloonevalterm
endif
endif
augroup TermDebug
au BufRead * BufRead()
au BufUnload * BufUnloaded()
au OptionSet background Highlight(0, v:option_old, v:option_new)
augroup END
# Run the command if the bang attribute was given and got to the debug
# window.
if get(dict, 'bang', 0)
SendResumingCommand('-exec-run')
win_gotoid(ptywin)
endif
enddef
# Send a command to gdb. "cmd" is the string without line terminator.
def SendCommand(cmd: string)
ch_log($'sending to gdb: {cmd}')
if way is Way.Prompt
ch_sendraw(gdb_channel, $"{cmd}\n")
else
term_sendkeys(commbufnr, $"{cmd}\r")
endif
enddef
# Interrupt or stop the program
def StopCommand()
if way is Way.Prompt
PromptInterrupt()
else
SendCommand('-exec-interrupt')
endif
enddef
# Continue the program
def ContinueCommand()
if way is Way.Prompt
SendCommand('continue')
else
# using -exec-continue results in CTRL-C in the gdb window not working,
# communicating via commbuf (= use of SendCommand) has the same result
SendCommand('-exec-continue')
# command Continue term_sendkeys(gdbbuf, "continue\r")
endif
enddef
# This is global so that a user can create their mappings with this.
def g:TermDebugSendCommand(cmd: string)
if way is Way.Prompt
ch_sendraw(gdb_channel, $"{cmd}\n")
else
var do_continue = false
if !stopped
do_continue = true
StopCommand()
sleep 10m
endif
# TODO: should we prepend CTRL-U to clear the command?
term_sendkeys(gdbbufnr, $"{cmd}\r")
if do_continue
ContinueCommand()
endif
endif
enddef
# Send a command that resumes the program. If the program isn't stopped the
# command is not sent (to avoid a repeated command to cause trouble).
# If the command is sent then reset stopped.
def SendResumingCommand(cmd: string)
if stopped
# reset stopped here, it may take a bit of time before we get a response
stopped = false
ch_log('assume that program is running after this command')
SendCommand(cmd)
else
ch_log($'dropping command, program is running: {cmd}')
endif
enddef
# Function called when entering a line in the prompt buffer.
def PromptCallback(text: string)
SendCommand(text)
enddef
# Function called when pressing CTRL-C in the prompt buffer and when placing a
# breakpoint.
def PromptInterrupt()
ch_log('Interrupting gdb')
if has('win32')
# Using job_stop() does not work on MS-Windows, need to send SIGTRAP to
# the debugger program so that gdb responds again.
if pid == 0
Echoerr('Cannot interrupt gdb, did not find a process ID')
else
debugbreak(pid)
endif
else
job_stop(gdbjob, 'int')
endif
enddef
# Function called when gdb outputs text.
def GdbOutCallback(channel: channel, text: string)
ch_log($'received from gdb: {text}')
# Disassembly messages need to be forwarded as-is.
if parsing_disasm_msg > 0
CommOutput(channel, text)
return
endif
# Drop the gdb prompt, we have our own.
# Drop status and echo'd commands.
if text == '(gdb) ' || text == '^done' ||
(text[0] == '&' && text !~ '^&"disassemble')
return
endif
var decoded_text = ''
if text =~ '^\^error,msg='
decoded_text = DecodeMessage(text[11 : ], false)
if !empty(evalexpr) && decoded_text =~ 'A syntax error in expression, near\|No symbol .* in current context'
# Silently drop evaluation errors.
evalexpr = ''
return
endif
elseif text[0] == '~'
decoded_text = DecodeMessage(text[1 : ], false)
else
CommOutput(channel, text)
return
endif
var curwinid = win_getid()
win_gotoid(gdbwin)
# Add the output above the current prompt.
append(line('$') - 1, decoded_text)
set modified
win_gotoid(curwinid)
enddef
# Decode a message from gdb. "quotedText" starts with a ", return the text up
# to the next unescaped ", unescaping characters:
# - remove line breaks (unless "literal" is true)
# - change \" to "
# - change \\t to \t (unless "literal" is true)
# - change \0xhh to \xhh (disabled for now)
# - change \ooo to octal
# - change \\ to \
def DecodeMessage(quotedText: string, literal: bool): string
if quotedText[0] != '"'
Echoerr($'DecodeMessage(): missing quote in {quotedText}')
return ''
endif
var msg = quotedText
->substitute('^"\|[^\\]\zs".*', '', 'g')
->substitute('\\"', '"', 'g')
#\ multi-byte characters arrive in octal form
#\ NULL-values must be kept encoded as those break the string otherwise
->substitute('\\000', NullRepl, 'g')
->substitute('\\\(\o\o\o\)', (m) => nr2char(str2nr(m[1], 8)), 'g')
# You could also use ->substitute('\\\\\(\o\o\o\)', '\=nr2char(str2nr(submatch(1), 8))', "g")
#\ Note: GDB docs also mention hex encodings - the translations below work
#\ but we keep them out for performance-reasons until we actually see
#\ those in mi-returns
->substitute('\\\\', '\', 'g')
->substitute(NullRepl, '\\000', 'g')
if !literal
return msg
->substitute('\\t', "\t", 'g')
->substitute('\\n', '', 'g')
else
return msg
endif
enddef
const NullRepl = 'XXXNULLXXX'
# Extract the "name" value from a gdb message with fullname="name".
def GetLocalFullname(msg: string): string
if msg !~ 'fullname'
return ''
endif
var name = DecodeMessage(substitute(msg, '.*fullname=', '', ''), true)
if has('win32') && name =~ ':\\\\'
# sometimes the name arrives double-escaped
name = substitute(name, '\\\\', '\\', 'g')
endif
return name
enddef
# Turn a remote machine local path into a remote one.
def Local2RemotePath(path: string): string
# If no mappings are provided keep the path.
if !exists('g:termdebug_config') || !has_key(g:termdebug_config, 'substitute_path')
return path
endif
var mappings: list<any> = items(g:termdebug_config['substitute_path'])
# Try to match the longest local path first.
sort(mappings, (a, b) => len(b[0]) - len(a[0]))
for [local, remote] in mappings
const pattern = '^' .. escape(local, '\.*~()')
if path =~ pattern
return substitute(path, pattern, escape(remote, '\.*~()'), '')
endif
endfor
return path
enddef
# Turn a remote path into a local one to the remote machine.
def Remote2LocalPath(path: string): string
# If no mappings are provided keep the path.
if !exists('g:termdebug_config') || !has_key(g:termdebug_config, 'substitute_path')
return path
endif
var mappings: list<any> = items(g:termdebug_config['substitute_path'])
# Try to match the longest remote path first.
sort(mappings, (a, b) => len(b[1]) - len(a[1]))
for [local, remote] in mappings
const pattern = '^' .. escape(substitute(remote, '[\/]', '[\\/]', 'g'), '.*~()')
if path =~ pattern
return substitute(path, pattern, local, '')
endif
endfor
return path
enddef
# Extract the "addr" value from a gdb message with addr="0x0001234".
def GetAsmAddr(msg: string): string
if msg !~ 'addr='
return ''
endif
var addr = DecodeMessage(substitute(msg, '.*addr=', '', ''), false)
return addr
enddef
def EndDebug(job: any, status: any)
if exists('#User#TermdebugStopPre')
doauto <nomodeline> User TermdebugStopPre
endif
if way is Way.Prompt
ch_log("Returning from EndDebug()")
endif
var curwinid = win_getid()
CloseBuffers()
# Restore 'signcolumn' in all buffers for which it was set.
win_gotoid(sourcewin)
var was_buf = bufnr()
for bufnr in signcolumn_buflist
if bufexists(bufnr)
exe $":{bufnr}buf"
if exists('b:save_signcolumn')
&signcolumn = b:save_signcolumn
unlet b:save_signcolumn
endif
endif
endfor
if bufexists(was_buf)
exe $":{was_buf}buf"
endif
DeleteCommands()
win_gotoid(curwinid)
&columns = saved_columns
if has("balloon_eval") || has("balloon_eval_term")
set balloonexpr=
if has("balloon_eval")
set noballooneval
endif
if has("balloon_eval_term")
set noballoonevalterm
endif
endif
if exists('#User#TermdebugStopPost')
doauto <nomodeline> User TermdebugStopPost
endif
au! TermDebug
g:termdebug_is_running = false
enddef
# Disassembly window - added by Michael Sartain
#
# - CommOutput: &"disassemble $pc\n"
# - CommOutput: ~"Dump of assembler code for function main(int, char**):\n"
# - CommOutput: ~" 0x0000555556466f69 <+0>:\tpush rbp\n"
# ...
# - CommOutput: ~" 0x0000555556467cd0:\tpop rbp\n"
# - CommOutput: ~" 0x0000555556467cd1:\tret \n"
# - CommOutput: ~"End of assembler dump.\n"
# - CommOutput: ^done
# - CommOutput: &"disassemble $pc\n"
# - CommOutput: &"No function contains specified address.\n"
# - CommOutput: ^error,msg="No function contains specified address."
def HandleDisasmMsg(msg: string)
if msg =~ '^\^done'
var curwinid = win_getid()
if win_gotoid(asmwin)
silent! :%delete _
setline(1, asm_lines)
set nomodified
set filetype=asm
var lnum = search($'^{asm_addr}')
if lnum != 0
sign_unplace('TermDebug', {id: asm_id})
sign_place(asm_id, 'TermDebug', 'debugPC', '%', {lnum: lnum})
endif
win_gotoid(curwinid)
endif
parsing_disasm_msg = 0
asm_lines = []
elseif msg =~ '^\^error,msg='
if parsing_disasm_msg == 1
# Disassemble call ran into an error. This can happen when gdb can't
# find the function frame address, so let's try to disassemble starting
# at current PC
SendCommand('disassemble $pc,+100')
endif
parsing_disasm_msg = 0
elseif msg =~ '^&"disassemble \$pc'
if msg =~ '+100'
# This is our second disasm attempt
parsing_disasm_msg = 2
endif
elseif msg !~ '^&"disassemble'
var value = substitute(msg, '^\~\"[ ]*', '', '')
->substitute('^=>[ ]*', '', '')
->substitute('\\n\"\r$', '', '')
->substitute('\\n\"$', '', '')
->substitute('\r', '', '')
->substitute('\\t', ' ', 'g')
if value != '' || !empty(asm_lines)
add(asm_lines, value)
endif
endif
enddef
def ParseVarinfo(varinfo: string): dict<any>
var dict = {}
var nameIdx = matchstrpos(varinfo, '{name="\([^"]*\)"')
dict['name'] = varinfo[nameIdx[1] + 7 : nameIdx[2] - 2]
var typeIdx = matchstrpos(varinfo, ',type="\([^"]*\)"')
# 'type' maybe is a url-like string,
# try to shorten it and show only the /tail
dict['type'] = (varinfo[typeIdx[1] + 7 : typeIdx[2] - 2])->fnamemodify(':t')
var valueIdx = matchstrpos(varinfo, ',value="\(.*\)"}')
if valueIdx[1] == -1
dict['value'] = 'Complex value'
else
dict['value'] = varinfo[valueIdx[1] + 8 : valueIdx[2] - 3]
endif
return dict
enddef
def HandleVariablesMsg(msg: string)
var curwinid = win_getid()
if win_gotoid(varwin)
silent! :%delete _
var spaceBuffer = 20
var spaces = repeat(' ', 16)
setline(1, $'Type{spaces}Name{spaces}Value')
var cnt = 1
var capture = '{name=".\{-}",\%(arg=".\{-}",\)\{0,1\}type=".\{-}"\%(,value=".\{-}"\)\{0,1\}}'
var varinfo = matchstr(msg, capture, 0, cnt)
while varinfo != ''
var vardict = ParseVarinfo(varinfo)
setline(cnt + 1, vardict['type'] ..
repeat(' ', max([20 - len(vardict['type']), 1])) ..
vardict['name'] ..
repeat(' ', max([20 - len(vardict['name']), 1])) ..
vardict['value'])
cnt += 1
varinfo = matchstr(msg, capture, 0, cnt)
endwhile
endif
win_gotoid(curwinid)
enddef
# Handle a message received from gdb on the GDB/MI interface.
def CommOutput(chan: channel, message: string)
# We may use the standard MI message formats? See #10300 on github that mentions
# the following links:
# https://sourceware.org/gdb/current/onlinedocs/gdb.html/GDB_002fMI-Input-Syntax.html#GDB_002fMI-Input-Syntax
# https://sourceware.org/gdb/current/onlinedocs/gdb.html/GDB_002fMI-Output-Syntax.html#GDB_002fMI-Output-Syntax
var msgs = split(message, "\r")
var msg = ''
for received_msg in msgs
# remove prefixed NL
if received_msg[0] == "\n"
msg = received_msg[1 : ]
else
msg = received_msg
endif
if parsing_disasm_msg > 0
HandleDisasmMsg(msg)
elseif msg != ''
if msg =~ '^\(\*stopped\|\*running\|=thread-selected\)'
HandleCursor(msg)
elseif msg =~ '^\^done,bkpt=' || msg =~ '^=breakpoint-created,'
HandleNewBreakpoint(msg, false)
elseif msg =~ '^=breakpoint-modified,'
HandleNewBreakpoint(msg, true)
elseif msg =~ '^=breakpoint-deleted,'
HandleBreakpointDelete(msg)
elseif msg =~ '^=thread-group-started'
HandleProgramRun(msg)
elseif msg =~ '^\^done,value='
HandleEvaluate(msg)
elseif msg =~ '^\^error,msg='
HandleError(msg)
elseif msg =~ '^&"disassemble'
parsing_disasm_msg = 1
asm_lines = []
HandleDisasmMsg(msg)
elseif msg =~ '^\^done,variables='
HandleVariablesMsg(msg)
endif
endif
endfor
enddef
def GotoProgram()
if has('win32') && !ptywin
if executable('powershell')
system(printf('powershell -Command "add-type -AssemblyName microsoft.VisualBasic;[Microsoft.VisualBasic.Interaction]::AppActivate(%d);"', pid))
endif
else
win_gotoid(ptywin)
endif
enddef
# Install commands in the current window to control the debugger.
def InstallCommands()
command -nargs=? Break SetBreakpoint(<q-args>)
command -nargs=? Tbreak SetBreakpoint(<q-args>, true)
command ToggleBreak ToggleBreak()
command Clear ClearBreakpoint()
command Step SendResumingCommand('-exec-step')
command Over SendResumingCommand('-exec-next')
command -nargs=? Until Until(<q-args>)
command Finish SendResumingCommand('-exec-finish')
command -nargs=* Run Run(<q-args>)
command -nargs=* Arguments SendResumingCommand('-exec-arguments ' .. <q-args>)
command Stop StopCommand()
command Continue ContinueCommand()
command RunOrContinue RunOrContinue()
command -nargs=* Frame Frame(<q-args>)
command -count=1 Up Up(<count>)
command -count=1 Down Down(<count>)
command -range -nargs=* Evaluate Evaluate(<range>, <q-args>)
command Gdb win_gotoid(gdbwin)
command Program GotoProgram()
command Source GotoSourcewinOrCreateIt()
command Asm GotoAsmwinOrCreateIt()
command Var GotoVariableswinOrCreateIt()
command Winbar InstallWinbar(true)
var map = true
if exists('g:termdebug_config')
map = get(g:termdebug_config, 'map_K', true)
elseif exists('g:termdebug_map_K')
map = g:termdebug_map_K
endif
if map
if !empty(saved_K_map) && !saved_K_map.buffer || empty(saved_K_map)
nnoremap K :Evaluate<CR>
endif
if !empty(saved_visual_K_map) && !saved_visual_K_map.buffer || empty(saved_visual_K_map)
xnoremap K :Evaluate<CR>
endif
endif
map = true
if exists('g:termdebug_config')
map = get(g:termdebug_config, 'map_plus', true)
endif
if map
if !empty(saved_plus_map) && !saved_plus_map.buffer || empty(saved_plus_map)
nnoremap <expr> + $'<Cmd>{v:count1}Up<CR>'
endif
endif
map = true
if exists('g:termdebug_config')
map = get(g:termdebug_config, 'map_minus', true)
endif
if map
if !empty(saved_minus_map) && !saved_minus_map.buffer || empty(saved_minus_map)
nnoremap <expr> - $'<Cmd>{v:count1}Down<CR>'
endif
endif
if has('menu') && &mouse != ''
InstallWinbar(false)
var pup = true
if exists('g:termdebug_config')
pup = get(g:termdebug_config, 'popup', true)
elseif exists('g:termdebug_popup')
pup = g:termdebug_popup
endif
if pup
&mousemodel = 'popup_setpos'
an 1.200 PopUp.-SEP3- <Nop>
an 1.210 PopUp.Set\ breakpoint <cmd>Break<CR>
an 1.220 PopUp.Clear\ breakpoint <cmd>Clear<CR>
an 1.230 PopUp.Run\ until <cmd>Until<CR>
an 1.240 PopUp.Evaluate <cmd>Evaluate<CR>
endif
endif
enddef
# Install the window toolbar in the current window.
def InstallWinbar(force: bool)
# install the window toolbar by default, can be disabled in the config
var winbar = true
if exists('g:termdebug_config')
winbar = get(g:termdebug_config, 'winbar', true)
endif
if has('menu') && &mouse != '' && (winbar || force)
nnoremenu WinBar.Step :Step<CR>
nnoremenu WinBar.Next :Over<CR>
nnoremenu WinBar.Finish :Finish<CR>
nnoremenu WinBar.Cont :Continue<CR>
nnoremenu WinBar.Stop :Stop<CR>
nnoremenu WinBar.Eval :Evaluate<CR>
add(winbar_winids, win_getid())
endif
enddef
# Delete installed debugger commands in the current window.
def DeleteCommands()
delcommand Break
delcommand Tbreak
delcommand Clear
delcommand Step
delcommand Over
delcommand Until
delcommand Finish
delcommand Run
delcommand Arguments
delcommand Stop
delcommand Continue
delcommand Frame
delcommand Up
delcommand Down
delcommand Evaluate
delcommand Gdb
delcommand Program
delcommand Source
delcommand Asm
delcommand Var
delcommand Winbar
delcommand RunOrContinue
delcommand ToggleBreak
if !empty(saved_K_map) && !saved_K_map.buffer
mapset(saved_K_map)
elseif empty(saved_K_map)
silent! nunmap K
endif
if !empty(saved_visual_K_map) && !saved_visual_K_map.buffer
mapset(saved_visual_K_map)
elseif empty(saved_visual_K_map)
silent! xunmap K
endif
if !empty(saved_plus_map) && !saved_plus_map.buffer
mapset(saved_plus_map)
elseif empty(saved_plus_map)
silent! nunmap +
endif
if !empty(saved_minus_map) && !saved_minus_map.buffer
mapset(saved_minus_map)
elseif empty(saved_minus_map)
silent! nunmap -
endif
if has('menu')
# Remove the WinBar entries from all windows where it was added.
var curwinid = win_getid()
for winid in winbar_winids
if win_gotoid(winid)
aunmenu WinBar.Step
aunmenu WinBar.Next
aunmenu WinBar.Finish
aunmenu WinBar.Cont
aunmenu WinBar.Stop
aunmenu WinBar.Eval
endif
endfor
win_gotoid(curwinid)
&mousemodel = saved_mousemodel
try
aunmenu PopUp.-SEP3-
aunmenu PopUp.Set\ breakpoint
aunmenu PopUp.Clear\ breakpoint
aunmenu PopUp.Run\ until
aunmenu PopUp.Evaluate
catch
# ignore any errors in removing the PopUp menu
endtry
endif
sign_unplace('TermDebug')
sign_undefine('debugPC')
sign_undefine(BreakpointSigns->map("'debugBreakpoint' .. v:val"))
enddef
def QuoteArg(x: string): string
# Find all the occurrences of " and \ and escape them and double quote
# the resulting string.
return printf('"%s"', x ->substitute('[\\"]', '\\&', 'g'))
enddef
# :Until - Execute until past a specified position or current line
def Until(at: string)
if stopped
# reset stopped here, it may take a bit of time before we get a response
stopped = false
ch_log('assume that program is running after this command')
# Use the fname:lnum format
var fname = Remote2LocalPath(expand('%:p'))
var AT = empty(at) ? QuoteArg($"{fname}:{line('.')}") : at
SendCommand($'-exec-until {AT}')
else
ch_log('dropping command, program is running: exec-until')
endif
enddef
# :Break - Set a breakpoint at the cursor position.
def SetBreakpoint(at: string, tbreak=false)
# Setting a breakpoint may not work while the program is running.
# Interrupt to make it work.
var do_continue = false
if !stopped
do_continue = true
StopCommand()
sleep 10m
endif
# Use the fname:lnum format, older gdb can't handle --source.
var fname = Remote2LocalPath(expand('%:p'))
var AT = empty(at) ? QuoteArg($"{fname}:{line('.')}") : at
var cmd = ''
if tbreak
cmd = $'-break-insert -t {AT}'
else
cmd = $'-break-insert {AT}'
endif
SendCommand(cmd)
if do_continue
ContinueCommand()
endif
enddef
def ClearBreakpoint()
var fname = Remote2LocalPath(expand('%:p'))
fname = fnameescape(fname)
var lnum = line('.')
var bploc = printf('%s:%d', fname, lnum)
var nr = 0
if has_key(breakpoint_locations, bploc)
var idx = 0
for id in breakpoint_locations[bploc]
if has_key(breakpoints, id)
# Assume this always works, the reply is simply "^done".
SendCommand($'-break-delete {id}')
for subid in keys(breakpoints[id])
sign_unplace('TermDebug',
{id: Breakpoint2SignNumber(id, str2nr(subid))})
endfor
remove(breakpoints, id)
remove(breakpoint_locations[bploc], idx)
nr = id
break
else
idx += 1
endif
endfor
if nr != 0
if empty(breakpoint_locations[bploc])
remove(breakpoint_locations, bploc)
endif
echomsg $'Breakpoint {nr} cleared from line {lnum}.'
else
Echoerr($'Internal error trying to remove breakpoint at line {lnum}!')
endif
else
echomsg $'No breakpoint to remove at line {lnum}.'
endif
enddef
def ToggleBreak()
var fname = Remote2LocalPath(expand('%:p'))
fname = fnameescape(fname)
var lnum = line('.')
var bploc = printf('%s:%d', fname, lnum)
if has_key(breakpoint_locations, bploc)
while has_key(breakpoint_locations, bploc)
ClearBreakpoint()
endwhile
else
SetBreakpoint("")
endif
enddef
def Run(args: string)
if args != ''
SendResumingCommand($'-exec-arguments {args}')
endif
SendResumingCommand('-exec-run')
enddef
def RunOrContinue()
if running
ContinueCommand()
else
Run('')
endif
enddef
# :Frame - go to a specific frame in the stack
def Frame(arg: string)
# Note: we explicit do not use mi's command
# call SendCommand('-stack-select-frame "' . arg .'"')
# as we only get a "done" mi response and would have to open the file
# 'manually' - using cli command "frame" provides us with the mi response
# already parsed and allows for more formats
if arg =~ '^\d\+$' || arg == ''
# specify frame by number
SendCommand($'-interpreter-exec mi "frame {arg}"')
elseif arg =~ '^0x[0-9a-fA-F]\+$'
# specify frame by stack address
SendCommand($'-interpreter-exec mi "frame address {arg}"')
else
# specify frame by function name
SendCommand($'-interpreter-exec mi "frame function {arg}"')
endif
enddef
# :Up - go count frames in the stack "higher"
def Up(count: number)
# the 'correct' one would be -stack-select-frame N, but we don't know N
SendCommand($'-interpreter-exec console "up {count}"')
enddef
# :Down - go count frames in the stack "below"
def Down(count: number)
# the 'correct' one would be -stack-select-frame N, but we don't know N
SendCommand($'-interpreter-exec console "down {count}"')
enddef
def SendEval(expr: string)
# check for "likely" boolean expressions, in which case we take it as lhs
var exprLHS = substitute(expr, ' *=.*', '', '')
if expr =~ "[=!<>]="
exprLHS = expr
endif
# encoding expression to prevent bad errors
var expr_escaped = expr
->substitute('\\', '\\\\', 'g')
->substitute('"', '\\"', 'g')
SendCommand($'-data-evaluate-expression "{expr_escaped}"')
evalexpr = exprLHS
enddef
# Returns whether to evaluate in a popup or not, defaults to false.
def EvaluateInPopup(): bool
if exists('g:termdebug_config')
return get(g:termdebug_config, 'evaluate_in_popup', false)
endif
return false
enddef
# :Evaluate - evaluate what is specified / under the cursor
def Evaluate(range: number, arg: string)
var expr = GetEvaluationExpression(range, arg)
if EvaluateInPopup()
evalInPopup = true
evalExprResult = ''
else
echomsg $'expr: {expr}'
endif
ignoreEvalError = false
SendEval(expr)
enddef
# get what is specified / under the cursor
def GetEvaluationExpression(range: number, arg: string): string
var expr = ''
if arg != ''
# user supplied evaluation
expr = CleanupExpr(arg)
expr = substitute(expr, '"\([^"]*\)": *', '\1=', 'g')
elseif range == 2
# no evaluation but provided but range set
var pos = getcurpos()
var regst = getreg('v', 1, 1)
var regt = getregtype('v')
normal! gv"vy
expr = CleanupExpr(@v)
setpos('.', pos)
setreg('v', regst, regt)
else
# no evaluation provided: get from C-expression under cursor
# TODO: allow filetype specific lookup #9057
expr = expand('<cexpr>')
endif
return expr
enddef
# clean up expression that may get in because of range
# (newlines and surrounding whitespace)
# As it can also be specified via ex-command for assignments this function
# may not change the "content" parts (like replacing contained spaces)
def CleanupExpr(passed_expr: string): string
# replace all embedded newlines/tabs/...
var expr = substitute(passed_expr, '\_s', ' ', 'g')
if &filetype ==# 'cobol'
# extra cleanup for COBOL:
# - a semicolon nmay be used instead of a space
# - a trailing comma or period is ignored as it commonly separates/ends
# multiple expr
expr = substitute(expr, ';', ' ', 'g')
expr = substitute(expr, '[,.]\+ *$', '', '')
endif
# get rid of leading and trailing spaces
expr = substitute(expr, '^ *', '', '')
expr = substitute(expr, ' *$', '', '')
return expr
enddef
def Balloon_show(expr: string)
if has("balloon_eval") || has("balloon_eval_term")
balloon_show(expr)
endif
enddef
def Popup_format(expr: string): list<string>
var lines = expr
->substitute('{', '{\n', 'g')
->substitute('}', '\n}', 'g')
->substitute(',', ',\n', 'g')
->split('\n')
var indentation = 0
var formatted_lines = []
for line in lines
var stripped = line->substitute('^\s\+', '', '')
if stripped =~ '^}'
indentation -= 2
endif
formatted_lines->add(repeat(' ', indentation) .. stripped)
if stripped =~ '{$'
indentation += 2
endif
endfor
return formatted_lines
enddef
def Popup_show(expr: string)
var formatted = Popup_format(expr)
if evalPopupId != -1
popup_close(evalPopupId)
endif
# Specifying the line is necessary, as the winbar seems to cause issues
# otherwise. I.e., the popup would be shown one line too high.
evalPopupId = popup_atcursor(formatted, {'line': 'cursor-1'})
enddef
def HandleEvaluate(msg: string)
var value = msg
->substitute('.*value="\(.*\)"', '\1', '')
->substitute('\\"', '"', 'g')
->substitute('\\\\', '\\', 'g')
#\ multi-byte characters arrive in octal form, replace everything but NULL values
->substitute('\\000', NullRepl, 'g')
->substitute('\\\(\o\o\o\)', (m) => nr2char(str2nr(m[1], 8)), 'g')
#\ Note: GDB docs also mention hex encodings - the translations below work
#\ but we keep them out for performance-reasons until we actually see
#\ those in mi-returns
#\ ->substitute('\\0x00', NullRep, 'g')
#\ ->substitute('\\0x\(\x\x\)', {-> eval('"\x' .. submatch(1) .. '"')}, 'g')
->substitute(NullRepl, '\\000', 'g')
if evalFromBalloonExpr || evalInPopup
if empty(evalExprResult)
evalExprResult = $'{evalexpr}: {value}'
else
evalExprResult ..= $' = {value}'
endif
else
echomsg $'"{evalexpr}": {value}'
endif
if evalexpr[0] != '*' && value =~ '^0x' && value != '0x0' && value !~ '"$'
# Looks like a pointer, also display what it points to.
ignoreEvalError = true
SendEval($'*{evalexpr}')
elseif evalFromBalloonExpr
Balloon_show(evalExprResult)
evalFromBalloonExpr = false
elseif evalInPopup
Popup_show(evalExprResult)
evalInPopup = false
endif
enddef
# Show a balloon with information of the variable under the mouse pointer,
# if there is any.
def TermDebugBalloonExpr(): string
if v:beval_winid != sourcewin
return ''
endif
if !stopped
# Only evaluate when stopped, otherwise setting a breakpoint using the
# mouse triggers a balloon.
return ''
endif
evalFromBalloonExpr = true
evalExprResult = ''
ignoreEvalError = true
var expr = CleanupExpr(v:beval_text)
SendEval(expr)
return ''
enddef
# Handle an error.
def HandleError(msg: string)
if ignoreEvalError
# Result of SendEval() failed, ignore.
ignoreEvalError = false
evalFromBalloonExpr = true
return
endif
var msgVal = substitute(msg, '.*msg="\(.*\)"', '\1', '')
Echoerr(substitute(msgVal, '\\"', '"', 'g'))
enddef
def GotoSourcewinOrCreateIt()
if !win_gotoid(sourcewin)
new
sourcewin = win_getid()
InstallWinbar(false)
endif
enddef
def GetDisasmWindow(): bool
# TODO Remove the deprecated features after 1 Jan 2025.
var val: any
if exists('g:termdebug_config') && has_key(g:termdebug_config, 'disasm_window')
val = g:termdebug_config['disasm_window']
elseif exists('g:termdebug_disasm_window')
val = g:termdebug_disasm_window
else
val = false
endif
return typename(val) == 'number' ? val != 0 : val
enddef
def GetDisasmWindowHeight(): number
if exists('g:termdebug_config')
return get(g:termdebug_config, 'disasm_window_height', 0)
endif
if exists('g:termdebug_disasm_window') && g:termdebug_disasm_window > 1
return g:termdebug_disasm_window
endif
return 0
enddef
def GotoAsmwinOrCreateIt()
var mdf = ''
if !win_gotoid(asmwin)
if win_gotoid(sourcewin)
# 60 is approx spaceBuffer * 3
if winwidth(0) > (78 + 60)
mdf = 'vert'
exe $'{mdf} :60new'
else
exe 'rightbelow new'
endif
else
exe 'new'
endif
asmwin = win_getid()
setlocal nowrap
setlocal number
setlocal noswapfile
setlocal buftype=nofile
setlocal bufhidden=wipe
setlocal signcolumn=no
setlocal modifiable
if asmbufnr > 0 && bufexists(asmbufnr)
exe $'buffer {asmbufnr}'
else
exe $"silent file {asmbufname}"
asmbufnr = bufnr(asmbufname)
endif
if mdf != 'vert' && GetDisasmWindowHeight() > 0
exe $'resize {GetDisasmWindowHeight()}'
endif
endif
if asm_addr != ''
var lnum = search($'^{asm_addr}')
if lnum == 0
if stopped
SendCommand('disassemble $pc')
endif
else
sign_unplace('TermDebug', {id: asm_id})
sign_place(asm_id, 'TermDebug', 'debugPC', '%', {lnum: lnum})
endif
endif
enddef
def GetVariablesWindow(): bool
# TODO Remove the deprecated features after 1 Jan 2025.
var val: any
if exists('g:termdebug_config') && has_key(g:termdebug_config, 'variables_window')
val = g:termdebug_config['variables_window']
elseif exists('g:termdebug_variables_window')
val = g:termdebug_variables_window
else
val = false
endif
return typename(val) == 'number' ? val != 0 : val
enddef
def GetVariablesWindowHeight(): number
if exists('g:termdebug_config')
return get(g:termdebug_config, 'variables_window_height', 0)
endif
if exists('g:termdebug_variables_window') && g:termdebug_variables_window > 1
return g:termdebug_variables_window
endif
return 0
enddef
def GotoVariableswinOrCreateIt()
var mdf = ''
if !win_gotoid(varwin)
if win_gotoid(sourcewin)
# 60 is approx spaceBuffer * 3
if winwidth(0) > (78 + 60)
mdf = 'vert'
exe $'{mdf} :60new'
else
exe 'rightbelow new'
endif
else
exe 'new'
endif
varwin = win_getid()
setlocal nowrap
setlocal noswapfile
setlocal buftype=nofile
setlocal bufhidden=wipe
setlocal signcolumn=no
setlocal modifiable
# If exists, then open, otherwise create
if varbufnr > 0 && bufexists(varbufnr)
exe $'buffer {varbufnr}'
else
exe $"silent file {varbufname}"
varbufnr = bufnr(varbufname)
endif
if mdf != 'vert' && GetVariablesWindowHeight() > 0
exe $'resize {GetVariablesWindowHeight()}'
endif
endif
if running
SendCommand('-stack-list-variables 2')
endif
enddef
# Handle stopping and running message from gdb.
# Will update the sign that shows the current position.
def HandleCursor(msg: string)
var wid = win_getid()
if msg =~ '^\*stopped'
ch_log('program stopped')
stopped = true
if msg =~ '^\*stopped,reason="exited-normally"'
running = false
endif
elseif msg =~ '^\*running'
ch_log('program running')
stopped = false
running = true
endif
var fname = ''
if msg =~ 'fullname='
fname = GetLocalFullname(msg)
endif
if msg =~ 'addr='
var asm_addr_local = GetAsmAddr(msg)
if asm_addr_local != ''
asm_addr = asm_addr_local
var curwinid = win_getid()
var lnum = 0
if win_gotoid(asmwin)
lnum = search($'^{asm_addr}')
if lnum == 0
SendCommand('disassemble $pc')
else
sign_unplace('TermDebug', {id: asm_id})
sign_place(asm_id, 'TermDebug', 'debugPC', '%', {lnum: lnum})
endif
win_gotoid(curwinid)
endif
endif
endif
if running && stopped && bufwinnr(varbufname) != -1
SendCommand('-stack-list-variables 2')
endif
# Translate to remote file name if needed.
const fremote = Local2RemotePath(fname)
if msg =~ '^\(\*stopped\|=thread-selected\)' && (fremote != fname || filereadable(fname))
var lnum = substitute(msg, '.*line="\([^"]*\)".*', '\1', '')
if lnum =~ '^[0-9]*$'
GotoSourcewinOrCreateIt()
if expand('%:p') != fnamemodify(fremote, ':p')
echomsg $"different fname: '{expand('%:p')}' vs '{fnamemodify(fremote, ':p')}'"
augroup Termdebug
# Always open a file read-only instead of showing the ATTENTION
# prompt, since it is unlikely we want to edit the file.
# The file may be changed but not saved, warn for that.
au SwapExists * echohl WarningMsg
| echo 'Warning: file is being edited elsewhere'
| echohl None
| v:swapchoice = 'o'
augroup END
if &modified
# TODO: find existing window
exe $'split {fnameescape(fremote)}'
sourcewin = win_getid()
InstallWinbar(false)
else
exe $'edit {fnameescape(fremote)}'
endif
augroup Termdebug
au! SwapExists
augroup END
endif
exe $":{lnum}"
normal! zv
sign_unplace('TermDebug', {id: pc_id})
sign_place(pc_id, 'TermDebug', 'debugPC', fremote,
{lnum: str2nr(lnum), priority: 110})
if !exists('b:save_signcolumn')
b:save_signcolumn = &signcolumn
add(signcolumn_buflist, bufnr())
endif
setlocal signcolumn=yes
endif
elseif !stopped || fname != ''
sign_unplace('TermDebug', {id: pc_id})
endif
win_gotoid(wid)
enddef
# Create breakpoint sign
def CreateBreakpoint(id: number, subid: number, enabled: string)
var nr = printf('%d.%d', id, subid)
if index(BreakpointSigns, nr) == -1
add(BreakpointSigns, nr)
var hiName = ''
if enabled == "n"
hiName = "debugBreakpointDisabled"
else
hiName = "debugBreakpoint"
endif
var label = ''
if exists('g:termdebug_config')
if has_key(g:termdebug_config, 'signs')
label = get(g:termdebug_config.signs, id - 1, '')
endif
if label == '' && has_key(g:termdebug_config, 'sign')
label = g:termdebug_config['sign']
endif
if label == '' && has_key(g:termdebug_config, 'sign_decimal')
label = printf('%02d', id)
if id > 99
label = '9+'
endif
endif
endif
if label == ''
label = printf('%02X', id)
if id > 255
label = 'F+'
endif
endif
sign_define($'debugBreakpoint{nr}',
{text: slice(label, 0, 2),
texthl: hiName})
endif
enddef
def SplitMsg(str: string): list<string>
return split(str, '{.\{-}}\zs')
enddef
# Handle setting a breakpoint
# Will update the sign that shows the breakpoint
def HandleNewBreakpoint(msg: string, modifiedFlag: bool)
var nr = ''
if msg !~ 'fullname='
# a watch or a pending breakpoint does not have a file name
if msg =~ 'pending='
nr = substitute(msg, '.*number=\"\([0-9.]*\)\".*', '\1', '')
var target = substitute(msg, '.*pending=\"\([^"]*\)\".*', '\1', '')
echomsg $'Breakpoint {nr} ({target}) pending.'
endif
return
endif
for mm in SplitMsg(msg)
var fname = GetLocalFullname(mm)
if empty(fname)
continue
endif
var fremote = Local2RemotePath(fname)
nr = substitute(mm, '.*number="\([0-9.]*\)\".*', '\1', '')
if empty(nr)
return
endif
# If "nr" is 123 it becomes "123.0" and subid is "0".
# If "nr" is 123.4 it becomes "123.4.0" and subid is "4"; "0" is discarded.
var [id, subid; _] = map(split(nr .. '.0', '\.'), 'str2nr(v:val) + 0')
# var [id, subid; _] = map(split(nr .. '.0', '\.'), 'v:val + 0')
var enabled = substitute(mm, '.*enabled="\([yn]\)".*', '\1', '')
CreateBreakpoint(id, subid, enabled)
var entries = {}
var entry = {}
if has_key(breakpoints, id)
entries = breakpoints[id]
else
breakpoints[id] = entries
endif
if has_key(entries, subid)
entry = entries[subid]
else
entries[subid] = entry
endif
var lnum = str2nr(substitute(mm, '.*line="\([^"]*\)".*', '\1', ''))
entry['fname'] = fname
entry['lnum'] = lnum
var bploc = printf('%s:%d', fname, lnum)
if !has_key(breakpoint_locations, bploc)
breakpoint_locations[bploc] = []
endif
if breakpoint_locations[bploc]->index(id) == -1
# Make sure all ids are unique
breakpoint_locations[bploc] += [id]
endif
var posMsg = ''
if bufloaded(fremote)
PlaceSign(id, subid, entry)
posMsg = $' at line {lnum}.'
else
posMsg = $' in {fremote} at line {lnum}.'
endif
var actionTaken = ''
if !modifiedFlag
actionTaken = 'created'
elseif enabled == 'n'
actionTaken = 'disabled'
else
actionTaken = 'enabled'
endif
echom $'Breakpoint {nr} {actionTaken}{posMsg}'
endfor
enddef
def PlaceSign(id: number, subid: number, entry: dict<any>)
var nr = printf('%d.%d', id, subid)
var remote = Local2RemotePath(entry['fname'])
sign_place(Breakpoint2SignNumber(id, subid), 'TermDebug',
$'debugBreakpoint{nr}', remote,
{lnum: entry['lnum'], priority: 110})
entry['placed'] = 1
enddef
# Handle deleting a breakpoint
# Will remove the sign that shows the breakpoint
def HandleBreakpointDelete(msg: string)
var id = substitute(msg, '.*id="\([0-9]*\)\".*', '\1', '')
if empty(id)
return
endif
if has_key(breakpoints, id)
for [subid, entry] in items(breakpoints[id])
if has_key(entry, 'placed')
sign_unplace('TermDebug',
{id: Breakpoint2SignNumber(str2nr(id), str2nr(subid))})
remove(entry, 'placed')
endif
endfor
remove(breakpoints, id)
echomsg $'Breakpoint {id} cleared.'
endif
enddef
# Handle the debugged program starting to run.
# Will store the process ID in pid
def HandleProgramRun(msg: string)
var nr = str2nr(substitute(msg, '.*pid="\([0-9]*\)\".*', '\1', ''))
if nr == 0
return
endif
pid = nr
ch_log($'Detected process ID: {pid}')
enddef
# Handle a BufRead autocommand event: place any signs.
def BufRead()
var fname = expand('<afile>:p')
for [id, entries] in items(breakpoints)
for [subid, entry] in items(entries)
if entry['fname'] == fname
PlaceSign(str2nr(id), str2nr(subid), entry)
endif
endfor
endfor
enddef
# Handle a BufUnloaded autocommand event: unplace any signs.
def BufUnloaded()
var fname = expand('<afile>:p')
for [id, entries] in items(breakpoints)
for [subid, entry] in items(entries)
if entry['fname'] == fname
entry['placed'] = 0
endif
endfor
endfor
enddef
InitHighlight()
InitAutocmd()
# vim: sw=2 sts=2 et
|