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