The aim of this library is to support writing command line programs in Rust by simplifying error handling in program code.
It introduces Problem
type which can be used on high level APIs for which error handling boils down to:
- reporting error message (e.g. log with
error!
macro), - aborting program on error other than a bug (e.g. using
panic!
macro), - ignoring error.
Goals
- Simplifying type signatures around error handling to one type so they compose easily
- Allow errors to bubble up easily by elimination of life times in error types
- Produce user friendly error messages with
Display
formatting - Support multiple ways to add context to error message
- Easy to work with existing types and patterns
- No performance impact on
Ok
path
Non Goals
- Providing ability to match on particular error variant to facilitate handling of error condition
- High performance of
Err
path - e.g. zero allocation Sync
andSend
compatibility
Problem type
Problem
type is core of this library. It is basically a wrapper around String
.
In order to support conversion from types implementing Error
trait it does not implement this trait.
When converting other errors to Problem
the Display
message is produced of the original error and stored in Problem
as cause message.
Additionally Problem
can also store message and another Problem
which allows for nesting multiple contexts and problem causes.
Creating Problem
There are multiple ways to crate Problem
value.
Directly
Using Problem::cause(msg)
function.
;
cause
Implicitly
Types implementing Error
trait can be converted to Problem
via From
trait so that ?
will work.
assert_eq!;
Explicitly
Any type that implements ToString
or Display
can be converted to Problem
with .to_problem()
.
assert_eq!;
From Option
Often when working with C libraries actual errors may be unknown and function Result
will have Option<impl Error>
for their Err
variant type.
.to_problem()
method is implemented for Option<E>
and will contain "<unknown error>" message for None
variant.
let unknown: = None;
let known: = Some;
assert_eq!;
assert_eq!;
By mapping Result
Result<T, E>
can be mapped into Result<T, Problem>
with .map_problem()
function.
let res: = Err;
assert_eq!;
By conversion of Option to Result
Option<T>
can be converted into Result<T, Problem>
with .ok_or_problem(message)
function.
let opt: = None;
assert_eq!;
Adding context to Problem
Inline
Methods .problem_while(message)
and .problem_while_with(|| message)
can be called on any Result
that error type can be implicitly converted to Problem
.
The _with
variant can be used to delay computation of error message to the moment when actual Err
variant has occurred.
let res = String from_utf8;
assert_eq!;
Wrapped
Functions in_context_of(message, closure)
and in_context_of_with(|| message, closure)
can be used to wrap block of code in closure.
This is useful when you want to add context to any error that can happen in the block of code with ?
operator.
The return type of the closure needs to be Result<T, Problem>
.
The _with
variant can be used to delay computation of error message to the moment when actual Err
variant has occurred.
let res = in_context_of;
assert_eq!;
Nested context
Context methods can be used multiple times to add another layer of context.
let res = in_context_of;
assert_eq!;
Aborting program on Problem
panic!(msg, problem)
macro can be used directly to abort program execution but error message printed on the screen will be formatted with Debug
implementation.
This library provides function format_panic_to_stderr()
to set up hook that will use eprintln!("{}", message)
to report panics.
Function format_panic_to_error_log()
will set up hook that will log with error!("{}", message)
to report panics.
Panicking on Result with Problem
Similarly to .expect(message)
, method .or_failed_to(message)
can be used to abort the program via panic!()
with Display
formatted message when called on Err
variant of Result
with error type implementing Display
trait.
format_panic_to_stderr;
// Prints message: Failed to convert string due to: invalid utf-8 sequence of 1 bytes from index 2
let _s = String from_utf8.or_failed_to;
Panicking on Option
Similarly to .ok_or(error)
, method .or_failed_to(message)
can be used to abort the program via panic!()
with formatted message on None
variant of Option
type.
format_panic_to_stderr;
let nothing: = None;
// Prints message: Failed to get something
let _s = nothing.or_failed_to;
Panicking on iterators of Result
Method .or_failed_to(message)
can be used to abort the program via panic!()
with formatted message on iterators with Result
item when first Err
is encountered otherwise unwrapping the Ok
value.
format_panic_to_stderr;
let results = vec!;
// Prints message: Failed to collect numbers due to: oops
let _ok: = results.into_iter
.or_failed_to
.collect;