*** empty log message ***
[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)
2505 (setq file (file-name-nondirectory file))
2506 file))))
0f9c2d46
JB
2507 (apply 'make-comint (concat "gud" filepart) program nil
2508 (if massage-args (funcall massage-args file args) args))
2509 ;; Since comint clobbered the mode, we don't set it until now.
2510 (gud-mode)
2511 (set (make-local-variable 'gud-target-name)
2512 (and file-word (file-name-nondirectory file))))
2513 (set (make-local-variable 'gud-marker-filter) marker-filter)
2514 (if find-file (set (make-local-variable 'gud-find-file) find-file))
0f9c2d46
JB
2515 (setq gud-last-last-frame nil)
2516
2517 (set-process-filter (get-buffer-process (current-buffer)) 'gud-filter)
2518 (set-process-sentinel (get-buffer-process (current-buffer)) 'gud-sentinel)
2519 (gud-set-buffer))
2520
2521(defun gud-set-buffer ()
2522 (when (eq major-mode 'gud-mode)
2523 (setq gud-comint-buffer (current-buffer))))
2524
2525(defvar gud-filter-defer-flag nil
2526 "Non-nil means don't process anything from the debugger right now.
2527It is saved for when this flag is not set.")
2528
0f9c2d46
JB
2529;; These functions are responsible for inserting output from your debugger
2530;; into the buffer. The hard work is done by the method that is
2531;; the value of gud-marker-filter.
2532
2533(defun gud-filter (proc string)
2534 ;; Here's where the actual buffer insertion is done
2535 (let (output process-window)
2536 (if (buffer-name (process-buffer proc))
2537 (if gud-filter-defer-flag
2538 ;; If we can't process any text now,
2539 ;; save it for later.
2540 (setq gud-filter-pending-text
2541 (concat (or gud-filter-pending-text "") string))
2542
2543 ;; If we have to ask a question during the processing,
2544 ;; defer any additional text that comes from the debugger
2545 ;; during that time.
2546 (let ((gud-filter-defer-flag t))
2547 ;; Process now any text we previously saved up.
2548 (if gud-filter-pending-text
2549 (setq string (concat gud-filter-pending-text string)
2550 gud-filter-pending-text nil))
2551
2552 (with-current-buffer (process-buffer proc)
2553 ;; If we have been so requested, delete the debugger prompt.
2554 (save-restriction
2555 (widen)
2556 (if (marker-buffer gud-delete-prompt-marker)
3139e03a 2557 (let ((inhibit-read-only t))
0f9c2d46
JB
2558 (delete-region (process-mark proc)
2559 gud-delete-prompt-marker)
2ad0fb7d 2560 (comint-update-fence)
0f9c2d46
JB
2561 (set-marker gud-delete-prompt-marker nil)))
2562 ;; Save the process output, checking for source file markers.
2563 (setq output (gud-marker-filter string))
2564 ;; Check for a filename-and-line number.
2565 ;; Don't display the specified file
2566 ;; unless (1) point is at or after the position where output appears
2567 ;; and (2) this buffer is on the screen.
2568 (setq process-window
2569 (and gud-last-frame
2570 (>= (point) (process-mark proc))
2571 (get-buffer-window (current-buffer)))))
2572
2573 ;; Let the comint filter do the actual insertion.
2574 ;; That lets us inherit various comint features.
2575 (comint-output-filter proc output))
2576
2577 ;; Put the arrow on the source line.
2578 ;; This must be outside of the save-excursion
2579 ;; in case the source file is our current buffer.
2580 (if process-window
007c55a4 2581 (with-selected-window process-window
0a0157ba 2582 (gud-display-frame))
0f9c2d46
JB
2583 ;; We have to be in the proper buffer, (process-buffer proc),
2584 ;; but not in a save-excursion, because that would restore point.
3e215e30
RS
2585 (with-current-buffer (process-buffer proc)
2586 (gud-display-frame))))
0f9c2d46
JB
2587
2588 ;; If we deferred text that arrived during this processing,
2589 ;; handle it now.
2590 (if gud-filter-pending-text
2591 (gud-filter proc ""))))))
2592
2593(defvar gud-minor-mode-type nil)
63cc3b09 2594(defvar gud-overlay-arrow-position nil)
63cc3b09 2595(add-to-list 'overlay-arrow-variable-list 'gud-overlay-arrow-position)
0f9c2d46 2596
da567a4f
GM
2597(declare-function gdb-reset "gdb-ui" ())
2598
0f9c2d46
JB
2599(defun gud-sentinel (proc msg)
2600 (cond ((null (buffer-name (process-buffer proc)))
2601 ;; buffer killed
2602 ;; Stop displaying an arrow in a source file.
63cc3b09 2603 (setq gud-overlay-arrow-position nil)
0f9c2d46 2604 (set-process-buffer proc nil)
a1edf962
NR
2605 (if (and (boundp 'speedbar-frame)
2606 (string-equal speedbar-initial-expansion-list-name "GUD"))
c35d8f46
NR
2607 (speedbar-change-initial-expansion-list
2608 speedbar-previously-used-expansion-list-name))
129adb6f 2609 (if (memq gud-minor-mode-type '(gdbmi gdba))
0f9c2d46
JB
2610 (gdb-reset)
2611 (gud-reset)))
2612 ((memq (process-status proc) '(signal exit))
2613 ;; Stop displaying an arrow in a source file.
63cc3b09 2614 (setq gud-overlay-arrow-position nil)
a386b095
NR
2615 (if (memq (buffer-local-value 'gud-minor-mode gud-comint-buffer)
2616 '(gdba gdbmi))
2617 (gdb-reset)
2618 (gud-reset))
0f9c2d46
JB
2619 (let* ((obuf (current-buffer)))
2620 ;; save-excursion isn't the right thing if
2621 ;; process-buffer is current-buffer
2622 (unwind-protect
2623 (progn
08aef629 2624 ;; Write something in the GUD buffer and hack its mode line,
0f9c2d46
JB
2625 (set-buffer (process-buffer proc))
2626 ;; Fix the mode line.
2627 (setq mode-line-process
2628 (concat ":"
2629 (symbol-name (process-status proc))))
2630 (force-mode-line-update)
2631 (if (eobp)
2632 (insert ?\n mode-name " " msg)
2633 (save-excursion
2634 (goto-char (point-max))
2635 (insert ?\n mode-name " " msg)))
2636 ;; If buffer and mode line will show that the process
2637 ;; is dead, we can delete it now. Otherwise it
2638 ;; will stay around until M-x list-processes.
2639 (delete-process proc))
2640 ;; Restore old buffer, but don't restore old point
2641 ;; if obuf is the gud buffer.
2642 (set-buffer obuf))))))
2643
2644(defun gud-kill-buffer-hook ()
68b872d2
NR
2645 (setq gud-minor-mode-type gud-minor-mode)
2646 (condition-case nil
6a7df22f 2647 (kill-process (get-buffer-process (current-buffer)))
68b872d2 2648 (error nil)))
0f9c2d46
JB
2649
2650(defun gud-reset ()
2651 (dolist (buffer (buffer-list))
27149c58
SM
2652 (unless (eq buffer gud-comint-buffer)
2653 (with-current-buffer buffer
2654 (when gud-minor-mode
2655 (setq gud-minor-mode nil)
2656 (kill-local-variable 'tool-bar-map))))))
0f9c2d46
JB
2657
2658(defun gud-display-frame ()
2659 "Find and obey the last filename-and-line marker from the debugger.
2660Obeying it means displaying in another window the specified file and line."
2661 (interactive)
2662 (when gud-last-frame
2663 (gud-set-buffer)
2664 (gud-display-line (car gud-last-frame) (cdr gud-last-frame))
2665 (setq gud-last-last-frame gud-last-frame
2666 gud-last-frame nil)))
2667
da567a4f
GM
2668(declare-function global-hl-line-highlight "hl-line" ())
2669(declare-function hl-line-highlight "hl-line" ())
2670(declare-function gdb-display-source-buffer "gdb-ui" (buffer))
2671(declare-function gdb-display-buffer "gdb-ui" (buf dedicated &optional size))
2672
0f9c2d46
JB
2673;; Make sure the file named TRUE-FILE is in a buffer that appears on the screen
2674;; and that its line LINE is visible.
2675;; Put the overlay-arrow on the line LINE in that buffer.
2676;; Most of the trickiness in here comes from wanting to preserve the current
2677;; region-restriction if that's possible. We use an explicit display-buffer
2678;; to get around the fact that this is called inside a save-excursion.
2679
2680(defun gud-display-line (true-file line)
2681 (let* ((last-nonmenu-event t) ; Prevent use of dialog box for questions.
2682 (buffer
2683 (with-current-buffer gud-comint-buffer
2684 (gud-find-file true-file)))
08aef629
NR
2685 (window (and buffer
2686 (or (get-buffer-window buffer)
2687 (if (memq gud-minor-mode '(gdbmi gdba))
1f38de12
NR
2688 (or (if (get-buffer-window buffer 'visible)
2689 (display-buffer buffer nil 'visible))
08aef629 2690 (unless (gdb-display-source-buffer buffer)
1f38de12 2691 (gdb-display-buffer buffer nil 'visible))))
08aef629 2692 (display-buffer buffer))))
0f9c2d46
JB
2693 (pos))
2694 (if buffer
2695 (progn
2696 (with-current-buffer buffer
37fdcfbc
NR
2697 (unless (or (verify-visited-file-modtime buffer) gud-keep-buffer)
2698 (if (yes-or-no-p
0f9c2d46
JB
2699 (format "File %s changed on disk. Reread from disk? "
2700 (buffer-name)))
2701 (revert-buffer t t)
37fdcfbc 2702 (setq gud-keep-buffer t)))
0f9c2d46
JB
2703 (save-restriction
2704 (widen)
2705 (goto-line line)
2706 (setq pos (point))
63cc3b09
NR
2707 (or gud-overlay-arrow-position
2708 (setq gud-overlay-arrow-position (make-marker)))
8c3f3d64
EZ
2709 (set-marker gud-overlay-arrow-position (point) (current-buffer))
2710 ;; If they turned on hl-line, move the hl-line highlight to
2711 ;; the arrow's line.
2712 (when (featurep 'hl-line)
2713 (cond
2714 (global-hl-line-mode
2715 (global-hl-line-highlight))
2716 ((and hl-line-mode hl-line-sticky-flag)
2717 (hl-line-highlight)))))
0f9c2d46 2718 (cond ((or (< pos (point-min)) (> pos (point-max)))
37fdcfbc
NR
2719 (widen)
2720 (goto-char pos))))
ac39a725 2721 (when window
8d39ce5e
NR
2722 (set-window-point window gud-overlay-arrow-position)
2723 (if (memq gud-minor-mode '(gdbmi gdba))
2724 (setq gdb-source-window window)))))))
0f9c2d46
JB
2725
2726;; The gud-call function must do the right thing whether its invoking
2727;; keystroke is from the GUD buffer itself (via major-mode binding)
2728;; or a C buffer. In the former case, we want to supply data from
2729;; gud-last-frame. Here's how we do it:
2730
2731(defun gud-format-command (str arg)
2732 (let ((insource (not (eq (current-buffer) gud-comint-buffer)))
2733 (frame (or gud-last-frame gud-last-last-frame))
2734 result)
1a2416ed
NR
2735 (while (and str
2736 (let ((case-fold-search nil))
2737 (string-match "\\([^%]*\\)%\\([adefFlpc]\\)" str)))
0f9c2d46
JB
2738 (let ((key (string-to-char (match-string 2 str)))
2739 subst)
2740 (cond
2741 ((eq key ?f)
2742 (setq subst (file-name-nondirectory (if insource
2743 (buffer-file-name)
2744 (car frame)))))
2745 ((eq key ?F)
2746 (setq subst (file-name-sans-extension
2747 (file-name-nondirectory (if insource
2748 (buffer-file-name)
2749 (car frame))))))
2750 ((eq key ?d)
2751 (setq subst (file-name-directory (if insource
2752 (buffer-file-name)
2753 (car frame)))))
2754 ((eq key ?l)
2755 (setq subst (int-to-string
2756 (if insource
2757 (save-restriction
2758 (widen)
2759 (+ (count-lines (point-min) (point))
2760 (if (bolp) 1 0)))
2761 (cdr frame)))))
2762 ((eq key ?e)
deaef289 2763 (setq subst (gud-find-expr)))
0f9c2d46
JB
2764 ((eq key ?a)
2765 (setq subst (gud-read-address)))
2766 ((eq key ?c)
2767 (setq subst
2768 (gud-find-class
2769 (if insource
2770 (buffer-file-name)
2771 (car frame))
2772 (if insource
2773 (save-restriction
2774 (widen)
2775 (+ (count-lines (point-min) (point))
2776 (if (bolp) 1 0)))
2777 (cdr frame)))))
2778 ((eq key ?p)
2779 (setq subst (if arg (int-to-string arg)))))
2780 (setq result (concat result (match-string 1 str) subst)))
2781 (setq str (substring str (match-end 2))))
2782 ;; There might be text left in STR when the loop ends.
2783 (concat result str)))
2784
2785(defun gud-read-address ()
2786 "Return a string containing the core-address found in the buffer at point."
2787 (save-match-data
2788 (save-excursion
2789 (let ((pt (point)) found begin)
2790 (setq found (if (search-backward "0x" (- pt 7) t) (point)))
2791 (cond
2792 (found (forward-char 2)
2793 (buffer-substring found
2794 (progn (re-search-forward "[^0-9a-f]")
2795 (forward-char -1)
2796 (point))))
2797 (t (setq begin (progn (re-search-backward "[^0-9]")
2798 (forward-char 1)
2799 (point)))
2800 (forward-char 1)
2801 (re-search-forward "[^0-9]")
2802 (forward-char -1)
2803 (buffer-substring begin (point))))))))
2804
2805(defun gud-call (fmt &optional arg)
2806 (let ((msg (gud-format-command fmt arg)))
2807 (message "Command: %s" msg)
2808 (sit-for 0)
2809 (gud-basic-call msg)))
2810
2811(defun gud-basic-call (command)
2812 "Invoke the debugger COMMAND displaying source in other window."
2813 (interactive)
2814 (gud-set-buffer)
2815 (let ((proc (get-buffer-process gud-comint-buffer)))
2816 (or proc (error "Current buffer has no process"))
2817 ;; Arrange for the current prompt to get deleted.
2818 (save-excursion
2819 (set-buffer gud-comint-buffer)
2820 (save-restriction
2821 (widen)
e3456652
NR
2822 (if (marker-position gud-delete-prompt-marker)
2823 ;; We get here when printing an expression.
2824 (goto-char gud-delete-prompt-marker)
2825 (goto-char (process-mark proc))
2826 (forward-line 0))
0f9c2d46
JB
2827 (if (looking-at comint-prompt-regexp)
2828 (set-marker gud-delete-prompt-marker (point)))
129adb6f 2829 (if (memq gud-minor-mode '(gdbmi gdba))
0f9c2d46
JB
2830 (apply comint-input-sender (list proc command))
2831 (process-send-string proc (concat command "\n")))))))
2832
2833(defun gud-refresh (&optional arg)
2834 "Fix up a possibly garbled display, and redraw the arrow."
2835 (interactive "P")
2836 (or gud-last-frame (setq gud-last-frame gud-last-last-frame))
2837 (gud-display-frame)
2838 (recenter arg))
2839\f
deaef289
NR
2840;; Code for parsing expressions out of C or Fortran code. The single entry
2841;; point is gud-find-expr, which tries to return an lvalue expression from
2842;; around point.
2843
c3f6b2b4 2844(defvar gud-find-expr-function 'gud-find-c-expr)
deaef289
NR
2845
2846(defun gud-find-expr (&rest args)
e3456652
NR
2847 (let ((expr (if (and transient-mark-mode mark-active)
2848 (buffer-substring (region-beginning) (region-end))
2849 (apply gud-find-expr-function args))))
2850 (save-match-data
2851 (if (string-match "\n" expr)
2852 (error "Expression must not include a newline"))
2853 (with-current-buffer gud-comint-buffer
2854 (save-excursion
2855 (goto-char (process-mark (get-buffer-process gud-comint-buffer)))
2856 (forward-line 0)
2857 (when (looking-at comint-prompt-regexp)
2858 (set-marker gud-delete-prompt-marker (point))
2859 (set-marker-insertion-type gud-delete-prompt-marker t))
011dd48c
NR
2860 (unless (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer)
2861 'jdb)
517045bc 2862 (insert (concat expr " = "))))))
e3456652 2863 expr))
deaef289
NR
2864
2865;; The next eight functions are hacked from gdbsrc.el by
0f9c2d46
JB
2866;; Debby Ayers <ayers@asc.slb.com>,
2867;; Rich Schaefer <schaefer@asc.slb.com> Schlumberger, Austin, Tx.
2868
2869(defun gud-find-c-expr ()
deaef289 2870 "Returns the expr that surrounds point."
0f9c2d46
JB
2871 (interactive)
2872 (save-excursion
deaef289
NR
2873 (let ((p (point))
2874 (expr (gud-innermost-expr))
2875 (test-expr (gud-prev-expr)))
0f9c2d46
JB
2876 (while (and test-expr (gud-expr-compound test-expr expr))
2877 (let ((prev-expr expr))
2878 (setq expr (cons (car test-expr) (cdr expr)))
2879 (goto-char (car expr))
2880 (setq test-expr (gud-prev-expr))
2881 ;; If we just pasted on the condition of an if or while,
2882 ;; throw it away again.
2883 (if (member (buffer-substring (car test-expr) (cdr test-expr))
2884 '("if" "while" "for"))
2885 (setq test-expr nil
2886 expr prev-expr))))
2887 (goto-char p)
2888 (setq test-expr (gud-next-expr))
2889 (while (gud-expr-compound expr test-expr)
2890 (setq expr (cons (car expr) (cdr test-expr)))
2891 (setq test-expr (gud-next-expr)))
2892 (buffer-substring (car expr) (cdr expr)))))
2893
2894(defun gud-innermost-expr ()
2895 "Returns the smallest expr that point is in; move point to beginning of it.
2896The expr is represented as a cons cell, where the car specifies the point in
2897the current buffer that marks the beginning of the expr and the cdr specifies
2898the character after the end of the expr."
2899 (let ((p (point)) begin end)
2900 (gud-backward-sexp)
2901 (setq begin (point))
2902 (gud-forward-sexp)
2903 (setq end (point))
2904 (if (>= p end)
2905 (progn
2906 (setq begin p)
2907 (goto-char p)
2908 (gud-forward-sexp)
2909 (setq end (point)))
2910 )
2911 (goto-char begin)
2912 (cons begin end)))
2913
2914(defun gud-backward-sexp ()
2915 "Version of `backward-sexp' that catches errors."
2916 (condition-case nil
2917 (backward-sexp)
2918 (error t)))
2919
2920(defun gud-forward-sexp ()
2921 "Version of `forward-sexp' that catches errors."
2922 (condition-case nil
2923 (forward-sexp)
2924 (error t)))
2925
2926(defun gud-prev-expr ()
2927 "Returns the previous expr, point is set to beginning of that expr.
2928The expr is represented as a cons cell, where the car specifies the point in
2929the current buffer that marks the beginning of the expr and the cdr specifies
2930the character after the end of the expr"
2931 (let ((begin) (end))
2932 (gud-backward-sexp)
2933 (setq begin (point))
2934 (gud-forward-sexp)
2935 (setq end (point))
2936 (goto-char begin)
2937 (cons begin end)))
2938
2939(defun gud-next-expr ()
2940 "Returns the following expr, point is set to beginning of that expr.
2941The expr is represented as a cons cell, where the car specifies the point in
2942the current buffer that marks the beginning of the expr and the cdr specifies
2943the character after the end of the expr."
2944 (let ((begin) (end))
2945 (gud-forward-sexp)
2946 (gud-forward-sexp)
2947 (setq end (point))
2948 (gud-backward-sexp)
2949 (setq begin (point))
2950 (cons begin end)))
2951
2952(defun gud-expr-compound-sep (span-start span-end)
2953 "Scan from SPAN-START to SPAN-END for punctuation characters.
2954If `->' is found, return `?.'. If `.' is found, return `?.'.
2955If any other punctuation is found, return `??'.
2956If no punctuation is found, return `? '."
691ccfad 2957 (let ((result ?\s)
0f9c2d46
JB
2958 (syntax))
2959 (while (< span-start span-end)
2960 (setq syntax (char-syntax (char-after span-start)))
2961 (cond
691ccfad 2962 ((= syntax ?\s) t)
0f9c2d46
JB
2963 ((= syntax ?.) (setq syntax (char-after span-start))
2964 (cond
2965 ((= syntax ?.) (setq result ?.))
2966 ((and (= syntax ?-) (= (char-after (+ span-start 1)) ?>))
2967 (setq result ?.)
2968 (setq span-start (+ span-start 1)))
2969 (t (setq span-start span-end)
2970 (setq result ??)))))
2971 (setq span-start (+ span-start 1)))
2972 result))
2973
2974(defun gud-expr-compound (first second)
2975 "Non-nil if concatenating FIRST and SECOND makes a single C expression.
2976The two exprs are represented as a cons cells, where the car
2977specifies the point in the current buffer that marks the beginning of the
2978expr and the cdr specifies the character after the end of the expr.
2979Link exprs of the form:
2980 Expr -> Expr
2981 Expr . Expr
2982 Expr (Expr)
2983 Expr [Expr]
2984 (Expr) Expr
2985 [Expr] Expr"
2986 (let ((span-start (cdr first))
2987 (span-end (car second))
2988 (syntax))
2989 (setq syntax (gud-expr-compound-sep span-start span-end))
2990 (cond
2991 ((= (car first) (car second)) nil)
2992 ((= (cdr first) (cdr second)) nil)
2993 ((= syntax ?.) t)
691ccfad 2994 ((= syntax ?\s)
deaef289
NR
2995 (setq span-start (char-after (- span-start 1)))
2996 (setq span-end (char-after span-end))
2997 (cond
2998 ((= span-start ?)) t)
2999 ((= span-start ?]) t)
3000 ((= span-end ?() t)
3001 ((= span-end ?[) t)
3002 (t nil)))
0f9c2d46
JB
3003 (t nil))))
3004
da567a4f
GM
3005
3006(declare-function c-langelem-sym "cc-defs" (langelem))
3007(declare-function c-langelem-pos "cc-defs" (langelem))
3008(declare-function syntax-symbol "gud" (x))
3009(declare-function syntax-point "gud" (x))
3010
0f9c2d46
JB
3011(defun gud-find-class (f line)
3012 "Find fully qualified class in file F at line LINE.
3013This function uses the `gud-jdb-classpath' (and optional
3014`gud-jdb-sourcepath') list(s) to derive a file
bb02b5ec 3015pathname relative to its classpath directory. The values in
0f9c2d46
JB
3016`gud-jdb-classpath' are assumed to have been converted to absolute
3017pathname standards using file-truename.
3018If F is visited by a buffer and its mode is CC-mode(Java),
3019syntactic information of LINE is used to find the enclosing (nested)
3020class string which is appended to the top level
3021class of the file (using s to separate nested class ids)."
3022 ;; Convert f to a standard representation and remove suffix
3023 (if (and gud-jdb-use-classpath (or gud-jdb-classpath gud-jdb-sourcepath))
3024 (save-match-data
3025 (let ((cplist (append gud-jdb-sourcepath gud-jdb-classpath))
3026 (fbuffer (get-file-buffer f))
339a559e 3027 syntax-symbol syntax-point class-found)
0f9c2d46 3028 (setq f (file-name-sans-extension (file-truename f)))
339a559e
NR
3029 ;; Syntax-symbol returns the symbol of the *first* element
3030 ;; in the syntactical analysis result list, syntax-point
3031 ;; returns the buffer position of same
3032 (fset 'syntax-symbol (lambda (x) (c-langelem-sym (car x))))
3033 (fset 'syntax-point (lambda (x) (c-langelem-pos (car x))))
0f9c2d46
JB
3034 ;; Search through classpath list for an entry that is
3035 ;; contained in f
3036 (while (and cplist (not class-found))
3037 (if (string-match (car cplist) f)
3038 (setq class-found
3039 (mapconcat 'identity
3040 (split-string
3041 (substring f (+ (match-end 0) 1))
3042 "/") ".")))
3043 (setq cplist (cdr cplist)))
3044 ;; if f is visited by a java(cc-mode) buffer, walk up the
3045 ;; syntactic information chain and collect any 'inclass
3046 ;; symbols until 'topmost-intro is reached to find out if
3047 ;; point is within a nested class
3048 (if (and fbuffer (equal (symbol-file 'java-mode) "cc-mode"))
3049 (save-excursion
3050 (set-buffer fbuffer)
3051 (let ((nclass) (syntax))
3052 ;; While the c-syntactic information does not start
3053 ;; with the 'topmost-intro symbol, there may be
3054 ;; nested classes...
3055 (while (not (eq 'topmost-intro
339a559e 3056 (syntax-symbol (c-guess-basic-syntax))))
0f9c2d46
JB
3057 ;; Check if the current position c-syntactic
3058 ;; analysis has 'inclass
3059 (setq syntax (c-guess-basic-syntax))
3060 (while
339a559e 3061 (and (not (eq 'inclass (syntax-symbol syntax)))
0f9c2d46
JB
3062 (cdr syntax))
3063 (setq syntax (cdr syntax)))
339a559e 3064 (if (eq 'inclass (syntax-symbol syntax))
0f9c2d46 3065 (progn
339a559e 3066 (goto-char (syntax-point syntax))
0f9c2d46
JB
3067 ;; Now we're at the beginning of a class
3068 ;; definition. Find class name
3069 (looking-at
3070 "[A-Za-z0-9 \t\n]*?class[ \t\n]+\\([^ \t\n]+\\)")
3071 (setq nclass
3072 (append (list (match-string-no-properties 1))
3073 nclass)))
3074 (setq syntax (c-guess-basic-syntax))
339a559e 3075 (while (and (not (syntax-point syntax)) (cdr syntax))
0f9c2d46 3076 (setq syntax (cdr syntax)))
339a559e 3077 (goto-char (syntax-point syntax))
0f9c2d46
JB
3078 ))
3079 (string-match (concat (car nclass) "$") class-found)
3080 (setq class-found
3081 (replace-match (mapconcat 'identity nclass "$")
3082 t t class-found)))))
3083 (if (not class-found)
3084 (message "gud-find-class: class for file %s not found!" f))
3085 class-found))
3086 ;; Not using classpath - try class/source association list
3087 (let ((class-found (rassoc f gud-jdb-class-source-alist)))
3088 (if class-found
3089 (car class-found)
3090 (message "gud-find-class: class for file %s not found in gud-jdb-class-source-alist!" f)
3091 nil))))
3092
0d2794e3 3093\f
0f9c2d46
JB
3094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3095;;; GDB script mode ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3096;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3097
3098(defvar gdb-script-mode-syntax-table
3099 (let ((st (make-syntax-table)))
3100 (modify-syntax-entry ?' "\"" st)
3101 (modify-syntax-entry ?# "<" st)
3102 (modify-syntax-entry ?\n ">" st)
3103 st))
3104
3105(defvar gdb-script-font-lock-keywords
c5209376
MY
3106 '(("^define\\s-+\\(\\(\\w\\|\\s_\\)+\\)" (1 font-lock-function-name-face))
3107 ("\\$\\(\\w+\\)" (1 font-lock-variable-name-face))
237d230e 3108 ("^\\s-*\\(\\w\\(\\w\\|\\s_\\)*\\)" (1 font-lock-keyword-face))))
0f9c2d46
JB
3109
3110(defvar gdb-script-font-lock-syntactic-keywords
3111 '(("^document\\s-.*\\(\n\\)" (1 "< b"))
402adebf 3112 ("^end\\>"
5b0be7fc
SM
3113 (0 (unless (eq (match-beginning 0) (point-min))
3114 ;; We change the \n in front, which is more difficult, but results
3115 ;; in better highlighting. If the doc is empty, the single \n is
3116 ;; both the beginning and the end of the docstring, which can't be
3117 ;; expressed in syntax-tables. Instead, we place the "> b" after
3118 ;; placing the "< b", so the start marker is overwritten by the
3119 ;; termination marker and in the end Emacs simply considers that
3120 ;; there's no docstring at all, which is fine.
3121 (put-text-property (1- (match-beginning 0)) (match-beginning 0)
3122 'syntax-table (eval-when-compile
3123 (string-to-syntax "> b")))
3124 ;; Make sure that rehighlighting the previous line won't erase our
db8af973 3125 ;; syntax-table property.
5b0be7fc
SM
3126 (put-text-property (1- (match-beginning 0)) (match-end 0)
3127 'font-lock-multiline t)
3128 nil)))))
0f9c2d46
JB
3129
3130(defun gdb-script-font-lock-syntactic-face (state)
3131 (cond
3132 ((nth 3 state) font-lock-string-face)
3133 ((nth 7 state) font-lock-doc-face)
3134 (t font-lock-comment-face)))
3135
3136(defvar gdb-script-basic-indent 2)
3137
3138(defun gdb-script-skip-to-head ()
3139 "We're just in front of an `end' and we need to go to its head."
582761a6 3140 (while (and (re-search-backward "^\\s-*\\(\\(end\\)\\|define\\|document\\|if\\|while\\|commands\\)\\>" nil 'move)
0f9c2d46
JB
3141 (match-end 2))
3142 (gdb-script-skip-to-head)))
3143
3144(defun gdb-script-calculate-indentation ()
3145 (cond
3146 ((looking-at "end\\>")
3147 (gdb-script-skip-to-head)
3148 (current-indentation))
3149 ((looking-at "else\\>")
3150 (while (and (re-search-backward "^\\s-*\\(if\\|\\(end\\)\\)\\>" nil 'move)
3151 (match-end 2))
3152 (gdb-script-skip-to-head))
3153 (current-indentation))
3154 (t
3155 (forward-comment (- (point-max)))
3156 (forward-line 0)
3157 (skip-chars-forward " \t")
3158 (+ (current-indentation)
582761a6 3159 (if (looking-at "\\(if\\|while\\|define\\|else\\|commands\\)\\>")
0f9c2d46
JB
3160 gdb-script-basic-indent 0)))))
3161
3162(defun gdb-script-indent-line ()
3163 "Indent current line of GDB script."
3164 (interactive)
3165 (if (and (eq (get-text-property (point) 'face) font-lock-doc-face)
3166 (save-excursion
3167 (forward-line 0)
3168 (skip-chars-forward " \t")
3169 (not (looking-at "end\\>"))))
3170 'noindent
3171 (let* ((savep (point))
3172 (indent (condition-case nil
3173 (save-excursion
3174 (forward-line 0)
3175 (skip-chars-forward " \t")
3176 (if (>= (point) savep) (setq savep nil))
3177 (max (gdb-script-calculate-indentation) 0))
3178 (error 0))))
3179 (if savep
3180 (save-excursion (indent-line-to indent))
3181 (indent-line-to indent)))))
3182
e375517f
MY
3183;; Derived from cfengine.el.
3184(defun gdb-script-beginning-of-defun ()
3185 "`beginning-of-defun' function for Gdb script mode.
3186Treats actions as defuns."
3187 (unless (<= (current-column) (current-indentation))
3188 (end-of-line))
3189 (if (re-search-backward "^define \\|^document " nil t)
3190 (beginning-of-line)
3191 (goto-char (point-min)))
3192 t)
3193
3194;; Derived from cfengine.el.
3195(defun gdb-script-end-of-defun ()
3196 "`end-of-defun' function for Gdb script mode.
3197Treats actions as defuns."
3198 (end-of-line)
3199 (if (re-search-forward "^end" nil t)
3200 (beginning-of-line)
3201 (goto-char (point-max)))
3202 t)
3203
b0fa5db6
DN
3204;; Besides .gdbinit, gdb documents other names to be usable for init
3205;; files, cross-debuggers can use something like
3206;; .PROCESSORNAME-gdbinit so that the host and target gdbinit files
3207;; don't interfere with each other.
0f9c2d46 3208;;;###autoload
b0fa5db6 3209(add-to-list 'auto-mode-alist '("/\\.[a-z0-9-]*gdbinit" . gdb-script-mode))
0f9c2d46
JB
3210
3211;;;###autoload
3212(define-derived-mode gdb-script-mode nil "GDB-Script"
bb02b5ec 3213 "Major mode for editing GDB scripts."
0f9c2d46
JB
3214 (set (make-local-variable 'comment-start) "#")
3215 (set (make-local-variable 'comment-start-skip) "#+\\s-*")
3216 (set (make-local-variable 'outline-regexp) "[ \t]")
3217 (set (make-local-variable 'imenu-generic-expression)
3218 '((nil "^define[ \t]+\\(\\w+\\)" 1)))
3219 (set (make-local-variable 'indent-line-function) 'gdb-script-indent-line)
e375517f
MY
3220 (set (make-local-variable 'beginning-of-defun-function)
3221 #'gdb-script-beginning-of-defun)
3222 (set (make-local-variable 'end-of-defun-function)
3223 #'gdb-script-end-of-defun)
0f9c2d46
JB
3224 (set (make-local-variable 'font-lock-defaults)
3225 '(gdb-script-font-lock-keywords nil nil ((?_ . "w")) nil
3226 (font-lock-syntactic-keywords
3227 . gdb-script-font-lock-syntactic-keywords)
3228 (font-lock-syntactic-face-function
3229 . gdb-script-font-lock-syntactic-face))))
3230
ce38ddb8
NR
3231\f
3232;;; tooltips for GUD
3233
3234;;; Customizable settings
760a716c 3235
760a716c
NR
3236(define-minor-mode gud-tooltip-mode
3237 "Toggle the display of GUD tooltips."
3238 :global t
3239 :group 'gud
3240 :group 'tooltip
3241 (require 'tooltip)
3242 (if gud-tooltip-mode
3243 (progn
3244 (add-hook 'change-major-mode-hook 'gud-tooltip-change-major-mode)
3245 (add-hook 'pre-command-hook 'tooltip-hide)
3246 (add-hook 'tooltip-hook 'gud-tooltip-tips)
3247 (define-key global-map [mouse-movement] 'gud-tooltip-mouse-motion))
3248 (unless tooltip-mode (remove-hook 'pre-command-hook 'tooltip-hide)
3249 (remove-hook 'change-major-mode-hook 'gud-tooltip-change-major-mode)
3250 (remove-hook 'tooltip-hook 'gud-tooltip-tips)
3251 (define-key global-map [mouse-movement] 'ignore)))
3252 (gud-tooltip-activate-mouse-motions-if-enabled)
afe28525
NR
3253 (if (and gud-comint-buffer
3254 (buffer-name gud-comint-buffer); gud-comint-buffer might be killed
3255 (memq (buffer-local-value 'gud-minor-mode gud-comint-buffer)
3256 '(gdbmi gdba)))
760a716c
NR
3257 (if gud-tooltip-mode
3258 (progn
3259 (dolist (buffer (buffer-list))
3260 (unless (eq buffer gud-comint-buffer)
3261 (with-current-buffer buffer
3262 (when (and (memq gud-minor-mode '(gdbmi gdba))
3263 (not (string-match "\\`\\*.+\\*\\'"
3264 (buffer-name))))
3265 (make-local-variable 'gdb-define-alist)
3266 (gdb-create-define-alist)
3267 (add-hook 'after-save-hook
3268 'gdb-create-define-alist nil t))))))
3269 (kill-local-variable 'gdb-define-alist)
3270 (remove-hook 'after-save-hook 'gdb-create-define-alist t))))
3271
cd6ef82d
GM
3272(define-obsolete-variable-alias 'tooltip-gud-modes
3273 'gud-tooltip-modes "22.1")
3274
ff239a7e
NR
3275(defcustom gud-tooltip-modes '(gud-mode c-mode c++-mode fortran-mode
3276 python-mode)
760a716c 3277 "List of modes for which to enable GUD tooltips."
ce38ddb8 3278 :type 'sexp
760a716c 3279 :group 'gud
ce38ddb8
NR
3280 :group 'tooltip)
3281
cd6ef82d
GM
3282(define-obsolete-variable-alias 'tooltip-gud-display
3283 'gud-tooltip-display "22.1")
3284
ce38ddb8
NR
3285(defcustom gud-tooltip-display
3286 '((eq (tooltip-event-buffer gud-tooltip-event)
3287 (marker-buffer gud-overlay-arrow-position)))
3288 "List of forms determining where GUD tooltips are displayed.
3289
3290Forms in the list are combined with AND. The default is to display
3291only tooltips in the buffer containing the overlay arrow."
3292 :type 'sexp
760a716c 3293 :group 'gud
ce38ddb8
NR
3294 :group 'tooltip)
3295
3296(defcustom gud-tooltip-echo-area nil
3297 "Use the echo area instead of frames for GUD tooltips."
3298 :type 'boolean
760a716c 3299 :group 'gud
ce38ddb8
NR
3300 :group 'tooltip)
3301
ce38ddb8
NR
3302;;; Reacting on mouse movements
3303
3304(defun gud-tooltip-change-major-mode ()
3305 "Function added to `change-major-mode-hook' when tooltip mode is on."
3306 (add-hook 'post-command-hook 'gud-tooltip-activate-mouse-motions-if-enabled))
3307
3308(defun gud-tooltip-activate-mouse-motions-if-enabled ()
3309 "Reconsider for all buffers whether mouse motion events are desired."
3310 (remove-hook 'post-command-hook
3311 'gud-tooltip-activate-mouse-motions-if-enabled)
3312 (dolist (buffer (buffer-list))
3313 (save-excursion
3314 (set-buffer buffer)
3315 (if (and gud-tooltip-mode
3316 (memq major-mode gud-tooltip-modes))
3317 (gud-tooltip-activate-mouse-motions t)
3318 (gud-tooltip-activate-mouse-motions nil)))))
3319
3320(defvar gud-tooltip-mouse-motions-active nil
3321 "Locally t in a buffer if tooltip processing of mouse motion is enabled.")
3322
bd9b3169
NR
3323;; We don't set track-mouse globally because this is a big redisplay
3324;; problem in buffers having a pre-command-hook or such installed,
3325;; which does a set-buffer, like the summary buffer of Gnus. Calling
3326;; set-buffer prevents redisplay optimizations, so every mouse motion
3327;; would be accompanied by a full redisplay.
3328
ce38ddb8
NR
3329(defun gud-tooltip-activate-mouse-motions (activatep)
3330 "Activate/deactivate mouse motion events for the current buffer.
3331ACTIVATEP non-nil means activate mouse motion events."
3332 (if activatep
3333 (progn
3334 (make-local-variable 'gud-tooltip-mouse-motions-active)
3335 (setq gud-tooltip-mouse-motions-active t)
3336 (make-local-variable 'track-mouse)
3337 (setq track-mouse t))
3338 (when gud-tooltip-mouse-motions-active
3339 (kill-local-variable 'gud-tooltip-mouse-motions-active)
3340 (kill-local-variable 'track-mouse))))
3341
aa360da1
GM
3342(defvar tooltip-last-mouse-motion-event)
3343(declare-function tooltip-hide "tooltip" (&optional ignored-arg))
3344(declare-function tooltip-start-delayed-tip "tooltip" ())
3345
ce38ddb8
NR
3346(defun gud-tooltip-mouse-motion (event)
3347 "Command handler for mouse movement events in `global-map'."
3348 (interactive "e")
3349 (tooltip-hide)
3350 (when (car (mouse-pixel-position))
3351 (setq tooltip-last-mouse-motion-event (copy-sequence event))
3352 (tooltip-start-delayed-tip)))
3353
3354;;; Tips for `gud'
3355
3356(defvar gud-tooltip-original-filter nil
3357 "Process filter to restore after GUD output has been received.")
3358
3359(defvar gud-tooltip-dereference nil
3360 "Non-nil means print expressions with a `*' in front of them.
3361For C this would dereference a pointer expression.")
3362
3363(defvar gud-tooltip-event nil
3364 "The mouse movement event that led to a tooltip display.
bb02b5ec 3365This event can be examined by forms in `gud-tooltip-display'.")
ce38ddb8 3366
bfc50337 3367(defun gud-tooltip-dereference (&optional arg)
cf84aa19 3368 "Toggle whether tooltips should show `* expr' or `expr'.
e7f767c2 3369With arg, dereference expr if ARG is positive, otherwise do not derereference."
cf84aa19
NR
3370 (interactive "P")
3371 (setq gud-tooltip-dereference
3372 (if (null arg)
3373 (not gud-tooltip-dereference)
3374 (> (prefix-numeric-value arg) 0)))
3375 (message "Dereferencing is now %s."
3376 (if gud-tooltip-dereference "on" "off")))
ce38ddb8
NR
3377
3378(define-obsolete-function-alias 'tooltip-gud-toggle-dereference
cf84aa19 3379 'gud-tooltip-dereference "22.1")
aa360da1
GM
3380(defvar tooltip-use-echo-area)
3381(declare-function tooltip-show "tooltip" (text &optional use-echo-area))
3382(declare-function tooltip-strip-prompt "tooltip" (process output))
ce38ddb8 3383
ce38ddb8
NR
3384; This will only display data that comes in one chunk.
3385; Larger arrays (say 400 elements) are displayed in
dce4ed29 3386; the tooltip incompletely and spill over into the gud buffer.
ce38ddb8
NR
3387; Switching the process-filter creates timing problems and
3388; it may be difficult to do better. Using annotations as in
3389; gdb-ui.el gets round this problem.
3390(defun gud-tooltip-process-output (process output)
3391 "Process debugger output and show it in a tooltip window."
3392 (set-process-filter process gud-tooltip-original-filter)
3393 (tooltip-show (tooltip-strip-prompt process output)
dce4ed29 3394 (or gud-tooltip-echo-area tooltip-use-echo-area)))
ce38ddb8
NR
3395
3396(defun gud-tooltip-print-command (expr)
cf84aa19 3397 "Return a suitable command to print the expression EXPR."
ce38ddb8 3398 (case gud-minor-mode
823d2235
NR
3399 (gdba (concat "server print " expr))
3400 ((dbx gdbmi) (concat "print " expr))
ff239a7e
NR
3401 ((xdb pdb) (concat "p " expr))
3402 (sdb (concat expr "/"))))
ce38ddb8 3403
da567a4f 3404(declare-function gdb-enqueue-input "gdb-ui" (item))
aa360da1
GM
3405(declare-function tooltip-expr-to-print "tooltip" (event))
3406(declare-function tooltip-event-buffer "tooltip" (event))
da567a4f 3407
ce38ddb8
NR
3408(defun gud-tooltip-tips (event)
3409 "Show tip for identifier or selection under the mouse.
3410The mouse must either point at an identifier or inside a selected
bb02b5ec
JB
3411region for the tip window to be shown. If `gud-tooltip-dereference' is t,
3412add a `*' in front of the printed expression. In the case of a C program
ce38ddb8
NR
3413controlled by GDB, show the associated #define directives when program is
3414not executing.
3415
3416This function must return nil if it doesn't handle EVENT."
3417 (let (process)
3418 (when (and (eventp event)
3419 gud-tooltip-mode
ce38ddb8 3420 gud-comint-buffer
135f440c 3421 (buffer-name gud-comint-buffer); might be killed
ce38ddb8
NR
3422 (setq process (get-buffer-process gud-comint-buffer))
3423 (posn-point (event-end event))
3424 (or (and (eq gud-minor-mode 'gdba) (not gdb-active-process))
3425 (progn (setq gud-tooltip-event event)
3426 (eval (cons 'and gud-tooltip-display)))))
3427 (let ((expr (tooltip-expr-to-print event)))
3428 (when expr
3429 (if (and (eq gud-minor-mode 'gdba)
3430 (not gdb-active-process))
3431 (progn
bcb96719 3432 (with-current-buffer (tooltip-event-buffer event)
ce38ddb8
NR
3433 (let ((define-elt (assoc expr gdb-define-alist)))
3434 (unless (null define-elt)
dce4ed29
NR
3435 (tooltip-show
3436 (cdr define-elt)
3437 (or gud-tooltip-echo-area tooltip-use-echo-area))
ce38ddb8 3438 expr))))
cf84aa19
NR
3439 (when gud-tooltip-dereference
3440 (setq expr (concat "*" expr)))
ce38ddb8 3441 (let ((cmd (gud-tooltip-print-command expr)))
2b9688f6
NR
3442 (when (and gud-tooltip-mode (eq gud-minor-mode 'gdb))
3443 (gud-tooltip-mode -1)
3444 (message-box "Using GUD tooltips in this mode is unsafe\n\
3445so they have been disabled."))
ce38ddb8 3446 (unless (null cmd) ; CMD can be nil if unknown debugger
df94fa1e
NR
3447 (if (memq gud-minor-mode '(gdba gdbmi))
3448 (if gdb-macro-info
3449 (gdb-enqueue-input
3450 (list (concat
3451 gdb-server-prefix "macro expand " expr "\n")
3452 `(lambda () (gdb-tooltip-print-1 ,expr))))
3453 (gdb-enqueue-input
e6f0d1c8
NR
3454 (list (concat cmd "\n")
3455 `(lambda () (gdb-tooltip-print ,expr)))))
ce38ddb8
NR
3456 (setq gud-tooltip-original-filter (process-filter process))
3457 (set-process-filter process 'gud-tooltip-process-output)
3458 (gud-basic-call cmd))
3459 expr))))))))
3460
0f9c2d46
JB
3461(provide 'gud)
3462
cbee283d 3463;; arch-tag: 6d990948-df65-461a-be39-1c7fb83ac4c4
0f9c2d46 3464;;; gud.el ends here