1Tcl_TraceVar(3) Tcl Library Procedures Tcl_TraceVar(3)
2
3
4
5______________________________________________________________________________
6
8 Tcl_TraceVar, Tcl_TraceVar2, Tcl_UntraceVar, Tcl_UntraceVar2, Tcl_Var‐
9 TraceInfo, Tcl_VarTraceInfo2 - monitor accesses to a variable
10
12 #include <tcl.h>
13
14 int
15 Tcl_TraceVar(interp, varName, flags, proc, clientData)
16
17 int
18 Tcl_TraceVar2(interp, name1, name2, flags, proc, clientData)
19
20 Tcl_UntraceVar(interp, varName, flags, proc, clientData)
21
22 Tcl_UntraceVar2(interp, name1, name2, flags, proc, clientData)
23
24 ClientData
25 Tcl_VarTraceInfo(interp, varName, flags, proc, prevClientData)
26
27 ClientData
28 Tcl_VarTraceInfo2(interp, name1, name2, flags, proc, prevClientData)
29
31 Tcl_Interp *interp (in) Interpreter containing
32 variable.
33
34 CONST char *varName (in) Name of variable. May
35 refer to a scalar vari‐
36 able, to an array vari‐
37 able with no index, or to
38 an array variable with a
39 parenthesized index.
40
41 int flags (in) OR-ed combination of the
42 values TCL_TRACE_READS,
43 TCL_TRACE_WRITES,
44 TCL_TRACE_UNSETS,
45 TCL_TRACE_ARRAY,
46 TCL_GLOBAL_ONLY,
47 TCL_NAMESPACE_ONLY,
48 TCL_TRACE_RESULT_DYNAMIC
49 and
50 TCL_TRACE_RESULT_OBJECT.
51 Not all flags are used by
52 all procedures. See
53 below for more informa‐
54 tion.
55
56 Tcl_VarTraceProc *proc (in) Procedure to invoke when‐
57 ever one of the traced
58 operations occurs.
59
60 ClientData clientData (in) Arbitrary one-word value
61 to pass to proc.
62
63 CONST char *name1 (in) Name of scalar or array
64 variable (without array
65 index).
66
67 CONST char *name2 (in) For a trace on an element
68 of an array, gives the
69 index of the element.
70 For traces on scalar
71 variables or on whole
72 arrays, is NULL.
73
74 ClientData prevClientData (in) If non-NULL, gives last
75 value returned by
76 Tcl_VarTraceInfo or
77 Tcl_VarTraceInfo2, so
78 this call will return
79 information about next
80 trace. If NULL, this
81 call will return informa‐
82 tion about first trace.
83_________________________________________________________________
84
85
87 Tcl_TraceVar allows a C procedure to monitor and control access to a
88 Tcl variable, so that the C procedure is invoked whenever the variable
89 is read or written or unset. If the trace is created successfully then
90 Tcl_TraceVar returns TCL_OK. If an error occurred (e.g. varName speci‐
91 fies an element of an array, but the actual variable isn't an array)
92 then TCL_ERROR is returned and an error message is left in the inter‐
93 preter's result.
94
95 The flags argument to Tcl_TraceVar indicates when the trace procedure
96 is to be invoked and provides information for setting up the trace. It
97 consists of an OR-ed combination of any of the following values:
98
99 TCL_GLOBAL_ONLY
100 Normally, the variable will be looked up at the current level of
101 procedure call; if this bit is set then the variable will be
102 looked up at global level, ignoring any active procedures.
103
104 TCL_NAMESPACE_ONLY
105 Normally, the variable will be looked up at the current level of
106 procedure call; if this bit is set then the variable will be
107 looked up in the current namespace, ignoring any active proce‐
108 dures.
109
110 TCL_TRACE_READS
111 Invoke proc whenever an attempt is made to read the variable.
112
113 TCL_TRACE_WRITES
114 Invoke proc whenever an attempt is made to modify the variable.
115
116 TCL_TRACE_UNSETS
117 Invoke proc whenever the variable is unset. A variable may be
118 unset either explicitly by an unset command, or implicitly when
119 a procedure returns (its local variables are automatically
120 unset) or when the interpreter is deleted (all variables are
121 automatically unset).
122
123 TCL_TRACE_ARRAY
124 Invoke proc whenever the array command is invoked. This gives
125 the trace procedure a chance to update the array before array
126 names or array get is called. Note that this is called before
127 an array set, but that will trigger write traces. │
128
129 TCL_TRACE_RESULT_DYNAMIC │
130 The result of invoking the proc is a dynamically allocated │
131 string that will be released by the Tcl library via a call to │
132 ckfree. Must not be specified at the same time as │
133 TCL_TRACE_RESULT_OBJECT. │
134
135 TCL_TRACE_RESULT_OBJECT │
136 The result of invoking the proc is a Tcl_Obj* (cast to a char*) │
137 with a reference count of at least one. The ownership of that │
138 reference will be transferred to the Tcl core for release (when │
139 the core has finished with it) via a call to Tcl_DecrRefCount. │
140 Must not be specified at the same time as │
141 TCL_TRACE_RESULT_DYNAMIC.
142
143 Whenever one of the specified operations occurs on the variable, proc
144 will be invoked. It should have arguments and result that match the
145 type Tcl_VarTraceProc:
146 typedef char *Tcl_VarTraceProc(
147 ClientData clientData,
148 Tcl_Interp *interp,
149 char *name1,
150 char *name2,
151 int flags);
152 The clientData and interp parameters will have the same values as those
153 passed to Tcl_TraceVar when the trace was created. ClientData typi‐
154 cally points to an application-specific data structure that describes
155 what to do when proc is invoked. Name1 and name2 give the name of the
156 traced variable in the normal two-part form (see the description of
157 Tcl_TraceVar2 below for details). Flags is an OR-ed combination of
158 bits providing several pieces of information. One of the bits
159 TCL_TRACE_READS, TCL_TRACE_WRITES, TCL_TRACE_ARRAY, or TCL_TRACE_UNSETS
160 will be set in flags to indicate which operation is being performed on
161 the variable. The bit TCL_GLOBAL_ONLY will be set whenever the vari‐
162 able being accessed is a global one not accessible from the current
163 level of procedure call: the trace procedure will need to pass this
164 flag back to variable-related procedures like Tcl_GetVar if it attempts
165 to access the variable. The bit TCL_NAMESPACE_ONLY will be set when‐
166 ever the variable being accessed is a namespace one not accessible from
167 the current level of procedure call: the trace procedure will need to
168 pass this flag back to variable-related procedures like Tcl_GetVar if
169 it attempts to access the variable. The bit TCL_TRACE_DESTROYED will
170 be set in flags if the trace is about to be destroyed; this informa‐
171 tion may be useful to proc so that it can clean up its own internal
172 data structures (see the section TCL_TRACE_DESTROYED below for more
173 details). Lastly, the bit TCL_INTERP_DESTROYED will be set if the
174 entire interpreter is being destroyed. When this bit is set, proc must
175 be especially careful in the things it does (see the section
176 TCL_INTERP_DESTROYED below). The trace procedure's return value should
177 normally be NULL; see ERROR RETURNS below for information on other
178 possibilities.
179
180 Tcl_UntraceVar may be used to remove a trace. If the variable speci‐
181 fied by interp, varName, and flags has a trace set with flags, proc,
182 and clientData, then the corresponding trace is removed. If no such
183 trace exists, then the call to Tcl_UntraceVar has no effect. The same
184 bits are valid for flags as for calls to Tcl_TraceVar.
185
186 Tcl_VarTraceInfo may be used to retrieve information about traces set
187 on a given variable. The return value from Tcl_VarTraceInfo is the
188 clientData associated with a particular trace. The trace must be on
189 the variable specified by the interp, varName, and flags arguments
190 (only the TCL_GLOBAL_ONLY and TCL_NAMESPACE_ONLY bits from flags is
191 used; other bits are ignored) and its trace procedure must the same as
192 the proc argument. If the prevClientData argument is NULL then the
193 return value corresponds to the first (most recently created) matching
194 trace, or NULL if there are no matching traces. If the prevClientData
195 argument isn't NULL, then it should be the return value from a previous
196 call to Tcl_VarTraceInfo. In this case, the new return value will cor‐
197 respond to the next matching trace after the one whose clientData
198 matches prevClientData, or NULL if no trace matches prevClientData or
199 if there are no more matching traces after it. This mechanism makes it
200 possible to step through all of the traces for a given variable that
201 have the same proc.
202
203
205 The procedures Tcl_TraceVar2, Tcl_UntraceVar2, and Tcl_VarTraceInfo2
206 are identical to Tcl_TraceVar, Tcl_UntraceVar, and Tcl_VarTraceInfo,
207 respectively, except that the name of the variable consists of two
208 parts. Name1 gives the name of a scalar variable or array, and name2
209 gives the name of an element within an array. When name2 is NULL, │
210 name1 may contain both an array and an element name: if the name con‐ │
211 tains an open parenthesis and ends with a close parenthesis, then the │
212 value between the parentheses is treated as an element name (which can │
213 have any string value) and the characters before the first open paren‐ │
214 thesis are treated as the name of an array variable. If name2 is NULL │
215 and name1 does not refer to an array element it means that either the
216 variable is a scalar or the trace is to be set on the entire array
217 rather than an individual element (see WHOLE-ARRAY TRACES below for
218 more information).
219
220
221
223 During read, write, and array traces, the trace procedure can read,
224 write, or unset the traced variable using Tcl_GetVar2, Tcl_SetVar2, and
225 other procedures. While proc is executing, traces are temporarily dis‐
226 abled for the variable, so that calls to Tcl_GetVar2 and Tcl_SetVar2
227 will not cause proc or other trace procedures to be invoked again.
228 Disabling only occurs for the variable whose trace procedure is active;
229 accesses to other variables will still be traced. However, if a vari‐
230 able is unset during a read or write trace then unset traces will be
231 invoked.
232
233 During unset traces the variable has already been completely expunged.
234 It is possible for the trace procedure to read or write the variable,
235 but this will be a new version of the variable. Traces are not dis‐
236 abled during unset traces as they are for read and write traces, but
237 existing traces have been removed from the variable before any trace
238 procedures are invoked. If new traces are set by unset trace proce‐
239 dures, these traces will be invoked on accesses to the variable by the
240 trace procedures.
241
242
244 When read tracing has been specified for a variable, the trace proce‐
245 dure will be invoked whenever the variable's value is read. This
246 includes set Tcl commands, $-notation in Tcl commands, and invocations
247 of the Tcl_GetVar and Tcl_GetVar2 procedures. Proc is invoked just
248 before the variable's value is returned. It may modify the value of
249 the variable to affect what is returned by the traced access. If it
250 unsets the variable then the access will return an error just as if the
251 variable never existed.
252
253 When write tracing has been specified for a variable, the trace proce‐
254 dure will be invoked whenever the variable's value is modified. This
255 includes set commands, commands that modify variables as side effects
256 (such as catch and scan), and calls to the Tcl_SetVar and Tcl_SetVar2
257 procedures). Proc will be invoked after the variable's value has been
258 modified, but before the new value of the variable has been returned.
259 It may modify the value of the variable to override the change and to
260 determine the value actually returned by the traced access. If it
261 deletes the variable then the traced access will return an empty
262 string.
263
264 When array tracing has been specified, the trace procedure will be
265 invoked at the beginning of the array command implementation, before
266 any of the operations like get, set, or names have been invoked. The
267 trace procedure can modify the array elements with Tcl_SetVar and
268 Tcl_SetVar2.
269
270 When unset tracing has been specified, the trace procedure will be
271 invoked whenever the variable is destroyed. The traces will be called
272 after the variable has been completely unset.
273
274
276 If a call to Tcl_TraceVar or Tcl_TraceVar2 specifies the name of an
277 array variable without an index into the array, then the trace will be
278 set on the array as a whole. This means that proc will be invoked
279 whenever any element of the array is accessed in the ways specified by
280 flags. When an array is unset, a whole-array trace will be invoked
281 just once, with name1 equal to the name of the array and name2 NULL;
282 it will not be invoked once for each element.
283
284
286 It is possible for multiple traces to exist on the same variable. When
287 this happens, all of the trace procedures will be invoked on each
288 access, in order from most-recently-created to least-recently-created.
289 When there exist whole-array traces for an array as well as traces on
290 individual elements, the whole-array traces are invoked before the
291 individual-element traces. If a read or write trace unsets the vari‐
292 able then all of the unset traces will be invoked but the remainder of
293 the read and write traces will be skipped.
294
295
297 Under normal conditions trace procedures should return NULL, indicating
298 successful completion. If proc returns a non-NULL value it signifies
299 that an error occurred. The return value must be a pointer to a static
300 character string containing an error message, unless (exactly one of) │
301 the TCL_TRACE_RESULT_DYNAMIC and TCL_TRACE_RESULT_OBJECT flags is set, │
302 which specify that the result is either a dynamic string (to be │
303 released with ckfree) or a Tcl_Obj* (cast to char* and to be released │
304 with Tcl_DecrRefCount) containing the error message. If a trace proce‐
305 dure returns an error, no further traces are invoked for the access and
306 the traced access aborts with the given message. Trace procedures can
307 use this facility to make variables read-only, for example (but note
308 that the value of the variable will already have been modified before
309 the trace procedure is called, so the trace procedure will have to
310 restore the correct value).
311
312 The return value from proc is only used during read and write tracing.
313 During unset traces, the return value is ignored and all relevant trace
314 procedures will always be invoked.
315
316
318 A trace procedure can be called at any time, even when there is a par‐
319 tially-formed result in the interpreter's result area. If the trace
320 procedure does anything that could damage this result (such as calling
321 Tcl_Eval) then it must save the original values of the interpreter's
322 result and freeProc fields and restore them before it returns.
323
324
326 It is legal to set a trace on an undefined variable. The variable will
327 still appear to be undefined until the first time its value is set. If
328 an undefined variable is traced and then unset, the unset will fail
329 with an error (``no such variable''), but the trace procedure will
330 still be invoked.
331
332
334 In an unset callback to proc, the TCL_TRACE_DESTROYED bit is set in
335 flags if the trace is being removed as part of the deletion. Traces on
336 a variable are always removed whenever the variable is deleted; the
337 only time TCL_TRACE_DESTROYED isn't set is for a whole-array trace
338 invoked when only a single element of an array is unset.
339
340
342 When an interpreter is destroyed, unset traces are called for all of
343 its variables. The TCL_INTERP_DESTROYED bit will be set in the flags
344 argument passed to the trace procedures. Trace procedures must be
345 extremely careful in what they do if the TCL_INTERP_DESTROYED bit is
346 set. It is not safe for the procedures to invoke any Tcl procedures on
347 the interpreter, since its state is partially deleted. All that trace
348 procedures should do under these circumstances is to clean up and free
349 their own internal data structures.
350
351
353 Tcl doesn't do any error checking to prevent trace procedures from mis‐
354 using the interpreter during traces with TCL_INTERP_DESTROYED set.
355
356 Array traces are not yet integrated with the Tcl "info exists" command,
357 nor is there Tcl-level access to array traces.
358
359
361 clientData, trace, variable
362
363
364
365Tcl 7.4 Tcl_TraceVar(3)