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