Merge branch 'master' into cleanup
This commit is contained in:
commit
0b6caba281
2 changed files with 10 additions and 58 deletions
|
@ -18,6 +18,7 @@ time = { version = "0.1", optional = true }
|
||||||
podio = "0.1"
|
podio = "0.1"
|
||||||
bzip2 = { version = "0.3", optional = true }
|
bzip2 = { version = "0.3", optional = true }
|
||||||
crc32fast = "1.0"
|
crc32fast = "1.0"
|
||||||
|
thiserror = "1.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
bencher = "0.1"
|
bencher = "0.1"
|
||||||
|
|
|
@ -1,77 +1,28 @@
|
||||||
//! Error types that can be emitted from this library
|
//! Error types that can be emitted from this library
|
||||||
|
|
||||||
use std::convert;
|
|
||||||
use std::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>;
|
||||||
|
|
||||||
/// Error type for Zip
|
/// Error type for Zip
|
||||||
#[derive(Debug)]
|
#[derive(Debug, Error)]
|
||||||
pub enum ZipError {
|
pub enum ZipError {
|
||||||
/// An Error caused by I/O
|
/// An Error caused by I/O
|
||||||
Io(io::Error),
|
#[error(transparent)]
|
||||||
|
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 ZipError {
|
|
||||||
fn detail(&self) -> ::std::borrow::Cow<'_, str> {
|
|
||||||
use std::error::Error;
|
|
||||||
|
|
||||||
match *self {
|
|
||||||
ZipError::Io(ref io_err) => {
|
|
||||||
("Io Error: ".to_string() + (io_err as &dyn error::Error).description()).into()
|
|
||||||
}
|
|
||||||
ZipError::InvalidArchive(msg) | ZipError::UnsupportedArchive(msg) => {
|
|
||||||
(self.description().to_string() + ": " + msg).into()
|
|
||||||
}
|
|
||||||
ZipError::FileNotFound => self.description().into(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl convert::From<io::Error> for ZipError {
|
|
||||||
fn from(err: io::Error) -> ZipError {
|
|
||||||
ZipError::Io(err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl convert::From<ZipError> for io::Error {
|
|
||||||
fn from(err: ZipError) -> io::Error {
|
|
||||||
io::Error::new(io::ErrorKind::Other, err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl fmt::Display for ZipError {
|
|
||||||
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
|
|
||||||
fmt.write_str(&*self.detail())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl error::Error for ZipError {
|
|
||||||
fn description(&self) -> &str {
|
|
||||||
match *self {
|
|
||||||
ZipError::Io(ref io_err) => (io_err as &dyn error::Error).description(),
|
|
||||||
ZipError::InvalidArchive(..) => "Invalid Zip archive",
|
|
||||||
ZipError::UnsupportedArchive(..) => "Unsupported Zip archive",
|
|
||||||
ZipError::FileNotFound => "Specified file not found in archive",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn cause(&self) -> Option<&dyn error::Error> {
|
|
||||||
match *self {
|
|
||||||
ZipError::Io(ref io_err) => Some(io_err as &dyn error::Error),
|
|
||||||
_ => None,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Add table
Reference in a new issue