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