From 70696f57c1350b15fe1bbc8fc95f16896b78910c Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Mon, 6 Sep 2021 23:22:23 +0200 Subject: [PATCH] Remove dependency on thiserror MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On my computer, this halves the total build time from 11.7s to 5.4s, as well as the total size of the artifacts in target. This derive macro is nice, but it doesn’t justify the increase in compilation time for dependent crates imo. This effectively reverts #135, although using the up to date APIs from std::error::Error. --- Cargo.toml | 1 - src/result.rs | 49 +++++++++++++++++++++++++++++++++++++++---------- 2 files changed, 39 insertions(+), 11 deletions(-) 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 ///