chore: Bug fixes for debug implementation
This commit is contained in:
parent
48b1adb64b
commit
8d81cbc2c3
1 changed files with 28 additions and 0 deletions
28
src/write.rs
28
src/write.rs
|
@ -18,6 +18,7 @@ use crc32fast::Hasher;
|
||||||
use indexmap::IndexMap;
|
use indexmap::IndexMap;
|
||||||
use std::borrow::ToOwned;
|
use std::borrow::ToOwned;
|
||||||
use std::default::Default;
|
use std::default::Default;
|
||||||
|
use std::fmt::{Debug, Formatter};
|
||||||
use std::io;
|
use std::io;
|
||||||
use std::io::prelude::*;
|
use std::io::prelude::*;
|
||||||
use std::io::{BufReader, SeekFrom};
|
use std::io::{BufReader, SeekFrom};
|
||||||
|
@ -52,6 +53,18 @@ enum MaybeEncrypted<W> {
|
||||||
Aes(crate::aes::AesWriter<W>),
|
Aes(crate::aes::AesWriter<W>),
|
||||||
ZipCrypto(crate::zipcrypto::ZipCryptoWriter<W>),
|
ZipCrypto(crate::zipcrypto::ZipCryptoWriter<W>),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl<W> Debug for MaybeEncrypted<W> {
|
||||||
|
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
||||||
|
// Don't print W, since it may be a huge Vec<u8>
|
||||||
|
f.write_str(match self {
|
||||||
|
MaybeEncrypted::Unencrypted(_) => "Unencrypted",
|
||||||
|
MaybeEncrypted::Aes(_) => "AES",
|
||||||
|
MaybeEncrypted::ZipCrypto(_) => "ZipCrypto"
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl<W: Write> Write for MaybeEncrypted<W> {
|
impl<W: Write> Write for MaybeEncrypted<W> {
|
||||||
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
|
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
|
||||||
match self {
|
match self {
|
||||||
|
@ -70,6 +83,7 @@ impl<W: Write> Write for MaybeEncrypted<W> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
enum GenericZipWriter<W: Write + Seek> {
|
enum GenericZipWriter<W: Write + Seek> {
|
||||||
Closed,
|
Closed,
|
||||||
Storer(MaybeEncrypted<W>),
|
Storer(MaybeEncrypted<W>),
|
||||||
|
@ -89,6 +103,20 @@ enum GenericZipWriter<W: Write + Seek> {
|
||||||
Zstd(ZstdEncoder<'static, MaybeEncrypted<W>>),
|
Zstd(ZstdEncoder<'static, MaybeEncrypted<W>>),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl <W: Write + Seek> Debug for GenericZipWriter<W> {
|
||||||
|
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
||||||
|
match self {
|
||||||
|
Closed => f.write_str("Closed"),
|
||||||
|
Storer(w) => f.write_fmt(format_args!("Storer({:?})", w)),
|
||||||
|
GenericZipWriter::Deflater(_) => f.write_str("Deflater"),
|
||||||
|
GenericZipWriter::ZopfliDeflater(_) => f.write_str("ZopfliDeflater"),
|
||||||
|
GenericZipWriter::BufferedZopfliDeflater(_) => f.write_str("BufferedZopfliDeflater"),
|
||||||
|
GenericZipWriter::Bzip2(_) => f.write_str("Bzip2"),
|
||||||
|
GenericZipWriter::Zstd(_) => f.write_str("Zstd"),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Put the struct declaration in a private module to convince rustdoc to display ZipWriter nicely
|
// Put the struct declaration in a private module to convince rustdoc to display ZipWriter nicely
|
||||||
pub(crate) mod zip_writer {
|
pub(crate) mod zip_writer {
|
||||||
use super::*;
|
use super::*;
|
||||||
|
|
Loading…
Add table
Reference in a new issue