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