A colleague recently was looking at call graphs and wanted to see what called what. We sorted that with foodweb from mvbutils, but I was wondering about how best to create a decorator (in python speak) in R. So I did this:
instrument=function(z){
force(z)
n=deparse(substitute(z)) # get the name
f=function(...){
cat("calling ", n,"\n")
x=z(...)
cat("done\n")
return(x)
}
return(f)
}
This lets me do:
> foo=function(x,y){x+y}
> foo(1,2)
[1] 3
and now I can make the function log itself by wrapping it:
> foo=instrument(foo)
> foo(1,2)
calling foo
done
[1] 3
has this been done before, in a package say, and have I missed any gotchas that will break my way of doing this?
r-devel. – Dirk Eddelbuettel Jan 28 '11 at 15:11