1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
|
# Watch window for Insight.
# Copyright (C) 2002, 2003 Red Hat
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License (GPL) as published by
# the Free Software Foundation; either version 2 of the License, or (at
# your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# ----------------------------------------------------------------------
# Implements watch windows for gdb.
# ----------------------------------------------------------------------
itcl::class WatchWin {
inherit EmbeddedWin GDBWin
# ------------------------------------------------------------------
# CONSTRUCTOR - create new watch window
# ------------------------------------------------------------------
constructor {args} {
debug
gdbtk_busy
build_win $itk_interior
gdbtk_idle
add_hook gdb_no_inferior_hook "$this no_inferior"
add_hook gdb_clear_file_hook [code $this clear_file]
add_hook file_changed_hook [code $this clear_file]
}
# ------------------------------------------------------------------
# PUBLIC METHOD: busy - BusyEvent handler
# Disable all ui elements that could affect gdb's state
# ------------------------------------------------------------------
method busy {event} {
debug
set Running 1
cursor watch
}
# Re-enable the UI
method idle {event} {
debug
set Running 0
cursor {}
}
# ------------------------------------------------------------------
# METHOD: no_inferior
# Reset this object.
# ------------------------------------------------------------------
method no_inferior {} {
debug
cursor {}
set Running 0
}
# ------------------------------------------------------------------
# METHOD: cursor - change the toplevel's cursor
# ------------------------------------------------------------------
method cursor {what} {
[winfo toplevel [namespace tail $this]] configure -cursor $what
::update idletasks
}
# ------------------------------------------------------------------
# METHOD: build_win - build window for watch.
# ------------------------------------------------------------------
method build_win {f} {
#debug "$f"
set f [::frame $f.f]
set treeFrame [frame $f.top]
set entryFrame [frame $f.expr]
set tree [VarTree $treeFrame.tree]
pack $tree -expand yes -fill both
set Entry [entry $entryFrame.ent -font global/fixed]
button $entryFrame.but -text "Add Watch" -command [code $this validateEntry]
pack $f -fill both -expand yes
grid $entryFrame.ent -row 0 -column 0 -sticky news -padx 2
grid $entryFrame.but -row 0 -column 1 -padx 2
grid columnconfigure $entryFrame 0 -weight 1
grid columnconfigure $entryFrame 1
grid $treeFrame -row 0 -column 0 -sticky news
grid $entryFrame -row 1 -column 0 -padx 5 -pady 5 -sticky news
grid columnconfigure $f 0 -weight 1
grid rowconfigure $f 0 -weight 1
window_name "Watch"
::update idletasks
# Binding for the entry
bind $entryFrame.ent <Return> "$entryFrame.but flash; $entryFrame.but invoke"
}
method validateEntry {} {
if {!$Running} {
debug "Getting entry value...."
set variable [$Entry get]
debug "Got $variable, going to add"
set ok [add $variable]
debug "Added... with ok: $ok"
$Entry delete 0 end
}
}
# ------------------------------------------------------------------
# METHOD: clear_file - Clear out state so that a new executable
# can be loaded. For WatchWins, this means deleting
# the Watched list.
# ------------------------------------------------------------------
method clear_file {} {
debug
set Watched {}
}
# ------------------------------------------------------------------
# DESTRUCTOR - delete watch window
# ------------------------------------------------------------------
destructor {
debug
set tree {}
# Remove this window and all hooks
remove_hook gdb_no_inferior_hook "$this no_inferior"
remove_hook gdb_clear_file_hook [code $this clear_file]
remove_hook file_changed_hook [code $this clear_file]
foreach var $Watched {
$var delete
}
}
method remove {entry} {
debug $entry
# Remove this entry from the list of watched variables
set Watched [lremove $Watched $entry]
$entry remove
$entry delete
}
method update {event} {
$tree update
}
# ------------------------------------------------------------------
# METHOD: add - add a variable to the watch window
# ------------------------------------------------------------------
method add {name} {
debug "Trying to add \"$name\" to watch"
# Strip all the junk after the first \n
set var [split $name \n]
set var [lindex $var 0]
set var [split $var =]
set var [lindex $var 0]
# Strip out leading/trailing +, -, ;, spaces, commas
set var [string trim $var +-\;\ \r\n,]
# Make sure that we have a valid variable
set err [catch {gdb_cmd "set variable $var"} errTxt]
if {$err} {
dbug W "ERROR adding variable: $errTxt"
ManagedWin::open WarningDlg -transient \
-over $this -message [list $errTxt] -ignorable "watchvar"
} else {
if {[string index $var 0] == "\$"} {
# We must make a special attempt at verifying convenience
# variables.. Specifically, these are printed as "void"
# when they are not defined. So if a user type "$_I_made_tbis_up",
# gdb responds with the value "void" instead of an error
catch {gdb_cmd "p $var"} msg
set msg [split $msg =]
set msg [string trim [lindex $msg 1] \ \r\n]
if {$msg == "void"} {
return 0
}
}
debug "In add, going to add $name"
# make one last attempt to get errors
set err [catch {set foo($name) 1}]
debug "err1=$err"
set err [expr {$err + [catch {expr {$foo($name) + 1}}]}]
debug "err2=$err"
if {!$err} {
set var [gdb_variable create -expr $name]
debug "var=$var"
$tree add $var
lappend Watched $var
return 1
}
}
return 0
}
protected variable Entry
protected variable Watched {}
protected variable tree
protected variable Running
}
|