Nothing
#' @tags %dofuture%
#' @tags %dopar%
#' @tags detritus-files
#' @tags sequential multisession cluster multicore
library(doFuture)
strategies <- future:::supportedStrategies()
message("*** doFuture() - error handling w/ .errorhandling in c('stop', 'remove', 'pass') ...")
.options.future <- list(errors = "foreach")
for (strategy in strategies) {
message(sprintf("- plan('%s') ...", strategy))
plan(strategy)
mu <- 1.0
sigma <- 2.0
message("Futureverse-style error handling ...")
res <- tryCatch({
foreach(i = 1:10) %dofuture% {
if (i %% 2 == 0) stop(sprintf("Index error ('stop'), because i = %d", i))
list(i = i, value = dnorm(i, mean = mu, sd = sigma))
}
}, error = identity)
str(res)
stopifnot(
inherits(res, "error")
)
message("Futureverse-style error handling ... DONE")
for (.errorhandling in c("stop", "remove", "pass")) {
message(sprintf(".errorhandling = '%s' ...", .errorhandling))
truth <- tryCatch({
foreach(i = 1:10, .errorhandling = .errorhandling, .options.future = .options.future) %dopar% {
if (i %% 2 == 0) stop(sprintf("Index error ('stop'), because i = %d", i))
list(i = i, value = dnorm(i, mean = mu, sd = sigma))
}
}, error = identity)
str(truth)
res <- tryCatch({
foreach(i = 1:10, .errorhandling = .errorhandling, .options.future = .options.future) %dofuture% {
if (i %% 2 == 0) stop(sprintf("Index error ('stop'), because i = %d", i))
list(i = i, value = dnorm(i, mean = mu, sd = sigma))
}
}, error = identity)
str(res)
stopifnot(
length(res) == length(truth),
identical(names(res), names(truth))
)
if (inherits(res, "condition")) {
stopifnot(identical(conditionMessage(res), conditionMessage(truth)))
}
if (.errorhandling == "stop") {
stopifnot(
inherits(res, "error"),
grepl("Index error", conditionMessage(res)),
identical(conditionMessage(res), conditionMessage(truth))
)
} else if (.errorhandling == "remove") {
stopifnot(identical(res, truth))
} else if (.errorhandling == "pass") {
mapply(res, truth, FUN = function(r, t) {
if (inherits(r, "error")) {
r$call <- NULL
t$call <- NULL
stopifnot(identical(r, t))
}
})
}
message(sprintf(".errorhandling = '%s' ... done", .errorhandling))
} ## for (.errorhandling ...)
# Shutdown current plan
plan(sequential)
message(sprintf("- plan('%s') ... DONE", strategy))
} ## for (strategy ...)
message("*** doFuture() - error handling w/ .errorhandling in c('stop', 'remove', 'pass') ... DONE")
message("*** doFuture() - error handling w/ 'pass' ...")
for (strategy in strategies) {
message(sprintf("- plan('%s') ...", strategy))
plan(strategy)
mu <- 1.0
sigma <- 2.0
res <- foreach(i = 1:10, .errorhandling = "pass", .options.future = .options.future) %dofuture% {
if (i %% 2 == 0) stop(sprintf("Index error ('pass'), because i = %d", i))
list(i = i, value = dnorm(i, mean = mu, sd = sigma))
}
str(res)
stopifnot(
is.list(res),
length(res) == 10L
)
# Shutdown current plan
plan(sequential)
message(sprintf("- plan('%s') ... DONE", strategy))
} ## for (strategy ...)
message("*** doFuture() - error handling w/ 'pass' ... DONE")
message("*** doFuture() - error handling w/ 'remove' ...")
for (strategy in strategies) {
message(sprintf("- plan('%s') ...", strategy))
plan(strategy)
mu <- 1.0
sigma <- 2.0
res <- foreach(i = 1:10, .errorhandling = "remove", .options.future = .options.future) %dofuture% {
if (i %% 2 == 0) stop(sprintf("Index error ('remove'), because i = %d", i))
list(i = i, value = dnorm(i, mean = mu, sd = sigma))
}
str(res)
stopifnot(
is.list(res),
length(res) == 5L
)
# Shutdown current plan
plan(sequential)
message(sprintf("- plan('%s') ... DONE", strategy))
} ## for (strategy ...)
message("*** doFuture() - error handling w/ 'remove' ... DONE")
message("*** doFuture() - invalid accumulator ...")
boom <- function(...) stop("boom!")
res <- tryCatch({
foreach(i = 1:3, .combine = boom) %dofuture% { i }
}, error = identity)
print(res)
stopifnot(
inherits(res, "error"),
inherits(res, "FutureError")
)
message("*** doFuture() - invalid accumulator ... DONE")
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.