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