feat: Improve ErrorKind in ZipError to io::Error conversion (previously https://github.com/zip-rs/zip-old/pull/421)

This commit is contained in:
Chris Hennick 2024-04-29 19:16:31 -07:00
parent 9739df01dc
commit 686f6f1abf
No known key found for this signature in database
GPG key ID: DA47AABA4961C509
2 changed files with 10 additions and 2 deletions

View file

@ -4,4 +4,4 @@ fn main() {
if var("CARGO_FEATURE_DEFLATE_MINIZ").is_ok() {
println!("cargo:warning=Feature `deflate-miniz` is deprecated; replace it with `deflate`");
}
}
}

View file

@ -79,7 +79,15 @@ impl ZipError {
impl From<ZipError> for 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)
}
}