Mercurial > emacs
annotate lisp/progmodes/gud.el @ 103813:c7da7466b614
(syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Thu, 09 Jul 2009 18:56:26 +0000 |
parents | b2b747edcf7e |
children | e48e0579baed |
rev | line source |
---|---|
51494 | 1 ;;; gud.el --- Grand Unified Debugger mode for running GDB and other debuggers |
2 | |
3 ;; Author: Eric S. Raymond <esr@snark.thyrsus.com> | |
4 ;; Maintainer: FSF | |
5 ;; Keywords: unix, tools | |
6 | |
64697
7767f4fb012a
* progmodes/gdb-ui.el (gdb-enable-debug-log): Add autoload cookie.
Nick Roberts <nickrob@snap.net.nz>
parents:
64345
diff
changeset
|
7 ;; Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 2000, 2001, 2002, 2003, |
100908 | 8 ;; 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. |
51494 | 9 |
10 ;; This file is part of GNU Emacs. | |
11 | |
94673
52b7a8c22af5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94477
diff
changeset
|
12 ;; GNU Emacs is free software: you can redistribute it and/or modify |
51494 | 13 ;; it under the terms of the GNU General Public License as published by |
94673
52b7a8c22af5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94477
diff
changeset
|
14 ;; the Free Software Foundation, either version 3 of the License, or |
52b7a8c22af5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94477
diff
changeset
|
15 ;; (at your option) any later version. |
51494 | 16 |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
94673
52b7a8c22af5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94477
diff
changeset
|
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
51494 | 24 |
25 ;;; Commentary: | |
26 | |
91940
10cfb707cf0e
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
91939
diff
changeset
|
27 ;; The ancestral gdb.el was by W. Schelter <wfs@rascal.ics.utexas.edu>. |
10cfb707cf0e
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
91939
diff
changeset
|
28 ;; It was later rewritten by rms. Some ideas were due to Masanobu. Grand |
62825
a6b83140d7d1
(gud-goto-info): Use info. Don't use require.
Nick Roberts <nickrob@snap.net.nz>
parents:
62395
diff
changeset
|
29 ;; Unification (sdb/dbx support) by Eric S. Raymond <esr@thyrsus.com> Barry |
a6b83140d7d1
(gud-goto-info): Use info. Don't use require.
Nick Roberts <nickrob@snap.net.nz>
parents:
62395
diff
changeset
|
30 ;; Warsaw <bwarsaw@cen.com> hacked the mode to use comint.el. Shane Hartman |
a6b83140d7d1
(gud-goto-info): Use info. Don't use require.
Nick Roberts <nickrob@snap.net.nz>
parents:
62395
diff
changeset
|
31 ;; <shane@spr.com> added support for xdb (HPUX debugger). Rick Sladkey |
a6b83140d7d1
(gud-goto-info): Use info. Don't use require.
Nick Roberts <nickrob@snap.net.nz>
parents:
62395
diff
changeset
|
32 ;; <jrs@world.std.com> wrote the GDB command completion code. Dave Love |
a6b83140d7d1
(gud-goto-info): Use info. Don't use require.
Nick Roberts <nickrob@snap.net.nz>
parents:
62395
diff
changeset
|
33 ;; <d.love@dl.ac.uk> added the IRIX kluge, re-implemented the Mips-ish variant |
a6b83140d7d1
(gud-goto-info): Use info. Don't use require.
Nick Roberts <nickrob@snap.net.nz>
parents:
62395
diff
changeset
|
34 ;; and added a menu. Brian D. Carlstrom <bdc@ai.mit.edu> combined the IRIX |
a6b83140d7d1
(gud-goto-info): Use info. Don't use require.
Nick Roberts <nickrob@snap.net.nz>
parents:
62395
diff
changeset
|
35 ;; kluge with the gud-xdb-directories hack producing gud-dbx-directories. |
a6b83140d7d1
(gud-goto-info): Use info. Don't use require.
Nick Roberts <nickrob@snap.net.nz>
parents:
62395
diff
changeset
|
36 ;; Derek L. Davies <ddavies@world.std.com> added support for jdb (Java |
a6b83140d7d1
(gud-goto-info): Use info. Don't use require.
Nick Roberts <nickrob@snap.net.nz>
parents:
62395
diff
changeset
|
37 ;; debugger.) |
51494 | 38 |
39 ;;; Code: | |
40 | |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
41 (eval-when-compile (require 'cl)) ; for case macro |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
42 |
51494 | 43 (require 'comint) |
44 | |
65233
88dc4b03facf
(gdb-active-process, gdb-define-alist, gdb-macro-info, gdb-server-prefix,
Juanma Barranquero <lekktu@gmail.com>
parents:
65044
diff
changeset
|
45 (defvar gdb-active-process) |
88dc4b03facf
(gdb-active-process, gdb-define-alist, gdb-macro-info, gdb-server-prefix,
Juanma Barranquero <lekktu@gmail.com>
parents:
65044
diff
changeset
|
46 (defvar gdb-define-alist) |
88dc4b03facf
(gdb-active-process, gdb-define-alist, gdb-macro-info, gdb-server-prefix,
Juanma Barranquero <lekktu@gmail.com>
parents:
65044
diff
changeset
|
47 (defvar gdb-macro-info) |
88dc4b03facf
(gdb-active-process, gdb-define-alist, gdb-macro-info, gdb-server-prefix,
Juanma Barranquero <lekktu@gmail.com>
parents:
65044
diff
changeset
|
48 (defvar gdb-show-changed-values) |
85589
a86030d75a46
(gdb-source-window, gud-tooltip-mode)
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85503
diff
changeset
|
49 (defvar gdb-source-window) |
65233
88dc4b03facf
(gdb-active-process, gdb-define-alist, gdb-macro-info, gdb-server-prefix,
Juanma Barranquero <lekktu@gmail.com>
parents:
65044
diff
changeset
|
50 (defvar gdb-var-list) |
67097
9af04bbaf1e0
(gud-speedbar-menu-items): Add gdb-speedbar-auto-raise as radio button.
Nick Roberts <nickrob@snap.net.nz>
parents:
66978
diff
changeset
|
51 (defvar gdb-speedbar-auto-raise) |
85589
a86030d75a46
(gdb-source-window, gud-tooltip-mode)
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85503
diff
changeset
|
52 (defvar gud-tooltip-mode) |
a86030d75a46
(gdb-source-window, gud-tooltip-mode)
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85503
diff
changeset
|
53 (defvar hl-line-mode) |
a86030d75a46
(gdb-source-window, gud-tooltip-mode)
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85503
diff
changeset
|
54 (defvar hl-line-sticky-flag) |
65233
88dc4b03facf
(gdb-active-process, gdb-define-alist, gdb-macro-info, gdb-server-prefix,
Juanma Barranquero <lekktu@gmail.com>
parents:
65044
diff
changeset
|
55 (defvar tool-bar-map) |
88dc4b03facf
(gdb-active-process, gdb-define-alist, gdb-macro-info, gdb-server-prefix,
Juanma Barranquero <lekktu@gmail.com>
parents:
65044
diff
changeset
|
56 |
85589
a86030d75a46
(gdb-source-window, gud-tooltip-mode)
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85503
diff
changeset
|
57 |
51494 | 58 ;; ====================================================================== |
59 ;; GUD commands must be visible in C buffers visited by GUD | |
60 | |
61 (defgroup gud nil | |
62 "Grand Unified Debugger mode for gdb and other debuggers under Emacs. | |
80136
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
63 Supported debuggers include gdb, sdb, dbx, xdb, perldb, pdb (Python) and jdb." |
82353
02af9b581498
(gud): Change to group `processes'.
Richard M. Stallman <rms@gnu.org>
parents:
82140
diff
changeset
|
64 :group 'processes |
51494 | 65 :group 'tools) |
66 | |
67 | |
68 (defcustom gud-key-prefix "\C-x\C-a" | |
69 "Prefix of all GUD commands valid in C buffers." | |
70 :type 'string | |
71 :group 'gud) | |
72 | |
73 (global-set-key (concat gud-key-prefix "\C-l") 'gud-refresh) | |
74 (define-key ctl-x-map " " 'gud-break) ;; backward compatibility hack | |
75 | |
76 (defvar gud-marker-filter nil) | |
77 (put 'gud-marker-filter 'permanent-local t) | |
78 (defvar gud-find-file nil) | |
79 (put 'gud-find-file 'permanent-local t) | |
80 | |
81 (defun gud-marker-filter (&rest args) | |
82 (apply gud-marker-filter args)) | |
83 | |
84 (defvar gud-minor-mode nil) | |
85 (put 'gud-minor-mode 'permanent-local t) | |
86 | |
70248
4fc61ee2deb2
(gud-comint-buffer): Move forward to stop byte compiler warnings.
Nick Roberts <nickrob@snap.net.nz>
parents:
70054
diff
changeset
|
87 (defvar gud-comint-buffer nil) |
4fc61ee2deb2
(gud-comint-buffer): Move forward to stop byte compiler warnings.
Nick Roberts <nickrob@snap.net.nz>
parents:
70054
diff
changeset
|
88 |
51494 | 89 (defvar gud-keep-buffer nil) |
90 | |
91 (defun gud-symbol (sym &optional soft minor-mode) | |
92 "Return the symbol used for SYM in MINOR-MODE. | |
80136
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
93 MINOR-MODE defaults to `gud-minor-mode'. |
51494 | 94 The symbol returned is `gud-<MINOR-MODE>-<SYM>'. |
95 If SOFT is non-nil, returns nil if the symbol doesn't already exist." | |
96 (unless (or minor-mode gud-minor-mode) (error "Gud internal error")) | |
97 (funcall (if soft 'intern-soft 'intern) | |
98 (format "gud-%s-%s" (or minor-mode gud-minor-mode) sym))) | |
99 | |
100 (defun gud-val (sym &optional minor-mode) | |
101 "Return the value of `gud-symbol' SYM. Default to nil." | |
102 (let ((sym (gud-symbol sym t minor-mode))) | |
103 (if (boundp sym) (symbol-value sym)))) | |
104 | |
105 (defvar gud-running nil | |
71238
151cfd1b3e3e
(gud-running): Fix doc string.
Nick Roberts <nickrob@snap.net.nz>
parents:
71221
diff
changeset
|
106 "Non-nil if debugged program is running. |
151cfd1b3e3e
(gud-running): Fix doc string.
Nick Roberts <nickrob@snap.net.nz>
parents:
71221
diff
changeset
|
107 Used to grey out relevant toolbar icons.") |
61564
2e1a9a226cee
(gud-goto-info): Use existing Info buffer, if
Nick Roberts <nickrob@snap.net.nz>
parents:
61495
diff
changeset
|
108 |
85503
59ee4068f60b
* progmodes/gud.el (gud-target-name): Move definition before use.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85114
diff
changeset
|
109 (defvar gud-target-name "--unknown--" |
59ee4068f60b
* progmodes/gud.el (gud-target-name): Move definition before use.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85114
diff
changeset
|
110 "The apparent name of the program being debugged in a gud buffer.") |
78768
d8140314e60f
(gdb-ready): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
78533
diff
changeset
|
111 |
61564
2e1a9a226cee
(gud-goto-info): Use existing Info buffer, if
Nick Roberts <nickrob@snap.net.nz>
parents:
61495
diff
changeset
|
112 ;; Use existing Info buffer, if possible. |
59851
d5e850d3f67f
(gud-goto-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
58535
diff
changeset
|
113 (defun gud-goto-info () |
d5e850d3f67f
(gud-goto-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
58535
diff
changeset
|
114 "Go to relevant Emacs info node." |
d5e850d3f67f
(gud-goto-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
58535
diff
changeset
|
115 (interactive) |
61564
2e1a9a226cee
(gud-goto-info): Use existing Info buffer, if
Nick Roberts <nickrob@snap.net.nz>
parents:
61495
diff
changeset
|
116 (let ((same-window-regexps same-window-regexps) |
2e1a9a226cee
(gud-goto-info): Use existing Info buffer, if
Nick Roberts <nickrob@snap.net.nz>
parents:
61495
diff
changeset
|
117 (display-buffer-reuse-frames t)) |
2e1a9a226cee
(gud-goto-info): Use existing Info buffer, if
Nick Roberts <nickrob@snap.net.nz>
parents:
61495
diff
changeset
|
118 (catch 'info-found |
2e1a9a226cee
(gud-goto-info): Use existing Info buffer, if
Nick Roberts <nickrob@snap.net.nz>
parents:
61495
diff
changeset
|
119 (walk-windows |
2e1a9a226cee
(gud-goto-info): Use existing Info buffer, if
Nick Roberts <nickrob@snap.net.nz>
parents:
61495
diff
changeset
|
120 '(lambda (window) |
2e1a9a226cee
(gud-goto-info): Use existing Info buffer, if
Nick Roberts <nickrob@snap.net.nz>
parents:
61495
diff
changeset
|
121 (if (eq (window-buffer window) (get-buffer "*info*")) |
2e1a9a226cee
(gud-goto-info): Use existing Info buffer, if
Nick Roberts <nickrob@snap.net.nz>
parents:
61495
diff
changeset
|
122 (progn |
2e1a9a226cee
(gud-goto-info): Use existing Info buffer, if
Nick Roberts <nickrob@snap.net.nz>
parents:
61495
diff
changeset
|
123 (setq same-window-regexps nil) |
2e1a9a226cee
(gud-goto-info): Use existing Info buffer, if
Nick Roberts <nickrob@snap.net.nz>
parents:
61495
diff
changeset
|
124 (throw 'info-found nil)))) |
2e1a9a226cee
(gud-goto-info): Use existing Info buffer, if
Nick Roberts <nickrob@snap.net.nz>
parents:
61495
diff
changeset
|
125 nil 0) |
2e1a9a226cee
(gud-goto-info): Use existing Info buffer, if
Nick Roberts <nickrob@snap.net.nz>
parents:
61495
diff
changeset
|
126 (select-frame (make-frame))) |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
127 (if (eq gud-minor-mode 'gdbmi) |
62825
a6b83140d7d1
(gud-goto-info): Use info. Don't use require.
Nick Roberts <nickrob@snap.net.nz>
parents:
62395
diff
changeset
|
128 (info "(emacs)GDB Graphical Interface") |
a6b83140d7d1
(gud-goto-info): Use info. Don't use require.
Nick Roberts <nickrob@snap.net.nz>
parents:
62395
diff
changeset
|
129 (info "(emacs)Debuggers")))) |
59851
d5e850d3f67f
(gud-goto-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
58535
diff
changeset
|
130 |
66887
a3db1720a101
(gud-menu-map, gud-tool-bar-map): Re-define buttons and include new ones.
Nick Roberts <nickrob@snap.net.nz>
parents:
66846
diff
changeset
|
131 (defun gud-tool-bar-item-visible-no-fringe () |
a3db1720a101
(gud-menu-map, gud-tool-bar-map): Re-define buttons and include new ones.
Nick Roberts <nickrob@snap.net.nz>
parents:
66846
diff
changeset
|
132 (not (or (eq (buffer-local-value 'major-mode (window-buffer)) 'speedbar-mode) |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
133 (and (eq gud-minor-mode 'gdbmi) |
66887
a3db1720a101
(gud-menu-map, gud-tool-bar-map): Re-define buttons and include new ones.
Nick Roberts <nickrob@snap.net.nz>
parents:
66846
diff
changeset
|
134 (> (car (window-fringes)) 0))))) |
a3db1720a101
(gud-menu-map, gud-tool-bar-map): Re-define buttons and include new ones.
Nick Roberts <nickrob@snap.net.nz>
parents:
66846
diff
changeset
|
135 |
66901
dd9d9aa96e9b
(gud-stop-subjob): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
66899
diff
changeset
|
136 (defun gud-stop-subjob () |
dd9d9aa96e9b
(gud-stop-subjob): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
66899
diff
changeset
|
137 (interactive) |
71092
d0758b1b38eb
(gud-stop-subjob): Make it work in all buffers.
Nick Roberts <nickrob@snap.net.nz>
parents:
70878
diff
changeset
|
138 (with-current-buffer gud-comint-buffer |
d0758b1b38eb
(gud-stop-subjob): Make it work in all buffers.
Nick Roberts <nickrob@snap.net.nz>
parents:
70878
diff
changeset
|
139 (if (string-equal gud-target-name "emacs") |
d0758b1b38eb
(gud-stop-subjob): Make it work in all buffers.
Nick Roberts <nickrob@snap.net.nz>
parents:
70878
diff
changeset
|
140 (comint-stop-subjob) |
98067
72d94dcf4480
(gud-stop-subjob): Using jdb, suspend threads
Nick Roberts <nickrob@snap.net.nz>
parents:
97715
diff
changeset
|
141 (if (eq gud-minor-mode 'jdb) |
72d94dcf4480
(gud-stop-subjob): Using jdb, suspend threads
Nick Roberts <nickrob@snap.net.nz>
parents:
97715
diff
changeset
|
142 (gud-call "suspend") |
72d94dcf4480
(gud-stop-subjob): Using jdb, suspend threads
Nick Roberts <nickrob@snap.net.nz>
parents:
97715
diff
changeset
|
143 (comint-interrupt-subjob))))) |
66901
dd9d9aa96e9b
(gud-stop-subjob): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
66899
diff
changeset
|
144 |
51494 | 145 (easy-mmode-defmap gud-menu-map |
94050
006de67af578
(gud-menu-map): Expand tooltip.
Nick Roberts <nickrob@snap.net.nz>
parents:
94024
diff
changeset
|
146 '(([help] "Info (debugger)" . gud-goto-info) |
80168
77d3ee77571c
Rename menu item to "Show GUD tooltips".
Nick Roberts <nickrob@snap.net.nz>
parents:
80136
diff
changeset
|
147 ([tooltips] menu-item "Show GUD tooltips" gud-tooltip-mode |
66769
c57e0cf19ef5
(gud-menu-map): Ensure tool-bar is constant when using the speedbar.
Nick Roberts <nickrob@snap.net.nz>
parents:
66578
diff
changeset
|
148 :enable (and (not emacs-basic-display) |
c57e0cf19ef5
(gud-menu-map): Ensure tool-bar is constant when using the speedbar.
Nick Roberts <nickrob@snap.net.nz>
parents:
66578
diff
changeset
|
149 (display-graphic-p) |
c57e0cf19ef5
(gud-menu-map): Ensure tool-bar is constant when using the speedbar.
Nick Roberts <nickrob@snap.net.nz>
parents:
66578
diff
changeset
|
150 (fboundp 'x-show-tip)) |
71238
151cfd1b3e3e
(gud-running): Fix doc string.
Nick Roberts <nickrob@snap.net.nz>
parents:
71221
diff
changeset
|
151 :visible (memq gud-minor-mode |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
152 '(gdbmi dbx sdb xdb pdb)) |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
153 :button (:toggle . gud-tooltip-mode)) |
54902
0895b563f562
(gud-menu-map, gud-tool-bar-map): Add help button.
Nick Roberts <nickrob@snap.net.nz>
parents:
54647
diff
changeset
|
154 ([refresh] "Refresh" . gud-refresh) |
51494 | 155 ([run] menu-item "Run" gud-run |
71238
151cfd1b3e3e
(gud-running): Fix doc string.
Nick Roberts <nickrob@snap.net.nz>
parents:
71221
diff
changeset
|
156 :enable (not gud-running) |
76904
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
157 :visible (memq gud-minor-mode '(gdbmi gdb dbx jdb))) |
71221
07cd76eb8e03
(gud-menu-map): Use a conditional help echo for gud-go.
Nick Roberts <nickrob@snap.net.nz>
parents:
71102
diff
changeset
|
158 ([go] menu-item (if gdb-active-process "Continue" "Run") gud-go |
66897
b9eae5edf0dc
(gud-menu-map): Make visibility of stop and
Nick Roberts <nickrob@snap.net.nz>
parents:
66887
diff
changeset
|
159 :visible (and (not gud-running) |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
160 (eq gud-minor-mode 'gdbmi))) |
66901
dd9d9aa96e9b
(gud-stop-subjob): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
66899
diff
changeset
|
161 ([stop] menu-item "Stop" gud-stop-subjob |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
162 :visible (or (not (memq gud-minor-mode '(gdbmi pdb))) |
66897
b9eae5edf0dc
(gud-menu-map): Make visibility of stop and
Nick Roberts <nickrob@snap.net.nz>
parents:
66887
diff
changeset
|
163 (and gud-running |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
164 (eq gud-minor-mode 'gdbmi)))) |
52586
a0055e15e603
(perldb): Add gud-until to list of commands.
Nick Roberts <nickrob@snap.net.nz>
parents:
52524
diff
changeset
|
165 ([until] menu-item "Continue to selection" gud-until |
71238
151cfd1b3e3e
(gud-running): Fix doc string.
Nick Roberts <nickrob@snap.net.nz>
parents:
71221
diff
changeset
|
166 :enable (not gud-running) |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
167 :visible (and (memq gud-minor-mode '(gdbmi gdb perldb)) |
71238
151cfd1b3e3e
(gud-running): Fix doc string.
Nick Roberts <nickrob@snap.net.nz>
parents:
71221
diff
changeset
|
168 (gud-tool-bar-item-visible-no-fringe))) |
51494 | 169 ([remove] menu-item "Remove Breakpoint" gud-remove |
65883
46ec04efd3cc
(gud-menu-map): Only display un-intuitive
Nick Roberts <nickrob@snap.net.nz>
parents:
65584
diff
changeset
|
170 :enable (not gud-running) |
66887
a3db1720a101
(gud-menu-map, gud-tool-bar-map): Re-define buttons and include new ones.
Nick Roberts <nickrob@snap.net.nz>
parents:
66846
diff
changeset
|
171 :visible (gud-tool-bar-item-visible-no-fringe)) |
51494 | 172 ([tbreak] menu-item "Temporary Breakpoint" gud-tbreak |
71238
151cfd1b3e3e
(gud-running): Fix doc string.
Nick Roberts <nickrob@snap.net.nz>
parents:
71221
diff
changeset
|
173 :enable (not gud-running) |
151cfd1b3e3e
(gud-running): Fix doc string.
Nick Roberts <nickrob@snap.net.nz>
parents:
71221
diff
changeset
|
174 :visible (memq gud-minor-mode |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
175 '(gdbmi gdb sdb xdb))) |
51494 | 176 ([break] menu-item "Set Breakpoint" gud-break |
65883
46ec04efd3cc
(gud-menu-map): Only display un-intuitive
Nick Roberts <nickrob@snap.net.nz>
parents:
65584
diff
changeset
|
177 :enable (not gud-running) |
66887
a3db1720a101
(gud-menu-map, gud-tool-bar-map): Re-define buttons and include new ones.
Nick Roberts <nickrob@snap.net.nz>
parents:
66846
diff
changeset
|
178 :visible (gud-tool-bar-item-visible-no-fringe)) |
51494 | 179 ([up] menu-item "Up Stack" gud-up |
71238
151cfd1b3e3e
(gud-running): Fix doc string.
Nick Roberts <nickrob@snap.net.nz>
parents:
71221
diff
changeset
|
180 :enable (not gud-running) |
151cfd1b3e3e
(gud-running): Fix doc string.
Nick Roberts <nickrob@snap.net.nz>
parents:
71221
diff
changeset
|
181 :visible (memq gud-minor-mode |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
182 '(gdbmi gdb dbx xdb jdb pdb))) |
51494 | 183 ([down] menu-item "Down Stack" gud-down |
71238
151cfd1b3e3e
(gud-running): Fix doc string.
Nick Roberts <nickrob@snap.net.nz>
parents:
71221
diff
changeset
|
184 :enable (not gud-running) |
151cfd1b3e3e
(gud-running): Fix doc string.
Nick Roberts <nickrob@snap.net.nz>
parents:
71221
diff
changeset
|
185 :visible (memq gud-minor-mode |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
186 '(gdbmi gdb dbx xdb jdb pdb))) |
69476
1db3b0eac5a2
(gud-speedbar-buttons): Follow change to gdb-var-list.
Nick Roberts <nickrob@snap.net.nz>
parents:
69326
diff
changeset
|
187 ([pp] menu-item "Print S-expression" gud-pp |
66901
dd9d9aa96e9b
(gud-stop-subjob): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
66899
diff
changeset
|
188 :enable (and (not gud-running) |
66769
c57e0cf19ef5
(gud-menu-map): Ensure tool-bar is constant when using the speedbar.
Nick Roberts <nickrob@snap.net.nz>
parents:
66578
diff
changeset
|
189 gdb-active-process) |
66901
dd9d9aa96e9b
(gud-stop-subjob): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
66899
diff
changeset
|
190 :visible (and (string-equal |
dd9d9aa96e9b
(gud-stop-subjob): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
66899
diff
changeset
|
191 (buffer-local-value |
dd9d9aa96e9b
(gud-stop-subjob): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
66899
diff
changeset
|
192 'gud-target-name gud-comint-buffer) "emacs") |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
193 (eq gud-minor-mode 'gdbmi))) |
63031
ae951edf75a6
(gdb, gud-menu-map): Add command to evaluate
Nick Roberts <nickrob@snap.net.nz>
parents:
62825
diff
changeset
|
194 ([print*] menu-item "Print Dereference" gud-pstar |
71238
151cfd1b3e3e
(gud-running): Fix doc string.
Nick Roberts <nickrob@snap.net.nz>
parents:
71221
diff
changeset
|
195 :enable (not gud-running) |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
196 :visible (memq gud-minor-mode '(gdbmi gdb))) |
51494 | 197 ([print] menu-item "Print Expression" gud-print |
66901
dd9d9aa96e9b
(gud-stop-subjob): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
66899
diff
changeset
|
198 :enable (not gud-running)) |
52699
7fbe60aaf857
(gud-menu-map, gud-tool-bar-map): Replace
Nick Roberts <nickrob@snap.net.nz>
parents:
52586
diff
changeset
|
199 ([watch] menu-item "Watch Expression" gud-watch |
71238
151cfd1b3e3e
(gud-running): Fix doc string.
Nick Roberts <nickrob@snap.net.nz>
parents:
71221
diff
changeset
|
200 :enable (not gud-running) |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
201 :visible (eq gud-minor-mode 'gdbmi)) |
67251
299942030b0e
(gud-menu-map): Put gud-finish back on the
Nick Roberts <nickrob@snap.net.nz>
parents:
67165
diff
changeset
|
202 ([finish] menu-item "Finish Function" gud-finish |
71238
151cfd1b3e3e
(gud-running): Fix doc string.
Nick Roberts <nickrob@snap.net.nz>
parents:
71221
diff
changeset
|
203 :enable (not gud-running) |
151cfd1b3e3e
(gud-running): Fix doc string.
Nick Roberts <nickrob@snap.net.nz>
parents:
71221
diff
changeset
|
204 :visible (memq gud-minor-mode |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
205 '(gdbmi gdb xdb jdb pdb))) |
51494 | 206 ([stepi] menu-item "Step Instruction" gud-stepi |
71238
151cfd1b3e3e
(gud-running): Fix doc string.
Nick Roberts <nickrob@snap.net.nz>
parents:
71221
diff
changeset
|
207 :enable (not gud-running) |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
208 :visible (memq gud-minor-mode '(gdbmi gdb dbx))) |
51494 | 209 ([nexti] menu-item "Next Instruction" gud-nexti |
71238
151cfd1b3e3e
(gud-running): Fix doc string.
Nick Roberts <nickrob@snap.net.nz>
parents:
71221
diff
changeset
|
210 :enable (not gud-running) |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
211 :visible (memq gud-minor-mode '(gdbmi gdb dbx))) |
51494 | 212 ([step] menu-item "Step Line" gud-step |
66901
dd9d9aa96e9b
(gud-stop-subjob): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
66899
diff
changeset
|
213 :enable (not gud-running)) |
51494 | 214 ([next] menu-item "Next Line" gud-next |
66901
dd9d9aa96e9b
(gud-stop-subjob): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
66899
diff
changeset
|
215 :enable (not gud-running)) |
51494 | 216 ([cont] menu-item "Continue" gud-cont |
66901
dd9d9aa96e9b
(gud-stop-subjob): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
66899
diff
changeset
|
217 :enable (not gud-running) |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
218 :visible (not (eq gud-minor-mode 'gdbmi)))) |
51494 | 219 "Menu for `gud-mode'." |
220 :name "Gud") | |
221 | |
222 (easy-mmode-defmap gud-minor-mode-map | |
76904
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
223 (append |
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
224 `(([menu-bar debug] . ("Gud" . ,gud-menu-map))) |
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
225 ;; Get tool bar like functionality from the menu bar on a text only |
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
226 ;; terminal. |
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
227 (unless window-system |
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
228 `(([menu-bar down] |
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
229 . (,(propertize "down" 'face 'font-lock-doc-face) . gud-down)) |
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
230 ([menu-bar up] |
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
231 . (,(propertize "up" 'face 'font-lock-doc-face) . gud-up)) |
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
232 ([menu-bar finish] |
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
233 . (,(propertize "finish" 'face 'font-lock-doc-face) . gud-finish)) |
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
234 ([menu-bar step] |
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
235 . (,(propertize "step" 'face 'font-lock-doc-face) . gud-step)) |
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
236 ([menu-bar next] |
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
237 . (,(propertize "next" 'face 'font-lock-doc-face) . gud-next)) |
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
238 ([menu-bar until] menu-item |
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
239 ,(propertize "until" 'face 'font-lock-doc-face) gud-until |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
240 :visible (memq gud-minor-mode '(gdbmi gdb perldb))) |
76927
8199e6703268
(gud-minor-mode-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76904
diff
changeset
|
241 ([menu-bar cont] menu-item |
76904
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
242 ,(propertize "cont" 'face 'font-lock-doc-face) gud-cont |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
243 :visible (not (eq gud-minor-mode 'gdbmi))) |
76904
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
244 ([menu-bar run] menu-item |
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
245 ,(propertize "run" 'face 'font-lock-doc-face) gud-run |
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
246 :visible (memq gud-minor-mode '(gdbmi gdb dbx jdb))) |
78962
1e24f865fb6d
(gud-gud-gdb-command-name): Fix typo in docstring.
Michaël Cadilhac <michael.cadilhac@lrde.org>
parents:
78958
diff
changeset
|
247 ([menu-bar go] menu-item |
77144
da64d72c22b5
(gud-minor-mode-map): Make go button same
Nick Roberts <nickrob@snap.net.nz>
parents:
77073
diff
changeset
|
248 ,(propertize " go " 'face 'font-lock-doc-face) gud-go |
76904
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
249 :visible (and (not gud-running) |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
250 (eq gud-minor-mode 'gdbmi))) |
76904
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
251 ([menu-bar stop] menu-item |
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
252 ,(propertize "stop" 'face 'font-lock-doc-face) gud-stop-subjob |
76927
8199e6703268
(gud-minor-mode-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76904
diff
changeset
|
253 :visible (or gud-running |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
254 (not (eq gud-minor-mode 'gdbmi)))) |
76904
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
255 ([menu-bar print] |
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
256 . (,(propertize "print" 'face 'font-lock-doc-face) . gud-print)) |
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
257 ([menu-bar tools] . undefined) |
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
258 ([menu-bar buffer] . undefined) |
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
259 ([menu-bar options] . undefined) |
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
260 ([menu-bar edit] . undefined) |
ecc6f5a2f4cb
(gud-menu-map): Simplify.
Nick Roberts <nickrob@snap.net.nz>
parents:
76381
diff
changeset
|
261 ([menu-bar file] . undefined)))) |
51494 | 262 "Map used in visited files.") |
263 | |
264 (let ((m (assq 'gud-minor-mode minor-mode-map-alist))) | |
265 (if m (setcdr m gud-minor-mode-map) | |
266 (push (cons 'gud-minor-mode gud-minor-mode-map) minor-mode-map-alist))) | |
267 | |
268 (defvar gud-mode-map | |
269 ;; Will inherit from comint-mode via define-derived-mode. | |
270 (make-sparse-keymap) | |
271 "`gud-mode' keymap.") | |
272 | |
273 (defvar gud-tool-bar-map | |
98628
e358c1f2f0ac
(gud-tool-bar-map): Initialize it unconditionally.
Chong Yidong <cyd@stupidchicken.com>
parents:
98067
diff
changeset
|
274 (let ((map (make-sparse-keymap))) |
e358c1f2f0ac
(gud-tool-bar-map): Initialize it unconditionally.
Chong Yidong <cyd@stupidchicken.com>
parents:
98067
diff
changeset
|
275 (dolist (x '((gud-break . "gud/break") |
e358c1f2f0ac
(gud-tool-bar-map): Initialize it unconditionally.
Chong Yidong <cyd@stupidchicken.com>
parents:
98067
diff
changeset
|
276 (gud-remove . "gud/remove") |
e358c1f2f0ac
(gud-tool-bar-map): Initialize it unconditionally.
Chong Yidong <cyd@stupidchicken.com>
parents:
98067
diff
changeset
|
277 (gud-print . "gud/print") |
e358c1f2f0ac
(gud-tool-bar-map): Initialize it unconditionally.
Chong Yidong <cyd@stupidchicken.com>
parents:
98067
diff
changeset
|
278 (gud-pstar . "gud/pstar") |
e358c1f2f0ac
(gud-tool-bar-map): Initialize it unconditionally.
Chong Yidong <cyd@stupidchicken.com>
parents:
98067
diff
changeset
|
279 (gud-pp . "gud/pp") |
e358c1f2f0ac
(gud-tool-bar-map): Initialize it unconditionally.
Chong Yidong <cyd@stupidchicken.com>
parents:
98067
diff
changeset
|
280 (gud-watch . "gud/watch") |
e358c1f2f0ac
(gud-tool-bar-map): Initialize it unconditionally.
Chong Yidong <cyd@stupidchicken.com>
parents:
98067
diff
changeset
|
281 (gud-run . "gud/run") |
e358c1f2f0ac
(gud-tool-bar-map): Initialize it unconditionally.
Chong Yidong <cyd@stupidchicken.com>
parents:
98067
diff
changeset
|
282 (gud-go . "gud/go") |
e358c1f2f0ac
(gud-tool-bar-map): Initialize it unconditionally.
Chong Yidong <cyd@stupidchicken.com>
parents:
98067
diff
changeset
|
283 (gud-stop-subjob . "gud/stop") |
e358c1f2f0ac
(gud-tool-bar-map): Initialize it unconditionally.
Chong Yidong <cyd@stupidchicken.com>
parents:
98067
diff
changeset
|
284 (gud-cont . "gud/cont") |
e358c1f2f0ac
(gud-tool-bar-map): Initialize it unconditionally.
Chong Yidong <cyd@stupidchicken.com>
parents:
98067
diff
changeset
|
285 (gud-until . "gud/until") |
e358c1f2f0ac
(gud-tool-bar-map): Initialize it unconditionally.
Chong Yidong <cyd@stupidchicken.com>
parents:
98067
diff
changeset
|
286 (gud-next . "gud/next") |
e358c1f2f0ac
(gud-tool-bar-map): Initialize it unconditionally.
Chong Yidong <cyd@stupidchicken.com>
parents:
98067
diff
changeset
|
287 (gud-step . "gud/step") |
e358c1f2f0ac
(gud-tool-bar-map): Initialize it unconditionally.
Chong Yidong <cyd@stupidchicken.com>
parents:
98067
diff
changeset
|
288 (gud-finish . "gud/finish") |
e358c1f2f0ac
(gud-tool-bar-map): Initialize it unconditionally.
Chong Yidong <cyd@stupidchicken.com>
parents:
98067
diff
changeset
|
289 (gud-nexti . "gud/nexti") |
e358c1f2f0ac
(gud-tool-bar-map): Initialize it unconditionally.
Chong Yidong <cyd@stupidchicken.com>
parents:
98067
diff
changeset
|
290 (gud-stepi . "gud/stepi") |
e358c1f2f0ac
(gud-tool-bar-map): Initialize it unconditionally.
Chong Yidong <cyd@stupidchicken.com>
parents:
98067
diff
changeset
|
291 (gud-up . "gud/up") |
e358c1f2f0ac
(gud-tool-bar-map): Initialize it unconditionally.
Chong Yidong <cyd@stupidchicken.com>
parents:
98067
diff
changeset
|
292 (gud-down . "gud/down") |
e358c1f2f0ac
(gud-tool-bar-map): Initialize it unconditionally.
Chong Yidong <cyd@stupidchicken.com>
parents:
98067
diff
changeset
|
293 (gud-goto-info . "info")) |
e358c1f2f0ac
(gud-tool-bar-map): Initialize it unconditionally.
Chong Yidong <cyd@stupidchicken.com>
parents:
98067
diff
changeset
|
294 map) |
e358c1f2f0ac
(gud-tool-bar-map): Initialize it unconditionally.
Chong Yidong <cyd@stupidchicken.com>
parents:
98067
diff
changeset
|
295 (tool-bar-local-item-from-menu |
e358c1f2f0ac
(gud-tool-bar-map): Initialize it unconditionally.
Chong Yidong <cyd@stupidchicken.com>
parents:
98067
diff
changeset
|
296 (car x) (cdr x) map gud-minor-mode-map)))) |
51494 | 297 |
298 (defun gud-file-name (f) | |
299 "Transform a relative file name to an absolute file name. | |
300 Uses `gud-<MINOR-MODE>-directories' to find the source files." | |
81816
8c1a05c2d668
* progmodes/compile.el (compilation-start): `start-process' must
Michael Albinus <michael.albinus@gmx.de>
parents:
81778
diff
changeset
|
301 ;; When `default-directory' is a remote file name, prepend its |
8c1a05c2d668
* progmodes/compile.el (compilation-start): `start-process' must
Michael Albinus <michael.albinus@gmx.de>
parents:
81778
diff
changeset
|
302 ;; remote part to f, which is the local file name. Fortunately, |
8c1a05c2d668
* progmodes/compile.el (compilation-start): `start-process' must
Michael Albinus <michael.albinus@gmx.de>
parents:
81778
diff
changeset
|
303 ;; `file-remote-p' returns exactly this remote file name part (or |
8c1a05c2d668
* progmodes/compile.el (compilation-start): `start-process' must
Michael Albinus <michael.albinus@gmx.de>
parents:
81778
diff
changeset
|
304 ;; nil otherwise). |
8c1a05c2d668
* progmodes/compile.el (compilation-start): `start-process' must
Michael Albinus <michael.albinus@gmx.de>
parents:
81778
diff
changeset
|
305 (setq f (concat (or (file-remote-p default-directory) "") f)) |
51494 | 306 (if (file-exists-p f) (expand-file-name f) |
307 (let ((directories (gud-val 'directories)) | |
308 (result nil)) | |
309 (while directories | |
310 (let ((path (expand-file-name f (car directories)))) | |
311 (if (file-exists-p path) | |
312 (setq result path | |
313 directories nil))) | |
314 (setq directories (cdr directories))) | |
315 result))) | |
316 | |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
317 (declare-function gdb-create-define-alist "gdb-mi" ()) |
86885 | 318 |
51494 | 319 (defun gud-find-file (file) |
320 ;; Don't get confused by double slashes in the name that comes from GDB. | |
321 (while (string-match "//+" file) | |
322 (setq file (replace-match "/" t t file))) | |
323 (let ((minor-mode gud-minor-mode) | |
324 (buf (funcall (or gud-find-file 'gud-file-name) file))) | |
325 (when (stringp buf) | |
326 (setq buf (and (file-readable-p buf) (find-file-noselect buf 'nowarn)))) | |
327 (when buf | |
328 ;; Copy `gud-minor-mode' to the found buffer to turn on the menu. | |
329 (with-current-buffer buf | |
330 (set (make-local-variable 'gud-minor-mode) minor-mode) | |
331 (set (make-local-variable 'tool-bar-map) gud-tool-bar-map) | |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
332 (when (and gud-tooltip-mode |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
333 (eq gud-minor-mode 'gdbmi)) |
62049
471fca8487d3
Replace string-to-int with string-to-number.
Nick Roberts <nickrob@snap.net.nz>
parents:
61690
diff
changeset
|
334 (make-local-variable 'gdb-define-alist) |
471fca8487d3
Replace string-to-int with string-to-number.
Nick Roberts <nickrob@snap.net.nz>
parents:
61690
diff
changeset
|
335 (unless gdb-define-alist (gdb-create-define-alist)) |
471fca8487d3
Replace string-to-int with string-to-number.
Nick Roberts <nickrob@snap.net.nz>
parents:
61690
diff
changeset
|
336 (add-hook 'after-save-hook 'gdb-create-define-alist nil t)) |
51494 | 337 (make-local-variable 'gud-keep-buffer)) |
338 buf))) | |
339 | |
340 ;; ====================================================================== | |
341 ;; command definition | |
342 | |
343 ;; This macro is used below to define some basic debugger interface commands. | |
344 ;; Of course you may use `gud-def' with any other debugger command, including | |
345 ;; user defined ones. | |
346 | |
80136
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
347 ;; A macro call like (gud-def FUNC CMD KEY DOC) expands to a form |
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
348 ;; which defines FUNC to send the command CMD to the debugger, gives |
51494 | 349 ;; it the docstring DOC, and binds that function to KEY in the GUD |
350 ;; major mode. The function is also bound in the global keymap with the | |
351 ;; GUD prefix. | |
352 | |
353 (defmacro gud-def (func cmd key &optional doc) | |
80136
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
354 "Define FUNC to be a command sending CMD and bound to KEY, with |
51494 | 355 optional doc string DOC. Certain %-escapes in the string arguments |
356 are interpreted specially if present. These are: | |
357 | |
70295
da2f6762c09a
(gud-def): Add %c case.
Nick Roberts <nickrob@snap.net.nz>
parents:
70248
diff
changeset
|
358 %f -- Name (without directory) of current source file. |
da2f6762c09a
(gud-def): Add %c case.
Nick Roberts <nickrob@snap.net.nz>
parents:
70248
diff
changeset
|
359 %F -- Name (without directory or extension) of current source file. |
da2f6762c09a
(gud-def): Add %c case.
Nick Roberts <nickrob@snap.net.nz>
parents:
70248
diff
changeset
|
360 %d -- Directory of current source file. |
da2f6762c09a
(gud-def): Add %c case.
Nick Roberts <nickrob@snap.net.nz>
parents:
70248
diff
changeset
|
361 %l -- Number of current source line. |
da2f6762c09a
(gud-def): Add %c case.
Nick Roberts <nickrob@snap.net.nz>
parents:
70248
diff
changeset
|
362 %e -- Text of the C lvalue or function-call expression surrounding point. |
da2f6762c09a
(gud-def): Add %c case.
Nick Roberts <nickrob@snap.net.nz>
parents:
70248
diff
changeset
|
363 %a -- Text of the hexadecimal address surrounding point. |
da2f6762c09a
(gud-def): Add %c case.
Nick Roberts <nickrob@snap.net.nz>
parents:
70248
diff
changeset
|
364 %p -- Prefix argument to the command (if any) as a number. |
da2f6762c09a
(gud-def): Add %c case.
Nick Roberts <nickrob@snap.net.nz>
parents:
70248
diff
changeset
|
365 %c -- Fully qualified class name derived from the expression |
da2f6762c09a
(gud-def): Add %c case.
Nick Roberts <nickrob@snap.net.nz>
parents:
70248
diff
changeset
|
366 surrounding point (jdb only). |
51494 | 367 |
368 The `current' source file is the file of the current buffer (if | |
369 we're in a C file) or the source file current at the last break or | |
370 step (if we're in the GUD buffer). | |
371 The `current' line is that of the current buffer (if we're in a | |
372 source file) or the source line number at the last break or step (if | |
373 we're in the GUD buffer)." | |
374 `(progn | |
375 (defun ,func (arg) | |
376 ,@(if doc (list doc)) | |
377 (interactive "p") | |
79668
5a1bd3d071b6
(gud-def): Do nothing if gud-running is t.
Nick Roberts <nickrob@snap.net.nz>
parents:
79339
diff
changeset
|
378 (if (not gud-running) |
5a1bd3d071b6
(gud-def): Do nothing if gud-running is t.
Nick Roberts <nickrob@snap.net.nz>
parents:
79339
diff
changeset
|
379 ,(if (stringp cmd) |
5a1bd3d071b6
(gud-def): Do nothing if gud-running is t.
Nick Roberts <nickrob@snap.net.nz>
parents:
79339
diff
changeset
|
380 `(gud-call ,cmd arg) |
5a1bd3d071b6
(gud-def): Do nothing if gud-running is t.
Nick Roberts <nickrob@snap.net.nz>
parents:
79339
diff
changeset
|
381 cmd))) |
51494 | 382 ,(if key `(local-set-key ,(concat "\C-c" key) ',func)) |
383 ,(if key `(global-set-key (vconcat gud-key-prefix ,key) ',func)))) | |
384 | |
385 ;; Where gud-display-frame should put the debugging arrow; a cons of | |
386 ;; (filename . line-number). This is set by the marker-filter, which scans | |
387 ;; the debugger's output for indications of the current program counter. | |
388 (defvar gud-last-frame nil) | |
389 | |
390 ;; Used by gud-refresh, which should cause gud-display-frame to redisplay | |
391 ;; the last frame, even if it's been called before and gud-last-frame has | |
392 ;; been set to nil. | |
393 (defvar gud-last-last-frame nil) | |
394 | |
395 ;; All debugger-specific information is collected here. | |
396 ;; Here's how it works, in case you ever need to add a debugger to the mode. | |
397 ;; | |
398 ;; Each entry must define the following at startup: | |
399 ;; | |
400 ;;<name> | |
401 ;; comint-prompt-regexp | |
402 ;; gud-<name>-massage-args | |
403 ;; gud-<name>-marker-filter | |
404 ;; gud-<name>-find-file | |
405 ;; | |
406 ;; The job of the massage-args method is to modify the given list of | |
407 ;; debugger arguments before running the debugger. | |
408 ;; | |
409 ;; The job of the marker-filter method is to detect file/line markers in | |
410 ;; strings and set the global gud-last-frame to indicate what display | |
411 ;; action (if any) should be triggered by the marker. Note that only | |
412 ;; whatever the method *returns* is displayed in the buffer; thus, you | |
413 ;; can filter the debugger's output, interpreting some and passing on | |
414 ;; the rest. | |
415 ;; | |
416 ;; The job of the find-file method is to visit and return the buffer indicated | |
417 ;; by the car of gud-tag-frame. This may be a file name, a tag name, or | |
418 ;; something else. | |
419 | |
420 ;; ====================================================================== | |
421 ;; speedbar support functions and variables. | |
422 (eval-when-compile (require 'speedbar)) ;For speedbar-with-attached-buffer. | |
423 | |
424 (defvar gud-last-speedbar-stackframe nil | |
425 "Description of the currently displayed GUD stack. | |
80136
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
426 The value t means that there is no stack, and we are in display-file mode.") |
51494 | 427 |
428 (defvar gud-speedbar-key-map nil | |
429 "Keymap used when in the buffers display mode.") | |
430 | |
66923
830bec4c85bb
(gud-speedbar-item-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
66901
diff
changeset
|
431 (defun gud-speedbar-item-info () |
830bec4c85bb
(gud-speedbar-item-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
66901
diff
changeset
|
432 "Display the data type of the watch expression element." |
830bec4c85bb
(gud-speedbar-item-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
66901
diff
changeset
|
433 (let ((var (nth (- (line-number-at-pos (point)) 2) gdb-var-list))) |
70054
e6c80fdc0101
(gud-speedbar-item-info): Display frame address for root variables.
Nick Roberts <nickrob@snap.net.nz>
parents:
69682
diff
changeset
|
434 (if (nth 6 var) |
e6c80fdc0101
(gud-speedbar-item-info): Display frame address for root variables.
Nick Roberts <nickrob@snap.net.nz>
parents:
69682
diff
changeset
|
435 (speedbar-message "%s: %s" (nth 6 var) (nth 3 var)) |
e6c80fdc0101
(gud-speedbar-item-info): Display frame address for root variables.
Nick Roberts <nickrob@snap.net.nz>
parents:
69682
diff
changeset
|
436 (speedbar-message "%s" (nth 3 var))))) |
66923
830bec4c85bb
(gud-speedbar-item-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
66901
diff
changeset
|
437 |
51494 | 438 (defun gud-install-speedbar-variables () |
439 "Install those variables used by speedbar to enhance gud/gdb." | |
440 (if gud-speedbar-key-map | |
441 nil | |
442 (setq gud-speedbar-key-map (speedbar-make-specialized-keymap)) | |
443 | |
444 (define-key gud-speedbar-key-map "j" 'speedbar-edit-line) | |
445 (define-key gud-speedbar-key-map "e" 'speedbar-edit-line) | |
54130
aae5a270e964
(gud-install-speedbar-variables): Bind
Nick Roberts <nickrob@snap.net.nz>
parents:
53850
diff
changeset
|
446 (define-key gud-speedbar-key-map "\C-m" 'speedbar-edit-line) |
65972
8bd4c2112a50
(gud-install-speedbar-variables): Add more
Nick Roberts <nickrob@snap.net.nz>
parents:
65953
diff
changeset
|
447 (define-key gud-speedbar-key-map " " 'speedbar-toggle-line-expansion) |
66978
40cc5f0fb379
(gud-install-speedbar-variables): Bind gud-pp to "p".
Nick Roberts <nickrob@snap.net.nz>
parents:
66923
diff
changeset
|
448 (define-key gud-speedbar-key-map "D" 'gdb-var-delete) |
40cc5f0fb379
(gud-install-speedbar-variables): Bind gud-pp to "p".
Nick Roberts <nickrob@snap.net.nz>
parents:
66923
diff
changeset
|
449 (define-key gud-speedbar-key-map "p" 'gud-pp)) |
65953
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
450 |
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
451 (speedbar-add-expansion-list '("GUD" gud-speedbar-menu-items |
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
452 gud-speedbar-key-map |
66923
830bec4c85bb
(gud-speedbar-item-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
66901
diff
changeset
|
453 gud-expansion-speedbar-buttons)) |
830bec4c85bb
(gud-speedbar-item-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
66901
diff
changeset
|
454 |
69291
928466fb1966
(gud-jdb-marker-filter): Double quote `[' in regexp for Lisp syntax.
Luc Teirlinck <teirllm@auburn.edu>
parents:
69233
diff
changeset
|
455 (add-to-list |
66923
830bec4c85bb
(gud-speedbar-item-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
66901
diff
changeset
|
456 'speedbar-mode-functions-list |
830bec4c85bb
(gud-speedbar-item-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
66901
diff
changeset
|
457 '("GUD" (speedbar-item-info . gud-speedbar-item-info) |
830bec4c85bb
(gud-speedbar-item-info): New function.
Nick Roberts <nickrob@snap.net.nz>
parents:
66901
diff
changeset
|
458 (speedbar-line-directory . ignore)))) |
54130
aae5a270e964
(gud-install-speedbar-variables): Bind
Nick Roberts <nickrob@snap.net.nz>
parents:
53850
diff
changeset
|
459 |
51494 | 460 (defvar gud-speedbar-menu-items |
62825
a6b83140d7d1
(gud-goto-info): Use info. Don't use require.
Nick Roberts <nickrob@snap.net.nz>
parents:
62395
diff
changeset
|
461 '(["Jump to stack frame" speedbar-edit-line |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
462 :visible (not (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer) |
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
463 'gdbmi))] |
62825
a6b83140d7d1
(gud-goto-info): Use info. Don't use require.
Nick Roberts <nickrob@snap.net.nz>
parents:
62395
diff
changeset
|
464 ["Edit value" speedbar-edit-line |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
465 :visible (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer) |
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
466 'gdbmi)] |
62825
a6b83140d7d1
(gud-goto-info): Use info. Don't use require.
Nick Roberts <nickrob@snap.net.nz>
parents:
62395
diff
changeset
|
467 ["Delete expression" gdb-var-delete |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
468 :visible (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer) |
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
469 'gdbmi)] |
67097
9af04bbaf1e0
(gud-speedbar-menu-items): Add gdb-speedbar-auto-raise as radio button.
Nick Roberts <nickrob@snap.net.nz>
parents:
66978
diff
changeset
|
470 ["Auto raise frame" gdb-speedbar-auto-raise |
9af04bbaf1e0
(gud-speedbar-menu-items): Add gdb-speedbar-auto-raise as radio button.
Nick Roberts <nickrob@snap.net.nz>
parents:
66978
diff
changeset
|
471 :style toggle :selected gdb-speedbar-auto-raise |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
472 :visible (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer) |
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
473 'gdbmi)] |
79668
5a1bd3d071b6
(gud-def): Do nothing if gud-running is t.
Nick Roberts <nickrob@snap.net.nz>
parents:
79339
diff
changeset
|
474 ("Output Format" |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
475 :visible (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer) |
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
476 'gdbmi) |
79668
5a1bd3d071b6
(gud-def): Do nothing if gud-running is t.
Nick Roberts <nickrob@snap.net.nz>
parents:
79339
diff
changeset
|
477 ["Binary" (gdb-var-set-format "binary") t] |
5a1bd3d071b6
(gud-def): Do nothing if gud-running is t.
Nick Roberts <nickrob@snap.net.nz>
parents:
79339
diff
changeset
|
478 ["Natural" (gdb-var-set-format "natural") t] |
5a1bd3d071b6
(gud-def): Do nothing if gud-running is t.
Nick Roberts <nickrob@snap.net.nz>
parents:
79339
diff
changeset
|
479 ["Hexadecimal" (gdb-var-set-format "hexadecimal") t])) |
51494 | 480 "Additional menu items to add to the speedbar frame.") |
481 | |
482 ;; Make sure our special speedbar mode is loaded | |
483 (if (featurep 'speedbar) | |
484 (gud-install-speedbar-variables) | |
485 (add-hook 'speedbar-load-hook 'gud-install-speedbar-variables)) | |
486 | |
65953
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
487 (defun gud-expansion-speedbar-buttons (directory zero) |
80136
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
488 "Wrapper for call to `speedbar-add-expansion-list'. |
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
489 DIRECTORY and ZERO are not used, but are required by the caller." |
65953
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
490 (gud-speedbar-buttons gud-comint-buffer)) |
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
491 |
51494 | 492 (defun gud-speedbar-buttons (buffer) |
493 "Create a speedbar display based on the current state of GUD. | |
494 If the GUD BUFFER is not running a supported debugger, then turn | |
80136
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
495 off the specialized speedbar mode. BUFFER is not used, but is |
65953
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
496 required by the caller." |
67403
adbf404cf806
(gud-speedbar-buttons, gud-tooltip-tips):
Nick Roberts <nickrob@snap.net.nz>
parents:
67251
diff
changeset
|
497 (when (and gud-comint-buffer |
65953
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
498 ;; gud-comint-buffer might be killed |
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
499 (buffer-name gud-comint-buffer)) |
65972
8bd4c2112a50
(gud-install-speedbar-variables): Add more
Nick Roberts <nickrob@snap.net.nz>
parents:
65953
diff
changeset
|
500 (let* ((minor-mode (with-current-buffer buffer gud-minor-mode)) |
8bd4c2112a50
(gud-install-speedbar-variables): Add more
Nick Roberts <nickrob@snap.net.nz>
parents:
65953
diff
changeset
|
501 (window (get-buffer-window (current-buffer) 0)) |
70373
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
502 (start (window-start window)) |
65972
8bd4c2112a50
(gud-install-speedbar-variables): Add more
Nick Roberts <nickrob@snap.net.nz>
parents:
65953
diff
changeset
|
503 (p (window-point window))) |
65953
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
504 (cond |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
505 ((eq minor-mode 'gdbmi) |
70373
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
506 (erase-buffer) |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
507 (insert "Watch Expressions:\n") |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
508 (let ((var-list gdb-var-list) parent) |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
509 (while var-list |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
510 (let* (char (depth 0) (start 0) (var (car var-list)) |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
511 (varnum (car var)) (expr (nth 1 var)) |
72650
eea30f9dbecd
(gud-speedbar-buttons): Allow for no type
Nick Roberts <nickrob@snap.net.nz>
parents:
72257
diff
changeset
|
512 (type (if (nth 3 var) (nth 3 var) " ")) |
eea30f9dbecd
(gud-speedbar-buttons): Allow for no type
Nick Roberts <nickrob@snap.net.nz>
parents:
72257
diff
changeset
|
513 (value (nth 4 var)) (status (nth 5 var))) |
70373
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
514 (put-text-property |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
515 0 (length expr) 'face font-lock-variable-name-face expr) |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
516 (put-text-property |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
517 0 (length type) 'face font-lock-type-face type) |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
518 (while (string-match "\\." varnum start) |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
519 (setq depth (1+ depth) |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
520 start (1+ (match-beginning 0)))) |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
521 (if (eq depth 0) (setq parent nil)) |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
522 (if (or (equal (nth 2 var) "0") |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
523 (and (equal (nth 2 var) "1") |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
524 (string-match "char \\*$" type))) |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
525 (speedbar-make-tag-line |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
526 'bracket ?? nil nil |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
527 (concat expr "\t" value) |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
528 (if (or parent (eq status 'out-of-scope)) |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
529 nil 'gdb-edit-value) |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
530 nil |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
531 (if gdb-show-changed-values |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
532 (or parent (case status |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
533 (changed 'font-lock-warning-face) |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
534 (out-of-scope 'shadow) |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
535 (t t))) |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
536 t) |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
537 depth) |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
538 (if (eq status 'out-of-scope) (setq parent 'shadow)) |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
539 (if (and (nth 1 var-list) |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
540 (string-match (concat varnum "\\.") |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
541 (car (nth 1 var-list)))) |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
542 (setq char ?-) |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
543 (setq char ?+)) |
74487
3f957e6a97c1
(gud-speedbar-buttons): Deal with references to pointers.
Nick Roberts <nickrob@snap.net.nz>
parents:
74213
diff
changeset
|
544 (if (string-match "\\*$\\|\\*&$" type) |
68992
dccdda472b02
(gud-speedbar-buttons): Update properly for
Nick Roberts <nickrob@snap.net.nz>
parents:
68966
diff
changeset
|
545 (speedbar-make-tag-line |
70373
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
546 'bracket char |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
547 'gdb-speedbar-expand-node varnum |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
548 (concat expr "\t" type "\t" value) |
68992
dccdda472b02
(gud-speedbar-buttons): Update properly for
Nick Roberts <nickrob@snap.net.nz>
parents:
68966
diff
changeset
|
549 (if (or parent (eq status 'out-of-scope)) |
dccdda472b02
(gud-speedbar-buttons): Update properly for
Nick Roberts <nickrob@snap.net.nz>
parents:
68966
diff
changeset
|
550 nil 'gdb-edit-value) |
dccdda472b02
(gud-speedbar-buttons): Update properly for
Nick Roberts <nickrob@snap.net.nz>
parents:
68966
diff
changeset
|
551 nil |
dccdda472b02
(gud-speedbar-buttons): Update properly for
Nick Roberts <nickrob@snap.net.nz>
parents:
68966
diff
changeset
|
552 (if gdb-show-changed-values |
dccdda472b02
(gud-speedbar-buttons): Update properly for
Nick Roberts <nickrob@snap.net.nz>
parents:
68966
diff
changeset
|
553 (or parent (case status |
dccdda472b02
(gud-speedbar-buttons): Update properly for
Nick Roberts <nickrob@snap.net.nz>
parents:
68966
diff
changeset
|
554 (changed 'font-lock-warning-face) |
dccdda472b02
(gud-speedbar-buttons): Update properly for
Nick Roberts <nickrob@snap.net.nz>
parents:
68966
diff
changeset
|
555 (out-of-scope 'shadow) |
69022
cd336a81f209
(gud-speedbar-buttons): Fontify watch expessions.
Nick Roberts <nickrob@snap.net.nz>
parents:
68999
diff
changeset
|
556 (t t))) |
cd336a81f209
(gud-speedbar-buttons): Fontify watch expessions.
Nick Roberts <nickrob@snap.net.nz>
parents:
68999
diff
changeset
|
557 t) |
cd336a81f209
(gud-speedbar-buttons): Fontify watch expessions.
Nick Roberts <nickrob@snap.net.nz>
parents:
68999
diff
changeset
|
558 depth) |
70373
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
559 (speedbar-make-tag-line |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
560 'bracket char |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
561 'gdb-speedbar-expand-node varnum |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
562 (concat expr "\t" type) |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
563 nil nil |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
564 (if (and (or parent status) gdb-show-changed-values) |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
565 'shadow t) |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
566 depth)))) |
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
567 (setq var-list (cdr var-list))))) |
68966
c0cb4d23d9c9
(gud-speedbar-buttons): Use shadow face for
Nick Roberts <nickrob@snap.net.nz>
parents:
68900
diff
changeset
|
568 (t (unless (and (save-excursion |
c0cb4d23d9c9
(gud-speedbar-buttons): Use shadow face for
Nick Roberts <nickrob@snap.net.nz>
parents:
68900
diff
changeset
|
569 (goto-char (point-min)) |
c0cb4d23d9c9
(gud-speedbar-buttons): Use shadow face for
Nick Roberts <nickrob@snap.net.nz>
parents:
68900
diff
changeset
|
570 (looking-at "Current Stack:")) |
c0cb4d23d9c9
(gud-speedbar-buttons): Use shadow face for
Nick Roberts <nickrob@snap.net.nz>
parents:
68900
diff
changeset
|
571 (equal gud-last-last-frame gud-last-speedbar-stackframe)) |
65953
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
572 (let ((gud-frame-list |
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
573 (cond ((eq minor-mode 'gdb) |
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
574 (gud-gdb-get-stackframe buffer)) |
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
575 ;; Add more debuggers here! |
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
576 (t (speedbar-remove-localized-speedbar-support buffer) |
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
577 nil)))) |
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
578 (erase-buffer) |
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
579 (if (not gud-frame-list) |
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
580 (insert "No Stack frames\n") |
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
581 (insert "Current Stack:\n")) |
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
582 (dolist (frame gud-frame-list) |
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
583 (insert (nth 1 frame) ":\n") |
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
584 (if (= (length frame) 2) |
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
585 (progn |
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
586 (speedbar-insert-button (car frame) |
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
587 'speedbar-directory-face |
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
588 nil nil nil t)) |
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
589 (speedbar-insert-button |
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
590 (car frame) |
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
591 'speedbar-file-face |
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
592 'speedbar-highlight-face |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
593 (cond ((memq minor-mode '(gdbmi gdb)) |
65953
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
594 'gud-gdb-goto-stackframe) |
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
595 (t (error "Should never be here"))) |
0f60854c0845
(gud-last-speedbar-buffer): Remove.
Nick Roberts <nickrob@snap.net.nz>
parents:
65932
diff
changeset
|
596 frame t)))) |
65972
8bd4c2112a50
(gud-install-speedbar-variables): Add more
Nick Roberts <nickrob@snap.net.nz>
parents:
65953
diff
changeset
|
597 (setq gud-last-speedbar-stackframe gud-last-last-frame)))) |
70373
6ea65e989ee0
(gdb-force-update): Delete defvar
Nick Roberts <nickrob@snap.net.nz>
parents:
70295
diff
changeset
|
598 (set-window-start window start) |
65972
8bd4c2112a50
(gud-install-speedbar-variables): Add more
Nick Roberts <nickrob@snap.net.nz>
parents:
65953
diff
changeset
|
599 (set-window-point window p)))) |
51494 | 600 |
601 | |
602 ;; ====================================================================== | |
603 ;; gdb functions | |
604 | |
605 ;; History of argument lists passed to gdb. | |
606 (defvar gud-gdb-history nil) | |
607 | |
78958
4271aaaba691
(gud-gud-gdb-command-name): New option.
Nick Roberts <nickrob@snap.net.nz>
parents:
78948
diff
changeset
|
608 (defcustom gud-gud-gdb-command-name "gdb --fullname" |
4271aaaba691
(gud-gud-gdb-command-name): New option.
Nick Roberts <nickrob@snap.net.nz>
parents:
78948
diff
changeset
|
609 "Default command to run an executable under GDB in text command mode. |
78962
1e24f865fb6d
(gud-gud-gdb-command-name): Fix typo in docstring.
Michaël Cadilhac <michael.cadilhac@lrde.org>
parents:
78958
diff
changeset
|
610 The option \"--fullname\" must be included in this value." |
51494 | 611 :type 'string |
612 :group 'gud) | |
613 | |
614 (defvar gud-gdb-marker-regexp | |
615 ;; This used to use path-separator instead of ":"; | |
616 ;; however, we found that on both Windows 32 and MSDOS | |
617 ;; a colon is correct here. | |
618 (concat "\032\032\\(.:?[^" ":" "\n]*\\)" ":" | |
619 "\\([0-9]*\\)" ":" ".*\n")) | |
620 | |
621 ;; There's no guarantee that Emacs will hand the filter the entire | |
622 ;; marker at once; it could be broken up across several strings. We | |
623 ;; might even receive a big chunk with several markers in it. If we | |
624 ;; receive a chunk of text which looks like it might contain the | |
625 ;; beginning of a marker, we save it here between calls to the | |
626 ;; filter. | |
627 (defvar gud-marker-acc "") | |
628 (make-variable-buffer-local 'gud-marker-acc) | |
629 | |
630 (defun gud-gdb-marker-filter (string) | |
631 (setq gud-marker-acc (concat gud-marker-acc string)) | |
632 (let ((output "")) | |
633 | |
634 ;; Process all the complete markers in this chunk. | |
635 (while (string-match gud-gdb-marker-regexp gud-marker-acc) | |
636 (setq | |
637 | |
638 ;; Extract the frame position from the marker. | |
639 gud-last-frame (cons (match-string 1 gud-marker-acc) | |
62049
471fca8487d3
Replace string-to-int with string-to-number.
Nick Roberts <nickrob@snap.net.nz>
parents:
61690
diff
changeset
|
640 (string-to-number (match-string 2 gud-marker-acc))) |
51494 | 641 |
642 ;; Append any text before the marker to the output we're going | |
643 ;; to return - we don't include the marker in this text. | |
644 output (concat output | |
645 (substring gud-marker-acc 0 (match-beginning 0))) | |
646 | |
647 ;; Set the accumulator to the remaining text. | |
648 gud-marker-acc (substring gud-marker-acc (match-end 0)))) | |
649 | |
53345
c3cf2ae8eba0
(gud-gdb-command-name): Set default to
Nick Roberts <nickrob@snap.net.nz>
parents:
53250
diff
changeset
|
650 (while (string-match "\n\032\032\\(.*\\)\n" gud-marker-acc) |
63731
4121439fd904
(gud-tooltip-print-command): Indent properly.
Nick Roberts <nickrob@snap.net.nz>
parents:
63442
diff
changeset
|
651 (let ((match (match-string 1 gud-marker-acc))) |
67165
9ca7308880f8
(gud-gdb-marker-filter): When GDB is invoked with a process number, detect it.
Nick Roberts <nickrob@snap.net.nz>
parents:
67097
diff
changeset
|
652 |
63731
4121439fd904
(gud-tooltip-print-command): Indent properly.
Nick Roberts <nickrob@snap.net.nz>
parents:
63442
diff
changeset
|
653 (setq |
4121439fd904
(gud-tooltip-print-command): Indent properly.
Nick Roberts <nickrob@snap.net.nz>
parents:
63442
diff
changeset
|
654 ;; Append any text before the marker to the output we're going |
4121439fd904
(gud-tooltip-print-command): Indent properly.
Nick Roberts <nickrob@snap.net.nz>
parents:
63442
diff
changeset
|
655 ;; to return - we don't include the marker in this text. |
4121439fd904
(gud-tooltip-print-command): Indent properly.
Nick Roberts <nickrob@snap.net.nz>
parents:
63442
diff
changeset
|
656 output (concat output |
4121439fd904
(gud-tooltip-print-command): Indent properly.
Nick Roberts <nickrob@snap.net.nz>
parents:
63442
diff
changeset
|
657 (substring gud-marker-acc 0 (match-beginning 0))) |
65233
88dc4b03facf
(gdb-active-process, gdb-define-alist, gdb-macro-info, gdb-server-prefix,
Juanma Barranquero <lekktu@gmail.com>
parents:
65044
diff
changeset
|
658 |
63731
4121439fd904
(gud-tooltip-print-command): Indent properly.
Nick Roberts <nickrob@snap.net.nz>
parents:
63442
diff
changeset
|
659 ;; Set the accumulator to the remaining text. |
65233
88dc4b03facf
(gdb-active-process, gdb-define-alist, gdb-macro-info, gdb-server-prefix,
Juanma Barranquero <lekktu@gmail.com>
parents:
65044
diff
changeset
|
660 |
78945
07537c759a20
(gdb): Make gdba default and switch to gdb
Nick Roberts <nickrob@snap.net.nz>
parents:
78931
diff
changeset
|
661 gud-marker-acc (substring gud-marker-acc (match-end 0))))) |
53345
c3cf2ae8eba0
(gud-gdb-command-name): Set default to
Nick Roberts <nickrob@snap.net.nz>
parents:
53250
diff
changeset
|
662 |
51494 | 663 ;; Does the remaining text look like it might end with the |
664 ;; beginning of another marker? If it does, then keep it in | |
74144
b302d34b7eae
(jdb): Fix space/tab mixup in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
72650
diff
changeset
|
665 ;; gud-marker-acc until we receive the rest of it. Since we |
51494 | 666 ;; know the full marker regexp above failed, it's pretty simple to |
667 ;; test for marker starts. | |
54647
96ee39f37385
(gud-gdb-marker-filter): Include "\n" in regexp
Nick Roberts <nickrob@snap.net.nz>
parents:
54130
diff
changeset
|
668 (if (string-match "\n\\(\032.*\\)?\\'" gud-marker-acc) |
51494 | 669 (progn |
670 ;; Everything before the potential marker start can be output. | |
671 (setq output (concat output (substring gud-marker-acc | |
672 0 (match-beginning 0)))) | |
673 | |
674 ;; Everything after, we save, to combine with later input. | |
675 (setq gud-marker-acc | |
676 (substring gud-marker-acc (match-beginning 0)))) | |
677 | |
678 (setq output (concat output gud-marker-acc) | |
679 gud-marker-acc "")) | |
680 | |
681 output)) | |
682 | |
683 (easy-mmode-defmap gud-minibuffer-local-map | |
684 '(("\C-i" . comint-dynamic-complete-filename)) | |
685 "Keymap for minibuffer prompting of gud startup command." | |
686 :inherit minibuffer-local-map) | |
687 | |
688 (defun gud-query-cmdline (minor-mode &optional init) | |
71102
1cfc1ccfdfc2
(gud-query-cmdline, gud-common-init): Revert
Nick Roberts <nickrob@snap.net.nz>
parents:
71092
diff
changeset
|
689 (let* ((hist-sym (gud-symbol 'history nil minor-mode)) |
51494 | 690 (cmd-name (gud-val 'command-name minor-mode))) |
691 (unless (boundp hist-sym) (set hist-sym nil)) | |
692 (read-from-minibuffer | |
693 (format "Run %s (like this): " minor-mode) | |
694 (or (car-safe (symbol-value hist-sym)) | |
695 (concat (or cmd-name (symbol-name minor-mode)) | |
696 " " | |
697 (or init | |
698 (let ((file nil)) | |
699 (dolist (f (directory-files default-directory) file) | |
700 (if (and (file-executable-p f) | |
701 (not (file-directory-p f)) | |
702 (or (not file) | |
703 (file-newer-than-file-p f file))) | |
704 (setq file f))))))) | |
705 gud-minibuffer-local-map nil | |
706 hist-sym))) | |
707 | |
53536
479dc1181cb1
(gdb-first-prompt): Renamed from
Nick Roberts <nickrob@snap.net.nz>
parents:
53443
diff
changeset
|
708 (defvar gdb-first-prompt t) |
53345
c3cf2ae8eba0
(gud-gdb-command-name): Set default to
Nick Roberts <nickrob@snap.net.nz>
parents:
53250
diff
changeset
|
709 |
61114
e1f821140a5a
(gdb): (Re)-initialise gud-filter-pending-text.
Nick Roberts <nickrob@snap.net.nz>
parents:
59862
diff
changeset
|
710 (defvar gud-filter-pending-text nil |
e1f821140a5a
(gdb): (Re)-initialise gud-filter-pending-text.
Nick Roberts <nickrob@snap.net.nz>
parents:
59862
diff
changeset
|
711 "Non-nil means this is text that has been saved for later in `gud-filter'.") |
e1f821140a5a
(gdb): (Re)-initialise gud-filter-pending-text.
Nick Roberts <nickrob@snap.net.nz>
parents:
59862
diff
changeset
|
712 |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
713 ;; If in gdb mode, gdb-mi is loaded. |
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
714 (declare-function gdb-restore-windows "gdb-mi" ()) |
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
715 |
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
716 ;; The old gdb command (text command mode). The new one is in gdb-mi.el. |
51494 | 717 ;;;###autoload |
78958
4271aaaba691
(gud-gud-gdb-command-name): New option.
Nick Roberts <nickrob@snap.net.nz>
parents:
78948
diff
changeset
|
718 (defun gud-gdb (command-line) |
51494 | 719 "Run gdb on program FILE in buffer *gud-FILE*. |
68900
7e09779fccb5
(gdb): Improve doc string.
Nick Roberts <nickrob@snap.net.nz>
parents:
68773
diff
changeset
|
720 The directory containing FILE becomes the initial working |
79339
0c660f35bf59
(gud-gdb): Remove vestigial gdba doc and code.
Nick Roberts <nickrob@snap.net.nz>
parents:
78962
diff
changeset
|
721 directory and source-file directory for your debugger." |
78958
4271aaaba691
(gud-gud-gdb-command-name): New option.
Nick Roberts <nickrob@snap.net.nz>
parents:
78948
diff
changeset
|
722 (interactive (list (gud-query-cmdline 'gud-gdb))) |
51494 | 723 |
77073
1248605d9e44
(gdb): Restore existing session if user
Nick Roberts <nickrob@snap.net.nz>
parents:
76927
diff
changeset
|
724 (when (and gud-comint-buffer |
67403
adbf404cf806
(gud-speedbar-buttons, gud-tooltip-tips):
Nick Roberts <nickrob@snap.net.nz>
parents:
67251
diff
changeset
|
725 (buffer-name gud-comint-buffer) |
69682
99bce5a59fbf
(gdb): Only complain about multiple debugging
Andreas Schwab <schwab@suse.de>
parents:
69527
diff
changeset
|
726 (get-buffer-process gud-comint-buffer) |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
727 (with-current-buffer gud-comint-buffer (eq gud-minor-mode 'gdbmi))) |
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
728 (gdb-restore-windows) |
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
729 (error |
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
730 "Multiple debugging requires restarting in text command mode")) |
69291
928466fb1966
(gud-jdb-marker-filter): Double quote `[' in regexp for Lisp syntax.
Luc Teirlinck <teirllm@auburn.edu>
parents:
69233
diff
changeset
|
731 |
79339
0c660f35bf59
(gud-gdb): Remove vestigial gdba doc and code.
Nick Roberts <nickrob@snap.net.nz>
parents:
78962
diff
changeset
|
732 (gud-common-init command-line nil 'gud-gdb-marker-filter) |
0c660f35bf59
(gud-gdb): Remove vestigial gdba doc and code.
Nick Roberts <nickrob@snap.net.nz>
parents:
78962
diff
changeset
|
733 (set (make-local-variable 'gud-minor-mode) 'gdb) |
51494 | 734 |
735 (gud-def gud-break "break %f:%l" "\C-b" "Set breakpoint at current line.") | |
66802
b486268fac00
(gud-menu-map): Move parentheses.
Nick Roberts <nickrob@snap.net.nz>
parents:
66773
diff
changeset
|
736 (gud-def gud-tbreak "tbreak %f:%l" "\C-t" |
b486268fac00
(gud-menu-map): Move parentheses.
Nick Roberts <nickrob@snap.net.nz>
parents:
66773
diff
changeset
|
737 "Set temporary breakpoint at current line.") |
b486268fac00
(gud-menu-map): Move parentheses.
Nick Roberts <nickrob@snap.net.nz>
parents:
66773
diff
changeset
|
738 (gud-def gud-remove "clear %f:%l" "\C-d" "Remove breakpoint at current line") |
b486268fac00
(gud-menu-map): Move parentheses.
Nick Roberts <nickrob@snap.net.nz>
parents:
66773
diff
changeset
|
739 (gud-def gud-step "step %p" "\C-s" "Step one source line with display.") |
b486268fac00
(gud-menu-map): Move parentheses.
Nick Roberts <nickrob@snap.net.nz>
parents:
66773
diff
changeset
|
740 (gud-def gud-stepi "stepi %p" "\C-i" "Step one instruction with display.") |
b486268fac00
(gud-menu-map): Move parentheses.
Nick Roberts <nickrob@snap.net.nz>
parents:
66773
diff
changeset
|
741 (gud-def gud-next "next %p" "\C-n" "Step one line (skip functions).") |
b486268fac00
(gud-menu-map): Move parentheses.
Nick Roberts <nickrob@snap.net.nz>
parents:
66773
diff
changeset
|
742 (gud-def gud-nexti "nexti %p" nil "Step one instruction (skip functions).") |
b486268fac00
(gud-menu-map): Move parentheses.
Nick Roberts <nickrob@snap.net.nz>
parents:
66773
diff
changeset
|
743 (gud-def gud-cont "cont" "\C-r" "Continue with display.") |
b486268fac00
(gud-menu-map): Move parentheses.
Nick Roberts <nickrob@snap.net.nz>
parents:
66773
diff
changeset
|
744 (gud-def gud-finish "finish" "\C-f" "Finish executing current function.") |
64998
b2d245bb54da
(gud-jump): Rework for gdb-ui.
Nick Roberts <nickrob@snap.net.nz>
parents:
64697
diff
changeset
|
745 (gud-def gud-jump |
b2d245bb54da
(gud-jump): Rework for gdb-ui.
Nick Roberts <nickrob@snap.net.nz>
parents:
64697
diff
changeset
|
746 (progn (gud-call "tbreak %f:%l") (gud-call "jump %f:%l")) |
b2d245bb54da
(gud-jump): Rework for gdb-ui.
Nick Roberts <nickrob@snap.net.nz>
parents:
64697
diff
changeset
|
747 "\C-j" "Set execution address to current line.") |
51494 | 748 |
66802
b486268fac00
(gud-menu-map): Move parentheses.
Nick Roberts <nickrob@snap.net.nz>
parents:
66773
diff
changeset
|
749 (gud-def gud-up "up %p" "<" "Up N stack frames (numeric arg).") |
b486268fac00
(gud-menu-map): Move parentheses.
Nick Roberts <nickrob@snap.net.nz>
parents:
66773
diff
changeset
|
750 (gud-def gud-down "down %p" ">" "Down N stack frames (numeric arg).") |
b486268fac00
(gud-menu-map): Move parentheses.
Nick Roberts <nickrob@snap.net.nz>
parents:
66773
diff
changeset
|
751 (gud-def gud-print "print %e" "\C-p" "Evaluate C expression at point.") |
b486268fac00
(gud-menu-map): Move parentheses.
Nick Roberts <nickrob@snap.net.nz>
parents:
66773
diff
changeset
|
752 (gud-def gud-pstar "print* %e" nil |
63031
ae951edf75a6
(gdb, gud-menu-map): Add command to evaluate
Nick Roberts <nickrob@snap.net.nz>
parents:
62825
diff
changeset
|
753 "Evaluate C dereferenced pointer expression at point.") |
66802
b486268fac00
(gud-menu-map): Move parentheses.
Nick Roberts <nickrob@snap.net.nz>
parents:
66773
diff
changeset
|
754 |
66769
c57e0cf19ef5
(gud-menu-map): Ensure tool-bar is constant when using the speedbar.
Nick Roberts <nickrob@snap.net.nz>
parents:
66578
diff
changeset
|
755 ;; For debugging Emacs only. |
66802
b486268fac00
(gud-menu-map): Move parentheses.
Nick Roberts <nickrob@snap.net.nz>
parents:
66773
diff
changeset
|
756 (gud-def gud-pv "pv1 %e" "\C-v" "Print the value of the lisp variable.") |
b486268fac00
(gud-menu-map): Move parentheses.
Nick Roberts <nickrob@snap.net.nz>
parents:
66773
diff
changeset
|
757 |
b486268fac00
(gud-menu-map): Move parentheses.
Nick Roberts <nickrob@snap.net.nz>
parents:
66773
diff
changeset
|
758 (gud-def gud-until "until %l" "\C-u" "Continue to current line.") |
b486268fac00
(gud-menu-map): Move parentheses.
Nick Roberts <nickrob@snap.net.nz>
parents:
66773
diff
changeset
|
759 (gud-def gud-run "run" nil "Run the program.") |
51494 | 760 |
761 (local-set-key "\C-i" 'gud-gdb-complete-command) | |
762 (setq comint-prompt-regexp "^(.*gdb[+]?) *") | |
763 (setq paragraph-start comint-prompt-regexp) | |
53536
479dc1181cb1
(gdb-first-prompt): Renamed from
Nick Roberts <nickrob@snap.net.nz>
parents:
53443
diff
changeset
|
764 (setq gdb-first-prompt t) |
78768
d8140314e60f
(gdb-ready): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
78533
diff
changeset
|
765 (setq gud-running nil) |
61114
e1f821140a5a
(gdb): (Re)-initialise gud-filter-pending-text.
Nick Roberts <nickrob@snap.net.nz>
parents:
59862
diff
changeset
|
766 (setq gud-filter-pending-text nil) |
78958
4271aaaba691
(gud-gud-gdb-command-name): New option.
Nick Roberts <nickrob@snap.net.nz>
parents:
78948
diff
changeset
|
767 (run-hooks 'gud-gdb-mode-hook)) |
51494 | 768 |
769 ;; One of the nice features of GDB is its impressive support for | |
770 ;; context-sensitive command completion. We preserve that feature | |
771 ;; in the GUD buffer by using a GDB command designed just for Emacs. | |
772 | |
773 ;; The completion process filter indicates when it is finished. | |
774 (defvar gud-gdb-fetch-lines-in-progress) | |
775 | |
776 ;; Since output may arrive in fragments we accumulate partials strings here. | |
777 (defvar gud-gdb-fetch-lines-string) | |
778 | |
779 ;; We need to know how much of the completion to chop off. | |
780 (defvar gud-gdb-fetch-lines-break) | |
781 | |
782 ;; The completion list is constructed by the process filter. | |
783 (defvar gud-gdb-fetched-lines) | |
784 | |
69527
64cdad743e23
(gud-gdb-complete-command, gud-gdb-run-command-fetch-lines): Adapt for use
Nick Roberts <nickrob@snap.net.nz>
parents:
69476
diff
changeset
|
785 (defun gud-gdb-complete-command (&optional command a b) |
51494 | 786 "Perform completion on the GDB command preceding point. |
787 This is implemented using the GDB `complete' command which isn't | |
788 available with older versions of GDB." | |
789 (interactive) | |
69527
64cdad743e23
(gud-gdb-complete-command, gud-gdb-run-command-fetch-lines): Adapt for use
Nick Roberts <nickrob@snap.net.nz>
parents:
69476
diff
changeset
|
790 (if command |
64cdad743e23
(gud-gdb-complete-command, gud-gdb-run-command-fetch-lines): Adapt for use
Nick Roberts <nickrob@snap.net.nz>
parents:
69476
diff
changeset
|
791 ;; Used by gud-watch in mini-buffer. |
64cdad743e23
(gud-gdb-complete-command, gud-gdb-run-command-fetch-lines): Adapt for use
Nick Roberts <nickrob@snap.net.nz>
parents:
69476
diff
changeset
|
792 (setq command (concat "p " command)) |
64cdad743e23
(gud-gdb-complete-command, gud-gdb-run-command-fetch-lines): Adapt for use
Nick Roberts <nickrob@snap.net.nz>
parents:
69476
diff
changeset
|
793 ;; Used in GUD buffer. |
64cdad743e23
(gud-gdb-complete-command, gud-gdb-run-command-fetch-lines): Adapt for use
Nick Roberts <nickrob@snap.net.nz>
parents:
69476
diff
changeset
|
794 (let ((end (point))) |
64cdad743e23
(gud-gdb-complete-command, gud-gdb-run-command-fetch-lines): Adapt for use
Nick Roberts <nickrob@snap.net.nz>
parents:
69476
diff
changeset
|
795 (setq command (buffer-substring (comint-line-beginning-position) end)))) |
64cdad743e23
(gud-gdb-complete-command, gud-gdb-run-command-fetch-lines): Adapt for use
Nick Roberts <nickrob@snap.net.nz>
parents:
69476
diff
changeset
|
796 (let* ((command-word |
51494 | 797 ;; Find the word break. This match will always succeed. |
798 (and (string-match "\\(\\`\\| \\)\\([^ ]*\\)\\'" command) | |
799 (substring command (match-beginning 2)))) | |
800 (complete-list | |
801 (gud-gdb-run-command-fetch-lines (concat "complete " command) | |
802 (current-buffer) | |
803 ;; From string-match above. | |
804 (match-beginning 2)))) | |
805 ;; Protect against old versions of GDB. | |
806 (and complete-list | |
807 (string-match "^Undefined command: \"complete\"" (car complete-list)) | |
808 (error "This version of GDB doesn't support the `complete' command")) | |
809 ;; Sort the list like readline. | |
810 (setq complete-list (sort complete-list (function string-lessp))) | |
811 ;; Remove duplicates. | |
812 (let ((first complete-list) | |
813 (second (cdr complete-list))) | |
814 (while second | |
815 (if (string-equal (car first) (car second)) | |
816 (setcdr first (setq second (cdr second))) | |
817 (setq first second | |
818 second (cdr second))))) | |
819 ;; Add a trailing single quote if there is a unique completion | |
820 ;; and it contains an odd number of unquoted single quotes. | |
821 (and (= (length complete-list) 1) | |
822 (let ((str (car complete-list)) | |
823 (pos 0) | |
824 (count 0)) | |
825 (while (string-match "\\([^'\\]\\|\\\\'\\)*'" str pos) | |
826 (setq count (1+ count) | |
827 pos (match-end 0))) | |
828 (and (= (mod count 2) 1) | |
829 (setq complete-list (list (concat str "'")))))) | |
830 ;; Let comint handle the rest. | |
831 (comint-dynamic-simple-complete command-word complete-list))) | |
832 | |
833 ;; The completion process filter is installed temporarily to slurp the | |
834 ;; output of GDB up to the next prompt and build the completion list. | |
835 (defun gud-gdb-fetch-lines-filter (string filter) | |
836 "Filter used to read the list of lines output by a command. | |
837 STRING is the output to filter. | |
838 It is passed through FILTER before we look at it." | |
839 (setq string (funcall filter string)) | |
840 (setq string (concat gud-gdb-fetch-lines-string string)) | |
841 (while (string-match "\n" string) | |
842 (push (substring string gud-gdb-fetch-lines-break (match-beginning 0)) | |
843 gud-gdb-fetched-lines) | |
844 (setq string (substring string (match-end 0)))) | |
845 (if (string-match comint-prompt-regexp string) | |
846 (progn | |
847 (setq gud-gdb-fetch-lines-in-progress nil) | |
848 string) | |
849 (progn | |
850 (setq gud-gdb-fetch-lines-string string) | |
851 ""))) | |
852 | |
853 ;; gdb speedbar functions | |
854 | |
855 (defun gud-gdb-goto-stackframe (text token indent) | |
856 "Goto the stackframe described by TEXT, TOKEN, and INDENT." | |
857 (speedbar-with-attached-buffer | |
858 (gud-basic-call (concat "server frame " (nth 1 token))) | |
859 (sit-for 1))) | |
860 | |
861 (defvar gud-gdb-fetched-stack-frame nil | |
862 "Stack frames we are fetching from GDB.") | |
863 | |
864 ;(defun gud-gdb-get-scope-data (text token indent) | |
865 ; ;; checkdoc-params: (indent) | |
866 ; "Fetch data associated with a stack frame, and expand/contract it. | |
867 ;Data to do this is retrieved from TEXT and TOKEN." | |
868 ; (let ((args nil) (scope nil)) | |
869 ; (gud-gdb-run-command-fetch-lines "info args") | |
870 ; | |
871 ; (gud-gdb-run-command-fetch-lines "info local") | |
872 ; | |
873 ; )) | |
874 | |
875 (defun gud-gdb-get-stackframe (buffer) | |
876 "Extract the current stack frame out of the GUD GDB BUFFER." | |
877 (let ((newlst nil) | |
878 (fetched-stack-frame-list | |
879 (gud-gdb-run-command-fetch-lines "server backtrace" buffer))) | |
880 (if (and (car fetched-stack-frame-list) | |
881 (string-match "No stack" (car fetched-stack-frame-list))) | |
882 ;; Go into some other mode??? | |
883 nil | |
884 (dolist (e fetched-stack-frame-list) | |
885 (let ((name nil) (num nil)) | |
886 (if (not (or | |
887 (string-match "^#\\([0-9]+\\) +[0-9a-fx]+ in \\([:0-9a-zA-Z_]+\\) (" e) | |
888 (string-match "^#\\([0-9]+\\) +\\([:0-9a-zA-Z_]+\\) (" e))) | |
889 (if (not (string-match | |
96515
ca675825c4ef
(gud-gdb-get-stackframe): Allow absolute
Nick Roberts <nickrob@snap.net.nz>
parents:
95841
diff
changeset
|
890 "at \\([-0-9a-zA-Z_/.]+\\):\\([0-9]+\\)$" e)) |
51494 | 891 nil |
892 (setcar newlst | |
893 (list (nth 0 (car newlst)) | |
894 (nth 1 (car newlst)) | |
895 (match-string 1 e) | |
896 (match-string 2 e)))) | |
897 (setq num (match-string 1 e) | |
898 name (match-string 2 e)) | |
899 (setq newlst | |
900 (cons | |
901 (if (string-match | |
96515
ca675825c4ef
(gud-gdb-get-stackframe): Allow absolute
Nick Roberts <nickrob@snap.net.nz>
parents:
95841
diff
changeset
|
902 "at \\([-0-9a-zA-Z_/.]+\\):\\([0-9]+\\)$" e) |
51494 | 903 (list name num (match-string 1 e) |
904 (match-string 2 e)) | |
905 (list name num)) | |
906 newlst))))) | |
907 (nreverse newlst)))) | |
908 | |
909 ;(defun gud-gdb-selected-frame-info (buffer) | |
910 ; "Learn GDB information for the currently selected stack frame in BUFFER." | |
911 ; ) | |
912 | |
913 (defun gud-gdb-run-command-fetch-lines (command buffer &optional skip) | |
914 "Run COMMAND, and return the list of lines it outputs. | |
69527
64cdad743e23
(gud-gdb-complete-command, gud-gdb-run-command-fetch-lines): Adapt for use
Nick Roberts <nickrob@snap.net.nz>
parents:
69476
diff
changeset
|
915 BUFFER is the current buffer which may be the GUD buffer in which to run. |
80136
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
916 SKIP is the number of chars to skip on each line, it defaults to 0." |
69527
64cdad743e23
(gud-gdb-complete-command, gud-gdb-run-command-fetch-lines): Adapt for use
Nick Roberts <nickrob@snap.net.nz>
parents:
69476
diff
changeset
|
917 (with-current-buffer gud-comint-buffer |
64cdad743e23
(gud-gdb-complete-command, gud-gdb-run-command-fetch-lines): Adapt for use
Nick Roberts <nickrob@snap.net.nz>
parents:
69476
diff
changeset
|
918 (if (and (eq gud-comint-buffer buffer) |
64cdad743e23
(gud-gdb-complete-command, gud-gdb-run-command-fetch-lines): Adapt for use
Nick Roberts <nickrob@snap.net.nz>
parents:
69476
diff
changeset
|
919 (save-excursion |
64cdad743e23
(gud-gdb-complete-command, gud-gdb-run-command-fetch-lines): Adapt for use
Nick Roberts <nickrob@snap.net.nz>
parents:
69476
diff
changeset
|
920 (goto-char (point-max)) |
64cdad743e23
(gud-gdb-complete-command, gud-gdb-run-command-fetch-lines): Adapt for use
Nick Roberts <nickrob@snap.net.nz>
parents:
69476
diff
changeset
|
921 (forward-line 0) |
64cdad743e23
(gud-gdb-complete-command, gud-gdb-run-command-fetch-lines): Adapt for use
Nick Roberts <nickrob@snap.net.nz>
parents:
69476
diff
changeset
|
922 (not (looking-at comint-prompt-regexp)))) |
51494 | 923 nil |
924 ;; Much of this copied from GDB complete, but I'm grabbing the stack | |
925 ;; frame instead. | |
926 (let ((gud-gdb-fetch-lines-in-progress t) | |
927 (gud-gdb-fetched-lines nil) | |
928 (gud-gdb-fetch-lines-string nil) | |
929 (gud-gdb-fetch-lines-break (or skip 0)) | |
930 (gud-marker-filter | |
69527
64cdad743e23
(gud-gdb-complete-command, gud-gdb-run-command-fetch-lines): Adapt for use
Nick Roberts <nickrob@snap.net.nz>
parents:
69476
diff
changeset
|
931 `(lambda (string) |
64cdad743e23
(gud-gdb-complete-command, gud-gdb-run-command-fetch-lines): Adapt for use
Nick Roberts <nickrob@snap.net.nz>
parents:
69476
diff
changeset
|
932 (gud-gdb-fetch-lines-filter string ',gud-marker-filter)))) |
51494 | 933 ;; Issue the command to GDB. |
934 (gud-basic-call command) | |
935 ;; Slurp the output. | |
936 (while gud-gdb-fetch-lines-in-progress | |
69527
64cdad743e23
(gud-gdb-complete-command, gud-gdb-run-command-fetch-lines): Adapt for use
Nick Roberts <nickrob@snap.net.nz>
parents:
69476
diff
changeset
|
937 (accept-process-output (get-buffer-process gud-comint-buffer))) |
51494 | 938 (nreverse gud-gdb-fetched-lines))))) |
939 | |
940 | |
941 ;; ====================================================================== | |
942 ;; sdb functions | |
943 | |
944 ;; History of argument lists passed to sdb. | |
945 (defvar gud-sdb-history nil) | |
946 | |
947 (defvar gud-sdb-needs-tags (not (file-exists-p "/var")) | |
948 "If nil, we're on a System V Release 4 and don't need the tags hack.") | |
949 | |
950 (defvar gud-sdb-lastfile nil) | |
951 | |
952 (defun gud-sdb-marker-filter (string) | |
953 (setq gud-marker-acc | |
954 (if gud-marker-acc (concat gud-marker-acc string) string)) | |
955 (let (start) | |
956 ;; Process all complete markers in this chunk | |
957 (while | |
958 (cond | |
959 ;; System V Release 3.2 uses this format | |
960 ((string-match "\\(^\\|\n\\)\\*?\\(0x\\w* in \\)?\\([^:\n]*\\):\\([0-9]*\\):.*\n" | |
961 gud-marker-acc start) | |
962 (setq gud-last-frame | |
963 (cons (match-string 3 gud-marker-acc) | |
62049
471fca8487d3
Replace string-to-int with string-to-number.
Nick Roberts <nickrob@snap.net.nz>
parents:
61690
diff
changeset
|
964 (string-to-number (match-string 4 gud-marker-acc))))) |
51494 | 965 ;; System V Release 4.0 quite often clumps two lines together |
966 ((string-match "^\\(BREAKPOINT\\|STEPPED\\) process [0-9]+ function [^ ]+ in \\(.+\\)\n\\([0-9]+\\):" | |
967 gud-marker-acc start) | |
968 (setq gud-sdb-lastfile (match-string 2 gud-marker-acc)) | |
969 (setq gud-last-frame | |
970 (cons gud-sdb-lastfile | |
62049
471fca8487d3
Replace string-to-int with string-to-number.
Nick Roberts <nickrob@snap.net.nz>
parents:
61690
diff
changeset
|
971 (string-to-number (match-string 3 gud-marker-acc))))) |
51494 | 972 ;; System V Release 4.0 |
973 ((string-match "^\\(BREAKPOINT\\|STEPPED\\) process [0-9]+ function [^ ]+ in \\(.+\\)\n" | |
974 gud-marker-acc start) | |
975 (setq gud-sdb-lastfile (match-string 2 gud-marker-acc))) | |
976 ((and gud-sdb-lastfile (string-match "^\\([0-9]+\\):" | |
977 gud-marker-acc start)) | |
978 (setq gud-last-frame | |
979 (cons gud-sdb-lastfile | |
62049
471fca8487d3
Replace string-to-int with string-to-number.
Nick Roberts <nickrob@snap.net.nz>
parents:
61690
diff
changeset
|
980 (string-to-number (match-string 1 gud-marker-acc))))) |
51494 | 981 (t |
982 (setq gud-sdb-lastfile nil))) | |
983 (setq start (match-end 0))) | |
984 | |
985 ;; Search for the last incomplete line in this chunk | |
986 (while (string-match "\n" gud-marker-acc start) | |
987 (setq start (match-end 0))) | |
988 | |
989 ;; If we have an incomplete line, store it in gud-marker-acc. | |
990 (setq gud-marker-acc (substring gud-marker-acc (or start 0)))) | |
991 string) | |
992 | |
993 (defun gud-sdb-find-file (f) | |
994 (if gud-sdb-needs-tags (find-tag-noselect f) (find-file-noselect f))) | |
995 | |
996 ;;;###autoload | |
997 (defun sdb (command-line) | |
998 "Run sdb on program FILE in buffer *gud-FILE*. | |
999 The directory containing FILE becomes the initial working directory | |
1000 and source-file directory for your debugger." | |
1001 (interactive (list (gud-query-cmdline 'sdb))) | |
1002 | |
64345
1009f071639a
(etags, sdb): Only require etags when needed.
Nick Roberts <nickrob@snap.net.nz>
parents:
64121
diff
changeset
|
1003 (if gud-sdb-needs-tags (require 'etags)) |
51494 | 1004 (if (and gud-sdb-needs-tags |
1005 (not (and (boundp 'tags-file-name) | |
1006 (stringp tags-file-name) | |
1007 (file-exists-p tags-file-name)))) | |
1008 (error "The sdb support requires a valid tags table to work")) | |
1009 | |
1010 (gud-common-init command-line nil 'gud-sdb-marker-filter 'gud-sdb-find-file) | |
1011 (set (make-local-variable 'gud-minor-mode) 'sdb) | |
1012 | |
1013 (gud-def gud-break "%l b" "\C-b" "Set breakpoint at current line.") | |
1014 (gud-def gud-tbreak "%l c" "\C-t" "Set temporary breakpoint at current line.") | |
1015 (gud-def gud-remove "%l d" "\C-d" "Remove breakpoint at current line") | |
1016 (gud-def gud-step "s %p" "\C-s" "Step one source line with display.") | |
1017 (gud-def gud-stepi "i %p" "\C-i" "Step one instruction with display.") | |
1018 (gud-def gud-next "S %p" "\C-n" "Step one line (skip functions).") | |
1019 (gud-def gud-cont "c" "\C-r" "Continue with display.") | |
1020 (gud-def gud-print "%e/" "\C-p" "Evaluate C expression at point.") | |
1021 | |
1022 (setq comint-prompt-regexp "\\(^\\|\n\\)\\*") | |
1023 (setq paragraph-start comint-prompt-regexp) | |
1024 (run-hooks 'sdb-mode-hook) | |
1025 ) | |
1026 | |
1027 ;; ====================================================================== | |
1028 ;; dbx functions | |
1029 | |
1030 ;; History of argument lists passed to dbx. | |
1031 (defvar gud-dbx-history nil) | |
1032 | |
1033 (defcustom gud-dbx-directories nil | |
1034 "*A list of directories that dbx should search for source code. | |
1035 If nil, only source files in the program directory | |
1036 will be known to dbx. | |
1037 | |
1038 The file names should be absolute, or relative to the directory | |
1039 containing the executable being debugged." | |
1040 :type '(choice (const :tag "Current Directory" nil) | |
1041 (repeat :value ("") | |
1042 directory)) | |
1043 :group 'gud) | |
1044 | |
1045 (defun gud-dbx-massage-args (file args) | |
1046 (nconc (let ((directories gud-dbx-directories) | |
1047 (result nil)) | |
1048 (while directories | |
1049 (setq result (cons (car directories) (cons "-I" result))) | |
1050 (setq directories (cdr directories))) | |
1051 (nreverse result)) | |
1052 args)) | |
1053 | |
1054 (defun gud-dbx-marker-filter (string) | |
1055 (setq gud-marker-acc (if gud-marker-acc (concat gud-marker-acc string) string)) | |
1056 | |
1057 (let (start) | |
1058 ;; Process all complete markers in this chunk. | |
1059 (while (or (string-match | |
1060 "stopped in .* at line \\([0-9]*\\) in file \"\\([^\"]*\\)\"" | |
1061 gud-marker-acc start) | |
1062 (string-match | |
1063 "signal .* in .* at line \\([0-9]*\\) in file \"\\([^\"]*\\)\"" | |
1064 gud-marker-acc start)) | |
1065 (setq gud-last-frame | |
1066 (cons (match-string 2 gud-marker-acc) | |
62049
471fca8487d3
Replace string-to-int with string-to-number.
Nick Roberts <nickrob@snap.net.nz>
parents:
61690
diff
changeset
|
1067 (string-to-number (match-string 1 gud-marker-acc))) |
51494 | 1068 start (match-end 0))) |
1069 | |
1070 ;; Search for the last incomplete line in this chunk | |
1071 (while (string-match "\n" gud-marker-acc start) | |
1072 (setq start (match-end 0))) | |
1073 | |
1074 ;; If the incomplete line APPEARS to begin with another marker, keep it | |
1075 ;; in the accumulator. Otherwise, clear the accumulator to avoid an | |
1076 ;; unnecessary concat during the next call. | |
1077 (setq gud-marker-acc | |
1078 (if (string-match "\\(stopped\\|signal\\)" gud-marker-acc start) | |
1079 (substring gud-marker-acc (match-beginning 0)) | |
1080 nil))) | |
1081 string) | |
1082 | |
1083 ;; Functions for Mips-style dbx. Given the option `-emacs', documented in | |
1084 ;; OSF1, not necessarily elsewhere, it produces markers similar to gdb's. | |
1085 (defvar gud-mips-p | |
1086 (or (string-match "^mips-[^-]*-ultrix" system-configuration) | |
1087 ;; We haven't tested gud on this system: | |
1088 (string-match "^mips-[^-]*-riscos" system-configuration) | |
1089 ;; It's documented on OSF/1.3 | |
1090 (string-match "^mips-[^-]*-osf1" system-configuration) | |
1091 (string-match "^alpha[^-]*-[^-]*-osf" system-configuration)) | |
1092 "Non-nil to assume the MIPS/OSF dbx conventions (argument `-emacs').") | |
1093 | |
1094 (defvar gud-dbx-command-name | |
1095 (concat "dbx" (if gud-mips-p " -emacs"))) | |
1096 | |
1097 ;; This is just like the gdb one except for the regexps since we need to cope | |
1098 ;; with an optional breakpoint number in [] before the ^Z^Z | |
1099 (defun gud-mipsdbx-marker-filter (string) | |
1100 (setq gud-marker-acc (concat gud-marker-acc string)) | |
1101 (let ((output "")) | |
1102 | |
1103 ;; Process all the complete markers in this chunk. | |
1104 (while (string-match | |
1105 ;; This is like th gdb marker but with an optional | |
1106 ;; leading break point number like `[1] ' | |
1107 "[][ 0-9]*\032\032\\([^:\n]*\\):\\([0-9]*\\):.*\n" | |
1108 gud-marker-acc) | |
1109 (setq | |
1110 | |
1111 ;; Extract the frame position from the marker. | |
1112 gud-last-frame | |
1113 (cons (match-string 1 gud-marker-acc) | |
62049
471fca8487d3
Replace string-to-int with string-to-number.
Nick Roberts <nickrob@snap.net.nz>
parents:
61690
diff
changeset
|
1114 (string-to-number (match-string 2 gud-marker-acc))) |
51494 | 1115 |
1116 ;; Append any text before the marker to the output we're going | |
1117 ;; to return - we don't include the marker in this text. | |
1118 output (concat output | |
1119 (substring gud-marker-acc 0 (match-beginning 0))) | |
1120 | |
1121 ;; Set the accumulator to the remaining text. | |
1122 gud-marker-acc (substring gud-marker-acc (match-end 0)))) | |
1123 | |
1124 ;; Does the remaining text look like it might end with the | |
1125 ;; beginning of another marker? If it does, then keep it in | |
1126 ;; gud-marker-acc until we receive the rest of it. Since we | |
1127 ;; know the full marker regexp above failed, it's pretty simple to | |
1128 ;; test for marker starts. | |
1129 (if (string-match "[][ 0-9]*\032.*\\'" gud-marker-acc) | |
1130 (progn | |
1131 ;; Everything before the potential marker start can be output. | |
1132 (setq output (concat output (substring gud-marker-acc | |
1133 0 (match-beginning 0)))) | |
1134 | |
1135 ;; Everything after, we save, to combine with later input. | |
1136 (setq gud-marker-acc | |
1137 (substring gud-marker-acc (match-beginning 0)))) | |
1138 | |
1139 (setq output (concat output gud-marker-acc) | |
1140 gud-marker-acc "")) | |
1141 | |
1142 output)) | |
1143 | |
1144 ;; The dbx in IRIX is a pain. It doesn't print the file name when | |
1145 ;; stopping at a breakpoint (but you do get it from the `up' and | |
1146 ;; `down' commands...). The only way to extract the information seems | |
1147 ;; to be with a `file' command, although the current line number is | |
1148 ;; available in $curline. Thus we have to look for output which | |
1149 ;; appears to indicate a breakpoint. Then we prod the dbx sub-process | |
1150 ;; to output the information we want with a combination of the | |
1151 ;; `printf' and `file' commands as a pseudo marker which we can | |
1152 ;; recognise next time through the marker-filter. This would be like | |
1153 ;; the gdb marker but you can't get the file name without a newline... | |
1154 ;; Note that gud-remove won't work since Irix dbx expects a breakpoint | |
1155 ;; number rather than a line number etc. Maybe this could be made to | |
1156 ;; work by listing all the breakpoints and picking the one(s) with the | |
1157 ;; correct line number, but life's too short. | |
1158 ;; d.love@dl.ac.uk (Dave Love) can be blamed for this | |
1159 | |
1160 (defvar gud-irix-p | |
1161 (and (string-match "^mips-[^-]*-irix" system-configuration) | |
1162 (not (string-match "irix[6-9]\\.[1-9]" system-configuration))) | |
1163 "Non-nil to assume the interface appropriate for IRIX dbx. | |
1164 This works in IRIX 4, 5 and 6, but `gud-dbx-use-stopformat-p' provides | |
1165 a better solution in 6.1 upwards.") | |
1166 (defvar gud-dbx-use-stopformat-p | |
1167 (string-match "irix[6-9]\\.[1-9]" system-configuration) | |
1168 "Non-nil to use the dbx feature present at least from Irix 6.1 | |
80136
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
1169 whereby $stopformat=1 produces an output format compatible with |
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
1170 `gud-dbx-marker-filter'.") |
51494 | 1171 ;; [Irix dbx seems to be a moving target. The dbx output changed |
1172 ;; subtly sometime between OS v4.0.5 and v5.2 so that, for instance, | |
1173 ;; the output from `up' is no longer spotted by gud (and it's probably | |
1174 ;; not distinctive enough to try to match it -- use C-<, C-> | |
1175 ;; exclusively) . For 5.3 and 6.0, the $curline variable changed to | |
1176 ;; `long long'(why?!), so the printf stuff needed changing. The line | |
1177 ;; number was cast to `long' as a compromise between the new `long | |
1178 ;; long' and the original `int'. This is reported not to work in 6.2, | |
1179 ;; so it's changed back to int -- don't make your sources too long. | |
1180 ;; From Irix6.1 (but not 6.0?) dbx supports an undocumented feature | |
1181 ;; whereby `set $stopformat=1' reportedly produces output compatible | |
1182 ;; with `gud-dbx-marker-filter', which we prefer. | |
1183 | |
1184 ;; The process filter is also somewhat | |
1185 ;; unreliable, sometimes not spotting the markers; I don't know | |
1186 ;; whether there's anything that can be done about that. It would be | |
1187 ;; much better if SGI could be persuaded to (re?)instate the MIPS | |
1188 ;; -emacs flag for gdb-like output (which ought to be possible as most | |
1189 ;; of the communication I've had over it has been from sgi.com).] | |
1190 | |
1191 ;; this filter is influenced by the xdb one rather than the gdb one | |
1192 (defun gud-irixdbx-marker-filter (string) | |
1193 (let (result (case-fold-search nil)) | |
1194 (if (or (string-match comint-prompt-regexp string) | |
1195 (string-match ".*\012" string)) | |
1196 (setq result (concat gud-marker-acc string) | |
1197 gud-marker-acc "") | |
1198 (setq gud-marker-acc (concat gud-marker-acc string))) | |
1199 (if result | |
1200 (cond | |
1201 ;; look for breakpoint or signal indication e.g.: | |
1202 ;; [2] Process 1267 (pplot) stopped at [params:338 ,0x400ec0] | |
1203 ;; Process 1281 (pplot) stopped at [params:339 ,0x400ec8] | |
1204 ;; Process 1270 (pplot) Floating point exception [._read._read:16 ,0x452188] | |
1205 ((string-match | |
1206 "^\\(\\[[0-9]+] \\)?Process +[0-9]+ ([^)]*) [^[]+\\[[^]\n]*]\n" | |
1207 result) | |
1208 ;; prod dbx into printing out the line number and file | |
1209 ;; name in a form we can grok as below | |
1210 (process-send-string (get-buffer-process gud-comint-buffer) | |
1211 "printf \"\032\032%1d:\",(int)$curline;file\n")) | |
1212 ;; look for result of, say, "up" e.g.: | |
1213 ;; .pplot.pplot(0x800) ["src/pplot.f":261, 0x400c7c] | |
1214 ;; (this will also catch one of the lines printed by "where") | |
1215 ((string-match | |
1216 "^[^ ][^[]*\\[\"\\([^\"]+\\)\":\\([0-9]+\\), [^]]+]\n" | |
1217 result) | |
1218 (let ((file (match-string 1 result))) | |
1219 (if (file-exists-p file) | |
1220 (setq gud-last-frame | |
1221 (cons (match-string 1 result) | |
62049
471fca8487d3
Replace string-to-int with string-to-number.
Nick Roberts <nickrob@snap.net.nz>
parents:
61690
diff
changeset
|
1222 (string-to-number (match-string 2 result)))))) |
51494 | 1223 result) |
1224 ((string-match ; kluged-up marker as above | |
1225 "\032\032\\([0-9]*\\):\\(.*\\)\n" result) | |
1226 (let ((file (gud-file-name (match-string 2 result)))) | |
1227 (if (and file (file-exists-p file)) | |
1228 (setq gud-last-frame | |
1229 (cons file | |
62049
471fca8487d3
Replace string-to-int with string-to-number.
Nick Roberts <nickrob@snap.net.nz>
parents:
61690
diff
changeset
|
1230 (string-to-number (match-string 1 result)))))) |
51494 | 1231 (setq result (substring result 0 (match-beginning 0)))))) |
1232 (or result ""))) | |
1233 | |
1234 ;; There are a couple of differences between DG's dbx output and normal | |
1235 ;; dbx output which make it nontrivial to integrate this into the | |
1236 ;; standard dbx-marker-filter (mainly, there are a different number of | |
1237 ;; backreferences). The markers look like: | |
1238 ;; | |
1239 ;; (0) Stopped at line 10, routine main(argc=1, argv=0xeffff0e0), file t.c | |
1240 ;; | |
1241 ;; from breakpoints (the `(0)' there isn't constant, it's the breakpoint | |
1242 ;; number), and | |
1243 ;; | |
1244 ;; Stopped at line 13, routine main(argc=1, argv=0xeffff0e0), file t.c | |
1245 ;; | |
1246 ;; from signals and | |
1247 ;; | |
1248 ;; Frame 21, line 974, routine command_loop(), file keyboard.c | |
1249 ;; | |
1250 ;; from up/down/where. | |
1251 | |
1252 (defun gud-dguxdbx-marker-filter (string) | |
1253 (setq gud-marker-acc (if gud-marker-acc | |
1254 (concat gud-marker-acc string) | |
1255 string)) | |
1256 (let ((re (concat "^\\(\\(([0-9]+) \\)?Stopped at\\|Frame [0-9]+,\\)" | |
1257 " line \\([0-9]+\\), routine .*, file \\([^ \t\n]+\\)")) | |
1258 start) | |
1259 ;; Process all complete markers in this chunk. | |
1260 (while (string-match re gud-marker-acc start) | |
1261 (setq gud-last-frame | |
1262 (cons (match-string 4 gud-marker-acc) | |
62049
471fca8487d3
Replace string-to-int with string-to-number.
Nick Roberts <nickrob@snap.net.nz>
parents:
61690
diff
changeset
|
1263 (string-to-number (match-string 3 gud-marker-acc))) |
51494 | 1264 start (match-end 0))) |
1265 | |
1266 ;; Search for the last incomplete line in this chunk | |
1267 (while (string-match "\n" gud-marker-acc start) | |
1268 (setq start (match-end 0))) | |
1269 | |
1270 ;; If the incomplete line APPEARS to begin with another marker, keep it | |
1271 ;; in the accumulator. Otherwise, clear the accumulator to avoid an | |
1272 ;; unnecessary concat during the next call. | |
1273 (setq gud-marker-acc | |
1274 (if (string-match "Stopped\\|Frame" gud-marker-acc start) | |
1275 (substring gud-marker-acc (match-beginning 0)) | |
1276 nil))) | |
1277 string) | |
1278 | |
1279 ;;;###autoload | |
1280 (defun dbx (command-line) | |
1281 "Run dbx on program FILE in buffer *gud-FILE*. | |
1282 The directory containing FILE becomes the initial working directory | |
1283 and source-file directory for your debugger." | |
1284 (interactive (list (gud-query-cmdline 'dbx))) | |
1285 | |
1286 (cond | |
1287 (gud-mips-p | |
1288 (gud-common-init command-line nil 'gud-mipsdbx-marker-filter)) | |
1289 (gud-irix-p | |
1290 (gud-common-init command-line 'gud-dbx-massage-args | |
1291 'gud-irixdbx-marker-filter)) | |
1292 (t | |
1293 (gud-common-init command-line 'gud-dbx-massage-args | |
1294 'gud-dbx-marker-filter))) | |
1295 | |
1296 (set (make-local-variable 'gud-minor-mode) 'dbx) | |
1297 | |
1298 (cond | |
1299 (gud-mips-p | |
1300 (gud-def gud-up "up %p" "<" "Up (numeric arg) stack frames.") | |
1301 (gud-def gud-down "down %p" ">" "Down (numeric arg) stack frames.") | |
1302 (gud-def gud-break "stop at \"%f\":%l" | |
1303 "\C-b" "Set breakpoint at current line.") | |
1304 (gud-def gud-finish "return" "\C-f" "Finish executing current function.")) | |
1305 (gud-irix-p | |
1306 (gud-def gud-break "stop at \"%d%f\":%l" | |
1307 "\C-b" "Set breakpoint at current line.") | |
1308 (gud-def gud-finish "return" "\C-f" "Finish executing current function.") | |
1309 (gud-def gud-up "up %p; printf \"\032\032%1d:\",(int)$curline;file\n" | |
1310 "<" "Up (numeric arg) stack frames.") | |
1311 (gud-def gud-down "down %p; printf \"\032\032%1d:\",(int)$curline;file\n" | |
1312 ">" "Down (numeric arg) stack frames.") | |
1313 ;; Make dbx give out the source location info that we need. | |
1314 (process-send-string (get-buffer-process gud-comint-buffer) | |
1315 "printf \"\032\032%1d:\",(int)$curline;file\n")) | |
1316 (t | |
1317 (gud-def gud-up "up %p" "<" "Up (numeric arg) stack frames.") | |
1318 (gud-def gud-down "down %p" ">" "Down (numeric arg) stack frames.") | |
1319 (gud-def gud-break "file \"%d%f\"\nstop at %l" | |
1320 "\C-b" "Set breakpoint at current line.") | |
1321 (if gud-dbx-use-stopformat-p | |
1322 (process-send-string (get-buffer-process gud-comint-buffer) | |
1323 "set $stopformat=1\n")))) | |
1324 | |
1325 (gud-def gud-remove "clear %l" "\C-d" "Remove breakpoint at current line") | |
1326 (gud-def gud-step "step %p" "\C-s" "Step one line with display.") | |
1327 (gud-def gud-stepi "stepi %p" "\C-i" "Step one instruction with display.") | |
1328 (gud-def gud-next "next %p" "\C-n" "Step one line (skip functions).") | |
51616
25262b54af10
(gud-menu-map): Add dbx support for "run" and
Nick Roberts <nickrob@snap.net.nz>
parents:
51494
diff
changeset
|
1329 (gud-def gud-nexti "nexti %p" nil "Step one instruction (skip functions).") |
51494 | 1330 (gud-def gud-cont "cont" "\C-r" "Continue with display.") |
1331 (gud-def gud-print "print %e" "\C-p" "Evaluate C expression at point.") | |
51616
25262b54af10
(gud-menu-map): Add dbx support for "run" and
Nick Roberts <nickrob@snap.net.nz>
parents:
51494
diff
changeset
|
1332 (gud-def gud-run "run" nil "Run the program.") |
51494 | 1333 |
1334 (setq comint-prompt-regexp "^[^)\n]*dbx) *") | |
1335 (setq paragraph-start comint-prompt-regexp) | |
1336 (run-hooks 'dbx-mode-hook) | |
1337 ) | |
1338 | |
1339 ;; ====================================================================== | |
1340 ;; xdb (HP PARISC debugger) functions | |
1341 | |
1342 ;; History of argument lists passed to xdb. | |
1343 (defvar gud-xdb-history nil) | |
1344 | |
1345 (defcustom gud-xdb-directories nil | |
1346 "*A list of directories that xdb should search for source code. | |
1347 If nil, only source files in the program directory | |
1348 will be known to xdb. | |
1349 | |
1350 The file names should be absolute, or relative to the directory | |
1351 containing the executable being debugged." | |
1352 :type '(choice (const :tag "Current Directory" nil) | |
1353 (repeat :value ("") | |
1354 directory)) | |
1355 :group 'gud) | |
1356 | |
1357 (defun gud-xdb-massage-args (file args) | |
1358 (nconc (let ((directories gud-xdb-directories) | |
1359 (result nil)) | |
1360 (while directories | |
1361 (setq result (cons (car directories) (cons "-d" result))) | |
1362 (setq directories (cdr directories))) | |
1363 (nreverse result)) | |
1364 args)) | |
1365 | |
1366 ;; xdb does not print the lines all at once, so we have to accumulate them | |
1367 (defun gud-xdb-marker-filter (string) | |
1368 (let (result) | |
1369 (if (or (string-match comint-prompt-regexp string) | |
1370 (string-match ".*\012" string)) | |
1371 (setq result (concat gud-marker-acc string) | |
1372 gud-marker-acc "") | |
1373 (setq gud-marker-acc (concat gud-marker-acc string))) | |
1374 (if result | |
1375 (if (or (string-match "\\([^\n \t:]+\\): [^:]+: \\([0-9]+\\)[: ]" | |
1376 result) | |
1377 (string-match "[^: \t]+:[ \t]+\\([^:]+\\): [^:]+: \\([0-9]+\\):" | |
1378 result)) | |
62049
471fca8487d3
Replace string-to-int with string-to-number.
Nick Roberts <nickrob@snap.net.nz>
parents:
61690
diff
changeset
|
1379 (let ((line (string-to-number (match-string 2 result))) |
51494 | 1380 (file (gud-file-name (match-string 1 result)))) |
1381 (if file | |
1382 (setq gud-last-frame (cons file line)))))) | |
1383 (or result ""))) | |
1384 | |
1385 ;;;###autoload | |
1386 (defun xdb (command-line) | |
1387 "Run xdb on program FILE in buffer *gud-FILE*. | |
1388 The directory containing FILE becomes the initial working directory | |
1389 and source-file directory for your debugger. | |
1390 | |
63404
1d2443a3e033
(xdb): Fix quoting in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
63031
diff
changeset
|
1391 You can set the variable `gud-xdb-directories' to a list of program source |
51494 | 1392 directories if your program contains sources from more than one directory." |
1393 (interactive (list (gud-query-cmdline 'xdb))) | |
1394 | |
1395 (gud-common-init command-line 'gud-xdb-massage-args | |
1396 'gud-xdb-marker-filter) | |
1397 (set (make-local-variable 'gud-minor-mode) 'xdb) | |
1398 | |
1399 (gud-def gud-break "b %f:%l" "\C-b" "Set breakpoint at current line.") | |
1400 (gud-def gud-tbreak "b %f:%l\\t" "\C-t" | |
1401 "Set temporary breakpoint at current line.") | |
1402 (gud-def gud-remove "db" "\C-d" "Remove breakpoint at current line") | |
1403 (gud-def gud-step "s %p" "\C-s" "Step one line with display.") | |
1404 (gud-def gud-next "S %p" "\C-n" "Step one line (skip functions).") | |
1405 (gud-def gud-cont "c" "\C-r" "Continue with display.") | |
1406 (gud-def gud-up "up %p" "<" "Up (numeric arg) stack frames.") | |
1407 (gud-def gud-down "down %p" ">" "Down (numeric arg) stack frames.") | |
1408 (gud-def gud-finish "bu\\t" "\C-f" "Finish executing current function.") | |
1409 (gud-def gud-print "p %e" "\C-p" "Evaluate C expression at point.") | |
1410 | |
1411 (setq comint-prompt-regexp "^>") | |
1412 (setq paragraph-start comint-prompt-regexp) | |
1413 (run-hooks 'xdb-mode-hook)) | |
1414 | |
1415 ;; ====================================================================== | |
1416 ;; perldb functions | |
1417 | |
1418 ;; History of argument lists passed to perldb. | |
1419 (defvar gud-perldb-history nil) | |
1420 | |
1421 (defun gud-perldb-massage-args (file args) | |
1422 "Convert a command line as would be typed normally to run perldb | |
1423 into one that invokes an Emacs-enabled debugging session. | |
1424 \"-emacs\" is inserted where it will be $ARGV[0] (see perl5db.pl)." | |
1425 ;; FIXME: what if the command is `make perldb' and doesn't accept those extra | |
1426 ;; arguments ? | |
1427 (let* ((new-args nil) | |
1428 (seen-e nil) | |
1429 (shift (lambda () (push (pop args) new-args)))) | |
1430 | |
1431 ;; Pass all switches and -e scripts through. | |
1432 (while (and args | |
1433 (string-match "^-" (car args)) | |
1434 (not (equal "-" (car args))) | |
1435 (not (equal "--" (car args)))) | |
1436 (when (equal "-e" (car args)) | |
1437 ;; -e goes with the next arg, so shift one extra. | |
1438 (or (funcall shift) | |
1439 ;; -e as the last arg is an error in Perl. | |
1440 (error "No code specified for -e")) | |
1441 (setq seen-e t)) | |
1442 (funcall shift)) | |
1443 | |
1444 (unless seen-e | |
1445 (if (or (not args) | |
1446 (string-match "^-" (car args))) | |
1447 (error "Can't use stdin as the script to debug")) | |
1448 ;; This is the program name. | |
1449 (funcall shift)) | |
1450 | |
1451 ;; If -e specified, make sure there is a -- so -emacs is not taken | |
1452 ;; as -e macs. | |
1453 (if (and args (equal "--" (car args))) | |
1454 (funcall shift) | |
1455 (and seen-e (push "--" new-args))) | |
1456 | |
1457 (push "-emacs" new-args) | |
1458 (while args | |
1459 (funcall shift)) | |
1460 | |
1461 (nreverse new-args))) | |
1462 | |
1463 ;; There's no guarantee that Emacs will hand the filter the entire | |
1464 ;; marker at once; it could be broken up across several strings. We | |
1465 ;; might even receive a big chunk with several markers in it. If we | |
1466 ;; receive a chunk of text which looks like it might contain the | |
1467 ;; beginning of a marker, we save it here between calls to the | |
1468 ;; filter. | |
1469 (defun gud-perldb-marker-filter (string) | |
1470 (setq gud-marker-acc (concat gud-marker-acc string)) | |
1471 (let ((output "")) | |
1472 | |
1473 ;; Process all the complete markers in this chunk. | |
1474 (while (string-match "\032\032\\(\\([a-zA-Z]:\\)?[^:\n]*\\):\\([0-9]*\\):.*\n" | |
1475 gud-marker-acc) | |
1476 (setq | |
1477 | |
1478 ;; Extract the frame position from the marker. | |
1479 gud-last-frame | |
1480 (cons (match-string 1 gud-marker-acc) | |
62049
471fca8487d3
Replace string-to-int with string-to-number.
Nick Roberts <nickrob@snap.net.nz>
parents:
61690
diff
changeset
|
1481 (string-to-number (match-string 3 gud-marker-acc))) |
51494 | 1482 |
1483 ;; Append any text before the marker to the output we're going | |
1484 ;; to return - we don't include the marker in this text. | |
1485 output (concat output | |
1486 (substring gud-marker-acc 0 (match-beginning 0))) | |
1487 | |
1488 ;; Set the accumulator to the remaining text. | |
1489 gud-marker-acc (substring gud-marker-acc (match-end 0)))) | |
1490 | |
1491 ;; Does the remaining text look like it might end with the | |
1492 ;; beginning of another marker? If it does, then keep it in | |
74144
b302d34b7eae
(jdb): Fix space/tab mixup in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
72650
diff
changeset
|
1493 ;; gud-marker-acc until we receive the rest of it. Since we |
51494 | 1494 ;; know the full marker regexp above failed, it's pretty simple to |
1495 ;; test for marker starts. | |
1496 (if (string-match "\032.*\\'" gud-marker-acc) | |
1497 (progn | |
1498 ;; Everything before the potential marker start can be output. | |
1499 (setq output (concat output (substring gud-marker-acc | |
1500 0 (match-beginning 0)))) | |
1501 | |
1502 ;; Everything after, we save, to combine with later input. | |
1503 (setq gud-marker-acc | |
1504 (substring gud-marker-acc (match-beginning 0)))) | |
1505 | |
1506 (setq output (concat output gud-marker-acc) | |
1507 gud-marker-acc "")) | |
1508 | |
1509 output)) | |
1510 | |
1511 (defcustom gud-perldb-command-name "perl -d" | |
1512 "Default command to execute a Perl script under debugger." | |
1513 :type 'string | |
1514 :group 'gud) | |
1515 | |
1516 ;;;###autoload | |
1517 (defun perldb (command-line) | |
1518 "Run perldb on program FILE in buffer *gud-FILE*. | |
1519 The directory containing FILE becomes the initial working directory | |
1520 and source-file directory for your debugger." | |
1521 (interactive | |
1522 (list (gud-query-cmdline 'perldb | |
1523 (concat (or (buffer-file-name) "-e 0") " ")))) | |
1524 | |
1525 (gud-common-init command-line 'gud-perldb-massage-args | |
1526 'gud-perldb-marker-filter) | |
1527 (set (make-local-variable 'gud-minor-mode) 'perldb) | |
1528 | |
1529 (gud-def gud-break "b %l" "\C-b" "Set breakpoint at current line.") | |
52586
a0055e15e603
(perldb): Add gud-until to list of commands.
Nick Roberts <nickrob@snap.net.nz>
parents:
52524
diff
changeset
|
1530 (gud-def gud-remove "B %l" "\C-d" "Remove breakpoint at current line") |
51494 | 1531 (gud-def gud-step "s" "\C-s" "Step one source line with display.") |
1532 (gud-def gud-next "n" "\C-n" "Step one line (skip functions).") | |
1533 (gud-def gud-cont "c" "\C-r" "Continue with display.") | |
1534 ; (gud-def gud-finish "finish" "\C-f" "Finish executing current function.") | |
1535 ; (gud-def gud-up "up %p" "<" "Up N stack frames (numeric arg).") | |
1536 ; (gud-def gud-down "down %p" ">" "Down N stack frames (numeric arg).") | |
52524
84470539e96f
(perldb): Change gud-print from just "%e" to "p %e" to
Nick Roberts <nickrob@snap.net.nz>
parents:
52511
diff
changeset
|
1537 (gud-def gud-print "p %e" "\C-p" "Evaluate perl expression at point.") |
52586
a0055e15e603
(perldb): Add gud-until to list of commands.
Nick Roberts <nickrob@snap.net.nz>
parents:
52524
diff
changeset
|
1538 (gud-def gud-until "c %l" "\C-u" "Continue to current line.") |
a0055e15e603
(perldb): Add gud-until to list of commands.
Nick Roberts <nickrob@snap.net.nz>
parents:
52524
diff
changeset
|
1539 |
51494 | 1540 |
1541 (setq comint-prompt-regexp "^ DB<+[0-9]+>+ ") | |
1542 (setq paragraph-start comint-prompt-regexp) | |
1543 (run-hooks 'perldb-mode-hook)) | |
1544 | |
1545 ;; ====================================================================== | |
1546 ;; pdb (Python debugger) functions | |
1547 | |
1548 ;; History of argument lists passed to pdb. | |
1549 (defvar gud-pdb-history nil) | |
1550 | |
1551 ;; Last group is for return value, e.g. "> test.py(2)foo()->None" | |
1552 ;; Either file or function name may be omitted: "> <string>(0)?()" | |
1553 (defvar gud-pdb-marker-regexp | |
76166
5b3f284c883e
(gud, gud-menu-map): Remove references to bash/bashdb.
Nick Roberts <nickrob@snap.net.nz>
parents:
75756
diff
changeset
|
1554 "^> \\([-a-zA-Z0-9_/.:\\]*\\|<string>\\)(\\([0-9]+\\))\\([a-zA-Z0-9_]*\\|\\?\\|<module>\\)()\\(->[^\n]*\\)?\n") |
51494 | 1555 (defvar gud-pdb-marker-regexp-file-group 1) |
1556 (defvar gud-pdb-marker-regexp-line-group 2) | |
1557 (defvar gud-pdb-marker-regexp-fnname-group 3) | |
1558 | |
1559 (defvar gud-pdb-marker-regexp-start "^> ") | |
1560 | |
1561 ;; There's no guarantee that Emacs will hand the filter the entire | |
1562 ;; marker at once; it could be broken up across several strings. We | |
1563 ;; might even receive a big chunk with several markers in it. If we | |
1564 ;; receive a chunk of text which looks like it might contain the | |
1565 ;; beginning of a marker, we save it here between calls to the | |
1566 ;; filter. | |
1567 (defun gud-pdb-marker-filter (string) | |
1568 (setq gud-marker-acc (concat gud-marker-acc string)) | |
1569 (let ((output "")) | |
1570 | |
1571 ;; Process all the complete markers in this chunk. | |
1572 (while (string-match gud-pdb-marker-regexp gud-marker-acc) | |
1573 (setq | |
1574 | |
1575 ;; Extract the frame position from the marker. | |
1576 gud-last-frame | |
1577 (let ((file (match-string gud-pdb-marker-regexp-file-group | |
1578 gud-marker-acc)) | |
62049
471fca8487d3
Replace string-to-int with string-to-number.
Nick Roberts <nickrob@snap.net.nz>
parents:
61690
diff
changeset
|
1579 (line (string-to-number |
51494 | 1580 (match-string gud-pdb-marker-regexp-line-group |
1581 gud-marker-acc)))) | |
1582 (if (string-equal file "<string>") | |
1583 gud-last-frame | |
1584 (cons file line))) | |
1585 | |
1586 ;; Output everything instead of the below | |
1587 output (concat output (substring gud-marker-acc 0 (match-end 0))) | |
1588 ;; ;; Append any text before the marker to the output we're going | |
1589 ;; ;; to return - we don't include the marker in this text. | |
1590 ;; output (concat output | |
1591 ;; (substring gud-marker-acc 0 (match-beginning 0))) | |
1592 | |
1593 ;; Set the accumulator to the remaining text. | |
1594 gud-marker-acc (substring gud-marker-acc (match-end 0)))) | |
1595 | |
1596 ;; Does the remaining text look like it might end with the | |
1597 ;; beginning of another marker? If it does, then keep it in | |
74144
b302d34b7eae
(jdb): Fix space/tab mixup in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
72650
diff
changeset
|
1598 ;; gud-marker-acc until we receive the rest of it. Since we |
51494 | 1599 ;; know the full marker regexp above failed, it's pretty simple to |
1600 ;; test for marker starts. | |
1601 (if (string-match gud-pdb-marker-regexp-start gud-marker-acc) | |
1602 (progn | |
1603 ;; Everything before the potential marker start can be output. | |
1604 (setq output (concat output (substring gud-marker-acc | |
1605 0 (match-beginning 0)))) | |
1606 | |
1607 ;; Everything after, we save, to combine with later input. | |
1608 (setq gud-marker-acc | |
1609 (substring gud-marker-acc (match-beginning 0)))) | |
1610 | |
1611 (setq output (concat output gud-marker-acc) | |
1612 gud-marker-acc "")) | |
1613 | |
1614 output)) | |
1615 | |
61484
cf57400d9ae5
(gud-display-line): GUD uses its own
Nick Roberts <nickrob@snap.net.nz>
parents:
61114
diff
changeset
|
1616 (defcustom gud-pdb-command-name "pdb" |
51494 | 1617 "File name for executing the Python debugger. |
1618 This should be an executable on your path, or an absolute file name." | |
1619 :type 'string | |
1620 :group 'gud) | |
1621 | |
1622 ;;;###autoload | |
1623 (defun pdb (command-line) | |
1624 "Run pdb on program FILE in buffer `*gud-FILE*'. | |
1625 The directory containing FILE becomes the initial working directory | |
1626 and source-file directory for your debugger." | |
1627 (interactive | |
1628 (list (gud-query-cmdline 'pdb))) | |
1629 | |
1630 (gud-common-init command-line nil 'gud-pdb-marker-filter) | |
1631 (set (make-local-variable 'gud-minor-mode) 'pdb) | |
1632 | |
78948
c7f20962ec6a
(pdb): Specify file for gud-break.
Nick Roberts <nickrob@snap.net.nz>
parents:
78945
diff
changeset
|
1633 (gud-def gud-break "break %f:%l" "\C-b" "Set breakpoint at current line.") |
51494 | 1634 (gud-def gud-remove "clear %f:%l" "\C-d" "Remove breakpoint at current line") |
1635 (gud-def gud-step "step" "\C-s" "Step one source line with display.") | |
1636 (gud-def gud-next "next" "\C-n" "Step one line (skip functions).") | |
1637 (gud-def gud-cont "continue" "\C-r" "Continue with display.") | |
1638 (gud-def gud-finish "return" "\C-f" "Finish executing current function.") | |
1639 (gud-def gud-up "up" "<" "Up one stack frame.") | |
1640 (gud-def gud-down "down" ">" "Down one stack frame.") | |
1641 (gud-def gud-print "p %e" "\C-p" "Evaluate Python expression at point.") | |
1642 ;; Is this right? | |
1643 (gud-def gud-statement "! %e" "\C-e" "Execute Python statement at point.") | |
1644 | |
1645 ;; (setq comint-prompt-regexp "^(.*pdb[+]?) *") | |
1646 (setq comint-prompt-regexp "^(Pdb) *") | |
1647 (setq paragraph-start comint-prompt-regexp) | |
1648 (run-hooks 'pdb-mode-hook)) | |
1649 | |
1650 ;; ====================================================================== | |
1651 ;; | |
1652 ;; JDB support. | |
1653 ;; | |
1654 ;; AUTHOR: Derek Davies <ddavies@world.std.com> | |
1655 ;; Zoltan Kemenczy <zoltan@ieee.org;zkemenczy@rim.net> | |
1656 ;; | |
1657 ;; CREATED: Sun Feb 22 10:46:38 1998 Derek Davies. | |
1658 ;; UPDATED: Nov 11, 2001 Zoltan Kemenczy | |
1659 ;; Dec 10, 2002 Zoltan Kemenczy - added nested class support | |
1660 ;; | |
1661 ;; INVOCATION NOTES: | |
1662 ;; | |
1663 ;; You invoke jdb-mode with: | |
1664 ;; | |
1665 ;; M-x jdb <enter> | |
1666 ;; | |
1667 ;; It responds with: | |
1668 ;; | |
1669 ;; Run jdb (like this): jdb | |
1670 ;; | |
1671 ;; type any jdb switches followed by the name of the class you'd like to debug. | |
1672 ;; Supply a fully qualfied classname (these do not have the ".class" extension) | |
1673 ;; for the name of the class to debug (e.g. "COM.the-kind.ddavies.CoolClass"). | |
1674 ;; See the known problems section below for restrictions when specifying jdb | |
1675 ;; command line switches (search forward for '-classpath'). | |
1676 ;; | |
1677 ;; You should see something like the following: | |
1678 ;; | |
1679 ;; Current directory is ~/src/java/hello/ | |
1680 ;; Initializing jdb... | |
1681 ;; 0xed2f6628:class(hello) | |
1682 ;; > | |
1683 ;; | |
1684 ;; To set an initial breakpoint try: | |
1685 ;; | |
1686 ;; > stop in hello.main | |
1687 ;; Breakpoint set in hello.main | |
1688 ;; > | |
1689 ;; | |
1690 ;; To execute the program type: | |
1691 ;; | |
1692 ;; > run | |
1693 ;; run hello | |
1694 ;; | |
1695 ;; Breakpoint hit: running ... | |
1696 ;; hello.main (hello:12) | |
1697 ;; | |
1698 ;; Type M-n to step over the current line and M-s to step into it. That, | |
1699 ;; along with the JDB 'help' command should get you started. The 'quit' | |
1700 ;; JDB command will get out out of the debugger. There is some truly | |
1701 ;; pathetic JDB documentation available at: | |
1702 ;; | |
1703 ;; http://java.sun.com/products/jdk/1.1/debugging/ | |
1704 ;; | |
1705 ;; KNOWN PROBLEMS AND FIXME's: | |
1706 ;; | |
1707 ;; Not sure what happens with inner classes ... haven't tried them. | |
1708 ;; | |
1709 ;; Does not grok UNICODE id's. Only ASCII id's are supported. | |
1710 ;; | |
1711 ;; You must not put whitespace between "-classpath" and the path to | |
1712 ;; search for java classes even though it is required when invoking jdb | |
1713 ;; from the command line. See gud-jdb-massage-args for details. | |
1714 ;; The same applies for "-sourcepath". | |
1715 ;; | |
1716 ;; Note: The following applies only if `gud-jdb-use-classpath' is nil; | |
1717 ;; refer to the documentation of `gud-jdb-use-classpath' and | |
1718 ;; `gud-jdb-classpath',`gud-jdb-sourcepath' variables for information | |
1719 ;; on using the classpath for locating java source files. | |
1720 ;; | |
1721 ;; If any of the source files in the directories listed in | |
1722 ;; gud-jdb-directories won't parse you'll have problems. Make sure | |
1723 ;; every file ending in ".java" in these directories parses without error. | |
1724 ;; | |
1725 ;; All the .java files in the directories in gud-jdb-directories are | |
1726 ;; syntactically analyzed each time gud jdb is invoked. It would be | |
1727 ;; nice to keep as much information as possible between runs. It would | |
1728 ;; be really nice to analyze the files only as neccessary (when the | |
1729 ;; source needs to be displayed.) I'm not sure to what extent the former | |
1730 ;; can be accomplished and I'm not sure the latter can be done at all | |
1731 ;; since I don't know of any general way to tell which .class files are | |
1732 ;; defined by which .java file without analyzing all the .java files. | |
1733 ;; If anyone knows why JavaSoft didn't put the source file names in | |
1734 ;; debuggable .class files please clue me in so I find something else | |
1735 ;; to be spiteful and bitter about. | |
1736 ;; | |
1737 ;; ====================================================================== | |
1738 ;; gud jdb variables and functions | |
1739 | |
1740 (defcustom gud-jdb-command-name "jdb" | |
1741 "Command that executes the Java debugger." | |
1742 :type 'string | |
1743 :group 'gud) | |
1744 | |
1745 (defcustom gud-jdb-use-classpath t | |
1746 "If non-nil, search for Java source files in classpath directories. | |
1747 The list of directories to search is the value of `gud-jdb-classpath'. | |
1748 The file pathname is obtained by converting the fully qualified | |
1749 class information output by jdb to a relative pathname and appending | |
1750 it to `gud-jdb-classpath' element by element until a match is found. | |
1751 | |
1752 This method has a significant jdb startup time reduction advantage | |
1753 since it does not require the scanning of all `gud-jdb-directories' | |
1754 and parsing all Java files for class information. | |
1755 | |
1756 Set to nil to use `gud-jdb-directories' to scan java sources for | |
1757 class information on jdb startup (original method)." | |
1758 :type 'boolean | |
1759 :group 'gud) | |
1760 | |
1761 (defvar gud-jdb-classpath nil | |
80136
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
1762 "Java/jdb classpath directories list. |
51494 | 1763 If `gud-jdb-use-classpath' is non-nil, gud-jdb derives the `gud-jdb-classpath' |
1764 list automatically using the following methods in sequence | |
1765 \(with subsequent successful steps overriding the results of previous | |
1766 steps): | |
1767 | |
1768 1) Read the CLASSPATH environment variable, | |
1769 2) Read any \"-classpath\" argument used to run jdb, | |
1770 or detected in jdb output (e.g. if jdb is run by a script | |
80136
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
1771 that echoes the actual jdb command before starting jdb), |
51494 | 1772 3) Send a \"classpath\" command to jdb and scan jdb output for |
1773 classpath information if jdb is invoked with an \"-attach\" (to | |
1774 an already running VM) argument (This case typically does not | |
1775 have a \"-classpath\" command line argument - that is provided | |
1776 to the VM when it is started). | |
1777 | |
1778 Note that method 3 cannot be used with oldjdb (or Java 1 jdb) since | |
80136
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
1779 those debuggers do not support the classpath command. Use 1) or 2).") |
51494 | 1780 |
1781 (defvar gud-jdb-sourcepath nil | |
1782 "Directory list provided by an (optional) \"-sourcepath\" option to jdb. | |
1783 This list is prepended to `gud-jdb-classpath' to form the complete | |
1784 list of directories searched for source files.") | |
1785 | |
1786 (defvar gud-marker-acc-max-length 4000 | |
1787 "Maximum number of debugger output characters to keep. | |
1788 This variable limits the size of `gud-marker-acc' which holds | |
1789 the most recent debugger output history while searching for | |
1790 source file information.") | |
1791 | |
1792 (defvar gud-jdb-history nil | |
80136
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
1793 "History of argument lists passed to jdb.") |
51494 | 1794 |
1795 | |
1796 ;; List of Java source file directories. | |
1797 (defvar gud-jdb-directories (list ".") | |
1798 "*A list of directories that gud jdb should search for source code. | |
1799 The file names should be absolute, or relative to the current | |
1800 directory. | |
1801 | |
1802 The set of .java files residing in the directories listed are | |
1803 syntactically analyzed to determine the classes they define and the | |
1804 packages in which these classes belong. In this way gud jdb maps the | |
1805 package-qualified class names output by the jdb debugger to the source | |
1806 file from which the class originated. This allows gud mode to keep | |
1807 the source code display in sync with the debugging session.") | |
1808 | |
1809 (defvar gud-jdb-source-files nil | |
80136
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
1810 "List of the java source files for this debugging session.") |
51494 | 1811 |
1812 ;; Association list of fully qualified class names (package + class name) | |
1813 ;; and their source files. | |
1814 (defvar gud-jdb-class-source-alist nil | |
80136
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
1815 "Association list of fully qualified class names and source files.") |
51494 | 1816 |
1817 ;; This is used to hold a source file during analysis. | |
1818 (defvar gud-jdb-analysis-buffer nil) | |
1819 | |
1820 (defvar gud-jdb-classpath-string nil | |
80136
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
1821 "Holds temporary classpath values.") |
51494 | 1822 |
1823 (defun gud-jdb-build-source-files-list (path extn) | |
80136
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
1824 "Return a list of java source files (absolute paths). |
51494 | 1825 PATH gives the directories in which to search for files with |
1826 extension EXTN. Normally EXTN is given as the regular expression | |
1827 \"\\.java$\" ." | |
1828 (apply 'nconc (mapcar (lambda (d) | |
1829 (when (file-directory-p d) | |
1830 (directory-files d t extn nil))) | |
1831 path))) | |
1832 | |
1833 ;; Move point past whitespace. | |
1834 (defun gud-jdb-skip-whitespace () | |
1835 (skip-chars-forward " \n\r\t\014")) | |
1836 | |
1837 ;; Move point past a "// <eol>" type of comment. | |
1838 (defun gud-jdb-skip-single-line-comment () | |
1839 (end-of-line)) | |
1840 | |
1841 ;; Move point past a "/* */" or "/** */" type of comment. | |
1842 (defun gud-jdb-skip-traditional-or-documentation-comment () | |
1843 (forward-char 2) | |
1844 (catch 'break | |
1845 (while (not (eobp)) | |
1846 (if (eq (following-char) ?*) | |
1847 (progn | |
1848 (forward-char) | |
1849 (if (not (eobp)) | |
1850 (if (eq (following-char) ?/) | |
1851 (progn | |
1852 (forward-char) | |
1853 (throw 'break nil))))) | |
1854 (forward-char))))) | |
1855 | |
1856 ;; Move point past any number of consecutive whitespace chars and/or comments. | |
1857 (defun gud-jdb-skip-whitespace-and-comments () | |
1858 (gud-jdb-skip-whitespace) | |
1859 (catch 'done | |
1860 (while t | |
1861 (cond | |
1862 ((looking-at "//") | |
1863 (gud-jdb-skip-single-line-comment) | |
1864 (gud-jdb-skip-whitespace)) | |
1865 ((looking-at "/\\*") | |
1866 (gud-jdb-skip-traditional-or-documentation-comment) | |
1867 (gud-jdb-skip-whitespace)) | |
1868 (t (throw 'done nil)))))) | |
1869 | |
1870 ;; Move point past things that are id-like. The intent is to skip regular | |
1871 ;; id's, such as class or interface names as well as package and interface | |
1872 ;; names. | |
1873 (defun gud-jdb-skip-id-ish-thing () | |
1874 (skip-chars-forward "^ /\n\r\t\014,;{")) | |
1875 | |
1876 ;; Move point past a string literal. | |
1877 (defun gud-jdb-skip-string-literal () | |
1878 (forward-char) | |
1879 (while (not (cond | |
1880 ((eq (following-char) ?\\) | |
1881 (forward-char)) | |
1882 ((eq (following-char) ?\042)))) | |
1883 (forward-char)) | |
1884 (forward-char)) | |
1885 | |
1886 ;; Move point past a character literal. | |
1887 (defun gud-jdb-skip-character-literal () | |
1888 (forward-char) | |
1889 (while | |
1890 (progn | |
1891 (if (eq (following-char) ?\\) | |
1892 (forward-char 2)) | |
1893 (not (eq (following-char) ?\'))) | |
1894 (forward-char)) | |
1895 (forward-char)) | |
1896 | |
74144
b302d34b7eae
(jdb): Fix space/tab mixup in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
72650
diff
changeset
|
1897 ;; Move point past the following block. There may be (legal) cruft before |
51494 | 1898 ;; the block's opening brace. There must be a block or it's the end of life |
1899 ;; in petticoat junction. | |
1900 (defun gud-jdb-skip-block () | |
1901 | |
1902 ;; Find the begining of the block. | |
1903 (while | |
1904 (not (eq (following-char) ?{)) | |
1905 | |
1906 ;; Skip any constructs that can harbor literal block delimiter | |
1907 ;; characters and/or the delimiters for the constructs themselves. | |
1908 (cond | |
1909 ((looking-at "//") | |
1910 (gud-jdb-skip-single-line-comment)) | |
1911 ((looking-at "/\\*") | |
1912 (gud-jdb-skip-traditional-or-documentation-comment)) | |
1913 ((eq (following-char) ?\042) | |
1914 (gud-jdb-skip-string-literal)) | |
1915 ((eq (following-char) ?\') | |
1916 (gud-jdb-skip-character-literal)) | |
1917 (t (forward-char)))) | |
1918 | |
1919 ;; Now at the begining of the block. | |
1920 (forward-char) | |
1921 | |
1922 ;; Skip over the body of the block as well as the final brace. | |
1923 (let ((open-level 1)) | |
1924 (while (not (eq open-level 0)) | |
1925 (cond | |
1926 ((looking-at "//") | |
1927 (gud-jdb-skip-single-line-comment)) | |
1928 ((looking-at "/\\*") | |
1929 (gud-jdb-skip-traditional-or-documentation-comment)) | |
1930 ((eq (following-char) ?\042) | |
1931 (gud-jdb-skip-string-literal)) | |
1932 ((eq (following-char) ?\') | |
1933 (gud-jdb-skip-character-literal)) | |
1934 ((eq (following-char) ?{) | |
1935 (setq open-level (+ open-level 1)) | |
1936 (forward-char)) | |
1937 ((eq (following-char) ?}) | |
1938 (setq open-level (- open-level 1)) | |
1939 (forward-char)) | |
1940 (t (forward-char)))))) | |
1941 | |
1942 ;; Find the package and class definitions in Java source file FILE. Assumes | |
1943 ;; that FILE contains a legal Java program. BUF is a scratch buffer used | |
1944 ;; to hold the source during analysis. | |
1945 (defun gud-jdb-analyze-source (buf file) | |
1946 (let ((l nil)) | |
1947 (set-buffer buf) | |
1948 (insert-file-contents file nil nil nil t) | |
1949 (goto-char 0) | |
1950 (catch 'abort | |
1951 (let ((p "")) | |
1952 (while (progn | |
1953 (gud-jdb-skip-whitespace) | |
1954 (not (eobp))) | |
1955 (cond | |
1956 | |
1957 ;; Any number of semi's following a block is legal. Move point | |
1958 ;; past them. Note that comments and whitespace may be | |
1959 ;; interspersed as well. | |
1960 ((eq (following-char) ?\073) | |
1961 (forward-char)) | |
1962 | |
1963 ;; Move point past a single line comment. | |
1964 ((looking-at "//") | |
1965 (gud-jdb-skip-single-line-comment)) | |
1966 | |
1967 ;; Move point past a traditional or documentation comment. | |
1968 ((looking-at "/\\*") | |
1969 (gud-jdb-skip-traditional-or-documentation-comment)) | |
1970 | |
1971 ;; Move point past a package statement, but save the PackageName. | |
1972 ((looking-at "package") | |
1973 (forward-char 7) | |
1974 (gud-jdb-skip-whitespace-and-comments) | |
1975 (let ((s (point))) | |
1976 (gud-jdb-skip-id-ish-thing) | |
1977 (setq p (concat (buffer-substring s (point)) ".")) | |
1978 (gud-jdb-skip-whitespace-and-comments) | |
1979 (if (eq (following-char) ?\073) | |
1980 (forward-char)))) | |
1981 | |
1982 ;; Move point past an import statement. | |
1983 ((looking-at "import") | |
1984 (forward-char 6) | |
1985 (gud-jdb-skip-whitespace-and-comments) | |
1986 (gud-jdb-skip-id-ish-thing) | |
1987 (gud-jdb-skip-whitespace-and-comments) | |
1988 (if (eq (following-char) ?\073) | |
1989 (forward-char))) | |
1990 | |
1991 ;; Move point past the various kinds of ClassModifiers. | |
1992 ((looking-at "public") | |
1993 (forward-char 6)) | |
1994 ((looking-at "abstract") | |
1995 (forward-char 8)) | |
1996 ((looking-at "final") | |
1997 (forward-char 5)) | |
1998 | |
1999 ;; Move point past a ClassDeclaraction, but save the class | |
2000 ;; Identifier. | |
2001 ((looking-at "class") | |
2002 (forward-char 5) | |
2003 (gud-jdb-skip-whitespace-and-comments) | |
2004 (let ((s (point))) | |
2005 (gud-jdb-skip-id-ish-thing) | |
2006 (setq | |
2007 l (nconc l (list (concat p (buffer-substring s (point))))))) | |
2008 (gud-jdb-skip-block)) | |
2009 | |
2010 ;; Move point past an interface statement. | |
2011 ((looking-at "interface") | |
2012 (forward-char 9) | |
2013 (gud-jdb-skip-block)) | |
2014 | |
2015 ;; Anything else means the input is invalid. | |
2016 (t | |
65584
6dbba0bd58df
Message format fixes, commit no. 3
Deepak Goel <deego@gnufans.org>
parents:
65233
diff
changeset
|
2017 (message "Error parsing file %s." file) |
51494 | 2018 (throw 'abort nil)))))) |
2019 l)) | |
2020 | |
2021 (defun gud-jdb-build-class-source-alist-for-file (file) | |
2022 (mapcar | |
2023 (lambda (c) | |
2024 (cons c file)) | |
2025 (gud-jdb-analyze-source gud-jdb-analysis-buffer file))) | |
2026 | |
2027 ;; Return an alist of fully qualified classes and the source files | |
2028 ;; holding their definitions. SOURCES holds a list of all the source | |
2029 ;; files to examine. | |
2030 (defun gud-jdb-build-class-source-alist (sources) | |
2031 (setq gud-jdb-analysis-buffer (get-buffer-create " *gud-jdb-scratch*")) | |
2032 (prog1 | |
2033 (apply | |
2034 'nconc | |
2035 (mapcar | |
2036 'gud-jdb-build-class-source-alist-for-file | |
2037 sources)) | |
2038 (kill-buffer gud-jdb-analysis-buffer) | |
2039 (setq gud-jdb-analysis-buffer nil))) | |
2040 | |
2041 ;; Change what was given in the minibuffer to something that can be used to | |
2042 ;; invoke the debugger. | |
2043 (defun gud-jdb-massage-args (file args) | |
2044 ;; The jdb executable must have whitespace between "-classpath" and | |
2045 ;; its value while gud-common-init expects all switch values to | |
2046 ;; follow the switch keyword without intervening whitespace. We | |
2047 ;; require that when the user enters the "-classpath" switch in the | |
2048 ;; EMACS minibuffer that they do so without the intervening | |
2049 ;; whitespace. This function adds it back (it's called after | |
2050 ;; gud-common-init). There are more switches like this (for | |
2051 ;; instance "-host" and "-password") but I don't care about them | |
2052 ;; yet. | |
2053 (if args | |
2054 (let (massaged-args user-error) | |
2055 | |
2056 (while (and args (not user-error)) | |
2057 (cond | |
2058 ((setq user-error (string-match "-classpath$" (car args)))) | |
2059 ((setq user-error (string-match "-sourcepath$" (car args)))) | |
2060 ((string-match "-classpath\\(.+\\)" (car args)) | |
2061 (setq massaged-args | |
2062 (append massaged-args | |
2063 (list "-classpath" | |
2064 (setq gud-jdb-classpath-string | |
2065 (match-string 1 (car args))))))) | |
2066 ((string-match "-sourcepath\\(.+\\)" (car args)) | |
2067 (setq massaged-args | |
2068 (append massaged-args | |
2069 (list "-sourcepath" | |
2070 (setq gud-jdb-sourcepath | |
2071 (match-string 1 (car args))))))) | |
2072 (t (setq massaged-args (append massaged-args (list (car args)))))) | |
2073 (setq args (cdr args))) | |
2074 | |
2075 ;; By this point the current directory is all screwed up. Maybe we | |
2076 ;; could fix things and re-invoke gud-common-init, but for now I think | |
2077 ;; issueing the error is good enough. | |
2078 (if user-error | |
2079 (progn | |
2080 (kill-buffer (current-buffer)) | |
2081 (error "Error: Omit whitespace between '-classpath or -sourcepath' and its value"))) | |
2082 massaged-args))) | |
2083 | |
2084 ;; Search for an association with P, a fully qualified class name, in | |
74144
b302d34b7eae
(jdb): Fix space/tab mixup in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
72650
diff
changeset
|
2085 ;; gud-jdb-class-source-alist. The asssociation gives the fully |
51494 | 2086 ;; qualified file name of the source file which produced the class. |
2087 (defun gud-jdb-find-source-file (p) | |
2088 (cdr (assoc p gud-jdb-class-source-alist))) | |
2089 | |
2090 ;; Note: Reset to this value every time a prompt is seen | |
2091 (defvar gud-jdb-lowest-stack-level 999) | |
2092 | |
2093 (defun gud-jdb-find-source-using-classpath (p) | |
80136
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
2094 "Find source file corresponding to fully qualified class P. |
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
2095 Convert P from jdb's output, converted to a pathname |
51494 | 2096 relative to a classpath directory." |
2097 (save-match-data | |
2098 (let | |
2099 (;; Replace dots with slashes and append ".java" to generate file | |
2100 ;; name relative to classpath | |
2101 (filename | |
2102 (concat | |
2103 (mapconcat 'identity | |
2104 (split-string | |
2105 ;; Eliminate any subclass references in the class | |
2106 ;; name string. These start with a "$" | |
2107 ((lambda (x) | |
2108 (if (string-match "$.*" x) | |
2109 (replace-match "" t t x) p)) | |
2110 p) | |
2111 "\\.") "/") | |
2112 ".java")) | |
2113 (cplist (append gud-jdb-sourcepath gud-jdb-classpath)) | |
2114 found-file) | |
2115 (while (and cplist | |
2116 (not (setq found-file | |
2117 (file-readable-p | |
2118 (concat (car cplist) "/" filename))))) | |
2119 (setq cplist (cdr cplist))) | |
2120 (if found-file (concat (car cplist) "/" filename))))) | |
2121 | |
2122 (defun gud-jdb-find-source (string) | |
80136
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
2123 "Alias for function used to locate source files. |
51494 | 2124 Set to `gud-jdb-find-source-using-classpath' or `gud-jdb-find-source-file' |
2125 during jdb initialization depending on the value of | |
2126 `gud-jdb-use-classpath'." | |
80136
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
2127 nil) |
51494 | 2128 |
2129 (defun gud-jdb-parse-classpath-string (string) | |
80136
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
2130 "Parse the classpath list and convert each item to an absolute pathname." |
51494 | 2131 (mapcar (lambda (s) (if (string-match "[/\\]$" s) |
2132 (replace-match "" nil nil s) s)) | |
2133 (mapcar 'file-truename | |
2134 (split-string | |
2135 string | |
2136 (concat "[ \t\n\r,\"" path-separator "]+"))))) | |
2137 | |
2138 ;; See comentary for other debugger's marker filters - there you will find | |
2139 ;; important notes about STRING. | |
2140 (defun gud-jdb-marker-filter (string) | |
2141 | |
2142 ;; Build up the accumulator. | |
2143 (setq gud-marker-acc | |
2144 (if gud-marker-acc | |
2145 (concat gud-marker-acc string) | |
2146 string)) | |
2147 | |
2148 ;; Look for classpath information until gud-jdb-classpath-string is found | |
2149 ;; (interactive, multiple settings of classpath from jdb | |
2150 ;; not supported/followed) | |
2151 (if (and gud-jdb-use-classpath | |
2152 (not gud-jdb-classpath-string) | |
2153 (or (string-match "classpath:[ \t[]+\\([^]]+\\)" gud-marker-acc) | |
2154 (string-match "-classpath[ \t\"]+\\([^ \"]+\\)" gud-marker-acc))) | |
2155 (setq gud-jdb-classpath | |
2156 (gud-jdb-parse-classpath-string | |
2157 (setq gud-jdb-classpath-string | |
2158 (match-string 1 gud-marker-acc))))) | |
2159 | |
2160 ;; We process STRING from left to right. Each time through the | |
2161 ;; following loop we process at most one marker. After we've found a | |
2162 ;; marker, delete gud-marker-acc up to and including the match | |
2163 (let (file-found) | |
2164 ;; Process each complete marker in the input. | |
2165 (while | |
2166 | |
2167 ;; Do we see a marker? | |
2168 (string-match | |
2169 ;; jdb puts out a string of the following form when it | |
2170 ;; hits a breakpoint: | |
2171 ;; | |
2172 ;; <fully-qualified-class><method> (<class>:<line-number>) | |
2173 ;; | |
2174 ;; <fully-qualified-class>'s are composed of Java ID's | |
2175 ;; separated by periods. <method> and <class> are | |
2176 ;; also Java ID's. <method> begins with a period and | |
2177 ;; may contain less-than and greater-than (constructors, | |
2178 ;; for instance, are called <init> in the symbol table.) | |
2179 ;; Java ID's begin with a letter followed by letters | |
2180 ;; and/or digits. The set of letters includes underscore | |
2181 ;; and dollar sign. | |
2182 ;; | |
2183 ;; The first group matches <fully-qualified-class>, | |
2184 ;; the second group matches <class> and the third group | |
2185 ;; matches <line-number>. We don't care about using | |
2186 ;; <method> so we don't "group" it. | |
2187 ;; | |
2188 ;; FIXME: Java ID's are UNICODE strings, this matches ASCII | |
2189 ;; ID's only. | |
2190 ;; | |
53850
d19a78b5f1e5
(gud-jdb-marker-filter): Add period as optional thousands separator; fixes
Nick Roberts <nickrob@snap.net.nz>
parents:
53536
diff
changeset
|
2191 ;; The ".," in the last square-bracket are necessary because |
d19a78b5f1e5
(gud-jdb-marker-filter): Add period as optional thousands separator; fixes
Nick Roberts <nickrob@snap.net.nz>
parents:
53536
diff
changeset
|
2192 ;; of Sun's total disrespect for backwards compatibility in |
51494 | 2193 ;; reported line numbers from jdb - starting in 1.4.0 they |
53850
d19a78b5f1e5
(gud-jdb-marker-filter): Add period as optional thousands separator; fixes
Nick Roberts <nickrob@snap.net.nz>
parents:
53536
diff
changeset
|
2194 ;; print line numbers using LOCALE, inserting a comma or a |
d19a78b5f1e5
(gud-jdb-marker-filter): Add period as optional thousands separator; fixes
Nick Roberts <nickrob@snap.net.nz>
parents:
53536
diff
changeset
|
2195 ;; period at the thousands positions (how ingenious!). |
51494 | 2196 |
69291
928466fb1966
(gud-jdb-marker-filter): Double quote `[' in regexp for Lisp syntax.
Luc Teirlinck <teirllm@auburn.edu>
parents:
69233
diff
changeset
|
2197 "\\(\\[[0-9]+] \\)*\\([a-zA-Z0-9.$_]+\\)\\.[a-zA-Z0-9$_<>(),]+ \ |
53850
d19a78b5f1e5
(gud-jdb-marker-filter): Add period as optional thousands separator; fixes
Nick Roberts <nickrob@snap.net.nz>
parents:
53536
diff
changeset
|
2198 \\(([a-zA-Z0-9.$_]+:\\|line=\\)\\([0-9.,]+\\)" |
51494 | 2199 gud-marker-acc) |
2200 | |
2201 ;; A good marker is one that: | |
2202 ;; 1) does not have a "[n] " prefix (not part of a stack backtrace) | |
2203 ;; 2) does have an "[n] " prefix and n is the lowest prefix seen | |
2204 ;; since the last prompt | |
2205 ;; Figure out the line on which to position the debugging arrow. | |
2206 ;; Return the info as a cons of the form: | |
2207 ;; | |
2208 ;; (<file-name> . <line-number>) . | |
2209 (if (if (match-beginning 1) | |
2210 (let (n) | |
62049
471fca8487d3
Replace string-to-int with string-to-number.
Nick Roberts <nickrob@snap.net.nz>
parents:
61690
diff
changeset
|
2211 (setq n (string-to-number (substring |
51494 | 2212 gud-marker-acc |
2213 (1+ (match-beginning 1)) | |
2214 (- (match-end 1) 2)))) | |
2215 (if (< n gud-jdb-lowest-stack-level) | |
2216 (progn (setq gud-jdb-lowest-stack-level n) t))) | |
2217 t) | |
2218 (if (setq file-found | |
2219 (gud-jdb-find-source (match-string 2 gud-marker-acc))) | |
2220 (setq gud-last-frame | |
2221 (cons file-found | |
62049
471fca8487d3
Replace string-to-int with string-to-number.
Nick Roberts <nickrob@snap.net.nz>
parents:
61690
diff
changeset
|
2222 (string-to-number |
51494 | 2223 (let |
2224 ((numstr (match-string 4 gud-marker-acc))) | |
53850
d19a78b5f1e5
(gud-jdb-marker-filter): Add period as optional thousands separator; fixes
Nick Roberts <nickrob@snap.net.nz>
parents:
53536
diff
changeset
|
2225 (if (string-match "[.,]" numstr) |
51494 | 2226 (replace-match "" nil nil numstr) |
2227 numstr))))) | |
2228 (message "Could not find source file."))) | |
2229 | |
2230 ;; Set the accumulator to the remaining text. | |
2231 (setq gud-marker-acc (substring gud-marker-acc (match-end 0)))) | |
2232 | |
2233 (if (string-match comint-prompt-regexp gud-marker-acc) | |
2234 (setq gud-jdb-lowest-stack-level 999))) | |
2235 | |
2236 ;; Do not allow gud-marker-acc to grow without bound. If the source | |
2237 ;; file information is not within the last 3/4 | |
2238 ;; gud-marker-acc-max-length characters, well,... | |
2239 (if (> (length gud-marker-acc) gud-marker-acc-max-length) | |
2240 (setq gud-marker-acc | |
2241 (substring gud-marker-acc | |
2242 (- (/ (* gud-marker-acc-max-length 3) 4))))) | |
2243 | |
2244 ;; We don't filter any debugger output so just return what we were given. | |
2245 string) | |
2246 | |
2247 (defvar gud-jdb-command-name "jdb" "Command that executes the Java debugger.") | |
2248 | |
2249 ;;;###autoload | |
2250 (defun jdb (command-line) | |
2251 "Run jdb with command line COMMAND-LINE in a buffer. | |
2252 The buffer is named \"*gud*\" if no initial class is given or | |
74144
b302d34b7eae
(jdb): Fix space/tab mixup in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
72650
diff
changeset
|
2253 \"*gud-<initial-class-basename>*\" if there is. If the \"-classpath\" |
51494 | 2254 switch is given, omit all whitespace between it and its value. |
2255 | |
2256 See `gud-jdb-use-classpath' and `gud-jdb-classpath' documentation for | |
80136
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
2257 information on how jdb accesses source files. Alternatively (if |
51494 | 2258 `gud-jdb-use-classpath' is nil), see `gud-jdb-directories' for the |
2259 original source file access method. | |
2260 | |
2261 For general information about commands available to control jdb from | |
2262 gud, see `gud-mode'." | |
2263 (interactive | |
2264 (list (gud-query-cmdline 'jdb))) | |
2265 (setq gud-jdb-classpath nil) | |
2266 (setq gud-jdb-sourcepath nil) | |
2267 | |
2268 ;; Set gud-jdb-classpath from the CLASSPATH environment variable, | |
2269 ;; if CLASSPATH is set. | |
2270 (setq gud-jdb-classpath-string (getenv "CLASSPATH")) | |
2271 (if gud-jdb-classpath-string | |
2272 (setq gud-jdb-classpath | |
2273 (gud-jdb-parse-classpath-string gud-jdb-classpath-string))) | |
2274 (setq gud-jdb-classpath-string nil) ; prepare for next | |
2275 | |
2276 (gud-common-init command-line 'gud-jdb-massage-args | |
2277 'gud-jdb-marker-filter) | |
2278 (set (make-local-variable 'gud-minor-mode) 'jdb) | |
2279 | |
2280 ;; If a -classpath option was provided, set gud-jdb-classpath | |
2281 (if gud-jdb-classpath-string | |
2282 (setq gud-jdb-classpath | |
2283 (gud-jdb-parse-classpath-string gud-jdb-classpath-string))) | |
2284 (setq gud-jdb-classpath-string nil) ; prepare for next | |
2285 ;; If a -sourcepath option was provided, parse it | |
2286 (if gud-jdb-sourcepath | |
2287 (setq gud-jdb-sourcepath | |
2288 (gud-jdb-parse-classpath-string gud-jdb-sourcepath))) | |
2289 | |
2290 (gud-def gud-break "stop at %c:%l" "\C-b" "Set breakpoint at current line.") | |
2291 (gud-def gud-remove "clear %c:%l" "\C-d" "Remove breakpoint at current line") | |
2292 (gud-def gud-step "step" "\C-s" "Step one source line with display.") | |
2293 (gud-def gud-next "next" "\C-n" "Step one line (skip functions).") | |
2294 (gud-def gud-cont "cont" "\C-r" "Continue with display.") | |
2295 (gud-def gud-finish "step up" "\C-f" "Continue until current method returns.") | |
2296 (gud-def gud-up "up\C-Mwhere" "<" "Up one stack frame.") | |
2297 (gud-def gud-down "down\C-Mwhere" ">" "Up one stack frame.") | |
2298 (gud-def gud-run "run" nil "Run the program.") ;if VM start using jdb | |
77147 | 2299 (gud-def gud-print "print %e" "\C-p" "Evaluate Java expression at point.") |
2300 | |
51494 | 2301 (setq comint-prompt-regexp "^> \\|^[^ ]+\\[[0-9]+\\] ") |
2302 (setq paragraph-start comint-prompt-regexp) | |
2303 (run-hooks 'jdb-mode-hook) | |
2304 | |
2305 (if gud-jdb-use-classpath | |
2306 ;; Get the classpath information from the debugger | |
2307 (progn | |
2308 (if (string-match "-attach" command-line) | |
2309 (gud-call "classpath")) | |
2310 (fset 'gud-jdb-find-source | |
2311 'gud-jdb-find-source-using-classpath)) | |
2312 | |
2313 ;; Else create and bind the class/source association list as well | |
2314 ;; as the source file list. | |
2315 (setq gud-jdb-class-source-alist | |
2316 (gud-jdb-build-class-source-alist | |
2317 (setq gud-jdb-source-files | |
2318 (gud-jdb-build-source-files-list gud-jdb-directories | |
2319 "\\.java$")))) | |
2320 (fset 'gud-jdb-find-source 'gud-jdb-find-source-file))) | |
2321 | |
2322 ;; | |
2323 ;; End of debugger-specific information | |
2324 ;; | |
2325 | |
2326 | |
2327 ;; When we send a command to the debugger via gud-call, it's annoying | |
2328 ;; to see the command and the new prompt inserted into the debugger's | |
2329 ;; buffer; we have other ways of knowing the command has completed. | |
2330 ;; | |
2331 ;; If the buffer looks like this: | |
2332 ;; -------------------- | |
2333 ;; (gdb) set args foo bar | |
2334 ;; (gdb) -!- | |
2335 ;; -------------------- | |
2336 ;; (the -!- marks the location of point), and we type `C-x SPC' in a | |
2337 ;; source file to set a breakpoint, we want the buffer to end up like | |
2338 ;; this: | |
2339 ;; -------------------- | |
2340 ;; (gdb) set args foo bar | |
2341 ;; Breakpoint 1 at 0x92: file make-docfile.c, line 49. | |
2342 ;; (gdb) -!- | |
2343 ;; -------------------- | |
2344 ;; Essentially, the old prompt is deleted, and the command's output | |
2345 ;; and the new prompt take its place. | |
2346 ;; | |
2347 ;; Not echoing the command is easy enough; you send it directly using | |
2348 ;; process-send-string, and it never enters the buffer. However, | |
2349 ;; getting rid of the old prompt is trickier; you don't want to do it | |
2350 ;; when you send the command, since that will result in an annoying | |
2351 ;; flicker as the prompt is deleted, redisplay occurs while Emacs | |
2352 ;; waits for a response from the debugger, and the new prompt is | |
2353 ;; inserted. Instead, we'll wait until we actually get some output | |
2354 ;; from the subprocess before we delete the prompt. If the command | |
2355 ;; produced no output other than a new prompt, that prompt will most | |
2356 ;; likely be in the first chunk of output received, so we will delete | |
2357 ;; the prompt and then replace it with an identical one. If the | |
2358 ;; command produces output, the prompt is moving anyway, so the | |
2359 ;; flicker won't be annoying. | |
2360 ;; | |
2361 ;; So - when we want to delete the prompt upon receipt of the next | |
2362 ;; chunk of debugger output, we position gud-delete-prompt-marker at | |
2363 ;; the start of the prompt; the process filter will notice this, and | |
2364 ;; delete all text between it and the process output marker. If | |
2365 ;; gud-delete-prompt-marker points nowhere, we leave the current | |
2366 ;; prompt alone. | |
2367 (defvar gud-delete-prompt-marker nil) | |
2368 | |
2369 | |
2370 (put 'gud-mode 'mode-class 'special) | |
2371 | |
2372 (define-derived-mode gud-mode comint-mode "Debugger" | |
2373 "Major mode for interacting with an inferior debugger process. | |
2374 | |
2375 You start it up with one of the commands M-x gdb, M-x sdb, M-x dbx, | |
2376 M-x perldb, M-x xdb, or M-x jdb. Each entry point finishes by executing a | |
2377 hook; `gdb-mode-hook', `sdb-mode-hook', `dbx-mode-hook', | |
2378 `perldb-mode-hook', `xdb-mode-hook', or `jdb-mode-hook' respectively. | |
2379 | |
2380 After startup, the following commands are available in both the GUD | |
2381 interaction buffer and any source buffer GUD visits due to a breakpoint stop | |
2382 or step operation: | |
2383 | |
2384 \\[gud-break] sets a breakpoint at the current file and line. In the | |
2385 GUD buffer, the current file and line are those of the last breakpoint or | |
2386 step. In a source buffer, they are the buffer's file and current line. | |
2387 | |
2388 \\[gud-remove] removes breakpoints on the current file and line. | |
2389 | |
2390 \\[gud-refresh] displays in the source window the last line referred to | |
2391 in the gud buffer. | |
2392 | |
2393 \\[gud-step], \\[gud-next], and \\[gud-stepi] do a step-one-line, | |
2394 step-one-line (not entering function calls), and step-one-instruction | |
2395 and then update the source window with the current file and position. | |
2396 \\[gud-cont] continues execution. | |
2397 | |
2398 \\[gud-print] tries to find the largest C lvalue or function-call expression | |
2399 around point, and sends it to the debugger for value display. | |
2400 | |
2401 The above commands are common to all supported debuggers except xdb which | |
2402 does not support stepping instructions. | |
2403 | |
2404 Under gdb, sdb and xdb, \\[gud-tbreak] behaves exactly like \\[gud-break], | |
2405 except that the breakpoint is temporary; that is, it is removed when | |
2406 execution stops on it. | |
2407 | |
2408 Under gdb, dbx, and xdb, \\[gud-up] pops up through an enclosing stack | |
2409 frame. \\[gud-down] drops back down through one. | |
2410 | |
2411 If you are using gdb or xdb, \\[gud-finish] runs execution to the return from | |
2412 the current function and stops. | |
2413 | |
2414 All the keystrokes above are accessible in the GUD buffer | |
2415 with the prefix C-c, and in all buffers through the prefix C-x C-a. | |
2416 | |
2417 All pre-defined functions for which the concept make sense repeat | |
2418 themselves the appropriate number of times if you give a prefix | |
2419 argument. | |
2420 | |
2421 You may use the `gud-def' macro in the initialization hook to define other | |
2422 commands. | |
2423 | |
2424 Other commands for interacting with the debugger process are inherited from | |
2425 comint mode, which see." | |
2426 (setq mode-line-process '(":%s")) | |
2427 (define-key (current-local-map) "\C-c\C-l" 'gud-refresh) | |
2428 (set (make-local-variable 'gud-last-frame) nil) | |
2429 (set (make-local-variable 'tool-bar-map) gud-tool-bar-map) | |
2430 (make-local-variable 'comint-prompt-regexp) | |
2431 ;; Don't put repeated commands in command history many times. | |
2432 (set (make-local-variable 'comint-input-ignoredups) t) | |
2433 (make-local-variable 'paragraph-start) | |
55558
0ac980237ad3
(gud-mode): Add gud-kill-buffer-hook to kill-buffer-hook here and make it local.
Nick Roberts <nickrob@snap.net.nz>
parents:
55483
diff
changeset
|
2434 (set (make-local-variable 'gud-delete-prompt-marker) (make-marker)) |
0ac980237ad3
(gud-mode): Add gud-kill-buffer-hook to kill-buffer-hook here and make it local.
Nick Roberts <nickrob@snap.net.nz>
parents:
55483
diff
changeset
|
2435 (add-hook 'kill-buffer-hook 'gud-kill-buffer-hook nil t)) |
51494 | 2436 |
2437 ;; Cause our buffers to be displayed, by default, | |
2438 ;; in the selected window. | |
2439 ;;;###autoload (add-hook 'same-window-regexps "\\*gud-.*\\*\\(\\|<[0-9]+>\\)") | |
2440 | |
2441 (defcustom gud-chdir-before-run t | |
2442 "Non-nil if GUD should `cd' to the debugged executable." | |
2443 :group 'gud | |
2444 :type 'boolean) | |
2445 | |
97715
dac49f77b3b3
(tramp-file-name-localname, tramp-dissect-file-name): Declare,
Glenn Morris <rgm@gnu.org>
parents:
97641
diff
changeset
|
2446 (declare-function tramp-file-name-localname "tramp" (vec)) |
dac49f77b3b3
(tramp-file-name-localname, tramp-dissect-file-name): Declare,
Glenn Morris <rgm@gnu.org>
parents:
97641
diff
changeset
|
2447 (declare-function tramp-dissect-file-name "tramp" (name &optional nodefault)) |
dac49f77b3b3
(tramp-file-name-localname, tramp-dissect-file-name): Declare,
Glenn Morris <rgm@gnu.org>
parents:
97641
diff
changeset
|
2448 |
51494 | 2449 ;; Perform initializations common to all debuggers. |
2450 ;; The first arg is the specified command line, | |
2451 ;; which starts with the program to debug. | |
2452 ;; The other three args specify the values to use | |
2453 ;; for local variables in the debugger buffer. | |
2454 (defun gud-common-init (command-line massage-args marker-filter | |
2455 &optional find-file) | |
78533
8bf8256b3ffa
(gud-common-init): Use new name split-string-and-unquote.
Richard M. Stallman <rms@gnu.org>
parents:
78487
diff
changeset
|
2456 (let* ((words (split-string-and-unquote command-line)) |
51494 | 2457 (program (car words)) |
2458 (dir default-directory) | |
2459 ;; Extract the file name from WORDS | |
2460 ;; and put t in its place. | |
2461 ;; Later on we will put the modified file name arg back there. | |
2462 (file-word (let ((w (cdr words))) | |
2463 (while (and w (= ?- (aref (car w) 0))) | |
2464 (setq w (cdr w))) | |
2465 (and w | |
2466 (prog1 (car w) | |
2467 (setcar w t))))) | |
2468 (file-subst | |
2469 (and file-word (substitute-in-file-name file-word))) | |
2470 (args (cdr words)) | |
2471 ;; If a directory was specified, expand the file name. | |
2472 ;; Otherwise, don't expand it, so GDB can use the PATH. | |
2473 ;; A file name without directory is literally valid | |
2474 ;; only if the file exists in ., and in that case, | |
2475 ;; omitting the expansion here has no visible effect. | |
2476 (file (and file-word | |
2477 (if (file-name-directory file-subst) | |
2478 (expand-file-name file-subst) | |
2479 file-subst))) | |
55216
1014ad951130
(gud-common-init): Throw an error if program is
Nick Roberts <nickrob@snap.net.nz>
parents:
55149
diff
changeset
|
2480 (filepart (and file-word (concat "-" (file-name-nondirectory file)))) |
1014ad951130
(gud-common-init): Throw an error if program is
Nick Roberts <nickrob@snap.net.nz>
parents:
55149
diff
changeset
|
2481 (existing-buffer (get-buffer (concat "*gud" filepart "*")))) |
51494 | 2482 (pop-to-buffer (concat "*gud" filepart "*")) |
55483
bb2dcb7fd983
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-296
Miles Bader <miles@gnu.org>
parents:
55216
diff
changeset
|
2483 (when (and existing-buffer (get-buffer-process existing-buffer)) |
71221
07cd76eb8e03
(gud-menu-map): Use a conditional help echo for gud-go.
Nick Roberts <nickrob@snap.net.nz>
parents:
71102
diff
changeset
|
2484 (error "This program is already being debugged")) |
51494 | 2485 ;; Set the dir, in case the buffer already existed with a different dir. |
2486 (setq default-directory dir) | |
2487 ;; Set default-directory to the file's directory. | |
2488 (and file-word | |
2489 gud-chdir-before-run | |
2490 ;; Don't set default-directory if no directory was specified. | |
2491 ;; In that case, either the file is found in the current directory, | |
2492 ;; in which case this setq is a no-op, | |
2493 ;; or it is found by searching PATH, | |
2494 ;; in which case we don't know what directory it was found in. | |
2495 (file-name-directory file) | |
2496 (setq default-directory (file-name-directory file))) | |
2497 (or (bolp) (newline)) | |
2498 (insert "Current directory is " default-directory "\n") | |
2499 ;; Put the substituted and expanded file name back in its place. | |
2500 (let ((w args)) | |
2501 (while (and w (not (eq (car w) t))) | |
2502 (setq w (cdr w))) | |
2503 (if w | |
81816
8c1a05c2d668
* progmodes/compile.el (compilation-start): `start-process' must
Michael Albinus <michael.albinus@gmx.de>
parents:
81778
diff
changeset
|
2504 (setcar w |
8c1a05c2d668
* progmodes/compile.el (compilation-start): `start-process' must
Michael Albinus <michael.albinus@gmx.de>
parents:
81778
diff
changeset
|
2505 (if (file-remote-p default-directory) |
97641
7f22f71742f0
(gud-common-init): Use absolute file so that
Nick Roberts <nickrob@snap.net.nz>
parents:
96515
diff
changeset
|
2506 ;; Tramp has already been loaded if we are here. |
7f22f71742f0
(gud-common-init): Use absolute file so that
Nick Roberts <nickrob@snap.net.nz>
parents:
96515
diff
changeset
|
2507 (setq file (tramp-file-name-localname |
7f22f71742f0
(gud-common-init): Use absolute file so that
Nick Roberts <nickrob@snap.net.nz>
parents:
96515
diff
changeset
|
2508 (tramp-dissect-file-name file))) |
81816
8c1a05c2d668
* progmodes/compile.el (compilation-start): `start-process' must
Michael Albinus <michael.albinus@gmx.de>
parents:
81778
diff
changeset
|
2509 file)))) |
51494 | 2510 (apply 'make-comint (concat "gud" filepart) program nil |
2511 (if massage-args (funcall massage-args file args) args)) | |
2512 ;; Since comint clobbered the mode, we don't set it until now. | |
2513 (gud-mode) | |
2514 (set (make-local-variable 'gud-target-name) | |
2515 (and file-word (file-name-nondirectory file)))) | |
2516 (set (make-local-variable 'gud-marker-filter) marker-filter) | |
2517 (if find-file (set (make-local-variable 'gud-find-file) find-file)) | |
2518 (setq gud-last-last-frame nil) | |
2519 | |
2520 (set-process-filter (get-buffer-process (current-buffer)) 'gud-filter) | |
2521 (set-process-sentinel (get-buffer-process (current-buffer)) 'gud-sentinel) | |
2522 (gud-set-buffer)) | |
2523 | |
2524 (defun gud-set-buffer () | |
2525 (when (eq major-mode 'gud-mode) | |
2526 (setq gud-comint-buffer (current-buffer)))) | |
2527 | |
2528 (defvar gud-filter-defer-flag nil | |
2529 "Non-nil means don't process anything from the debugger right now. | |
2530 It is saved for when this flag is not set.") | |
2531 | |
2532 ;; These functions are responsible for inserting output from your debugger | |
2533 ;; into the buffer. The hard work is done by the method that is | |
2534 ;; the value of gud-marker-filter. | |
2535 | |
2536 (defun gud-filter (proc string) | |
2537 ;; Here's where the actual buffer insertion is done | |
2538 (let (output process-window) | |
2539 (if (buffer-name (process-buffer proc)) | |
2540 (if gud-filter-defer-flag | |
2541 ;; If we can't process any text now, | |
2542 ;; save it for later. | |
2543 (setq gud-filter-pending-text | |
2544 (concat (or gud-filter-pending-text "") string)) | |
2545 | |
2546 ;; If we have to ask a question during the processing, | |
2547 ;; defer any additional text that comes from the debugger | |
2548 ;; during that time. | |
2549 (let ((gud-filter-defer-flag t)) | |
2550 ;; Process now any text we previously saved up. | |
2551 (if gud-filter-pending-text | |
2552 (setq string (concat gud-filter-pending-text string) | |
2553 gud-filter-pending-text nil)) | |
2554 | |
2555 (with-current-buffer (process-buffer proc) | |
2556 ;; If we have been so requested, delete the debugger prompt. | |
2557 (save-restriction | |
2558 (widen) | |
2559 (if (marker-buffer gud-delete-prompt-marker) | |
66381
99d33f0ea507
(gud-filter): Bind inhibit-read-only to t
Nick Roberts <nickrob@snap.net.nz>
parents:
66175
diff
changeset
|
2560 (let ((inhibit-read-only t)) |
51494 | 2561 (delete-region (process-mark proc) |
2562 gud-delete-prompt-marker) | |
66578
ed2aec2424ae
(gud-filter): Use comint-update-fence to delete
Nick Roberts <nickrob@snap.net.nz>
parents:
66457
diff
changeset
|
2563 (comint-update-fence) |
51494 | 2564 (set-marker gud-delete-prompt-marker nil))) |
2565 ;; Save the process output, checking for source file markers. | |
2566 (setq output (gud-marker-filter string)) | |
2567 ;; Check for a filename-and-line number. | |
2568 ;; Don't display the specified file | |
2569 ;; unless (1) point is at or after the position where output appears | |
2570 ;; and (2) this buffer is on the screen. | |
2571 (setq process-window | |
2572 (and gud-last-frame | |
2573 (>= (point) (process-mark proc)) | |
2574 (get-buffer-window (current-buffer))))) | |
2575 | |
2576 ;; Let the comint filter do the actual insertion. | |
2577 ;; That lets us inherit various comint features. | |
2578 (comint-output-filter proc output)) | |
2579 | |
2580 ;; Put the arrow on the source line. | |
2581 ;; This must be outside of the save-excursion | |
2582 ;; in case the source file is our current buffer. | |
2583 (if process-window | |
63789
ac833c86f212
(gud-filter): Add missing argument to
Nick Roberts <nickrob@snap.net.nz>
parents:
63758
diff
changeset
|
2584 (with-selected-window process-window |
63887
396252178c2c
(gud-filter): Remove unneeded progn.
Andreas Schwab <schwab@suse.de>
parents:
63789
diff
changeset
|
2585 (gud-display-frame)) |
51494 | 2586 ;; We have to be in the proper buffer, (process-buffer proc), |
2587 ;; but not in a save-excursion, because that would restore point. | |
63758
b0c4ce512db4
(gud-filter): Simplify using with-selected-window and with-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
63731
diff
changeset
|
2588 (with-current-buffer (process-buffer proc) |
b0c4ce512db4
(gud-filter): Simplify using with-selected-window and with-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
63731
diff
changeset
|
2589 (gud-display-frame)))) |
51494 | 2590 |
2591 ;; If we deferred text that arrived during this processing, | |
2592 ;; handle it now. | |
2593 (if gud-filter-pending-text | |
2594 (gud-filter proc "")))))) | |
2595 | |
2596 (defvar gud-minor-mode-type nil) | |
61114
e1f821140a5a
(gdb): (Re)-initialise gud-filter-pending-text.
Nick Roberts <nickrob@snap.net.nz>
parents:
59862
diff
changeset
|
2597 (defvar gud-overlay-arrow-position nil) |
e1f821140a5a
(gdb): (Re)-initialise gud-filter-pending-text.
Nick Roberts <nickrob@snap.net.nz>
parents:
59862
diff
changeset
|
2598 (add-to-list 'overlay-arrow-variable-list 'gud-overlay-arrow-position) |
51494 | 2599 |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
2600 (declare-function gdb-reset "gdb-mi" ()) |
86885 | 2601 |
51494 | 2602 (defun gud-sentinel (proc msg) |
2603 (cond ((null (buffer-name (process-buffer proc))) | |
2604 ;; buffer killed | |
2605 ;; Stop displaying an arrow in a source file. | |
61114
e1f821140a5a
(gdb): (Re)-initialise gud-filter-pending-text.
Nick Roberts <nickrob@snap.net.nz>
parents:
59862
diff
changeset
|
2606 (setq gud-overlay-arrow-position nil) |
51494 | 2607 (set-process-buffer proc nil) |
66105
59812faf9041
(gud-tool-bar-map): Rename the images
Nick Roberts <nickrob@snap.net.nz>
parents:
66094
diff
changeset
|
2608 (if (and (boundp 'speedbar-frame) |
59812faf9041
(gud-tool-bar-map): Rename the images
Nick Roberts <nickrob@snap.net.nz>
parents:
66094
diff
changeset
|
2609 (string-equal speedbar-initial-expansion-list-name "GUD")) |
65972
8bd4c2112a50
(gud-install-speedbar-variables): Add more
Nick Roberts <nickrob@snap.net.nz>
parents:
65953
diff
changeset
|
2610 (speedbar-change-initial-expansion-list |
8bd4c2112a50
(gud-install-speedbar-variables): Add more
Nick Roberts <nickrob@snap.net.nz>
parents:
65953
diff
changeset
|
2611 speedbar-previously-used-expansion-list-name)) |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
2612 (if (eq gud-minor-mode-type 'gdbmi) |
51494 | 2613 (gdb-reset) |
2614 (gud-reset))) | |
2615 ((memq (process-status proc) '(signal exit)) | |
2616 ;; Stop displaying an arrow in a source file. | |
61114
e1f821140a5a
(gdb): (Re)-initialise gud-filter-pending-text.
Nick Roberts <nickrob@snap.net.nz>
parents:
59862
diff
changeset
|
2617 (setq gud-overlay-arrow-position nil) |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
2618 (if (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer) |
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
2619 'gdbmi) |
70878
8740ce7e1367
(gud-sentinel): Condition on GUD buffer if it has not been killed.
Nick Roberts <nickrob@snap.net.nz>
parents:
70768
diff
changeset
|
2620 (gdb-reset) |
8740ce7e1367
(gud-sentinel): Condition on GUD buffer if it has not been killed.
Nick Roberts <nickrob@snap.net.nz>
parents:
70768
diff
changeset
|
2621 (gud-reset)) |
51494 | 2622 (let* ((obuf (current-buffer))) |
2623 ;; save-excursion isn't the right thing if | |
2624 ;; process-buffer is current-buffer | |
2625 (unwind-protect | |
2626 (progn | |
78931
4c662e5e1263
(gud-display-line): Find source buffer even when
Nick Roberts <nickrob@snap.net.nz>
parents:
78768
diff
changeset
|
2627 ;; Write something in the GUD buffer and hack its mode line, |
51494 | 2628 (set-buffer (process-buffer proc)) |
2629 ;; Fix the mode line. | |
2630 (setq mode-line-process | |
2631 (concat ":" | |
2632 (symbol-name (process-status proc)))) | |
2633 (force-mode-line-update) | |
2634 (if (eobp) | |
2635 (insert ?\n mode-name " " msg) | |
2636 (save-excursion | |
2637 (goto-char (point-max)) | |
2638 (insert ?\n mode-name " " msg))) | |
2639 ;; If buffer and mode line will show that the process | |
2640 ;; is dead, we can delete it now. Otherwise it | |
2641 ;; will stay around until M-x list-processes. | |
2642 (delete-process proc)) | |
2643 ;; Restore old buffer, but don't restore old point | |
2644 ;; if obuf is the gud buffer. | |
2645 (set-buffer obuf)))))) | |
2646 | |
2647 (defun gud-kill-buffer-hook () | |
55558
0ac980237ad3
(gud-mode): Add gud-kill-buffer-hook to kill-buffer-hook here and make it local.
Nick Roberts <nickrob@snap.net.nz>
parents:
55483
diff
changeset
|
2648 (setq gud-minor-mode-type gud-minor-mode) |
0ac980237ad3
(gud-mode): Add gud-kill-buffer-hook to kill-buffer-hook here and make it local.
Nick Roberts <nickrob@snap.net.nz>
parents:
55483
diff
changeset
|
2649 (condition-case nil |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
2650 (progn |
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
2651 (kill-process (get-buffer-process (current-buffer))) |
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
2652 (delete-process (get-process "gdb-inferior"))) |
55558
0ac980237ad3
(gud-mode): Add gud-kill-buffer-hook to kill-buffer-hook here and make it local.
Nick Roberts <nickrob@snap.net.nz>
parents:
55483
diff
changeset
|
2653 (error nil))) |
51494 | 2654 |
2655 (defun gud-reset () | |
2656 (dolist (buffer (buffer-list)) | |
55697
83b3b9e4e001
(gud-reset): Use unless & with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55558
diff
changeset
|
2657 (unless (eq buffer gud-comint-buffer) |
83b3b9e4e001
(gud-reset): Use unless & with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55558
diff
changeset
|
2658 (with-current-buffer buffer |
83b3b9e4e001
(gud-reset): Use unless & with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55558
diff
changeset
|
2659 (when gud-minor-mode |
83b3b9e4e001
(gud-reset): Use unless & with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55558
diff
changeset
|
2660 (setq gud-minor-mode nil) |
83b3b9e4e001
(gud-reset): Use unless & with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55558
diff
changeset
|
2661 (kill-local-variable 'tool-bar-map)))))) |
51494 | 2662 |
2663 (defun gud-display-frame () | |
2664 "Find and obey the last filename-and-line marker from the debugger. | |
2665 Obeying it means displaying in another window the specified file and line." | |
2666 (interactive) | |
2667 (when gud-last-frame | |
2668 (gud-set-buffer) | |
2669 (gud-display-line (car gud-last-frame) (cdr gud-last-frame)) | |
2670 (setq gud-last-last-frame gud-last-frame | |
2671 gud-last-frame nil))) | |
2672 | |
86885 | 2673 (declare-function global-hl-line-highlight "hl-line" ()) |
2674 (declare-function hl-line-highlight "hl-line" ()) | |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
2675 (declare-function gdb-display-source-buffer "gdb-mi" (buffer)) |
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
2676 (declare-function gdb-display-buffer "gdb-mi" (buf dedicated &optional size)) |
86885 | 2677 |
51494 | 2678 ;; Make sure the file named TRUE-FILE is in a buffer that appears on the screen |
2679 ;; and that its line LINE is visible. | |
2680 ;; Put the overlay-arrow on the line LINE in that buffer. | |
2681 ;; Most of the trickiness in here comes from wanting to preserve the current | |
2682 ;; region-restriction if that's possible. We use an explicit display-buffer | |
2683 ;; to get around the fact that this is called inside a save-excursion. | |
2684 | |
2685 (defun gud-display-line (true-file line) | |
2686 (let* ((last-nonmenu-event t) ; Prevent use of dialog box for questions. | |
2687 (buffer | |
2688 (with-current-buffer gud-comint-buffer | |
2689 (gud-find-file true-file))) | |
78931
4c662e5e1263
(gud-display-line): Find source buffer even when
Nick Roberts <nickrob@snap.net.nz>
parents:
78768
diff
changeset
|
2690 (window (and buffer |
4c662e5e1263
(gud-display-line): Find source buffer even when
Nick Roberts <nickrob@snap.net.nz>
parents:
78768
diff
changeset
|
2691 (or (get-buffer-window buffer) |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
2692 (if (eq gud-minor-mode 'gdbmi) |
94446
24da79778167
(gud-display-line): Only consider visible
Nick Roberts <nickrob@snap.net.nz>
parents:
94293
diff
changeset
|
2693 (or (if (get-buffer-window buffer 'visible) |
24da79778167
(gud-display-line): Only consider visible
Nick Roberts <nickrob@snap.net.nz>
parents:
94293
diff
changeset
|
2694 (display-buffer buffer nil 'visible)) |
78931
4c662e5e1263
(gud-display-line): Find source buffer even when
Nick Roberts <nickrob@snap.net.nz>
parents:
78768
diff
changeset
|
2695 (unless (gdb-display-source-buffer buffer) |
94446
24da79778167
(gud-display-line): Only consider visible
Nick Roberts <nickrob@snap.net.nz>
parents:
94293
diff
changeset
|
2696 (gdb-display-buffer buffer nil 'visible)))) |
78931
4c662e5e1263
(gud-display-line): Find source buffer even when
Nick Roberts <nickrob@snap.net.nz>
parents:
78768
diff
changeset
|
2697 (display-buffer buffer)))) |
51494 | 2698 (pos)) |
2699 (if buffer | |
2700 (progn | |
2701 (with-current-buffer buffer | |
52329
06717a26a254
(gud-display-line): Don't set window-point if
Nick Roberts <nickrob@snap.net.nz>
parents:
52058
diff
changeset
|
2702 (unless (or (verify-visited-file-modtime buffer) gud-keep-buffer) |
06717a26a254
(gud-display-line): Don't set window-point if
Nick Roberts <nickrob@snap.net.nz>
parents:
52058
diff
changeset
|
2703 (if (yes-or-no-p |
51494 | 2704 (format "File %s changed on disk. Reread from disk? " |
2705 (buffer-name))) | |
2706 (revert-buffer t t) | |
52329
06717a26a254
(gud-display-line): Don't set window-point if
Nick Roberts <nickrob@snap.net.nz>
parents:
52058
diff
changeset
|
2707 (setq gud-keep-buffer t))) |
51494 | 2708 (save-restriction |
2709 (widen) | |
2710 (goto-line line) | |
2711 (setq pos (point)) | |
61114
e1f821140a5a
(gdb): (Re)-initialise gud-filter-pending-text.
Nick Roberts <nickrob@snap.net.nz>
parents:
59862
diff
changeset
|
2712 (or gud-overlay-arrow-position |
e1f821140a5a
(gdb): (Re)-initialise gud-filter-pending-text.
Nick Roberts <nickrob@snap.net.nz>
parents:
59862
diff
changeset
|
2713 (setq gud-overlay-arrow-position (make-marker))) |
67957
cbb3942260ab
(gud-display-line): Support hl-line in the source buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
67890
diff
changeset
|
2714 (set-marker gud-overlay-arrow-position (point) (current-buffer)) |
cbb3942260ab
(gud-display-line): Support hl-line in the source buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
67890
diff
changeset
|
2715 ;; If they turned on hl-line, move the hl-line highlight to |
cbb3942260ab
(gud-display-line): Support hl-line in the source buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
67890
diff
changeset
|
2716 ;; the arrow's line. |
cbb3942260ab
(gud-display-line): Support hl-line in the source buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
67890
diff
changeset
|
2717 (when (featurep 'hl-line) |
cbb3942260ab
(gud-display-line): Support hl-line in the source buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
67890
diff
changeset
|
2718 (cond |
cbb3942260ab
(gud-display-line): Support hl-line in the source buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
67890
diff
changeset
|
2719 (global-hl-line-mode |
cbb3942260ab
(gud-display-line): Support hl-line in the source buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
67890
diff
changeset
|
2720 (global-hl-line-highlight)) |
cbb3942260ab
(gud-display-line): Support hl-line in the source buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
67890
diff
changeset
|
2721 ((and hl-line-mode hl-line-sticky-flag) |
cbb3942260ab
(gud-display-line): Support hl-line in the source buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
67890
diff
changeset
|
2722 (hl-line-highlight))))) |
51494 | 2723 (cond ((or (< pos (point-min)) (> pos (point-max))) |
52329
06717a26a254
(gud-display-line): Don't set window-point if
Nick Roberts <nickrob@snap.net.nz>
parents:
52058
diff
changeset
|
2724 (widen) |
06717a26a254
(gud-display-line): Don't set window-point if
Nick Roberts <nickrob@snap.net.nz>
parents:
52058
diff
changeset
|
2725 (goto-char pos)))) |
74144
b302d34b7eae
(jdb): Fix space/tab mixup in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
72650
diff
changeset
|
2726 (when window |
71878
30e3082c1a7e
(gud-display-line): Use gdb-display-buffer. Set gdb-source-window.
Nick Roberts <nickrob@snap.net.nz>
parents:
71595
diff
changeset
|
2727 (set-window-point window gud-overlay-arrow-position) |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
2728 (if (eq gud-minor-mode 'gdbmi) |
71878
30e3082c1a7e
(gud-display-line): Use gdb-display-buffer. Set gdb-source-window.
Nick Roberts <nickrob@snap.net.nz>
parents:
71595
diff
changeset
|
2729 (setq gdb-source-window window))))))) |
51494 | 2730 |
2731 ;; The gud-call function must do the right thing whether its invoking | |
2732 ;; keystroke is from the GUD buffer itself (via major-mode binding) | |
2733 ;; or a C buffer. In the former case, we want to supply data from | |
2734 ;; gud-last-frame. Here's how we do it: | |
2735 | |
2736 (defun gud-format-command (str arg) | |
2737 (let ((insource (not (eq (current-buffer) gud-comint-buffer))) | |
2738 (frame (or gud-last-frame gud-last-last-frame)) | |
2739 result) | |
70295
da2f6762c09a
(gud-def): Add %c case.
Nick Roberts <nickrob@snap.net.nz>
parents:
70248
diff
changeset
|
2740 (while (and str |
da2f6762c09a
(gud-def): Add %c case.
Nick Roberts <nickrob@snap.net.nz>
parents:
70248
diff
changeset
|
2741 (let ((case-fold-search nil)) |
da2f6762c09a
(gud-def): Add %c case.
Nick Roberts <nickrob@snap.net.nz>
parents:
70248
diff
changeset
|
2742 (string-match "\\([^%]*\\)%\\([adefFlpc]\\)" str))) |
51494 | 2743 (let ((key (string-to-char (match-string 2 str))) |
2744 subst) | |
2745 (cond | |
2746 ((eq key ?f) | |
2747 (setq subst (file-name-nondirectory (if insource | |
2748 (buffer-file-name) | |
2749 (car frame))))) | |
2750 ((eq key ?F) | |
2751 (setq subst (file-name-sans-extension | |
2752 (file-name-nondirectory (if insource | |
2753 (buffer-file-name) | |
2754 (car frame)))))) | |
2755 ((eq key ?d) | |
2756 (setq subst (file-name-directory (if insource | |
2757 (buffer-file-name) | |
2758 (car frame))))) | |
2759 ((eq key ?l) | |
2760 (setq subst (int-to-string | |
2761 (if insource | |
2762 (save-restriction | |
2763 (widen) | |
2764 (+ (count-lines (point-min) (point)) | |
2765 (if (bolp) 1 0))) | |
2766 (cdr frame))))) | |
2767 ((eq key ?e) | |
51616
25262b54af10
(gud-menu-map): Add dbx support for "run" and
Nick Roberts <nickrob@snap.net.nz>
parents:
51494
diff
changeset
|
2768 (setq subst (gud-find-expr))) |
51494 | 2769 ((eq key ?a) |
2770 (setq subst (gud-read-address))) | |
2771 ((eq key ?c) | |
2772 (setq subst | |
2773 (gud-find-class | |
2774 (if insource | |
2775 (buffer-file-name) | |
2776 (car frame)) | |
2777 (if insource | |
2778 (save-restriction | |
2779 (widen) | |
2780 (+ (count-lines (point-min) (point)) | |
2781 (if (bolp) 1 0))) | |
2782 (cdr frame))))) | |
2783 ((eq key ?p) | |
2784 (setq subst (if arg (int-to-string arg))))) | |
2785 (setq result (concat result (match-string 1 str) subst))) | |
2786 (setq str (substring str (match-end 2)))) | |
2787 ;; There might be text left in STR when the loop ends. | |
2788 (concat result str))) | |
2789 | |
2790 (defun gud-read-address () | |
2791 "Return a string containing the core-address found in the buffer at point." | |
2792 (save-match-data | |
2793 (save-excursion | |
2794 (let ((pt (point)) found begin) | |
2795 (setq found (if (search-backward "0x" (- pt 7) t) (point))) | |
2796 (cond | |
2797 (found (forward-char 2) | |
2798 (buffer-substring found | |
2799 (progn (re-search-forward "[^0-9a-f]") | |
2800 (forward-char -1) | |
2801 (point)))) | |
2802 (t (setq begin (progn (re-search-backward "[^0-9]") | |
2803 (forward-char 1) | |
2804 (point))) | |
2805 (forward-char 1) | |
2806 (re-search-forward "[^0-9]") | |
2807 (forward-char -1) | |
2808 (buffer-substring begin (point)))))))) | |
2809 | |
2810 (defun gud-call (fmt &optional arg) | |
2811 (let ((msg (gud-format-command fmt arg))) | |
2812 (message "Command: %s" msg) | |
2813 (sit-for 0) | |
2814 (gud-basic-call msg))) | |
2815 | |
2816 (defun gud-basic-call (command) | |
2817 "Invoke the debugger COMMAND displaying source in other window." | |
2818 (interactive) | |
2819 (gud-set-buffer) | |
2820 (let ((proc (get-buffer-process gud-comint-buffer))) | |
2821 (or proc (error "Current buffer has no process")) | |
2822 ;; Arrange for the current prompt to get deleted. | |
2823 (save-excursion | |
2824 (set-buffer gud-comint-buffer) | |
2825 (save-restriction | |
2826 (widen) | |
70248
4fc61ee2deb2
(gud-comint-buffer): Move forward to stop byte compiler warnings.
Nick Roberts <nickrob@snap.net.nz>
parents:
70054
diff
changeset
|
2827 (if (marker-position gud-delete-prompt-marker) |
4fc61ee2deb2
(gud-comint-buffer): Move forward to stop byte compiler warnings.
Nick Roberts <nickrob@snap.net.nz>
parents:
70054
diff
changeset
|
2828 ;; We get here when printing an expression. |
4fc61ee2deb2
(gud-comint-buffer): Move forward to stop byte compiler warnings.
Nick Roberts <nickrob@snap.net.nz>
parents:
70054
diff
changeset
|
2829 (goto-char gud-delete-prompt-marker) |
4fc61ee2deb2
(gud-comint-buffer): Move forward to stop byte compiler warnings.
Nick Roberts <nickrob@snap.net.nz>
parents:
70054
diff
changeset
|
2830 (goto-char (process-mark proc)) |
4fc61ee2deb2
(gud-comint-buffer): Move forward to stop byte compiler warnings.
Nick Roberts <nickrob@snap.net.nz>
parents:
70054
diff
changeset
|
2831 (forward-line 0)) |
51494 | 2832 (if (looking-at comint-prompt-regexp) |
2833 (set-marker gud-delete-prompt-marker (point))) | |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
2834 (if (eq gud-minor-mode 'gdbmi) |
51494 | 2835 (apply comint-input-sender (list proc command)) |
2836 (process-send-string proc (concat command "\n"))))))) | |
2837 | |
2838 (defun gud-refresh (&optional arg) | |
2839 "Fix up a possibly garbled display, and redraw the arrow." | |
2840 (interactive "P") | |
2841 (or gud-last-frame (setq gud-last-frame gud-last-last-frame)) | |
2842 (gud-display-frame) | |
2843 (recenter arg)) | |
2844 | |
51616
25262b54af10
(gud-menu-map): Add dbx support for "run" and
Nick Roberts <nickrob@snap.net.nz>
parents:
51494
diff
changeset
|
2845 ;; Code for parsing expressions out of C or Fortran code. The single entry |
25262b54af10
(gud-menu-map): Add dbx support for "run" and
Nick Roberts <nickrob@snap.net.nz>
parents:
51494
diff
changeset
|
2846 ;; point is gud-find-expr, which tries to return an lvalue expression from |
25262b54af10
(gud-menu-map): Add dbx support for "run" and
Nick Roberts <nickrob@snap.net.nz>
parents:
51494
diff
changeset
|
2847 ;; around point. |
25262b54af10
(gud-menu-map): Add dbx support for "run" and
Nick Roberts <nickrob@snap.net.nz>
parents:
51494
diff
changeset
|
2848 |
51619
16b79b135bf5
(gud-find-expr-function): Rename from gud-find-expr.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51616
diff
changeset
|
2849 (defvar gud-find-expr-function 'gud-find-c-expr) |
51616
25262b54af10
(gud-menu-map): Add dbx support for "run" and
Nick Roberts <nickrob@snap.net.nz>
parents:
51494
diff
changeset
|
2850 |
25262b54af10
(gud-menu-map): Add dbx support for "run" and
Nick Roberts <nickrob@snap.net.nz>
parents:
51494
diff
changeset
|
2851 (defun gud-find-expr (&rest args) |
70248
4fc61ee2deb2
(gud-comint-buffer): Move forward to stop byte compiler warnings.
Nick Roberts <nickrob@snap.net.nz>
parents:
70054
diff
changeset
|
2852 (let ((expr (if (and transient-mark-mode mark-active) |
4fc61ee2deb2
(gud-comint-buffer): Move forward to stop byte compiler warnings.
Nick Roberts <nickrob@snap.net.nz>
parents:
70054
diff
changeset
|
2853 (buffer-substring (region-beginning) (region-end)) |
4fc61ee2deb2
(gud-comint-buffer): Move forward to stop byte compiler warnings.
Nick Roberts <nickrob@snap.net.nz>
parents:
70054
diff
changeset
|
2854 (apply gud-find-expr-function args)))) |
4fc61ee2deb2
(gud-comint-buffer): Move forward to stop byte compiler warnings.
Nick Roberts <nickrob@snap.net.nz>
parents:
70054
diff
changeset
|
2855 (save-match-data |
4fc61ee2deb2
(gud-comint-buffer): Move forward to stop byte compiler warnings.
Nick Roberts <nickrob@snap.net.nz>
parents:
70054
diff
changeset
|
2856 (if (string-match "\n" expr) |
4fc61ee2deb2
(gud-comint-buffer): Move forward to stop byte compiler warnings.
Nick Roberts <nickrob@snap.net.nz>
parents:
70054
diff
changeset
|
2857 (error "Expression must not include a newline")) |
4fc61ee2deb2
(gud-comint-buffer): Move forward to stop byte compiler warnings.
Nick Roberts <nickrob@snap.net.nz>
parents:
70054
diff
changeset
|
2858 (with-current-buffer gud-comint-buffer |
4fc61ee2deb2
(gud-comint-buffer): Move forward to stop byte compiler warnings.
Nick Roberts <nickrob@snap.net.nz>
parents:
70054
diff
changeset
|
2859 (save-excursion |
4fc61ee2deb2
(gud-comint-buffer): Move forward to stop byte compiler warnings.
Nick Roberts <nickrob@snap.net.nz>
parents:
70054
diff
changeset
|
2860 (goto-char (process-mark (get-buffer-process gud-comint-buffer))) |
4fc61ee2deb2
(gud-comint-buffer): Move forward to stop byte compiler warnings.
Nick Roberts <nickrob@snap.net.nz>
parents:
70054
diff
changeset
|
2861 (forward-line 0) |
4fc61ee2deb2
(gud-comint-buffer): Move forward to stop byte compiler warnings.
Nick Roberts <nickrob@snap.net.nz>
parents:
70054
diff
changeset
|
2862 (when (looking-at comint-prompt-regexp) |
4fc61ee2deb2
(gud-comint-buffer): Move forward to stop byte compiler warnings.
Nick Roberts <nickrob@snap.net.nz>
parents:
70054
diff
changeset
|
2863 (set-marker gud-delete-prompt-marker (point)) |
4fc61ee2deb2
(gud-comint-buffer): Move forward to stop byte compiler warnings.
Nick Roberts <nickrob@snap.net.nz>
parents:
70054
diff
changeset
|
2864 (set-marker-insertion-type gud-delete-prompt-marker t)) |
77147 | 2865 (unless (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer) |
2866 'jdb) | |
91868
46a8e4f391fb
(gud-gdb): Don't reset gdb-ready.
Nick Roberts <nickrob@snap.net.nz>
parents:
87649
diff
changeset
|
2867 (insert (concat expr " = ")))))) |
70248
4fc61ee2deb2
(gud-comint-buffer): Move forward to stop byte compiler warnings.
Nick Roberts <nickrob@snap.net.nz>
parents:
70054
diff
changeset
|
2868 expr)) |
51616
25262b54af10
(gud-menu-map): Add dbx support for "run" and
Nick Roberts <nickrob@snap.net.nz>
parents:
51494
diff
changeset
|
2869 |
25262b54af10
(gud-menu-map): Add dbx support for "run" and
Nick Roberts <nickrob@snap.net.nz>
parents:
51494
diff
changeset
|
2870 ;; The next eight functions are hacked from gdbsrc.el by |
51494 | 2871 ;; Debby Ayers <ayers@asc.slb.com>, |
2872 ;; Rich Schaefer <schaefer@asc.slb.com> Schlumberger, Austin, Tx. | |
2873 | |
2874 (defun gud-find-c-expr () | |
51616
25262b54af10
(gud-menu-map): Add dbx support for "run" and
Nick Roberts <nickrob@snap.net.nz>
parents:
51494
diff
changeset
|
2875 "Returns the expr that surrounds point." |
51494 | 2876 (interactive) |
2877 (save-excursion | |
51616
25262b54af10
(gud-menu-map): Add dbx support for "run" and
Nick Roberts <nickrob@snap.net.nz>
parents:
51494
diff
changeset
|
2878 (let ((p (point)) |
25262b54af10
(gud-menu-map): Add dbx support for "run" and
Nick Roberts <nickrob@snap.net.nz>
parents:
51494
diff
changeset
|
2879 (expr (gud-innermost-expr)) |
25262b54af10
(gud-menu-map): Add dbx support for "run" and
Nick Roberts <nickrob@snap.net.nz>
parents:
51494
diff
changeset
|
2880 (test-expr (gud-prev-expr))) |
51494 | 2881 (while (and test-expr (gud-expr-compound test-expr expr)) |
2882 (let ((prev-expr expr)) | |
2883 (setq expr (cons (car test-expr) (cdr expr))) | |
2884 (goto-char (car expr)) | |
2885 (setq test-expr (gud-prev-expr)) | |
2886 ;; If we just pasted on the condition of an if or while, | |
2887 ;; throw it away again. | |
2888 (if (member (buffer-substring (car test-expr) (cdr test-expr)) | |
2889 '("if" "while" "for")) | |
2890 (setq test-expr nil | |
2891 expr prev-expr)))) | |
2892 (goto-char p) | |
2893 (setq test-expr (gud-next-expr)) | |
2894 (while (gud-expr-compound expr test-expr) | |
2895 (setq expr (cons (car expr) (cdr test-expr))) | |
2896 (setq test-expr (gud-next-expr))) | |
2897 (buffer-substring (car expr) (cdr expr))))) | |
2898 | |
2899 (defun gud-innermost-expr () | |
2900 "Returns the smallest expr that point is in; move point to beginning of it. | |
2901 The expr is represented as a cons cell, where the car specifies the point in | |
2902 the current buffer that marks the beginning of the expr and the cdr specifies | |
2903 the character after the end of the expr." | |
2904 (let ((p (point)) begin end) | |
2905 (gud-backward-sexp) | |
2906 (setq begin (point)) | |
2907 (gud-forward-sexp) | |
2908 (setq end (point)) | |
2909 (if (>= p end) | |
2910 (progn | |
2911 (setq begin p) | |
2912 (goto-char p) | |
2913 (gud-forward-sexp) | |
2914 (setq end (point))) | |
2915 ) | |
2916 (goto-char begin) | |
2917 (cons begin end))) | |
2918 | |
2919 (defun gud-backward-sexp () | |
2920 "Version of `backward-sexp' that catches errors." | |
2921 (condition-case nil | |
2922 (backward-sexp) | |
2923 (error t))) | |
2924 | |
2925 (defun gud-forward-sexp () | |
2926 "Version of `forward-sexp' that catches errors." | |
2927 (condition-case nil | |
2928 (forward-sexp) | |
2929 (error t))) | |
2930 | |
2931 (defun gud-prev-expr () | |
2932 "Returns the previous expr, point is set to beginning of that expr. | |
2933 The expr is represented as a cons cell, where the car specifies the point in | |
2934 the current buffer that marks the beginning of the expr and the cdr specifies | |
2935 the character after the end of the expr" | |
2936 (let ((begin) (end)) | |
2937 (gud-backward-sexp) | |
2938 (setq begin (point)) | |
2939 (gud-forward-sexp) | |
2940 (setq end (point)) | |
2941 (goto-char begin) | |
2942 (cons begin end))) | |
2943 | |
2944 (defun gud-next-expr () | |
2945 "Returns the following expr, point is set to beginning of that expr. | |
2946 The expr is represented as a cons cell, where the car specifies the point in | |
2947 the current buffer that marks the beginning of the expr and the cdr specifies | |
2948 the character after the end of the expr." | |
2949 (let ((begin) (end)) | |
2950 (gud-forward-sexp) | |
2951 (gud-forward-sexp) | |
2952 (setq end (point)) | |
2953 (gud-backward-sexp) | |
2954 (setq begin (point)) | |
2955 (cons begin end))) | |
2956 | |
2957 (defun gud-expr-compound-sep (span-start span-end) | |
2958 "Scan from SPAN-START to SPAN-END for punctuation characters. | |
2959 If `->' is found, return `?.'. If `.' is found, return `?.'. | |
2960 If any other punctuation is found, return `??'. | |
2961 If no punctuation is found, return `? '." | |
65233
88dc4b03facf
(gdb-active-process, gdb-define-alist, gdb-macro-info, gdb-server-prefix,
Juanma Barranquero <lekktu@gmail.com>
parents:
65044
diff
changeset
|
2962 (let ((result ?\s) |
51494 | 2963 (syntax)) |
2964 (while (< span-start span-end) | |
2965 (setq syntax (char-syntax (char-after span-start))) | |
2966 (cond | |
65233
88dc4b03facf
(gdb-active-process, gdb-define-alist, gdb-macro-info, gdb-server-prefix,
Juanma Barranquero <lekktu@gmail.com>
parents:
65044
diff
changeset
|
2967 ((= syntax ?\s) t) |
51494 | 2968 ((= syntax ?.) (setq syntax (char-after span-start)) |
2969 (cond | |
2970 ((= syntax ?.) (setq result ?.)) | |
2971 ((and (= syntax ?-) (= (char-after (+ span-start 1)) ?>)) | |
2972 (setq result ?.) | |
2973 (setq span-start (+ span-start 1))) | |
2974 (t (setq span-start span-end) | |
2975 (setq result ??))))) | |
2976 (setq span-start (+ span-start 1))) | |
2977 result)) | |
2978 | |
2979 (defun gud-expr-compound (first second) | |
2980 "Non-nil if concatenating FIRST and SECOND makes a single C expression. | |
2981 The two exprs are represented as a cons cells, where the car | |
2982 specifies the point in the current buffer that marks the beginning of the | |
2983 expr and the cdr specifies the character after the end of the expr. | |
2984 Link exprs of the form: | |
2985 Expr -> Expr | |
2986 Expr . Expr | |
2987 Expr (Expr) | |
2988 Expr [Expr] | |
2989 (Expr) Expr | |
2990 [Expr] Expr" | |
2991 (let ((span-start (cdr first)) | |
2992 (span-end (car second)) | |
2993 (syntax)) | |
2994 (setq syntax (gud-expr-compound-sep span-start span-end)) | |
2995 (cond | |
2996 ((= (car first) (car second)) nil) | |
2997 ((= (cdr first) (cdr second)) nil) | |
2998 ((= syntax ?.) t) | |
65233
88dc4b03facf
(gdb-active-process, gdb-define-alist, gdb-macro-info, gdb-server-prefix,
Juanma Barranquero <lekktu@gmail.com>
parents:
65044
diff
changeset
|
2999 ((= syntax ?\s) |
51616
25262b54af10
(gud-menu-map): Add dbx support for "run" and
Nick Roberts <nickrob@snap.net.nz>
parents:
51494
diff
changeset
|
3000 (setq span-start (char-after (- span-start 1))) |
25262b54af10
(gud-menu-map): Add dbx support for "run" and
Nick Roberts <nickrob@snap.net.nz>
parents:
51494
diff
changeset
|
3001 (setq span-end (char-after span-end)) |
25262b54af10
(gud-menu-map): Add dbx support for "run" and
Nick Roberts <nickrob@snap.net.nz>
parents:
51494
diff
changeset
|
3002 (cond |
25262b54af10
(gud-menu-map): Add dbx support for "run" and
Nick Roberts <nickrob@snap.net.nz>
parents:
51494
diff
changeset
|
3003 ((= span-start ?)) t) |
25262b54af10
(gud-menu-map): Add dbx support for "run" and
Nick Roberts <nickrob@snap.net.nz>
parents:
51494
diff
changeset
|
3004 ((= span-start ?]) t) |
25262b54af10
(gud-menu-map): Add dbx support for "run" and
Nick Roberts <nickrob@snap.net.nz>
parents:
51494
diff
changeset
|
3005 ((= span-end ?() t) |
25262b54af10
(gud-menu-map): Add dbx support for "run" and
Nick Roberts <nickrob@snap.net.nz>
parents:
51494
diff
changeset
|
3006 ((= span-end ?[) t) |
25262b54af10
(gud-menu-map): Add dbx support for "run" and
Nick Roberts <nickrob@snap.net.nz>
parents:
51494
diff
changeset
|
3007 (t nil))) |
51494 | 3008 (t nil)))) |
3009 | |
86885 | 3010 |
3011 (declare-function c-langelem-sym "cc-defs" (langelem)) | |
3012 (declare-function c-langelem-pos "cc-defs" (langelem)) | |
3013 (declare-function syntax-symbol "gud" (x)) | |
3014 (declare-function syntax-point "gud" (x)) | |
3015 | |
51494 | 3016 (defun gud-find-class (f line) |
3017 "Find fully qualified class in file F at line LINE. | |
3018 This function uses the `gud-jdb-classpath' (and optional | |
3019 `gud-jdb-sourcepath') list(s) to derive a file | |
80136
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
3020 pathname relative to its classpath directory. The values in |
51494 | 3021 `gud-jdb-classpath' are assumed to have been converted to absolute |
3022 pathname standards using file-truename. | |
3023 If F is visited by a buffer and its mode is CC-mode(Java), | |
3024 syntactic information of LINE is used to find the enclosing (nested) | |
3025 class string which is appended to the top level | |
3026 class of the file (using s to separate nested class ids)." | |
3027 ;; Convert f to a standard representation and remove suffix | |
3028 (if (and gud-jdb-use-classpath (or gud-jdb-classpath gud-jdb-sourcepath)) | |
3029 (save-match-data | |
3030 (let ((cplist (append gud-jdb-sourcepath gud-jdb-classpath)) | |
3031 (fbuffer (get-file-buffer f)) | |
52511
261a321c464e
(gud-find-class): Make jdb work again since
Nick Roberts <nickrob@snap.net.nz>
parents:
52401
diff
changeset
|
3032 syntax-symbol syntax-point class-found) |
51494 | 3033 (setq f (file-name-sans-extension (file-truename f))) |
52511
261a321c464e
(gud-find-class): Make jdb work again since
Nick Roberts <nickrob@snap.net.nz>
parents:
52401
diff
changeset
|
3034 ;; Syntax-symbol returns the symbol of the *first* element |
261a321c464e
(gud-find-class): Make jdb work again since
Nick Roberts <nickrob@snap.net.nz>
parents:
52401
diff
changeset
|
3035 ;; in the syntactical analysis result list, syntax-point |
261a321c464e
(gud-find-class): Make jdb work again since
Nick Roberts <nickrob@snap.net.nz>
parents:
52401
diff
changeset
|
3036 ;; returns the buffer position of same |
261a321c464e
(gud-find-class): Make jdb work again since
Nick Roberts <nickrob@snap.net.nz>
parents:
52401
diff
changeset
|
3037 (fset 'syntax-symbol (lambda (x) (c-langelem-sym (car x)))) |
261a321c464e
(gud-find-class): Make jdb work again since
Nick Roberts <nickrob@snap.net.nz>
parents:
52401
diff
changeset
|
3038 (fset 'syntax-point (lambda (x) (c-langelem-pos (car x)))) |
51494 | 3039 ;; Search through classpath list for an entry that is |
3040 ;; contained in f | |
3041 (while (and cplist (not class-found)) | |
3042 (if (string-match (car cplist) f) | |
3043 (setq class-found | |
3044 (mapconcat 'identity | |
3045 (split-string | |
3046 (substring f (+ (match-end 0) 1)) | |
3047 "/") "."))) | |
3048 (setq cplist (cdr cplist))) | |
3049 ;; if f is visited by a java(cc-mode) buffer, walk up the | |
3050 ;; syntactic information chain and collect any 'inclass | |
3051 ;; symbols until 'topmost-intro is reached to find out if | |
3052 ;; point is within a nested class | |
3053 (if (and fbuffer (equal (symbol-file 'java-mode) "cc-mode")) | |
3054 (save-excursion | |
3055 (set-buffer fbuffer) | |
3056 (let ((nclass) (syntax)) | |
3057 ;; While the c-syntactic information does not start | |
3058 ;; with the 'topmost-intro symbol, there may be | |
3059 ;; nested classes... | |
3060 (while (not (eq 'topmost-intro | |
52511
261a321c464e
(gud-find-class): Make jdb work again since
Nick Roberts <nickrob@snap.net.nz>
parents:
52401
diff
changeset
|
3061 (syntax-symbol (c-guess-basic-syntax)))) |
51494 | 3062 ;; Check if the current position c-syntactic |
3063 ;; analysis has 'inclass | |
3064 (setq syntax (c-guess-basic-syntax)) | |
3065 (while | |
52511
261a321c464e
(gud-find-class): Make jdb work again since
Nick Roberts <nickrob@snap.net.nz>
parents:
52401
diff
changeset
|
3066 (and (not (eq 'inclass (syntax-symbol syntax))) |
51494 | 3067 (cdr syntax)) |
3068 (setq syntax (cdr syntax))) | |
52511
261a321c464e
(gud-find-class): Make jdb work again since
Nick Roberts <nickrob@snap.net.nz>
parents:
52401
diff
changeset
|
3069 (if (eq 'inclass (syntax-symbol syntax)) |
51494 | 3070 (progn |
52511
261a321c464e
(gud-find-class): Make jdb work again since
Nick Roberts <nickrob@snap.net.nz>
parents:
52401
diff
changeset
|
3071 (goto-char (syntax-point syntax)) |
51494 | 3072 ;; Now we're at the beginning of a class |
3073 ;; definition. Find class name | |
3074 (looking-at | |
3075 "[A-Za-z0-9 \t\n]*?class[ \t\n]+\\([^ \t\n]+\\)") | |
3076 (setq nclass | |
3077 (append (list (match-string-no-properties 1)) | |
3078 nclass))) | |
3079 (setq syntax (c-guess-basic-syntax)) | |
52511
261a321c464e
(gud-find-class): Make jdb work again since
Nick Roberts <nickrob@snap.net.nz>
parents:
52401
diff
changeset
|
3080 (while (and (not (syntax-point syntax)) (cdr syntax)) |
51494 | 3081 (setq syntax (cdr syntax))) |
52511
261a321c464e
(gud-find-class): Make jdb work again since
Nick Roberts <nickrob@snap.net.nz>
parents:
52401
diff
changeset
|
3082 (goto-char (syntax-point syntax)) |
51494 | 3083 )) |
3084 (string-match (concat (car nclass) "$") class-found) | |
3085 (setq class-found | |
3086 (replace-match (mapconcat 'identity nclass "$") | |
3087 t t class-found))))) | |
3088 (if (not class-found) | |
3089 (message "gud-find-class: class for file %s not found!" f)) | |
3090 class-found)) | |
3091 ;; Not using classpath - try class/source association list | |
3092 (let ((class-found (rassoc f gud-jdb-class-source-alist))) | |
3093 (if class-found | |
3094 (car class-found) | |
3095 (message "gud-find-class: class for file %s not found in gud-jdb-class-source-alist!" f) | |
3096 nil)))) | |
3097 | |
62049
471fca8487d3
Replace string-to-int with string-to-number.
Nick Roberts <nickrob@snap.net.nz>
parents:
61690
diff
changeset
|
3098 |
51494 | 3099 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
3100 ;;; GDB script mode ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
3101 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
3102 | |
3103 (defvar gdb-script-mode-syntax-table | |
3104 (let ((st (make-syntax-table))) | |
3105 (modify-syntax-entry ?' "\"" st) | |
3106 (modify-syntax-entry ?# "<" st) | |
3107 (modify-syntax-entry ?\n ">" st) | |
3108 st)) | |
3109 | |
3110 (defvar gdb-script-font-lock-keywords | |
52058
5d60b6e20fbd
(gdb-script-font-lock-keywords): Put `font-lock-function-name-face'
Masatake YAMATO <jet@gyve.org>
parents:
51619
diff
changeset
|
3111 '(("^define\\s-+\\(\\(\\w\\|\\s_\\)+\\)" (1 font-lock-function-name-face)) |
5d60b6e20fbd
(gdb-script-font-lock-keywords): Put `font-lock-function-name-face'
Masatake YAMATO <jet@gyve.org>
parents:
51619
diff
changeset
|
3112 ("\\$\\(\\w+\\)" (1 font-lock-variable-name-face)) |
70768
c3d4f6eacc0f
(gdb-script-font-lock-keywords): Use a stricter regexp for keywords.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
70666
diff
changeset
|
3113 ("^\\s-*\\(\\w\\(\\w\\|\\s_\\)*\\)" (1 font-lock-keyword-face)))) |
51494 | 3114 |
3115 (defvar gdb-script-font-lock-syntactic-keywords | |
3116 '(("^document\\s-.*\\(\n\\)" (1 "< b")) | |
72257
93223615e952
(gdb-script-font-lock-syntactic-keywords):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
71878
diff
changeset
|
3117 ("^end\\>" |
75756
97721109e77f
(gdb-script-font-lock-syntactic-keywords): Improve comments.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75347
diff
changeset
|
3118 (0 (unless (eq (match-beginning 0) (point-min)) |
97721109e77f
(gdb-script-font-lock-syntactic-keywords): Improve comments.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75347
diff
changeset
|
3119 ;; We change the \n in front, which is more difficult, but results |
97721109e77f
(gdb-script-font-lock-syntactic-keywords): Improve comments.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75347
diff
changeset
|
3120 ;; in better highlighting. If the doc is empty, the single \n is |
97721109e77f
(gdb-script-font-lock-syntactic-keywords): Improve comments.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75347
diff
changeset
|
3121 ;; both the beginning and the end of the docstring, which can't be |
97721109e77f
(gdb-script-font-lock-syntactic-keywords): Improve comments.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75347
diff
changeset
|
3122 ;; expressed in syntax-tables. Instead, we place the "> b" after |
97721109e77f
(gdb-script-font-lock-syntactic-keywords): Improve comments.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75347
diff
changeset
|
3123 ;; placing the "< b", so the start marker is overwritten by the |
97721109e77f
(gdb-script-font-lock-syntactic-keywords): Improve comments.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75347
diff
changeset
|
3124 ;; termination marker and in the end Emacs simply considers that |
97721109e77f
(gdb-script-font-lock-syntactic-keywords): Improve comments.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75347
diff
changeset
|
3125 ;; there's no docstring at all, which is fine. |
97721109e77f
(gdb-script-font-lock-syntactic-keywords): Improve comments.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75347
diff
changeset
|
3126 (put-text-property (1- (match-beginning 0)) (match-beginning 0) |
97721109e77f
(gdb-script-font-lock-syntactic-keywords): Improve comments.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75347
diff
changeset
|
3127 'syntax-table (eval-when-compile |
97721109e77f
(gdb-script-font-lock-syntactic-keywords): Improve comments.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75347
diff
changeset
|
3128 (string-to-syntax "> b"))) |
97721109e77f
(gdb-script-font-lock-syntactic-keywords): Improve comments.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75347
diff
changeset
|
3129 ;; Make sure that rehighlighting the previous line won't erase our |
78962
1e24f865fb6d
(gud-gud-gdb-command-name): Fix typo in docstring.
Michaël Cadilhac <michael.cadilhac@lrde.org>
parents:
78958
diff
changeset
|
3130 ;; syntax-table property. |
75756
97721109e77f
(gdb-script-font-lock-syntactic-keywords): Improve comments.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75347
diff
changeset
|
3131 (put-text-property (1- (match-beginning 0)) (match-end 0) |
97721109e77f
(gdb-script-font-lock-syntactic-keywords): Improve comments.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75347
diff
changeset
|
3132 'font-lock-multiline t) |
97721109e77f
(gdb-script-font-lock-syntactic-keywords): Improve comments.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75347
diff
changeset
|
3133 nil))))) |
51494 | 3134 |
3135 (defun gdb-script-font-lock-syntactic-face (state) | |
3136 (cond | |
3137 ((nth 3 state) font-lock-string-face) | |
3138 ((nth 7 state) font-lock-doc-face) | |
3139 (t font-lock-comment-face))) | |
3140 | |
3141 (defvar gdb-script-basic-indent 2) | |
3142 | |
3143 (defun gdb-script-skip-to-head () | |
3144 "We're just in front of an `end' and we need to go to its head." | |
68062
a4e1f58469e5
(gdb-script-skip-to-head, gdb-script-calculate-indentation):
Nick Roberts <nickrob@snap.net.nz>
parents:
67957
diff
changeset
|
3145 (while (and (re-search-backward "^\\s-*\\(\\(end\\)\\|define\\|document\\|if\\|while\\|commands\\)\\>" nil 'move) |
51494 | 3146 (match-end 2)) |
3147 (gdb-script-skip-to-head))) | |
3148 | |
3149 (defun gdb-script-calculate-indentation () | |
3150 (cond | |
3151 ((looking-at "end\\>") | |
3152 (gdb-script-skip-to-head) | |
3153 (current-indentation)) | |
3154 ((looking-at "else\\>") | |
3155 (while (and (re-search-backward "^\\s-*\\(if\\|\\(end\\)\\)\\>" nil 'move) | |
3156 (match-end 2)) | |
3157 (gdb-script-skip-to-head)) | |
3158 (current-indentation)) | |
3159 (t | |
3160 (forward-comment (- (point-max))) | |
3161 (forward-line 0) | |
3162 (skip-chars-forward " \t") | |
3163 (+ (current-indentation) | |
68062
a4e1f58469e5
(gdb-script-skip-to-head, gdb-script-calculate-indentation):
Nick Roberts <nickrob@snap.net.nz>
parents:
67957
diff
changeset
|
3164 (if (looking-at "\\(if\\|while\\|define\\|else\\|commands\\)\\>") |
51494 | 3165 gdb-script-basic-indent 0))))) |
3166 | |
3167 (defun gdb-script-indent-line () | |
3168 "Indent current line of GDB script." | |
3169 (interactive) | |
3170 (if (and (eq (get-text-property (point) 'face) font-lock-doc-face) | |
3171 (save-excursion | |
3172 (forward-line 0) | |
3173 (skip-chars-forward " \t") | |
3174 (not (looking-at "end\\>")))) | |
3175 'noindent | |
3176 (let* ((savep (point)) | |
3177 (indent (condition-case nil | |
3178 (save-excursion | |
3179 (forward-line 0) | |
3180 (skip-chars-forward " \t") | |
3181 (if (>= (point) savep) (setq savep nil)) | |
3182 (max (gdb-script-calculate-indentation) 0)) | |
3183 (error 0)))) | |
3184 (if savep | |
3185 (save-excursion (indent-line-to indent)) | |
3186 (indent-line-to indent))))) | |
3187 | |
57476
6205fd61e464
* progmodes/gud.el (gdb-script-beginning-of-defun): New function.
Masatake YAMATO <jet@gyve.org>
parents:
55750
diff
changeset
|
3188 ;; Derived from cfengine.el. |
6205fd61e464
* progmodes/gud.el (gdb-script-beginning-of-defun): New function.
Masatake YAMATO <jet@gyve.org>
parents:
55750
diff
changeset
|
3189 (defun gdb-script-beginning-of-defun () |
6205fd61e464
* progmodes/gud.el (gdb-script-beginning-of-defun): New function.
Masatake YAMATO <jet@gyve.org>
parents:
55750
diff
changeset
|
3190 "`beginning-of-defun' function for Gdb script mode. |
6205fd61e464
* progmodes/gud.el (gdb-script-beginning-of-defun): New function.
Masatake YAMATO <jet@gyve.org>
parents:
55750
diff
changeset
|
3191 Treats actions as defuns." |
6205fd61e464
* progmodes/gud.el (gdb-script-beginning-of-defun): New function.
Masatake YAMATO <jet@gyve.org>
parents:
55750
diff
changeset
|
3192 (unless (<= (current-column) (current-indentation)) |
6205fd61e464
* progmodes/gud.el (gdb-script-beginning-of-defun): New function.
Masatake YAMATO <jet@gyve.org>
parents:
55750
diff
changeset
|
3193 (end-of-line)) |
6205fd61e464
* progmodes/gud.el (gdb-script-beginning-of-defun): New function.
Masatake YAMATO <jet@gyve.org>
parents:
55750
diff
changeset
|
3194 (if (re-search-backward "^define \\|^document " nil t) |
6205fd61e464
* progmodes/gud.el (gdb-script-beginning-of-defun): New function.
Masatake YAMATO <jet@gyve.org>
parents:
55750
diff
changeset
|
3195 (beginning-of-line) |
6205fd61e464
* progmodes/gud.el (gdb-script-beginning-of-defun): New function.
Masatake YAMATO <jet@gyve.org>
parents:
55750
diff
changeset
|
3196 (goto-char (point-min))) |
6205fd61e464
* progmodes/gud.el (gdb-script-beginning-of-defun): New function.
Masatake YAMATO <jet@gyve.org>
parents:
55750
diff
changeset
|
3197 t) |
6205fd61e464
* progmodes/gud.el (gdb-script-beginning-of-defun): New function.
Masatake YAMATO <jet@gyve.org>
parents:
55750
diff
changeset
|
3198 |
6205fd61e464
* progmodes/gud.el (gdb-script-beginning-of-defun): New function.
Masatake YAMATO <jet@gyve.org>
parents:
55750
diff
changeset
|
3199 ;; Derived from cfengine.el. |
6205fd61e464
* progmodes/gud.el (gdb-script-beginning-of-defun): New function.
Masatake YAMATO <jet@gyve.org>
parents:
55750
diff
changeset
|
3200 (defun gdb-script-end-of-defun () |
6205fd61e464
* progmodes/gud.el (gdb-script-beginning-of-defun): New function.
Masatake YAMATO <jet@gyve.org>
parents:
55750
diff
changeset
|
3201 "`end-of-defun' function for Gdb script mode. |
6205fd61e464
* progmodes/gud.el (gdb-script-beginning-of-defun): New function.
Masatake YAMATO <jet@gyve.org>
parents:
55750
diff
changeset
|
3202 Treats actions as defuns." |
6205fd61e464
* progmodes/gud.el (gdb-script-beginning-of-defun): New function.
Masatake YAMATO <jet@gyve.org>
parents:
55750
diff
changeset
|
3203 (end-of-line) |
6205fd61e464
* progmodes/gud.el (gdb-script-beginning-of-defun): New function.
Masatake YAMATO <jet@gyve.org>
parents:
55750
diff
changeset
|
3204 (if (re-search-forward "^end" nil t) |
6205fd61e464
* progmodes/gud.el (gdb-script-beginning-of-defun): New function.
Masatake YAMATO <jet@gyve.org>
parents:
55750
diff
changeset
|
3205 (beginning-of-line) |
6205fd61e464
* progmodes/gud.el (gdb-script-beginning-of-defun): New function.
Masatake YAMATO <jet@gyve.org>
parents:
55750
diff
changeset
|
3206 (goto-char (point-max))) |
6205fd61e464
* progmodes/gud.el (gdb-script-beginning-of-defun): New function.
Masatake YAMATO <jet@gyve.org>
parents:
55750
diff
changeset
|
3207 t) |
6205fd61e464
* progmodes/gud.el (gdb-script-beginning-of-defun): New function.
Masatake YAMATO <jet@gyve.org>
parents:
55750
diff
changeset
|
3208 |
78070
28e125eb9a2a
(auto-mode-alist): Match more valid gdb init
Dan Nicolaescu <dann@ics.uci.edu>
parents:
77624
diff
changeset
|
3209 ;; Besides .gdbinit, gdb documents other names to be usable for init |
28e125eb9a2a
(auto-mode-alist): Match more valid gdb init
Dan Nicolaescu <dann@ics.uci.edu>
parents:
77624
diff
changeset
|
3210 ;; files, cross-debuggers can use something like |
28e125eb9a2a
(auto-mode-alist): Match more valid gdb init
Dan Nicolaescu <dann@ics.uci.edu>
parents:
77624
diff
changeset
|
3211 ;; .PROCESSORNAME-gdbinit so that the host and target gdbinit files |
28e125eb9a2a
(auto-mode-alist): Match more valid gdb init
Dan Nicolaescu <dann@ics.uci.edu>
parents:
77624
diff
changeset
|
3212 ;; don't interfere with each other. |
51494 | 3213 ;;;###autoload |
78070
28e125eb9a2a
(auto-mode-alist): Match more valid gdb init
Dan Nicolaescu <dann@ics.uci.edu>
parents:
77624
diff
changeset
|
3214 (add-to-list 'auto-mode-alist '("/\\.[a-z0-9-]*gdbinit" . gdb-script-mode)) |
51494 | 3215 |
3216 ;;;###autoload | |
3217 (define-derived-mode gdb-script-mode nil "GDB-Script" | |
80136
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
3218 "Major mode for editing GDB scripts." |
51494 | 3219 (set (make-local-variable 'comment-start) "#") |
3220 (set (make-local-variable 'comment-start-skip) "#+\\s-*") | |
3221 (set (make-local-variable 'outline-regexp) "[ \t]") | |
3222 (set (make-local-variable 'imenu-generic-expression) | |
3223 '((nil "^define[ \t]+\\(\\w+\\)" 1))) | |
3224 (set (make-local-variable 'indent-line-function) 'gdb-script-indent-line) | |
57476
6205fd61e464
* progmodes/gud.el (gdb-script-beginning-of-defun): New function.
Masatake YAMATO <jet@gyve.org>
parents:
55750
diff
changeset
|
3225 (set (make-local-variable 'beginning-of-defun-function) |
6205fd61e464
* progmodes/gud.el (gdb-script-beginning-of-defun): New function.
Masatake YAMATO <jet@gyve.org>
parents:
55750
diff
changeset
|
3226 #'gdb-script-beginning-of-defun) |
6205fd61e464
* progmodes/gud.el (gdb-script-beginning-of-defun): New function.
Masatake YAMATO <jet@gyve.org>
parents:
55750
diff
changeset
|
3227 (set (make-local-variable 'end-of-defun-function) |
6205fd61e464
* progmodes/gud.el (gdb-script-beginning-of-defun): New function.
Masatake YAMATO <jet@gyve.org>
parents:
55750
diff
changeset
|
3228 #'gdb-script-end-of-defun) |
51494 | 3229 (set (make-local-variable 'font-lock-defaults) |
3230 '(gdb-script-font-lock-keywords nil nil ((?_ . "w")) nil | |
3231 (font-lock-syntactic-keywords | |
3232 . gdb-script-font-lock-syntactic-keywords) | |
3233 (font-lock-syntactic-face-function | |
3234 . gdb-script-font-lock-syntactic-face)))) | |
3235 | |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3236 |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3237 ;;; tooltips for GUD |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3238 |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3239 ;;; Customizable settings |
67486
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3240 |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
3241 ;;;###autoload |
67486
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3242 (define-minor-mode gud-tooltip-mode |
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3243 "Toggle the display of GUD tooltips." |
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3244 :global t |
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3245 :group 'gud |
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3246 :group 'tooltip |
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3247 (require 'tooltip) |
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3248 (if gud-tooltip-mode |
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3249 (progn |
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3250 (add-hook 'change-major-mode-hook 'gud-tooltip-change-major-mode) |
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3251 (add-hook 'pre-command-hook 'tooltip-hide) |
99213
33f78208d5f0
Rename `tooltip-hook' to `tooltip-functions'.
Juanma Barranquero <lekktu@gmail.com>
parents:
98628
diff
changeset
|
3252 (add-hook 'tooltip-functions 'gud-tooltip-tips) |
67486
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3253 (define-key global-map [mouse-movement] 'gud-tooltip-mouse-motion)) |
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3254 (unless tooltip-mode (remove-hook 'pre-command-hook 'tooltip-hide) |
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3255 (remove-hook 'change-major-mode-hook 'gud-tooltip-change-major-mode) |
99213
33f78208d5f0
Rename `tooltip-hook' to `tooltip-functions'.
Juanma Barranquero <lekktu@gmail.com>
parents:
98628
diff
changeset
|
3256 (remove-hook 'tooltip-functions 'gud-tooltip-tips) |
67486
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3257 (define-key global-map [mouse-movement] 'ignore))) |
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3258 (gud-tooltip-activate-mouse-motions-if-enabled) |
69527
64cdad743e23
(gud-gdb-complete-command, gud-gdb-run-command-fetch-lines): Adapt for use
Nick Roberts <nickrob@snap.net.nz>
parents:
69476
diff
changeset
|
3259 (if (and gud-comint-buffer |
64cdad743e23
(gud-gdb-complete-command, gud-gdb-run-command-fetch-lines): Adapt for use
Nick Roberts <nickrob@snap.net.nz>
parents:
69476
diff
changeset
|
3260 (buffer-name gud-comint-buffer); gud-comint-buffer might be killed |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
3261 (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer) |
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
3262 'gdbmi)) |
67486
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3263 (if gud-tooltip-mode |
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3264 (progn |
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3265 (dolist (buffer (buffer-list)) |
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3266 (unless (eq buffer gud-comint-buffer) |
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3267 (with-current-buffer buffer |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
3268 (when (and (eq gud-minor-mode 'gdbmi) |
67486
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3269 (not (string-match "\\`\\*.+\\*\\'" |
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3270 (buffer-name)))) |
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3271 (make-local-variable 'gdb-define-alist) |
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3272 (gdb-create-define-alist) |
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3273 (add-hook 'after-save-hook |
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3274 'gdb-create-define-alist nil t)))))) |
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3275 (kill-local-variable 'gdb-define-alist) |
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3276 (remove-hook 'after-save-hook 'gdb-create-define-alist t)))) |
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3277 |
94024
9addbbd02f71
Move non-autoloaded define-obsolete-variable-alias calls for
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
3278 (define-obsolete-variable-alias 'tooltip-gud-modes |
9addbbd02f71
Move non-autoloaded define-obsolete-variable-alias calls for
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
3279 'gud-tooltip-modes "22.1") |
9addbbd02f71
Move non-autoloaded define-obsolete-variable-alias calls for
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
3280 |
71238
151cfd1b3e3e
(gud-running): Fix doc string.
Nick Roberts <nickrob@snap.net.nz>
parents:
71221
diff
changeset
|
3281 (defcustom gud-tooltip-modes '(gud-mode c-mode c++-mode fortran-mode |
151cfd1b3e3e
(gud-running): Fix doc string.
Nick Roberts <nickrob@snap.net.nz>
parents:
71221
diff
changeset
|
3282 python-mode) |
67486
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3283 "List of modes for which to enable GUD tooltips." |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3284 :type 'sexp |
67486
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3285 :group 'gud |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3286 :group 'tooltip) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3287 |
94024
9addbbd02f71
Move non-autoloaded define-obsolete-variable-alias calls for
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
3288 (define-obsolete-variable-alias 'tooltip-gud-display |
9addbbd02f71
Move non-autoloaded define-obsolete-variable-alias calls for
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
3289 'gud-tooltip-display "22.1") |
9addbbd02f71
Move non-autoloaded define-obsolete-variable-alias calls for
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
3290 |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3291 (defcustom gud-tooltip-display |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3292 '((eq (tooltip-event-buffer gud-tooltip-event) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3293 (marker-buffer gud-overlay-arrow-position))) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3294 "List of forms determining where GUD tooltips are displayed. |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3295 |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3296 Forms in the list are combined with AND. The default is to display |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3297 only tooltips in the buffer containing the overlay arrow." |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3298 :type 'sexp |
67486
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3299 :group 'gud |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3300 :group 'tooltip) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3301 |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3302 (defcustom gud-tooltip-echo-area nil |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3303 "Use the echo area instead of frames for GUD tooltips." |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3304 :type 'boolean |
67486
3d94a55776e3
(gud-tooltip-modes, gud-tooltip-display):
Nick Roberts <nickrob@snap.net.nz>
parents:
67403
diff
changeset
|
3305 :group 'gud |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3306 :group 'tooltip) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3307 |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3308 ;;; Reacting on mouse movements |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3309 |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3310 (defun gud-tooltip-change-major-mode () |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3311 "Function added to `change-major-mode-hook' when tooltip mode is on." |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3312 (add-hook 'post-command-hook 'gud-tooltip-activate-mouse-motions-if-enabled)) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3313 |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3314 (defun gud-tooltip-activate-mouse-motions-if-enabled () |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3315 "Reconsider for all buffers whether mouse motion events are desired." |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3316 (remove-hook 'post-command-hook |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3317 'gud-tooltip-activate-mouse-motions-if-enabled) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3318 (dolist (buffer (buffer-list)) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3319 (save-excursion |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3320 (set-buffer buffer) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3321 (if (and gud-tooltip-mode |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3322 (memq major-mode gud-tooltip-modes)) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3323 (gud-tooltip-activate-mouse-motions t) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3324 (gud-tooltip-activate-mouse-motions nil))))) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3325 |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3326 (defvar gud-tooltip-mouse-motions-active nil |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3327 "Locally t in a buffer if tooltip processing of mouse motion is enabled.") |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3328 |
71595
1152b12a089e
tooltip.el: Move comment about track-mouse...
Nick Roberts <nickrob@snap.net.nz>
parents:
71238
diff
changeset
|
3329 ;; We don't set track-mouse globally because this is a big redisplay |
1152b12a089e
tooltip.el: Move comment about track-mouse...
Nick Roberts <nickrob@snap.net.nz>
parents:
71238
diff
changeset
|
3330 ;; problem in buffers having a pre-command-hook or such installed, |
1152b12a089e
tooltip.el: Move comment about track-mouse...
Nick Roberts <nickrob@snap.net.nz>
parents:
71238
diff
changeset
|
3331 ;; which does a set-buffer, like the summary buffer of Gnus. Calling |
1152b12a089e
tooltip.el: Move comment about track-mouse...
Nick Roberts <nickrob@snap.net.nz>
parents:
71238
diff
changeset
|
3332 ;; set-buffer prevents redisplay optimizations, so every mouse motion |
1152b12a089e
tooltip.el: Move comment about track-mouse...
Nick Roberts <nickrob@snap.net.nz>
parents:
71238
diff
changeset
|
3333 ;; would be accompanied by a full redisplay. |
1152b12a089e
tooltip.el: Move comment about track-mouse...
Nick Roberts <nickrob@snap.net.nz>
parents:
71238
diff
changeset
|
3334 |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3335 (defun gud-tooltip-activate-mouse-motions (activatep) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3336 "Activate/deactivate mouse motion events for the current buffer. |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3337 ACTIVATEP non-nil means activate mouse motion events." |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3338 (if activatep |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3339 (progn |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3340 (make-local-variable 'gud-tooltip-mouse-motions-active) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3341 (setq gud-tooltip-mouse-motions-active t) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3342 (make-local-variable 'track-mouse) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3343 (setq track-mouse t)) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3344 (when gud-tooltip-mouse-motions-active |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3345 (kill-local-variable 'gud-tooltip-mouse-motions-active) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3346 (kill-local-variable 'track-mouse)))) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3347 |
95841
b4e36ff621b3
Add some compiler declarations, for builds without X.
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
3348 (defvar tooltip-last-mouse-motion-event) |
b4e36ff621b3
Add some compiler declarations, for builds without X.
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
3349 (declare-function tooltip-hide "tooltip" (&optional ignored-arg)) |
b4e36ff621b3
Add some compiler declarations, for builds without X.
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
3350 (declare-function tooltip-start-delayed-tip "tooltip" ()) |
b4e36ff621b3
Add some compiler declarations, for builds without X.
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
3351 |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3352 (defun gud-tooltip-mouse-motion (event) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3353 "Command handler for mouse movement events in `global-map'." |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3354 (interactive "e") |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3355 (tooltip-hide) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3356 (when (car (mouse-pixel-position)) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3357 (setq tooltip-last-mouse-motion-event (copy-sequence event)) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3358 (tooltip-start-delayed-tip))) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3359 |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3360 ;;; Tips for `gud' |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3361 |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3362 (defvar gud-tooltip-original-filter nil |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3363 "Process filter to restore after GUD output has been received.") |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3364 |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3365 (defvar gud-tooltip-dereference nil |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3366 "Non-nil means print expressions with a `*' in front of them. |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3367 For C this would dereference a pointer expression.") |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3368 |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3369 (defvar gud-tooltip-event nil |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3370 "The mouse movement event that led to a tooltip display. |
80136
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
3371 This event can be examined by forms in `gud-tooltip-display'.") |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3372 |
69293
409217fd29ea
(gud-tooltip-dereference): Add missing optional argument.
Luc Teirlinck <teirllm@auburn.edu>
parents:
69291
diff
changeset
|
3373 (defun gud-tooltip-dereference (&optional arg) |
67890
a6271fd07ee3
(gud-tooltip-dereference): Rename from toggle-gud-tooltip-dereference.
Nick Roberts <nickrob@snap.net.nz>
parents:
67714
diff
changeset
|
3374 "Toggle whether tooltips should show `* expr' or `expr'. |
78487
419c5c316b51
Replace `iff' in doc-strings and comments.
Glenn Morris <rgm@gnu.org>
parents:
78234
diff
changeset
|
3375 With arg, dereference expr if ARG is positive, otherwise do not derereference." |
67890
a6271fd07ee3
(gud-tooltip-dereference): Rename from toggle-gud-tooltip-dereference.
Nick Roberts <nickrob@snap.net.nz>
parents:
67714
diff
changeset
|
3376 (interactive "P") |
a6271fd07ee3
(gud-tooltip-dereference): Rename from toggle-gud-tooltip-dereference.
Nick Roberts <nickrob@snap.net.nz>
parents:
67714
diff
changeset
|
3377 (setq gud-tooltip-dereference |
a6271fd07ee3
(gud-tooltip-dereference): Rename from toggle-gud-tooltip-dereference.
Nick Roberts <nickrob@snap.net.nz>
parents:
67714
diff
changeset
|
3378 (if (null arg) |
a6271fd07ee3
(gud-tooltip-dereference): Rename from toggle-gud-tooltip-dereference.
Nick Roberts <nickrob@snap.net.nz>
parents:
67714
diff
changeset
|
3379 (not gud-tooltip-dereference) |
a6271fd07ee3
(gud-tooltip-dereference): Rename from toggle-gud-tooltip-dereference.
Nick Roberts <nickrob@snap.net.nz>
parents:
67714
diff
changeset
|
3380 (> (prefix-numeric-value arg) 0))) |
a6271fd07ee3
(gud-tooltip-dereference): Rename from toggle-gud-tooltip-dereference.
Nick Roberts <nickrob@snap.net.nz>
parents:
67714
diff
changeset
|
3381 (message "Dereferencing is now %s." |
a6271fd07ee3
(gud-tooltip-dereference): Rename from toggle-gud-tooltip-dereference.
Nick Roberts <nickrob@snap.net.nz>
parents:
67714
diff
changeset
|
3382 (if gud-tooltip-dereference "on" "off"))) |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3383 |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3384 (define-obsolete-function-alias 'tooltip-gud-toggle-dereference |
67890
a6271fd07ee3
(gud-tooltip-dereference): Rename from toggle-gud-tooltip-dereference.
Nick Roberts <nickrob@snap.net.nz>
parents:
67714
diff
changeset
|
3385 'gud-tooltip-dereference "22.1") |
95841
b4e36ff621b3
Add some compiler declarations, for builds without X.
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
3386 (defvar tooltip-use-echo-area) |
b4e36ff621b3
Add some compiler declarations, for builds without X.
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
3387 (declare-function tooltip-show "tooltip" (text &optional use-echo-area)) |
b4e36ff621b3
Add some compiler declarations, for builds without X.
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
3388 (declare-function tooltip-strip-prompt "tooltip" (process output)) |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3389 |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3390 ; This will only display data that comes in one chunk. |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3391 ; Larger arrays (say 400 elements) are displayed in |
63442
41b38bc88264
* progmodes/gud.el (tooltip-use-echo-area): Remove alias.
Nick Roberts <nickrob@snap.net.nz>
parents:
63404
diff
changeset
|
3392 ; the tooltip incompletely and spill over into the gud buffer. |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3393 ; Switching the process-filter creates timing problems and |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
3394 ; it may be difficult to do better. Using GDB/MI as in |
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
3395 ; gdb-mi.el gets round this problem. |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3396 (defun gud-tooltip-process-output (process output) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3397 "Process debugger output and show it in a tooltip window." |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3398 (set-process-filter process gud-tooltip-original-filter) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3399 (tooltip-show (tooltip-strip-prompt process output) |
63442
41b38bc88264
* progmodes/gud.el (tooltip-use-echo-area): Remove alias.
Nick Roberts <nickrob@snap.net.nz>
parents:
63404
diff
changeset
|
3400 (or gud-tooltip-echo-area tooltip-use-echo-area))) |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3401 |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3402 (defun gud-tooltip-print-command (expr) |
67890
a6271fd07ee3
(gud-tooltip-dereference): Rename from toggle-gud-tooltip-dereference.
Nick Roberts <nickrob@snap.net.nz>
parents:
67714
diff
changeset
|
3403 "Return a suitable command to print the expression EXPR." |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3404 (case gud-minor-mode |
63731
4121439fd904
(gud-tooltip-print-command): Indent properly.
Nick Roberts <nickrob@snap.net.nz>
parents:
63442
diff
changeset
|
3405 ((dbx gdbmi) (concat "print " expr)) |
71238
151cfd1b3e3e
(gud-running): Fix doc string.
Nick Roberts <nickrob@snap.net.nz>
parents:
71221
diff
changeset
|
3406 ((xdb pdb) (concat "p " expr)) |
151cfd1b3e3e
(gud-running): Fix doc string.
Nick Roberts <nickrob@snap.net.nz>
parents:
71221
diff
changeset
|
3407 (sdb (concat expr "/")))) |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3408 |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
3409 (declare-function gdb-input "gdb-mi" (item)) |
95841
b4e36ff621b3
Add some compiler declarations, for builds without X.
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
3410 (declare-function tooltip-expr-to-print "tooltip" (event)) |
b4e36ff621b3
Add some compiler declarations, for builds without X.
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
3411 (declare-function tooltip-event-buffer "tooltip" (event)) |
86885 | 3412 |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3413 (defun gud-tooltip-tips (event) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3414 "Show tip for identifier or selection under the mouse. |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3415 The mouse must either point at an identifier or inside a selected |
80136
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
3416 region for the tip window to be shown. If `gud-tooltip-dereference' is t, |
43a1ac4ee199
(gud-def, gud-last-speedbar-stackframe): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
79717
diff
changeset
|
3417 add a `*' in front of the printed expression. In the case of a C program |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3418 controlled by GDB, show the associated #define directives when program is |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3419 not executing. |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3420 |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3421 This function must return nil if it doesn't handle EVENT." |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3422 (let (process) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3423 (when (and (eventp event) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3424 gud-tooltip-mode |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3425 gud-comint-buffer |
67403
adbf404cf806
(gud-speedbar-buttons, gud-tooltip-tips):
Nick Roberts <nickrob@snap.net.nz>
parents:
67251
diff
changeset
|
3426 (buffer-name gud-comint-buffer); might be killed |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3427 (setq process (get-buffer-process gud-comint-buffer)) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3428 (posn-point (event-end event)) |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
3429 (or (and (eq gud-minor-mode 'gdbmi) (not gdb-active-process)) |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3430 (progn (setq gud-tooltip-event event) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3431 (eval (cons 'and gud-tooltip-display))))) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3432 (let ((expr (tooltip-expr-to-print event))) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3433 (when expr |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
3434 (if (and (eq gud-minor-mode 'gdbmi) |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3435 (not gdb-active-process)) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3436 (progn |
80511
e85df11c51e4
(gud-tooltip-tips): Use tooltip-event-buffer
Nick Roberts <nickrob@snap.net.nz>
parents:
80168
diff
changeset
|
3437 (with-current-buffer (tooltip-event-buffer event) |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3438 (let ((define-elt (assoc expr gdb-define-alist))) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3439 (unless (null define-elt) |
63442
41b38bc88264
* progmodes/gud.el (tooltip-use-echo-area): Remove alias.
Nick Roberts <nickrob@snap.net.nz>
parents:
63404
diff
changeset
|
3440 (tooltip-show |
41b38bc88264
* progmodes/gud.el (tooltip-use-echo-area): Remove alias.
Nick Roberts <nickrob@snap.net.nz>
parents:
63404
diff
changeset
|
3441 (cdr define-elt) |
41b38bc88264
* progmodes/gud.el (tooltip-use-echo-area): Remove alias.
Nick Roberts <nickrob@snap.net.nz>
parents:
63404
diff
changeset
|
3442 (or gud-tooltip-echo-area tooltip-use-echo-area)) |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3443 expr)))) |
67890
a6271fd07ee3
(gud-tooltip-dereference): Rename from toggle-gud-tooltip-dereference.
Nick Roberts <nickrob@snap.net.nz>
parents:
67714
diff
changeset
|
3444 (when gud-tooltip-dereference |
a6271fd07ee3
(gud-tooltip-dereference): Rename from toggle-gud-tooltip-dereference.
Nick Roberts <nickrob@snap.net.nz>
parents:
67714
diff
changeset
|
3445 (setq expr (concat "*" expr))) |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3446 (let ((cmd (gud-tooltip-print-command expr))) |
62395
b4775e4a25b8
(gud-tooltip-mode): Add gud prefix to
Nick Roberts <nickrob@snap.net.nz>
parents:
62203
diff
changeset
|
3447 (when (and gud-tooltip-mode (eq gud-minor-mode 'gdb)) |
b4775e4a25b8
(gud-tooltip-mode): Add gud prefix to
Nick Roberts <nickrob@snap.net.nz>
parents:
62203
diff
changeset
|
3448 (gud-tooltip-mode -1) |
b4775e4a25b8
(gud-tooltip-mode): Add gud prefix to
Nick Roberts <nickrob@snap.net.nz>
parents:
62203
diff
changeset
|
3449 (message-box "Using GUD tooltips in this mode is unsafe\n\ |
b4775e4a25b8
(gud-tooltip-mode): Add gud prefix to
Nick Roberts <nickrob@snap.net.nz>
parents:
62203
diff
changeset
|
3450 so they have been disabled.")) |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3451 (unless (null cmd) ; CMD can be nil if unknown debugger |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
3452 (if (eq gud-minor-mode 'gdbmi) |
62203
8ea5bf9aeed7
(gud-tooltip-mode): Require tooltip to be safe.
Nick Roberts <nickrob@snap.net.nz>
parents:
62134
diff
changeset
|
3453 (if gdb-macro-info |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
3454 (gdb-input |
62203
8ea5bf9aeed7
(gud-tooltip-mode): Require tooltip to be safe.
Nick Roberts <nickrob@snap.net.nz>
parents:
62134
diff
changeset
|
3455 (list (concat |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
3456 "server macro expand " expr "\n") |
62203
8ea5bf9aeed7
(gud-tooltip-mode): Require tooltip to be safe.
Nick Roberts <nickrob@snap.net.nz>
parents:
62134
diff
changeset
|
3457 `(lambda () (gdb-tooltip-print-1 ,expr)))) |
103504
b2b747edcf7e
* progmodes/gdb-ui.el: Replace with ...
Nick Roberts <nickrob@snap.net.nz>
parents:
100908
diff
changeset
|
3458 (gdb-input |
70666
1ba52dfffa46
(gud-tooltip-tips): Add missing argument to
Nick Roberts <nickrob@snap.net.nz>
parents:
70373
diff
changeset
|
3459 (list (concat cmd "\n") |
1ba52dfffa46
(gud-tooltip-tips): Add missing argument to
Nick Roberts <nickrob@snap.net.nz>
parents:
70373
diff
changeset
|
3460 `(lambda () (gdb-tooltip-print ,expr))))) |
62134
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3461 (setq gud-tooltip-original-filter (process-filter process)) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3462 (set-process-filter process 'gud-tooltip-process-output) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3463 (gud-basic-call cmd)) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3464 expr)))))))) |
6cd1d39df919
Move code for GUD tooltips from tooltip.el.
Nick Roberts <nickrob@snap.net.nz>
parents:
62049
diff
changeset
|
3465 |
51494 | 3466 (provide 'gud) |
3467 | |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
92148
diff
changeset
|
3468 ;; arch-tag: 6d990948-df65-461a-be39-1c7fb83ac4c4 |
51494 | 3469 ;;; gud.el ends here |