mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-03 21:23:38 +00:00
[PR #1019] [MERGED] ARJ's methods 1, 2 and 3 implemented for streaming #1441
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/adamhathcock/sharpcompress/pull/1019
Author: @TwanVanDongen
Created: 11/14/2025
Status: ✅ Merged
Merged: 11/18/2025
Merged by: @adamhathcock
Base:
master← Head:master📝 Commits (6)
4efb109Arj's methods CompressedMost (1), Compressed (2) and CompressedFaster (3) implemented.dd9dc25Merge branch 'adamhathcock:master' into masterd7d0bc6Missed formatting FilePart.f2c54b1Merge branch 'master' of https://github.com/TwanVanDongen/sharpcompress4cfa5b0Included ARC and ARJ in readmee0186eaAdd buffer boundary tests for streaming decompression. Methods 1,2,3 still need fixing full streaming; exception now thrown to prevent corrupt output📊 Changes
21 files changed (+10898 additions, -30 deletions)
View changed files
📝
README.md(+1 -1)📝
src/SharpCompress/Common/Arj/ArjFilePart.cs(+16 -0)📝
src/SharpCompress/Compressors/Arj/BitReader.cs(+41 -29)➕
src/SharpCompress/Compressors/Arj/HistoryIterator.cs(+43 -0)➕
src/SharpCompress/Compressors/Arj/HuffmanTree.cs(+218 -0)➕
src/SharpCompress/Compressors/Arj/ILhaDecoderConfig.cs(+9 -0)➕
src/SharpCompress/Compressors/Arj/IRingBuffer.cs(+17 -0)➕
src/SharpCompress/Compressors/Arj/Lh5DecoderCfg.cs(+9 -0)➕
src/SharpCompress/Compressors/Arj/Lh7DecoderCfg.cs(+9 -0)➕
src/SharpCompress/Compressors/Arj/LhaStream.cs(+363 -0)➕
src/SharpCompress/Compressors/Arj/RingBuffer.cs(+67 -0)📝
tests/SharpCompress.Test/Arj/ArjReaderTests.cs(+46 -0)➕
tests/TestArchives/Archives/Arj.method1.arj(+0 -0)➕
tests/TestArchives/Archives/Arj.method1.largefile.arj(+0 -0)➕
tests/TestArchives/Archives/Arj.method2.arj(+0 -0)➕
tests/TestArchives/Archives/Arj.method2.largefile.arj(+0 -0)➕
tests/TestArchives/Archives/Arj.method3.arj(+0 -0)➕
tests/TestArchives/Archives/Arj.method3.largefile.arj(+0 -0)➕
tests/TestArchives/Archives/Arj.method4.largefile.arj(+0 -0)➕
tests/TestArchives/Archives/Arj.store.largefile.arj(+0 -0)...and 1 more files
📄 Description
Addition of CompressedMost, Compressed and CompressFastest algorithms.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.