Merge pull request #250 from linkmauve/no-thiserror

Remove dependency on thiserror
This commit is contained in:
Alexander Zaitsev 2022-01-23 23:58:29 +03:00 committed by GitHub
commit afc84af4aa
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 11 deletions

View file

@ -16,7 +16,6 @@ time = { version = "0.3", features = ["formatting", "macros" ], optional = true
byteorder = "1.3"
bzip2 = { version = "0.4", optional = true }
crc32fast = "1.1.1"
thiserror = "1.0.7"
zstd = { version = "0.10", optional = true }
[dev-dependencies]

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
///