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