Merge pull request #44 from zip-rs/oldpr421
fix: Improve ErrorKind in ZipError to io::Error conversion
This commit is contained in:
commit
90fd957bc9
4 changed files with 17 additions and 1 deletions
|
@ -16,6 +16,7 @@ Library to support the reading and writing of zip files.
|
||||||
"""
|
"""
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
exclude = ["tests/**", "examples/**", ".github/**", "fuzz/**"]
|
exclude = ["tests/**", "examples/**", ".github/**", "fuzz/**"]
|
||||||
|
build = "src/build.rs"
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
time = { version = "0.3.36", default-features = false }
|
time = { version = "0.3.36", default-features = false }
|
||||||
|
|
0
fuzz/corpus/seed/short_read.zip
Normal file
0
fuzz/corpus/seed/short_read.zip
Normal file
7
src/build.rs
Normal file
7
src/build.rs
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
use std::env::var;
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
if var("CARGO_FEATURE_DEFLATE_MINIZ").is_ok() {
|
||||||
|
println!("cargo:warning=Feature `deflate-miniz` is deprecated; replace it with `deflate`");
|
||||||
|
}
|
||||||
|
}
|
|
@ -79,7 +79,15 @@ impl ZipError {
|
||||||
|
|
||||||
impl From<ZipError> for io::Error {
|
impl From<ZipError> for io::Error {
|
||||||
fn from(err: ZipError) -> io::Error {
|
fn from(err: ZipError) -> io::Error {
|
||||||
io::Error::new(io::ErrorKind::Other, err)
|
let kind = match &err {
|
||||||
|
ZipError::Io(err) => err.kind(),
|
||||||
|
ZipError::InvalidArchive(_) => io::ErrorKind::InvalidData,
|
||||||
|
ZipError::UnsupportedArchive(_) => io::ErrorKind::Unsupported,
|
||||||
|
ZipError::FileNotFound => io::ErrorKind::NotFound,
|
||||||
|
ZipError::InvalidPassword => io::ErrorKind::InvalidInput,
|
||||||
|
};
|
||||||
|
|
||||||
|
io::Error::new(kind, err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue