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