Do not close the zip on flush
Instead, only flush the underlying buffer
This commit is contained in:
parent
8010b29b5e
commit
11fa463cb4
1 changed files with 6 additions and 7 deletions
13
src/write.rs
13
src/write.rs
|
@ -9,7 +9,6 @@ use std::default::Default;
|
||||||
use std::io;
|
use std::io;
|
||||||
use std::io::prelude::*;
|
use std::io::prelude::*;
|
||||||
use std::mem;
|
use std::mem;
|
||||||
use std::error::Error;
|
|
||||||
use std::ascii::AsciiExt;
|
use std::ascii::AsciiExt;
|
||||||
use time;
|
use time;
|
||||||
use flate2;
|
use flate2;
|
||||||
|
@ -83,12 +82,12 @@ impl<W: Write+io::Seek> Write for ZipWriter<W>
|
||||||
|
|
||||||
fn flush(&mut self) -> io::Result<()>
|
fn flush(&mut self) -> io::Result<()>
|
||||||
{
|
{
|
||||||
let result = self.finalize();
|
match self.inner
|
||||||
self.inner = GenericZipWriter::Closed;
|
{
|
||||||
match result {
|
GenericZipWriter::Storer(ref mut w) => w.flush(),
|
||||||
Ok(..) => Ok(()),
|
GenericZipWriter::Deflater(ref mut w) => w.flush(),
|
||||||
Err(ZipError::Io(io_err)) => Err(io_err),
|
GenericZipWriter::Bzip2(ref mut w) => w.flush(),
|
||||||
Err(zip_err) => Err(io::Error::new(io::ErrorKind::Other, "A zip error occured", Some(zip_err.description().to_string()))),
|
GenericZipWriter::Closed => Err(io::Error::new(io::ErrorKind::BrokenPipe, "ZipWriter was already closed", None)),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue