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