Title: | Defer Errors |
---|---|
Description: | Create errors that can be deferred until later. With deferrable errors, collections of errors that are not immediately fatal can be collected and reported back at once. |
Authors: | Rich FitzJohn [aut, cre], Imperial College of Science, Technology and Medicine [cph] |
Maintainer: | Rich FitzJohn <[email protected]> |
License: | MIT + file LICENSE |
Version: | 0.1.0 |
Built: | 2024-11-11 04:44:36 UTC |
Source: | https://github.com/reside-ic/defer |
Run a block of code, collecting any deferrable_error
calls that occur. Ordinary errors will be thrown immediately.
defer_errors(expr, handler = stop)
defer_errors(expr, handler = stop)
expr |
An expression to evaluate |
handler |
The final handler for the deferred errors. The
default is |
The error object will contain an element errors
with the
deferred errors, each of which will contain elements
message
, call
(the call that precedes
deferrable_error
and calls
which contains the
"interesting" part of the stack trace (i.e., only calls below the
defer_errors
infrastructure).
check_positive <- function(x) { if (x < 0) { deferrable_error(paste("got a negative number:", x)) } } err <- tryCatch( defer::defer_errors({ check_positive(0) check_positive(-1) check_positive(-2) }), error = identity) err # Directly return the error: err <- defer::defer_errors({ check_positive(0) check_positive(-1) check_positive(-2) }, handler = return) # Stack traces are included to improve downstream reporting: f <- function(x) { g(x) } g <- function(x) { check_positive(x) } err <- defer_errors({ f(0) f(-1) f(-2) }, handler = return) err$errors[[1]]$calls
check_positive <- function(x) { if (x < 0) { deferrable_error(paste("got a negative number:", x)) } } err <- tryCatch( defer::defer_errors({ check_positive(0) check_positive(-1) check_positive(-2) }), error = identity) err # Directly return the error: err <- defer::defer_errors({ check_positive(0) check_positive(-1) check_positive(-2) }, handler = return) # Stack traces are included to improve downstream reporting: f <- function(x) { g(x) } g <- function(x) { check_positive(x) } err <- defer_errors({ f(0) f(-1) f(-2) }, handler = return) err$errors[[1]]$calls
Create an error that will stop immediately, or can be continued from.
deferrable_error(message)
deferrable_error(message)
message |
The error message |
# Deferrable errors will throw immediately if no suitable calling # handlers are established: tryCatch( deferrable_error("my error"), error = identity) # Create a deferrable error and continue from it, using # withCallingHandlers: value <- withCallingHandlers({ x <- 1 defer::deferrable_error("a deferrable error") x * 2 }, deferrable_error = function(e) invokeRestart("continue_deferrable_error"))
# Deferrable errors will throw immediately if no suitable calling # handlers are established: tryCatch( deferrable_error("my error"), error = identity) # Create a deferrable error and continue from it, using # withCallingHandlers: value <- withCallingHandlers({ x <- 1 defer::deferrable_error("a deferrable error") x * 2 }, deferrable_error = function(e) invokeRestart("continue_deferrable_error"))
Within a defer_errors
block, flush any deferred
errors, turning them into realised errors. If no deferrable
errors have occurred, this function has no effect.
deferred_errors_flush()
deferred_errors_flush()
check_positive <- function(x) { if (x < 0) { deferrable_error(paste("got a negative number:", x)) } } err <- tryCatch( defer::defer_errors({ check_positive(-1) defer::deferred_errors_flush() check_positive(-2) }), error = identity) err
check_positive <- function(x) { if (x < 0) { deferrable_error(paste("got a negative number:", x)) } } err <- tryCatch( defer::defer_errors({ check_positive(-1) defer::deferred_errors_flush() check_positive(-2) }), error = identity) err