A permanent R session that runs in the background. This is an R6 class that extends the processx::process class.
The process is started at the creation of the object, and then it can be used to evaluate R function calls, one at a time.
Super class
processx::process
-> r_session
Methods
Inherited methods
processx::process$as_ps_handle()
processx::process$format()
processx::process$get_cmdline()
processx::process$get_cpu_times()
processx::process$get_error_connection()
processx::process$get_error_file()
processx::process$get_exe()
processx::process$get_exit_status()
processx::process$get_input_connection()
processx::process$get_input_file()
processx::process$get_memory_info()
processx::process$get_name()
processx::process$get_output_connection()
processx::process$get_output_file()
processx::process$get_pid()
processx::process$get_poll_connection()
processx::process$get_result()
processx::process$get_start_time()
processx::process$get_status()
processx::process$get_username()
processx::process$get_wd()
processx::process$has_error_connection()
processx::process$has_input_connection()
processx::process$has_output_connection()
processx::process$has_poll_connection()
processx::process$interrupt()
processx::process$is_alive()
processx::process$is_incomplete_error()
processx::process$is_incomplete_output()
processx::process$is_supervised()
processx::process$kill()
processx::process$kill_tree()
processx::process$poll_io()
processx::process$read_all_error()
processx::process$read_all_error_lines()
processx::process$read_all_output()
processx::process$read_all_output_lines()
processx::process$read_error()
processx::process$read_error_lines()
processx::process$read_output()
processx::process$read_output_lines()
processx::process$resume()
processx::process$signal()
processx::process$supervise()
processx::process$suspend()
processx::process$wait()
processx::process$write_input()
Method new()
creates a new R background process. It can wait for the process to
start up (wait = TRUE
), or return immediately, i.e. before
the process is actually ready to run. In the latter case you may call
the poll_process()
method to make sure it is ready.
Usage
r_session$new(options = r_session_options(), wait = TRUE, wait_timeout = 3000)
Arguments
options
A list of options created via
r_session_options()
.wait
Whether to wait for the R process to start and be ready for running commands.
wait_timeout
Timeout for waiting for the R process to start, in milliseconds.
Method run()
Similar to r()
, but runs the function in a permanent background
R session. It throws an error if the function call generated an
error in the child process.
Usage
r_session$run(func, args = list(), package = FALSE)
Arguments
func
Function object to call in the background R process. Please read the notes for the similar argument of
r()
.args
Arguments to pass to the function. Must be a list.
package
Whether to keep the environment of
func
when passing it to the other package. Possible values are:FALSE
: reset the environment to.GlobalEnv
. This is the default.TRUE
: keep the environment as is.pkg
: set the environment to thepkg
package namespace.
Method run_with_output()
Similar to $run()
, but returns the standard output and error of
the child process as well. It does not throw on errors, but
returns a non-NULL
error
member in the result list.
Usage
r_session$run_with_output(func, args = list(), package = FALSE)
Arguments
func
Function object to call in the background R process. Please read the notes for the similar argument of
r()
.args
Arguments to pass to the function. Must be a list.
package
Whether to keep the environment of
func
when passing it to the other package. Possible values are:FALSE
: reset the environment to.GlobalEnv
. This is the default.TRUE
: keep the environment as is.pkg
: set the environment to thepkg
package namespace.
Returns
A list with the following entries.
result
: The value returned byfunc
. On error this isNULL
.stdout
: The standard output of the process while evaluatingstderr
: The standard error of the process while evaluating thefunc
call.error
: On error it contains an error object, that contains the error thrown in the subprocess. Otherwise it isNULL
.code
,message
: These fields are used by call internally and you can ignore them.
Method call()
Starts running a function in the background R session, and
returns immediately. To check if the function is done, call the
poll_process()
method.
Usage
r_session$call(func, args = list(), package = FALSE)
Arguments
func
Function object to call in the background R process. Please read the notes for the similar argument of
r()
.args
Arguments to pass to the function. Must be a list.
package
Whether to keep the environment of
func
when passing it to the other package. Possible values are:FALSE
: reset the environment to.GlobalEnv
. This is the default.TRUE
: keep the environment as is.pkg
: set the environment to thepkg
package namespace.
Method poll_process()
Poll the R session with a timeout. If the session has finished the
computation, it returns with "ready"
. If the timeout
is reached, it returns with "timeout"
.
Method get_running_time()
Returns the elapsed time since the R process has started, and the
elapsed time since the current computation has started. The latter
is NA
if there is no active computation.
Method read()
Reads an event from the child process, if there is one available. Events might signal that the function call has finished, or they can be progress report events.
This is a low level function that you only need to use if you want to process events (messages) from the R session manually.
Returns
NULL
if no events are available. Otherwise a named list,
which is also a callr_session_result
object. The list always has
a code
entry which is the type of the event. See also
r_session$public_fields$status
for symbolic names of the
event types.
200
: (DONE
) The computation is done, and the event includes the result, in the same form as for therun()
method.201
: (STARTED
) An R session that was in 'starting' state is ready to go.202
: (ATTACH_DONE
) Used by theattach()
method.301
: (MSG
) A message from the subprocess. The message is a condition object with classcallr_message
. (It typically has other classes, e.g.cli_message
for output from the cli package.)500
: (EXITED
) The R session finished cleanly. This means that the evaluated expression quit R.501
: (CRASHED
) The R session crashed or was killed.502
: (CLOSED
) The R session closed its end of the connection that callr uses for communication.
Method close()
Terminate the current computation and the R process.
The session object will be in "finished"
state after this.
Method traceback()
The traceback()
method can be used after an error in the R
subprocess. It is equivalent to the base::traceback()
call, in
the subprocess.
On callr version 3.8.0 and above, you need to set the
callr.traceback
option to TRUE
(in the main process) to make
the subprocess save the trace on error. This is because saving
the trace can be costly for large objects passed as arguments.
Returns
The same output as from base::traceback()
Method debug()
Interactive debugger to inspect the dumped frames in the subprocess, after an error. See more at r_session_debug.
On callr version 3.8.0 and above, you need to set the
callr.traceback
option to TRUE
(in the main process) to make
the subprocess dump frames on error. This is because saving
the frames can be costly for large objects passed as arguments.
Method attach()
Experimental function that provides a REPL (Read-Eval-Print-Loop) to the subprocess.
Method finalize()
Finalizer that is called when garbage collecting an r_session
object, to clean up temporary files.
Method print()
Print method for an r_session
.
Examples
if (FALSE) {
rs <- r_ression$new()
rs$run(function() 1 + 2)
rs$call(function() Sys.sleep(1))
rs$get_state()
rs$poll_process(-1)
rs$get_state()
rs$read()
}