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.
processx::process -> r_session
statusStatus codes returned by read().
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()
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.
r_session$new(options = r_session_options(), wait = TRUE, wait_timeout = 3000)optionsA list of options created via r_session_options().
waitWhether to wait for the R process to start and be ready for running commands.
wait_timeoutTimeout for waiting for the R process to start, in milliseconds.
An r_session object.
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.
r_session$run(func, args = list(), package = FALSE)funcFunction object to call in the background R process.
Please read the notes for the similar argument of r().
argsArguments to pass to the function. Must be a list.
packageWhether 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 the pkg package namespace.
The return value of the R expression.
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.
r_session$run_with_output(func, args = list(), package = FALSE)funcFunction object to call in the background R process.
Please read the notes for the similar argument of r().
argsArguments to pass to the function. Must be a list.
packageWhether 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 the pkg package namespace.
A list with the following entries.
result: The value returned by func. On error this is NULL.
stdout: The standard output of the process while evaluating
stderr: The standard error of the process while evaluating
the func call.
error: On error it contains an error object, that contains the
error thrown in the subprocess. Otherwise it is NULL.
code, message: These fields are used by call internally and
you can ignore them.
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.
r_session$call(func, args = list(), package = FALSE)funcFunction object to call in the background R process.
Please read the notes for the similar argument of r().
argsArguments to pass to the function. Must be a list.
packageWhether 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 the pkg package namespace.
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".
r_session$poll_process(timeout)timeoutTimeout period in milliseconds.
Character string "ready" or "timeout".
get_state()Return the state of the R session.
r_session$get_state()Possible values:
"starting": starting up,
"idle": ready to compute,
"busy": computing right now,
"finished": the R process has finished.
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.
r_session$get_running_time()Named vector of POSIXct objects. The names are "total"
and "current".
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.
r_session$read()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 the run() method.
201: (STARTED) An R session that was in 'starting' state is
ready to go.
202: (ATTACH_DONE) Used by the attach() method.
301: (MSG) A message from the subprocess. The message is a
condition object with class callr_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.
close()Terminate the current computation and the R process.
The session object will be in "finished" state after this.
r_session$close(grace = 1000)graceGrace period in milliseconds, to wait for the subprocess to exit cleanly, after its standard input is closed. If the process is still running after this period, it will be killed.
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.
r_session$traceback()The same output as from base::traceback()
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.
r_session$debug()
attach()Experimental function that provides a REPL (Read-Eval-Print-Loop) to the subprocess.
r_session$attach()
finalize()Finalizer that is called when garbage collecting an r_session
object, to clean up temporary files.
r_session$finalize()
...Arguments are not used currently.
clone()The objects of this class are cloneable with this method.
r_session$clone(deep = FALSE)deepWhether to make a deep clone.
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()
}
Run the code above in your browser using DataLab