Rev 26402 | Rev 27716 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{trace}\title{Interactive Tracing and Debugging of Calls to a Function or Method}\alias{trace}\alias{untrace}\alias{tracingState}%% internal\alias{.primTrace}\alias{.primUntrace}\description{A call to \code{trace} allows you to insert debugging code (e.g., acall to \code{\link{browser}} or \code{\link{recover}}) at chosenplaces in any function. A call to \code{untrace} cancels the tracing.Specified methods can be traced the same way, without tracing allcalls to the function. Trace code can be any \R expression. Tracingcan be temporarily turned on or off globally by calling \code{tracingState}.}\usage{trace(what, tracer, exit, at, print, signature, where = topenv(parent.frame()))untrace(what, signature = NULL, where = topenv(parent.frame()))tracingState(on = NULL)}\arguments{\item{what}{The name (quoted or not) of a function to be traced oruntraced. More than one name can be given in the quoted form, andthe same action will be applied to each one.}\item{tracer}{Either a function or an unevaluated expression. Thefunction will be called or the expression will be evaluated eitherat the beginning of the call, or before those steps in the callspecified by the argument \code{at}.See the details section.}\item{exit}{ Either a function or an unevaluated expression. Thefunction will be called or the expression will be evaluated onexiting the function.See the details section.}\item{at}{optional numeric vector. If supplied, \code{tracer}will be called just before the corresponding step in the body of thefunction.See the details section. }\item{print}{If \code{TRUE} (as per default), a descriptive line isprinted before any trace expression is evaluated.}\item{signature}{ If this argument is supplied, it should be asignature for a method for function \code{what}. In this case, themethod, and \emph{not} the function itself, is traced.}\item{where}{the environment from which to look for the function to betraced; by default, the top-level environment of the call to\code{trace}. If you put a call to \code{trace} into code in apackage, you may need to specify \code{where=.GlobalEnv} ifthe package containing the call has a namespace, but the functionyou want to trace is somewhere on the search list.}\item{on}{logical; a call to \code{tracingState} returns \code{TRUE}if tracing is globally turned on, \code{FALSE} otherwise. Anargument of one or the other of those values sets the state. If thetracing state is \code{FALSE}, none of the trace actions willactually occur (used, for example, by debugging functions to shutoff tracing during debugging).}}\details{The \code{trace} function operates by constructing a revised versionof the function (or of the method, if \code{signature} is supplied),and assigning the new object back where the original was found.If only the \code{what} argument is given, a line of trace printing isproduced for each call to the function (back compatible with theearlier version of \code{trace}).The object constructed by \code{trace} is from a class that extends\code{"function"} and which contains the original, untraced version.A call to \code{untrace} re-assigns this version.If the argument \code{tracer} or \code{exit} is the name of afunction, the tracing expression will be a call to that function, withno arguments. This is the easiest and most common case, with thefunctions \code{\link{browser}} and \code{\link{recover}} thelikeliest candidates; the former browses in the frame of the functionbeing traced, and the latter allows browsing in any of the currentlyactive calls.The \code{tracer} or \code{exit} argument can also be an unevaluatedexpression (such as returned by a call to \code{\link{quote}} or\code{\link{substitute}}). This expression itself is inserted in thetraced function, so it will typically involve arguments or localobjects in the traced function. An expression of this form is usefulif you only want to interact when certain conditions apply (and inthis case you probably want to supply \code{print=FALSE} in the callto \code{trace} also).When the \code{at} argument is supplied, it should be a vector ofintegers referring to the substeps of the body of the function (thisonly works if the body of the function is enclosed in \code{{ ...}}. Inthis case \code{tracer} is \emph{not} called on entry, but insteadjust before evaluating each of the steps listed in \code{at}. (Hint:you don't want to try to count the steps in the printed version of afunction; instead, look at \code{as.list(body(f))} to get the numbersassociated with the steps in function \code{f}.)An intrinsic limitation in the \code{exit} argument is that it won'twork if the function itself uses \code{on.exit}, since the existingcalls will override the one supplied by \code{trace}.Tracing does not nest. Any call to \code{trace} replaces previouslytraced versions of that function or method, and \code{untrace} alwaysrestores an untraced version. (Allowing nested tracing has too manypotentials for confusion and for accidentally leaving traced versionsbehind.)Tracing primitive functions (builtins and specials) from the basepackage works, but only by a special mechanism and not veryinformatively. Tracing a primitive causes the primitive to bereplaced by a function with argument \dots (only). You can get a bitof information out, but not much. A warning message is issued when\code{trace} is used on a primitive.The practice of saving the traced version of the function back wherethe function came from means that tracing carries over from onesession to another, \emph{if} the traced function is saved in thesession image. (In the next session, \code{untrace} will remove thetracing.) On the other hand, functions that were in a package, not inthe global environment, are not saved in the image, so tracing expireswith the session for such functions.Tracing a method is basically just like tracing a function, with theexception that the traced version is stored by a call to\code{\link[methods]{setMethod}} rather than by direct assignment, and so isthe untraced version after a call to \code{untrace}.The version of \code{trace} described here is largely compatible withthe version in S-Plus, although the two work by entirely differentmechanisms. The S-Plus \code{trace} uses the session frame, with theresult that tracing never carries over from one session to another (\Rdoes not have a session frame). Another relevant distinction hasnothing directly to do with \code{trace}: The browser in S-Plusallows changes to be made to the frame being browsed, and the changeswill persist after exiting the browser. The \R browser allows changes,but they disappear when the browser exits. This may be relevant inthat the S-Plus version allows you to experiment with code changesinteractively, but the \R version does not. (A future revision mayinclude a \dQuote{destructive} browser for \R.)}\note{The version of function tracing that includes any of the argumentsexcept for the function name requires the methods package (because ituses special classes of objects to store and restore versions of thetraced functions).If methods dispatch is not currently on, \code{trace} will load themethods namespace, but will not put the methods package on the searchlist.}\value{The traced function(s) name(s). The relevant consequence is theassignment that takes place.}\references{Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988)\emph{The New S Language}.Wadsworth \& Brooks/Cole.}\seealso{\code{\link{browser}} and \code{\link{recover}}, the likeliesttracing functions;also, \code{\link{quote}} and \code{\link{substitute}} forconstructing general expressions.}\examples{\dontshow{ hasMethods <- .isMethodsDispatchOn()}f <- function(x, y) {y <- pmax(y, .001)x ^ y}## arrange to call the browser on entering and exiting## function ftrace("f", browser, exit = browser)## instead, conditionally assign some data, and then browse## on exit, but only then. Don't bother me otherwisetrace("f", quote(if(any(y < 0)) yOrig <- y),exit = quote(if(exists("yOrig")) browser()),print = FALSE)## trace a utility function, with recover so we## can browse in the calling functions as well.trace("as.matrix", recover)## turn off the tracinguntrace(c("f", "as.matrix"))if(!hasMethods) detach("package:methods")}\keyword{programming}\keyword{debugging}