Title: | Parsing and Evaluation Tools that Provide More Details than the Default |
---|---|
Description: | Parsing and evaluation tools that make it easy to recreate the command line behaviour of R. |
Authors: | Hadley Wickham [aut, cre], Yihui Xie [aut] , Michael Lawrence [ctb], Thomas Kluyver [ctb], Jeroen Ooms [ctb], Barret Schloerke [ctb], Adam Ryczkowski [ctb], Hiroaki Yutani [ctb], Michel Lang [ctb], Karolis Koncevičius [ctb], Posit Software, PBC [cph, fnd] |
Maintainer: | Hadley Wickham <[email protected]> |
License: | MIT + file LICENSE |
Version: | 1.0.1.9000 |
Built: | 2024-10-29 21:15:06 UTC |
Source: | https://github.com/r-lib/evaluate |
Compare to eval()
, evaluate
captures all of the
information necessary to recreate the output as if you had copied and pasted
the code into a R terminal. It captures messages, warnings, errors and
output, all correctly interleaved in the order in which they occured. It
stores the final result, whether or not it should be visible, and the
contents of the current graphics device.
evaluate( input, envir = parent.frame(), enclos = NULL, debug = FALSE, stop_on_error = 0L, keep_warning = TRUE, keep_message = TRUE, log_echo = FALSE, log_warning = FALSE, new_device = TRUE, output_handler = NULL, filename = NULL, include_timing = FALSE )
evaluate( input, envir = parent.frame(), enclos = NULL, debug = FALSE, stop_on_error = 0L, keep_warning = TRUE, keep_message = TRUE, log_echo = FALSE, log_warning = FALSE, new_device = TRUE, output_handler = NULL, filename = NULL, include_timing = FALSE )
input |
input object to be parsed and evaluated. May be a string, file
connection or function. Passed on to |
envir |
environment in which to evaluate expressions. |
enclos |
when |
debug |
if |
stop_on_error |
A number between 0 and 2 that controls what happens when the code errors:
|
keep_warning , keep_message
|
A single logical value that controls what happens to warnings and messages.
Note that setting the envvar |
log_echo , log_warning
|
If This will be force to |
new_device |
if |
output_handler |
an instance of |
filename |
string overrriding the |
include_timing |
Deprecated. |
evaluate(c( "1 + 1", "2 + 2" )) # Not that's there's a difference in output between putting multiple # expressions on one line vs spreading them across multiple lines evaluate("1;2;3") evaluate(c("1", "2", "3")) # This also affects how errors propagate, matching the behaviour # of the R console evaluate("1;stop(2);3") evaluate(c("1", "stop(2)", "3"))
evaluate(c( "1 + 1", "2 + 2" )) # Not that's there's a difference in output between putting multiple # expressions on one line vs spreading them across multiple lines evaluate("1;2;3") evaluate(c("1", "2", "3")) # This also affects how errors propagate, matching the behaviour # of the R console evaluate("1;stop(2);3") evaluate(c("1", "stop(2)", "3"))
flush.console()
in evaluate()
When evaluate()
is evaluating code, the text output is diverted into
an internal connection, and there is no way to flush that connection. This
function provides a way to "flush" the connection so that any text output can
be immediately written out, and more importantly, the text
handler
(specified in the output_handler
argument of evaluate()
) will
be called, which makes it possible for users to know it when the code
produces text output using the handler.
This function is supposed to be called inside evaluate()
(e.g.
either a direct evaluate()
call or in knitr code chunks).
flush_console()
flush_console()
Often when using evaluate()
you are running R code with a specific output
context in mind. But there are many options and env vars that packages
will take from the current environment, meaning that output depends on
the current state in undesirable ways.
This function allows you to describe the characteristics of the desired output and takes care of setting the options and environment variables for you.
local_reproducible_output( width = 80, color = FALSE, unicode = FALSE, hyperlinks = FALSE, rstudio = FALSE, frame = parent.frame() )
local_reproducible_output( width = 80, color = FALSE, unicode = FALSE, hyperlinks = FALSE, rstudio = FALSE, frame = parent.frame() )
width |
Value of the |
color |
Determines whether or not cli/crayon colour should be used. |
unicode |
Should we use unicode characaters where possible? |
hyperlinks |
Should we use ANSI hyperlinks? |
rstudio |
Should we pretend that we're running inside of RStudio? |
frame |
Scope of the changes; when this calling frame terminates the changes will be undone. For expert use only. |
An output_handler
handles the results of evaluate()
,
including the values, graphics, conditions. Each type of output is handled by
a particular function in the handler object.
new_output_handler( source = identity, text = identity, graphics = identity, message = identity, warning = identity, error = identity, value = render, calling_handlers = list() )
new_output_handler( source = identity, text = identity, graphics = identity, message = identity, warning = identity, error = identity, value = render, calling_handlers = list() )
source |
Function to handle the echoed source code under evaluation.
This function should take two arguments ( Return |
text |
Function to handle any textual console output. |
graphics |
Function to handle graphics, as returned by
|
message |
Function to handle |
warning |
Function to handle |
error |
Function to handle |
value |
Function to handle the values returned from evaluation.
|
calling_handlers |
List of calling handlers.
These handlers have precedence over the exiting handler installed
by |
The handler functions should accept an output object as their first argument.
The return value of the handlers is ignored, except in the case of the
value
handler, where a visible return value is saved in the output
list.
Calling the constructor with no arguments results in the default handler, which mimics the behavior of the console by printing visible values.
Note that recursion is common: for example, if value
does any
printing, then the text
or graphics
handlers may be called.
A new output_handler
object
Works very similarly to parse, but also keeps original formatting and comments.
parse_all(x, filename = NULL, allow_error = FALSE)
parse_all(x, filename = NULL, allow_error = FALSE)
x |
object to parse. Can be a string, a file connection, or a function. If a connection, will be opened and closed only if it was closed initially. |
filename |
string overriding the file name |
allow_error |
whether to allow syntax errors in |
A data frame two columns, src
and expr
, and one row for each complete
input in x
. A complete input is R code that would trigger execution when
typed at the console. This might consist of multiple expressions separated
by ;
or one expression spread over multiple lines (like a function
definition).
src
is a character vector of source code. Each element represents a
complete input expression (which might span multiple line) and always has a
terminal \n
.
expr
is a list-column of expressions. The expressions can be of any
length, depending on the structure of the complete input source:
If src
consists of only only whitespace and/or comments, expr
will
be length 0.
If src
a single scalar (like TRUE
, 1
, or "x"
), name, or
function call, expr
will be length 1.
If src
contains multiple expressions separated by ;
, expr
will
have length two or more.
The expressions have their srcrefs removed.
If there are syntax errors in x
and allow_error = TRUE
, the data
frame will have an attribute PARSE_ERROR
that stores the error object.
# Each of these inputs are single line, but generate different numbers of # expressions source <- c( "# a comment", "x", "x;y", "x;y;z" ) parsed <- parse_all(source) lengths(parsed$expr) str(parsed$expr) # Each of these inputs are a single expression, but span different numbers # of lines source <- c( "function() {}", "function() {", " # Hello!", "}", "function() {", " # Hello!", " # Goodbye!", "}" ) parsed <- parse_all(source) lengths(parsed$expr) parsed$src
# Each of these inputs are single line, but generate different numbers of # expressions source <- c( "# a comment", "x", "x;y", "x;y;z" ) parsed <- parse_all(source) lengths(parsed$expr) str(parsed$expr) # Each of these inputs are a single expression, but span different numbers # of lines source <- c( "function() {}", "function() {", " # Hello!", "}", "function() {", " # Hello!", " # Goodbye!", "}" ) parsed <- parse_all(source) lengths(parsed$expr) parsed$src
Replay a list of evaluated results, as if you'd run them in an R terminal.
replay(x)
replay(x)
x |
result from |
f1 <- function() { cat("1\n") print("2") warning("3") print("4") message("5") stop("6") } replay(evaluate("f1()")) f2 <- function() { message("Hello") plot(1:10) message("Goodbye") } replay(evaluate("f2()"))
f1 <- function() { cat("1\n") print("2") warning("3") print("4") message("5") stop("6") } replay(evaluate("f1()")) f2 <- function() { message("Hello") plot(1:10) message("Goodbye") } replay(evaluate("f2()"))
Trim off plots that are modified by subsequent lines to only show the "final" plot.
trim_intermediate_plots(x)
trim_intermediate_plots(x)
x |
An evaluation object produced by |
A modified evaluation object.
ev <- evaluate(c( "plot(1:3)", "text(1, 1, 'x')", "text(1, 1, 'y')" )) # All intermediate plots are captured ev # Only the final plot is shown trim_intermediate_plots(ev)
ev <- evaluate(c( "plot(1:3)", "text(1, 1, 'x')", "text(1, 1, 'y')" )) # All intermediate plots are captured ev # Only the final plot is shown trim_intermediate_plots(ev)