Merge pull request #78 from cosmicexplorer/oldpr397

refactor: use displaydoc and thiserror to remove some boilerplate
This commit is contained in:
Chris Hennick 2024-05-02 20:43:46 +00:00 committed by GitHub
commit 90dc62ba18
Signed by: DevComp
GPG key ID: B5690EEEBB952194
3 changed files with 17 additions and 41 deletions

View file

@ -28,10 +28,12 @@ bzip2 = { version = "0.4.4", optional = true }
chrono = { version = "0.4.38", optional = true } chrono = { version = "0.4.38", optional = true }
constant_time_eq = { version = "0.3.0", optional = true } constant_time_eq = { version = "0.3.0", optional = true }
crc32fast = "1.4.0" crc32fast = "1.4.0"
displaydoc = { version = "0.2.4", default-features = false }
flate2 = { version = "1.0.28", default-features = false, optional = true } flate2 = { version = "1.0.28", default-features = false, optional = true }
hmac = { version = "0.12.1", optional = true, features = ["reset"] } hmac = { version = "0.12.1", optional = true, features = ["reset"] }
pbkdf2 = { version = "0.12.2", optional = true } pbkdf2 = { version = "0.12.2", optional = true }
sha1 = { version = "0.10.6", optional = true } sha1 = { version = "0.10.6", optional = true }
thiserror = "1.0.48"
time = { workspace = true, optional = true, features = [ time = { workspace = true, optional = true, features = [
"std", "std",
] } ] }

51
src/result.rs Normal file → Executable file
View file

@ -1,67 +1,38 @@
#![allow(unknown_lints)] // non_local_definitions isn't in Rust 1.70
#![allow(non_local_definitions)]
//! Error types that can be emitted from this library //! Error types that can be emitted from this library
use displaydoc::Display;
use thiserror::Error;
use std::error::Error; use std::error::Error;
use std::fmt; use std::fmt;
use std::io; use std::io;
use std::io::IntoInnerError;
use std::num::TryFromIntError; use std::num::TryFromIntError;
/// 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>;
/// Error type for Zip /// Error type for Zip
#[derive(Debug)] #[derive(Debug, Display, Error)]
#[non_exhaustive] #[non_exhaustive]
pub enum ZipError { pub enum ZipError {
/// An Error caused by I/O /// i/o error: {0}
Io(io::Error), Io(#[from] io::Error),
/// This file is probably not a zip archive /// invalid Zip archive: {0}
InvalidArchive(&'static str), InvalidArchive(&'static str),
/// This archive is not supported /// unsupported Zip archive: {0}
UnsupportedArchive(&'static str), UnsupportedArchive(&'static str),
/// The requested file could not be found in the archive /// specified file not found in archive
FileNotFound, FileNotFound,
/// The password provided is incorrect /// The password provided is incorrect
InvalidPassword, InvalidPassword,
} }
impl From<io::Error> for ZipError {
fn from(err: io::Error) -> ZipError {
ZipError::Io(err)
}
}
impl<W> From<IntoInnerError<W>> for ZipError {
fn from(value: IntoInnerError<W>) -> Self {
ZipError::Io(value.into_error())
}
}
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"),
ZipError::InvalidPassword => write!(fmt, "incorrect password for encrypted file"),
}
}
}
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
/// ///

View file

@ -1419,7 +1419,10 @@ impl<W: Write + Seek> GenericZipWriter<W> {
#[cfg(feature = "deflate-zopfli")] #[cfg(feature = "deflate-zopfli")]
GenericZipWriter::ZopfliDeflater(w) => w.finish()?, GenericZipWriter::ZopfliDeflater(w) => w.finish()?,
#[cfg(feature = "deflate-zopfli")] #[cfg(feature = "deflate-zopfli")]
GenericZipWriter::BufferedZopfliDeflater(w) => w.into_inner()?.finish()?, GenericZipWriter::BufferedZopfliDeflater(w) => w
.into_inner()
.map_err(|e| ZipError::Io(e.into_error()))?
.finish()?,
#[cfg(feature = "bzip2")] #[cfg(feature = "bzip2")]
GenericZipWriter::Bzip2(w) => w.finish()?, GenericZipWriter::Bzip2(w) => w.finish()?,
#[cfg(feature = "zstd")] #[cfg(feature = "zstd")]