#' A future represents a value that will be available at some point in the future
#'
#' A _future_ is an abstraction for a _value_ that may
#' available at some point in the future. A future can either be
#' `unresolved` or `resolved`, a state which can be checked
#' with [resolved()]. As long as it is _unresolved_, the
#' value is not available. As soon as it is _resolved_, the value
#' is available via \code{\link[future]{value}()}.
#'
#' @param expr An \R \link[base]{expression}.
#'
#' @param envir The [environment] from where global objects should be
#' identified.
#'
#' @param substitute If TRUE, argument `expr` is
#' \code{\link[base]{substitute}()}:ed, otherwise not.
#'
#' @param stdout If TRUE (default), then the standard output is captured,
#' and re-outputted when `value()` is called.
#' If FALSE, any output is silenced (by sinking it to the null device as
#' it is outputted).
#' If NA (not recommended), output is _not_ intercepted.
#'
#' @param conditions A character string of conditions classes to be captured
#' and relayed. The default is to relay messages and warnings.
#' To not intercept any types of conditions, use `conditions = NULL`.
#' Errors are always relayed.
#'
#' @param globals (optional) a logical, a character vector, or a named list
#' to control how globals are handled.
#' For details, see section 'Globals used by future expressions'
#' in the help for [future()].
#'
#' @param packages (optional) a character vector specifying packages
#' to be attached in the \R environment evaluating the future.
#'
#' @param seed (optional) If TRUE, the random seed, that is, the state of the
#' random number generator (RNG) will be set such that statistically sound
#' random numbers are produced (also during parallelization).
#' If FALSE (default), it is assumed that the future expression does neither
#' need nor use random numbers generation.
#' To use a fixed random seed, specify a L'Ecuyer-CMRG seed (seven integer)
#' or a regular RNG seed (a single integer). If the latter, then a
#' L'Ecuyer-CMRG seed will be automatically created based on the given seed.
#' Furthermore, if FALSE, then the future will be monitored to make sure it
#' does not use random numbers. If it does and depending on the value of
#' option \code{\link[=future.options]{future.rng.onMisuse}}, the check is
#' ignored, an informative warning, or error will be produced.
#' If `seed` is NULL, then the effect is as with `seed = FALSE`
#' but without the RNG check being performed.
#'
#' @param lazy If FALSE (default), the future is resolved
#' eagerly (starting immediately), otherwise not.
#'
#' @param local If TRUE, the expression is evaluated such that
#' all assignments are done to local temporary environment, otherwise
#' the assignments are done to the global environment of the \R process
#' evaluating the future.
#'
#' @param gc If TRUE, the garbage collector run (in the process that
#' evaluated the future) only after the value of the future is collected.
#' Exactly when the values are collected may depend on various factors such
#' as number of free workers and whether `earlySignal` is TRUE (more
#' frequently) or FALSE (less frequently).
#' _Some types of futures ignore this argument._
#'
#' @param earlySignal Specified whether conditions should be signaled as soon
#' as possible or not.
#'
#' @param label An optional character string label attached to the future.
#'
#' @param \dots Additional named elements of the future.
#'
#' @return An object of class `Future`.
#'
#' @details
#' A Future object is itself an \link{environment}.
#'
#' @seealso
#' One function that creates a Future is [future()].
#' It returns a Future that evaluates an \R expression in the future.
#' An alternative approach is to use the \code{\link{\%<-\%}} infix
#' assignment operator, which creates a future from the
#' right-hand-side (RHS) \R expression and assigns its future value
#' to a variable as a \emph{\link[base:delayedAssign]{promise}}.
#'
#' @importFrom parallel nextRNGStream
#' @export
#' @keywords internal
#' @name Future-class
Future <- function(expr = NULL, envir = parent.frame(), substitute = TRUE, stdout = TRUE, conditions = "condition", globals = NULL, packages = NULL, seed = FALSE, lazy = FALSE, local = TRUE, gc = FALSE, earlySignal = FALSE, label = NULL, ...) {
if (substitute) expr <- substitute(expr)
if (is.null(seed)) {
} else if (isFALSE(seed)) {
} else if (is_lecyer_cmrg_seed(seed)) {
} else {
.seed <- as_lecyer_cmrg_seed(seed)
seed <- nextRNGSubStream(.seed)
}
stop_if_not(is.logical(stdout), length(stdout) == 1L)
if (!is.null(conditions)) {
stop_if_not(is.character(conditions), !anyNA(conditions))
}
if (!is.null(globals)) {
stop_if_not(is.list(globals),
length(globals) == 0 || inherits(globals, "Globals"))
}
if (!is.null(packages)) {
stop_if_not(is.character(packages))
packages <- unique(packages)
stop_if_not(!anyNA(packages), all(nzchar(packages)))
}
if (!is.null(label)) {
stop_if_not(is.character(label))
}
args <- list(...)
if (!local && !isTRUE(args[["persistent"]])) {
.Deprecated(msg = "Using 'local = FALSE' for a future is deprecated and will soon be defunct and produce an error.", package = .packageName)
}
core <- new.env(parent = emptyenv())
## Version of future
version <- args$version
if (is.null(version)) version <- "1.8"
core$version <- version
## Future evaluation
core$expr <- expr
core$envir <- envir
core$stdout <- stdout
core$conditions <- conditions
core$globals <- globals
core$packages <- packages
core$seed <- seed
core$local <- local
core$lazy <- lazy
core$asynchronous <- TRUE ## Reserved for future version (Issue #109)
## Result
core$result <- NULL
## Future miscellaneous
core$label <- label
core$earlySignal <- earlySignal
core$gc <- gc
core$owner <- session_uuid()
core$calls <- sys.calls()
## The current state of the future, e.g.
## 'created', 'running', 'finished', 'failed', 'interrupted'.
core$state <- "created"
## Additional named arguments
names <- names(args)
for (key in names) core[[key]] <- args[[key]]
## IMPORTANT: Do *not* set 'value' because that field is defunct but
## there might still be legacy code out there that rely on it. By
## assert it is not set here, it is more likely to be caught. This
## check will eventually be removed
if ("value" %in% names) {
.Defunct(msg = "Future field 'value' is defunct and must not be set", package = .packageName)
}
structure(core, class = c("Future", class(core)))
}
#' @importFrom utils head capture.output
#' @export
print.Future <- function(x, ...) {
class <- class(x)
cat(sprintf("%s:\n", class[1]))
label <- x$label
if (is.null(label)) label <- "<none>"
cat("Label: ", sQuote(label), "\n", sep = "")
cat("Expression:\n")
print(x$expr)
cat(sprintf("Lazy evaluation: %s\n", x$lazy))
cat(sprintf("Asynchronous evaluation: %s\n", x$asynchronous))
cat(sprintf("Local evaluation: %s\n", x$local))
cat(sprintf("Environment: %s\n", envname(x$envir)))
cat(sprintf("Capture standard output: %s\n", x$stdout))
if (length(x$conditions) > 0) {
cat(sprintf("Capture condition classes: %s\n",
paste(sQuote(x$conditions), collapse = ", ")))
} else {
cat("Capture condition classes: <none>\n")
}
## FIXME: Add method globals_of() for Future such that it's possible
## also for SequentialFuture to return something here. /HB 2017-05-17
g <- globals(x)
ng <- length(g)
if (ng > 0) {
gSizes <- sapply(g, FUN = objectSize)
gTotalSize <- sum(gSizes)
g <- head(g, n = 5L)
gSizes <- head(gSizes, n = 5L)
g <- sprintf("%s %s of %s", sapply(g, FUN = function(x) class(x)[1]), sQuote(names(g)), sapply(gSizes, FUN = asIEC))
if (ng > length(g)) g <- c(g, "...")
g <- hpaste(g, maxHead = 5L, maxTail = 0L)
cat(sprintf("Globals: %d objects totaling %s (%s)\n", ng, asIEC(gTotalSize), g))
} else {
cat("Globals: <none>\n")
}
p <- packages(x)
np <- length(p)
if (np > 0) {
cat(sprintf("Packages: %d packages (%s)\n", np, paste(sQuote(p), collapse = ", ")))
} else {
cat("Packages: <none>\n")
}
if (is.integer(x$seed)) {
cat(sprintf("L'Ecuyer-CMRG RNG seed: c(%s)\n", paste(x$seed, collapse = ", ")))
} else {
cat("L'Ecuyer-CMRG RNG seed: <none> (seed = ", deparse(x$seed), ")\n", sep = "")
}
result <- x$result
hasResult <- inherits(result, "FutureResult")
## BACKWARD COMPATIBILITY
hasResult <- hasResult || exists("value", envir = x, inherits = FALSE)
if (hasResult) {
cat("Resolved: TRUE\n")
} else if (x$state == "created") {
## Don't launch lazy futures here
cat("Resolved: FALSE\n")
} else if (inherits(x, "UniprocessFuture") && x$lazy) {
## FIXME: Special case; will there every be other cases
## for which we need to support this? /HB 2016-05-03
cat("Resolved: FALSE\n")
} else {
## Don't signal conditions here
## Note that resolved() may produce a FutureError, e.g.
## due to invalid connection in a MultisessionFuture
is_resolved <- FALSE
cat(sprintf("Resolved: %s\n", tryCatch(resolved(x, .signalEarly = FALSE), error = function(ex) NA)))
}
if (hasResult) {
if (inherits(result, "FutureResult")) {
value <- result$value
} else if ("value" %in% names(x)) {
.Defunct(msg = sprintf("Detected a %s object that rely on the defunct 'value' field of format version 1.7 or before.", class(x)[1]), package = .packageName)
} else {
stop(FutureError(sprintf("The %s object does not have a 'results' field", class(x)[1]), future = future))
}
cat(sprintf("Value: %s of class %s\n", asIEC(objectSize(value)), sQuote(class(value)[1])))
if (inherits(result, "FutureResult")) {
conditions <- result$conditions
conditionClasses <- vapply(conditions, FUN = function(c) class(c$condition)[1], FUN.VALUE = NA_character_)
cat(sprintf("Conditions captured: [n=%d] %s\n", length(conditionClasses), hpaste(sQuote(conditionClasses))))
}
} else {
cat("Value: <not collected>\n")
cat("Conditions captured: <none>\n")
}
cat(sprintf("Early signaling: %s\n", isTRUE(x$earlySignal)))
cat(sprintf("Owner process: %s\n", x$owner))
cat(sprintf("Class: %s\n", paste(sQuote(class), collapse = ", ")))
} ## print()
## Checks whether Future is owned by the current process or not
assertOwner <- function(future, ...) {
hpid <- function(uuid) {
info <- attr(uuid, "source", exact = TRUE)
if (is.null(info)) info <- list(pid = NA_integer_, host = NA_character_)
stop_if_not(is.list(info), length(info$pid) == 1L, length(info$host) == 1L)
pid <- sprintf("%s; pid %d on %s", uuid, info$pid, info$host)
stop_if_not(length(pid) == 1L)
pid
}
if (!identical(future$owner, session_uuid())) {
stop(FutureError(sprintf("Invalid usage of futures: A future whose value has not yet been collected can only be queried by the R process (%s) that created it, not by any other R processes (%s): %s", hpid(future$owner), hpid(session_uuid()), hexpr(future$expr)), future = future))
}
invisible(future)
}
#' Run a future
#'
#' @param future A \link{Future}.
#' @param \dots Not used.
#'
#' @return The [Future] object.
#'
#' @details
#' This function can only be called once per future.
#' Further calls will result in an informative error.
#' If a future is not run when its value is queried,
#' then it is run at that point.
#'
#' @aliases run
#' @rdname run
#' @export
#' @export run
#' @keywords internal
run.Future <- function(future, ...) {
if (future$state != 'created') {
label <- future$label
if (is.null(label)) label <- "<none>"
msg <- sprintf("A future ('%s') can only be launched once.", label)
stop(FutureError(msg, future = future))
}
future
}
run <- function(...) UseMethod("run")
#' @export
#' @keywords internal
result <- function(...) UseMethod("result")
#' Get the results of a resolved future
#'
#' @param future A \link{Future}.
#' @param \dots Not used.
#'
#' @return The [FutureResult] object.
#'
#' @details
#' This function is only part of the _backend_ Future API.
#' This function is _not_ part of the frontend Future API.
#'
#' @aliases result
#' @rdname result
#' @export
#' @keywords internal
result.Future <- function(future, ...) {
## Has the result already been collected?
result <- future$result
if (!is.null(result)) {
## Always signal immediateCondition:s and as soon as possible.
## They will always be signaled if they exist.
signalImmediateConditions(future)
if (inherits(result, "FutureError")) stop(result)
return(result)
}
if (future$state == "created") {
future <- run(future)
}
if (!future$state %in% c("finished", "failed", "interrupted")) {
## BACKWARD COMPATIBILITY:
## For now, it is value() that collects the results. Later we want
## all future backends to use result() to do it. /HB 2018-02-22
value(future, stdout = FALSE, signal = FALSE)
## Always signal immediateCondition:s and as soon as possible.
## They will always be signaled if they exist.
signalImmediateConditions(future)
}
result <- future$result
if (inherits(result, "FutureResult")) return(result)
## BACKWARD COMPATIBILITY
result <- future$value
if (inherits(result, "FutureResult")) return(result)
version <- future$version
if (is.null(version)) {
warning(FutureWarning("Future version was not set. Using default %s",
sQuote(version)))
}
## Sanity check
if (version == "1.8") {
if (is.null(result) && inherits(future, "MulticoreFuture")) {
label <- future$label
if (is.null(label)) label <- "<none>"
msg <- sprintf("A future ('%s') of class %s did not produce a FutureResult object but NULL. This suggests that the R worker terminated (crashed?) before the future expression was resolved.", label, class(future)[1])
stop(FutureError(msg, future = future))
}
}
.Defunct(msg = "Future objects with an internal version of 1.7 or earlier are defunct. This error is likely coming from a third-party package or other R code. Please report this to the maintainer of the 'future' package so this can be resolved.", package = .packageName)
}
#' @export
resolved.Future <- function(x, run = TRUE, ...) {
## A lazy future not even launched?
if (x$state == "created") {
if (run) x <- run(x)
return(FALSE)
}
## Signal conditions early, iff specified for the given future
## Note, collect = TRUE will block here, which is intentional
signalEarly(x, collect = TRUE, ...)
if (inherits(x$result, "FutureResult")) return(TRUE)
x$state %in% c("finished", "failed", "interrupted")
}
#' Inject code for the next type of future to use for nested futures
#'
#' @param future Current future.
#' @param \dots Not used.
#'
#' @return A future expression with code injected to set what
#' type of future to use for nested futures, iff any.
#'
#' @details
#' If no next future strategy is specified, the default is to
#' use [sequential] futures. This conservative approach protects
#' against spawning off recursive futures by mistake, especially
#' [multicore] and [multisession] ones.
#' The default will also set `options(mc.cores = 1L)` (*) so that
#' no parallel \R processes are spawned off by functions such as
#' \code{parallel::mclapply()} and friends.
#'
#' Currently it is not possible to specify what type of nested
#' futures to be used, meaning the above default will always be
#' used.
#' See \href{https://github.com/HenrikBengtsson/future/issues/37}{Issue #37}
#' for plans on adding support for custom nested future types.
#'
#' (*) Ideally we would set `mc.cores = 0` but that will unfortunately
#' cause `mclapply()` and friends to generate an error saying
#' "'mc.cores' must be >= 1". Ideally those functions should
#' fall back to using the non-multicore alternative in this
#' case, e.g. `mclapply(...)` => `lapply(...)`.
#' See \url{https://github.com/HenrikBengtsson/Wishlist-for-R/issues/7}
#' for a discussion on this.
#'
#' @aliases getExpression.Future
#' @keywords internal
#'
#' @export
getExpression <- function(future, ...) UseMethod("getExpression")
#' @export
getExpression.Future <- function(future, expr = future$expr, local = future$local, stdout = future$stdout, conditionClasses = future$conditions, split = future$split, mc.cores = NULL, exit = NULL, ...) {
debug <- getOption("future.debug", FALSE)
## mdebug("getExpression() ...")
if (is.null(split)) split <- FALSE
stop_if_not(is.logical(split), length(split) == 1L, !is.na(split))
version <- future$version
if (is.null(version)) {
warning(FutureWarning("Future version was not set. Using default %s",
sQuote(version)))
}
enter <- bquote({
base::local({
## covr: skip=4
## If 'future' is not installed on the worker, or a too old version
## of 'future' is used, then give an early error
## If future::FutureResult does not exist, give an error
has_future <- base::requireNamespace("future", quietly = TRUE)
if (has_future) {
## future (>= 1.20.0)
ns <- base::getNamespace("future")
version <- ns[[".package"]][["version"]]
## future (< 1.20.0)
if (is.null(version)) version <- utils::packageVersion("future")
} else {
version <- NULL
}
if (!has_future || version < "1.8.0") {
info <- base::c(
r_version = base::gsub("R version ", "", base::R.version$version.string),
platform = base::sprintf("%s (%s-bit)", base::R.version$platform, 8 * base::.Machine$sizeof.pointer),
os = base::paste(base::Sys.info()[base::c("sysname", "release", "version")], collapse = " "),
hostname = base::Sys.info()[["nodename"]]
)
info <- base::sprintf("%s: %s", base::names(info), info)
info <- base::paste(info, collapse = "; ")
if (!has_future) {
msg <- base::sprintf("Package 'future' is not installed on worker (%s)", info)
} else {
msg <- base::sprintf("Package 'future' on worker (%s) must be of version >= 1.8.0: %s", info, version)
}
base::stop(msg)
}
})
})
## Should 'mc.cores' be set?
if (!is.null(mc.cores)) {
## mdebugf("getExpression(): setting mc.cores = %d inside future", mc.cores)
## FIXME: How can we guarantee that '...future.mc.cores.old'
## is not overwritten? /HB 2016-03-14
enter <- bquote({
## covr: skip=3
.(enter)
...future.mc.cores.old <- base::getOption("mc.cores")
base::options(mc.cores = .(mc.cores))
})
exit <- bquote({
## covr: skip=2
.(exit)
base::options(mc.cores = ...future.mc.cores.old)
})
}
## Set RNG seed?
if (is.numeric(future$seed)) {
enter <- bquote({
## covr: skip=2
.(enter)
## NOTE: It is not needed to call RNGkind("L'Ecuyer-CMRG") here
## because the type of RNG is defined by .Random.seed, especially
## .Random.seed[1]. See help("RNGkind"). /HB 2017-01-12
base::assign(".Random.seed", .(future$seed), envir = base::globalenv(), inherits = FALSE)
})
}
## Packages needed by the future
pkgs <- packages(future)
if (length(pkgs) > 0) {
if (debug) mdebugf("Packages needed by the future expression (n = %d): %s", length(pkgs), paste(sQuote(pkgs), collapse = ", "))
} else {
if (debug) mdebug("Packages needed by the future expression (n = 0): <none>")
}
## Future strategies
strategies <- plan("list")
stop_if_not(length(strategies) >= 1L)
## Pass down the default or the remain set of future strategies?
strategiesR <- strategies[-1]
## mdebugf("Number of remaining strategies: %d", length(strategiesR))
## Identify packages needed by the futures
if (length(strategiesR) > 0L) {
## Identify package namespaces needed for strategies
pkgsS <- lapply(strategiesR, FUN = environment)
pkgsS <- lapply(pkgsS, FUN = environmentName)
pkgsS <- unique(unlist(pkgsS, use.names = FALSE))
## CLEANUP: Only keep those that are loaded in the current session
pkgsS <- intersect(pkgsS, loadedNamespaces())
if (debug) mdebugf("Packages needed by future strategies (n = %d): %s", length(pkgsS), paste(sQuote(pkgsS), collapse = ", "))
pkgs <- unique(c(pkgs, pkgsS))
} else {
if (debug) mdebug("Packages needed by future strategies (n = 0): <none>")
}
## Make sure to load and attach all package needed
if (length(pkgs) > 0L) {
## Sanity check by verifying packages can be loaded already here
## If there is somethings wrong in 'pkgs', we get the error
## already before launching the future.
for (pkg in pkgs) loadNamespace(pkg)
enter <- bquote({
## covr: skip=3
.(enter)
## TROUBLESHOOTING: If the package fails to load, then library()
## suppress that error and generates a generic much less
## informative error message. Because of this, we load the
## namespace first (to get a better error message) and then
## calls library(), which attaches the package. /HB 2016-06-16
## NOTE: We use local() here such that 'pkg' is not assigned
## to the future environment. /HB 2016-07-03
base::local({
for (pkg in .(pkgs)) {
base::loadNamespace(pkg)
base::library(pkg, character.only = TRUE)
}
})
})
}
## Make sure to set all nested future strategies needed
## Use default future strategy?
if (length(strategiesR) == 0L) strategiesR <- "default"
## Pass down future strategies
enter <- bquote({
## covr: skip=2
.(enter)
future::plan(.(strategiesR), .cleanup = FALSE, .init = FALSE)
})
## Reset future strategies when done
exit <- bquote({
## covr: skip=2
.(exit)
future::plan(.(strategies), .cleanup = FALSE, .init = FALSE)
})
expr <- makeExpression(expr = expr, local = local, stdout = stdout, conditionClasses = conditionClasses, split = split, enter = enter, exit = exit, ..., version = version)
if (getOption("future.debug", FALSE)) mprint(expr)
## mdebug("getExpression() ... DONE")
expr
} ## getExpression()
makeExpression <- local({
skip <- skip.local <- NULL
function(expr, local = TRUE, immediateConditions = FALSE, stdout = TRUE, conditionClasses = NULL, split = FALSE, globals.onMissing = getOption("future.globals.onMissing", NULL), enter = NULL, exit = NULL, version = "1.8") {
if (immediateConditions && !is.null(conditionClasses)) {
immediateConditionClasses <- getOption("future.relay.immediate", "immediateCondition")
conditionClasses <- unique(c(conditionClasses, immediateConditionClasses))
} else {
immediateConditionClasses <- character(0L)
}
if (is.null(skip)) {
## WORKAROUND: skip = c(7/12, 3) makes assumption about withCallingHandlers()
## and local(). In case this changes, provide internal options to adjust this.
## /HB 2018-12-28
skip <<- getOption("future.makeExpression.skip", c(6L, 3L))
skip.local <<- getOption("future.makeExpression.skip.local", c(12L, 3L))
}
## Evaluate expression in a local() environment?
if (local) {
expr <- bquote(base::local(.(expr)))
skip <- skip.local
}
## Set and reset certain future.* options etc.
enter <- bquote({
## Start time for future evaluation
...future.startTime <- base::Sys.time()
## covr: skip=7
...future.oldOptions <- base::options(
## Prevent .future.R from being source():d when future is attached
future.startup.script = FALSE,
## Assert globals when future is created (or at run time)?
future.globals.onMissing = .(globals.onMissing),
## Pass down other future.* options
future.globals.maxSize = .(getOption("future.globals.maxSize")),
future.globals.method = .(getOption("future.globals.method")),
future.globals.onMissing = .(getOption("future.globals.onMissing")),
future.globals.onReference = .(getOption("future.globals.onReference")),
future.globals.resolve = .(getOption("future.globals.resolve")),
future.resolve.recursive = .(getOption("future.resolve.recursive")),
future.rng.onMisuse = .(getOption("future.rng.onMisuse")),
## Other options relevant to making futures behave consistently
## across backends
width = .(getOption("width"))
)
.(enter)
})
exit <- bquote({
.(exit)
base::options(...future.oldOptions)
})
## NOTE: We don't want to use local(body) w/ on.exit() because
## evaluation in a local is optional, cf. argument 'local'.
## If this was mandatory, we could. Instead we use
## a tryCatch() statement. /HB 2016-03-14
if (version == "1.8") {
expr <- bquote({
## covr: skip=6
.(enter)
## Capture standard output?
if (.(base::is.na(stdout))) { ## stdout = NA
## Don't capture, but also don't block any output
} else {
if (.(stdout)) { ## stdout = TRUE
## Capture all output
## NOTE: Capturing to a raw connection is much more efficient
## than to a character connection, cf.
## https://www.jottr.org/2014/05/26/captureoutput/
...future.stdout <- base::rawConnection(base::raw(0L), open = "w")
} else { ## stdout = FALSE
## Silence all output by sending it to the void
...future.stdout <- base::file(
base::switch(.Platform$OS.type, windows = "NUL", "/dev/null"),
open = "w"
)
}
base::sink(...future.stdout, type = "output", split = .(split))
base::on.exit(if (!base::is.null(...future.stdout)) {
base::sink(type = "output", split = .(split))
base::close(...future.stdout)
}, add = TRUE)
}
...future.frame <- base::sys.nframe()
...future.conditions <- base::list()
...future.rng <- base::globalenv()$.Random.seed
...future.result <- base::tryCatch({
base::withCallingHandlers({
...future.value <- base::withVisible(.(expr))
future::FutureResult(value = ...future.value$value, visible = ...future.value$visible, rng = !identical(base::globalenv()$.Random.seed, ...future.rng), started = ...future.startTime, version = "1.8")
}, condition = base::local({
## WORKAROUND: If the name of any of the below objects/functions
## coincides with a promise (e.g. a future assignment) then we
## we will end up with a recursive evaluation resulting in error:
## "promise already under evaluation: recursive default argument
## reference or earlier problems?"
## To avoid this, we make sure to import the functions explicitly
## /HB 2018-12-22
c <- base::c
inherits <- base::inherits
invokeRestart <- base::invokeRestart
length <- base::length
list <- base::list
seq.int <- base::seq.int
signalCondition <- base::signalCondition
sys.calls <- base::sys.calls
`[[` <- base::`[[`
`+` <- base::`+`
`<<-` <- base::`<<-`
sysCalls <- function(calls = sys.calls(), from = 1L) {
calls[seq.int(from = from + .(skip[1L]), to = length(calls) - .(skip[2L]))]
}
function(cond) {
## Handle error:s specially
if (inherits(cond, "error")) {
sessionInformation <- function() {
list(
r = base::R.Version(),
locale = base::Sys.getlocale(),
rngkind = base::RNGkind(),
namespaces = base::loadedNamespaces(),
search = base::search(),
system = base::Sys.info()
)
}
## Record condition
...future.conditions[[length(...future.conditions) + 1L]] <<- list(
condition = cond,
calls = c(sysCalls(from = ...future.frame), cond$call),
session = sessionInformation(),
timestamp = base::Sys.time(),
signaled = 0L
)
signalCondition(cond)
} else if (.(!is.null(conditionClasses)) &&
inherits(cond, .(conditionClasses))) {
## Relay 'immediateCondition' conditions immediately?
## If so, then do not muffle it and flag it as signalled
## already here.
signal <- .(immediateConditions) && inherits(cond, .(immediateConditionClasses))
## Record condition
...future.conditions[[length(...future.conditions) + 1L]] <<- list(
condition = cond,
signaled = base::as.integer(signal)
)
if (.(immediateConditions && !split) && !signal) {
## muffleCondition <- future:::muffleCondition()
muffleCondition <- .(muffleCondition)
muffleCondition(cond)
}
} else {
if (.(!split && !is.null(conditionClasses))) {
## Muffle all non-captured conditions
## muffleCondition <- future:::muffleCondition()
muffleCondition <- .(muffleCondition)
muffleCondition(cond)
}
}
}
}) ## local()
) ## withCallingHandlers()
}, error = function(ex) {
base::structure(base::list(
value = NULL,
visible = NULL,
conditions = ...future.conditions,
rng = !identical(base::globalenv()$.Random.seed, ...future.rng),
version = "1.8"
), class = "FutureResult")
}, finally = .(exit))
if (.(!base::is.na(stdout))) {
base::sink(type = "output", split = .(split))
if (.(stdout)) {
...future.result$stdout <- base::rawToChar(
base::rawConnectionValue(...future.stdout)
)
} else {
...future.result["stdout"] <- base::list(NULL)
}
base::close(...future.stdout)
...future.stdout <- NULL
}
...future.result$conditions <- ...future.conditions
...future.result
})
} else {
stop(FutureError("Internal error: Non-supported future expression version: ", version))
}
expr
}
}) ## makeExpression()
globals <- function(future, ...) UseMethod("globals")
globals.Future <- function(future, ...) {
future[["globals"]]
}
packages <- function(future, ...) UseMethod("packages")
packages.Future <- function(future, ...) {
future[["packages"]]
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.