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