Remove dependency on thiserror

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.
This commit is contained in:
Emmanuel Gil Peyrot 2021-09-06 23:22:23 +02:00
parent 7edf2489d5
commit 70696f57c1
2 changed files with 39 additions and 11 deletions

View file

@ -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"

View file

@ -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<T> = Result<T, ZipError>;
/// 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<io::Error> 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
///