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