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
|
// *************************************************************************
// gdbcontroller.cpp - description
// -------------------
// begin : Sun Aug 8 1999
// copyright : (C) 1999 by John Birch
// email : jbb@kdevelop.org
// **************************************************************************
//
// **************************************************************************
// * *
// * This program is free software; you can redistribute it and/or modify *
// * it under the terms of the GNU General Public License as published by *
// * the Free Software Foundation; either version 2 of the License, or *
// * (at your option) any later version. *
// * *
// **************************************************************************
#include "gdbcontroller.h"
#include "breakpoint.h"
#include "framestackwidget.h"
#include "gdbcommand.h"
#include "stty.h"
#include "variablewidget.h"
#include "domutil.h"
#include "settings.h"
#include <kapplication.h>
#include <kconfig.h>
#include <kdebug.h>
#include <kglobal.h>
#include <klocale.h>
#include <kmessagebox.h>
#include <kprocess.h>
#include <qdatetime.h>
#include <qfileinfo.h>
#include <qregexp.h>
#include <qstring.h>
#include <qdir.h>
#include <iostream>
#include <ctype.h>
#include <stdlib.h>
using namespace std;
// **************************************************************************
//
// Does all the communication between gdb and the kdevelop's debugger code.
// Significatant classes being used here are
//
// GDBParser - parses the "variable" data using the vartree and varitems
// VarTree - where the variable data will end up
// FrameStack - tracks the program frames and allows the user to switch between
// and therefore view the calling funtions and their data
// Breakpoint - Where and what to do with breakpoints.
// STTY - the tty that the _application_ will run on.
//
// Significant variables
// state_ - be very careful setting this. The controller is totally
// dependent on this reflecting the correct state. For instance,
// if the app is busy but we don't think so, then we lose control
// of the app. The only way to get out of these situations is to
// delete (stop) the controller.
// currentFrame_
// - Holds the frame number where and locals/variable information will
// go to
//
// Certain commands need to be "wrapped", so that the output gdb produces is
// of the form "\032data_id gdb output \032data_id"
// Then a very simple parse can extract this gdb output and hand it off
// to its' respective parser.
// To do this we set the prompt to be \032data_id before the command and then
// reset to \032i to indicate the "idle".
//
// Note that the following does not work because in certain situations
// gdb can get an error in performing the command and therefore will not
// output the final echo. Hence the data will be thrown away.
// (certain "info locals" will generate this error.
//
// queueCmd(new GDBCommand(QString().sprintf("define printlocal\n"
// "echo \32%c\ninfo locals\necho \32%c\n"
// "end",
// LOCALS, LOCALS)));
// (although replacing echo with "set prompt" appropriately could work Hmmmm.)
//
// Shared libraries and breakpoints
// ================================
// Shared libraries and breakpoints have a problem that has a reasonable solution.
// The problem is that gdb will not accept breakpoints in source that is in a
// shared library that has _not_ _yet_ been opened but will be opened via a
// dlopen.
//
// The solution is to get gdb to tell us when a shared library has been opened.
// This means that when the user sets a breakpoint, we flag this breakpoint as
// pending, try to set the breakpoint and if gdb says it succeeded then flag it
// as active. If gdb is not successful then we leave the breakpoint as pending.
//
// This is known as "lazy breakpoints"
//
// If the user has selected a file that is really outside the program and tried to
// set a breakpoint then this breakpoint will always be pending. I can't do
// anything about that, because it _might_ be in a shared library. If not they
// are either fools or just misguided...
//
// Now that the breakpoint is pending, we need gdb to tell us when a shared
// library has been loaded. We use "set stop-on 1". This breaks on _any_
// library event, and we just try to set the pending breakpoints. Once we're
// done, we then "continue"
//
// Now here's the problem with all this. If the user "step"s over code that
// contains a library dlopen then it'll just keep running, because we receive a
// break and hence end up doing a continue. In this situation, I do _not_
// do a continue but leave it stopped with the status line reflecting the
// stopped state. The frame stack is in the dl routine that caused the stop.
//
// There isn't any way around this, but I could allievate the problem somewhat
// by only doing a "set stop-on 1" when we have pending breakpoints.
//
// **************************************************************************
namespace GDBDebugger
{
// This is here so we can check for startup /shutdown problems
int debug_controllerExists = false;
GDBController::GDBController(VariableTree *varTree, FramestackWidget *frameStack, QDomDocument &projectDom)
: DbgController(),
frameStack_(frameStack),
varTree_(varTree),
currentFrame_(0),
viewedThread_(-1),
gdbOutputLen_(0),
gdbOutput_(new char[2048]),
holdingZone_(),
currentCmd_(0),
tty_(0),
badCore_(QString()),
state_(s_dbgNotStarted|s_appNotStarted|s_silent),
programHasExited_(false),
dom(projectDom),
config_breakOnLoadingLibrary_(true),
config_forceBPSet_(true),
config_displayStaticMembers_(false),
config_asmDemangle_(true),
config_dbgTerminal_(false),
config_gdbPath_(),
config_outputRadix_(10)
{
gdbSizeofBuf_ = sizeof(gdbOutput_);
configure();
cmdList_.setAutoDelete(true);
Q_ASSERT(! debug_controllerExists);
debug_controllerExists = true;
}
// **************************************************************************
// Deleting the controller involves shutting down gdb nicely.
// When were attached to a process, we must first detach so that the process
// can continue running as it was before being attached. gdb is quite slow to
// detach from a process, so we must process events within here to get a "clean"
// shutdown.
GDBController::~GDBController()
{
delete[] gdbOutput_;
debug_controllerExists = false;
}
// **************************************************************************
void GDBController::configure()
{
// A a configure.gdb script will prevent these from uncontrolled growth...
config_configGdbScript_ = DomUtil::readEntry(dom, "/kdevdebugger/general/configGdbScript").latin1();
config_runShellScript_ = DomUtil::readEntry(dom, "/kdevdebugger/general/runShellScript").latin1();
config_runGdbScript_ = DomUtil::readEntry(dom, "/kdevdebugger/general/runGdbScript").latin1();
// add macros for reading QStrings? or in configGdbScript?
config_forceBPSet_ = DomUtil::readBoolEntry(dom, "/kdevdebugger/general/allowforcedbpset", true);
config_dbgTerminal_ = DomUtil::readBoolEntry(dom, "/kdevdebugger/general/separatetty", false);
config_gdbPath_ = DomUtil::readEntry(dom, "/kdevdebugger/general/gdbpath");
bool old_displayStatic = config_displayStaticMembers_;
config_displayStaticMembers_ = DomUtil::readBoolEntry(dom, "/kdevdebugger/display/staticmembers",false);
bool old_asmDemangle = config_asmDemangle_;
config_asmDemangle_ = DomUtil::readBoolEntry(dom, "/kdevdebugger/display/demanglenames",true);
bool old_breakOnLoadingLibrary_ = config_breakOnLoadingLibrary_;
config_breakOnLoadingLibrary_ = DomUtil::readBoolEntry(dom, "/kdevdebugger/general/breakonloadinglibs",true);
int old_outputRadix = config_outputRadix_;
config_outputRadix_ = DomUtil::readIntEntry(dom, "/kdevdebugger/display/outputradix", 10);
varTree_->setRadix(config_outputRadix_);
if (( old_displayStatic != config_displayStaticMembers_ ||
old_asmDemangle != config_asmDemangle_ ||
old_breakOnLoadingLibrary_ != config_breakOnLoadingLibrary_ ||
old_outputRadix != config_outputRadix_) &&
dbgProcess_)
{
bool restart = false;
if (stateIsOn(s_appBusy))
{
pauseApp();
restart = true;
}
if (old_displayStatic != config_displayStaticMembers_)
{
if (config_displayStaticMembers_)
queueCmd(new GDBCommand("set print static-members on", NOTRUNCMD,
NOTINFOCMD));
else
queueCmd(new GDBCommand("set print static-members off", NOTRUNCMD,
NOTINFOCMD));
}
if (old_asmDemangle != config_asmDemangle_)
{
if (config_asmDemangle_)
queueCmd(new GDBCommand("set print asm-demangle on", NOTRUNCMD,
NOTINFOCMD));
else
queueCmd(new GDBCommand("set print asm-demangle off", NOTRUNCMD,
NOTINFOCMD));
}
if (old_breakOnLoadingLibrary_ != config_breakOnLoadingLibrary_)
{
if (config_breakOnLoadingLibrary_)
queueCmd(new GDBCommand("set stop-on 1", NOTRUNCMD, NOTINFOCMD));
else
queueCmd(new GDBCommand("set stop-on 0", NOTRUNCMD, NOTINFOCMD));
}
if (old_outputRadix != config_outputRadix_)
{
queueCmd(new GDBCommand(QCString().sprintf("set output-radix %d",
config_outputRadix_), NOTRUNCMD, NOTINFOCMD));
//rgruber: after changing the output radix, the watch- and the
//local-variables need to be refreshed
varTree_->findWatch()->requestWatchVars();
queueCmd(new GDBCommand("info args", NOTRUNCMD, INFOCMD, ARGS));
queueCmd(new GDBCommand("info local", NOTRUNCMD, INFOCMD, LOCALS));
}
if (!config_configGdbScript_.isEmpty())
queueCmd(new GDBCommand("source " + config_configGdbScript_, NOTRUNCMD, NOTINFOCMD, 0));
if (restart)
queueCmd(new GDBCommand("continue", RUNCMD, NOTINFOCMD, 0));
}
}
// **************************************************************************
// Fairly obvious that we'll add whatever command you give me to a queue
// If you tell me to, I'll put it at the head of the queue so it'll run ASAP
// Not quite so obvious though is that if we are going to run again. then any
// information requests become redundent and must be removed.
// We also try and run whatever command happens to be at the head of
// the queue.
void GDBController::queueCmd(DbgCommand *cmd, bool executeNext)
{
// We remove any info command or _run_ command if we are about to
// add a run command.
if (cmd->isARunCmd())
removeInfoRequests();
if (executeNext)
cmdList_.insert(0, cmd);
else
cmdList_.append (cmd);
executeCmd();
}
// **************************************************************************
// If the appliction can accept a command and we've got one waiting
// then send it.
// Commands can be just request for data (or change gdbs state in someway)
// or they can be "run" commands. If a command is sent to gdb our internal
// state will get updated.
void GDBController::executeCmd()
{
if (stateIsOn(s_dbgNotStarted|s_waitForWrite|s_appBusy|s_shuttingDown) || !dbgProcess_)
return;
if (!currentCmd_)
{
if (cmdList_.isEmpty())
return;
currentCmd_ = cmdList_.take(0);
}
if (!currentCmd_->moreToSend())
{
if (currentCmd_->expectReply())
return;
delete currentCmd_;
if (cmdList_.isEmpty())
{
currentCmd_ = 0;
return;
}
currentCmd_ = cmdList_.take(0);
}
Q_ASSERT(currentCmd_ && currentCmd_->moreToSend());
dbgProcess_->writeStdin(currentCmd_->cmdToSend().data(),
currentCmd_->cmdLength());
setStateOn(s_waitForWrite);
if (currentCmd_->isARunCmd())
{
setStateOn(s_appBusy);
kdDebug(9012) << "App is busy" << endl;
setStateOff(s_appNotStarted|s_programExited|s_silent);
}
QString prettyCmd = currentCmd_->cmdToSend();
prettyCmd.replace( QRegExp("set prompt \032.\n"), "" );
prettyCmd = "(gdb) " + prettyCmd;
emit gdbStdout( prettyCmd.latin1() );
if (!stateIsOn(s_silent))
emit dbgStatus ("", state_);
}
// **************************************************************************
void GDBController::destroyCmds()
{
if (currentCmd_)
{
delete currentCmd_;
currentCmd_ = 0;
}
while (!cmdList_.isEmpty())
delete cmdList_.take(0);
}
// **********************************************************************
void GDBController::removeInfoRequests()
{
int i = cmdList_.count();
while (i)
{
i--;
DbgCommand *cmd = cmdList_.at(i);
if (cmd->isAnInfoCmd() || cmd->isARunCmd())
delete cmdList_.take(i);
}
}
// **********************************************************************
// Pausing an app removes any pending run commands so that the app doesn't
// start again. If we want to be silent then we remove any pending info
// commands as well.
void GDBController::pauseApp()
{
setStateOn(s_silent);
int i = cmdList_.count();
while (i)
{
i--;
DbgCommand *cmd = cmdList_.at(i);
if ((stateIsOn(s_silent) && cmd->isAnInfoCmd()) || cmd->isARunCmd())
delete cmdList_.take(i);
}
if (dbgProcess_ && stateIsOn(s_appBusy))
dbgProcess_->kill(SIGINT);
}
// **********************************************************************
// Whenever the program pauses we need to refresh the data visible to
// the user. The reason we've stooped may be passed in to be emitted.
void GDBController::actOnProgramPause(const QString &msg)
{
// We're only stopping if we were running, of course.
if (stateIsOn(s_appBusy))
{
kdDebug(9012) << "App is paused" << endl;
setStateOff(s_appBusy);
if (stateIsOn(s_silent))
return;
emit dbgStatus (msg, state_);
// We're always at frame zero when the program stops
// and we must reset the active flag
viewedThread_ = -1;
currentFrame_ = 0;
// These two need to be actioned immediately. The order _is_ important
if (stateIsOn(s_viewThreads))
queueCmd(new GDBCommand("info thread", NOTRUNCMD, INFOCMD, INFOTHREAD), true);
queueCmd(new GDBCommand("backtrace", NOTRUNCMD, INFOCMD, BACKTRACE), true);
// The above should have changed viewedThread_, if we're in MT
// program.
emit currentFrame(currentFrame_, viewedThread_);
emit acceptPendingBPs();
}
}
// **************************************************************************
// There is no app anymore. This can be caused by program exiting
// an invalid program specified or ...
// gdb is still running though, but only the run command (may) make sense
// all other commands are disabled.
void GDBController::programNoApp(const QString &msg, bool msgBox)
{
state_ = (s_appNotStarted|s_programExited|(state_&(s_viewLocals|s_shuttingDown)));
destroyCmds();
// We're always at frame zero when the program stops
// and we must reset the active flag
viewedThread_ = -1;
currentFrame_ = 0;
// Delete the tty that waits for application output. Without
// this, KDevelop will be hanging, eating 100% CPU. Don't know
// why and don't understand this TTY stuff either.
delete tty_;
tty_ = 0;
frameStack_->clear();
if (msgBox)
KMessageBox::error(0, i18n("gdb message:\n")+msg);
emit dbgStatus (msg, state_);
}
// **************************************************************************
// Any data that isn't "wrapped", arrives here.
void GDBController::parseLine(char* buf)
{
Q_ASSERT(*buf != (char)BLOCK_START);
// Don't process blank lines
if (!*buf)
return;
if (strncmp(buf, "The program no longer exists", 28) == 0)
{
programNoApp(QString(buf), false);
programHasExited_ = true; /// \FIXME - a nasty switch
return;
}
if (strncmp(buf, "Prog", 4) == 0)
{
if ((strncmp(buf, "Program exited", 14) == 0))
{
kdDebug(9012) << "Parsed (exit) <" << QString(buf) << ">" << endl;
programNoApp(QString(buf), false);
programHasExited_ = true; /// \FIXME - a nasty switch
return;
}
if (strncmp(buf, "Program terminated", 18) == 0)
{
if (stateIsOn(s_core))
{
KMessageBox::information(0, QString(buf));
//destroyCmds();
actOnProgramPause(QString(buf));
}
else
{
programNoApp(QString(buf), false);
}
programHasExited_ = true; /// \FIXME - a nasty switch
return;
}
if (strncmp(buf, "Program received signal", 23) == 0)
{
// SIGINT is a "break into running program".
// We do this when the user set/mod/clears a breakpoint but the
// application is running.
// And the user does this to stop the program also.
if (strstr(buf+23, "SIGINT") && stateIsOn(s_silent))
{
// If this is explicit break into the program, show
// the source line
if (stateIsOn(s_explicitBreakInto))
{
setStateOff(s_silent|s_explicitBreakInto);
actOnProgramPause(QString(buf));
}
return;
}
// Whenever we have a signal raised then tell the user, but don't
// end the program as we want to allow the user to look at why the
// program has a signal that's caused the prog to stop.
// Continuing from SIG FPE/SEGV will cause a "Cannot ..." and
// that'll end the program.
KMessageBox::information(0, QString(buf));
actOnProgramPause(QString(buf));
return;
}
// All "Program" strings cause a refresh of the program state
// kdDebug(9012) << "Unparsed (START_Prog)<" << QString(buf) << ">" << endl;
actOnProgramPause(QString(buf));
return;
}
if (strncmp(buf, "Cann", 4) == 0)
{
// If you end the app and then restart when you have breakpoints set
// in a dynamically loaded library, gdb will halt because the set
// breakpoint is trying to access memory no longer used. The breakpoint
// must first be deleted, however, we want to retain the breakpoint for
// when the library gets loaded again.
/// @todo programHasExited_ isn't always set correctly,
/// but it (almost) doesn't matter.
if ( strncmp(buf, "Cannot insert breakpoint", 24)==0)
{
if (programHasExited_)
{
setStateOn(s_silent);
actOnProgramPause(QString());
int BPNo = atoi(buf+25);
if (BPNo)
{
emit unableToSetBPNow(BPNo);
queueCmd(new GDBCommand(
QCString().sprintf("delete %d", BPNo),
NOTRUNCMD, NOTINFOCMD));
queueCmd(new GDBCommand("info breakpoints", NOTRUNCMD,
NOTINFOCMD, BPLIST));
queueCmd(new GDBCommand("continue", RUNCMD, NOTINFOCMD, 0));
}
// kdDebug(9012) << "Parsed (START_cann)<" << buf << ">" << endl;
return;
}
// kdDebug(9012) << "Ignore (START_cann)<" << buf << ">" << endl;
// actOnProgramPause(QString());
return;
}
// When the program Seg faults (SEGV, FPE etc) and is then continued
// we get this for threaded programs. The program is now dead.
if ( strncmp(buf, "Cannot find user-level thread for LWP", 37)==0)
{
programNoApp(QString(buf), false);
programHasExited_ = true; /// \FIXME - a nasty switch
return;
}
// kdDebug(9012) << "Unparsed (START_cann)<" << buf << ">" << endl;
actOnProgramPause(QString(buf));
return;
}
if ( strncmp(buf, "[New Thread", 11)==0)
{
if (!stateIsOn(s_viewThreads))
{
setStateOn(s_viewThreads);
queueCmd(new GDBCommand("info thread", NOTRUNCMD, INFOCMD, INFOTHREAD),
true);
}
return;
}
// When the watchpoint variable goes out of scope the program stops
// and tells you. (sometimes)
if (strncmp(buf, "Watc", 4) == 0)
{
if ((strncmp(buf, "Watchpoint", 10)==0) &&
(strstr(buf, "deleted because the program has left the block")))
{
int BPNo = atoi(buf+11);
if (BPNo)
{
queueCmd(new GDBCommand(QCString().sprintf("delete %d",BPNo),
NOTRUNCMD, NOTINFOCMD));
}
actOnProgramPause(QString(buf));
}
queueCmd(new GDBCommand("info breakpoints",
NOTRUNCMD, NOTINFOCMD, BPLIST));
// kdDebug(9012) << "Parsed (START_Watc)<" << buf << ">" << endl;
return;
}
if (strncmp(buf, "Brea", 4) == 0 ||
strncmp(buf, "Hard", 4) == 0)
{
const Breakpoint* traced = 0;
if (strncmp(buf, "Brea", 4) == 0)
{
char* ptr = buf + strlen("Breakpoint ");
int id = atoi(ptr);
if (tracedBreakpoints_.contains(id))
{
traced = tracedBreakpoints_[id];
}
}
if (traced)
{
// Prevent showing current file position in UI.
setStateOn(s_silent);
// Marking this as "NOTINFOCMD". Otherwise, "continue" will
// immediately remove "printf" from the queue.
queueCmd(new GDBCommand(("printf " + traced->traceRealFormatString()).latin1(),
NOTRUNCMD, NOTINFOCMD, TRACING_PRINTF));
queueCmd(new GDBCommand("continue", RUNCMD, NOTINFOCMD, 0));
}
else
{
// Starts with "Brea" so assume "Breakpoint" and just get a full
// breakpoint list. Note that the state is unchanged.
// Much later: I forget why I did it like this :-o
queueCmd(new GDBCommand("info breakpoints",
NOTRUNCMD, NOTINFOCMD, BPLIST));
}
// kdDebug(9012) << "Parsed (BP) <" << buf << ">" << endl;
return;
}
if (strncmp(buf, "Temp", 4) == 0)
{
if (strncmp(buf, "Temporarily disabling shared library breakpoints:", 49) == 0)
{
kdDebug(9012) << "Parsed (START_Temp)<" << buf << ">" << endl;
return;
}
actOnProgramPause(QString(buf));
kdDebug(9012) << "Unparsed (START_Temp)<" << buf << ">" << endl;
return;
}
if (strncmp(buf, "Stop", 4) == 0)
{
if (strncmp(buf, "Stopped due to shared library event", 35) == 0)
{
// When it's a library event, we try and set any pending
// breakpoints, and that done, just continue onwards.
// HOWEVER, this only applies when we did a "run" or a
// "continue" otherwise the program will just keep going
// on a "step" type command, in this situation and that's
// REALLY wrong.
kdDebug(9012) << "Parsed (sh.lib) <" << buf << ">" << endl;
if (currentCmd_ && (currentCmd_->rawDbgCommand() == "run" ||
currentCmd_->rawDbgCommand() == "continue"))
{
setStateOn(s_silent); // be quiet, children!!
setStateOff(s_appBusy); // and stop that fiddling.
kdDebug(9012) << "App is paused (quietly)" << endl;
emit acceptPendingBPs(); // now go clean your rooms!
queueCmd(new GDBCommand("continue", RUNCMD, NOTINFOCMD, 0));
}
else
actOnProgramPause(QString(buf));
return;
}
// A stop line means we've stopped. We're not really expecting one
// of these unless it's a library event so just call actOnPause
actOnProgramPause(QString(buf));
kdDebug(9012) << "Unparsed (START_Stop)<" << buf << ">" << endl;
return;
}
if (strncmp(buf, "warn", 4) == 0)
{
if (strncmp(buf, "warning: core file may not match", 32) == 0 ||
strncmp(buf, "warning: exec file is newer", 27) == 0)
{
badCore_ = QString(buf);
}
actOnProgramPause(QString());
return;
}
if (strncmp(buf, "Core", 4) == 0)
{
kdDebug(9012) << "Parsed (Core)<" << buf << ">" << endl;
actOnProgramPause(buf);
if (!badCore_.isEmpty() &&
strncmp(buf, "Core was generated by", 21) == 0)
KMessageBox::error( 0,
i18n("gdb message:\n")+badCore_ + "\n" +
QString(buf)+"\n\n"+
i18n("The symbols gdb resolves may be suspect"),
i18n("Mismatched Core File"));
return;
}
if (strncmp(buf, "No symbol", 9) == 0 || // watch point failed
strncmp(buf, "Single", 6) == 0 || // Single stepping
strncmp(buf, "No source file named", 20) == 0 || // breakpoint not set
strncmp(buf, "[Switching to Thread", 20) == 0 || //
strncmp(buf, "[Thread debugging using", 23) == 0 ||
strncmp(buf, "Current language:", 17) == 0 ||
strncmp(buf, "Error while mapping shared library sections:", 44) == 0 ||
strncmp(buf, "Error while reading shared library symbols:", 43) == 0 ||
*buf == ':' )
{
// We don't change state, because this falls out when a run command
// starts rather than when a run command stops.
// Or.... it falls out with other messages that _are_ handled.
return;
}
// The first "step into" into a source file that is missing
// prints on stderr with a message that there's no source. Subsequent
// "step into"s just print line number at filename. Both start with a
// numeric char.
// Also a 0x message arrives everytime the program stops
// In the case where there is no source available and you were
// then this message should appear. Otherwise a program location
// message will arrive immediately after this and overwrite it.
if (isdigit(*buf))
{
// kdDebug(9012) << "Parsed (digit)<" << buf << ">" << endl;
parseProgramLocation(buf);
// actOnProgramPause(QString(buf));
return;
}
/// @todo - Only do this at start up
if (
strstr(buf, "not in executable format:") ||
strstr(buf, "No such file or directory.") || // does this fall out?
strstr(buf, i18n("No such file or directory.").local8Bit())|| // from system via gdb
strstr(buf, "is not a core dump:") ||
strncmp(buf, "ptrace: No such process.", 24)==0 ||
strncmp(buf, "ptrace: Operation not permitted.", 32)==0 ||
strncmp(buf, "No executable file specified.", 29)==0)
{
programNoApp(QString(buf), true);
kdDebug(9012) << "Bad file <" << buf << ">" << endl;
return;
}
// Any other line that falls out when we are busy is a stop. We
// might blank a previous message or display this message
if (stateIsOn(s_appBusy))
{
if ((strncmp(buf, "No ", 3)==0) && strstr(buf, "not meaningful"))
{
kdDebug(9012) << "Parsed (not meaningful)<" << buf << ">" << endl;
actOnProgramPause(QString(buf));
return;
}
kdDebug(9012) << "Unparsed (default - busy)<" << buf << ">" << endl;
actOnProgramPause(QString());
return;
}
// All other lines are ignored
kdDebug(9012) << "Unparsed (default - not busy)<" << buf << ">" << endl;
return;
}
// **************************************************************************
// The program location falls out of gdb, preceeded by \032\032. We treat
// it as a wrapped command (even though it doesn't have a trailing \032\032.
// The data gets parsed here and emitted in its component parts.
void GDBController::parseProgramLocation(char *buf)
{
if (stateIsOn(s_silent))
{
// It's a silent stop. This means that the queue will have a "continue"
// in it somewhere. The only action needed is to reset the state so
// that queue'd items can be sent to gdb
kdDebug(9012) << "App is paused <" << buf << ">" << endl;
setStateOff(s_appBusy);
return;
}
// "/opt/qt/src/widgets/qlistview.cpp:1558:42771:beg:0x401b22f2"
QRegExp regExp1("(.*):(\\d+):\\d+:[a-z]+:(0x[abcdef0-9]+)$");
regExp1.setMinimal(true);
if ( regExp1.search(buf, 0) >= 0 )
{
actOnProgramPause(QString());
emit showStepInSource( regExp1.cap(1),
regExp1.cap(2).toInt(),
regExp1.cap(3) );
return;
}
if (stateIsOn(s_appBusy))
actOnProgramPause(i18n("No source: %1").arg(QString(buf)));
else
emit dbgStatus (i18n("No source: %1").arg(QString(buf)), state_);
// This extracts the address the program has stopped at as
// that is the only piece of info in this line we might use.
QRegExp regExp3("^(0x[abcdef0-9]+)");
if (regExp3.search(buf, 0) >= 0)
emit showStepInSource(QString(),
-1,
regExp3.cap(1));
else
emit showStepInSource("", -1, "");
}
// **************************************************************************
// parsing the backtrace list will cause the vartree to be refreshed
void GDBController::parseBacktraceList(char *buf)
{
frameStack_->parseGDBBacktraceList(buf);
}
// **************************************************************************
void GDBController::parseThreadList(char *buf)
{
frameStack_->parseGDBThreadList(buf);
viewedThread_ = frameStack_->viewedThread();
}
// **************************************************************************
// When a breakpoint has been set, gdb responds with some data about the
// new breakpoint. We just inform the breakpoint system about this.
void GDBController::parseBreakpointSet(char *buf)
{
if (GDBSetBreakpointCommand *BPCmd = dynamic_cast<GDBSetBreakpointCommand*>(currentCmd_))
{
const Breakpoint* bp = BPCmd->breakpoint();
// ... except in this case :-) A -1 key tells us that this is
// a special internal breakpoint, and we shouldn't do anything
// with it. Currently there are _no_ internal breakpoints.
if (bp->key() != -1)
{
emit rawGDBBreakpointSet(buf, bp->key());
// Now, gdb id of breakpoint should be set. If it's
// tracepoint, remember it.
if (bp->tracingEnabled())
tracedBreakpoints_[bp->dbgId()] = bp;
}
}
}
// **************************************************************************
// Extra data needed by an item was requested. Here's the result.
void GDBController::parseRequestedData(char *buf)
{
if (GDBItemCommand *gdbItemCommand = dynamic_cast<GDBItemCommand*> (currentCmd_))
{
// Fish out the item from the command and let it deal with the data
VarItem *item = gdbItemCommand->getItem();
varTree_->viewport()->setUpdatesEnabled(false);
item->updateValue(buf);
item->trim();
varTree_->viewport()->setUpdatesEnabled(true);
varTree_->repaint();
}
}
// **************************************************************************
// jw
void GDBController::parseWhatis(char *buf)
{
if (GDBItemCommand *gdbItemCommand = dynamic_cast<GDBItemCommand*> (currentCmd_))
{
// Fish out the item from the command and let it deal with the data
VarItem *item = gdbItemCommand->getItem();
varTree_->viewport()->setUpdatesEnabled(false);
item->updateType(buf);
// item->trim();
varTree_->viewport()->setUpdatesEnabled(true);
varTree_->repaint();
}
}
// **************************************************************************
// If the user gives us a bad program, catch that here.
//void GDBController::parseFileStart(char *buf)
//{
// if (strstr(buf, "not in executable format:") ||
// strstr(buf, "No such file or directory."))
// {
// programNoApp(QString(buf), true);
// kdDebug(9012) << "Bad file start <" << buf << ">" << endl;
// }
//}
// **************************************************************************
// Select a different frame to view. We need to get and (maybe) display
// where we are in the program source.
void GDBController::parseFrameSelected(char *buf)
{
char lookup[3] = {BLOCK_START, SRC_POSITION, 0};
if (char *start = strstr(buf, lookup))
{
if (char *end = strchr(start, '\n'))
*end = 0; // clobber the new line
parseProgramLocation(start+2);
return;
}
if (!stateIsOn(s_silent))
{
emit showStepInSource("", -1, "");
emit dbgStatus (i18n("No source: %1").arg(QString(buf)), state_);
}
}
// **************************************************************************
// This is called twice per program stop. First to process the arguments
// to a fn and then again to process the locals.
// Once the locals have been process we trim the tree of items that are
// inactive.
void GDBController::parseLocals(char type, char *buf)
{
if (type == (char) ARGS)
{
emit parametersReady(buf);
}
else
{
emit localsReady(buf);
}
}
// **************************************************************************
// We are given a block of data that starts with \032. We now try to find a
// matching end block and if we can we shoot the data of to the appropriate
// parser for that type of data.
char *GDBController::parseCmdBlock(char *buf)
{
Q_ASSERT(*buf == (char)BLOCK_START);
// kdDebug(9012) << "parseCmdBlock=<" << buf << ">" << endl;
char *end = 0;
switch (*(buf+1))
{
case IDLE:
// remove the idle tag because they often don't come in pairs
return buf+1;
case SRC_POSITION:
// file and line number info that gdb just drops out starts with a
// \32 but ends with a \n. Could treat this as a line rather than
// a block. Ah well!
if((end = strchr(buf, '\n')))
*end = 0; // Make a null terminated c-string
break;
default:
{
// match the start block with the end block if we can.
char lookup[3] = {BLOCK_START, *(buf+1), 0};
if ((end = strstr(buf+2, lookup)))
{
*end = 0; // Make a null terminated c-string
end++; // The real end!
}
break;
}
}
if (end)
{
char cmdType = *(buf+1);
buf +=2;
switch (cmdType)
{
case FRAME:
parseFrameSelected (buf);
break;
case SET_BREAKPT:
parseBreakpointSet (buf);
break;
case SRC_POSITION:
parseProgramLocation (buf);
break;
case ARGS:
case LOCALS:
parseLocals (cmdType, buf);
break;
case DATAREQUEST:
parseRequestedData (buf);
break;
case WHATIS:
parseWhatis (buf);
break;
case BPLIST:
emit rawGDBBreakpointList (buf);
break;
case BACKTRACE:
parseBacktraceList (buf);
break;
case INFOTHREAD:
parseThreadList (buf);
break;
case DISASSEMBLE:
emit rawGDBDisassemble (buf);
break;
case MEMDUMP:
emit rawGDBMemoryDump (buf);
break;
case REGISTERS:
emit rawGDBRegisters (buf);
break;
case LIBRARIES:
emit rawGDBLibraries (buf);
break;
case TRACING_PRINTF:
emit tracingOutput (buf);
break;
// case DETACH:
// setStateOff(s_attached);
// break;
// case FILE_START:
// parseFileStart (buf);
// break;
default:
break;
}
// Once we've dealt with the data, we can remove the current command if
// it is a match for this data.
if (currentCmd_ && currentCmd_->typeMatch(cmdType))
{
delete currentCmd_;
currentCmd_ = 0;
}
}
return end;
}
// **************************************************************************
// Deals with data that just falls out of gdb. Basically waits for a line
// terminator to arrive and then gives it to the line parser.
char *GDBController::parseOther(char *buf)
{
// Could be the start of a block that isn't terminated yet
Q_ASSERT (*buf != (char)BLOCK_START);
// kdDebug(9012) << "parseOther=<" << buf << ">" << endl;
char *end = buf;
while (*end)
{
if (*end=='(')
{ // quick test before a big test
// This falls out of gdb without a \n terminator. Sometimes
// a "Stopped due" message will fall out imediately behind this
// creating a "line". Soemtimes it doesn'y. So we need to check
// for and remove them first then continue as if it wasn't there.
// And there can be more that one in a row!!!!!
// Isn't this bloody awful...
if (strncmp(end, "(no debugging symbols found)...", 31) == 0)
{
// emit dbgStatus (QCString(end, 32), state_);
return end+30; // The last char parsed
}
}
if (*end=='\n')
{
// Join continuation lines together by removing the '\n'
if ((end-buf > 2) && (*(end-1) == ' ' && *(end-2) == ',') || (*(end-1) == ':'))
*end = ' ';
else
{
*end = 0; // make a null terminated c-string
parseLine(buf);
return end;
}
}
// Remove stuff like "junk\32i".
// This only removes "junk" and leaves "\32i"
if (*end == (char)BLOCK_START)
return end-1;
end++;
}
return 0;
}
// **************************************************************************
char *GDBController::parse(char *buf)
{
char *unparsed = buf;
while (*unparsed)
{
char *parsed;
if (*unparsed == (char)BLOCK_START)
parsed = parseCmdBlock(unparsed);
else
parsed = parseOther(unparsed);
if (!parsed)
break;
// Move one beyond the end of the parsed data
unparsed = parsed+1;
}
return (unparsed==buf) ? 0 : unparsed;
}
// **************************************************************************
void GDBController::setBreakpoint(const QCString &BPSetCmd,
const Breakpoint* bp)
{
queueCmd(new GDBSetBreakpointCommand(BPSetCmd, bp));
}
// **************************************************************************
void GDBController::clearBreakpoint(const QCString &BPClearCmd)
{
queueCmd(new GDBCommand(BPClearCmd, NOTRUNCMD, NOTINFOCMD));
// Note: this is NOT an info command, because gdb doesn't explictly tell
// us that the breakpoint has been deleted, so if we don't have it the
// BP list doesn't get updated.
queueCmd(new GDBCommand("info breakpoints", NOTRUNCMD, NOTINFOCMD, BPLIST));
}
// **************************************************************************
void GDBController::modifyBreakpoint( const Breakpoint& BP )
{
Q_ASSERT(BP.isActionModify());
if (BP.dbgId()>0)
{
if (BP.changedCondition())
queueCmd(new GDBCommand(QCString().sprintf("condition %d %s",
BP.dbgId(), BP.conditional().latin1()),
NOTRUNCMD, NOTINFOCMD));
if (BP.changedIgnoreCount())
queueCmd(new GDBCommand(QCString().sprintf("ignore %d %d",
BP.dbgId(), BP.ignoreCount()),
NOTRUNCMD, NOTINFOCMD));
if (BP.changedEnable())
queueCmd(new GDBCommand(QCString().sprintf("%s %d",
BP.isEnabled() ? "enable" : "disable",
BP.dbgId()), NOTRUNCMD, NOTINFOCMD));
if (BP.changedTracing())
if (BP.tracingEnabled())
tracedBreakpoints_[BP.dbgId()] = &BP;
else
tracedBreakpoints_.remove(BP.dbgId());
// BP.setDbgProcessing(true);
// Note: this is NOT an info command, because gdb doesn't explictly tell
// us that the breakpoint has been deleted, so if we don't have it the
// BP list doesn't get updated.
queueCmd(new GDBCommand("info breakpoints", NOTRUNCMD, NOTINFOCMD,
BPLIST));
}
}
// **************************************************************************
// SLOTS
// *****
// For most of these slots data can only be sent to gdb when it
// isn't busy and it is running.
// **************************************************************************
void GDBController::slotStart(const QString& shell, const DomUtil::PairList& run_envvars, const QString& run_directory, const QString &application, const QString& run_arguments)
{
badCore_ = QString();
Q_ASSERT (!dbgProcess_ && !tty_);
// tty_ = new STTY(config_dbgTerminal_, "konsole");
tty_ = new STTY(config_dbgTerminal_, Settings::terminalEmulatorName( *kapp->config() ));
if (!config_dbgTerminal_)
{
connect( tty_, SIGNAL(OutOutput(const char*)), SIGNAL(ttyStdout(const char*)) );
connect( tty_, SIGNAL(ErrOutput(const char*)), SIGNAL(ttyStderr(const char*)) );
}
QString tty(tty_->getSlave());
if (tty.isEmpty())
{
KMessageBox::error(0, i18n("GDB cannot use the tty* or pty* devices.\n"
"Check the settings on /dev/tty* and /dev/pty*\n"
"As root you may need to \"chmod ug+rw\" tty* and pty* devices "
"and/or add the user to the tty group using "
"\"usermod -G tty username\"."));
delete tty_;
tty_ = 0;
return;
}
dbgProcess_ = new KProcess;
connect( dbgProcess_, SIGNAL(receivedStdout(KProcess *, char *, int)),
this, SLOT(slotDbgStdout(KProcess *, char *, int)) );
connect( dbgProcess_, SIGNAL(receivedStderr(KProcess *, char *, int)),
this, SLOT(slotDbgStderr(KProcess *, char *, int)) );
connect( dbgProcess_, SIGNAL(wroteStdin(KProcess *)),
this, SLOT(slotDbgWroteStdin(KProcess *)) );
connect( dbgProcess_, SIGNAL(processExited(KProcess*)),
this, SLOT(slotDbgProcessExited(KProcess*)) );
application_ = application;
QString gdb = "gdb";
// Prepend path to gdb, if needed. Using QDir,
// path can either end with slash, or not.
if (!config_gdbPath_.isEmpty())
{
QDir gdb_path(config_gdbPath_);
gdb = gdb_path.filePath("gdb");
}
if (!shell.isEmpty())
{
*dbgProcess_ << "/bin/sh" << "-c" << shell + " " + gdb
+ " " + application + " -fullname -quiet";
emit gdbStdout(QString( "/bin/sh -c " + shell + " " + gdb
+ " " + application + " -fullname -quiet" ).latin1());
}
else
{
*dbgProcess_ << gdb << application
<< "-fullname" << "-quiet";
emit gdbStdout(QString( gdb + " " + application +
" -fullname -quiet" ).latin1());
}
if (!dbgProcess_->start( KProcess::NotifyOnExit,
KProcess::Communication(KProcess::All)))
{
KMessageBox::error(
0,
i18n("<b>Could not start debugger.</b>"
"<p>Could not run '%1'. "
"Make sure that the path name is specified correctly."
).arg(dbgProcess_->args()[0]),
i18n("Could not start debugger"));
delete tty_;
tty_ = 0;
return;
}
setStateOff(s_dbgNotStarted);
emit dbgStatus ("", state_);
// Initialise gdb. At this stage gdb is sitting wondering what to do,
// and to whom. Organise a few things, then set up the tty for the application,
// and the application itself
queueCmd(new GDBCommand("set edit off", NOTRUNCMD, NOTINFOCMD, 0));
queueCmd(new GDBCommand("set confirm off", NOTRUNCMD, NOTINFOCMD));
if (config_displayStaticMembers_)
queueCmd(new GDBCommand("set print static-members on", NOTRUNCMD,
NOTINFOCMD));
else
queueCmd(new GDBCommand("set print static-members off", NOTRUNCMD, NOTINFOCMD));
queueCmd(new GDBCommand(QCString("tty ")+tty.latin1(), NOTRUNCMD, NOTINFOCMD));
// This makes gdb pump a variable out on one line.
queueCmd(new GDBCommand("set width 0", NOTRUNCMD, NOTINFOCMD));
queueCmd(new GDBCommand("set height 0", NOTRUNCMD, NOTINFOCMD));
// Get gdb to notify us of shared library events. This allows us to
// set breakpoints in shared libraries, that the user has set previously.
// The 1 doesn't mean anything specific, just any non-zero value to
// satisfy gdb!
// An alternative to this would be catch load, catch unload, but they don't work!
if (config_breakOnLoadingLibrary_)
queueCmd(new GDBCommand("set stop-on 1", NOTRUNCMD, NOTINFOCMD));
else
queueCmd(new GDBCommand("set stop-on 0", NOTRUNCMD, NOTINFOCMD));
queueCmd(new GDBCommand("handle SIG32 pass nostop noprint", NOTRUNCMD,
NOTINFOCMD));
queueCmd(new GDBCommand("handle SIG41 pass nostop noprint", NOTRUNCMD,
NOTINFOCMD));
queueCmd(new GDBCommand("handle SIG42 pass nostop noprint", NOTRUNCMD,
NOTINFOCMD));
queueCmd(new GDBCommand("handle SIG43 pass nostop noprint", NOTRUNCMD,
NOTINFOCMD));
// Print some nicer names in disassembly output. Although for an assembler
// person this may actually be wrong and the mangled name could be better.
if (config_asmDemangle_)
queueCmd(new GDBCommand("set print asm-demangle on", NOTRUNCMD, NOTINFOCMD));
else
queueCmd(new GDBCommand("set print asm-demangle off", NOTRUNCMD, NOTINFOCMD));
// make sure output radix is always set to users view.
queueCmd(new GDBCommand(QCString().sprintf("set output-radix %d", config_outputRadix_), NOTRUNCMD, NOTINFOCMD));
// Change the "Working directory" to the correct one
QCString tmp( "cd " + QFile::encodeName( run_directory ));
queueCmd(new GDBCommand(tmp, NOTRUNCMD, NOTINFOCMD));
// Set the run arguments
if (!run_arguments.isEmpty())
queueCmd(new GDBCommand(QCString("set args ") + run_arguments.latin1(), NOTRUNCMD, NOTINFOCMD));
// Get the run environment variables pairs into the environstr string
// in the form of: "ENV_VARIABLE=ENV_VALUE" and send to gdb using the
// "set enviroment" command
// Note that we quote the variable value due to the possibility of
// embedded spaces
QString environstr;
DomUtil::PairList::ConstIterator it;
for (it = run_envvars.begin(); it != run_envvars.end(); ++it)
{
environstr = "set environment ";
environstr += (*it).first;
environstr += "=";
environstr += (*it).second;
queueCmd(new GDBCommand(environstr.latin1(), NOTRUNCMD, NOTINFOCMD));
}
// Organise any breakpoints.
emit acceptPendingBPs();
// Now gdb has been started and the application has been loaded,
// BUT the app hasn't been started yet! A run command is about to be issued
// by whoever is controlling us. Or we might be asked to load a core, or
// attach to a running process.
}
// **************************************************************************
void GDBController::slotStopDebugger()
{
kdDebug(9012) << "GDBController::slotStopDebugger() called" << endl;
if (stateIsOn(s_shuttingDown) || !dbgProcess_)
return;
setStateOn(s_shuttingDown|s_silent);
kdDebug(9012) << "GDBController::slotStopDebugger() executing" << endl;
destroyCmds();
QTime start;
QTime now;
// Get gdb's attention if it's busy. We need gdb to be at the
// command line so we can stop it.
if (stateIsOn(s_appBusy))
{
kdDebug(9012) << "gdb busy on shutdown - stopping gdb (SIGINT)" << endl;
dbgProcess_->kill(SIGINT);
start = QTime::currentTime();
while (-1)
{
kapp->processEvents(20);
now = QTime::currentTime();
if (!stateIsOn(s_appBusy) || start.msecsTo( now ) > 2000)
break;
}
}
// If the app is attached then we release it here. This doesn't stop
// the app running.
if (stateIsOn(s_attached))
{
kdDebug(9012) << "App is busy" << endl;
setStateOn(s_appBusy);
const char *detach="detach\n";
if (!dbgProcess_->writeStdin(detach, strlen(detach)))
kdDebug(9012) << "failed to write 'detach' to gdb" << endl;
emit gdbStdout("(gdb) detach");
start = QTime::currentTime();
while (-1)
{
kapp->processEvents(20);
now = QTime::currentTime();
if (!stateIsOn(s_attached) || start.msecsTo( now ) > 2000)
break;
}
}
// Now try to stop gdb running.
kdDebug(9012) << "App is busy" << endl;
setStateOn(s_appBusy);
const char *quit="quit\n";
if (!dbgProcess_->writeStdin(quit, strlen(quit)))
kdDebug(9012) << "failed to write 'quit' to gdb" << endl;
emit gdbStdout("(gdb) quit");
start = QTime::currentTime();
while (-1)
{
kapp->processEvents(20);
now = QTime::currentTime();
if (stateIsOn(s_programExited) || start.msecsTo( now ) > 2000)
break;
}
// We cannot wait forever.
if (!stateIsOn(s_programExited))
{
kdDebug(9012) << "gdb not shutdown - killing" << endl;
dbgProcess_->kill(SIGKILL);
}
delete dbgProcess_; dbgProcess_ = 0;
delete tty_; tty_ = 0;
// The gdb output buffer might contain start marker of some
// previously issued command that crashed gdb (so there's no end marker)
// If we don't clear this, then after restart, we'll be trying to search
// for the end marker of the command issued in previous gdb session,
// and never succeed.
gdbOutputLen_ = 0;
state_ = s_dbgNotStarted | s_appNotStarted | s_silent;
emit dbgStatus (i18n("Debugger stopped"), state_);
}
// **************************************************************************
void GDBController::slotCoreFile(const QString &coreFile)
{
setStateOff(s_silent);
setStateOn(s_core);
queueCmd(new GDBCommand(QCString("core ") + coreFile.latin1(), NOTRUNCMD,
NOTINFOCMD, 0));
// We don't know at this point whether this executable is a threaded
// program. Maybe the backtrace command will force gdb to tell us by
// sending us "[New Thread" lines. At that point we issue the "info thread"
// command
queueCmd(new GDBCommand("backtrace", NOTRUNCMD, INFOCMD, BACKTRACE));
if (stateIsOn(s_viewLocals))
{
queueCmd(new GDBCommand("info args", NOTRUNCMD, INFOCMD, ARGS));
queueCmd(new GDBCommand("info local", NOTRUNCMD, INFOCMD, LOCALS));
}
}
// **************************************************************************
void GDBController::slotAttachTo(int pid)
{
setStateOff(s_appNotStarted|s_programExited|s_silent);
setStateOn(s_attached);
queueCmd(new GDBCommand(
QCString().sprintf("attach %d", pid), NOTRUNCMD, NOTINFOCMD, 0));
// We don't know at this point whether this executable is a threaded
// program. Msybe the backtrace command will force gdb to tell us by
// sending us "[New Thread" lines. At that point we issue the "info thread"
// command
queueCmd(new GDBCommand("backtrace", NOTRUNCMD, INFOCMD, BACKTRACE));
if (stateIsOn(s_viewLocals))
{
queueCmd(new GDBCommand("info args", NOTRUNCMD, INFOCMD, ARGS));
queueCmd(new GDBCommand("info local", NOTRUNCMD, INFOCMD, LOCALS));
}
}
// **************************************************************************
void GDBController::slotRun()
{
if (stateIsOn(s_appBusy|s_dbgNotStarted|s_shuttingDown))
return;
if (stateIsOn(s_appNotStarted)) {
if (!config_runShellScript_.isEmpty()) {
// Special for remote debug...
QCString tty(tty_->getSlave().latin1());
QCString options = QCString(">") + tty + QCString(" 2>&1 <") + tty;
KProcess *proc = new KProcess;
*proc << "sh" << "-c";
*proc << config_runShellScript_ +
" " + application_.latin1() + options;
proc->start(KProcess::DontCare);
}
if (!config_runGdbScript_.isEmpty()) {// gdb script at run is requested
// Race notice: wait for the remote gdbserver/executable
// - but that might be an issue for this script to handle...
// Future: the shell script should be able to pass info (like pid)
// to the gdb script...
queueCmd(new GDBCommand("source " + config_runGdbScript_,
RUNCMD, NOTINFOCMD, 0));
// Note: script could contain "run" or "continue"
}
else {
// The program is run locally. Need the make sure it's executable,
// just in case.
QFileInfo app(application_);
if (app.isExecutable())
{
queueCmd(new GDBCommand("run", RUNCMD, NOTINFOCMD, 0));
}
else
{
KMessageBox::error(
0,
i18n("<b>Could not run application '%1'.</b>"
"<p>The application does not have the executable bit set. "
"Try rebuilding the project, or change permissions "
"manually."
).arg(app.fileName()),
i18n("Could not run application"));
}
}
}
else {
queueCmd(new GDBCommand("continue", RUNCMD, NOTINFOCMD, 0));
}
}
void GDBController::slotRestart()
{
if (stateIsOn(s_dbgNotStarted|s_shuttingDown))
return;
if (stateIsOn(s_appBusy))
{
pauseApp();
}
queueCmd(new GDBCommand("run", RUNCMD, NOTINFOCMD, 0));
}
// **************************************************************************
void GDBController::slotRunUntil(const QString &fileName, int lineNum)
{
if (stateIsOn(s_appBusy|s_dbgNotStarted|s_shuttingDown))
return;
if (fileName.isEmpty())
queueCmd(new GDBCommand( QCString().sprintf("until %d", lineNum),
RUNCMD, NOTINFOCMD, 0));
else
queueCmd(new GDBCommand(
QCString().sprintf("until %s:%d", fileName.latin1(), lineNum),
RUNCMD, NOTINFOCMD, 0));
}
// **************************************************************************
void GDBController::slotJumpTo(const QString &fileName, int lineNum)
{
if (stateIsOn(s_appBusy|s_dbgNotStarted|s_shuttingDown))
return;
if (!fileName.isEmpty()) {
queueCmd(new GDBCommand(QCString().sprintf("tbreak %s:%d", fileName.latin1(), lineNum), NOTRUNCMD, NOTINFOCMD, 0));
queueCmd(new GDBCommand(QCString().sprintf("jump %s:%d", fileName.latin1(), lineNum), RUNCMD, NOTINFOCMD, 0));
}
}
// **************************************************************************
void GDBController::slotStepInto()
{
if (stateIsOn(s_appBusy|s_appNotStarted|s_shuttingDown))
return;
queueCmd(new GDBCommand("step", RUNCMD, NOTINFOCMD, 0));
}
// **************************************************************************
void GDBController::slotStepIntoIns()
{
if (stateIsOn(s_appBusy|s_appNotStarted|s_shuttingDown))
return;
queueCmd(new GDBCommand("stepi", RUNCMD, NOTINFOCMD, 0));
}
// **************************************************************************
void GDBController::slotStepOver()
{
if (stateIsOn(s_appBusy|s_appNotStarted|s_shuttingDown))
return;
queueCmd(new GDBCommand("next", RUNCMD, NOTINFOCMD, 0));
}
// **************************************************************************
void GDBController::slotStepOverIns()
{
if (stateIsOn(s_appBusy|s_appNotStarted|s_shuttingDown))
return;
queueCmd(new GDBCommand("nexti", RUNCMD, NOTINFOCMD, 0));
}
// **************************************************************************
void GDBController::slotStepOutOff()
{
if (stateIsOn(s_appBusy|s_appNotStarted|s_shuttingDown))
return;
queueCmd(new GDBCommand("finish", RUNCMD, NOTINFOCMD, 0));
}
// **************************************************************************
// Only interrupt a running program.
void GDBController::slotBreakInto()
{
setStateOn(s_explicitBreakInto);
pauseApp();
}
// **************************************************************************
// See what, if anything needs doing to this breakpoint.
void GDBController::slotBPState( const Breakpoint& BP )
{
// Are we in a position to do anything to this breakpoint?
if (stateIsOn(s_dbgNotStarted|s_shuttingDown) || !BP.isPending() ||
BP.isActionDie())
return;
// We need this flag so that we can continue execution. I did use
// the s_silent state flag but it can be set prior to this method being
// called, hence is invalid.
bool restart = false;
if (stateIsOn(s_appBusy))
{
if (!config_forceBPSet_)
return;
// When forcing breakpoints to be set/unset, interrupt a running app
// and change the state.
pauseApp();
restart = true;
}
if (BP.isActionAdd())
{
setBreakpoint(BP.dbgSetCommand().latin1(), &BP);
// BP.setDbgProcessing(true);
}
else
{
if (BP.isActionClear())
{
clearBreakpoint(BP.dbgRemoveCommand().latin1());
// BP.setDbgProcessing(true);
tracedBreakpoints_.remove(BP.dbgId());
}
else
{
if (BP.isActionModify())
{
modifyBreakpoint(BP); // Note: DbgProcessing gets set in modify fn
}
}
}
if (restart)
queueCmd(new GDBCommand("continue", RUNCMD, NOTINFOCMD, 0));
}
// **************************************************************************
void GDBController::slotClearAllBreakpoints()
{
// Are we in a position to do anything to this breakpoint?
if (stateIsOn(s_dbgNotStarted|s_shuttingDown))
return;
bool restart = false;
if (stateIsOn(s_appBusy))
{
if (!config_forceBPSet_)
return;
// When forcing breakpoints to be set/unset, interrupt a running app
// and change the state.
pauseApp();
restart = true;
}
queueCmd(new GDBCommand("delete", NOTRUNCMD, NOTINFOCMD));
// Note: this is NOT an info command, because gdb doesn't explictly tell
// us that the breakpoint has been deleted, so if we don't have it the
// BP list doesn't get updated.
queueCmd(new GDBCommand("info breakpoints", NOTRUNCMD, NOTINFOCMD, BPLIST));
if (restart)
queueCmd(new GDBCommand("continue", RUNCMD, NOTINFOCMD, 0));
}
// **************************************************************************
void GDBController::slotDisassemble(const QString &start, const QString &end)
{
if (stateIsOn(s_appBusy|s_dbgNotStarted|s_shuttingDown))
return;
QCString cmd = QCString().sprintf("disassemble %s %s", start.latin1(), end.latin1());
queueCmd(new GDBCommand(cmd, NOTRUNCMD, INFOCMD, DISASSEMBLE));
}
// **************************************************************************
void GDBController::slotMemoryDump(const QString &address, const QString &amount)
{
if (stateIsOn(s_appBusy|s_dbgNotStarted|s_shuttingDown))
return;
QCString cmd = QCString().sprintf("x/%sb %s", amount.latin1(),
address.latin1());
queueCmd(new GDBCommand(cmd, NOTRUNCMD, INFOCMD, MEMDUMP));
}
// **************************************************************************
void GDBController::slotRegisters()
{
if (stateIsOn(s_appBusy|s_dbgNotStarted|s_shuttingDown))
return;
queueCmd(new GDBCommand("info all-registers", NOTRUNCMD, INFOCMD, REGISTERS));
}
// **************************************************************************
void GDBController::slotLibraries()
{
if (stateIsOn(s_appBusy|s_dbgNotStarted|s_shuttingDown))
return;
queueCmd(new GDBCommand("info sharedlibrary", NOTRUNCMD, INFOCMD, LIBRARIES));
}
// **************************************************************************
void GDBController::slotSelectFrame(int frameNo, int threadNo, bool needFrames)
{
if (stateIsOn(s_appBusy|s_dbgNotStarted|s_shuttingDown))
return;
// Get gdb to switch the frame stack on a frame change.
// This is an info command because _any_ run command will set the system
// back to frame 0 regardless, so being removed with a run command is the
// best thing that could happen here.
// _Always_ switch frames (even if we're the same frame so that a program
// position will be generated by gdb
if (threadNo != -1)
{
// We don't switch threads if we on this thread. The -1 check is
// because the first time after a stop we're actually on this thread
// but the thread number had been reset to -1.
if (viewedThread_ != -1)
{
if (viewedThread_ != threadNo)
queueCmd(new GDBCommand(QCString().sprintf("thread %d",
threadNo), NOTRUNCMD, INFOCMD, SWITCHTHREAD));
}
}
queueCmd(new GDBCommand(QCString().sprintf("frame %d",
frameNo), NOTRUNCMD, INFOCMD, FRAME));
if (needFrames)
queueCmd(new GDBCommand("backtrace", NOTRUNCMD, INFOCMD,
BACKTRACE));
// Hold on to this thread/frame so that we know where to put the local
// variables if generated.
viewedThread_ = threadNo;
currentFrame_ = frameNo;
emit currentFrame(frameNo, threadNo);
}
/** Produces backtrace for the specified thread, or for main
thread if threadNo is -1. Does not change the current thread or
the current thread.
*/
void GDBController::slotProduceBacktrace(int threadNo)
{
QString command;
if (threadNo != -1)
{
command = QString("thread apply %1 backtrace").arg(threadNo);
}
else
{
command = "backtrace";
}
queueCmd(new GDBCommand(command.local8Bit(),
NOTRUNCMD, INFOCMD, BACKTRACE));
}
void GDBController::slotProduceVariablesInfo()
{
queueCmd(new GDBCommand("info args", NOTRUNCMD, INFOCMD, ARGS));
queueCmd(new GDBCommand("info local", NOTRUNCMD, INFOCMD, LOCALS));
}
// **************************************************************************
void GDBController::slotSetValue(const QString& expression,
const QString& value)
{
// Need explicit "set var", not just "set" because gdb is
// confused on
//
// set B::k=10
//
queueCmd(new GDBCommand(QString("set var %1=%2").arg(expression).arg(value)
.local8Bit(),
NOTRUNCMD,
INFOCMD,
SETVALUE));
}
// **************************************************************************
void GDBController::slotVarItemConstructed(VarItem *item)
{
if (stateIsOn(s_appBusy|s_dbgNotStarted|s_shuttingDown))
return;
// jw - name and value come from "info local", for the type we
// send a "whatis <varName>" here.
//rgr: remove any format modifier
QString strName = item->gdbExpression();
strName.remove( QRegExp("/[xd] ", FALSE) );
queueCmd(new GDBItemCommand(item, QCString("whatis ") + strName.latin1(),
false, WHATIS));
}
// **************************************************************************
// This is called when the user desires to see the details of an item, by
// clicking open an varItem on the varTree.
void GDBController::slotExpandItem(TrimmableItem *genericItem)
{
if (stateIsOn(s_appBusy|s_dbgNotStarted|s_shuttingDown))
return;
VarItem *varItem;
if ((varItem = dynamic_cast<VarItem*>(genericItem)))
{
//rgr: we need to do this in order to move the output modifier
// from the middle to the beginning
QString strCmd = varItem->gdbExpression();
int iFound = strCmd.find( QRegExp("./[xd] ", FALSE) );
if (iFound != -1) {
strCmd.prepend( strCmd.mid(iFound+1, 3) );
strCmd.replace( QRegExp("./[xd] "), "." );
}
queueCmd(new GDBItemCommand(varItem, QCString("print ") + strCmd.latin1()));
return;
}
/*
VarFrameRoot *frameRoot;
if ((frameRoot = dynamic_cast<VarFrameRoot*>(genericItem)))
{
kdDebug(9012) << " ### GDBController::slotExpandItem: varframeroot expanded." << endl;
if (frameRoot->requestedValueTypes())
{
kdDebug(9012) << " ### GDBController::slotExpandItem: requestedValueTypes == true" << endl;
// this was already done.
return;
}
// iterate over children (i.e. the variables)
QListViewItem *item = frameRoot->firstChild();
kdDebug(9012) << " ### GDBController::slotExpandItem: firstChild = " << (void*)item;
while (item)
{
varItem = dynamic_cast<VarItem*>(item);
if (varItem)
{
// for each variable, send a "whatis" command to gdb
queueCmd(new GDBItemCommand(varItem, QCString("whatis ") + varItem->fullName().latin1()));
}
item = item->nextSibling();
}
}
*/
}
// **************************************************************************
// This is called when an item needs special processing to show a value.
// Example = QStrings. We want to display the QString string against the var name
// so the user doesn't have to open the qstring to find it. Here's where that happens
void GDBController::slotExpandUserItem(VarItem *item, const QCString &userRequest)
{
if (stateIsOn(s_appBusy|s_dbgNotStarted|s_shuttingDown))
return;
Q_ASSERT(item);
// Bad user data!!
if (userRequest.isEmpty())
return;
queueCmd(new GDBItemCommand(item, QCString("print ")+userRequest.data(),
false, DATAREQUEST));
}
// **************************************************************************
// The user will only get locals if one of the branches to the local tree
// is open. This speeds up stepping through code a great deal.
void GDBController::slotSetLocalViewState(bool onOff)
{
if (onOff)
setStateOn(s_viewLocals);
else
setStateOff(s_viewLocals);
kdDebug(9012) << (onOff ? "<Locals ON>": "<Locals OFF>") << endl;
}
// **************************************************************************
// Data from gdb gets processed here.
void GDBController::slotDbgStdout(KProcess *, char *buf, int buflen)
{
static bool parsing = false;
QCString msg(buf, buflen+1);
// kdDebug(9012) << "msg=<" << msg << ">" << endl;
msg.replace( QRegExp("\032."), "" );
emit gdbStdout(msg);
// Copy the data out of the KProcess buffer before it gets overwritten
// Append to the back of the holding zone.
holdingZone_ += QCString(buf, buflen+1);
// Already parsing? then get out quick.
if (parsing)
{
kdDebug(9012) << "Already parsing" << endl;
return;
}
while (true)
{
// Allocate some buffer space, if adding to this buffer will exceed it
if (gdbOutputLen_+(int)holdingZone_.length()+1 > gdbSizeofBuf_)
{
gdbSizeofBuf_ = gdbOutputLen_+2*(holdingZone_.length()+1);
char *newBuf = new char[gdbSizeofBuf_];
if (gdbOutputLen_)
memcpy(newBuf, gdbOutput_, gdbOutputLen_+1);
delete[] gdbOutput_;
gdbOutput_ = newBuf;
}
// Copy the data from the holding zone into the buffer the parsers will
// process from, and make it into a c-string so we can use the string fns
// kdDebug(9012) << "Adding holdingZone_ (" << holdingZone_.length() << ")" << endl
// << holdingZone_ << endl;
qstrcpy(gdbOutput_+gdbOutputLen_, holdingZone_);
gdbOutputLen_ += holdingZone_.length();
*(gdbOutput_+gdbOutputLen_) = 0;
holdingZone_ = "";
// kdDebug(9012) << "Output to parse (" << gdbOutputLen_ << ")" << endl
// << gdbOutput_ << endl << "*************" << endl;
parsing = true;
char *nowAt = parse(gdbOutput_);
parsing = false;
if (nowAt)
{
// kdDebug(9012) << "*** " << nowAt-gdbOutput_ << " bytes have been parsed " << endl;
Q_ASSERT(nowAt <= gdbOutput_+gdbOutputLen_+1);
gdbOutputLen_ = strlen(nowAt);
// Bytes that wern't parsed need to be moved to the head of the buffer
if (gdbOutputLen_)
memmove(gdbOutput_, nowAt, gdbOutputLen_); // Overlapping data
else
*gdbOutput_ = 0;
}
// kdDebug(9012) << "Output remaining (" << gdbOutputLen_ << ")" << endl
// << gdbOutput_ << endl << "*************" << endl;
if (!nowAt && !holdingZone_.length())
break;
}
// check the queue for any commands to send
executeCmd();
}
// **************************************************************************
void GDBController::slotDbgStderr(KProcess *proc, char *buf, int buflen)
{
// At the moment, just drop a message out and redirect
kdDebug(9012) << "STDERR: " << QString::fromLatin1(buf, buflen+1) << endl;
slotDbgStdout(proc, buf, buflen);
// QString bufData(buf, buflen+1);
// char *found;
// if ((found = strstr(buf, "No symbol table is loaded")))
// emit dbgStatus (QString("No symbol table is loaded"), state_);
// If you end the app and then restart when you have breakpoints set
// in a dynamically loaded library, gdb will halt because the set
// breakpoint is trying to access memory no longer used. The breakpoint
// must first be deleted, however, we want to retain the breakpoint for
// when the library gets loaded again.
/// @todo programHasExited_ isn't always set correctly,
/// but it (almost) doesn't matter.
// if (programHasExited_ && (found = strstr(bufData.data(), "Cannot insert breakpoint")))
// {
// setStateOff(s_appBusy);
// int BPNo = atoi(found+25);
// if (BPNo)
// {
// queueCmd(new GDBCommand(QString().sprintf("delete %d", BPNo), NOTRUNCMD, NOTINFOCMD));
// queueCmd(new GDBCommand("info breakpoints", NOTRUNCMD, NOTINFOCMD, BPLIST));
// queueCmd(new GDBCommand("continue", RUNCMD, NOTINFOCMD, 0));
// emit unableToSetBPNow(BPNo);
// }
// return;
// }
//
// parse(bufData.data());
}
// **************************************************************************
void GDBController::slotDbgWroteStdin(KProcess *)
{
setStateOff(s_waitForWrite);
// if (!stateIsOn(s_silent))
// emit dbgStatus ("", state_);
executeCmd();
}
// **************************************************************************
void GDBController::slotDbgProcessExited(KProcess* process)
{
if ( !process->normalExit() )
emit debuggerAbnormalExit();
destroyCmds();
state_ = s_dbgNotStarted|s_appNotStarted|s_programExited|(state_&(s_viewLocals|s_shuttingDown));
emit dbgStatus (i18n("Process exited"), state_);
emit gdbStdout("(gdb) Process exited\n");
}
// **************************************************************************
void GDBController::slotUserGDBCmd(const QString& cmd)
{
kdDebug(9012) << "Requested user cmd: " << cmd << endl;
if (cmd.startsWith("step") || cmd.startsWith("c"))
{
queueCmd(new GDBCommand(cmd.latin1(), RUNCMD, NOTINFOCMD, 0));
return;
}
if (cmd.startsWith("info lo"))
{
queueCmd(new GDBCommand("info local", NOTRUNCMD, INFOCMD, LOCALS));
return;
}
if (cmd.startsWith("info ar"))
{
queueCmd(new GDBCommand("info args", NOTRUNCMD, INFOCMD, ARGS));
return;
}
if (cmd.startsWith("info th"))
{
queueCmd(new GDBCommand("info thread", NOTRUNCMD, INFOCMD, INFOTHREAD), true);
return;
}
if (cmd.startsWith("ba") || cmd.startsWith("bt"))
{
queueCmd(new GDBCommand("backtrace", NOTRUNCMD, INFOCMD, BACKTRACE), true);
return;
}
QRegExp frame("^fr[ame]*\\s+(\\d+)");
if ( frame.search(cmd) >= 0 )
{
slotSelectFrame(frame.cap(1).toInt(), viewedThread_, true);
return;
}
QRegExp thread("^th[read]*\\s+(\\d+)");
if ( thread.search(cmd) >= 0 )
{
int threadNo = thread.cap(1).toInt();
int frameNo = currentFrame_;
if (threadNo != viewedThread_)
frameNo = 0;
slotSelectFrame(frameNo, threadNo, true);
return;
}
if (cmd.startsWith("qu"))
{
slotStopDebugger();
return;
}
kdDebug(9012) << "Parsing directly to gdb: " << cmd << endl;
queueCmd(new GDBCommand(cmd.latin1(), NOTRUNCMD, INFOCMD, USERCMD));
}
}
// **************************************************************************
// **************************************************************************
// **************************************************************************
#include "gdbcontroller.moc"
|