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