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