TraceVar.3
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:16k
源码类别:

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1989-1993 The Regents of the University of California.
  3. '" Copyright (c) 1994-1996 Sun Microsystems, Inc.
  4. '"
  5. '" See the file "license.terms" for information on usage and redistribution
  6. '" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  7. '" 
  8. '" RCS: @(#) $Id: TraceVar.3,v 1.8 2002/08/05 03:24:39 dgp Exp $
  9. '" 
  10. .so man.macros
  11. .TH Tcl_TraceVar 3 7.4 Tcl "Tcl Library Procedures"
  12. .BS
  13. .SH NAME
  14. Tcl_TraceVar, Tcl_TraceVar2, Tcl_UntraceVar, Tcl_UntraceVar2, Tcl_VarTraceInfo, Tcl_VarTraceInfo2 - monitor accesses to a variable
  15. .SH SYNOPSIS
  16. .nf
  17. fB#include <tcl.h>fR
  18. .sp
  19. int
  20. fBTcl_TraceVar(fIinterp, varName, flags, proc, clientDatafB)fR
  21. .sp
  22. int
  23. fBTcl_TraceVar2(fIinterp, name1, name2, flags, proc, clientDatafB)fR
  24. .sp
  25. fBTcl_UntraceVar(fIinterp, varName, flags, proc, clientDatafB)fR
  26. .sp
  27. fBTcl_UntraceVar2(fIinterp, name1, name2, flags, proc, clientDatafB)fR
  28. .sp
  29. ClientData
  30. fBTcl_VarTraceInfo(fIinterp, varName, flags, proc, prevClientDatafB)fR
  31. .sp
  32. ClientData
  33. fBTcl_VarTraceInfo2(fIinterp, name1, name2, flags, proc, prevClientDatafB)fR
  34. .SH ARGUMENTS
  35. .AS Tcl_VarTraceProc prevClientData
  36. .AP Tcl_Interp *interp in
  37. Interpreter containing variable.
  38. .AP "CONST char" *varName in
  39. Name of variable.  May refer to a scalar variable, to
  40. an array variable with no index, or to an array variable
  41. with a parenthesized index.
  42. .AP int flags in
  43. OR-ed combination of the values TCL_TRACE_READS, TCL_TRACE_WRITES, 
  44. TCL_TRACE_UNSETS, TCL_TRACE_ARRAY, TCL_GLOBAL_ONLY, TCL_NAMESPACE_ONLY,
  45. TCL_TRACE_RESULT_DYNAMIC and TCL_TRACE_RESULT_OBJECT.  
  46. Not all flags are used by all
  47. procedures.  See below for more information.
  48. .AP Tcl_VarTraceProc *proc in
  49. Procedure to invoke whenever one of the traced operations occurs.
  50. .AP ClientData clientData in
  51. Arbitrary one-word value to pass to fIprocfR.
  52. .AP "CONST char" *name1 in
  53. Name of scalar or array variable (without array index).
  54. .AP "CONST char" *name2 in
  55. For a trace on an element of an array, gives the index of the
  56. element.  For traces on scalar variables or on whole arrays,
  57. is NULL.
  58. .AP ClientData prevClientData in
  59. If non-NULL, gives last value returned by fBTcl_VarTraceInfofR or
  60. fBTcl_VarTraceInfo2fR, so this call will return information about
  61. next trace.  If NULL, this call will return information about first
  62. trace.
  63. .BE
  64. .SH DESCRIPTION
  65. .PP
  66. fBTcl_TraceVarfR allows a C procedure to monitor and control
  67. access to a Tcl variable, so that the C procedure is invoked
  68. whenever the variable is read or written or unset.
  69. If the trace is created successfully then fBTcl_TraceVarfR returns
  70. TCL_OK.  If an error occurred (e.g. fIvarNamefR specifies an element
  71. of an array, but the actual variable isn't an array) then TCL_ERROR
  72. is returned and an error message is left in the interpreter's result.
  73. .PP
  74. The fIflagsfR argument to fBTcl_TraceVarfR indicates when the
  75. trace procedure is to be invoked and provides information
  76. for setting up the trace.  It consists of an OR-ed combination
  77. of any of the following values:
  78. .TP
  79. fBTCL_GLOBAL_ONLYfR
  80. Normally, the variable will be looked up at the current level of
  81. procedure call;  if this bit is set then the variable will be looked
  82. up at global level, ignoring any active procedures.
  83. .TP
  84. fBTCL_NAMESPACE_ONLYfR
  85. Normally, the variable will be looked up at the current level of
  86. procedure call;  if this bit is set then the variable will be looked
  87. up in the current namespace, ignoring any active procedures.
  88. .TP
  89. fBTCL_TRACE_READSfR
  90. Invoke fIprocfR whenever an attempt is made to read the variable.
  91. .TP
  92. fBTCL_TRACE_WRITESfR
  93. Invoke fIprocfR whenever an attempt is made to modify the variable.
  94. .TP
  95. fBTCL_TRACE_UNSETSfR
  96. Invoke fIprocfR whenever the variable is unset.
  97. A variable may be unset either explicitly by an fBunsetfR command,
  98. or implicitly when a procedure returns (its local variables are
  99. automatically unset) or when the interpreter is deleted (all
  100. variables are automatically unset).
  101. .TP
  102. fBTCL_TRACE_ARRAYfR
  103. Invoke fIprocfR whenever the array command is invoked.
  104. This gives the trace procedure a chance to update the array before
  105. array names or array get is called.  Note that this is called
  106. before an array set, but that will trigger write traces.
  107. .VS 8.4
  108. .TP
  109. fBTCL_TRACE_RESULT_DYNAMICfR
  110. The result of invoking the fIprocfR is a dynamically allocated
  111. string that will be released by the Tcl library via a call to
  112. fBckfreefR.  Must not be specified at the same time as
  113. TCL_TRACE_RESULT_OBJECT.
  114. .TP
  115. fBTCL_TRACE_RESULT_OBJECTfR
  116. The result of invoking the fIprocfR is a Tcl_Obj* (cast to a char*)
  117. with a reference count of at least one.  The ownership of that
  118. reference will be transferred to the Tcl core for release (when the
  119. core has finished with it) via a call to fBTcl_DecrRefCountfR.  Must
  120. not be specified at the same time as TCL_TRACE_RESULT_DYNAMIC.
  121. .VE 8.4
  122. .PP
  123. Whenever one of the specified operations occurs on the variable,
  124. fIprocfR will be invoked.
  125. It should have arguments and result that match the type
  126. fBTcl_VarTraceProcfR:
  127. .CS
  128. typedef char *Tcl_VarTraceProc(
  129. ClientData fIclientDatafR,
  130. Tcl_Interp *fIinterpfR,
  131. char *fIname1fR,
  132. char *fIname2fR,
  133. int fIflagsfR);
  134. .CE
  135. The fIclientDatafR and fIinterpfR parameters will
  136. have the same values as those passed to fBTcl_TraceVarfR when the
  137. trace was created.
  138. fIClientDatafR typically points to an application-specific
  139. data structure that describes what to do when fIprocfR
  140. is invoked.
  141. fIName1fR and fIname2fR give the name of the traced variable
  142. in the normal two-part form (see the description of fBTcl_TraceVar2fR
  143. below for details).
  144. fIFlagsfR is an OR-ed combination of bits providing several
  145. pieces of information.
  146. One of the bits TCL_TRACE_READS, TCL_TRACE_WRITES, TCL_TRACE_ARRAY,
  147. or TCL_TRACE_UNSETS
  148. will be set in fIflagsfR to indicate which operation is being performed
  149. on the variable.
  150. The bit TCL_GLOBAL_ONLY will be set whenever the variable being
  151. accessed is a global one not accessible from the current level of
  152. procedure call:  the trace procedure will need to pass this flag
  153. back to variable-related procedures like fBTcl_GetVarfR if it
  154. attempts to access the variable.
  155. The bit TCL_NAMESPACE_ONLY will be set whenever the variable being
  156. accessed is a namespace one not accessible from the current level of
  157. procedure call:  the trace procedure will need to pass this flag
  158. back to variable-related procedures like fBTcl_GetVarfR if it
  159. attempts to access the variable.
  160. The bit TCL_TRACE_DESTROYED will be set in fIflagsfR if the trace is
  161. about to be destroyed;  this information may be useful to fIprocfR
  162. so that it can clean up its own internal data structures (see
  163. the section TCL_TRACE_DESTROYED below for more details).
  164. Lastly, the bit TCL_INTERP_DESTROYED will be set if the entire
  165. interpreter is being destroyed.
  166. When this bit is set, fIprocfR must be especially careful in
  167. the things it does (see the section TCL_INTERP_DESTROYED below).
  168. The trace procedure's return value should normally be NULL;  see
  169. ERROR RETURNS below for information on other possibilities.
  170. .PP
  171. fBTcl_UntraceVarfR may be used to remove a trace.
  172. If the variable specified by fIinterpfR, fIvarNamefR, and fIflagsfR
  173. has a trace set with fIflagsfR, fIprocfR, and
  174. fIclientDatafR, then the corresponding trace is removed.
  175. If no such trace exists, then the call to fBTcl_UntraceVarfR
  176. has no effect.
  177. The same bits are valid for fIflagsfR as for calls to fBTcl_TraceVarfR.
  178. .PP
  179. fBTcl_VarTraceInfofR may be used to retrieve information about
  180. traces set on a given variable.
  181. The return value from fBTcl_VarTraceInfofR is the fIclientDatafR
  182. associated with a particular trace.
  183. The trace must be on the variable specified by the fIinterpfR,
  184. fIvarNamefR, and fIflagsfR arguments (only the TCL_GLOBAL_ONLY and
  185. TCL_NAMESPACE_ONLY bits from fIflagsfR is used;  other bits are
  186. ignored) and its trace procedure must the same as the fIprocfR
  187. argument.
  188. If the fIprevClientDatafR argument is NULL then the return
  189. value corresponds to the first (most recently created) matching
  190. trace, or NULL if there are no matching traces.
  191. If the fIprevClientDatafR argument isn't NULL, then it should
  192. be the return value from a previous call to fBTcl_VarTraceInfofR.
  193. In this case, the new return value will correspond to the next
  194. matching trace after the one whose fIclientDatafR matches
  195. fIprevClientDatafR, or NULL if no trace matches fIprevClientDatafR
  196. or if there are no more matching traces after it.
  197. This mechanism makes it possible to step through all of the
  198. traces for a given variable that have the same fIprocfR.
  199. .SH "TWO-PART NAMES"
  200. .PP
  201. The procedures fBTcl_TraceVar2fR, fBTcl_UntraceVar2fR, and
  202. fBTcl_VarTraceInfo2fR are identical to fBTcl_TraceVarfR,
  203. fBTcl_UntraceVarfR, and fBTcl_VarTraceInfofR, respectively,
  204. except that the name of the variable consists of two parts.
  205. fIName1fR gives the name of a scalar variable or array,
  206. and fIname2fR gives the name of an element within an array.
  207. .VS 8.1
  208. When fIname2fR is NULL, 
  209. fIname1fR may contain both an array and an element name:
  210. if the name contains an open parenthesis and ends with a
  211. close parenthesis, then the value between the parentheses is
  212. treated as an element name (which can have any string value) and
  213. the characters before the first open
  214. parenthesis are treated as the name of an array variable.
  215. If fIname2fR is NULL and fIname1fR does not refer
  216. to an array element 
  217. .VE
  218. it means that either the variable is
  219. a scalar or the trace is to be set on the entire array rather
  220. than an individual element (see WHOLE-ARRAY TRACES below for
  221. more information). 
  222. .SH "ACCESSING VARIABLES DURING TRACES"
  223. .PP
  224. During read, write, and array traces, the
  225. trace procedure can read, write, or unset the traced
  226. variable using fBTcl_GetVar2fR, fBTcl_SetVar2fR, and
  227. other procedures.
  228. While fIprocfR is executing, traces are temporarily disabled
  229. for the variable, so that calls to fBTcl_GetVar2fR and
  230. fBTcl_SetVar2fR will not cause fIprocfR or other trace procedures
  231. to be invoked again.
  232. Disabling only occurs for the variable whose trace procedure
  233. is active;  accesses to other variables will still be traced.
  234. However, if a variable is unset during a read or write trace then unset
  235. traces will be invoked.
  236. .PP
  237. During unset traces the variable has already been completely
  238. expunged.
  239. It is possible for the trace procedure to read or write the
  240. variable, but this will be a new version of the variable.
  241. Traces are not disabled during unset traces as they are for
  242. read and write traces, but existing traces have been removed
  243. from the variable before any trace procedures are invoked.
  244. If new traces are set by unset trace procedures, these traces
  245. will be invoked on accesses to the variable by the trace
  246. procedures.
  247. .SH "CALLBACK TIMING"
  248. .PP
  249. When read tracing has been specified for a variable, the trace
  250. procedure will be invoked whenever the variable's value is
  251. read.  This includes fBsetfR Tcl commands, fB$fR-notation
  252. in Tcl commands, and invocations of the fBTcl_GetVarfR
  253. and fBTcl_GetVar2fR procedures.
  254. fIProcfR is invoked just before the variable's value is
  255. returned.
  256. It may modify the value of the variable to affect what
  257. is returned by the traced access.
  258. If it unsets the variable then the access will return an error
  259. just as if the variable never existed.
  260. .PP
  261. When write tracing has been specified for a variable, the
  262. trace procedure will be invoked whenever the variable's value
  263. is modified.  This includes fBsetfR commands,
  264. commands that modify variables as side effects (such as
  265. fBcatchfR and fBscanfR), and calls to the fBTcl_SetVarfR
  266. and fBTcl_SetVar2fR procedures).
  267. fIProcfR will be invoked after the variable's value has been
  268. modified, but before the new value of the variable has been
  269. returned.
  270. It may modify the value of the variable to override the change
  271. and to determine the value actually returned by the traced
  272. access.
  273. If it deletes the variable then the traced access will return
  274. an empty string.
  275. .PP
  276. When array tracing has been specified, the trace procedure
  277. will be invoked at the beginning of the array command implementation,
  278. before any of the operations like get, set, or names have been invoked.
  279. The trace procedure can modify the array elements with fBTcl_SetVarfR
  280. and fBTcl_SetVar2fR.
  281. .PP
  282. When unset tracing has been specified, the trace procedure
  283. will be invoked whenever the variable is destroyed.
  284. The traces will be called after the variable has been
  285. completely unset.
  286. .SH "WHOLE-ARRAY TRACES"
  287. .PP
  288. If a call to fBTcl_TraceVarfR or fBTcl_TraceVar2fR specifies
  289. the name of an array variable without an index into the array,
  290. then the trace will be set on the array as a whole.
  291. This means that fIprocfR will be invoked whenever any
  292. element of the array is accessed in the ways specified by
  293. fIflagsfR.
  294. When an array is unset, a whole-array trace will be invoked
  295. just once, with fIname1fR equal to the name of the array
  296. and fIname2fR NULL;  it will not be invoked once for each
  297. element.
  298. .SH "MULTIPLE TRACES"
  299. .PP
  300. It is possible for multiple traces to exist on the same variable.
  301. When this happens, all of the trace procedures will be invoked on each
  302. access, in order from most-recently-created to least-recently-created.
  303. When there exist whole-array traces for an array as well as
  304. traces on individual elements, the whole-array traces are invoked
  305. before the individual-element traces.
  306. If a read or write trace unsets the variable then all of the unset
  307. traces will be invoked but the remainder of the read and write traces
  308. will be skipped.
  309. .SH "ERROR RETURNS"
  310. .PP
  311. Under normal conditions trace procedures should return NULL, indicating
  312. successful completion.
  313. If fIprocfR returns a non-NULL value it signifies that an
  314. error occurred.
  315. The return value must be a pointer to a static character string
  316. containing an error message,
  317. .VS 8.4
  318. unless (fIexactlyfR one of) the TCL_TRACE_RESULT_DYNAMIC and
  319. TCL_TRACE_RESULT_OBJECT flags is set, which specify that the result is
  320. either a dynamic string (to be released with fBckfreefR) or a
  321. Tcl_Obj* (cast to char* and to be released with
  322. fBTcl_DecrRefCountfR) containing the error message.
  323. .VE 8.4
  324. If a trace procedure returns an error, no further traces are
  325. invoked for the access and the traced access aborts with the
  326. given message.
  327. Trace procedures can use this facility to make variables
  328. read-only, for example (but note that the value of the variable
  329. will already have been modified before the trace procedure is
  330. called, so the trace procedure will have to restore the correct
  331. value).
  332. .PP
  333. The return value from fIprocfR is only used during read and
  334. write tracing.
  335. During unset traces, the return value is ignored and all relevant
  336. trace procedures will always be invoked.
  337. .SH "RESTRICTIONS"
  338. .PP
  339. A trace procedure can be called at any time, even when there
  340. is a partially-formed result in the interpreter's result area.  If
  341. the trace procedure does anything that could damage this result (such
  342. as calling fBTcl_EvalfR) then it must save the original values of
  343. the interpreter's fBresultfR and fBfreeProcfR fields and restore
  344. them before it returns.
  345. .SH "UNDEFINED VARIABLES"
  346. .PP
  347. It is legal to set a trace on an undefined variable.
  348. The variable will still appear to be undefined until the
  349. first time its value is set.
  350. If an undefined variable is traced and then unset, the unset will fail
  351. with an error (``no such variable''), but the trace
  352. procedure will still be invoked.
  353. .SH "TCL_TRACE_DESTROYED FLAG"
  354. .PP
  355. In an unset callback to fIprocfR, the TCL_TRACE_DESTROYED bit
  356. is set in fIflagsfR if the trace is being removed as part
  357. of the deletion.
  358. Traces on a variable are always removed whenever the variable
  359. is deleted;  the only time TCL_TRACE_DESTROYED isn't set is for
  360. a whole-array trace invoked when only a single element of an
  361. array is unset.
  362. .SH "TCL_INTERP_DESTROYED"
  363. .PP
  364. When an interpreter is destroyed, unset traces are called for
  365. all of its variables.
  366. The TCL_INTERP_DESTROYED bit will be set in the fIflagsfR
  367. argument passed to the trace procedures.
  368. Trace procedures must be extremely careful in what they do if
  369. the TCL_INTERP_DESTROYED bit is set.
  370. It is not safe for the procedures to invoke any Tcl procedures
  371. on the interpreter, since its state is partially deleted.
  372. All that trace procedures should do under these circumstances is
  373. to clean up and free their own internal data structures.
  374. .SH BUGS
  375. .PP
  376. Tcl doesn't do any error checking to prevent trace procedures
  377. from misusing the interpreter during traces with TCL_INTERP_DESTROYED
  378. set.
  379. .PP
  380. Array traces are not yet integrated with the Tcl "info exists" command,
  381. nor is there Tcl-level access to array traces.
  382. .SH KEYWORDS
  383. clientData, trace, variable