Error Handling
Puck's error handling is heavily inspired syntactically by Swift and semantically by the underlying effects system. It uses a combination of monadic error handling and effectful error propagation, with much in the way of syntactic sugar for conversion between the two, and leans somewhat heavily on Puck's metaprogramming capabilities. In comparison to Rust, it is considerably more dynamic by default.
There are several ways to handle errors in Puck. If the error is encoded in the type (as an Option
or Result
type), one can:
match
on the error- compactly match on the error with
if ... of
- propagate the error with
?
- throw the error with
!
If the error is thrown (encoded as an effect), one can:
- ignore the error, propagating it up the call stack
- recover from the error in a
try
block - convert the error to a
Result[T]
(monadic form)
If an error is thrown, one must explicitly handle it at some level of the stack, or risk runtime failure. This method of error handling may feel more familiar to Java programmers. The compiler will warn on - but not enforce catching - such unhandled errors.
Errors as monads
Puck provides Option[T]
and a Result[T, E]
types, imported by default. These are union
types under the hood and so must be pattern matched upon to be useful: but the standard library provides a bevy of helper functions.
Two in particular are of note. The ?
operator unwraps a Result or propagates its error up a function call (and may only be used in type-appropriate contexts). The !
operator unwraps an Option or Result directly or throws an exception in the case of None or Error.
pub macro ?[T, E](self: Result[T, E]) =
quote
match `self`
of Okay(x) then x
of Error(e) then return Error(e)
pub func ![T](self: Option[T]): T =
match self
of Some(x) then x
of None then raise "empty value"
pub func ![T, E](self: Result[T, E]): T =
match self
of Okay(x) then x
of Error(e) then raise e
The utility of the provided helpers in std.options
and std.results
should not be understated. While encoding errors into the type system may appear restrictive at first glance, some syntactic sugar goes a long way in writing compact and idiomatic code. Java programmers in particular are urged to give type-first errors a try, before falling back on unwraps and try
/with
.
A notable helpful type is the aliasing of Result[T]
to Result[T, ref Err]
, for when the particular error does not matter. This breaks match
exhaustion (as ref Err
denotes a reference to any Error), but is particularly useful when used in conjunction with the propagation operator.
Errors as checked exceptions
Some functions do not return a value but can still fail: for example, setters. This can make it difficult to do monadic error handling elegantly. One could return a type Success[E] = Result[void, E]
, but such an approach is somewhat inelegant. Instead: we treat an assert
within a function as having an effect: a possible failure, that can be handled and recovered from at any point in the call stack. If a possible exception is not handled within a function body, the function is implicitly marked by the compiler as throwing that exception.
pub type list[T] = struct
data: ptr T
capacity: uint
length: uint
@[safe]
pub func set[T](self: list[T], i: uint, val: T) =
if i > self.length then
raise IndexOutOfBounds
self.data.set(offset = i, val)
var foo = ["Hello", "world"]
foo.set(0, "Goodbye") # set can panic
# this propagates an IndexOutOfBounds effect up the call stack.
Despite functioning here as exceptions: errors remain types. An error thrown from an unwrapped Result[T, E]
is of type E
. with
statements, then, may pattern match upon possible errors, behaving semantically and syntactically similarly to of
branches: though notably not requiring exhaustion.
try
foo.set(0, "Goodbye")
with IndexOutOfBounds(index) then
dbg "Index out of bounds at {}".fmt(index)
panic
finally
...
This creates a distinction between two types of error handling, working in sync: functional error handling with Option and Result types, and object-oriented error handling with algebraic effects. These styles may be swapped between with minimal syntactic overhead. It is up to libraries to determine which classes of errors are exceptional and best given the effect treatment and which should be explicitly handled monadically. Libraries should tend towards using Option
/Result
as this provides the best support for both styles (thanks to the !
operator).
Unrecoverable exceptions
There exist errors from which a program can not reasonably recover. These are the following:
Assertation Failure
: a call to an unhandledassert
function has returned false at runtime.Out of Memory
: the executable is out of memory.Stack Overflow
: the executable has overflowed the stack.- any others?
They are not recoverable, and not handled within the effects system, but the user should be aware of them as possible failure conditions.
References