seven_zip_ruby 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +25 -0
- data/.travis.yml +10 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +39 -0
- data/README.md +176 -0
- data/Rakefile +47 -0
- data/ext/C/Types.h +254 -0
- data/ext/CPP/7zip/Archive/IArchive.h +234 -0
- data/ext/CPP/7zip/IDecl.h +15 -0
- data/ext/CPP/7zip/IPassword.h +24 -0
- data/ext/CPP/7zip/IProgress.h +33 -0
- data/ext/CPP/7zip/IStream.h +58 -0
- data/ext/CPP/7zip/PropID.h +76 -0
- data/ext/CPP/Common/MyCom.h +225 -0
- data/ext/CPP/Common/MyGuidDef.h +54 -0
- data/ext/CPP/Common/MyInitGuid.h +22 -0
- data/ext/CPP/Common/MyUnknown.h +13 -0
- data/ext/CPP/Common/MyWindows.h +204 -0
- data/ext/CPP/Common/Types.h +11 -0
- data/ext/CPP/Windows/PropVariant.h +56 -0
- data/ext/CPP/include_windows/basetyps.h +19 -0
- data/ext/CPP/include_windows/tchar.h +89 -0
- data/ext/CPP/include_windows/windows.h +194 -0
- data/ext/p7zip/Asm/x64/7zCrcT8U.asm +103 -0
- data/ext/p7zip/Asm/x86/7zCrcT8U.asm +101 -0
- data/ext/p7zip/C/7zBuf.h +39 -0
- data/ext/p7zip/C/7zBuf2.c +45 -0
- data/ext/p7zip/C/7zCrc.c +76 -0
- data/ext/p7zip/C/7zCrc.h +25 -0
- data/ext/p7zip/C/7zCrcOpt.c +34 -0
- data/ext/p7zip/C/7zCrcT8.c +43 -0
- data/ext/p7zip/C/7zStream.c +169 -0
- data/ext/p7zip/C/7zVersion.h +7 -0
- data/ext/p7zip/C/Aes.c +284 -0
- data/ext/p7zip/C/Aes.h +38 -0
- data/ext/p7zip/C/Alloc.back3 +238 -0
- data/ext/p7zip/C/Alloc.c +280 -0
- data/ext/p7zip/C/Alloc.c.back +243 -0
- data/ext/p7zip/C/Alloc.c.back2 +222 -0
- data/ext/p7zip/C/Alloc.h +27 -0
- data/ext/p7zip/C/Bra.c +133 -0
- data/ext/p7zip/C/Bra.h +68 -0
- data/ext/p7zip/C/Bra86.c +85 -0
- data/ext/p7zip/C/BraIA64.c +67 -0
- data/ext/p7zip/C/BwtSort.c +516 -0
- data/ext/p7zip/C/BwtSort.h +30 -0
- data/ext/p7zip/C/CpuArch.c +168 -0
- data/ext/p7zip/C/CpuArch.h +155 -0
- data/ext/p7zip/C/Delta.c +62 -0
- data/ext/p7zip/C/Delta.h +23 -0
- data/ext/p7zip/C/HuffEnc.c +146 -0
- data/ext/p7zip/C/HuffEnc.h +27 -0
- data/ext/p7zip/C/LzFind.c +761 -0
- data/ext/p7zip/C/LzFind.h +115 -0
- data/ext/p7zip/C/LzFindMt.c +793 -0
- data/ext/p7zip/C/LzFindMt.h +105 -0
- data/ext/p7zip/C/LzHash.h +54 -0
- data/ext/p7zip/C/Lzma2Dec.c +356 -0
- data/ext/p7zip/C/Lzma2Dec.h +84 -0
- data/ext/p7zip/C/Lzma2Enc.c +477 -0
- data/ext/p7zip/C/Lzma2Enc.h +66 -0
- data/ext/p7zip/C/LzmaDec.c +999 -0
- data/ext/p7zip/C/LzmaDec.h +231 -0
- data/ext/p7zip/C/LzmaEnc.c +2268 -0
- data/ext/p7zip/C/LzmaEnc.h +80 -0
- data/ext/p7zip/C/LzmaUtil/Lzma86Dec.c +61 -0
- data/ext/p7zip/C/LzmaUtil/Lzma86Dec.h +51 -0
- data/ext/p7zip/C/LzmaUtil/Lzma86Enc.c +113 -0
- data/ext/p7zip/C/LzmaUtil/Lzma86Enc.h +78 -0
- data/ext/p7zip/C/MtCoder.c +327 -0
- data/ext/p7zip/C/MtCoder.h +98 -0
- data/ext/p7zip/C/Ppmd.h +85 -0
- data/ext/p7zip/C/Ppmd7.c +708 -0
- data/ext/p7zip/C/Ppmd7.h +140 -0
- data/ext/p7zip/C/Ppmd7Dec.c +187 -0
- data/ext/p7zip/C/Ppmd7Enc.c +185 -0
- data/ext/p7zip/C/Ppmd8.c +1120 -0
- data/ext/p7zip/C/Ppmd8.h +133 -0
- data/ext/p7zip/C/Ppmd8Dec.c +155 -0
- data/ext/p7zip/C/Ppmd8Enc.c +161 -0
- data/ext/p7zip/C/RotateDefs.h +20 -0
- data/ext/p7zip/C/Sha256.c +204 -0
- data/ext/p7zip/C/Sha256.h +26 -0
- data/ext/p7zip/C/Sort.c +93 -0
- data/ext/p7zip/C/Sort.h +20 -0
- data/ext/p7zip/C/Threads.c +582 -0
- data/ext/p7zip/C/Threads.h +123 -0
- data/ext/p7zip/C/Types.h +254 -0
- data/ext/p7zip/C/Xz.c +88 -0
- data/ext/p7zip/C/Xz.h +252 -0
- data/ext/p7zip/C/XzCrc64.c +33 -0
- data/ext/p7zip/C/XzCrc64.h +26 -0
- data/ext/p7zip/C/XzDec.c +875 -0
- data/ext/p7zip/C/XzEnc.c +497 -0
- data/ext/p7zip/C/XzEnc.h +25 -0
- data/ext/p7zip/C/XzIn.c +306 -0
- data/ext/p7zip/CPP/7zip/Archive/7z/7zCompressionMode.cpp +3 -0
- data/ext/p7zip/CPP/7zip/Archive/7z/7zCompressionMode.h +50 -0
- data/ext/p7zip/CPP/7zip/Archive/7z/7zDecode.cpp +332 -0
- data/ext/p7zip/CPP/7zip/Archive/7z/7zDecode.h +68 -0
- data/ext/p7zip/CPP/7zip/Archive/7z/7zEncode.cpp +444 -0
- data/ext/p7zip/CPP/7zip/Archive/7z/7zEncode.h +55 -0
- data/ext/p7zip/CPP/7zip/Archive/7z/7zExtract.cpp +270 -0
- data/ext/p7zip/CPP/7zip/Archive/7z/7zFolderInStream.cpp +123 -0
- data/ext/p7zip/CPP/7zip/Archive/7z/7zFolderInStream.h +58 -0
- data/ext/p7zip/CPP/7zip/Archive/7z/7zFolderOutStream.cpp +149 -0
- data/ext/p7zip/CPP/7zip/Archive/7z/7zFolderOutStream.h +58 -0
- data/ext/p7zip/CPP/7zip/Archive/7z/7zHandler.cpp +482 -0
- data/ext/p7zip/CPP/7zip/Archive/7z/7zHandler.h +119 -0
- data/ext/p7zip/CPP/7zip/Archive/7z/7zHandlerOut.cpp +483 -0
- data/ext/p7zip/CPP/7zip/Archive/7z/7zHeader.cpp +14 -0
- data/ext/p7zip/CPP/7zip/Archive/7z/7zHeader.h +97 -0
- data/ext/p7zip/CPP/7zip/Archive/7z/7zIn.cpp +1276 -0
- data/ext/p7zip/CPP/7zip/Archive/7z/7zIn.h +245 -0
- data/ext/p7zip/CPP/7zip/Archive/7z/7zItem.h +268 -0
- data/ext/p7zip/CPP/7zip/Archive/7z/7zOut.cpp +866 -0
- data/ext/p7zip/CPP/7zip/Archive/7z/7zOut.h +152 -0
- data/ext/p7zip/CPP/7zip/Archive/7z/7zProperties.cpp +164 -0
- data/ext/p7zip/CPP/7zip/Archive/7z/7zProperties.h +22 -0
- data/ext/p7zip/CPP/7zip/Archive/7z/7zRegister.cpp +18 -0
- data/ext/p7zip/CPP/7zip/Archive/7z/7zSpecStream.cpp +24 -0
- data/ext/p7zip/CPP/7zip/Archive/7z/7zSpecStream.h +35 -0
- data/ext/p7zip/CPP/7zip/Archive/7z/7zUpdate.cpp +1216 -0
- data/ext/p7zip/CPP/7zip/Archive/7z/7zUpdate.h +88 -0
- data/ext/p7zip/CPP/7zip/Archive/ApmHandler.cpp +356 -0
- data/ext/p7zip/CPP/7zip/Archive/ArchiveExports.cpp +135 -0
- data/ext/p7zip/CPP/7zip/Archive/ArjHandler.cpp +798 -0
- data/ext/p7zip/CPP/7zip/Archive/Bz2Handler.cpp +423 -0
- data/ext/p7zip/CPP/7zip/Archive/Cab/CabBlockInStream.cpp +189 -0
- data/ext/p7zip/CPP/7zip/Archive/Cab/CabBlockInStream.h +44 -0
- data/ext/p7zip/CPP/7zip/Archive/Cab/CabHandler.cpp +929 -0
- data/ext/p7zip/CPP/7zip/Archive/Cab/CabHandler.h +28 -0
- data/ext/p7zip/CPP/7zip/Archive/Cab/CabHeader.cpp +15 -0
- data/ext/p7zip/CPP/7zip/Archive/Cab/CabHeader.h +44 -0
- data/ext/p7zip/CPP/7zip/Archive/Cab/CabIn.cpp +272 -0
- data/ext/p7zip/CPP/7zip/Archive/Cab/CabIn.h +161 -0
- data/ext/p7zip/CPP/7zip/Archive/Cab/CabItem.h +63 -0
- data/ext/p7zip/CPP/7zip/Archive/Cab/CabRegister.cpp +13 -0
- data/ext/p7zip/CPP/7zip/Archive/Chm/ChmHandler.cpp +721 -0
- data/ext/p7zip/CPP/7zip/Archive/Chm/ChmHandler.h +29 -0
- data/ext/p7zip/CPP/7zip/Archive/Chm/ChmHeader.cpp +24 -0
- data/ext/p7zip/CPP/7zip/Archive/Chm/ChmHeader.h +28 -0
- data/ext/p7zip/CPP/7zip/Archive/Chm/ChmIn.cpp +937 -0
- data/ext/p7zip/CPP/7zip/Archive/Chm/ChmIn.h +244 -0
- data/ext/p7zip/CPP/7zip/Archive/Chm/ChmRegister.cpp +13 -0
- data/ext/p7zip/CPP/7zip/Archive/Com/ComHandler.cpp +239 -0
- data/ext/p7zip/CPP/7zip/Archive/Com/ComHandler.h +28 -0
- data/ext/p7zip/CPP/7zip/Archive/Com/ComIn.cpp +389 -0
- data/ext/p7zip/CPP/7zip/Archive/Com/ComIn.h +119 -0
- data/ext/p7zip/CPP/7zip/Archive/Com/ComRegister.cpp +13 -0
- data/ext/p7zip/CPP/7zip/Archive/Common/CoderMixer2.cpp +121 -0
- data/ext/p7zip/CPP/7zip/Archive/Common/CoderMixer2.h +174 -0
- data/ext/p7zip/CPP/7zip/Archive/Common/CoderMixer2MT.cpp +240 -0
- data/ext/p7zip/CPP/7zip/Archive/Common/CoderMixer2MT.h +80 -0
- data/ext/p7zip/CPP/7zip/Archive/Common/CoderMixer2ST.cpp +239 -0
- data/ext/p7zip/CPP/7zip/Archive/Common/CoderMixer2ST.h +88 -0
- data/ext/p7zip/CPP/7zip/Archive/Common/CrossThreadProgress.cpp +15 -0
- data/ext/p7zip/CPP/7zip/Archive/Common/CrossThreadProgress.h +37 -0
- data/ext/p7zip/CPP/7zip/Archive/Common/DummyOutStream.cpp +22 -0
- data/ext/p7zip/CPP/7zip/Archive/Common/DummyOutStream.h +24 -0
- data/ext/p7zip/CPP/7zip/Archive/Common/FindSignature.cpp +62 -0
- data/ext/p7zip/CPP/7zip/Archive/Common/FindSignature.h +12 -0
- data/ext/p7zip/CPP/7zip/Archive/Common/HandlerOut.cpp +623 -0
- data/ext/p7zip/CPP/7zip/Archive/Common/HandlerOut.h +87 -0
- data/ext/p7zip/CPP/7zip/Archive/Common/InStreamWithCRC.cpp +42 -0
- data/ext/p7zip/CPP/7zip/Archive/Common/InStreamWithCRC.h +67 -0
- data/ext/p7zip/CPP/7zip/Archive/Common/ItemNameUtils.cpp +61 -0
- data/ext/p7zip/CPP/7zip/Archive/Common/ItemNameUtils.h +24 -0
- data/ext/p7zip/CPP/7zip/Archive/Common/MultiStream.cpp +190 -0
- data/ext/p7zip/CPP/7zip/Archive/Common/MultiStream.h +84 -0
- data/ext/p7zip/CPP/7zip/Archive/Common/OutStreamWithCRC.cpp +18 -0
- data/ext/p7zip/CPP/7zip/Archive/Common/OutStreamWithCRC.h +36 -0
- data/ext/p7zip/CPP/7zip/Archive/Common/OutStreamWithSha1.cpp +18 -0
- data/ext/p7zip/CPP/7zip/Archive/Common/OutStreamWithSha1.h +36 -0
- data/ext/p7zip/CPP/7zip/Archive/Common/ParseProperties.cpp +177 -0
- data/ext/p7zip/CPP/7zip/Archive/Common/ParseProperties.h +18 -0
- data/ext/p7zip/CPP/7zip/Archive/CpioHandler.cpp +624 -0
- data/ext/p7zip/CPP/7zip/Archive/CramfsHandler.cpp +644 -0
- data/ext/p7zip/CPP/7zip/Archive/DebHandler.cpp +413 -0
- data/ext/p7zip/CPP/7zip/Archive/DeflateProps.cpp +118 -0
- data/ext/p7zip/CPP/7zip/Archive/DeflateProps.h +35 -0
- data/ext/p7zip/CPP/7zip/Archive/DllExports2.cpp +76 -0
- data/ext/p7zip/CPP/7zip/Archive/DmgHandler.cpp +918 -0
- data/ext/p7zip/CPP/7zip/Archive/ElfHandler.cpp +534 -0
- data/ext/p7zip/CPP/7zip/Archive/FatHandler.cpp +996 -0
- data/ext/p7zip/CPP/7zip/Archive/FlvHandler.cpp +544 -0
- data/ext/p7zip/CPP/7zip/Archive/GzHandler.cpp +698 -0
- data/ext/p7zip/CPP/7zip/Archive/Hfs/HfsHandler.cpp +243 -0
- data/ext/p7zip/CPP/7zip/Archive/Hfs/HfsHandler.h +26 -0
- data/ext/p7zip/CPP/7zip/Archive/Hfs/HfsIn.cpp +480 -0
- data/ext/p7zip/CPP/7zip/Archive/Hfs/HfsIn.h +154 -0
- data/ext/p7zip/CPP/7zip/Archive/Hfs/HfsRegister.cpp +13 -0
- data/ext/p7zip/CPP/7zip/Archive/IArchive.h +234 -0
- data/ext/p7zip/CPP/7zip/Archive/Iso/IsoHandler.cpp +326 -0
- data/ext/p7zip/CPP/7zip/Archive/Iso/IsoHandler.h +30 -0
- data/ext/p7zip/CPP/7zip/Archive/Iso/IsoHeader.cpp +21 -0
- data/ext/p7zip/CPP/7zip/Archive/Iso/IsoHeader.h +61 -0
- data/ext/p7zip/CPP/7zip/Archive/Iso/IsoIn.cpp +453 -0
- data/ext/p7zip/CPP/7zip/Archive/Iso/IsoIn.h +315 -0
- data/ext/p7zip/CPP/7zip/Archive/Iso/IsoItem.h +141 -0
- data/ext/p7zip/CPP/7zip/Archive/Iso/IsoRegister.cpp +13 -0
- data/ext/p7zip/CPP/7zip/Archive/LzhHandler.cpp +775 -0
- data/ext/p7zip/CPP/7zip/Archive/LzmaHandler.cpp +430 -0
- data/ext/p7zip/CPP/7zip/Archive/MachoHandler.cpp +500 -0
- data/ext/p7zip/CPP/7zip/Archive/MbrHandler.cpp +507 -0
- data/ext/p7zip/CPP/7zip/Archive/MslzHandler.cpp +257 -0
- data/ext/p7zip/CPP/7zip/Archive/MubHandler.cpp +266 -0
- data/ext/p7zip/CPP/7zip/Archive/Nsis/NsisDecode.cpp +130 -0
- data/ext/p7zip/CPP/7zip/Archive/Nsis/NsisDecode.h +47 -0
- data/ext/p7zip/CPP/7zip/Archive/Nsis/NsisHandler.cpp +510 -0
- data/ext/p7zip/CPP/7zip/Archive/Nsis/NsisHandler.h +43 -0
- data/ext/p7zip/CPP/7zip/Archive/Nsis/NsisIn.cpp +1461 -0
- data/ext/p7zip/CPP/7zip/Archive/Nsis/NsisIn.h +181 -0
- data/ext/p7zip/CPP/7zip/Archive/Nsis/NsisRegister.cpp +13 -0
- data/ext/p7zip/CPP/7zip/Archive/NtfsHandler.cpp +1764 -0
- data/ext/p7zip/CPP/7zip/Archive/PeHandler.cpp +1752 -0
- data/ext/p7zip/CPP/7zip/Archive/PpmdHandler.cpp +456 -0
- data/ext/p7zip/CPP/7zip/Archive/Rar/RarHandler.cpp +869 -0
- data/ext/p7zip/CPP/7zip/Archive/Rar/RarHandler.h +66 -0
- data/ext/p7zip/CPP/7zip/Archive/Rar/RarHeader.cpp +21 -0
- data/ext/p7zip/CPP/7zip/Archive/Rar/RarHeader.h +205 -0
- data/ext/p7zip/CPP/7zip/Archive/Rar/RarIn.cpp +478 -0
- data/ext/p7zip/CPP/7zip/Archive/Rar/RarIn.h +123 -0
- data/ext/p7zip/CPP/7zip/Archive/Rar/RarItem.cpp +55 -0
- data/ext/p7zip/CPP/7zip/Archive/Rar/RarItem.h +79 -0
- data/ext/p7zip/CPP/7zip/Archive/Rar/RarRegister.cpp +13 -0
- data/ext/p7zip/CPP/7zip/Archive/Rar/RarVolumeInStream.cpp +78 -0
- data/ext/p7zip/CPP/7zip/Archive/Rar/RarVolumeInStream.h +49 -0
- data/ext/p7zip/CPP/7zip/Archive/RpmHandler.cpp +292 -0
- data/ext/p7zip/CPP/7zip/Archive/SplitHandler.cpp +366 -0
- data/ext/p7zip/CPP/7zip/Archive/SquashfsHandler.cpp +2155 -0
- data/ext/p7zip/CPP/7zip/Archive/SwfHandler.cpp +706 -0
- data/ext/p7zip/CPP/7zip/Archive/Tar/TarHandler.cpp +386 -0
- data/ext/p7zip/CPP/7zip/Archive/Tar/TarHandler.h +61 -0
- data/ext/p7zip/CPP/7zip/Archive/Tar/TarHandlerOut.cpp +122 -0
- data/ext/p7zip/CPP/7zip/Archive/Tar/TarHeader.cpp +25 -0
- data/ext/p7zip/CPP/7zip/Archive/Tar/TarHeader.h +108 -0
- data/ext/p7zip/CPP/7zip/Archive/Tar/TarIn.cpp +207 -0
- data/ext/p7zip/CPP/7zip/Archive/Tar/TarIn.h +17 -0
- data/ext/p7zip/CPP/7zip/Archive/Tar/TarItem.h +72 -0
- data/ext/p7zip/CPP/7zip/Archive/Tar/TarOut.cpp +187 -0
- data/ext/p7zip/CPP/7zip/Archive/Tar/TarOut.h +28 -0
- data/ext/p7zip/CPP/7zip/Archive/Tar/TarRegister.cpp +18 -0
- data/ext/p7zip/CPP/7zip/Archive/Tar/TarUpdate.cpp +139 -0
- data/ext/p7zip/CPP/7zip/Archive/Tar/TarUpdate.h +34 -0
- data/ext/p7zip/CPP/7zip/Archive/Udf/UdfHandler.cpp +451 -0
- data/ext/p7zip/CPP/7zip/Archive/Udf/UdfHandler.h +37 -0
- data/ext/p7zip/CPP/7zip/Archive/Udf/UdfIn.cpp +876 -0
- data/ext/p7zip/CPP/7zip/Archive/Udf/UdfIn.h +375 -0
- data/ext/p7zip/CPP/7zip/Archive/Udf/UdfRegister.cpp +13 -0
- data/ext/p7zip/CPP/7zip/Archive/VhdHandler.cpp +734 -0
- data/ext/p7zip/CPP/7zip/Archive/Wim/WimHandler.cpp +660 -0
- data/ext/p7zip/CPP/7zip/Archive/Wim/WimHandler.h +77 -0
- data/ext/p7zip/CPP/7zip/Archive/Wim/WimHandlerOut.cpp +639 -0
- data/ext/p7zip/CPP/7zip/Archive/Wim/WimIn.cpp +855 -0
- data/ext/p7zip/CPP/7zip/Archive/Wim/WimIn.h +297 -0
- data/ext/p7zip/CPP/7zip/Archive/Wim/WimRegister.cpp +18 -0
- data/ext/p7zip/CPP/7zip/Archive/XarHandler.cpp +588 -0
- data/ext/p7zip/CPP/7zip/Archive/XzHandler.cpp +707 -0
- data/ext/p7zip/CPP/7zip/Archive/ZHandler.cpp +161 -0
- data/ext/p7zip/CPP/7zip/Archive/Zip/ZipAddCommon.cpp +379 -0
- data/ext/p7zip/CPP/7zip/Archive/Zip/ZipAddCommon.h +56 -0
- data/ext/p7zip/CPP/7zip/Archive/Zip/ZipCompressionMode.h +42 -0
- data/ext/p7zip/CPP/7zip/Archive/Zip/ZipHandler.cpp +822 -0
- data/ext/p7zip/CPP/7zip/Archive/Zip/ZipHandler.h +101 -0
- data/ext/p7zip/CPP/7zip/Archive/Zip/ZipHandlerOut.cpp +537 -0
- data/ext/p7zip/CPP/7zip/Archive/Zip/ZipHeader.cpp +36 -0
- data/ext/p7zip/CPP/7zip/Archive/Zip/ZipHeader.h +284 -0
- data/ext/p7zip/CPP/7zip/Archive/Zip/ZipIn.cpp +893 -0
- data/ext/p7zip/CPP/7zip/Archive/Zip/ZipIn.h +125 -0
- data/ext/p7zip/CPP/7zip/Archive/Zip/ZipItem.cpp +181 -0
- data/ext/p7zip/CPP/7zip/Archive/Zip/ZipItem.h +281 -0
- data/ext/p7zip/CPP/7zip/Archive/Zip/ZipItemEx.h +34 -0
- data/ext/p7zip/CPP/7zip/Archive/Zip/ZipOut.cpp +289 -0
- data/ext/p7zip/CPP/7zip/Archive/Zip/ZipOut.h +56 -0
- data/ext/p7zip/CPP/7zip/Archive/Zip/ZipRegister.cpp +18 -0
- data/ext/p7zip/CPP/7zip/Archive/Zip/ZipUpdate.cpp +1076 -0
- data/ext/p7zip/CPP/7zip/Archive/Zip/ZipUpdate.h +58 -0
- data/ext/p7zip/CPP/7zip/Bundles/Format7zFree/makefile +328 -0
- data/ext/p7zip/CPP/7zip/Bundles/Format7zFree/makefile.depend +4962 -0
- data/ext/p7zip/CPP/7zip/Bundles/Format7zFree/makefile.list +265 -0
- data/ext/p7zip/CPP/7zip/CMAKE/CMakeLists_7zFM.txt +163 -0
- data/ext/p7zip/CPP/7zip/CMAKE/CMakeLists_7zG.txt +131 -0
- data/ext/p7zip/CPP/7zip/CMAKE/CMakeLists_7za.txt +253 -0
- data/ext/p7zip/CPP/7zip/CMAKE/CMakeLists_ALL.txt +32 -0
- data/ext/p7zip/CPP/7zip/CMAKE/CMakeLists_Format7zFree.txt +290 -0
- data/ext/p7zip/CPP/7zip/CMAKE/generate.sh +37 -0
- data/ext/p7zip/CPP/7zip/CMAKE/generate_xcode.sh +32 -0
- data/ext/p7zip/CPP/7zip/Common/CWrappers.cpp +226 -0
- data/ext/p7zip/CPP/7zip/Common/CWrappers.h +109 -0
- data/ext/p7zip/CPP/7zip/Common/CreateCoder.cpp +293 -0
- data/ext/p7zip/CPP/7zip/Common/CreateCoder.h +98 -0
- data/ext/p7zip/CPP/7zip/Common/FilePathAutoRename.cpp +55 -0
- data/ext/p7zip/CPP/7zip/Common/FilePathAutoRename.h +10 -0
- data/ext/p7zip/CPP/7zip/Common/FileStreams.cpp +273 -0
- data/ext/p7zip/CPP/7zip/Common/FileStreams.h +134 -0
- data/ext/p7zip/CPP/7zip/Common/FilterCoder.cpp +247 -0
- data/ext/p7zip/CPP/7zip/Common/FilterCoder.h +128 -0
- data/ext/p7zip/CPP/7zip/Common/InBuffer.cpp +83 -0
- data/ext/p7zip/CPP/7zip/Common/InBuffer.h +81 -0
- data/ext/p7zip/CPP/7zip/Common/InOutTempBuffer.cpp +122 -0
- data/ext/p7zip/CPP/7zip/Common/InOutTempBuffer.h +48 -0
- data/ext/p7zip/CPP/7zip/Common/LimitedStreams.cpp +154 -0
- data/ext/p7zip/CPP/7zip/Common/LimitedStreams.h +125 -0
- data/ext/p7zip/CPP/7zip/Common/LockedStream.cpp +23 -0
- data/ext/p7zip/CPP/7zip/Common/LockedStream.h +38 -0
- data/ext/p7zip/CPP/7zip/Common/MemBlocks.cpp +183 -0
- data/ext/p7zip/CPP/7zip/Common/MemBlocks.h +71 -0
- data/ext/p7zip/CPP/7zip/Common/MethodId.cpp +27 -0
- data/ext/p7zip/CPP/7zip/Common/MethodId.h +10 -0
- data/ext/p7zip/CPP/7zip/Common/MethodProps.cpp +99 -0
- data/ext/p7zip/CPP/7zip/Common/MethodProps.h +41 -0
- data/ext/p7zip/CPP/7zip/Common/OffsetStream.cpp +35 -0
- data/ext/p7zip/CPP/7zip/Common/OffsetStream.h +25 -0
- data/ext/p7zip/CPP/7zip/Common/OutBuffer.cpp +116 -0
- data/ext/p7zip/CPP/7zip/Common/OutBuffer.h +64 -0
- data/ext/p7zip/CPP/7zip/Common/OutMemStream.cpp +142 -0
- data/ext/p7zip/CPP/7zip/Common/OutMemStream.h +96 -0
- data/ext/p7zip/CPP/7zip/Common/ProgressMt.cpp +53 -0
- data/ext/p7zip/CPP/7zip/Common/ProgressMt.h +46 -0
- data/ext/p7zip/CPP/7zip/Common/ProgressUtils.cpp +42 -0
- data/ext/p7zip/CPP/7zip/Common/ProgressUtils.h +34 -0
- data/ext/p7zip/CPP/7zip/Common/RegisterArc.h +32 -0
- data/ext/p7zip/CPP/7zip/Common/RegisterCodec.h +33 -0
- data/ext/p7zip/CPP/7zip/Common/StreamBinder.cpp +152 -0
- data/ext/p7zip/CPP/7zip/Common/StreamBinder.h +38 -0
- data/ext/p7zip/CPP/7zip/Common/StreamObjects.cpp +221 -0
- data/ext/p7zip/CPP/7zip/Common/StreamObjects.h +135 -0
- data/ext/p7zip/CPP/7zip/Common/StreamUtils.cpp +56 -0
- data/ext/p7zip/CPP/7zip/Common/StreamUtils.h +13 -0
- data/ext/p7zip/CPP/7zip/Common/VirtThread.cpp +46 -0
- data/ext/p7zip/CPP/7zip/Common/VirtThread.h +23 -0
- data/ext/p7zip/CPP/7zip/Compress/ArjDecoder1.cpp +309 -0
- data/ext/p7zip/CPP/7zip/Compress/ArjDecoder1.h +98 -0
- data/ext/p7zip/CPP/7zip/Compress/ArjDecoder2.cpp +90 -0
- data/ext/p7zip/CPP/7zip/Compress/ArjDecoder2.h +59 -0
- data/ext/p7zip/CPP/7zip/Compress/BZip2Const.h +54 -0
- data/ext/p7zip/CPP/7zip/Compress/BZip2Crc.cpp +26 -0
- data/ext/p7zip/CPP/7zip/Compress/BZip2Crc.h +31 -0
- data/ext/p7zip/CPP/7zip/Compress/BZip2Decoder.cpp +943 -0
- data/ext/p7zip/CPP/7zip/Compress/BZip2Decoder.h +205 -0
- data/ext/p7zip/CPP/7zip/Compress/BZip2Encoder.cpp +895 -0
- data/ext/p7zip/CPP/7zip/Compress/BZip2Encoder.h +245 -0
- data/ext/p7zip/CPP/7zip/Compress/BZip2Register.cpp +20 -0
- data/ext/p7zip/CPP/7zip/Compress/Bcj2Coder.cpp +386 -0
- data/ext/p7zip/CPP/7zip/Compress/Bcj2Coder.h +115 -0
- data/ext/p7zip/CPP/7zip/Compress/Bcj2Register.cpp +19 -0
- data/ext/p7zip/CPP/7zip/Compress/BcjCoder.cpp +15 -0
- data/ext/p7zip/CPP/7zip/Compress/BcjCoder.h +19 -0
- data/ext/p7zip/CPP/7zip/Compress/BcjRegister.cpp +19 -0
- data/ext/p7zip/CPP/7zip/Compress/BitlDecoder.cpp +24 -0
- data/ext/p7zip/CPP/7zip/Compress/BitlDecoder.h +141 -0
- data/ext/p7zip/CPP/7zip/Compress/BitlEncoder.h +57 -0
- data/ext/p7zip/CPP/7zip/Compress/BitmDecoder.h +66 -0
- data/ext/p7zip/CPP/7zip/Compress/BitmEncoder.h +50 -0
- data/ext/p7zip/CPP/7zip/Compress/BranchCoder.cpp +19 -0
- data/ext/p7zip/CPP/7zip/Compress/BranchCoder.h +44 -0
- data/ext/p7zip/CPP/7zip/Compress/BranchMisc.cpp +37 -0
- data/ext/p7zip/CPP/7zip/Compress/BranchMisc.h +14 -0
- data/ext/p7zip/CPP/7zip/Compress/BranchRegister.cpp +30 -0
- data/ext/p7zip/CPP/7zip/Compress/ByteSwap.cpp +73 -0
- data/ext/p7zip/CPP/7zip/Compress/CodecExports.cpp +160 -0
- data/ext/p7zip/CPP/7zip/Compress/CopyCoder.cpp +67 -0
- data/ext/p7zip/CPP/7zip/Compress/CopyCoder.h +34 -0
- data/ext/p7zip/CPP/7zip/Compress/CopyRegister.cpp +14 -0
- data/ext/p7zip/CPP/7zip/Compress/Deflate64Register.cpp +20 -0
- data/ext/p7zip/CPP/7zip/Compress/DeflateConst.h +134 -0
- data/ext/p7zip/CPP/7zip/Compress/DeflateDecoder.cpp +353 -0
- data/ext/p7zip/CPP/7zip/Compress/DeflateDecoder.h +157 -0
- data/ext/p7zip/CPP/7zip/Compress/DeflateEncoder.cpp +986 -0
- data/ext/p7zip/CPP/7zip/Compress/DeflateEncoder.h +211 -0
- data/ext/p7zip/CPP/7zip/Compress/DeflateRegister.cpp +21 -0
- data/ext/p7zip/CPP/7zip/Compress/DeltaFilter.cpp +112 -0
- data/ext/p7zip/CPP/7zip/Compress/DllExports.cpp +39 -0
- data/ext/p7zip/CPP/7zip/Compress/DllExports2.cpp +28 -0
- data/ext/p7zip/CPP/7zip/Compress/HuffmanDecoder.h +89 -0
- data/ext/p7zip/CPP/7zip/Compress/ImplodeDecoder.cpp +219 -0
- data/ext/p7zip/CPP/7zip/Compress/ImplodeDecoder.h +57 -0
- data/ext/p7zip/CPP/7zip/Compress/ImplodeHuffmanDecoder.cpp +89 -0
- data/ext/p7zip/CPP/7zip/Compress/ImplodeHuffmanDecoder.h +34 -0
- data/ext/p7zip/CPP/7zip/Compress/LZMA_Alone/LzmaAlone.cpp +531 -0
- data/ext/p7zip/CPP/7zip/Compress/LZMA_Alone/LzmaBench.cpp +1018 -0
- data/ext/p7zip/CPP/7zip/Compress/LZMA_Alone/LzmaBench.h +48 -0
- data/ext/p7zip/CPP/7zip/Compress/LZMA_Alone/LzmaBenchCon.cpp +311 -0
- data/ext/p7zip/CPP/7zip/Compress/LZMA_Alone/LzmaBenchCon.h +20 -0
- data/ext/p7zip/CPP/7zip/Compress/LZMA_Alone/makefile +173 -0
- data/ext/p7zip/CPP/7zip/Compress/LzOutWindow.cpp +14 -0
- data/ext/p7zip/CPP/7zip/Compress/LzOutWindow.h +66 -0
- data/ext/p7zip/CPP/7zip/Compress/LzhDecoder.cpp +220 -0
- data/ext/p7zip/CPP/7zip/Compress/LzhDecoder.h +106 -0
- data/ext/p7zip/CPP/7zip/Compress/Lzma2Decoder.cpp +189 -0
- data/ext/p7zip/CPP/7zip/Compress/Lzma2Decoder.h +73 -0
- data/ext/p7zip/CPP/7zip/Compress/Lzma2Encoder.cpp +94 -0
- data/ext/p7zip/CPP/7zip/Compress/Lzma2Encoder.h +36 -0
- data/ext/p7zip/CPP/7zip/Compress/Lzma2Register.cpp +20 -0
- data/ext/p7zip/CPP/7zip/Compress/LzmaDecoder.cpp +252 -0
- data/ext/p7zip/CPP/7zip/Compress/LzmaDecoder.h +84 -0
- data/ext/p7zip/CPP/7zip/Compress/LzmaEncoder.cpp +149 -0
- data/ext/p7zip/CPP/7zip/Compress/LzmaEncoder.h +36 -0
- data/ext/p7zip/CPP/7zip/Compress/LzmaRegister.cpp +20 -0
- data/ext/p7zip/CPP/7zip/Compress/Lzx.h +61 -0
- data/ext/p7zip/CPP/7zip/Compress/Lzx86Converter.cpp +90 -0
- data/ext/p7zip/CPP/7zip/Compress/Lzx86Converter.h +46 -0
- data/ext/p7zip/CPP/7zip/Compress/LzxDecoder.cpp +387 -0
- data/ext/p7zip/CPP/7zip/Compress/LzxDecoder.h +159 -0
- data/ext/p7zip/CPP/7zip/Compress/Mtf8.h +193 -0
- data/ext/p7zip/CPP/7zip/Compress/PpmdDecoder.cpp +167 -0
- data/ext/p7zip/CPP/7zip/Compress/PpmdDecoder.h +78 -0
- data/ext/p7zip/CPP/7zip/Compress/PpmdEncoder.cpp +119 -0
- data/ext/p7zip/CPP/7zip/Compress/PpmdEncoder.h +48 -0
- data/ext/p7zip/CPP/7zip/Compress/PpmdRegister.cpp +21 -0
- data/ext/p7zip/CPP/7zip/Compress/PpmdZip.cpp +223 -0
- data/ext/p7zip/CPP/7zip/Compress/PpmdZip.h +72 -0
- data/ext/p7zip/CPP/7zip/Compress/QuantumDecoder.cpp +175 -0
- data/ext/p7zip/CPP/7zip/Compress/QuantumDecoder.h +264 -0
- data/ext/p7zip/CPP/7zip/Compress/RangeCoder.h +205 -0
- data/ext/p7zip/CPP/7zip/Compress/RangeCoderBit.h +114 -0
- data/ext/p7zip/CPP/7zip/Compress/Rar/makefile +34 -0
- data/ext/p7zip/CPP/7zip/Compress/Rar/makefile.depend +158 -0
- data/ext/p7zip/CPP/7zip/Compress/Rar/makefile.list +64 -0
- data/ext/p7zip/CPP/7zip/Compress/Rar1Decoder.cpp +480 -0
- data/ext/p7zip/CPP/7zip/Compress/Rar1Decoder.h +88 -0
- data/ext/p7zip/CPP/7zip/Compress/Rar2Decoder.cpp +391 -0
- data/ext/p7zip/CPP/7zip/Compress/Rar2Decoder.h +174 -0
- data/ext/p7zip/CPP/7zip/Compress/Rar3Decoder.cpp +897 -0
- data/ext/p7zip/CPP/7zip/Compress/Rar3Decoder.h +267 -0
- data/ext/p7zip/CPP/7zip/Compress/Rar3Vm.cpp +1091 -0
- data/ext/p7zip/CPP/7zip/Compress/Rar3Vm.h +179 -0
- data/ext/p7zip/CPP/7zip/Compress/RarCodecsRegister.cpp +26 -0
- data/ext/p7zip/CPP/7zip/Compress/ShrinkDecoder.cpp +145 -0
- data/ext/p7zip/CPP/7zip/Compress/ShrinkDecoder.h +38 -0
- data/ext/p7zip/CPP/7zip/Compress/ZDecoder.cpp +159 -0
- data/ext/p7zip/CPP/7zip/Compress/ZDecoder.h +42 -0
- data/ext/p7zip/CPP/7zip/Compress/ZlibDecoder.cpp +89 -0
- data/ext/p7zip/CPP/7zip/Compress/ZlibDecoder.h +48 -0
- data/ext/p7zip/CPP/7zip/Compress/ZlibEncoder.cpp +61 -0
- data/ext/p7zip/CPP/7zip/Compress/ZlibEncoder.h +48 -0
- data/ext/p7zip/CPP/7zip/Crypto/7zAes.cpp +244 -0
- data/ext/p7zip/CPP/7zip/Crypto/7zAes.h +117 -0
- data/ext/p7zip/CPP/7zip/Crypto/7zAesRegister.cpp +18 -0
- data/ext/p7zip/CPP/7zip/Crypto/HmacSha1.cpp +109 -0
- data/ext/p7zip/CPP/7zip/Crypto/HmacSha1.h +39 -0
- data/ext/p7zip/CPP/7zip/Crypto/MyAes.cpp +48 -0
- data/ext/p7zip/CPP/7zip/Crypto/MyAes.h +38 -0
- data/ext/p7zip/CPP/7zip/Crypto/Pbkdf2HmacSha1.cpp +83 -0
- data/ext/p7zip/CPP/7zip/Crypto/Pbkdf2HmacSha1.h +21 -0
- data/ext/p7zip/CPP/7zip/Crypto/RandGen.cpp +107 -0
- data/ext/p7zip/CPP/7zip/Crypto/RandGen.h +21 -0
- data/ext/p7zip/CPP/7zip/Crypto/Rar20Crypto.cpp +133 -0
- data/ext/p7zip/CPP/7zip/Crypto/Rar20Crypto.h +50 -0
- data/ext/p7zip/CPP/7zip/Crypto/RarAes.cpp +134 -0
- data/ext/p7zip/CPP/7zip/Crypto/RarAes.h +47 -0
- data/ext/p7zip/CPP/7zip/Crypto/Sha1.cpp +229 -0
- data/ext/p7zip/CPP/7zip/Crypto/Sha1.h +68 -0
- data/ext/p7zip/CPP/7zip/Crypto/WzAes.cpp +221 -0
- data/ext/p7zip/CPP/7zip/Crypto/WzAes.h +125 -0
- data/ext/p7zip/CPP/7zip/Crypto/ZipCrypto.cpp +88 -0
- data/ext/p7zip/CPP/7zip/Crypto/ZipCrypto.h +56 -0
- data/ext/p7zip/CPP/7zip/Crypto/ZipStrong.cpp +164 -0
- data/ext/p7zip/CPP/7zip/Crypto/ZipStrong.h +47 -0
- data/ext/p7zip/CPP/7zip/Guid.txt +170 -0
- data/ext/p7zip/CPP/7zip/ICoder.h +186 -0
- data/ext/p7zip/CPP/7zip/IDecl.h +15 -0
- data/ext/p7zip/CPP/7zip/IPassword.h +24 -0
- data/ext/p7zip/CPP/7zip/IProgress.h +33 -0
- data/ext/p7zip/CPP/7zip/IStream.h +58 -0
- data/ext/p7zip/CPP/7zip/MyVersion.h +11 -0
- data/ext/p7zip/CPP/7zip/PREMAKE/generate.sh +18 -0
- data/ext/p7zip/CPP/7zip/PREMAKE/premake4.lua +263 -0
- data/ext/p7zip/CPP/7zip/PropID.h +76 -0
- data/ext/p7zip/CPP/7zip/QMAKE/7ZA/7ZA.pro +228 -0
- data/ext/p7zip/CPP/7zip/QMAKE/7ZA/7ZA_osx.pro +228 -0
- data/ext/p7zip/CPP/7zip/QMAKE/test_emul/test_emul.pro +26 -0
- data/ext/p7zip/CPP/7zip/TEST/TestUI/TestUI.cpp +560 -0
- data/ext/p7zip/CPP/7zip/TEST/TestUI/makefile +33 -0
- data/ext/p7zip/CPP/7zip/TEST/TestUI/makefile.depend +577 -0
- data/ext/p7zip/CPP/7zip/TEST/TestUI/makefile.list +16 -0
- data/ext/p7zip/CPP/Common/AutoPtr.h +35 -0
- data/ext/p7zip/CPP/Common/Buffer.h +77 -0
- data/ext/p7zip/CPP/Common/CRC.cpp +7 -0
- data/ext/p7zip/CPP/Common/C_FileIO.cpp +88 -0
- data/ext/p7zip/CPP/Common/C_FileIO.h +47 -0
- data/ext/p7zip/CPP/Common/ComTry.h +18 -0
- data/ext/p7zip/CPP/Common/CommandLineParser.cpp +230 -0
- data/ext/p7zip/CPP/Common/CommandLineParser.h +72 -0
- data/ext/p7zip/CPP/Common/Defs.h +20 -0
- data/ext/p7zip/CPP/Common/DynamicBuffer.h +50 -0
- data/ext/p7zip/CPP/Common/IntToString.cpp +77 -0
- data/ext/p7zip/CPP/Common/IntToString.h +19 -0
- data/ext/p7zip/CPP/Common/Lang.cpp +130 -0
- data/ext/p7zip/CPP/Common/Lang.h +28 -0
- data/ext/p7zip/CPP/Common/ListFileUtils.cpp +75 -0
- data/ext/p7zip/CPP/Common/ListFileUtils.h +11 -0
- data/ext/p7zip/CPP/Common/MyCom.h +225 -0
- data/ext/p7zip/CPP/Common/MyException.h +14 -0
- data/ext/p7zip/CPP/Common/MyGuidDef.h +54 -0
- data/ext/p7zip/CPP/Common/MyInitGuid.h +22 -0
- data/ext/p7zip/CPP/Common/MyMap.cpp +140 -0
- data/ext/p7zip/CPP/Common/MyMap.h +28 -0
- data/ext/p7zip/CPP/Common/MyString.cpp +206 -0
- data/ext/p7zip/CPP/Common/MyString.h +601 -0
- data/ext/p7zip/CPP/Common/MyUnknown.h +13 -0
- data/ext/p7zip/CPP/Common/MyVector.cpp +87 -0
- data/ext/p7zip/CPP/Common/MyVector.h +266 -0
- data/ext/p7zip/CPP/Common/MyWindows.cpp +111 -0
- data/ext/p7zip/CPP/Common/MyWindows.h +218 -0
- data/ext/p7zip/CPP/Common/MyXml.cpp +209 -0
- data/ext/p7zip/CPP/Common/MyXml.h +40 -0
- data/ext/p7zip/CPP/Common/NewHandler.h +16 -0
- data/ext/p7zip/CPP/Common/StdInStream.cpp +100 -0
- data/ext/p7zip/CPP/Common/StdInStream.h +32 -0
- data/ext/p7zip/CPP/Common/StdOutStream.cpp +93 -0
- data/ext/p7zip/CPP/Common/StdOutStream.h +35 -0
- data/ext/p7zip/CPP/Common/StringConvert.cpp +181 -0
- data/ext/p7zip/CPP/Common/StringConvert.h +73 -0
- data/ext/p7zip/CPP/Common/StringToInt.cpp +90 -0
- data/ext/p7zip/CPP/Common/StringToInt.h +18 -0
- data/ext/p7zip/CPP/Common/TextConfig.cpp +138 -0
- data/ext/p7zip/CPP/Common/TextConfig.h +22 -0
- data/ext/p7zip/CPP/Common/Types.h +11 -0
- data/ext/p7zip/CPP/Common/UTFConvert.cpp +145 -0
- data/ext/p7zip/CPP/Common/UTFConvert.h +11 -0
- data/ext/p7zip/CPP/Common/Wildcard.cpp +462 -0
- data/ext/p7zip/CPP/Common/Wildcard.h +80 -0
- data/ext/p7zip/CPP/Windows/COM.cpp +37 -0
- data/ext/p7zip/CPP/Windows/COM.h +69 -0
- data/ext/p7zip/CPP/Windows/Clipboard.cpp +160 -0
- data/ext/p7zip/CPP/Windows/Clipboard.h +28 -0
- data/ext/p7zip/CPP/Windows/CommonDialog.h +19 -0
- data/ext/p7zip/CPP/Windows/Control/ComboBox.h +82 -0
- data/ext/p7zip/CPP/Windows/Control/Controls.cpp +515 -0
- data/ext/p7zip/CPP/Windows/Control/Dialog.cpp +560 -0
- data/ext/p7zip/CPP/Windows/Control/Dialog.h +179 -0
- data/ext/p7zip/CPP/Windows/Control/DialogImpl.h +73 -0
- data/ext/p7zip/CPP/Windows/Control/Edit.h +24 -0
- data/ext/p7zip/CPP/Windows/Control/ListView.h +164 -0
- data/ext/p7zip/CPP/Windows/Control/ProgressBar.h +34 -0
- data/ext/p7zip/CPP/Windows/Control/Static.h +23 -0
- data/ext/p7zip/CPP/Windows/Control/StatusBar.h +56 -0
- data/ext/p7zip/CPP/Windows/Control/Window2.cpp +211 -0
- data/ext/p7zip/CPP/Windows/Control/Window2.h +111 -0
- data/ext/p7zip/CPP/Windows/DLL.cpp +193 -0
- data/ext/p7zip/CPP/Windows/DLL.h +48 -0
- data/ext/p7zip/CPP/Windows/Defs.h +17 -0
- data/ext/p7zip/CPP/Windows/Error.cpp +58 -0
- data/ext/p7zip/CPP/Windows/Error.h +33 -0
- data/ext/p7zip/CPP/Windows/FileDir.cpp +927 -0
- data/ext/p7zip/CPP/Windows/FileDir.h +115 -0
- data/ext/p7zip/CPP/Windows/FileFind.cpp +604 -0
- data/ext/p7zip/CPP/Windows/FileFind.h +126 -0
- data/ext/p7zip/CPP/Windows/FileIO.cpp +475 -0
- data/ext/p7zip/CPP/Windows/FileIO.h +110 -0
- data/ext/p7zip/CPP/Windows/FileName.cpp +50 -0
- data/ext/p7zip/CPP/Windows/FileName.h +27 -0
- data/ext/p7zip/CPP/Windows/Menu.h +4 -0
- data/ext/p7zip/CPP/Windows/NtCheck.h +44 -0
- data/ext/p7zip/CPP/Windows/PropVariant.cpp +243 -0
- data/ext/p7zip/CPP/Windows/PropVariant.h +56 -0
- data/ext/p7zip/CPP/Windows/PropVariantConversions.cpp +142 -0
- data/ext/p7zip/CPP/Windows/PropVariantConversions.h +14 -0
- data/ext/p7zip/CPP/Windows/PropVariantUtils.cpp +78 -0
- data/ext/p7zip/CPP/Windows/PropVariantUtils.h +28 -0
- data/ext/p7zip/CPP/Windows/Registry.cpp +313 -0
- data/ext/p7zip/CPP/Windows/Registry.h +113 -0
- data/ext/p7zip/CPP/Windows/ResourceString.h +22 -0
- data/ext/p7zip/CPP/Windows/Shell.h +21 -0
- data/ext/p7zip/CPP/Windows/Synchronization.cpp +157 -0
- data/ext/p7zip/CPP/Windows/Synchronization.h +187 -0
- data/ext/p7zip/CPP/Windows/Synchronization2.h +218 -0
- data/ext/p7zip/CPP/Windows/System.cpp +166 -0
- data/ext/p7zip/CPP/Windows/System.h +16 -0
- data/ext/p7zip/CPP/Windows/Thread.h +41 -0
- data/ext/p7zip/CPP/Windows/Time.cpp +88 -0
- data/ext/p7zip/CPP/Windows/Time.h +21 -0
- data/ext/p7zip/CPP/Windows/Window.cpp +101 -0
- data/ext/p7zip/CPP/Windows/Window.h +43 -0
- data/ext/p7zip/CPP/include_windows/basetyps.h +19 -0
- data/ext/p7zip/CPP/include_windows/tchar.h +89 -0
- data/ext/p7zip/CPP/include_windows/windows.h +194 -0
- data/ext/p7zip/CPP/myWindows/StdAfx.h +124 -0
- data/ext/p7zip/CPP/myWindows/config.h +67 -0
- data/ext/p7zip/CPP/myWindows/initguid.h +4 -0
- data/ext/p7zip/CPP/myWindows/makefile +21 -0
- data/ext/p7zip/CPP/myWindows/makefile.depend +32 -0
- data/ext/p7zip/CPP/myWindows/makefile.list +28 -0
- data/ext/p7zip/CPP/myWindows/myAddExeFlag.cpp +20 -0
- data/ext/p7zip/CPP/myWindows/myGetTickCount.cpp +8 -0
- data/ext/p7zip/CPP/myWindows/myPrivate.h +17 -0
- data/ext/p7zip/CPP/myWindows/mySplitCommandLine.cpp +82 -0
- data/ext/p7zip/CPP/myWindows/test_emul.cpp +745 -0
- data/ext/p7zip/CPP/myWindows/wine_GetXXXDefaultLangID.cpp +741 -0
- data/ext/p7zip/CPP/myWindows/wine_date_and_time.cpp +434 -0
- data/ext/p7zip/ChangeLog +914 -0
- data/ext/p7zip/DOCS/7zC.txt +194 -0
- data/ext/p7zip/DOCS/7zFormat.txt +469 -0
- data/ext/p7zip/DOCS/License.txt +52 -0
- data/ext/p7zip/DOCS/MANUAL/commands/add.htm +87 -0
- data/ext/p7zip/DOCS/MANUAL/commands/bench.htm +79 -0
- data/ext/p7zip/DOCS/MANUAL/commands/delete.htm +59 -0
- data/ext/p7zip/DOCS/MANUAL/commands/extract.htm +91 -0
- data/ext/p7zip/DOCS/MANUAL/commands/extract_full.htm +68 -0
- data/ext/p7zip/DOCS/MANUAL/commands/index.htm +33 -0
- data/ext/p7zip/DOCS/MANUAL/commands/list.htm +77 -0
- data/ext/p7zip/DOCS/MANUAL/commands/style.css +232 -0
- data/ext/p7zip/DOCS/MANUAL/commands/test.htm +46 -0
- data/ext/p7zip/DOCS/MANUAL/commands/update.htm +66 -0
- data/ext/p7zip/DOCS/MANUAL/exit_codes.htm +27 -0
- data/ext/p7zip/DOCS/MANUAL/index.htm +29 -0
- data/ext/p7zip/DOCS/MANUAL/style.css +232 -0
- data/ext/p7zip/DOCS/MANUAL/switches/ar_exclude.htm +56 -0
- data/ext/p7zip/DOCS/MANUAL/switches/ar_include.htm +83 -0
- data/ext/p7zip/DOCS/MANUAL/switches/ar_no.htm +52 -0
- data/ext/p7zip/DOCS/MANUAL/switches/charset.htm +49 -0
- data/ext/p7zip/DOCS/MANUAL/switches/exclude.htm +60 -0
- data/ext/p7zip/DOCS/MANUAL/switches/include.htm +87 -0
- data/ext/p7zip/DOCS/MANUAL/switches/index.htm +64 -0
- data/ext/p7zip/DOCS/MANUAL/switches/large_pages.htm +50 -0
- data/ext/p7zip/DOCS/MANUAL/switches/list_tech.htm +36 -0
- data/ext/p7zip/DOCS/MANUAL/switches/method.htm +625 -0
- data/ext/p7zip/DOCS/MANUAL/switches/output_dir.htm +53 -0
- data/ext/p7zip/DOCS/MANUAL/switches/overwrite.htm +56 -0
- data/ext/p7zip/DOCS/MANUAL/switches/password.htm +54 -0
- data/ext/p7zip/DOCS/MANUAL/switches/recurse.htm +83 -0
- data/ext/p7zip/DOCS/MANUAL/switches/sfx.htm +156 -0
- data/ext/p7zip/DOCS/MANUAL/switches/ssc.htm +50 -0
- data/ext/p7zip/DOCS/MANUAL/switches/stdin.htm +55 -0
- data/ext/p7zip/DOCS/MANUAL/switches/stdout.htm +50 -0
- data/ext/p7zip/DOCS/MANUAL/switches/stop_switch.htm +31 -0
- data/ext/p7zip/DOCS/MANUAL/switches/style.css +232 -0
- data/ext/p7zip/DOCS/MANUAL/switches/type.htm +83 -0
- data/ext/p7zip/DOCS/MANUAL/switches/update.htm +176 -0
- data/ext/p7zip/DOCS/MANUAL/switches/volume.htm +49 -0
- data/ext/p7zip/DOCS/MANUAL/switches/working_dir.htm +55 -0
- data/ext/p7zip/DOCS/MANUAL/switches/yes.htm +48 -0
- data/ext/p7zip/DOCS/MANUAL/syntax.htm +120 -0
- data/ext/p7zip/DOCS/Methods.txt +152 -0
- data/ext/p7zip/DOCS/copying.txt +504 -0
- data/ext/p7zip/DOCS/history.txt +456 -0
- data/ext/p7zip/DOCS/lzma.txt +598 -0
- data/ext/p7zip/DOCS/readme.txt +181 -0
- data/ext/p7zip/DOCS/unRarLicense.txt +41 -0
- data/ext/p7zip/README +358 -0
- data/ext/p7zip/TODO +39 -0
- data/ext/p7zip/contrib/VirtualFileSystemForMidnightCommander/ChangeLog +41 -0
- data/ext/p7zip/contrib/VirtualFileSystemForMidnightCommander/readme +21 -0
- data/ext/p7zip/contrib/VirtualFileSystemForMidnightCommander/readme.u7z +30 -0
- data/ext/p7zip/contrib/VirtualFileSystemForMidnightCommander/u7z +133 -0
- data/ext/p7zip/contrib/gzip-like_CLI_wrapper_for_7z/README +21 -0
- data/ext/p7zip/contrib/gzip-like_CLI_wrapper_for_7z/check/check.sh +117 -0
- data/ext/p7zip/contrib/gzip-like_CLI_wrapper_for_7z/check/files.tar +0 -0
- data/ext/p7zip/contrib/gzip-like_CLI_wrapper_for_7z/man1/p7zip.1 +33 -0
- data/ext/p7zip/contrib/gzip-like_CLI_wrapper_for_7z/p7zip +144 -0
- data/ext/p7zip/contrib/qnx630sp3/qnx630sp3-shared +14 -0
- data/ext/p7zip/contrib/qnx630sp3/qnx630sp3-static +10 -0
- data/ext/p7zip/install.sh +206 -0
- data/ext/p7zip/install_local_context_menu.sh +18 -0
- data/ext/p7zip/integration_context_menu.txt +51 -0
- data/ext/p7zip/makefile +181 -0
- data/ext/p7zip/makefile.aix_gcc +22 -0
- data/ext/p7zip/makefile.beos +18 -0
- data/ext/p7zip/makefile.crc32 +8 -0
- data/ext/p7zip/makefile.cygwin +20 -0
- data/ext/p7zip/makefile.cygwin_asm +21 -0
- data/ext/p7zip/makefile.djgpp_old +21 -0
- data/ext/p7zip/makefile.djgpp_watt +47 -0
- data/ext/p7zip/makefile.freebsd5 +20 -0
- data/ext/p7zip/makefile.freebsd6 +20 -0
- data/ext/p7zip/makefile.glb +39 -0
- data/ext/p7zip/makefile.gprof +18 -0
- data/ext/p7zip/makefile.hpux-acc +17 -0
- data/ext/p7zip/makefile.hpux-acc_64 +19 -0
- data/ext/p7zip/makefile.hpux-gcc +21 -0
- data/ext/p7zip/makefile.linux_amd64 +22 -0
- data/ext/p7zip/makefile.linux_amd64_asm +24 -0
- data/ext/p7zip/makefile.linux_amd64_asm_icc +27 -0
- data/ext/p7zip/makefile.linux_any_cpu +22 -0
- data/ext/p7zip/makefile.linux_any_cpu_gcc_4.X +24 -0
- data/ext/p7zip/makefile.linux_clang_amd64 +22 -0
- data/ext/p7zip/makefile.linux_cross_arm +22 -0
- data/ext/p7zip/makefile.linux_gcc_2.95_no_need_for_libstdc +20 -0
- data/ext/p7zip/makefile.linux_other +23 -0
- data/ext/p7zip/makefile.linux_s390x +23 -0
- data/ext/p7zip/makefile.linux_x86_asm_gcc_4.X +26 -0
- data/ext/p7zip/makefile.linux_x86_asm_gcc_4.X_fltk +26 -0
- data/ext/p7zip/makefile.linux_x86_asm_gcc_mudflap_4.X +26 -0
- data/ext/p7zip/makefile.linux_x86_asm_icc +25 -0
- data/ext/p7zip/makefile.linux_x86_icc +24 -0
- data/ext/p7zip/makefile.machine_base +22 -0
- data/ext/p7zip/makefile.macosx_32bits +20 -0
- data/ext/p7zip/makefile.macosx_32bits_asm +23 -0
- data/ext/p7zip/makefile.macosx_32bits_ppc +21 -0
- data/ext/p7zip/makefile.macosx_64bits +20 -0
- data/ext/p7zip/makefile.macosx_llvm_64bits +20 -0
- data/ext/p7zip/makefile.netbsd +21 -0
- data/ext/p7zip/makefile.netware_asm_gcc_3.X +41 -0
- data/ext/p7zip/makefile.oldmake +174 -0
- data/ext/p7zip/makefile.openbsd +20 -0
- data/ext/p7zip/makefile.openbsd_no_port +20 -0
- data/ext/p7zip/makefile.qnx_shared.bin +21 -0
- data/ext/p7zip/makefile.qnx_static +21 -0
- data/ext/p7zip/makefile.rules +661 -0
- data/ext/p7zip/makefile.solaris_sparc_CC_32 +21 -0
- data/ext/p7zip/makefile.solaris_sparc_CC_64 +23 -0
- data/ext/p7zip/makefile.solaris_sparc_gcc +21 -0
- data/ext/p7zip/makefile.solaris_x86 +19 -0
- data/ext/p7zip/makefile.tru64 +22 -0
- data/ext/seven_zip_ruby/depend +5 -0
- data/ext/seven_zip_ruby/extconf.rb +131 -0
- data/ext/seven_zip_ruby/guid_defs.h +29 -0
- data/ext/seven_zip_ruby/mutex.h +10 -0
- data/ext/seven_zip_ruby/posix/mutex.h +94 -0
- data/ext/seven_zip_ruby/seven_zip_archive.cpp +1614 -0
- data/ext/seven_zip_ruby/seven_zip_archive.h +515 -0
- data/ext/seven_zip_ruby/util_common.h +444 -0
- data/ext/seven_zip_ruby/utils.cpp +576 -0
- data/ext/seven_zip_ruby/utils.h +25 -0
- data/ext/seven_zip_ruby/win32/mutex.h +130 -0
- data/lib/seven_zip_ruby.rb +16 -0
- data/lib/seven_zip_ruby/7z.dll +0 -0
- data/lib/seven_zip_ruby/7z64.dll +0 -0
- data/lib/seven_zip_ruby/archive_info.rb +21 -0
- data/lib/seven_zip_ruby/entry_info.rb +45 -0
- data/lib/seven_zip_ruby/exception.rb +7 -0
- data/lib/seven_zip_ruby/seven_zip_reader.rb +180 -0
- data/lib/seven_zip_ruby/seven_zip_writer.rb +143 -0
- data/lib/seven_zip_ruby/update_info.rb +116 -0
- data/lib/seven_zip_ruby/version.rb +3 -0
- data/seven_zip_ruby.gemspec +26 -0
- data/spec/seven_zip_ruby_spec.rb +490 -0
- data/spec/seven_zip_ruby_spec_helper.rb +122 -0
- metadata +820 -0
@@ -0,0 +1,205 @@
|
|
1
|
+
// Compress/BZip2Decoder.h
|
2
|
+
|
3
|
+
#ifndef __COMPRESS_BZIP2_DECODER_H
|
4
|
+
#define __COMPRESS_BZIP2_DECODER_H
|
5
|
+
|
6
|
+
#include "../../Common/MyCom.h"
|
7
|
+
|
8
|
+
#ifndef _7ZIP_ST
|
9
|
+
#include "../../Windows/Synchronization.h"
|
10
|
+
#include "../../Windows/Thread.h"
|
11
|
+
#endif
|
12
|
+
|
13
|
+
#include "../ICoder.h"
|
14
|
+
|
15
|
+
#include "../Common/InBuffer.h"
|
16
|
+
#include "../Common/OutBuffer.h"
|
17
|
+
|
18
|
+
#include "BitmDecoder.h"
|
19
|
+
#include "BZip2Const.h"
|
20
|
+
#include "BZip2Crc.h"
|
21
|
+
#include "HuffmanDecoder.h"
|
22
|
+
|
23
|
+
namespace NCompress {
|
24
|
+
namespace NBZip2 {
|
25
|
+
|
26
|
+
typedef NCompress::NHuffman::CDecoder<kMaxHuffmanLen, kMaxAlphaSize> CHuffmanDecoder;
|
27
|
+
|
28
|
+
class CDecoder;
|
29
|
+
|
30
|
+
struct CState
|
31
|
+
{
|
32
|
+
UInt32 *Counters;
|
33
|
+
|
34
|
+
#ifndef _7ZIP_ST
|
35
|
+
|
36
|
+
CDecoder *Decoder;
|
37
|
+
NWindows::CThread Thread;
|
38
|
+
bool m_OptimizeNumTables;
|
39
|
+
|
40
|
+
NWindows::NSynchronization::CAutoResetEvent StreamWasFinishedEvent;
|
41
|
+
NWindows::NSynchronization::CAutoResetEvent WaitingWasStartedEvent;
|
42
|
+
|
43
|
+
// it's not member of this thread. We just need one event per thread
|
44
|
+
NWindows::NSynchronization::CAutoResetEvent CanWriteEvent;
|
45
|
+
|
46
|
+
Byte MtPad[1 << 8]; // It's pad for Multi-Threading. Must be >= Cache_Line_Size.
|
47
|
+
|
48
|
+
HRESULT Create();
|
49
|
+
void FinishStream();
|
50
|
+
void ThreadFunc();
|
51
|
+
|
52
|
+
#endif
|
53
|
+
|
54
|
+
CState(): Counters(0) {}
|
55
|
+
~CState() { Free(); }
|
56
|
+
bool Alloc();
|
57
|
+
void Free();
|
58
|
+
};
|
59
|
+
|
60
|
+
class CDecoder :
|
61
|
+
public ICompressCoder,
|
62
|
+
#ifndef _7ZIP_ST
|
63
|
+
public ICompressSetCoderMt,
|
64
|
+
#endif
|
65
|
+
public CMyUnknownImp
|
66
|
+
{
|
67
|
+
public:
|
68
|
+
COutBuffer m_OutStream;
|
69
|
+
Byte MtPad[1 << 8]; // It's pad for Multi-Threading. Must be >= Cache_Line_Size.
|
70
|
+
NBitm::CDecoder<CInBuffer> m_InStream;
|
71
|
+
Byte m_Selectors[kNumSelectorsMax];
|
72
|
+
CHuffmanDecoder m_HuffmanDecoders[kNumTablesMax];
|
73
|
+
UInt64 _inStart;
|
74
|
+
|
75
|
+
private:
|
76
|
+
|
77
|
+
bool _needInStreamInit;
|
78
|
+
|
79
|
+
UInt32 ReadBits(unsigned numBits);
|
80
|
+
Byte ReadByte();
|
81
|
+
bool ReadBit();
|
82
|
+
UInt32 ReadCrc();
|
83
|
+
HRESULT DecodeFile(bool &isBZ, ICompressProgressInfo *progress);
|
84
|
+
HRESULT CodeReal(ISequentialInStream *inStream, ISequentialOutStream *outStream,
|
85
|
+
bool &isBZ, ICompressProgressInfo *progress);
|
86
|
+
class CDecoderFlusher
|
87
|
+
{
|
88
|
+
CDecoder *_decoder;
|
89
|
+
public:
|
90
|
+
bool NeedFlush;
|
91
|
+
bool ReleaseInStream;
|
92
|
+
CDecoderFlusher(CDecoder *decoder, bool releaseInStream):
|
93
|
+
_decoder(decoder),
|
94
|
+
ReleaseInStream(releaseInStream),
|
95
|
+
NeedFlush(true) {}
|
96
|
+
~CDecoderFlusher()
|
97
|
+
{
|
98
|
+
if (NeedFlush)
|
99
|
+
_decoder->Flush();
|
100
|
+
_decoder->ReleaseStreams(ReleaseInStream);
|
101
|
+
}
|
102
|
+
};
|
103
|
+
|
104
|
+
public:
|
105
|
+
CBZip2CombinedCrc CombinedCrc;
|
106
|
+
ICompressProgressInfo *Progress;
|
107
|
+
|
108
|
+
#ifndef _7ZIP_ST
|
109
|
+
CState *m_States;
|
110
|
+
UInt32 m_NumThreadsPrev;
|
111
|
+
|
112
|
+
NWindows::NSynchronization::CManualResetEvent CanProcessEvent;
|
113
|
+
NWindows::NSynchronization::CCriticalSection CS;
|
114
|
+
UInt32 NumThreads;
|
115
|
+
bool MtMode;
|
116
|
+
UInt32 NextBlockIndex;
|
117
|
+
bool CloseThreads;
|
118
|
+
bool StreamWasFinished1;
|
119
|
+
bool StreamWasFinished2;
|
120
|
+
NWindows::NSynchronization::CManualResetEvent CanStartWaitingEvent;
|
121
|
+
|
122
|
+
HRESULT Result1;
|
123
|
+
HRESULT Result2;
|
124
|
+
|
125
|
+
UInt32 BlockSizeMax;
|
126
|
+
~CDecoder();
|
127
|
+
HRESULT Create();
|
128
|
+
void Free();
|
129
|
+
|
130
|
+
#else
|
131
|
+
CState m_States[1];
|
132
|
+
#endif
|
133
|
+
|
134
|
+
CDecoder();
|
135
|
+
|
136
|
+
HRESULT SetRatioProgress(UInt64 packSize);
|
137
|
+
HRESULT ReadSignatures(bool &wasFinished, UInt32 &crc);
|
138
|
+
|
139
|
+
HRESULT Flush() { return m_OutStream.Flush(); }
|
140
|
+
void ReleaseStreams(bool releaseInStream)
|
141
|
+
{
|
142
|
+
if (releaseInStream)
|
143
|
+
m_InStream.ReleaseStream();
|
144
|
+
m_OutStream.ReleaseStream();
|
145
|
+
}
|
146
|
+
|
147
|
+
MY_QUERYINTERFACE_BEGIN2(ICompressCoder)
|
148
|
+
#ifndef _7ZIP_ST
|
149
|
+
MY_QUERYINTERFACE_ENTRY(ICompressSetCoderMt)
|
150
|
+
#endif
|
151
|
+
|
152
|
+
MY_QUERYINTERFACE_END
|
153
|
+
MY_ADDREF_RELEASE
|
154
|
+
|
155
|
+
|
156
|
+
STDMETHOD(Code)(ISequentialInStream *inStream, ISequentialOutStream *outStream,
|
157
|
+
const UInt64 *inSize, const UInt64 *outSize, ICompressProgressInfo *progress);
|
158
|
+
|
159
|
+
STDMETHOD(SetInStream)(ISequentialInStream *inStream);
|
160
|
+
STDMETHOD(ReleaseInStream)();
|
161
|
+
|
162
|
+
HRESULT CodeResume(ISequentialOutStream *outStream, bool &isBZ, ICompressProgressInfo *progress);
|
163
|
+
UInt64 GetInputProcessedSize() const { return m_InStream.GetProcessedSize(); }
|
164
|
+
|
165
|
+
#ifndef _7ZIP_ST
|
166
|
+
STDMETHOD(SetNumberOfThreads)(UInt32 numThreads);
|
167
|
+
#endif
|
168
|
+
};
|
169
|
+
|
170
|
+
|
171
|
+
class CNsisDecoder :
|
172
|
+
public ISequentialInStream,
|
173
|
+
public ICompressSetInStream,
|
174
|
+
public ICompressSetOutStreamSize,
|
175
|
+
public CMyUnknownImp
|
176
|
+
{
|
177
|
+
NBitm::CDecoder<CInBuffer> m_InStream;
|
178
|
+
Byte m_Selectors[kNumSelectorsMax];
|
179
|
+
CHuffmanDecoder m_HuffmanDecoders[kNumTablesMax];
|
180
|
+
CState m_State;
|
181
|
+
|
182
|
+
int _nsisState;
|
183
|
+
UInt32 _tPos;
|
184
|
+
unsigned _prevByte;
|
185
|
+
unsigned _repRem;
|
186
|
+
unsigned _numReps;
|
187
|
+
UInt32 _blockSize;
|
188
|
+
|
189
|
+
public:
|
190
|
+
|
191
|
+
MY_QUERYINTERFACE_BEGIN2(ISequentialInStream)
|
192
|
+
MY_QUERYINTERFACE_ENTRY(ICompressSetInStream)
|
193
|
+
MY_QUERYINTERFACE_ENTRY(ICompressSetOutStreamSize)
|
194
|
+
MY_QUERYINTERFACE_END
|
195
|
+
MY_ADDREF_RELEASE
|
196
|
+
|
197
|
+
STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
|
198
|
+
STDMETHOD(SetInStream)(ISequentialInStream *inStream);
|
199
|
+
STDMETHOD(ReleaseInStream)();
|
200
|
+
STDMETHOD(SetOutStreamSize)(const UInt64 *outSize);
|
201
|
+
};
|
202
|
+
|
203
|
+
}}
|
204
|
+
|
205
|
+
#endif
|
@@ -0,0 +1,895 @@
|
|
1
|
+
// BZip2Encoder.cpp
|
2
|
+
|
3
|
+
#include "StdAfx.h"
|
4
|
+
|
5
|
+
#include "../../../C/Alloc.h"
|
6
|
+
#include "../../../C/BwtSort.h"
|
7
|
+
#include "../../../C/HuffEnc.h"
|
8
|
+
|
9
|
+
#include "BZip2Crc.h"
|
10
|
+
#include "BZip2Encoder.h"
|
11
|
+
#include "Mtf8.h"
|
12
|
+
|
13
|
+
namespace NCompress {
|
14
|
+
namespace NBZip2 {
|
15
|
+
|
16
|
+
const int kMaxHuffmanLenForEncoding = 16; // it must be < kMaxHuffmanLen = 20
|
17
|
+
|
18
|
+
static const UInt32 kBufferSize = (1 << 17);
|
19
|
+
static const int kNumHuffPasses = 4;
|
20
|
+
|
21
|
+
bool CThreadInfo::Alloc()
|
22
|
+
{
|
23
|
+
if (m_BlockSorterIndex == 0)
|
24
|
+
{
|
25
|
+
m_BlockSorterIndex = (UInt32 *)::BigAlloc(BLOCK_SORT_BUF_SIZE(kBlockSizeMax) * sizeof(UInt32));
|
26
|
+
if (m_BlockSorterIndex == 0)
|
27
|
+
return false;
|
28
|
+
}
|
29
|
+
|
30
|
+
if (m_Block == 0)
|
31
|
+
{
|
32
|
+
m_Block = (Byte *)::MidAlloc(kBlockSizeMax * 5 + kBlockSizeMax / 10 + (20 << 10));
|
33
|
+
if (m_Block == 0)
|
34
|
+
return false;
|
35
|
+
m_MtfArray = m_Block + kBlockSizeMax;
|
36
|
+
m_TempArray = m_MtfArray + kBlockSizeMax * 2 + 2;
|
37
|
+
}
|
38
|
+
return true;
|
39
|
+
}
|
40
|
+
|
41
|
+
void CThreadInfo::Free()
|
42
|
+
{
|
43
|
+
::BigFree(m_BlockSorterIndex);
|
44
|
+
m_BlockSorterIndex = 0;
|
45
|
+
::MidFree(m_Block);
|
46
|
+
m_Block = 0;
|
47
|
+
}
|
48
|
+
|
49
|
+
#ifndef _7ZIP_ST
|
50
|
+
|
51
|
+
static THREAD_FUNC_DECL MFThread(void *threadCoderInfo)
|
52
|
+
{
|
53
|
+
return ((CThreadInfo *)threadCoderInfo)->ThreadFunc();
|
54
|
+
}
|
55
|
+
|
56
|
+
#define RINOK_THREAD(x) { WRes __result_ = (x); if(__result_ != 0) return __result_; }
|
57
|
+
|
58
|
+
HRESULT CThreadInfo::Create()
|
59
|
+
{
|
60
|
+
RINOK_THREAD(StreamWasFinishedEvent.Create());
|
61
|
+
RINOK_THREAD(WaitingWasStartedEvent.Create());
|
62
|
+
RINOK_THREAD(CanWriteEvent.Create());
|
63
|
+
RINOK_THREAD(Thread.Create(MFThread, this));
|
64
|
+
return S_OK;
|
65
|
+
}
|
66
|
+
|
67
|
+
void CThreadInfo::FinishStream(bool needLeave)
|
68
|
+
{
|
69
|
+
Encoder->StreamWasFinished = true;
|
70
|
+
StreamWasFinishedEvent.Set();
|
71
|
+
if (needLeave)
|
72
|
+
Encoder->CS.Leave();
|
73
|
+
Encoder->CanStartWaitingEvent.Lock();
|
74
|
+
WaitingWasStartedEvent.Set();
|
75
|
+
}
|
76
|
+
|
77
|
+
DWORD CThreadInfo::ThreadFunc()
|
78
|
+
{
|
79
|
+
for (;;)
|
80
|
+
{
|
81
|
+
Encoder->CanProcessEvent.Lock();
|
82
|
+
Encoder->CS.Enter();
|
83
|
+
if (Encoder->CloseThreads)
|
84
|
+
{
|
85
|
+
Encoder->CS.Leave();
|
86
|
+
return 0;
|
87
|
+
}
|
88
|
+
if (Encoder->StreamWasFinished)
|
89
|
+
{
|
90
|
+
FinishStream(true);
|
91
|
+
continue;
|
92
|
+
}
|
93
|
+
HRESULT res = S_OK;
|
94
|
+
bool needLeave = true;
|
95
|
+
try
|
96
|
+
{
|
97
|
+
UInt32 blockSize = Encoder->ReadRleBlock(m_Block);
|
98
|
+
m_PackSize = Encoder->m_InStream.GetProcessedSize();
|
99
|
+
m_BlockIndex = Encoder->NextBlockIndex;
|
100
|
+
if (++Encoder->NextBlockIndex == Encoder->NumThreads)
|
101
|
+
Encoder->NextBlockIndex = 0;
|
102
|
+
if (blockSize == 0)
|
103
|
+
{
|
104
|
+
FinishStream(true);
|
105
|
+
continue;
|
106
|
+
}
|
107
|
+
Encoder->CS.Leave();
|
108
|
+
needLeave = false;
|
109
|
+
res = EncodeBlock3(blockSize);
|
110
|
+
}
|
111
|
+
catch(const CInBufferException &e) { res = e.ErrorCode; }
|
112
|
+
catch(const COutBufferException &e) { res = e.ErrorCode; }
|
113
|
+
catch(...) { res = E_FAIL; }
|
114
|
+
if (res != S_OK)
|
115
|
+
{
|
116
|
+
Encoder->Result = res;
|
117
|
+
FinishStream(needLeave);
|
118
|
+
continue;
|
119
|
+
}
|
120
|
+
}
|
121
|
+
}
|
122
|
+
|
123
|
+
#endif
|
124
|
+
|
125
|
+
CEncoder::CEncoder():
|
126
|
+
NumPasses(1),
|
127
|
+
m_OptimizeNumTables(false),
|
128
|
+
m_BlockSizeMult(kBlockSizeMultMax)
|
129
|
+
{
|
130
|
+
#ifndef _7ZIP_ST
|
131
|
+
ThreadsInfo = 0;
|
132
|
+
m_NumThreadsPrev = 0;
|
133
|
+
NumThreads = 1;
|
134
|
+
#endif
|
135
|
+
}
|
136
|
+
|
137
|
+
#ifndef _7ZIP_ST
|
138
|
+
CEncoder::~CEncoder()
|
139
|
+
{
|
140
|
+
Free();
|
141
|
+
}
|
142
|
+
|
143
|
+
HRESULT CEncoder::Create()
|
144
|
+
{
|
145
|
+
RINOK_THREAD(CanProcessEvent.CreateIfNotCreated());
|
146
|
+
RINOK_THREAD(CanStartWaitingEvent.CreateIfNotCreated());
|
147
|
+
if (ThreadsInfo != 0 && m_NumThreadsPrev == NumThreads)
|
148
|
+
return S_OK;
|
149
|
+
try
|
150
|
+
{
|
151
|
+
Free();
|
152
|
+
MtMode = (NumThreads > 1);
|
153
|
+
m_NumThreadsPrev = NumThreads;
|
154
|
+
ThreadsInfo = new CThreadInfo[NumThreads];
|
155
|
+
if (ThreadsInfo == 0)
|
156
|
+
return E_OUTOFMEMORY;
|
157
|
+
}
|
158
|
+
catch(...) { return E_OUTOFMEMORY; }
|
159
|
+
for (UInt32 t = 0; t < NumThreads; t++)
|
160
|
+
{
|
161
|
+
CThreadInfo &ti = ThreadsInfo[t];
|
162
|
+
ti.Encoder = this;
|
163
|
+
if (MtMode)
|
164
|
+
{
|
165
|
+
HRESULT res = ti.Create();
|
166
|
+
if (res != S_OK)
|
167
|
+
{
|
168
|
+
NumThreads = t;
|
169
|
+
Free();
|
170
|
+
return res;
|
171
|
+
}
|
172
|
+
}
|
173
|
+
}
|
174
|
+
return S_OK;
|
175
|
+
}
|
176
|
+
|
177
|
+
void CEncoder::Free()
|
178
|
+
{
|
179
|
+
if (!ThreadsInfo)
|
180
|
+
return;
|
181
|
+
CloseThreads = true;
|
182
|
+
CanProcessEvent.Set();
|
183
|
+
for (UInt32 t = 0; t < NumThreads; t++)
|
184
|
+
{
|
185
|
+
CThreadInfo &ti = ThreadsInfo[t];
|
186
|
+
if (MtMode)
|
187
|
+
ti.Thread.Wait();
|
188
|
+
ti.Free();
|
189
|
+
}
|
190
|
+
delete []ThreadsInfo;
|
191
|
+
ThreadsInfo = 0;
|
192
|
+
}
|
193
|
+
#endif
|
194
|
+
|
195
|
+
UInt32 CEncoder::ReadRleBlock(Byte *buffer)
|
196
|
+
{
|
197
|
+
UInt32 i = 0;
|
198
|
+
Byte prevByte;
|
199
|
+
if (m_InStream.ReadByte(prevByte))
|
200
|
+
{
|
201
|
+
UInt32 blockSize = m_BlockSizeMult * kBlockSizeStep - 1;
|
202
|
+
int numReps = 1;
|
203
|
+
buffer[i++] = prevByte;
|
204
|
+
while (i < blockSize) // "- 1" to support RLE
|
205
|
+
{
|
206
|
+
Byte b;
|
207
|
+
if (!m_InStream.ReadByte(b))
|
208
|
+
break;
|
209
|
+
if (b != prevByte)
|
210
|
+
{
|
211
|
+
if (numReps >= kRleModeRepSize)
|
212
|
+
buffer[i++] = (Byte)(numReps - kRleModeRepSize);
|
213
|
+
buffer[i++] = b;
|
214
|
+
numReps = 1;
|
215
|
+
prevByte = b;
|
216
|
+
continue;
|
217
|
+
}
|
218
|
+
numReps++;
|
219
|
+
if (numReps <= kRleModeRepSize)
|
220
|
+
buffer[i++] = b;
|
221
|
+
else if (numReps == kRleModeRepSize + 255)
|
222
|
+
{
|
223
|
+
buffer[i++] = (Byte)(numReps - kRleModeRepSize);
|
224
|
+
numReps = 0;
|
225
|
+
}
|
226
|
+
}
|
227
|
+
// it's to support original BZip2 decoder
|
228
|
+
if (numReps >= kRleModeRepSize)
|
229
|
+
buffer[i++] = (Byte)(numReps - kRleModeRepSize);
|
230
|
+
}
|
231
|
+
return i;
|
232
|
+
}
|
233
|
+
|
234
|
+
void CThreadInfo::WriteBits2(UInt32 value, UInt32 numBits)
|
235
|
+
{ m_OutStreamCurrent->WriteBits(value, numBits); }
|
236
|
+
void CThreadInfo::WriteByte2(Byte b) { WriteBits2(b , 8); }
|
237
|
+
void CThreadInfo::WriteBit2(bool v) { WriteBits2((v ? 1 : 0), 1); }
|
238
|
+
void CThreadInfo::WriteCrc2(UInt32 v)
|
239
|
+
{
|
240
|
+
for (int i = 0; i < 4; i++)
|
241
|
+
WriteByte2(((Byte)(v >> (24 - i * 8))));
|
242
|
+
}
|
243
|
+
|
244
|
+
void CEncoder::WriteBits(UInt32 value, UInt32 numBits)
|
245
|
+
{ m_OutStream.WriteBits(value, numBits); }
|
246
|
+
void CEncoder::WriteByte(Byte b) { WriteBits(b , 8); }
|
247
|
+
void CEncoder::WriteBit(bool v) { WriteBits((v ? 1 : 0), 1); }
|
248
|
+
void CEncoder::WriteCrc(UInt32 v)
|
249
|
+
{
|
250
|
+
for (int i = 0; i < 4; i++)
|
251
|
+
WriteByte(((Byte)(v >> (24 - i * 8))));
|
252
|
+
}
|
253
|
+
|
254
|
+
|
255
|
+
// blockSize > 0
|
256
|
+
void CThreadInfo::EncodeBlock(const Byte *block, UInt32 blockSize)
|
257
|
+
{
|
258
|
+
WriteBit2(false); // Randomised = false
|
259
|
+
|
260
|
+
{
|
261
|
+
UInt32 origPtr = BlockSort(m_BlockSorterIndex, block, blockSize);
|
262
|
+
// if (m_BlockSorterIndex[origPtr] != 0) throw 1;
|
263
|
+
m_BlockSorterIndex[origPtr] = blockSize;
|
264
|
+
WriteBits2(origPtr, kNumOrigBits);
|
265
|
+
}
|
266
|
+
|
267
|
+
CMtf8Encoder mtf;
|
268
|
+
int numInUse = 0;
|
269
|
+
{
|
270
|
+
bool inUse[256];
|
271
|
+
bool inUse16[16];
|
272
|
+
UInt32 i;
|
273
|
+
for (i = 0; i < 256; i++)
|
274
|
+
inUse[i] = false;
|
275
|
+
for (i = 0; i < 16; i++)
|
276
|
+
inUse16[i] = false;
|
277
|
+
for (i = 0; i < blockSize; i++)
|
278
|
+
inUse[block[i]] = true;
|
279
|
+
for (i = 0; i < 256; i++)
|
280
|
+
if (inUse[i])
|
281
|
+
{
|
282
|
+
inUse16[i >> 4] = true;
|
283
|
+
mtf.Buf[numInUse++] = (Byte)i;
|
284
|
+
}
|
285
|
+
for (i = 0; i < 16; i++)
|
286
|
+
WriteBit2(inUse16[i]);
|
287
|
+
for (i = 0; i < 256; i++)
|
288
|
+
if (inUse16[i >> 4])
|
289
|
+
WriteBit2(inUse[i]);
|
290
|
+
}
|
291
|
+
int alphaSize = numInUse + 2;
|
292
|
+
|
293
|
+
Byte *mtfs = m_MtfArray;
|
294
|
+
UInt32 mtfArraySize = 0;
|
295
|
+
UInt32 symbolCounts[kMaxAlphaSize];
|
296
|
+
{
|
297
|
+
for (int i = 0; i < kMaxAlphaSize; i++)
|
298
|
+
symbolCounts[i] = 0;
|
299
|
+
}
|
300
|
+
|
301
|
+
{
|
302
|
+
UInt32 rleSize = 0;
|
303
|
+
UInt32 i = 0;
|
304
|
+
const UInt32 *bsIndex = m_BlockSorterIndex;
|
305
|
+
block--;
|
306
|
+
do
|
307
|
+
{
|
308
|
+
int pos = mtf.FindAndMove(block[bsIndex[i]]);
|
309
|
+
if (pos == 0)
|
310
|
+
rleSize++;
|
311
|
+
else
|
312
|
+
{
|
313
|
+
while (rleSize != 0)
|
314
|
+
{
|
315
|
+
rleSize--;
|
316
|
+
mtfs[mtfArraySize++] = (Byte)(rleSize & 1);
|
317
|
+
symbolCounts[rleSize & 1]++;
|
318
|
+
rleSize >>= 1;
|
319
|
+
}
|
320
|
+
if (pos >= 0xFE)
|
321
|
+
{
|
322
|
+
mtfs[mtfArraySize++] = 0xFF;
|
323
|
+
mtfs[mtfArraySize++] = (Byte)(pos - 0xFE);
|
324
|
+
}
|
325
|
+
else
|
326
|
+
mtfs[mtfArraySize++] = (Byte)(pos + 1);
|
327
|
+
symbolCounts[pos + 1]++;
|
328
|
+
}
|
329
|
+
}
|
330
|
+
while (++i < blockSize);
|
331
|
+
|
332
|
+
while (rleSize != 0)
|
333
|
+
{
|
334
|
+
rleSize--;
|
335
|
+
mtfs[mtfArraySize++] = (Byte)(rleSize & 1);
|
336
|
+
symbolCounts[rleSize & 1]++;
|
337
|
+
rleSize >>= 1;
|
338
|
+
}
|
339
|
+
|
340
|
+
if (alphaSize < 256)
|
341
|
+
mtfs[mtfArraySize++] = (Byte)(alphaSize - 1);
|
342
|
+
else
|
343
|
+
{
|
344
|
+
mtfs[mtfArraySize++] = 0xFF;
|
345
|
+
mtfs[mtfArraySize++] = (Byte)(alphaSize - 256);
|
346
|
+
}
|
347
|
+
symbolCounts[alphaSize - 1]++;
|
348
|
+
}
|
349
|
+
|
350
|
+
UInt32 numSymbols = 0;
|
351
|
+
{
|
352
|
+
for (int i = 0; i < kMaxAlphaSize; i++)
|
353
|
+
numSymbols += symbolCounts[i];
|
354
|
+
}
|
355
|
+
|
356
|
+
int bestNumTables = kNumTablesMin;
|
357
|
+
UInt32 bestPrice = 0xFFFFFFFF;
|
358
|
+
UInt32 startPos = m_OutStreamCurrent->GetPos();
|
359
|
+
Byte startCurByte = m_OutStreamCurrent->GetCurByte();
|
360
|
+
for (int nt = kNumTablesMin; nt <= kNumTablesMax + 1; nt++)
|
361
|
+
{
|
362
|
+
int numTables;
|
363
|
+
|
364
|
+
if(m_OptimizeNumTables)
|
365
|
+
{
|
366
|
+
m_OutStreamCurrent->SetPos(startPos);
|
367
|
+
m_OutStreamCurrent->SetCurState((startPos & 7), startCurByte);
|
368
|
+
if (nt <= kNumTablesMax)
|
369
|
+
numTables = nt;
|
370
|
+
else
|
371
|
+
numTables = bestNumTables;
|
372
|
+
}
|
373
|
+
else
|
374
|
+
{
|
375
|
+
if (numSymbols < 200) numTables = 2;
|
376
|
+
else if (numSymbols < 600) numTables = 3;
|
377
|
+
else if (numSymbols < 1200) numTables = 4;
|
378
|
+
else if (numSymbols < 2400) numTables = 5;
|
379
|
+
else numTables = 6;
|
380
|
+
}
|
381
|
+
|
382
|
+
WriteBits2(numTables, kNumTablesBits);
|
383
|
+
|
384
|
+
UInt32 numSelectors = (numSymbols + kGroupSize - 1) / kGroupSize;
|
385
|
+
WriteBits2(numSelectors, kNumSelectorsBits);
|
386
|
+
|
387
|
+
{
|
388
|
+
UInt32 remFreq = numSymbols;
|
389
|
+
int gs = 0;
|
390
|
+
int t = numTables;
|
391
|
+
do
|
392
|
+
{
|
393
|
+
UInt32 tFreq = remFreq / t;
|
394
|
+
int ge = gs;
|
395
|
+
UInt32 aFreq = 0;
|
396
|
+
while (aFreq < tFreq) // && ge < alphaSize)
|
397
|
+
aFreq += symbolCounts[ge++];
|
398
|
+
|
399
|
+
if (ge - 1 > gs && t != numTables && t != 1 && (((numTables - t) & 1) == 1))
|
400
|
+
aFreq -= symbolCounts[--ge];
|
401
|
+
|
402
|
+
Byte *lens = Lens[t - 1];
|
403
|
+
int i = 0;
|
404
|
+
do
|
405
|
+
lens[i] = (i >= gs && i < ge) ? 0 : 1;
|
406
|
+
while (++i < alphaSize);
|
407
|
+
gs = ge;
|
408
|
+
remFreq -= aFreq;
|
409
|
+
}
|
410
|
+
while(--t != 0);
|
411
|
+
}
|
412
|
+
|
413
|
+
|
414
|
+
for (int pass = 0; pass < kNumHuffPasses; pass++)
|
415
|
+
{
|
416
|
+
{
|
417
|
+
int t = 0;
|
418
|
+
do
|
419
|
+
memset(Freqs[t], 0, sizeof(Freqs[t]));
|
420
|
+
while(++t < numTables);
|
421
|
+
}
|
422
|
+
|
423
|
+
{
|
424
|
+
UInt32 mtfPos = 0;
|
425
|
+
UInt32 g = 0;
|
426
|
+
do
|
427
|
+
{
|
428
|
+
UInt32 symbols[kGroupSize];
|
429
|
+
int i = 0;
|
430
|
+
do
|
431
|
+
{
|
432
|
+
UInt32 symbol = mtfs[mtfPos++];
|
433
|
+
if (symbol >= 0xFF)
|
434
|
+
symbol += mtfs[mtfPos++];
|
435
|
+
symbols[i] = symbol;
|
436
|
+
}
|
437
|
+
while (++i < kGroupSize && mtfPos < mtfArraySize);
|
438
|
+
|
439
|
+
UInt32 bestPrice = 0xFFFFFFFF;
|
440
|
+
int t = 0;
|
441
|
+
do
|
442
|
+
{
|
443
|
+
const Byte *lens = Lens[t];
|
444
|
+
UInt32 price = 0;
|
445
|
+
int j = 0;
|
446
|
+
do
|
447
|
+
price += lens[symbols[j]];
|
448
|
+
while (++j < i);
|
449
|
+
if (price < bestPrice)
|
450
|
+
{
|
451
|
+
m_Selectors[g] = (Byte)t;
|
452
|
+
bestPrice = price;
|
453
|
+
}
|
454
|
+
}
|
455
|
+
while(++t < numTables);
|
456
|
+
UInt32 *freqs = Freqs[m_Selectors[g++]];
|
457
|
+
int j = 0;
|
458
|
+
do
|
459
|
+
freqs[symbols[j]]++;
|
460
|
+
while (++j < i);
|
461
|
+
}
|
462
|
+
while (mtfPos < mtfArraySize);
|
463
|
+
}
|
464
|
+
|
465
|
+
int t = 0;
|
466
|
+
do
|
467
|
+
{
|
468
|
+
UInt32 *freqs = Freqs[t];
|
469
|
+
int i = 0;
|
470
|
+
do
|
471
|
+
if (freqs[i] == 0)
|
472
|
+
freqs[i] = 1;
|
473
|
+
while(++i < alphaSize);
|
474
|
+
Huffman_Generate(freqs, Codes[t], Lens[t], kMaxAlphaSize, kMaxHuffmanLenForEncoding);
|
475
|
+
}
|
476
|
+
while(++t < numTables);
|
477
|
+
}
|
478
|
+
|
479
|
+
{
|
480
|
+
Byte mtfSel[kNumTablesMax];
|
481
|
+
{
|
482
|
+
int t = 0;
|
483
|
+
do
|
484
|
+
mtfSel[t] = (Byte)t;
|
485
|
+
while(++t < numTables);
|
486
|
+
}
|
487
|
+
|
488
|
+
UInt32 i = 0;
|
489
|
+
do
|
490
|
+
{
|
491
|
+
Byte sel = m_Selectors[i];
|
492
|
+
int pos;
|
493
|
+
for (pos = 0; mtfSel[pos] != sel; pos++)
|
494
|
+
WriteBit2(true);
|
495
|
+
WriteBit2(false);
|
496
|
+
for (; pos > 0; pos--)
|
497
|
+
mtfSel[pos] = mtfSel[pos - 1];
|
498
|
+
mtfSel[0] = sel;
|
499
|
+
}
|
500
|
+
while(++i < numSelectors);
|
501
|
+
}
|
502
|
+
|
503
|
+
{
|
504
|
+
int t = 0;
|
505
|
+
do
|
506
|
+
{
|
507
|
+
const Byte *lens = Lens[t];
|
508
|
+
UInt32 len = lens[0];
|
509
|
+
WriteBits2(len, kNumLevelsBits);
|
510
|
+
int i = 0;
|
511
|
+
do
|
512
|
+
{
|
513
|
+
UInt32 level = lens[i];
|
514
|
+
while (len != level)
|
515
|
+
{
|
516
|
+
WriteBit2(true);
|
517
|
+
if (len < level)
|
518
|
+
{
|
519
|
+
WriteBit2(false);
|
520
|
+
len++;
|
521
|
+
}
|
522
|
+
else
|
523
|
+
{
|
524
|
+
WriteBit2(true);
|
525
|
+
len--;
|
526
|
+
}
|
527
|
+
}
|
528
|
+
WriteBit2(false);
|
529
|
+
}
|
530
|
+
while (++i < alphaSize);
|
531
|
+
}
|
532
|
+
while(++t < numTables);
|
533
|
+
}
|
534
|
+
|
535
|
+
{
|
536
|
+
UInt32 groupSize = 0;
|
537
|
+
UInt32 groupIndex = 0;
|
538
|
+
const Byte *lens = 0;
|
539
|
+
const UInt32 *codes = 0;
|
540
|
+
UInt32 mtfPos = 0;
|
541
|
+
do
|
542
|
+
{
|
543
|
+
UInt32 symbol = mtfs[mtfPos++];
|
544
|
+
if (symbol >= 0xFF)
|
545
|
+
symbol += mtfs[mtfPos++];
|
546
|
+
if (groupSize == 0)
|
547
|
+
{
|
548
|
+
groupSize = kGroupSize;
|
549
|
+
int t = m_Selectors[groupIndex++];
|
550
|
+
lens = Lens[t];
|
551
|
+
codes = Codes[t];
|
552
|
+
}
|
553
|
+
groupSize--;
|
554
|
+
m_OutStreamCurrent->WriteBits(codes[symbol], lens[symbol]);
|
555
|
+
}
|
556
|
+
while (mtfPos < mtfArraySize);
|
557
|
+
}
|
558
|
+
|
559
|
+
if (!m_OptimizeNumTables)
|
560
|
+
break;
|
561
|
+
UInt32 price = m_OutStreamCurrent->GetPos() - startPos;
|
562
|
+
if (price <= bestPrice)
|
563
|
+
{
|
564
|
+
if (nt == kNumTablesMax)
|
565
|
+
break;
|
566
|
+
bestPrice = price;
|
567
|
+
bestNumTables = nt;
|
568
|
+
}
|
569
|
+
}
|
570
|
+
}
|
571
|
+
|
572
|
+
// blockSize > 0
|
573
|
+
UInt32 CThreadInfo::EncodeBlockWithHeaders(const Byte *block, UInt32 blockSize)
|
574
|
+
{
|
575
|
+
WriteByte2(kBlockSig0);
|
576
|
+
WriteByte2(kBlockSig1);
|
577
|
+
WriteByte2(kBlockSig2);
|
578
|
+
WriteByte2(kBlockSig3);
|
579
|
+
WriteByte2(kBlockSig4);
|
580
|
+
WriteByte2(kBlockSig5);
|
581
|
+
|
582
|
+
CBZip2Crc crc;
|
583
|
+
int numReps = 0;
|
584
|
+
Byte prevByte = block[0];
|
585
|
+
UInt32 i = 0;
|
586
|
+
do
|
587
|
+
{
|
588
|
+
Byte b = block[i];
|
589
|
+
if (numReps == kRleModeRepSize)
|
590
|
+
{
|
591
|
+
for (; b > 0; b--)
|
592
|
+
crc.UpdateByte(prevByte);
|
593
|
+
numReps = 0;
|
594
|
+
continue;
|
595
|
+
}
|
596
|
+
if (prevByte == b)
|
597
|
+
numReps++;
|
598
|
+
else
|
599
|
+
{
|
600
|
+
numReps = 1;
|
601
|
+
prevByte = b;
|
602
|
+
}
|
603
|
+
crc.UpdateByte(b);
|
604
|
+
}
|
605
|
+
while (++i < blockSize);
|
606
|
+
UInt32 crcRes = crc.GetDigest();
|
607
|
+
WriteCrc2(crcRes);
|
608
|
+
EncodeBlock(block, blockSize);
|
609
|
+
return crcRes;
|
610
|
+
}
|
611
|
+
|
612
|
+
void CThreadInfo::EncodeBlock2(const Byte *block, UInt32 blockSize, UInt32 numPasses)
|
613
|
+
{
|
614
|
+
UInt32 numCrcs = m_NumCrcs;
|
615
|
+
bool needCompare = false;
|
616
|
+
|
617
|
+
UInt32 startBytePos = m_OutStreamCurrent->GetBytePos();
|
618
|
+
UInt32 startPos = m_OutStreamCurrent->GetPos();
|
619
|
+
Byte startCurByte = m_OutStreamCurrent->GetCurByte();
|
620
|
+
Byte endCurByte = 0;
|
621
|
+
UInt32 endPos = 0;
|
622
|
+
if (numPasses > 1 && blockSize >= (1 << 10))
|
623
|
+
{
|
624
|
+
UInt32 blockSize0 = blockSize / 2;
|
625
|
+
for (;(block[blockSize0] == block[blockSize0 - 1] ||
|
626
|
+
block[blockSize0 - 1] == block[blockSize0 - 2]) &&
|
627
|
+
blockSize0 < blockSize; blockSize0++);
|
628
|
+
if (blockSize0 < blockSize)
|
629
|
+
{
|
630
|
+
EncodeBlock2(block, blockSize0, numPasses - 1);
|
631
|
+
EncodeBlock2(block + blockSize0, blockSize - blockSize0, numPasses - 1);
|
632
|
+
endPos = m_OutStreamCurrent->GetPos();
|
633
|
+
endCurByte = m_OutStreamCurrent->GetCurByte();
|
634
|
+
if ((endPos & 7) > 0)
|
635
|
+
WriteBits2(0, 8 - (endPos & 7));
|
636
|
+
m_OutStreamCurrent->SetCurState((startPos & 7), startCurByte);
|
637
|
+
needCompare = true;
|
638
|
+
}
|
639
|
+
}
|
640
|
+
|
641
|
+
UInt32 startBytePos2 = m_OutStreamCurrent->GetBytePos();
|
642
|
+
UInt32 startPos2 = m_OutStreamCurrent->GetPos();
|
643
|
+
UInt32 crcVal = EncodeBlockWithHeaders(block, blockSize);
|
644
|
+
UInt32 endPos2 = m_OutStreamCurrent->GetPos();
|
645
|
+
|
646
|
+
if (needCompare)
|
647
|
+
{
|
648
|
+
UInt32 size2 = endPos2 - startPos2;
|
649
|
+
if (size2 < endPos - startPos)
|
650
|
+
{
|
651
|
+
UInt32 numBytes = m_OutStreamCurrent->GetBytePos() - startBytePos2;
|
652
|
+
Byte *buffer = m_OutStreamCurrent->GetStream();
|
653
|
+
for (UInt32 i = 0; i < numBytes; i++)
|
654
|
+
buffer[startBytePos + i] = buffer[startBytePos2 + i];
|
655
|
+
m_OutStreamCurrent->SetPos(startPos + endPos2 - startPos2);
|
656
|
+
m_NumCrcs = numCrcs;
|
657
|
+
m_CRCs[m_NumCrcs++] = crcVal;
|
658
|
+
}
|
659
|
+
else
|
660
|
+
{
|
661
|
+
m_OutStreamCurrent->SetPos(endPos);
|
662
|
+
m_OutStreamCurrent->SetCurState((endPos & 7), endCurByte);
|
663
|
+
}
|
664
|
+
}
|
665
|
+
else
|
666
|
+
{
|
667
|
+
m_NumCrcs = numCrcs;
|
668
|
+
m_CRCs[m_NumCrcs++] = crcVal;
|
669
|
+
}
|
670
|
+
}
|
671
|
+
|
672
|
+
HRESULT CThreadInfo::EncodeBlock3(UInt32 blockSize)
|
673
|
+
{
|
674
|
+
CMsbfEncoderTemp outStreamTemp;
|
675
|
+
outStreamTemp.SetStream(m_TempArray);
|
676
|
+
outStreamTemp.Init();
|
677
|
+
m_OutStreamCurrent = &outStreamTemp;
|
678
|
+
|
679
|
+
m_NumCrcs = 0;
|
680
|
+
|
681
|
+
EncodeBlock2(m_Block, blockSize, Encoder->NumPasses);
|
682
|
+
|
683
|
+
#ifndef _7ZIP_ST
|
684
|
+
if (Encoder->MtMode)
|
685
|
+
Encoder->ThreadsInfo[m_BlockIndex].CanWriteEvent.Lock();
|
686
|
+
#endif
|
687
|
+
for (UInt32 i = 0; i < m_NumCrcs; i++)
|
688
|
+
Encoder->CombinedCrc.Update(m_CRCs[i]);
|
689
|
+
Encoder->WriteBytes(m_TempArray, outStreamTemp.GetPos(), outStreamTemp.GetCurByte());
|
690
|
+
HRESULT res = S_OK;
|
691
|
+
#ifndef _7ZIP_ST
|
692
|
+
if (Encoder->MtMode)
|
693
|
+
{
|
694
|
+
UInt32 blockIndex = m_BlockIndex + 1;
|
695
|
+
if (blockIndex == Encoder->NumThreads)
|
696
|
+
blockIndex = 0;
|
697
|
+
|
698
|
+
if (Encoder->Progress)
|
699
|
+
{
|
700
|
+
UInt64 unpackSize = Encoder->m_OutStream.GetProcessedSize();
|
701
|
+
res = Encoder->Progress->SetRatioInfo(&m_PackSize, &unpackSize);
|
702
|
+
}
|
703
|
+
|
704
|
+
Encoder->ThreadsInfo[blockIndex].CanWriteEvent.Set();
|
705
|
+
}
|
706
|
+
#endif
|
707
|
+
return res;
|
708
|
+
}
|
709
|
+
|
710
|
+
void CEncoder::WriteBytes(const Byte *data, UInt32 sizeInBits, Byte lastByte)
|
711
|
+
{
|
712
|
+
UInt32 bytesSize = (sizeInBits / 8);
|
713
|
+
for (UInt32 i = 0; i < bytesSize; i++)
|
714
|
+
m_OutStream.WriteBits(data[i], 8);
|
715
|
+
WriteBits(lastByte, (sizeInBits & 7));
|
716
|
+
}
|
717
|
+
|
718
|
+
|
719
|
+
HRESULT CEncoder::CodeReal(ISequentialInStream *inStream, ISequentialOutStream *outStream,
|
720
|
+
const UInt64 * /* inSize */, const UInt64 * /* outSize */, ICompressProgressInfo *progress)
|
721
|
+
{
|
722
|
+
#ifndef _7ZIP_ST
|
723
|
+
Progress = progress;
|
724
|
+
RINOK(Create());
|
725
|
+
for (UInt32 t = 0; t < NumThreads; t++)
|
726
|
+
#endif
|
727
|
+
{
|
728
|
+
#ifndef _7ZIP_ST
|
729
|
+
CThreadInfo &ti = ThreadsInfo[t];
|
730
|
+
if (MtMode)
|
731
|
+
{
|
732
|
+
RINOK(ti.StreamWasFinishedEvent.Reset());
|
733
|
+
RINOK(ti.WaitingWasStartedEvent.Reset());
|
734
|
+
RINOK(ti.CanWriteEvent.Reset());
|
735
|
+
}
|
736
|
+
#else
|
737
|
+
CThreadInfo &ti = ThreadsInfo;
|
738
|
+
ti.Encoder = this;
|
739
|
+
#endif
|
740
|
+
|
741
|
+
ti.m_OptimizeNumTables = m_OptimizeNumTables;
|
742
|
+
|
743
|
+
if (!ti.Alloc())
|
744
|
+
return E_OUTOFMEMORY;
|
745
|
+
}
|
746
|
+
|
747
|
+
|
748
|
+
if (!m_InStream.Create(kBufferSize))
|
749
|
+
return E_OUTOFMEMORY;
|
750
|
+
if (!m_OutStream.Create(kBufferSize))
|
751
|
+
return E_OUTOFMEMORY;
|
752
|
+
|
753
|
+
|
754
|
+
m_InStream.SetStream(inStream);
|
755
|
+
m_InStream.Init();
|
756
|
+
|
757
|
+
m_OutStream.SetStream(outStream);
|
758
|
+
m_OutStream.Init();
|
759
|
+
|
760
|
+
CFlusher flusher(this);
|
761
|
+
|
762
|
+
CombinedCrc.Init();
|
763
|
+
#ifndef _7ZIP_ST
|
764
|
+
NextBlockIndex = 0;
|
765
|
+
StreamWasFinished = false;
|
766
|
+
CloseThreads = false;
|
767
|
+
CanStartWaitingEvent.Reset();
|
768
|
+
#endif
|
769
|
+
|
770
|
+
WriteByte(kArSig0);
|
771
|
+
WriteByte(kArSig1);
|
772
|
+
WriteByte(kArSig2);
|
773
|
+
WriteByte((Byte)(kArSig3 + m_BlockSizeMult));
|
774
|
+
|
775
|
+
#ifndef _7ZIP_ST
|
776
|
+
|
777
|
+
if (MtMode)
|
778
|
+
{
|
779
|
+
ThreadsInfo[0].CanWriteEvent.Set();
|
780
|
+
Result = S_OK;
|
781
|
+
CanProcessEvent.Set();
|
782
|
+
UInt32 t;
|
783
|
+
for (t = 0; t < NumThreads; t++)
|
784
|
+
ThreadsInfo[t].StreamWasFinishedEvent.Lock();
|
785
|
+
CanProcessEvent.Reset();
|
786
|
+
CanStartWaitingEvent.Set();
|
787
|
+
for (t = 0; t < NumThreads; t++)
|
788
|
+
ThreadsInfo[t].WaitingWasStartedEvent.Lock();
|
789
|
+
CanStartWaitingEvent.Reset();
|
790
|
+
RINOK(Result);
|
791
|
+
}
|
792
|
+
else
|
793
|
+
#endif
|
794
|
+
{
|
795
|
+
for (;;)
|
796
|
+
{
|
797
|
+
CThreadInfo &ti =
|
798
|
+
#ifndef _7ZIP_ST
|
799
|
+
ThreadsInfo[0];
|
800
|
+
#else
|
801
|
+
ThreadsInfo;
|
802
|
+
#endif
|
803
|
+
UInt32 blockSize = ReadRleBlock(ti.m_Block);
|
804
|
+
if (blockSize == 0)
|
805
|
+
break;
|
806
|
+
RINOK(ti.EncodeBlock3(blockSize));
|
807
|
+
if (progress)
|
808
|
+
{
|
809
|
+
UInt64 packSize = m_InStream.GetProcessedSize();
|
810
|
+
UInt64 unpackSize = m_OutStream.GetProcessedSize();
|
811
|
+
RINOK(progress->SetRatioInfo(&packSize, &unpackSize));
|
812
|
+
}
|
813
|
+
}
|
814
|
+
}
|
815
|
+
WriteByte(kFinSig0);
|
816
|
+
WriteByte(kFinSig1);
|
817
|
+
WriteByte(kFinSig2);
|
818
|
+
WriteByte(kFinSig3);
|
819
|
+
WriteByte(kFinSig4);
|
820
|
+
WriteByte(kFinSig5);
|
821
|
+
|
822
|
+
WriteCrc(CombinedCrc.GetDigest());
|
823
|
+
return Flush();
|
824
|
+
}
|
825
|
+
|
826
|
+
STDMETHODIMP CEncoder::Code(ISequentialInStream *inStream, ISequentialOutStream *outStream,
|
827
|
+
const UInt64 *inSize, const UInt64 *outSize, ICompressProgressInfo *progress)
|
828
|
+
{
|
829
|
+
try { return CodeReal(inStream, outStream, inSize, outSize, progress); }
|
830
|
+
catch(const CInBufferException &e) { return e.ErrorCode; }
|
831
|
+
catch(const COutBufferException &e) { return e.ErrorCode; }
|
832
|
+
catch(...) { return S_FALSE; }
|
833
|
+
}
|
834
|
+
|
835
|
+
HRESULT CEncoder::SetCoderProperties(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps)
|
836
|
+
{
|
837
|
+
for(UInt32 i = 0; i < numProps; i++)
|
838
|
+
{
|
839
|
+
const PROPVARIANT &prop = props[i];
|
840
|
+
switch(propIDs[i])
|
841
|
+
{
|
842
|
+
case NCoderPropID::kNumPasses:
|
843
|
+
{
|
844
|
+
if (prop.vt != VT_UI4)
|
845
|
+
return E_INVALIDARG;
|
846
|
+
UInt32 numPasses = prop.ulVal;
|
847
|
+
if (numPasses == 0)
|
848
|
+
numPasses = 1;
|
849
|
+
if (numPasses > kNumPassesMax)
|
850
|
+
numPasses = kNumPassesMax;
|
851
|
+
NumPasses = numPasses;
|
852
|
+
m_OptimizeNumTables = (NumPasses > 1);
|
853
|
+
break;
|
854
|
+
}
|
855
|
+
case NCoderPropID::kDictionarySize:
|
856
|
+
{
|
857
|
+
if (prop.vt != VT_UI4)
|
858
|
+
return E_INVALIDARG;
|
859
|
+
UInt32 dictionary = prop.ulVal / kBlockSizeStep;
|
860
|
+
if (dictionary < kBlockSizeMultMin)
|
861
|
+
dictionary = kBlockSizeMultMin;
|
862
|
+
else if (dictionary > kBlockSizeMultMax)
|
863
|
+
dictionary = kBlockSizeMultMax;
|
864
|
+
m_BlockSizeMult = dictionary;
|
865
|
+
break;
|
866
|
+
}
|
867
|
+
case NCoderPropID::kNumThreads:
|
868
|
+
{
|
869
|
+
#ifndef _7ZIP_ST
|
870
|
+
if (prop.vt != VT_UI4)
|
871
|
+
return E_INVALIDARG;
|
872
|
+
NumThreads = prop.ulVal;
|
873
|
+
if (NumThreads < 1)
|
874
|
+
NumThreads = 1;
|
875
|
+
#endif
|
876
|
+
break;
|
877
|
+
}
|
878
|
+
default:
|
879
|
+
return E_INVALIDARG;
|
880
|
+
}
|
881
|
+
}
|
882
|
+
return S_OK;
|
883
|
+
}
|
884
|
+
|
885
|
+
#ifndef _7ZIP_ST
|
886
|
+
STDMETHODIMP CEncoder::SetNumberOfThreads(UInt32 numThreads)
|
887
|
+
{
|
888
|
+
NumThreads = numThreads;
|
889
|
+
if (NumThreads < 1)
|
890
|
+
NumThreads = 1;
|
891
|
+
return S_OK;
|
892
|
+
}
|
893
|
+
#endif
|
894
|
+
|
895
|
+
}}
|