Optimize inner
of ZipArchive::extract
Rm generics in `inner` Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
parent
6402eb0d22
commit
80005fd2e1
1 changed files with 26 additions and 23 deletions
15
src/read.rs
15
src/read.rs
|
@ -448,9 +448,7 @@ impl<R: Read + io::Seek> ZipArchive<R> {
|
|||
pub fn extract<P: AsRef<Path>>(&mut self, directory: P) -> ZipResult<()> {
|
||||
use std::fs;
|
||||
|
||||
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)?;
|
||||
fn inner(file: &mut ZipFile<'_>, directory: &Path) -> ZipResult<()> {
|
||||
let filepath = file
|
||||
.enclosed_name()
|
||||
.ok_or(ZipError::InvalidArchive("Invalid file path"))?;
|
||||
|
@ -464,7 +462,7 @@ impl<R: Read + io::Seek> ZipArchive<R> {
|
|||
fs::create_dir_all(&p)?;
|
||||
}
|
||||
let mut outfile = fs::File::create(&outpath)?;
|
||||
io::copy(&mut file, &mut outfile)?;
|
||||
io::copy(file, &mut outfile)?;
|
||||
}
|
||||
// Get and Set permissions
|
||||
#[cfg(unix)]
|
||||
|
@ -474,11 +472,16 @@ impl<R: Read + io::Seek> ZipArchive<R> {
|
|||
fs::set_permissions(&outpath, fs::Permissions::from_mode(mode))?;
|
||||
}
|
||||
}
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
|
||||
inner(self, directory.as_ref())
|
||||
for i in 0..self.len() {
|
||||
let mut file = self.by_index(i)?;
|
||||
|
||||
inner(&mut file, directory.as_ref())?;
|
||||
}
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
/// Number of files contained in this zip.
|
||||
|
|
Loading…
Add table
Reference in a new issue