From 8d81cbc2c3ffec4672a1e3e372a536cf7a16cf0b Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Mon, 27 May 2024 17:11:24 -0700 Subject: [PATCH] chore: Bug fixes for debug implementation --- src/write.rs | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/src/write.rs b/src/write.rs index 5f86fb34..418eb637 100644 --- a/src/write.rs +++ b/src/write.rs @@ -18,6 +18,7 @@ use crc32fast::Hasher; use indexmap::IndexMap; use std::borrow::ToOwned; use std::default::Default; +use std::fmt::{Debug, Formatter}; use std::io; use std::io::prelude::*; use std::io::{BufReader, SeekFrom}; @@ -52,6 +53,18 @@ enum MaybeEncrypted { Aes(crate::aes::AesWriter), ZipCrypto(crate::zipcrypto::ZipCryptoWriter), } + +impl Debug for MaybeEncrypted { + fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { + // Don't print W, since it may be a huge Vec + f.write_str(match self { + MaybeEncrypted::Unencrypted(_) => "Unencrypted", + MaybeEncrypted::Aes(_) => "AES", + MaybeEncrypted::ZipCrypto(_) => "ZipCrypto" + }) + } +} + impl Write for MaybeEncrypted { fn write(&mut self, buf: &[u8]) -> io::Result { match self { @@ -70,6 +83,7 @@ impl Write for MaybeEncrypted { } } } + enum GenericZipWriter { Closed, Storer(MaybeEncrypted), @@ -89,6 +103,20 @@ enum GenericZipWriter { Zstd(ZstdEncoder<'static, MaybeEncrypted>), } +impl Debug for GenericZipWriter { + 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 pub(crate) mod zip_writer { use super::*;