Merge pull request #250 from linkmauve/no-thiserror
Remove dependency on thiserror
This commit is contained in:
commit
afc84af4aa
2 changed files with 39 additions and 11 deletions
|
@ -16,7 +16,6 @@ time = { version = "0.3", features = ["formatting", "macros" ], optional = true
|
||||||
byteorder = "1.3"
|
byteorder = "1.3"
|
||||||
bzip2 = { version = "0.4", optional = true }
|
bzip2 = { version = "0.4", optional = true }
|
||||||
crc32fast = "1.1.1"
|
crc32fast = "1.1.1"
|
||||||
thiserror = "1.0.7"
|
|
||||||
zstd = { version = "0.10", optional = true }
|
zstd = { version = "0.10", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|
|
@ -1,37 +1,66 @@
|
||||||
//! Error types that can be emitted from this library
|
//! Error types that can be emitted from this library
|
||||||
|
|
||||||
|
use std::error::Error;
|
||||||
|
use std::fmt;
|
||||||
use std::io;
|
use std::io;
|
||||||
|
|
||||||
use thiserror::Error;
|
|
||||||
|
|
||||||
/// Generic result type with ZipError as its error variant
|
/// Generic result type with ZipError as its error variant
|
||||||
pub type ZipResult<T> = Result<T, ZipError>;
|
pub type ZipResult<T> = Result<T, ZipError>;
|
||||||
|
|
||||||
/// The given password is wrong
|
/// The given password is wrong
|
||||||
#[derive(Error, Debug)]
|
#[derive(Debug)]
|
||||||
#[error("invalid password for file in archive")]
|
|
||||||
pub struct InvalidPassword;
|
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
|
/// Error type for Zip
|
||||||
#[derive(Debug, Error)]
|
#[derive(Debug)]
|
||||||
pub enum ZipError {
|
pub enum ZipError {
|
||||||
/// An Error caused by I/O
|
/// An Error caused by I/O
|
||||||
#[error(transparent)]
|
Io(io::Error),
|
||||||
Io(#[from] io::Error),
|
|
||||||
|
|
||||||
/// This file is probably not a zip archive
|
/// This file is probably not a zip archive
|
||||||
#[error("invalid Zip archive")]
|
|
||||||
InvalidArchive(&'static str),
|
InvalidArchive(&'static str),
|
||||||
|
|
||||||
/// This archive is not supported
|
/// This archive is not supported
|
||||||
#[error("unsupported Zip archive")]
|
|
||||||
UnsupportedArchive(&'static str),
|
UnsupportedArchive(&'static str),
|
||||||
|
|
||||||
/// The requested file could not be found in the archive
|
/// The requested file could not be found in the archive
|
||||||
#[error("specified file not found in archive")]
|
|
||||||
FileNotFound,
|
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 {
|
impl ZipError {
|
||||||
/// The text used as an error when a password is required and not supplied
|
/// The text used as an error when a password is required and not supplied
|
||||||
///
|
///
|
||||||
|
|
Loading…
Add table
Reference in a new issue