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