diff --git a/Cargo.toml b/Cargo.toml index 2ce7e602..ae78ae33 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,6 @@ time = { version = "0.1", optional = true } byteorder = "1.3" bzip2 = { version = "0.4", optional = true } crc32fast = "1.0" -thiserror = "1.0" [dev-dependencies] bencher = "0.1" diff --git a/src/result.rs b/src/result.rs index 5d5ab459..72a30e48 100644 --- a/src/result.rs +++ b/src/result.rs @@ -1,37 +1,66 @@ //! Error types that can be emitted from this library +use std::error::Error; +use std::fmt; use std::io; -use thiserror::Error; - /// Generic result type with ZipError as its error variant pub type ZipResult = Result; /// The given password is wrong -#[derive(Error, Debug)] -#[error("invalid password for file in archive")] +#[derive(Debug)] pub struct InvalidPassword; +impl fmt::Display for InvalidPassword { + fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result { + write!(fmt, "invalid password for file in archive") + } +} + +impl Error for InvalidPassword {} + /// Error type for Zip -#[derive(Debug, Error)] +#[derive(Debug)] pub enum ZipError { /// An Error caused by I/O - #[error(transparent)] - Io(#[from] io::Error), + Io(io::Error), /// This file is probably not a zip archive - #[error("invalid Zip archive")] InvalidArchive(&'static str), /// This archive is not supported - #[error("unsupported Zip archive")] UnsupportedArchive(&'static str), /// The requested file could not be found in the archive - #[error("specified file not found in archive")] FileNotFound, } +impl From for ZipError { + fn from(err: io::Error) -> ZipError { + ZipError::Io(err) + } +} + +impl fmt::Display for ZipError { + fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result { + match self { + ZipError::Io(err) => write!(fmt, "{}", err), + ZipError::InvalidArchive(err) => write!(fmt, "invalid Zip archive: {}", err), + ZipError::UnsupportedArchive(err) => write!(fmt, "unsupported Zip archive: {}", err), + ZipError::FileNotFound => write!(fmt, "specified file not found in archive"), + } + } +} + +impl Error for ZipError { + fn source(&self) -> Option<&(dyn Error + 'static)> { + match self { + ZipError::Io(err) => Some(err), + _ => None, + } + } +} + impl ZipError { /// The text used as an error when a password is required and not supplied ///