1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530
|
;;; jde-db.el -- Debugger mode for jdb.
;; $Revision: 1.131 $ $Date: 2005/01/18 05:23:31 $
;; Author: Paul Kinnucan <paulk@mathworks.com>
;; Maintainer: Paul Kinnucan
;; Keywords: java, tools
;; Copyright (C) 1997, 2000, 2001, 2002, 2003, 2004, 2005 Paul Kinnucan.
;; GNU Emacs 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, or (at your option)
;; any later version.
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, US
;;; Commentary:
;; This package interfaces emacs to jdb, the debugger
;; distributed as part of JavaSoft's Java
;; Development Kit (JDK).
;; Please send bug reports and enhancement suggestions
;; to Paul Kinnucan at <paulk@mathworks.com>
;; See end of this file for change history.
;;; Code:
(require 'jde-parse)
(require 'eieio)
(require 'jde-util)
(require 'widget)
(eval-when-compile
(require 'wid-edit))
(unless (fboundp 'make-overlay)
(require 'overlay))
;; ======================================================================
;; jde-db variables
(defcustom jde-db-query-missing-source-files t
"If nonnil, this variable causes the debugger to query you
for the path of a class source file that it cannot find in
`jde-sourcepath'."
:group 'jde-project
:type 'boolean)
(defcustom jde-db-mode-hook nil
"*Customization hook for jde-db inferior mode."
:group 'jde-project
:type 'hook
)
(defcustom jde-db-initial-step-p t
"*If non-nil, this option causes the debugger
to issue a step-into command after launching
a program. This causes the vm to step to the
first line of the debuggee program."
:group 'jde-project
:type 'boolean)
(defcustom jde-db-read-vm-args nil
"*Read vm arguments from the minibuffer.
If this variable is non-nil, the jde-db command reads vm arguments
from the minibuffer and appends them to those specified by
the `jde-db-option' variable group."
:group 'jde-project
:type 'boolean)
(defvar jde-db-interactive-vm-arg-history nil
"History of vm arguments read from the minibuffer")
(defcustom jde-db-read-app-args nil
"*Read arguments to be passed to application from the minibuffer."
:group 'jde-project
:type 'boolean)
(defvar jde-db-interactive-app-arg-history nil
"History of application arguments read from the minibuffer")
(defcustom jde-db-classic-mode-vm nil
"Runs applications in the classic (i.e., not HotSpot) mode when
debugging."
:group 'jde-project
:type 'boolean)
(defgroup jde-db-options nil
"JDE Debugger Options"
:group 'jde
:prefix "jde-db-option-")
(defcustom jde-db-option-classpath nil
"*Specify paths of classes required to run this application.
The JDE uses the specified paths to construct a -classpath
argument to pass to the Java interpreter. This option overrides the
`jde-global-classpath' option."
:group 'jde-db-options
:type '(repeat (file :tag "Path")))
(defcustom jde-db-option-verbose (list nil nil nil)
"*Print messages about the running process.
The messages are printed in the run buffer."
:group 'jde-db-options
:type '(list :indent 2
(checkbox :format "\n %[%v%] %h \n"
:doc "Print classes loaded.
Prints a message in the run buffer each time a class is loaded.")
(checkbox :format "%[%v%] %h \n"
:doc "Print memory freed.
Prints a message in the run buffer each time the garbage collector
frees memory.")
(checkbox :format "%[%v%] %h \n"
:doc "Print JNI info.
Prints JNI-related messages including information about which native
methods have been linked and warnings about excessive creation of
local references.")))
(defcustom jde-db-option-properties nil
"*Specify property values.
Enter the name of the property, for example, awt.button.color, in the
Property Name field; enter its value, for example, green, in the
Property Value field. You can specify as many properties as you like."
:group 'jde-db-options
:type '(repeat (cons
(string :tag "Property Name")
(string :tag "Property Value"))))
(defcustom jde-db-option-heap-size (list
(cons 1 "megabytes")
(cons 16 "megabytes"))
"*Specify the initial and maximum size of the interpreter heap."
:group 'jde-db-options
:type '(list
(cons (integer :tag "Start")
(radio-button-choice (const "bytes")
(const "kilobytes")
(const "megabytes")
(const "gigabytes")))
(cons (integer :tag "Max")
(radio-button-choice (const "bytes")
(const "kilobytes")
(const "megabytes")
(const "gigabytes")))))
(defcustom jde-db-option-stack-size (list
(cons 128 "kilobytes")
(cons 400 "kilobytes"))
"*Specify size of the C and Java stacks."
:group 'jde-db-options
:type '(list
(cons (integer :tag "C Stack")
(radio-button-choice (const "bytes")
(const "kilobytes")
(const "megabytes")
(const "gigabytes")))
(cons (integer :tag "Java Stack")
(radio-button-choice (const "bytes")
(const "kilobytes")
(const "megabytes")
(const "gigabytes")))))
(defcustom jde-db-option-garbage-collection (list t t)
"*Specify garbage collection options."
:group 'jde-db-options
:type '(list :indent 2
(checkbox :format "%[%v%] %t \n"
:tag "Collect garbage asynchronously.")
(checkbox :format "%[%v%] %t \n"
:tag "Collect unused classes.")))
(defcustom jde-db-option-java-profile (cons nil "./java.prof")
"*Enable Java profiling."
:group 'jde-db-options
:type '(cons boolean
(file :tag "File"
:help-echo
"Specify where to put profile results here.")))
(defcustom jde-db-option-heap-profile (cons nil
(list "./java.hprof"
5
20
"Allocation objects"))
"*Output heap profiling data."
:group 'jde-db-options
:type '(cons boolean
(list
(string :tag "Output File Path")
(integer :tag "Stack Trace Depth")
(integer :tag "Allocation Sites")
(radio-button-choice :format "%t \n%v"
:tag "Sort output based on:"
(const "Allocation objects")
(const "Live objects")))))
(defcustom jde-db-option-verify (list nil t)
"*Verify classes."
:group 'jde-db-options
:type '(list :indent 2
(checkbox :format "%[%v%] %t \n"
:tag "Executed code in all classes.")
(checkbox :format "%[%v%] %t \n"
:tag "Classes loaded by a classloader.")))
(defcustom jde-db-option-host ""
"Host of a remote process to which you wish to attach. This
option is invalid for JDK verions greater than JDK 1.1.x."
:group 'jde-db-options
:type 'string)
;; (makunbound 'jde-db-option-connect-socket)
(defcustom jde-db-option-connect-socket (list nil "4444")
"Specify address of socket to be used to connect the debugger and a
debuggee process. Selecting \"Prompt\" from the customization value
menu causes the debugger to prompt you to enter the shared memory name
when you command it to attach to or listen for an existing
process. Selecting \"Specify\" allows you to specify a default socket
host and port to be used by the debugger. "
:group 'jde-db-options
:type '(choice
(const :menu-tag "Prompt" nil)
(list
:menu-tag "Specify" :tag "Socket Address" :inline nil
(choice
:tag "Host"
(const :menu-tag "Local" nil)
(string :menu-tag "Remote" :tag "Name"))
(choice
:tag "Port"
(const :menu-tag "Default" "4444")
(string :menu-tag "Custom")))))
;; (makunbound 'jde-db-option-connect-shared-memory-name)
(defcustom jde-db-option-connect-shared-memory-name "javadebug"
"Specify name to use to establish a shared memory connection
between the debugger and a debuggee process. Selecting \"Prompt\" from
the customization value menu causes a debugger attach or listen
command, e.g., `jde-jdb-attach-via-shared-memory', to prompt you to
enter the shared memory name. Selecting \"Specify\" allows you to
specify a name of your choosing."
:group 'jde-db-options
:type '(choice
(const :menu-tag "Prompt" nil)
(string :menu-tag "Specify" :tag "Name")))
(defcustom jde-db-option-vm-args nil
"*Specify arguments to be passed to the Java vm.
This option allows you to specify one or more arguments to be passed
to the Java interpreter. It is an alternative to using JDE Run Option
variables, such as `jde-run-option-stack-size', to specify Java
interpreter options. Also, it makes it possible to use the JDE with
interpreters that accept command line arguments not supported by
the JDE Run Option variable set."
:group 'jde-db-options
:type '(repeat (string :tag "Argument")))
(defcustom jde-db-option-application-args nil
"*Specify command-line arguments to pass to the application.
The JDE passes the specified arguments to the application on
the command line."
:group 'jde-db-options
:type '(repeat (string :tag "Argument")))
(defmacro jde-assert-source-or-debug-buffer ()
"Asserts that the current buffer is a
Java source or a debug buffer."
'(assert
(or
(eq major-mode 'jde-mode)
(and (slot-boundp 'jde-db-debugger 'the-debugger)
(eq (current-buffer)
(oref (oref 'jde-db-debugger the-debugger) buffer))))
nil
"This command works only in a Java source or debug buffer."))
(defcustom jde-db-log-debugger-output-flag nil
"Log raw debugger output to a buffer. This variable is intended
to be used for debugging the JDEE's debuggers."
:group 'jde-db-options
:type 'boolean)
(defun jde-db-log-debugger-output (output)
(if jde-db-log-debugger-output-flag
(let ((buf (get-buffer "debugger output")))
(when (not buf)
(setq buf (get-buffer-create "debugger output"))
(pop-to-buffer buf))
(save-excursion
(set-buffer buf)
(goto-char (point-max))
(insert-string output)))))
(defun jde-db-get-debuggee-status ()
"Get the`jde-db-debuggee-status' of the
current debuggee process."
(if (slot-boundp 'jde-db-debugger 'the-debugger)
(let* ((debugger (oref 'jde-db-debugger the-debugger))
(debuggee (oref debugger debuggee)))
(oref debuggee status))))
(defun jde-db-debuggee-stopped-p ()
"Return t if current debuggee process is stopped."
(let ((status (jde-db-get-debuggee-status)))
(if status
(oref status stopped-p))))
(defun jde-db-debuggee-suspended-p ()
"Return t if current debuggee process is suspended."
(let ((status (jde-db-get-debuggee-status)))
(if status
(oref status suspended-p))))
(defun jde-db-debuggee-running-p ()
"Return t if current debuggee process is running."
(let ((status (jde-db-get-debuggee-status)))
(if status
(oref status running-p))))
;;;###autoload
(defun jde-db-set-debugger (name is-executable)
"Specify the pathname of the debugger, if an executable, or the
debugger's fully qualified class name, if a class."
(interactive
"sEnter name of Java interpreter: \nsIs %s executable? (yes): ")
(let ((db name)
(type
(if (stringp is-executable)
(if (or
(string= is-executable "")
(eq (aref is-executable 0) ?y))
"Executable"
"Class")
"Executable")))
(setq jde-db-debugger (cons "Other" (cons db type)))))
;;;###autoload
(defun jde-db-set-args (args)
"Specify the arguments (except -classpath) to be passed to the debugger."
(interactive
"sEnter arguments: ")
(setq jde-db-option-vm-args (jde-run-parse-args args)))
;;;###autoload
(defun jde-db-set-app-args (args)
"Specify the arguments to be passed to the Java application class."
(interactive
"sEnter arguments: ")
(setq jde-db-option-application-args (jde-run-parse-args args)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;;
;; Breakpoints ;;
;; ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defcustom jde-db-spec-breakpoint-face-colors (cons "black" "green")
"*Specifies the foreground and background colors used to highlight
the line at which you have specified that a breakpoint to be set."
:group 'jde-project
:type '(cons :tag "Colors"
(string :tag "Foreground")
(string :tag "Background"))
:set '(lambda (sym val)
(make-face 'jde-db-spec-breakpoint-face)
(set-face-foreground 'jde-db-spec-breakpoint-face (car val))
(set-face-background 'jde-db-spec-breakpoint-face (cdr val))
(set-default sym val)))
(defcustom jde-db-requested-breakpoint-face-colors (cons "black" "yellow")
"*Specifies the foreground and background colors used to highlight
the line at which you have requested a breakpoint to be set."
:group 'jde-project
:type '(cons :tag "Colors"
(string :tag "Foreground")
(string :tag "Background"))
:set '(lambda (sym val)
(make-face 'jde-db-requested-breakpoint-face)
(set-face-foreground 'jde-db-requested-breakpoint-face (car val))
(set-face-background 'jde-db-requested-breakpoint-face (cdr val))
(set-default sym val)))
(defcustom jde-db-active-breakpoint-face-colors (cons "black" "red")
"*Specifies the foreground and background colors used to highlight
a line where an active breakpoint exists."
:group 'jde-project
:type '(cons :tag "Colors"
(string :tag "Foreground")
(string :tag "Background"))
:set '(lambda (sym val)
(make-face 'jde-db-active-breakpoint-face)
(set-face-foreground 'jde-db-active-breakpoint-face (car val))
(set-face-background 'jde-db-active-breakpoint-face (cdr val))
(set-default sym val)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;;
;; Breakpoint Marker Class ;;
;; ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defclass jde-db-breakpoint-marker ()
((marker :initarg :marker
:documentation
"Overlay in Emacs, extent in XEmacs"))
"Indicates the location of breakpoints in a source buffer. This class
uses overlays as markers in Emacs and extents in XEmacs.")
(defmethod initialize-instance ((this jde-db-breakpoint-marker) &rest fields)
"Create a breakpoint overlay at LINE in FILE."
;; Call parent initializer.
(call-next-method)
(oset this marker
(if (featurep 'xemacs)
(if (or (not (extent-at (jde-line-beginning-position)))
(not (jde-db-breakpoint-marker-p
(extent-at (jde-line-beginning-position)))))
(make-extent
(jde-line-beginning-position)
(1+ (jde-line-end-position))))
(make-overlay
(jde-line-beginning-position)
(1+ (jde-line-end-position))
(current-buffer) nil t))))
(defmethod jde-db-breakpoint-marker-set-face ((this jde-db-breakpoint-marker) face)
"Apply FACE to OVERLAY."
(let ((marker (oref this marker)))
(if (featurep 'xemacs)
(progn
(set-extent-face marker face)
(set-extent-priority marker 98))
(progn
(overlay-put marker 'face face)
(overlay-put marker 'priority 98)))))
(defun jde-db-breakpoint-marker-p (marker)
"Return t if overlay is a breakpoint marker overlay."
(let ((marker-face
(if (featurep 'xemacs)
(extent-property marker 'face nil)
(overlay-get marker 'face))))
(or
(eq marker-face 'jde-db-spec-breakpoint-face)
(eq marker-face 'jde-db-requested-breakpoint-face)
(eq marker-face 'jde-db-active-breakpoint-face))))
(defmethod jde-db-breakpoint-marker-delete ((this jde-db-breakpoint-marker))
"Remove breakpoint overlay at LINE in FILE."
(if (featurep 'xemacs)
(delete-extent (oref this marker))
(delete-overlay (oref this marker))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;;
;; Breakpoint Class ;;
;; ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defclass jde-db-breakpoint ()
((id :initarg :id
:type integer
:documentation
"Identifies this breakpoint.")
(file :initarg :file
:initform ""
:type string
:documentation
"Pathname of file containing this breakpoint.")
(line :initarg :line
:type integer
:documentation
"Number of line at which breakpoint is set.")
(marker :initarg :marker
:type (or null jde-db-breakpoint-marker)
:initform nil
:documentation
"Marker used to highlight breakpoint line.")
(class :initarg :class
:type string
:documentation
"Qualified name of class containing breakpoint.")
(status :initarg status
:type symbol
:initform specified
:documentation
"Status of this breakpoint. Legal values are `specified', `requested', `active'."))
(:allow-nil-initform t)
"Class of breakpoints.")
(defmethod initialize-instance ((this jde-db-breakpoint) &rest fields)
"Constructor for a breakpoint specification."
;; Call parent initializer.
(call-next-method)
(assert (oref this file))
(oset this
marker
(jde-db-breakpoint-marker "breakpoint marker"))
(jde-db-breakpoint-marker-set-face
(oref this marker) 'jde-db-spec-breakpoint-face))
(defmethod jde-db-breakpoint-get-line ((this jde-db-breakpoint))
"Get the number of the line at which this breakpoint is set."
(save-excursion
(set-buffer (find-file-noselect (oref this file)))
(if (oref this marker)
(let ((marker-start
(if (featurep 'xemacs)
(extent-start-position (oref (oref this marker) marker))
(overlay-start (oref (oref this marker) marker)))))
(jde-get-line-at-point marker-start))
(oref this line))))
(defvar jde-db-breakpoints nil
"Current breakpoints.")
(defun jde-db-get-breakpoint-marker (file line)
"Get breakpoint marker at FILE and LINE."
(let ((bp (jde-db-find-breakpoint file line)))
(if bp
(oref bp marker))))
(defun jde-db-mark-breakpoint-specified (file line)
"Changes the face of the breakpoint marker at LINE in FILE
to the specified face."
(let ((marker (jde-db-get-breakpoint-marker file line)))
(if marker
(jde-db-breakpoint-marker-set-face marker 'jde-db-spec-breakpoint-face))))
(defun jde-db-mark-breakpoint-active (file line)
"Changes the face of the breakpoint marker at LINE in FILE
to the active face."
(let ((marker (jde-db-get-breakpoint-marker file line)))
(if marker
(jde-db-breakpoint-marker-set-face marker 'jde-db-active-breakpoint-face))))
(defun jde-db-mark-breakpoint-requested (file line)
"Changes the face of the breakpoint marker at LINE in FILE
to the active face."
(let ((marker (jde-db-get-breakpoint-marker file line)))
(if marker
(jde-db-breakpoint-marker-set-face marker 'jde-db-requested-breakpoint-face))))
(defun jde-db-set-all-breakpoints-specified ()
"Changes the face of all breakpoints to `jde-db-spec-breakpoint-face'
and sets the status of all breakpoints to `specified'."
(loop for bp-assoc in jde-db-breakpoints do
(let* ((bp (cdr bp-assoc))
(marker (oref bp marker)))
(oset bp status 'specified)
(if marker
(jde-db-breakpoint-marker-set-face marker 'jde-db-spec-breakpoint-face)))))
(defun jde-db-delete-breakpoint (bp)
"Delete the breakpoint at LINE in FILE."
(setq jde-db-breakpoints
;; bp will be in the list so don't run the risk of using a
;; deleted extent.
(let ((bpline (jde-db-breakpoint-get-line bp)))
(remove-if
(lambda (assoc-x)
(let* ((xbp (cdr assoc-x))
(xfile (oref xbp file))
(deletep
(and
(string= (oref bp file) xfile)
(equal bpline (jde-db-breakpoint-get-line xbp)))))
(if deletep
(jde-db-breakpoint-marker-delete
(oref bp marker)))
deletep))
jde-db-breakpoints))))
(defun jde-db-clear-breakpoints ()
"Clear all breakpoints from all buffers."
(mapc
(lambda (assoc-x)
(let* ((xbp (cdr assoc-x))
(file (oref xbp file))
(buf (find-buffer-visiting file)))
(if buf
(save-excursion
(set-buffer buf)
(let ((xmarker (oref xbp marker)))
(jde-db-breakpoint-marker-delete xmarker))))))
jde-db-breakpoints)
(setq jde-db-breakpoints nil))
(defvar jde-db-bp-list nil)
(defun jde-debug-list-breakpoints (&optional active)
"Brings a list of all set breakpoints. It allows the user to jump to a
particular breakpoint and to select breakpoints to be clear."
(interactive "i")
(if jde-db-breakpoints
(progn
(switch-to-buffer "*Breakpoints List*")
(kill-all-local-variables)
(make-local-variable 'jde-db-bp-list)
(setq jde-db-bp-list nil)
(let ((inhibit-read-only t))
(erase-buffer))
(setq active (not active))
(widget-insert "Breakpoints:\n\n")
(mapc
(lambda (assoc-x)
(let* ((xbp (cdr assoc-x))
(id (oref xbp id))
(class (oref xbp class))
(file (oref xbp file))
(line (oref xbp line))
(status (oref xbp status)))
(widget-create
'checkbox
:notify (lambda (widget &rest ignore)
(if (widget-value widget)
(setq jde-db-bp-list
(delete (widget-get widget :id)
jde-db-bp-list))
(setq jde-db-bp-list
(append jde-db-bp-list
(list (widget-get widget :id))))))
:id id
active)
(if (not active)
(setq jde-db-bp-list (append jde-db-bp-list (list id))))
(widget-insert " ")
(widget-create 'push-button
:notify (lambda (widget &rest ignore)
(progn
(find-file-other-window
(widget-get widget :file))
(goto-line
(widget-get widget :line))))
:button-face
(cond
((eq status 'specified)
'jde-db-spec-breakpoint-face)
((eq status 'active)
'jde-db-active-breakpoint-face)
(t 'jde-db-requested-breakpoint-face))
:file file
:line line
(format "%s:%d" class line))
(widget-insert "\n")))
jde-db-breakpoints)
(widget-insert "\n")
(widget-create 'push-button
:notify (lambda (&rest ignore)
(jde-debug-list-breakpoints t))
"Clear All")
(widget-insert " ")
(widget-create 'push-button
:notify (lambda (&rest ignore)
(progn
(jde-db-process-breakpoints)
(kill-buffer "*Breakpoints List*")))
"Apply Form")
(use-local-map widget-keymap)
(widget-insert "\n")
(widget-setup))
(message "No breakpoints")))
(defun jde-db-process-breakpoints ()
"Deletes all the breakpoints found in `jde-db-bp-list'"
(if jde-db-bp-list
(if (jde-db-debuggee-running-p)
(let* ((debugger (oref 'jde-db-debugger the-debugger))
(bp-cmd (oref (oref debugger cmd-set) clear-bp)))
(oset
bp-cmd
breakpoints
(mapcar
(lambda (assoc-x)
(jde-db-find-breakpoint-by-id assoc-x))
jde-db-bp-list))
(jde-db-exec-cmd debugger bp-cmd))
(loop for bp-assoc in jde-db-bp-list do
(let ((bp (jde-db-find-breakpoint-by-id bp-assoc)))
(jde-db-delete-breakpoint bp))))))
(defun jde-db-breakpoints-add (bp)
"Adds this breakpoint to the list of breakpoints."
(setq jde-db-breakpoints
(cons (cons (oref bp id) bp)
jde-db-breakpoints)))
(defun jde-db-find-breakpoint-by-id (id)
"Finds the breakpoint object with ID"
(cdr (find-if
(lambda (assoc-x)
(let ((bp (cdr assoc-x)))
(= (oref bp id) id)))
jde-db-breakpoints)))
(defun jde-db-find-breakpoint (file line)
"Finds the breakpoint object for the breakpoint at FILE and LINE."
(cdr (find-if
(lambda (assoc-x)
(let ((bp (cdr assoc-x)))
(and (string= (oref bp file) file)
(equal (jde-db-breakpoint-get-line bp) line))))
jde-db-breakpoints)))
(defvar jde-db-breakpoint-id-counter 0
"Counter for generating breakpoint ids")
(defun jde-db-nullify-breakpoint-markers ()
"Set the marker field for each breakpoint
in the current buffer to nil."
(when (eq major-mode 'jde-mode)
(let ((file (buffer-file-name)))
(loop for bp-assoc in jde-db-breakpoints do
(let ((bp (cdr bp-assoc)))
(when (string= (oref bp file) file)
(oset bp line (jde-db-breakpoint-get-line bp))
(oset bp marker nil)))))))
(add-hook 'kill-buffer-hook 'jde-db-nullify-breakpoint-markers)
(defun jde-db-remark-breakpoints ()
"Highlights all breakpoints in the current buffer if not
already highlighted."
(save-excursion
(loop for bp-assoc in jde-db-breakpoints do
(let* ((bp (cdr bp-assoc))
(file (buffer-file-name))
(line (oref bp line))
(status (oref bp status)))
(if (string-equal file (oref bp file))
(progn
(goto-line line)
(oset bp
marker
(jde-db-breakpoint-marker "breakpoint marker"))
(cond
((eq status 'specified)
(jde-db-mark-breakpoint-specified file line))
((eq status 'requested)
(jde-db-mark-breakpoint-requested file line))
((eq status 'active)
(jde-db-mark-breakpoint-active file line))
(t
(error "Unknown breakpoint status: %s"
(symbol-name status))))))))
))
(add-hook 'jde-mode-hook 'jde-db-remark-breakpoints)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;;
;; Debug Cursor Handling ;;
;; ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun jde-db-query-source-file (class)
(let ((source-file
(read-file-name
(format "Cannot find %s source. Enter path: " class))))
(if (and
source-file
(file-exists-p source-file)
(not (file-directory-p source-file)))
(find-file-noselect source-file))))
(defun jde-db-find-class-source (class)
"Find and open the source file for a class. CLASS is the fully
qualified name of the class. If this function is unable to find the
source for CLASS in `jde-sourcepath' and
`jde-db-query-missing-source-files' is nonnil, this function queries
the user for the path to the source file. If successful, this function
returns an unselected buffer containing the source file for the
class. Otherwise, it returns nil."
(let* ((source-file (jde-find-class-source-file class))
(source-buffer
(if source-file
(find-file-noselect source-file)
(if jde-db-query-missing-source-files
(jde-db-query-source-file class)))))
source-buffer))
(defun jde-db-set-debug-cursor (class file line)
"Shows the source at LINE in CLASS."
(let* ((buffer (jde-db-find-class-source class))
(window
(and buffer
(or (get-buffer-window buffer)
(selected-window))))
pos)
(if buffer
(progn
(if (not (get-buffer-window buffer))
(set-window-buffer window buffer))
(save-excursion
(set-buffer buffer)
(save-restriction
(widen)
(goto-line line)
(setq pos (point))
(setq overlay-arrow-string "=>")
(or overlay-arrow-position
(setq overlay-arrow-position (make-marker)))
(set-marker overlay-arrow-position (point) (current-buffer)))
(cond ((or (< pos (point-min)) (> pos (point-max)))
(widen)
(goto-char pos))))
(set-window-point window overlay-arrow-position)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;;
;; Debuggee Process Status Class ;;
;; ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defclass jde-db-debuggee-status ()
((running-p :initarg :running-p
:type boolean
:initform nil
:documentation
"Non-nil if debuggee process is running.")
(stopped-p :initarg :stopped-p
:type boolean
:initform nil
:documentation
"Non-nil if debuggee process is stopped.")
(suspended-p :initarg :suspended-p
:type boolean
:initform nil
:documentation
"Non-nil if debuggee process is suspended."))
"Status of debuggee process.")
(defmethod initialize-instance ((this jde-db-debuggee-status) &rest fields)
"Status of debuggee process."
(call-next-method))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;;
;; Debuggee Process Class ;;
;; ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defclass jde-db-connector () ()
"Proxy for debugger connectors.")
(defclass jde-db-launch-connector (jde-db-connector) ()
"Launched by the debugger.")
(defclass jde-db-socket-connector (jde-db-connector)
((port :initarg :port
:type (or null string)
:initform nil
:documentation
"Port to the debuggee process."))
"Connect via a socket.")
(defclass jde-db-shared-memory-connector (jde-db-connector)
((name :initarg :name
:type (or null string)
:initform nil
:documentation
"Shared memory name of debuggee process."))
"Connect via a shared-memory transport (Windows only).")
(defclass jde-db-attach-connector (jde-db-connector) ()
"Attaches to debuggee.")
(defclass jde-db-listen-connector (jde-db-connector) ()
"Listens for debuggee.")
(defclass jde-db-socket-attach-connector (jde-db-socket-connector
jde-db-attach-connector)
((host :initarg :host
:type (or null string)
:initform nil
:documentation
"Host on which the debuggee process runs."))
"Attach via a socket.")
(defclass jde-db-shared-memory-attach-connector (jde-db-shared-memory-connector
jde-db-attach-connector)
()
"Attach via a shared memory connection.")
(defclass jde-db-socket-listen-connector (jde-db-socket-connector
jde-db-listen-connector)
()
"Listen via a socket.")
(defclass jde-db-shared-memory-listen-connector (jde-db-shared-memory-connector
jde-db-listen-connector)
()
"Listen via a shared memory connection.")
(defclass jde-db-debuggee ()
((status :initarg :status
:type jde-db-debuggee-status
:documentation
"Status of debuggee process.")
(stack-depth :initarg :stack-depth
:type string
:initform ""
:documentation
"Stack depth."))
"Program being debugged.")
(defmethod initialize-instance ((this jde-db-debuggee) &rest fields)
"Constructs an instance of a debuggee."
(call-next-method))
(defclass jde-db-debuggee-app (jde-db-debuggee)
((main-class :initarg :main-class
:type string
:documentation
"Qualified name of debuggee main class.")
(connector :initarg :connector
:type jde-db-connector
:documentation
"Type of connector between this debuggee and the debugger."))
"Application being debugged.")
(defclass jde-db-debuggee-applet (jde-db-debuggee)
((doc :initarg :doc
:type string
:documentation
"Path of applet HTML document."))
"Applet being debugged.")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;;
;; Debugger Command Line Commands ;;
;; ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defclass jde-db-cmd ()
((name :initarg :name
:type string
:documentation
"Name of command.")
(debugger :initarg :debugger
:type jde-db-debugger
:documentation
"Debugger."))
"Super class of debugger commands.")
(defmethod initialize-instance ((this jde-db-cmd) &rest fields)
"Constructor for debugger commands."
(call-next-method))
(defmethod jde-db-cmd-init ((this jde-db-cmd))
"The debugger invokes this method before executing the
command.")
(defmethod jde-db-cmd-make-command-line ((this jde-db-cmd))
"Creates the command line for this command."
(oref this name))
(defmethod jde-db-cmd-notify-response ((this jde-db-cmd) response)
"Invoked when the debugger responds to the command. RESPONSE
is the response.")
(defmethod jde-db-cmd-response-p ((this jde-db-cmd) output)
"Returns nonnil if external debugger's output is a
response to this command."
t)
(defclass jde-db-cmd-breakpoint (jde-db-cmd)
((breakpoints :initarg :breakpoints
:type list
:documentation
"List of breakpoint specification."))
"Class of breakpoint commands.")
(defclass jde-db-cmd-launch (jde-db-cmd)
()
"Launch a debuggee process.")
(defclass jde-db-cmd-launch-app (jde-db-cmd-launch)
((main-class :initarg :main-class
:type string
:documentation
"Main class of applications to be debugged."))
"Launch an application in debug mode.")
(defmethod initialize-instance ((this jde-db-cmd-launch-app) &rest fields)
(call-next-method)
(oset this name "launch application"))
(defclass jde-db-cmd-launch-applet (jde-db-cmd-launch)
((doc :initarg :doc
:type string
:documentation
"Path of applet document."))
"Launch an applet in debug mode.")
(defmethod initialize-instance ((this jde-db-cmd-launch-applet) &rest fields)
(call-next-method)
(oset this name "launch applet"))
;; Generic Debugger Command Set.
(defclass jde-db-cmd-set ()
((debugger :initarg :debugger
:type jde-db-debugger
:documentation
"Debugger that owns this command set.")
(launch-app :initarg :launch-app
:type jde-db-cmd-launch-app
:documentation
"Launch debuggee application")
(launch-applet :initarg :launch-applet
:type jde-db-cmd-launch-applet
:documentation
"Launch debuggee applet")
(run :initarg :run
:type jde-db-cmd
:documentation
"Starts the current debuggee application.")
(cont :initarg :cont
:type jde-db-cmd
:documentation
"Continues the current debuggee application.")
(quit :initarg :quit
:type jde-db-cmd
:documentation
"Quit debugging the current application.")
(step-over :initarg :step-over
:type jde-db-cmd
:documentation
"Step to the next line in the current frame.")
(step-into :initarg :step-into
:type jde-db-cmd
:documentation
"Step to the next line in the current program.")
(step-out :initarg :step-out
:type jde-db-cmd
:documentation
"Continue to the end of the current method.")
(up :initarg :up
:type jde-db-cmd
:documentation
"Move up the stack.")
(down :initarg :down
:type jde-db-cmd
:documentation
"Move down the stack.")
(where :initarg :where
:type jde-db-cmd
:documentation
"Point to the current stopping point.")
(set-bp :initarg :set-bp
:type jde-db-cmd
:documentation
"Cmd that asks debugger to set a breakpoint.")
(clear-bp :initarg :clear-bp
:type jde-db-cmd
:documentation
"Cmd that asks debugger to set a breakpoint."))
"Set of debugger commands implemented by this debugger.")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;;
;; Debug Process Listener ;;
;; ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defclass jde-db-listener ()
((debugger :initarg :debugger
:type jde-db-debugger
:documentation
"The debugger"))
"Listens to the output from the debugger.")
(defmethod jde-db-listener-filter-output ((this jde-db-listener) output)
"Filters the output of the debugger."
output)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;;
;; Class of JDE Debuggers ;;
;; ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defclass jde-db-debugger ()
((name :initarg :name
:type string
:initform "Java debugger"
:documentation
"Name of this Java debugger.")
(buffer-name :initarg :buffer-name
:initform "Java Debugger"
:type string
:documentation
"Name of buffer used to interact with debugger.")
(buffer :initarg :buffer
:type buffer
:documentation
"Buffer used to interact with debugger.")
(process :initarg :process
:documentation
"Debugger process.")
(running-p :initarg :process
:type boolean
:initform nil
:documentation
"Non-nil if debugger process is running.")
(proc-filter :initarg :proc-filter
:type function
:documentation
"Function used to parse debug output.")
(listeners :initarg :listeners
:type list
:initform nil
:documentation
"List of debugger output listeners.")
(cmd-set :initarg :cmd-set
:type jde-db-cmd-set
:documentation
"Commands implemented by this debugger.")
(next-cmd :initarg :next-cmd
:type list
:initform nil
:documentation
"Next command(s) to execute.")
(last-cmd :initarg :last-cmd
:type (or null jde-db-cmd)
:documentation
"Last command send to the debugger.")
(debuggee :initarg :debuggee
:type jde-db-debuggee
:documentation
"Application process being debugged.")
(the-debugger :type jde-db-debugger
:allocation :class
:documentation
"The currently active debugger."))
"Class of Java debuggers.")
(defmethod initialize-instance ((this jde-db-debugger) &rest fields)
"Constructor for generic debugger."
(oset this cmd-set
(jde-db-cmd-set "Generic commands" :debugger this))
(oset this last-cmd nil))
(defmethod jde-db-create-debuggee-app ((this jde-db-debugger) main-class))
(defmethod jde-db-create-debuggee-applet ((this jde-db-debugger applet-doc)))
(defmethod jde-db-ready-p ((this jde-db-debugger) output)
"Nonnil if OUTPUT indicates that the debugger is
ready to accept the next command."
(and output
(or
(string-match ">[ ]*$" output)
(string-match "[a-zA-Z0-9]+\[[0-9]+\][ ]*$" output)
(string-match "VM Started:[ ]*$" output))))
(defmethod jde-db-process-debugger-output ((this jde-db-debugger) output)
"Process debugger output."
(jde-db-log-debugger-output (concat "<<" output ">>"))
(let ((proc (oref this process))
(listeners (oref this listeners))
(response output)
(last-cmd (oref this last-cmd)))
(loop for listener in listeners do
(setq output
(jde-db-listener-filter-output listener output)))
(comint-output-filter proc output)
(if last-cmd
(jde-db-cmd-notify-response last-cmd response))
(if (jde-db-ready-p this (car (last (split-string output "\n"))))
(jde-db-exec-next-cmd this))))
(defmethod jde-db-add-listener ((this jde-db-debugger) listener)
"Adds LISTENER to the list of listeners listening for response
from the debugger. LISTENER must be an object of type
`jde-db-listener'."
(assert (typep listener jde-db-listener))
(oset this listeners (cons listener (oref this listeners))))
(defmethod jde-db-remove-listener ((this jde-db-debugger) listener)
"Removes LISTENER from the list of listeners listening for a
response from the debugger. LISTENER must be an object of type
`jde-db-listener'."
(assert (typep listener jde-db-listener))
(oset this listeners (remove listener (oref this listeners))))
(defmethod jde-db-set-process-filter ((this jde-db-debugger))
"Set debugger process output filter. The default method sets a
function that invokes `jde-db-process-debugger-output'."
(set-process-filter
(oref this process)
(lambda (process output)
(jde-db-process-debugger-output
(oref 'jde-db-debugger the-debugger) output))))
(defmethod jde-db-notify-process-exit ((this jde-db-debugger) msg)
"The default debugger process sentinel invokes this method
when the debugger process terminates."
(let ((proc (oref this process)))
(cond ((null (buffer-name (process-buffer proc)))
;; buffer killed
;; Stop displaying an arrow in a source file.
(setq overlay-arrow-position nil)
(set-process-buffer proc nil))
((memq (process-status proc) '(signal exit))
;; Stop displaying an arrow in a source file.
(setq overlay-arrow-position nil)
(let* ((obuf (current-buffer)))
;; save-excursion isn't the right thing if
;; process-buffer is current-buffer
(unwind-protect
(progn
;; Write something in debugger buffer and hack its mode line,
(set-buffer (process-buffer proc))
;; Fix the mode line.
(setq mode-line-process
(concat ":"
(symbol-name (process-status proc))))
(force-mode-line-update)
(if (eobp)
(insert ?\n mode-name " " msg)
(save-excursion
(goto-char (point-max))
(insert ?\n mode-name " " msg)))
;; If buffer and mode line will show that the process
;; is dead, we can delete it now. Otherwise it
;; will stay around until M-x list-processes.
(delete-process proc))
;; Restore old buffer, but don't restore old point
;; if obuf is the command buffer.
(set-buffer obuf)))))))
(defmethod jde-db-notify-process-status-change ((this jde-db-debugger) msg)
"The debugger process sentinel invokes this method when the status of
the debugger process changes. The default method invokes
`jde-db-notify-process-exit'."
(jde-db-notify-process-exit this msg))
(defmethod jde-db-set-process-sentinel ((this jde-db-debugger))
(set-process-sentinel
(oref this process)
(lambda (process msg)
(jde-db-notify-process-status-change
(oref 'jde-db-debugger the-debugger) msg))))
(defmethod jde-db-exec-next-cmd ((this jde-db-debugger))
"Executes the next command on the debugger's pending
command list."
(let ((curr-cmd (car (oref this next-cmd))))
(if curr-cmd
(progn
(oset this next-cmd (cdr (oref this next-cmd)))
(oset this last-cmd curr-cmd)
(jde-db-cmd-init curr-cmd)
(save-excursion
(set-buffer (oref this buffer))
(let ((proc (oref this process))
(cmd-line (jde-db-cmd-make-command-line curr-cmd)))
(if cmd-line
(progn
(goto-char (point-max))
(insert cmd-line)
(comint-send-input)))))))))
(defmethod jde-db-exec-cmds ((this jde-db-debugger) cmds)
"Executes list of debugger CMDS."
(oset this next-cmd cmds)
(jde-db-exec-next-cmd this))
(defmethod jde-db-exec-cmd ((this jde-db-debugger) cmd)
"Executes CMD."
(assert (and cmd (typep cmd 'jde-db-cmd)))
(jde-db-exec-cmds this (list cmd)))
(defmethod jde-db-classpath-arg ((this jde-db-debugger))
"Generate the -classpath command line argument for jdb."
;; Set the classpath option. Use the local
;; classpath, if set; otherwise, the global
;; classpath.
(let ((classpath
(if jde-db-option-classpath
jde-db-option-classpath
jde-global-classpath))
(symbol
(if jde-db-option-classpath
'jde-db-option-classpath
'jde-global-classpath)))
(if classpath
(list
"-classpath"
(jde-build-classpath
classpath symbol)))))
(defmethod jde-db-classic-mode-arg ((this jde-db-debugger))
"Generate the classic mode command-line argument for jdb."
(if jde-db-classic-mode-vm
(list "-classic")))
(defmethod jde-db-property-args ((this jde-db-debugger))
"Generate property arguments."
(if jde-db-option-properties
(mapcar
(lambda (prop)
(concat "-D" (car prop) "=" (cdr prop)))
jde-db-option-properties)))
(defmethod jde-db-verbose-args ((this jde-db-debugger))
"Get the debugger verbosity arguments for jdb."
(let ((print-classes-loaded
(nth 0 jde-db-option-verbose))
(print-memory-freed
(nth 1 jde-db-option-verbose))
(print-jni-info
(nth 2 jde-db-option-verbose))
options)
(if print-classes-loaded
(add-to-list 'options "-verbose:class"))
(if print-memory-freed
(add-to-list 'options "-verbosegc"))
(if print-jni-info
(add-to-list options "-verbosejni"))
options))
(defmethod jde-db-heap-size-args ((this jde-db-debugger))
"Generate heap size options."
(let* ((memory-unit-abbrevs
(list (cons "bytes" "")
(cons "kilobytes" "k")
(cons "megabytes" "m")
(cons "gigabytes" "g")))
(start-cons (nth 0 jde-db-option-heap-size))
(start-size (format "%d%s" (car start-cons)
(cdr (assoc (cdr start-cons)
memory-unit-abbrevs))))
(max-cons (nth 1 jde-db-option-heap-size))
(max-size (format "%d%s" (car max-cons)
(cdr (assoc (cdr max-cons)
memory-unit-abbrevs))))
options)
(if (not (string= start-size "1m"))
(setq options
(append options (list (concat "-Xms" start-size)))))
(if (not (string= max-size "16m"))
(setq options
(append options (list (concat "-Xmx" max-size)))))
options))
(defmethod jde-db-stack-size-args ((this jde-db-debugger))
"Generate stack size arguments."
(let* ((memory-unit-abbrevs
(list (cons "bytes" "")
(cons "kilobytes" "k")
(cons "megabytes" "m")
(cons "gigabytes" "g")))
(c-cons (nth 0 jde-db-option-stack-size))
(c-size (format "%d%s" (car c-cons)
(cdr (assoc (cdr c-cons)
memory-unit-abbrevs))))
(java-cons (nth 1 jde-db-option-stack-size))
(java-size (format "%d%s" (car java-cons)
(cdr (assoc (cdr java-cons)
memory-unit-abbrevs))))
option)
(if (not (string= c-size "128k"))
(setq option
(append option (list (concat "-Xss" c-size)))))
(if (not (string= java-size "400k"))
(setq option
(append option (list (concat "-Xoss" java-size)))))
option))
(defmethod jde-db-garbage-collection-args ((this jde-db-debugger))
"Set garbage collection options."
(let ((no-gc-asynch (not
(nth 0 jde-db-option-garbage-collection)))
(no-gc-classes (not
(nth 1 jde-db-option-garbage-collection)))
options)
(if no-gc-asynch
(setq options (append options '("-Xnoasyncgc"))))
(if no-gc-classes
(setq options (append options '("-Xnoclassgc"))))
options))
(defmethod jde-db-garbage-collection-arg ((this jde-db-debugger))
"Generate Java profile arg."
(let ((profilep (car jde-db-option-java-profile))
(file (cdr jde-db-option-java-profile)))
(if profilep
(if (string= file "./java.prof")
(list "-Xprof")
(list (concat "-Xprof:" file))))))
(defmethod jde-db-heap-profile-arg ((this jde-db-debugger))
"Generate heap profile option."
(let* ((profilep (car jde-db-option-heap-profile))
(prof-options (cdr jde-db-option-heap-profile))
(file (nth 0 prof-options))
(depth (nth 1 prof-options))
(top (nth 2 prof-options))
(sort
(downcase (substring (nth 3 prof-options) 0 1))))
(if profilep
(if (and (string= file "./java.hprof")
(equal depth 5)
(equal top 20)
(string= sort "a"))
(list "-Xhprof")
(list
(format
"-Xhprof:file=%s,depth=%d,top=%d,sort=%s"
file depth top sort))))))
(defmethod jde-db-verify-arg ((this jde-db-debugger))
;; Set verify options.
(let ((verify-all (nth 0 jde-db-option-verify))
(verify-remote (nth 1 jde-db-option-verify)))
(if verify-all
(list"-Xverify")
; (if verify-remote
; (list "-Xverifyremote"))
(if (and
(not verify-all)
(not verify-remote))
(list "-Xnoverify")))))
(defmethod jde-db-command-line-args ((this jde-db-debugger))
"Generate command line args."
(if jde-db-option-vm-args
(mapcar
(lambda (arg)
arg)
jde-db-option-vm-args)))
(defmethod jde-db-host-arg ((this jde-db-debugger))
(if (not (string= jde-db-option-host ""))
(list "-host" jde-db-option-host)))
(defmethod jde-db-launch-arg ((this jde-db-debugger))
"Argument that tells the debugger to launch the
debuggee vm immediately instead of waiting for a
run command. Only the new (JDK 1.3) version of jdb
provides this option."
nil)
(defmethod jde-db-get-vm-args ((this jde-db-debugger))
(append
(jde-db-classic-mode-arg this)
(jde-db-launch-arg this)
(jde-db-classpath-arg this)
(jde-db-property-args this)
(jde-db-verbose-args this)
(jde-db-heap-size-args this)
(jde-db-command-line-args this)))
(defmethod jde-db-debugger-get-working-dir ((this jde-db-debugger))
(if (string= jde-run-working-directory "")
default-directory
(jde-normalize-path 'jde-run-working-directory)))
(defmethod jde-db-debugger-get-prog-args ((this jde-db-debugger))
)
(defmethod jde-db-debugger-start ((this jde-db-debugger))
"Start the debugger.")
(defmethod jde-db-debugger-launch ((this jde-db-debugger) main-class)
"Launch the application whose main class is MAIN-CLASS in debug mode.")
(defmethod jde-db-debugger-connect ((this jde-db-debugger) &optional listenp)
"Connect the debugger to an existing process.")
(defun jde-db-get-the-debugger ()
"Get the currently selected debugger. This function
returns an eieio object of type `jde-db-debugger'."
(if (string= (car jde-debugger) "JDEbug")
jde-dbs-the-debugger
(jde-jdb-get-jdb)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;;
;; Generic Debug Commands ;;
;; ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; The following commands serve as a generalized interface between the
;; JDE user and JDE-supported debuggers, e.g., jdb or JDEbug.
;; This section is a work in progress. It entails generalizing the
;; existing jdb and JDEbug commands and replacing those commands
;; with the generalized commands.
;;;###autoload
(defun jde-debug ()
"Run the debugger specified by `jde-debugger' on the Java application
whose source resides in the current buffer. This command determines
the main class of the application either from the variable
`jde-run-application-class' or from the source in the current
buffer. If `jde-run-application-class' does not specify a class, the
main class is assumed to be the class defined by the current source
buffer. This command creates a command buffer for the debug session."
(interactive)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; This is a temporary hack until I
;; wire up the JDEbug to this command.
(if (string= (car jde-debugger) "JDEbug")
(jde-bug-debug-app)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(let* ((debugger (jde-db-get-the-debugger))
(application-main-class
(let ((main-class jde-run-application-class))
(if (or
(not main-class)
(string= main-class ""))
(setq main-class
(if (buffer-file-name)
(concat (jde-db-get-package)
(file-name-sans-extension
(file-name-nondirectory (buffer-file-name))))
(read-string "Java class to debug: "))))
main-class))
(cmd-set (oref debugger cmd-set))
(launch-cmd (oref cmd-set launch-app)))
(jde-db-create-debuggee-app debugger application-main-class)
(if (not (oref debugger running-p))
(jde-db-debugger-start debugger))
(oset-default 'jde-db-debugger the-debugger debugger)
;; Forward to the debugger any breakpoint requests made
;; by the user before launching the application.
(if jde-db-breakpoints
(let ((bp-cmd (oref (oref debugger cmd-set) set-bp)))
(oset
bp-cmd
breakpoints
(mapcar (lambda (assoc-x) (cdr assoc-x)) jde-db-breakpoints))
(jde-db-exec-cmds debugger (list launch-cmd bp-cmd)))
(jde-db-exec-cmd debugger launch-cmd)))))
(defun jde-debugger-running-p ()
"Returns nonnil if the debugger is running."
(or
(and
(string= (car jde-debugger) "JDEbug")
(jde-dbs-debugger-running-p)
(jde-dbs-get-target-process))
(let ((debugger
(if (slot-boundp (jde-db-get-the-debugger) 'the-debugger)
(oref (jde-db-get-the-debugger) the-debugger))))
(and debugger
(oref debugger running-p)))))
(defun jde-debug-applet-init (applet-class applet-doc-path)
(let* ((debugger (jde-db-get-the-debugger))
(cmd-set (oref debugger cmd-set))
(launch-cmd (oref cmd-set launch-applet))
(debug-buf-name (concat "*debug-" applet-class "*"))
(applet-doc (file-name-nondirectory applet-doc-path))
(applet-doc-directory (file-name-directory applet-doc-path))
(source-directory default-directory)
(working-directory
(if applet-doc-directory
applet-doc-directory
source-directory)))
(jde-db-create-debuggee-applet debugger applet-doc-path)
(oset-default 'jde-db-debugger the-debugger debugger)
;; Forward to the debugger any breakpoint requests made
;; by the user before launching the application.
(if jde-db-breakpoints
(let ((bp-cmd (oref (oref debugger cmd-set) set-bp)))
(oset
bp-cmd
breakpoints
(mapcar (lambda (assoc-x) (cdr assoc-x)) jde-db-breakpoints))
(jde-db-exec-cmds debugger (list launch-cmd bp-cmd)))
(jde-db-exec-cmd debugger launch-cmd))))
(defun jde-debug-applet-internal (applet-doc)
(let ((applet-class jde-run-application-class))
(if (or
(not applet-class)
(string= applet-class ""))
(setq applet-class
(concat (jde-db-get-package)
(file-name-sans-extension
(file-name-nondirectory (buffer-file-name))))))
(jde-debug-applet-init applet-class applet-doc)))
;;;###autoload
(defun jde-debug-applet (&optional doc)
"Runs an applet in the jdb debugger. This function prompts you to enter
the path of an html document that displays the applet. If you
do not enter a path, this function next checks
whether `jde-run-applet-doc' specifies a document. If so, it displays
that specified document. Next, it checks whether the current directory
contains any html files. If so, it displays the first html file that
it finds. If if cannot find an html file, it signals an error. This
function runs appletviewer in jdb to permit debugging. On startup, it
sets a breakpoint in the init method of the class specified by
`jde-run-application-class' or in the class corresponding to the Java
file in the current buffer."
(interactive
(let ((insert-default-directory nil))
(list (read-file-name "Applet doc: " nil nil nil jde-run-applet-last-doc))))
(setq jde-run-applet-last-doc doc)
(let ((applet-doc-path
(if doc
doc
(if (and jde-run-applet-doc
(not (string= jde-run-applet-doc "")))
jde-run-applet-doc
(car (jde-run-find-html-files))))))
(if applet-doc-path
(jde-debug-applet-internal applet-doc-path)
(signal 'error "Could not find html document to display applet."))))
(defun jde-debug-run ()
"Start the current debuggee application."
(interactive)
(jde-assert-source-or-debug-buffer)
(let* ((debugger (oref 'jde-db-debugger the-debugger))
(debuggee (oref debugger debuggee))
(debuggee-status (oref debuggee status)))
(if (and (oref debugger running-p)
(oref debuggee-status running-p))
(error "Application %s is already running."
(oref debuggee main-class))
(let* ((cmd-set (oref debugger cmd-set))
(run (oref cmd-set run)))
(oset debuggee-status running-p t)
(oset debuggee-status stopped-p nil)
(oset debuggee-status suspended-p nil)
(jde-db-exec-cmd debugger run)))))
(defun jde-debug-cont ()
"Continues the current debuggee application from its current
stopping point."
(interactive)
(jde-assert-source-or-debug-buffer)
(let* ((debugger (oref 'jde-db-debugger the-debugger))
(debuggee (oref debugger debuggee))
(debuggee-status (oref debuggee status)))
(if (and (oref debugger running-p)
(or
(oref debuggee-status stopped-p)
(oref debuggee-status suspended-p)))
(let* ((cmd-set (oref debugger cmd-set))
(cont (oref cmd-set cont)))
(oset debuggee-status stopped-p nil)
(oset debuggee-status suspended-p nil)
(jde-db-exec-cmd debugger cont))
(let ((class (oref debuggee main-class)))
(message "Application %s is not stopped" class)))))
(defun jde-debug-quit ()
"Quit debugging the current application."
(interactive)
(jde-assert-source-or-debug-buffer)
(let* ((debugger (oref 'jde-db-debugger the-debugger))
(debuggee (oref debugger debuggee))
(debuggee-status (oref debuggee status)))
(if (and (oref debugger running-p)
(oref debuggee-status running-p))
(let* ((cmd-set (oref debugger cmd-set))
(quit (oref cmd-set quit)))
(jde-db-exec-cmd debugger quit))
(let ((class (oref debuggee main-class)))
(error "Application %s is not running" class)))))
(defun jde-debug-step-over ()
"Step to the next line in the current stack frame."
(interactive)
(jde-assert-source-or-debug-buffer)
(let* ((debugger (oref 'jde-db-debugger the-debugger))
(debuggee (oref debugger debuggee))
(debuggee-status (oref debuggee status)))
(if (and (oref debugger running-p)
(oref debuggee-status stopped-p))
(let* ((cmd-set (oref debugger cmd-set))
(step-over (oref cmd-set step-over)))
(oset debuggee-status stopped-p nil)
(jde-db-exec-cmd debugger step-over))
(let ((class (oref debuggee main-class)))
(error "Application %s is not stopped" class)))))
(defun jde-debug-step-into ()
"Step to the next line in the current program."
(interactive)
(jde-assert-source-or-debug-buffer)
(let* ((debugger (oref 'jde-db-debugger the-debugger))
(debuggee (oref debugger debuggee))
(debuggee-status (oref debuggee status)))
(if (and (oref debugger running-p)
(oref debuggee-status stopped-p))
(let* ((cmd-set (oref debugger cmd-set))
(step-into (oref cmd-set step-into)))
(oset debuggee-status stopped-p nil)
(jde-db-exec-cmd debugger step-into))
(let ((class (oref debuggee main-class)))
(error "Application %s is not stopped" class)))))
(defun jde-debug-step-out ()
"Continue execution to the end of the current method."
(interactive)
(jde-assert-source-or-debug-buffer)
(let* ((debugger (oref 'jde-db-debugger the-debugger))
(debuggee (oref debugger debuggee))
(debuggee-status (oref debuggee status)))
(if (and (oref debugger running-p)
(oref debuggee-status stopped-p))
(let* ((cmd-set (oref debugger cmd-set))
(step-out (oref cmd-set step-out)))
(oset debuggee-status stopped-p nil)
(jde-db-exec-cmd debugger step-out))
(let ((class (oref debuggee main-class)))
(error "Application %s is not stopped" class)))))
(defun jde-debug-up ()
"Move up the stack."
(interactive)
(jde-assert-source-or-debug-buffer)
(let* ((debugger (oref 'jde-db-debugger the-debugger))
(debuggee (oref debugger debuggee))
(debuggee-status (oref debuggee status)))
(if (and (oref debugger running-p)
(oref debuggee-status stopped-p))
(let* ((cmd-set (oref debugger cmd-set))
(up (oref cmd-set up)))
(jde-db-exec-cmd debugger up))
(let ((class (oref debuggee main-class)))
(error "Application %s is not stopped" class)))))
(defun jde-debug-down ()
"Move down the stack."
(interactive)
(jde-assert-source-or-debug-buffer)
(let* ((debugger (oref 'jde-db-debugger the-debugger))
(debuggee (oref debugger debuggee))
(debuggee-status (oref debuggee status)))
(if (and (oref debugger running-p)
(oref debuggee-status stopped-p))
(let* ((cmd-set (oref debugger cmd-set))
(down (oref cmd-set down)))
(jde-db-exec-cmd debugger down))
(let ((class (oref debuggee main-class)))
(error "Application %s is not stopped" class)))))
(defun jde-debug-where ()
"Show current stopping point."
(interactive)
(jde-assert-source-or-debug-buffer)
(let* ((debugger (oref 'jde-db-debugger the-debugger))
(debuggee (oref debugger debuggee))
(debuggee-status (oref debuggee status)))
(if (and (oref debugger running-p)
(oref debuggee-status stopped-p))
(let* ((cmd-set (oref debugger cmd-set))
(where (oref cmd-set where)))
(jde-db-exec-cmd debugger where))
(let ((class (oref debuggee main-class)))
(error "Application %s is not stopped" class)))))
(defun jde-db-spec-breakpoint ()
"Creates a specification for the breakpoint at the
current line in the current file. Returns an object of
type `jde-db-breakpoint'."
(let ((file (buffer-file-name)))
(setq jde-db-breakpoint-id-counter
(1+ jde-db-breakpoint-id-counter))
(jde-db-breakpoint
(format "breakpoint: %s %d"
(file-name-nondirectory file)
jde-db-breakpoint-id-counter)
:id jde-db-breakpoint-id-counter
:file file
:class (concat (jde-db-get-package)
(jde-db-get-class)))))
(defun jde-debug-set-breakpoint ()
"Ask debugger to set a breakpoint at the current line
in the current buffer."
(interactive)
(let* ((file (buffer-file-name))
(line (jde-get-line-at-point))
(bp (jde-db-find-breakpoint file line)))
(unless bp
(setq bp (jde-db-spec-breakpoint))
(oset bp line line)
(jde-db-breakpoints-add bp)
(if (jde-db-debuggee-running-p)
(let* ((debugger (oref 'jde-db-debugger the-debugger))
(bp-cmd (oref (oref debugger cmd-set) set-bp)))
(oset bp-cmd breakpoints (list bp))
(jde-db-exec-cmd debugger bp-cmd))))))
(defun jde-debug-clear-breakpoint()
"Clear the breakpoint at the current line in the current buffer."
(interactive)
(jde-assert-source-buffer)
(let* ((file (buffer-file-name))
(line (jde-get-line-at-point))
(bp (jde-db-find-breakpoint file line)))
(if bp
(if (jde-db-debuggee-running-p)
(let* ((debugger (oref 'jde-db-debugger the-debugger))
(bp-cmd (oref (oref debugger cmd-set) clear-bp)))
(oset bp-cmd breakpoints (list bp))
(jde-db-exec-cmd debugger bp-cmd))
(jde-db-delete-breakpoint bp)))))
(defun jde-debug-toggle-breakpoint ()
"Sets or clears a breakpoint at the current line."
(interactive)
(assert (eq major-mode 'jde-mode) nil
"This command works only in a Java source buffer.")
(let* ((file (buffer-file-name))
(line (jde-get-line-at-point))
(bp (jde-db-find-breakpoint file line)))
(assert (jde-db-src-dir-matches-file-p file) nil
"You cannot set a breakpoint in a file that is not in `jde-sourcepath'.")
(if bp
(jde-debug-clear-breakpoint)
(jde-debug-set-breakpoint))))
(defun jde-debug-clear-breakpoints()
"Clear all existing breakpoints."
(interactive)
(if jde-db-breakpoints
(if (jde-db-debuggee-running-p)
(let* ((debugger (oref 'jde-db-debugger the-debugger))
(bp-cmd (oref (oref debugger cmd-set) clear-bp)))
(oset
bp-cmd
breakpoints
(mapcar
(lambda (assoc-x) (cdr assoc-x))
jde-db-breakpoints))
(jde-db-exec-cmd debugger bp-cmd))
(loop for bp-assoc in jde-db-breakpoints do
(let ((bp (cdr bp-assoc)))
(jde-db-delete-breakpoint bp))))))
(defvar jde-db-minibuffer-local-map nil
"Keymap for minibuffer prompting of jdb startup command.")
(if jde-db-minibuffer-local-map
()
(setq jde-db-minibuffer-local-map (copy-keymap minibuffer-local-map))
(define-key
jde-db-minibuffer-local-map "\C-i" 'comint-dynamic-complete-filename))
(defun class-from-file-name (file-name)
(file-name-sans-extension (file-name-nondirectory file-name)))
(defun jde-db-get-vm-args-from-user ()
(if jde-db-read-vm-args
(jde-run-parse-args
(read-from-minibuffer
"Vm args: "
(car jde-db-interactive-vm-arg-history)
nil nil
'jde-db-interactive-vm-arg-history))))
(defun jde-db-get-app-args-from-user ()
(if jde-db-read-app-args
(jde-run-parse-args
(read-from-minibuffer
"Application args: "
(car jde-db-interactive-app-arg-history)
nil nil
'jde-db-interactive-app-arg-history))))
(defun jde-db-get-package ()
"Return the package of the class whose source file resides in the current
buffer."
(save-excursion
(goto-char (point-min))
(if (re-search-forward "^[ \t]*\\<\\(package\\) +\\([^ \t\n]*\\) *;" (point-max) t)
(concat (buffer-substring-no-properties (match-beginning 2) (match-end 2))
"."))))
(defun jde-db-get-class () "Lookups and return fully qualified class
name, e.g. A$B if point is in inner class B of A."
(interactive)
(let ((class-info (jde-parse-get-innermost-class-at-point)))
(if class-info
(save-excursion
(goto-char (cdr class-info))
(let ((parent (jde-db-get-class)))
(if (not parent)
(car class-info)
(concat parent "$" (car class-info))))))))
(defun jde-db-src-dir-matches-file-p (file)
"Return true if one of `jde-sourcepath'
matches FILE."
(let* ((directory-sep-char ?/)
(filename (jde-normalize-path file)))
(find-if
(lambda (dir-x)
(string-match
(concat
"^"
(jde-normalize-path
dir-x
'jde-sourcepath))
filename))
jde-sourcepath)))
(provide 'jde-db)
;; Change History
;; $Log: jde-db.el,v $
;; Revision 1.131 2005/01/18 05:23:31 paulk
;; Change variables named assoc to assoc-x. This is intended to fix a "Symbol's value as variable is void: old-assoc" problem when debugging with the compiled version of JDE in xemacs/cygwin. Thanks to Henry S. Thompson.
;;
;; Revision 1.130 2004/12/06 05:50:51 paulk
;; Fix problem in jde-debugger-running-p.
;;
;; Revision 1.129 2004/12/06 05:38:30 paulk
;; Fixed regression in jde-debugger-running-p and moved it from jde.el to this package.
;;
;; Revision 1.128 2004/09/20 05:30:36 paulk
;; Changes needed to make restructured debugging code work for applets.
;;
;; Revision 1.127 2004/09/02 04:50:19 paulk
;; More infrastructure work to support applet debugging.
;;
;; Revision 1.126 2004/09/01 06:20:32 paulk
;; Restructured to accommodate debugging applets.
;;
;; Revision 1.125 2004/06/21 15:03:51 jslopez
;; Fixes problem with jdb breakpoints. Opening a new java file after setting a
;; breakpoint will prevent the user from removing the breakpoint. The method
;; jde-db-remark-breakpoints was not taking into account if the current buffer was
;; the same as the buffer of the breakpoint. This has the side effect of messing
;; th e markers for all the breakpoints that did not belong to the current buffer.
;;
;; Revision 1.124 2004/05/14 03:18:24 paulk
;; Moved jde-line-beginning-position and jde-line-end-position from
;; jde-db.el to jde-util.el. Ultimately, these functions should be
;; replaced by line-beginning-position and line-end-position as
;; jde-xemacs.el provides XEmacs definitions for both functions.
;;
;; Revision 1.123 2004/02/18 13:42:20 jslopez
;; Prevents issuing multiple set breakpoint commands to jdb once a breakpoint is
;; already set.
;;
;; Revision 1.122 2004/02/10 05:13:21 jslopez
;; Adds the option "gigabytes" for stack size and heap size.
;;
;; Revision 1.121 2003/09/18 05:28:29 paulk
;; Created a set of proxie classes for standard JPDA connectors. Added
;; a connector slot to jde-db-debuggee class. This is intended to
;; support connecting a debugger to a debuggee class in attach or
;; listen mode.
;;
;; Revision 1.120 2003/05/28 05:54:20 paulk
;; Deleted definition of jde-db-startup-commands variable, which is no longer used.
;;
;; Revision 1.119 2003/05/14 06:36:42 paulk
;; Replace jde-db-option-connect-address with jde-db-option-listen-address and
;; jde-db-option-attach-address.
;;
;; Revision 1.118 2003/05/13 05:03:47 paulk
;; Change the jde-db-option-connect-address variable so that a nil
;; value means that the debugger attach and listen commands should
;; prompt for a connect address.
;;
;; Revision 1.117 2003/03/28 05:33:29 andyp
;; XEmacs optimizations for JDEbug and efc.
;;
;; Revision 1.116 2003/02/26 03:30:52 jslopez
;; Adds color to the list of breakpoints.
;; The color correspond to the status of the breakpoint, active, speficied,
;; or requested.
;;
;; Revision 1.115 2003/02/25 17:45:26 jslopez
;; Removes the file name from the breakpoints list.
;; Changes the format to class:line number.
;;
;; Revision 1.114 2003/02/25 06:53:29 paulk
;; Created a generalized jde-debug command and wired it up to jdb.
;; Next step is to wire it up to JDEbug.
;;
;; Revision 1.113 2003/01/12 19:15:20 jslopez
;; Adds function jde-debug-list-breakpoints.
;;
;; Revision 1.112 2002/10/30 12:59:59 paulk
;; Fixed XEmacs compatibility fix for beginning/end-of-line functions
;; and moved the fix from jde-bug.el to this file where the
;; functions are used. Thanks to Daniel Serodio and Eric Ludlum.
;;
;; Revision 1.111 2002/08/27 04:19:01 paulk
;; Fixes bug in jde-db-src-dir-matches-file-p. Thanks to Andy Piper.
;;
;; Revision 1.110 2002/08/10 03:18:30 paulk
;; Modified jde-db-breakpoint-marker class so that breakpoint highlighting extends
;; the entire width of the buffer window--not just to the end of the line.
;; Thanks to Kevin A. Burton.
;;
;; Revision 1.109 2002/08/07 06:36:18 paulk
;; Removed code intended to eliminate spurious warnings when byte-compiling the JDEE. The
;; removed code now resides in a separate package, jde-compat.el. Thanks to Andy Piper
;; for suggesting this restructuring. Also fixed a number of compiler warnings caused
;; by genuine bugs.
;;
;; Revision 1.108 2002/07/12 12:20:27 jslopez
;; Fixes jde-db-option-verbose when set to load classes.
;; It was appending -v instead -f -verbose:class.
;;
;; Revision 1.107 2002/06/17 07:24:08 paulk
;; Updated the JDEE's applet debugging command to
;; work with its new jdb interface.
;;
;; Revision 1.106 2002/06/12 07:04:28 paulk
;; XEmacs compatibility fix: set win32-quote-process-args wherever
;; the JDEE sets w32-quote-process-args. This allows use of spaces in
;; paths passed as arguments to processes (e.g., javac) started by
;; the JDEE.
;;
;; Revision 1.105 2002/06/11 06:34:38 paulk
;; Provides support for paths containing spaces as jdb arguments via the following change:
;; locally set the w32-quote-process-args variable to a quotation mark when launching
;; the jdb process.
;;
;; Revision 1.104 2002/05/21 06:34:27 paulk
;; Updated to support J2SDK 1.4.0 version of jdb.
;;
;; Revision 1.103 2002/05/12 06:37:33 paulk
;; Moved jde-db-search-src-dirs to the jde-util package as jde-search-src-dirs.
;;
;; Revision 1.102 2002/03/31 07:49:51 paulk
;; Renamed jde-db-source-directories. The new name is jde-sourcepath.
;;
;; Revision 1.101 2002/03/12 04:43:38 paulk
;; Removed initarg for class slots to silence eieio warning.
;;
;; Revision 1.100 2002/03/06 13:00:18 paulk
;; * Removed references to obsolete jde-db-option-attach variable.
;; * The jdb launch, attach, and listen commands now update the
;; the-debugger field in the jde-db-debugger class.
;;
;; Revision 1.99 2002/03/04 06:43:41 paulk
;; Adds support for connecting debugger to an independently started
;; process, using either attach or listen mode.
;;
;; Revision 1.98 2002/02/04 05:47:17 paulk
;; Added code to rehighlight breakpoints if the user kills a
;; buffer for a source file that contains breakpoints and
;; then reopens the file.
;;
;; Revision 1.97 2002/01/19 06:42:22 paulk
;; Minor updates.
;;
;; Revision 1.96 2002/01/15 13:33:27 paulk
;; Adds a Clear Breakpoints command for jdb.
;;
;; Revision 1.95 2002/01/14 13:30:42 paulk
;; - Now defines three breakpoint marker colors: green for a specified breakpoint,
;; yellow for a requested breakpoint, and red for an enabled breakpoint.
;;
;; - The debug application command now requests all specified
;; breakpoints at the beginning of a debug session.
;;
;; - The debug application command now changes the color of all breakpoints
;; to specified at the end of a debug session.
;;
;; Revision 1.94 2002/01/11 05:43:37 paulk
;; - Use overlays/extents to record location of breakpoints in a buffer.
;; - Use different colors to indicate requested and enabled breakpoints.
;;
;; Revision 1.93 2002/01/04 07:12:17 paulk
;; Fixed XEmacs compatibility bug that caused the toggle
;; breakpoint command to signal an error that it could not
;; find the source file in jde-db-source-directories.
;;
;; Revision 1.92 2002/01/02 05:29:45 paulk
;; Added a stack-depth field to the jde-db-debuggee class.
;;
;; Revision 1.91 2001/12/31 07:51:09 paulk
;; Implemented generalized quit, step-over, step-into, stack up, stack down,
;; and stack where commands.
;;
;; Revision 1.90 2001/12/28 05:32:55 paulk
;; Implemented generalized debuggee process run and continue commands.
;;
;; Revision 1.89 2001/12/17 08:02:05 paulk
;; Initial version of generalized clear breakpoint command. Created generalized
;; classes to represent the debuggee process.
;;
;; Revision 1.88 2001/12/14 05:08:37 paulk
;; Setup generic methods for processing the debugger output and status
;; change notification.
;;
;; Revision 1.87 2001/12/10 04:29:55 paulk
;; Created generalized breakpoint framework. Provided initial
;; implementation for jdb. A lot of work remains.
;;
;; Revision 1.86 2001/12/04 05:37:35 paulk
;; Moved jdb related code to jde-jdb.el.
;;
;; Revision 1.85 2001/11/30 03:08:03 jslopez
;; Fixes reference to free variables.
;;
;; Revision 1.84 2001/11/27 08:03:46 paulk
;; Updated jdb-db to invoke the version of jdb appropriate to the JDK for the current project.
;;
;; Revision 1.83 2001/11/26 02:45:51 paulk
;; Added reference to jde-db-source-directories in invocation of jde-normalize-path
;; in jde-db-src-dir-matches-file-p.
;;
;; Revision 1.82 2001/11/25 06:34:12 paulk
;; Added function jde-db-src-dir-matches-file-p. Thanks to
;; Kevin Burton for initial implementation.
;;
;; Revision 1.81 2001/11/04 14:58:05 paulk
;; Restored jde-db-classic-mode-vm option.
;;
;; Revision 1.80 2001/11/04 14:51:23 paulk
;; Fixed typo in classic mode argument (i.e., -tclassic should be -classic).
;;
;; Revision 1.79 2001/09/30 05:29:32 paulk
;; Changed the name of the customization variable jde-db-debugger to be consistent with jde-compiler and to avoid conflict with jde-db-debugger class.
;;
;; Revision 1.78 2001/09/28 04:48:00 paulk
;; Defines a new eieio class of debuggers that serves as the parent
;; for jdb and JDEbug debuggers. Create a jde-db-jdb class that serves
;; as the root of jdb and oldjdb.
;;
;; Revision 1.77 2001/07/31 05:11:50 paulk
;; ReleaseNotes.txt
;;
;; Revision 1.76 2001/04/16 05:49:34 paulk
;; Normalized paths. Thanks to Nick Sieger.
;;
;; Revision 1.75 2001/04/12 04:42:23 paulk
;; Normalize jde-run-working-directory.
;;
;; Revision 1.74 2001/04/11 03:21:33 paulk
;; Updated to resolve relative paths relative to the project file that defines them. Thanks to Nick Sieger.
;;
;; Revision 1.73 2001/04/08 04:14:29 paulk
;; jdb interface has been fixed to work around JDK 1.3 bug that causes the jdb command prompt to sometimes appear in the wrong place in jdb output. Thanks to Andy Bennett <andrew.bennett@ericsson.com> for this fix.
;;
;; Revision 1.72 2001/03/16 04:07:03 paulk
;; Fixed regular expression for finding package in source buffer so that there must be a space between package and the package name. This is to prevent false hits. Thanks to Rory Molinari <molinari@math.lsa.umich.edu>.
;;
;; Revision 1.71 2001/03/13 04:14:54 paulk
;; Split jde-find-class-source into to files, one of which returns the path of the source file while the other opens the file in a buffer.
;;
;; Revision 1.70 2001/02/26 04:17:50 paulk
;; jde-db now handles case where jde-global-classpath and jde-db-option-classpath are nil.
;;
;; Revision 1.69 2001/02/03 08:44:56 paulk
;; Changed declaration of customized variables to allow path completion.
;; Now allows environment variables in jde-db-source-directories.
;;
;; Revision 1.68 2001/02/03 07:28:06 paulk
;; Now uses generalized jde-build-classpath function to build classpath argument to debugger.
;;
;; Revision 1.67 2000/12/18 05:22:45 paulk
;; *** empty log message ***
;;
;; Revision 1.66 2000/10/10 06:36:59 paulk
;; Fixed bug where selecting Other and Executable as the debugger results in the executable name being inserted twice.
;;
;; Revision 1.65 2000/10/08 12:55:39 paulk
;; *** empty log message ***
;;
;; Revision 1.64 2000/08/19 06:46:22 paulk
;; Updated to handle JDK 1.3 version of jdb. Source pointer now moves to
;; current location in current stack frame.
;;
;; Revision 1.63 2000/06/12 08:37:43 paulk
;; Now displays JDEbug menu when running XEmacs.
;;
;; Revision 1.62 2000/05/10 05:41:32 paulk
;; The JDEbug menu now appears or disappears when you select or deselect JDEbug as the current debugger.
;;
;; Revision 1.61 2000/03/16 05:08:25 paulk
;; Added JDEbug option to jde-db-debugger.
;;
;; Revision 1.60 2000/03/08 05:40:01 paulk
;; jde-db-format-command now signals an error it it cannot determine the containing class.
;;
;; Revision 1.59 2000/02/10 02:50:32 paulk
;; Replaced jde expand file name function with expand-file-name.
;;
;; Revision 1.58 2000/02/01 04:08:12 paulk
;; Modified the Jdb->Set Breakpoint command (gud-break) to set breakpoints correctly
;; in inner classes.
;;
;; Revision 1.57 2000/01/15 08:01:52 paulk
;; Reimplemented directory search functions.
;;
;; Revision 1.56 1999/11/16 05:58:17 paulk
;; Added trace method commands and skeletons for trace class and cancel
;; trace commands.
;;
;; Revision 1.55 1999/11/04 05:49:10 paulk
;; Amended jde-db-make-qualified-class-name-regexp to permit package names to begin
;; with non-word characters, e.g., underscores. Contributed by "Patrick J. McNerthney"
;; <pat@mcnerthney.com>.
;;
;; Revision 1.54 1999/09/28 04:06:59 paulk
;; Supplied missing left parentheses.
;;
;; Revision 1.53 1999/09/05 04:33:28 paulk
;; Added support for running vm in classic mode.
;;
;; Revision 1.52 1999/03/10 16:55:02 paulk
;; Fixed jde-db-find-file to return the current buffer if it cannot find a file and
;; XEmacs is the editor.
;;
;; Revision 1.51 1999/03/06 00:55:38 paulk
;; Changed default value of jde-db-source-directories to be nil.
;;
;; Revision 1.50 1999/03/06 00:44:08 paulk
;; Make sure that case-sensitive matching is used when extracting package names from
;; debugger breakpoint messages.
;;
;; Revision 1.49 1999/02/26 15:52:52 paulk
;; Catch non-existent directory errors when searching for source
;; files and packages. Thanks to Thanh Nguyen <Thanh.Nguyen@Eng.Sun.COM>
;; for finding and providing a fix for this bug.
;;
;; Revision 1.48 1999/02/25 15:24:43 paulk
;; Fixed jde-db-find-file so that it displays an error when it cannot find a file instead of
;; opening an empty source buffer.
;;
;; Provided a set-value function for jde-db-source-directories that appends a slash to
;; the end of each path if the path does not already end in a slash.
;;
;; Defined a new command, jde-find-class-source, that finds and opens the source file
;; for a specified class.
;;
;; Improved the regular expression used by jde-db-get-package to ignore tabs at the
;; beginning of a line.
;;
;; Revision 1.47 1999/02/15 02:02:35 paulk
;; Forgot to concatenate in last fix.
;;
;; Revision 1.46 1999/02/15 00:52:44 paulk
;; Fixed bug in qualified-class-name-regexp.
;;
;; Revision 1.45 1999/02/10 18:35:51 paulk
;; Added support for appletviewer -encoding and -J options.
;;
;; Revision 1.44 1999/02/08 17:18:17 paulk
;; jde-db-applet now supports file completion and remembers the last path entered.
;;
;; Revision 1.43 1999/02/06 03:55:11 paulk
;; Fixed bug and generalized regular expression in jde-db-make-qualified-class-name-regexp.
;;
;; Revision 1.42 1999/02/03 18:12:03 paulk
;; Fixed regular expression in jde-db-get-package to eliminate spurious hits, e.g.
;; commented out package statements. Thanks to Frederic Baumann <baumann@ilog.fr>
;; for reporting this bug.
;;
;; Revision 1.41 1999/02/03 17:48:34 paulk
;; Patched jde-db-get-app-args-from-user to remember arguments.
;; Thanks to Brian Burton <brian@burton-computer.com>
;;
;; Revision 1.40 1999/02/03 17:41:56 paulk
;; Fixed jde-db-make-qualified-class-name-regexp to handle packages with underscores.
;; Thanks to Brian Burton <brian@burton-computer.com>.
;;
;; Revision 1.39 1999/02/03 17:26:46 paulk
;; Changed jde-db-make-qualified-class-name-regexp to handle inner classes.
;; Thanks to Michael Lepore <lepore@process.com> for this fix.
;;
;; Revision 1.38 1999/02/03 01:53:49 paulk
;; Fixed jde-db-applet to check the current directory for the html file to run.
;;
;; Revision 1.37 1999/02/02 16:06:01 paulk
;; Added the jde-db-applet command. This command allows you to debug an applet, using
;; appletviewer.
;;
;; Revision 1.36 1999/02/02 15:25:28 paulk
;; Removed unwanted space in -D (properties) debug option.
;;
;; Revision 1.35 1999/01/17 00:36:43 paulk
;; Now uses gud-find-c-expr or find-c-expr, whichever is bound.
;;
;; Revision 1.34 1999/01/13 22:18:08 paulk
;; Added Andy Piper's NT/XEmacs 21 compatibility changes.
;; Changed find-c-expr to gud-findc-expr
;;
;; Revision 1.33 1998/11/22 18:18:36 paulk
;; Made comint-prompt-regexp and paragraph-start local variables.
;;
;; Revision 1.32 1998/11/04 02:59:09 paulk
;; Corrected verbiage in Jde Debugger Options description.
;;
;; Revision 1.31 1998/09/12 00:05:57 paulk
;; Debugger now runs application from directory specified by jde-run-working-directory.
;;
;; Revision 1.30 1998/06/30 04:03:19 paulk
;; Added variables `jde-db-read-vm-args' and `jde-db-read-app-args'. The use of
;; these variables is the same as the corresponding jde-run variables.
;;
;; Revision 1.29 1998/06/29 02:50:44 paulk
;; Fixed bug in marker filter.
;;
;; Revision 1.28 1998/06/27 03:34:31 paulk
;; Provided a hack to handle reordering of threaded messages on Solaris.
;;
;; Provided code to handle case where current class has no line number
;; information.
;;
;; Revision 1.27 1998/06/25 04:27:23 paulk
;; Removed debug messages from jde-db-marker-filter.
;;
;; Revision 1.26 1998/06/25 04:21:10 paulk
;; Modified jde-db-marker-filter to accummulate debugger output
;; in chunks. Fixes bug reported by Eric Prud'hommeaux (eric@w3.org).
;;
;; Revision 1.25 1998/06/22 03:52:28 paulk
;; Added jde-db-startup-commands variable. This variable allows you to
;; specify debugger commands to run when the debugger is started.
;;
;; Revision 1.24 1998/06/21 00:09:43 paulk
;; Added a customizable feature, jde-db-set-initial-breakpoint, that causes
;; the JDE to set an initial breakpoint in an app's main routine and run
;; to the breakpoint on debugger startup. The feature is enabled by default.
;;
;; Revision 1.23 1998/06/20 23:42:07 paulk
;; Made jde-db-marker-regexp a custom variable to facilitate the use of the JDE
;; with debuggers other than jdb.
;;
;; Changed the marker regular expression to detect only jdb breakpoint messages,
;; i.e., messages of the form
;;
;; Breakpoint hit: qualified.class.name (class:line)
;;
;; This should eliminate the problem of spurious hits when exceptions occur and
;; stack traces are printed.
;;
;; Revision 1.22 1998/05/27 06:09:46 paulk
;; Added autoload comments.
;;
;; Revision 1.21 1998/03/27 04:16:12 kinnucan
;; Fixed typo in the code that displays the jdb menu on XEmacs.
;;
;; Revision 1.20 1998/03/27 04:14:53 kinnucan
;; Modified jde-db-search-src-dirs to take current package as an
;; argument rather than use a global variable. This allows
;; it to be used by jde-java-build function.
;;
;; Revision 1.19 1998/03/18 03:54:06 kinnucan
;; Changed jde-db-marker-regexp to account for inner classes.
;; Thanks to Andreas Rasmusson <Andreas.Rasmusson@sics.se> for
;; providing this fix.
;;
;; Revision 1.18 1998/03/04 04:28:36 kinnucan
;; Added test for jde-run-application-class = "" to jde-db
;;
;; Revision 1.17 1998/02/27 22:16:34 kinnucan
;; Changed copyright to Paul Kinnucan.
;; Have not yet assigned rights to FSF.
;;
;; Revision 1.16 1998/02/27 22:15:24 kinnucan
;; Added support for Emacs customization feature.
;;
;; Revision 1.15 1998/02/17 04:16:38 kinnucan
;; Fixed bug in jde-deb-set-source-paths that caused the last
;; directory to not be normalized (i.e., slash appended).
;;
;; Revision 1.14 1998/02/12 05:15:38 kinnucan
;; Changed the jde-db-search-src-dirs to search the source directory list from
;; front to back instead of back to front. The former search order did not allow newer versions of the same class to shadow older versions. Thanks to "David J. Biesack" <sasdjb@unx.sas.com> for supplying this fix.
;;
;; Revision 1.13 1998/02/12 04:57:13 kinnucan
;; Fixed bug in jde-db-marker-filter that sometimes prevented the JDE from
;; loading the correct source file. Thanks to David J. Biesack
;; <sasdjb@unx.sas.com> for supplying the fix.
;;
;; Revision 1.12 1997/10/30 05:42:37 kinnucan
;; Made configuration variables settable.
;;
;; Revision 1.11 1997/10/26 05:49:59 kinnucan
;; Applied Derek Young's patch to cause jde to qualify class names
;; when setting a breakpoint.
;;
;; Revision 1.10 1997/10/20 05:27:48 kinnucan
;; Removed reference to deleted function jde-db-massage-args
;;
;; Revision 1.9 1997/10/11 01:36:05 kinnucan
;; Fixed bug in jde-db-search-src-dirs discovered by Jonathan Payne.
;;
;; Revision 1.8 1997/10/06 14:40:53 kinnucan
;; Fixed bugs in jde-db-set-debugger command.
;;
;; Revision 1.7 1997/10/05 21:20:15 kinnucan
;; 1. Added the variables jde-db-debugger and jde-db-debugger-is-executable
;; and the associated setter function jde-db-set-debugger. These allow
;; you to specify a custom debugger for the JDE>
;;
;; 2. Added jde-db-args and jde-db-app-args and the associated setter
;; functions. These allow you to specify debugger and application
;; command line arguments.
;;
;; Revision 1.6 1997/10/05 04:53:04 kinnucan
;; Fixed bug in print object menu item.
;;
;; Revision 1.5 1997/08/26 14:53:39 paulk
;; Fixed bug in check-source-path.
;;
;; Revision 1.4 1997/08/26 08:52:14 kinnucan
;; Tweaked JDE Version number for JDE 1.8 release.
;;
;; Revision 1.3 1997/07/05 04:18:10 kinnucan
;; Updated make-jdb-command to run either the class previously specifed with
;; the jde-run-set-app command or the class corresponding to the code in the
;; current buffer.
;;
;; Revision 1.2 1997/06/18 18:45:11 paulk
;; Added error-checking to jde-db-set-source-paths function. Now checks for
;; existence of specified directories and appends a terminal slash to paths
;; that lack it.
;;
;; Revision 1.1 1997/06/18 17:21:59 paulk
;; Initial revision
;;
;;; end of jde-db.el
|