Avoid dup monomorphization in ZipArchive::extract

Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
Jiahao XU 2022-07-20 23:50:34 +10:00
parent 199796cbbf
commit 6402eb0d22
No known key found for this signature in database
GPG key ID: 591C0B03040416D6

View file

@ -448,13 +448,14 @@ impl<R: Read + io::Seek> ZipArchive<R> {
pub fn extract<P: AsRef<Path>>(&mut self, directory: P) -> ZipResult<()> {
use std::fs;
for i in 0..self.len() {
let mut file = self.by_index(i)?;
fn inner(this: &mut ZipArchive<impl Read + io::Seek>, directory: &Path) -> ZipResult<()> {
for i in 0..this.len() {
let mut file = this.by_index(i)?;
let filepath = file
.enclosed_name()
.ok_or(ZipError::InvalidArchive("Invalid file path"))?;
let outpath = directory.as_ref().join(filepath);
let outpath = directory.join(filepath);
if file.name().ends_with('/') {
fs::create_dir_all(&outpath)?;
@ -477,6 +478,9 @@ impl<R: Read + io::Seek> ZipArchive<R> {
Ok(())
}
inner(self, directory.as_ref())
}
/// Number of files contained in this zip.
pub fn len(&self) -> usize {
self.shared.files.len()