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