|
|
|
@ -1,32 +1,27 @@
|
|
|
|
|
use crate::utils::VerboseErrorExt;
|
|
|
|
|
use crate::utils::Context;
|
|
|
|
|
|
|
|
|
|
/// Wrap `std::io::Error` with additional message
|
|
|
|
|
///
|
|
|
|
|
/// *Note* Only active when `verbose-errors` feature is enabled for this crate!
|
|
|
|
|
///
|
|
|
|
|
/// Keeps the original error kind and stores the original I/O error as `source`.
|
|
|
|
|
impl<T> VerboseErrorExt for Result<T, std::io::Error> {
|
|
|
|
|
#[cfg(feature = "verbose-errors")]
|
|
|
|
|
fn verbose_context(self, message: impl Fn() -> String) -> Self {
|
|
|
|
|
self.map_err(|e| verbose::Error::wrap(e, message()))
|
|
|
|
|
impl<T> Context for Result<T, std::io::Error> {
|
|
|
|
|
fn context(self, message: impl Fn() -> String) -> Self {
|
|
|
|
|
self.map_err(|e| VerboseError::wrap(e, message()))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "verbose-errors")]
|
|
|
|
|
mod verbose {
|
|
|
|
|
use std::{error::Error as StdError, fmt, io};
|
|
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
|
pub(crate) struct Error {
|
|
|
|
|
pub(crate) struct VerboseError {
|
|
|
|
|
source: io::Error,
|
|
|
|
|
message: String,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Error {
|
|
|
|
|
impl VerboseError {
|
|
|
|
|
pub(crate) fn wrap(source: io::Error, message: impl Into<String>) -> io::Error {
|
|
|
|
|
io::Error::new(
|
|
|
|
|
source.kind(),
|
|
|
|
|
Error {
|
|
|
|
|
VerboseError {
|
|
|
|
|
source,
|
|
|
|
|
message: message.into(),
|
|
|
|
|
},
|
|
|
|
@ -34,13 +29,13 @@ mod verbose {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl fmt::Display for Error {
|
|
|
|
|
impl fmt::Display for VerboseError {
|
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
|
write!(f, "{}", self.message)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl StdError for Error {
|
|
|
|
|
impl StdError for VerboseError {
|
|
|
|
|
fn description(&self) -> &str {
|
|
|
|
|
self.source.description()
|
|
|
|
|
}
|
|
|
|
@ -49,4 +44,3 @@ mod verbose {
|
|
|
|
|
Some(&self.source)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|