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