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