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