Refactor: replace contains_file_named with index_for_name

This commit is contained in:
Chris Hennick 2024-04-20 12:31:00 -07:00
parent c22afbf3c7
commit 81e44d1d41
No known key found for this signature in database
GPG key ID: DA47AABA4961C509
2 changed files with 8 additions and 10 deletions

View file

@ -273,5 +273,5 @@
### Added
- `contains_file_named`: check whether a file entry exists in a zip file, without initializing the
metadata or needing to mutably borrow the `ZipArchive`.
- `index_for_name`: get the index of a file given its name, without initializing metadata or needing to mutably borrow
the `ZipArchive`.

View file

@ -651,9 +651,10 @@ impl<R: Read + Seek> ZipArchive<R> {
self.by_name_with_optional_password(name, None)
}
/// Check for a file entry, but do not decrypt it or initialize metadata.
pub fn contains_file_named(&self, name: &str) -> bool {
self.shared.names_map.contains_key(name)
/// Get the index of a file entry by name, if it's present.
#[inline(always)]
pub fn index_for_name(&self, name: &str) -> Option<usize> {
self.shared.names_map.get(name).map(|index_ref| *index_ref)
}
fn by_name_with_optional_password<'a>(
@ -661,11 +662,8 @@ impl<R: Read + Seek> ZipArchive<R> {
name: &str,
password: Option<&[u8]>,
) -> ZipResult<ZipFile<'a>> {
let index = match self.shared.names_map.get(name) {
Some(index) => *index,
None => {
return Err(ZipError::FileNotFound);
}
let Some(index) = self.index_for_name(name) else {
return Err(ZipError::FileNotFound);
};
self.by_index_with_optional_password(index, password)
}