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