mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-08 05:27:04 +00:00
[PR #186] [CLOSED] Start using buffers. Minimal in algorithms for now. #888
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/186
Author: @adamhathcock
Created: 10/3/2016
Status: ❌ Closed
Base:
master← Head:system_buffers📝 Commits (6)
771986cStart using buffers. Minimal in algorithms for now.aa55e16Merge branch 'master' into system_buffers4f092f4update xunitcd7e480Dumb mistake on buffer usage3d4b190use pool in MarkingBinaryReader and BinaryReader0dfdba3Change more ReadBytes📊 Changes
26 files changed (+711 additions, -452 deletions)
View changed files
📝
src/SharpCompress/Archives/GZip/GZipArchive.cs(+19 -16)📝
src/SharpCompress/Archives/SevenZip/SevenZipArchive.cs(+4 -2)📝
src/SharpCompress/Common/GZip/GZipFilePart.cs(+64 -57)📝
src/SharpCompress/Common/Rar/Headers/FileHeader.cs(+54 -53)📝
src/SharpCompress/Common/Rar/Headers/FileNameDecoder.cs(+6 -5)📝
src/SharpCompress/Common/Rar/Headers/RarHeader.cs(+2 -1)📝
src/SharpCompress/Common/Rar/Headers/RarHeaderFactory.cs(+31 -27)📝
src/SharpCompress/Common/Rar/RarCryptoBinaryReader.cs(+40 -15)📝
src/SharpCompress/Common/Rar/RarCryptoWrapper.cs(+12 -7)📝
src/SharpCompress/Common/Rar/RarRijndael.cs(+15 -12)📝
src/SharpCompress/Common/Tar/Headers/TarHeader.cs(+54 -41)📝
src/SharpCompress/Common/Zip/Headers/DirectoryEntryHeader.cs(+11 -6)📝
src/SharpCompress/Common/Zip/Headers/LocalEntryHeader.cs(+7 -4)📝
src/SharpCompress/Common/Zip/Headers/ZipFileEntry.cs(+13 -10)📝
src/SharpCompress/Compressors/BZip2/BZip2Stream.cs(+7 -4)📝
src/SharpCompress/Compressors/Deflate/GZipStream.cs(+58 -50)📝
src/SharpCompress/Compressors/Deflate/ZlibBaseStream.cs(+83 -76)📝
src/SharpCompress/Crypto/IBlockCipher.cs(+6 -6)📝
src/SharpCompress/Crypto/RijndaelEngine.cs(+6 -9)➕
src/SharpCompress/IO/ByteArrayPool.cs(+52 -0)...and 6 more files
📄 Description
Covering the idea here: https://github.com/adamhathcock/sharpcompress/issues/111
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.