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