chainerror/examples/tutorial9.rs

41 lines
1.1 KiB
Rust
Raw Normal View History

2018-12-20 14:52:06 +01:00
use chainerror::*;
2018-12-20 10:08:54 +01:00
use std::error::Error;
use std::io;
use std::result::Result;
2019-03-12 16:43:53 +01:00
fn do_some_io() -> Result<(), Box<Error + Send + Sync>> {
2018-12-20 10:08:54 +01:00
Err(io::Error::from(io::ErrorKind::NotFound))?;
Ok(())
}
derive_str_cherr!(Func2Error);
2019-03-12 16:43:53 +01:00
fn func2() -> Result<(), Box<Error + Send + Sync>> {
2018-12-20 10:08:54 +01:00
let filename = "foo.txt";
do_some_io().map_err(mstrerr!(Func2Error, "Error reading '{}'", filename))?;
Ok(())
}
derive_str_cherr!(Func1ErrorFunc2);
derive_str_cherr!(Func1ErrorIO);
2019-03-12 16:43:53 +01:00
fn func1() -> Result<(), Box<Error + Send + Sync>> {
2018-12-20 10:08:54 +01:00
func2().map_err(mstrerr!(Func1ErrorFunc2, "func1 error calling func2"))?;
let filename = "bar.txt";
do_some_io().map_err(mstrerr!(Func1ErrorIO, "Error reading '{}'", filename))?;
Ok(())
}
2019-03-12 16:43:53 +01:00
fn main() -> Result<(), Box<Error + Send + Sync>> {
2018-12-20 10:08:54 +01:00
if let Err(e) = func1() {
if let Some(s) = e.downcast_ref::<ChainError<Func1ErrorIO>>() {
eprintln!("Func1ErrorIO:\n{:?}", s);
}
2018-12-21 13:50:08 +01:00
if let Some(s) = e.downcast_chain_ref::<Func1ErrorFunc2>() {
2018-12-20 10:08:54 +01:00
eprintln!("Func1ErrorFunc2:\n{:?}", s);
}
}
Ok(())
}