From fae03388e1ab496bb1325d5eb32a6ef06db714da Mon Sep 17 00:00:00 2001 From: exfalso <0slemi0@gmail.com> Date: Fri, 9 Jun 2023 16:26:50 +0200 Subject: [PATCH 1/3] Add ZipWriter::set_file_metadata() --- src/write.rs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/write.rs b/src/write.rs index 3f41c4d6..36434622 100644 --- a/src/write.rs +++ b/src/write.rs @@ -329,6 +329,22 @@ impl ZipWriter { self.comment = comment; } + /// Set the file length and crc32 manually. + /// + /// WARNING: This overwrites the internal crc32 calculation. It should only be used in case + /// the underlying [Write] is written independently and you need to adjust the zip metadata. + pub fn set_file_metadata(&mut self, length: u64, crc32: u32) -> ZipResult<()> { + if !self.writing_to_file { + return Err(ZipError::Io(io::Error::new( + io::ErrorKind::Other, + "No file has been started", + ))); + } + self.stats.hasher = crc32fast::Hasher::new_with_initial_len(crc32, length); + self.stats.bytes_written = length; + Ok(()) + } + /// Start a new file for with the requested options. fn start_entry( &mut self, From 8040a044c351339b4f267b088eb08f066690da54 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Wed, 1 May 2024 14:32:40 -0700 Subject: [PATCH 2/3] refactor: Make new method unsafe --- src/write.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/write.rs b/src/write.rs index f90e773e..675063eb 100644 --- a/src/write.rs +++ b/src/write.rs @@ -654,9 +654,9 @@ impl ZipWriter { /// Set the file length and crc32 manually. /// - /// WARNING: This overwrites the internal crc32 calculation. It should only be used in case + /// SAFETY: This overwrites the internal crc32 calculation. It should only be used in case /// the underlying [Write] is written independently and you need to adjust the zip metadata. - pub fn set_file_metadata(&mut self, length: u64, crc32: u32) -> ZipResult<()> { + pub unsafe fn set_file_metadata(&mut self, length: u64, crc32: u32) -> ZipResult<()> { if !self.writing_to_file { return Err(ZipError::Io(io::Error::new( io::ErrorKind::Other, From ac6dfed15a0f00644def6740929e1dd6f32fe483 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Wed, 1 May 2024 14:36:33 -0700 Subject: [PATCH 3/3] doc: Fix formatting for unsafe function --- src/write.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/write.rs b/src/write.rs index 675063eb..cbdbb578 100644 --- a/src/write.rs +++ b/src/write.rs @@ -654,7 +654,9 @@ impl ZipWriter { /// Set the file length and crc32 manually. /// - /// SAFETY: This overwrites the internal crc32 calculation. It should only be used in case + /// # Safety + /// + /// This overwrites the internal crc32 calculation. It should only be used in case /// the underlying [Write] is written independently and you need to adjust the zip metadata. pub unsafe fn set_file_metadata(&mut self, length: u64, crc32: u32) -> ZipResult<()> { if !self.writing_to_file {