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,20 @@
|
|
1
|
+
/* RotateDefs.h -- Rotate functions
|
2
|
+
2009-02-07 : Igor Pavlov : Public domain */
|
3
|
+
|
4
|
+
#ifndef __ROTATE_DEFS_H
|
5
|
+
#define __ROTATE_DEFS_H
|
6
|
+
|
7
|
+
#ifdef _MSC_VER
|
8
|
+
|
9
|
+
#include <stdlib.h>
|
10
|
+
#define rotlFixed(x, n) _rotl((x), (n))
|
11
|
+
#define rotrFixed(x, n) _rotr((x), (n))
|
12
|
+
|
13
|
+
#else
|
14
|
+
|
15
|
+
#define rotlFixed(x, n) (((x) << (n)) | ((x) >> (32 - (n))))
|
16
|
+
#define rotrFixed(x, n) (((x) >> (n)) | ((x) << (32 - (n))))
|
17
|
+
|
18
|
+
#endif
|
19
|
+
|
20
|
+
#endif
|
@@ -0,0 +1,204 @@
|
|
1
|
+
/* Crypto/Sha256.c -- SHA-256 Hash
|
2
|
+
2010-06-11 : Igor Pavlov : Public domain
|
3
|
+
This code is based on public domain code from Wei Dai's Crypto++ library. */
|
4
|
+
|
5
|
+
#include "RotateDefs.h"
|
6
|
+
#include "Sha256.h"
|
7
|
+
|
8
|
+
/* define it for speed optimization */
|
9
|
+
/* #define _SHA256_UNROLL */
|
10
|
+
/* #define _SHA256_UNROLL2 */
|
11
|
+
|
12
|
+
void Sha256_Init(CSha256 *p)
|
13
|
+
{
|
14
|
+
p->state[0] = 0x6a09e667;
|
15
|
+
p->state[1] = 0xbb67ae85;
|
16
|
+
p->state[2] = 0x3c6ef372;
|
17
|
+
p->state[3] = 0xa54ff53a;
|
18
|
+
p->state[4] = 0x510e527f;
|
19
|
+
p->state[5] = 0x9b05688c;
|
20
|
+
p->state[6] = 0x1f83d9ab;
|
21
|
+
p->state[7] = 0x5be0cd19;
|
22
|
+
p->count = 0;
|
23
|
+
}
|
24
|
+
|
25
|
+
#define S0(x) (rotrFixed(x, 2) ^ rotrFixed(x,13) ^ rotrFixed(x, 22))
|
26
|
+
#define S1(x) (rotrFixed(x, 6) ^ rotrFixed(x,11) ^ rotrFixed(x, 25))
|
27
|
+
#define s0(x) (rotrFixed(x, 7) ^ rotrFixed(x,18) ^ (x >> 3))
|
28
|
+
#define s1(x) (rotrFixed(x,17) ^ rotrFixed(x,19) ^ (x >> 10))
|
29
|
+
|
30
|
+
#define blk0(i) (W[i] = data[i])
|
31
|
+
#define blk2(i) (W[i&15] += s1(W[(i-2)&15]) + W[(i-7)&15] + s0(W[(i-15)&15]))
|
32
|
+
|
33
|
+
#define Ch(x,y,z) (z^(x&(y^z)))
|
34
|
+
#define Maj(x,y,z) ((x&y)|(z&(x|y)))
|
35
|
+
|
36
|
+
#define a(i) T[(0-(i))&7]
|
37
|
+
#define b(i) T[(1-(i))&7]
|
38
|
+
#define c(i) T[(2-(i))&7]
|
39
|
+
#define d(i) T[(3-(i))&7]
|
40
|
+
#define e(i) T[(4-(i))&7]
|
41
|
+
#define f(i) T[(5-(i))&7]
|
42
|
+
#define g(i) T[(6-(i))&7]
|
43
|
+
#define h(i) T[(7-(i))&7]
|
44
|
+
|
45
|
+
|
46
|
+
#ifdef _SHA256_UNROLL2
|
47
|
+
|
48
|
+
#define R(a,b,c,d,e,f,g,h, i) h += S1(e) + Ch(e,f,g) + K[i+j] + (j?blk2(i):blk0(i));\
|
49
|
+
d += h; h += S0(a) + Maj(a, b, c)
|
50
|
+
|
51
|
+
#define RX_8(i) \
|
52
|
+
R(a,b,c,d,e,f,g,h, i); \
|
53
|
+
R(h,a,b,c,d,e,f,g, i+1); \
|
54
|
+
R(g,h,a,b,c,d,e,f, i+2); \
|
55
|
+
R(f,g,h,a,b,c,d,e, i+3); \
|
56
|
+
R(e,f,g,h,a,b,c,d, i+4); \
|
57
|
+
R(d,e,f,g,h,a,b,c, i+5); \
|
58
|
+
R(c,d,e,f,g,h,a,b, i+6); \
|
59
|
+
R(b,c,d,e,f,g,h,a, i+7)
|
60
|
+
|
61
|
+
#else
|
62
|
+
|
63
|
+
#define R(i) h(i) += S1(e(i)) + Ch(e(i),f(i),g(i)) + K[i+j] + (j?blk2(i):blk0(i));\
|
64
|
+
d(i) += h(i); h(i) += S0(a(i)) + Maj(a(i), b(i), c(i))
|
65
|
+
|
66
|
+
#ifdef _SHA256_UNROLL
|
67
|
+
|
68
|
+
#define RX_8(i) R(i+0); R(i+1); R(i+2); R(i+3); R(i+4); R(i+5); R(i+6); R(i+7);
|
69
|
+
|
70
|
+
#endif
|
71
|
+
|
72
|
+
#endif
|
73
|
+
|
74
|
+
static const UInt32 K[64] = {
|
75
|
+
0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5,
|
76
|
+
0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5,
|
77
|
+
0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3,
|
78
|
+
0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174,
|
79
|
+
0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc,
|
80
|
+
0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,
|
81
|
+
0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7,
|
82
|
+
0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967,
|
83
|
+
0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13,
|
84
|
+
0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85,
|
85
|
+
0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3,
|
86
|
+
0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070,
|
87
|
+
0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5,
|
88
|
+
0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3,
|
89
|
+
0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208,
|
90
|
+
0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2
|
91
|
+
};
|
92
|
+
|
93
|
+
static void Sha256_Transform(UInt32 *state, const UInt32 *data)
|
94
|
+
{
|
95
|
+
UInt32 W[16];
|
96
|
+
unsigned j;
|
97
|
+
#ifdef _SHA256_UNROLL2
|
98
|
+
UInt32 a,b,c,d,e,f,g,h;
|
99
|
+
a = state[0];
|
100
|
+
b = state[1];
|
101
|
+
c = state[2];
|
102
|
+
d = state[3];
|
103
|
+
e = state[4];
|
104
|
+
f = state[5];
|
105
|
+
g = state[6];
|
106
|
+
h = state[7];
|
107
|
+
#else
|
108
|
+
UInt32 T[8];
|
109
|
+
for (j = 0; j < 8; j++)
|
110
|
+
T[j] = state[j];
|
111
|
+
#endif
|
112
|
+
|
113
|
+
for (j = 0; j < 64; j += 16)
|
114
|
+
{
|
115
|
+
#if defined(_SHA256_UNROLL) || defined(_SHA256_UNROLL2)
|
116
|
+
RX_8(0); RX_8(8);
|
117
|
+
#else
|
118
|
+
unsigned i;
|
119
|
+
for (i = 0; i < 16; i++) { R(i); }
|
120
|
+
#endif
|
121
|
+
}
|
122
|
+
|
123
|
+
#ifdef _SHA256_UNROLL2
|
124
|
+
state[0] += a;
|
125
|
+
state[1] += b;
|
126
|
+
state[2] += c;
|
127
|
+
state[3] += d;
|
128
|
+
state[4] += e;
|
129
|
+
state[5] += f;
|
130
|
+
state[6] += g;
|
131
|
+
state[7] += h;
|
132
|
+
#else
|
133
|
+
for (j = 0; j < 8; j++)
|
134
|
+
state[j] += T[j];
|
135
|
+
#endif
|
136
|
+
|
137
|
+
/* Wipe variables */
|
138
|
+
/* memset(W, 0, sizeof(W)); */
|
139
|
+
/* memset(T, 0, sizeof(T)); */
|
140
|
+
}
|
141
|
+
|
142
|
+
#undef S0
|
143
|
+
#undef S1
|
144
|
+
#undef s0
|
145
|
+
#undef s1
|
146
|
+
|
147
|
+
static void Sha256_WriteByteBlock(CSha256 *p)
|
148
|
+
{
|
149
|
+
UInt32 data32[16];
|
150
|
+
unsigned i;
|
151
|
+
for (i = 0; i < 16; i++)
|
152
|
+
data32[i] =
|
153
|
+
((UInt32)(p->buffer[i * 4 ]) << 24) +
|
154
|
+
((UInt32)(p->buffer[i * 4 + 1]) << 16) +
|
155
|
+
((UInt32)(p->buffer[i * 4 + 2]) << 8) +
|
156
|
+
((UInt32)(p->buffer[i * 4 + 3]));
|
157
|
+
Sha256_Transform(p->state, data32);
|
158
|
+
}
|
159
|
+
|
160
|
+
void Sha256_Update(CSha256 *p, const Byte *data, size_t size)
|
161
|
+
{
|
162
|
+
UInt32 curBufferPos = (UInt32)p->count & 0x3F;
|
163
|
+
while (size > 0)
|
164
|
+
{
|
165
|
+
p->buffer[curBufferPos++] = *data++;
|
166
|
+
p->count++;
|
167
|
+
size--;
|
168
|
+
if (curBufferPos == 64)
|
169
|
+
{
|
170
|
+
curBufferPos = 0;
|
171
|
+
Sha256_WriteByteBlock(p);
|
172
|
+
}
|
173
|
+
}
|
174
|
+
}
|
175
|
+
|
176
|
+
void Sha256_Final(CSha256 *p, Byte *digest)
|
177
|
+
{
|
178
|
+
UInt64 lenInBits = (p->count << 3);
|
179
|
+
UInt32 curBufferPos = (UInt32)p->count & 0x3F;
|
180
|
+
unsigned i;
|
181
|
+
p->buffer[curBufferPos++] = 0x80;
|
182
|
+
while (curBufferPos != (64 - 8))
|
183
|
+
{
|
184
|
+
curBufferPos &= 0x3F;
|
185
|
+
if (curBufferPos == 0)
|
186
|
+
Sha256_WriteByteBlock(p);
|
187
|
+
p->buffer[curBufferPos++] = 0;
|
188
|
+
}
|
189
|
+
for (i = 0; i < 8; i++)
|
190
|
+
{
|
191
|
+
p->buffer[curBufferPos++] = (Byte)(lenInBits >> 56);
|
192
|
+
lenInBits <<= 8;
|
193
|
+
}
|
194
|
+
Sha256_WriteByteBlock(p);
|
195
|
+
|
196
|
+
for (i = 0; i < 8; i++)
|
197
|
+
{
|
198
|
+
*digest++ = (Byte)(p->state[i] >> 24);
|
199
|
+
*digest++ = (Byte)(p->state[i] >> 16);
|
200
|
+
*digest++ = (Byte)(p->state[i] >> 8);
|
201
|
+
*digest++ = (Byte)(p->state[i]);
|
202
|
+
}
|
203
|
+
Sha256_Init(p);
|
204
|
+
}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
/* Sha256.h -- SHA-256 Hash
|
2
|
+
2010-06-11 : Igor Pavlov : Public domain */
|
3
|
+
|
4
|
+
#ifndef __CRYPTO_SHA256_H
|
5
|
+
#define __CRYPTO_SHA256_H
|
6
|
+
|
7
|
+
#include "Types.h"
|
8
|
+
|
9
|
+
EXTERN_C_BEGIN
|
10
|
+
|
11
|
+
#define SHA256_DIGEST_SIZE 32
|
12
|
+
|
13
|
+
typedef struct
|
14
|
+
{
|
15
|
+
UInt32 state[8];
|
16
|
+
UInt64 count;
|
17
|
+
Byte buffer[64];
|
18
|
+
} CSha256;
|
19
|
+
|
20
|
+
void Sha256_Init(CSha256 *p);
|
21
|
+
void Sha256_Update(CSha256 *p, const Byte *data, size_t size);
|
22
|
+
void Sha256_Final(CSha256 *p, Byte *digest);
|
23
|
+
|
24
|
+
EXTERN_C_END
|
25
|
+
|
26
|
+
#endif
|
data/ext/p7zip/C/Sort.c
ADDED
@@ -0,0 +1,93 @@
|
|
1
|
+
/* Sort.c -- Sort functions
|
2
|
+
2010-09-17 : Igor Pavlov : Public domain */
|
3
|
+
|
4
|
+
#include "Sort.h"
|
5
|
+
|
6
|
+
#define HeapSortDown(p, k, size, temp) \
|
7
|
+
{ for (;;) { \
|
8
|
+
UInt32 s = (k << 1); \
|
9
|
+
if (s > size) break; \
|
10
|
+
if (s < size && p[s + 1] > p[s]) s++; \
|
11
|
+
if (temp >= p[s]) break; \
|
12
|
+
p[k] = p[s]; k = s; \
|
13
|
+
} p[k] = temp; }
|
14
|
+
|
15
|
+
void HeapSort(UInt32 *p, UInt32 size)
|
16
|
+
{
|
17
|
+
if (size <= 1)
|
18
|
+
return;
|
19
|
+
p--;
|
20
|
+
{
|
21
|
+
UInt32 i = size / 2;
|
22
|
+
do
|
23
|
+
{
|
24
|
+
UInt32 temp = p[i];
|
25
|
+
UInt32 k = i;
|
26
|
+
HeapSortDown(p, k, size, temp)
|
27
|
+
}
|
28
|
+
while (--i != 0);
|
29
|
+
}
|
30
|
+
/*
|
31
|
+
do
|
32
|
+
{
|
33
|
+
UInt32 k = 1;
|
34
|
+
UInt32 temp = p[size];
|
35
|
+
p[size--] = p[1];
|
36
|
+
HeapSortDown(p, k, size, temp)
|
37
|
+
}
|
38
|
+
while (size > 1);
|
39
|
+
*/
|
40
|
+
while (size > 3)
|
41
|
+
{
|
42
|
+
UInt32 temp = p[size];
|
43
|
+
UInt32 k = (p[3] > p[2]) ? 3 : 2;
|
44
|
+
p[size--] = p[1];
|
45
|
+
p[1] = p[k];
|
46
|
+
HeapSortDown(p, k, size, temp)
|
47
|
+
}
|
48
|
+
{
|
49
|
+
UInt32 temp = p[size];
|
50
|
+
p[size] = p[1];
|
51
|
+
if (size > 2 && p[2] < temp)
|
52
|
+
{
|
53
|
+
p[1] = p[2];
|
54
|
+
p[2] = temp;
|
55
|
+
}
|
56
|
+
else
|
57
|
+
p[1] = temp;
|
58
|
+
}
|
59
|
+
}
|
60
|
+
|
61
|
+
/*
|
62
|
+
#define HeapSortRefDown(p, vals, n, size, temp) \
|
63
|
+
{ UInt32 k = n; UInt32 val = vals[temp]; for (;;) { \
|
64
|
+
UInt32 s = (k << 1); \
|
65
|
+
if (s > size) break; \
|
66
|
+
if (s < size && vals[p[s + 1]] > vals[p[s]]) s++; \
|
67
|
+
if (val >= vals[p[s]]) break; \
|
68
|
+
p[k] = p[s]; k = s; \
|
69
|
+
} p[k] = temp; }
|
70
|
+
|
71
|
+
void HeapSortRef(UInt32 *p, UInt32 *vals, UInt32 size)
|
72
|
+
{
|
73
|
+
if (size <= 1)
|
74
|
+
return;
|
75
|
+
p--;
|
76
|
+
{
|
77
|
+
UInt32 i = size / 2;
|
78
|
+
do
|
79
|
+
{
|
80
|
+
UInt32 temp = p[i];
|
81
|
+
HeapSortRefDown(p, vals, i, size, temp);
|
82
|
+
}
|
83
|
+
while (--i != 0);
|
84
|
+
}
|
85
|
+
do
|
86
|
+
{
|
87
|
+
UInt32 temp = p[size];
|
88
|
+
p[size--] = p[1];
|
89
|
+
HeapSortRefDown(p, vals, 1, size, temp);
|
90
|
+
}
|
91
|
+
while (size > 1);
|
92
|
+
}
|
93
|
+
*/
|
data/ext/p7zip/C/Sort.h
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
/* Sort.h -- Sort functions
|
2
|
+
2009-02-07 : Igor Pavlov : Public domain */
|
3
|
+
|
4
|
+
#ifndef __7Z_SORT_H
|
5
|
+
#define __7Z_SORT_H
|
6
|
+
|
7
|
+
#include "Types.h"
|
8
|
+
|
9
|
+
#ifdef __cplusplus
|
10
|
+
extern "C" {
|
11
|
+
#endif
|
12
|
+
|
13
|
+
void HeapSort(UInt32 *p, UInt32 size);
|
14
|
+
/* void HeapSortRef(UInt32 *p, UInt32 *vals, UInt32 size); */
|
15
|
+
|
16
|
+
#ifdef __cplusplus
|
17
|
+
}
|
18
|
+
#endif
|
19
|
+
|
20
|
+
#endif
|
@@ -0,0 +1,582 @@
|
|
1
|
+
/* Threads.c */
|
2
|
+
|
3
|
+
#include "Threads.h"
|
4
|
+
|
5
|
+
#ifdef ENV_BEOS
|
6
|
+
#include <kernel/OS.h>
|
7
|
+
#else
|
8
|
+
#include <pthread.h>
|
9
|
+
#include <stdlib.h>
|
10
|
+
#endif
|
11
|
+
|
12
|
+
#include <errno.h>
|
13
|
+
|
14
|
+
#if defined(__linux__)
|
15
|
+
#define PTHREAD_MUTEX_ERRORCHECK PTHREAD_MUTEX_ERRORCHECK_NP
|
16
|
+
#endif
|
17
|
+
|
18
|
+
#ifdef ENV_BEOS
|
19
|
+
|
20
|
+
/* TODO : optimize the code and verify the returned values */
|
21
|
+
|
22
|
+
WRes Thread_Create(CThread *thread, THREAD_FUNC_RET_TYPE (THREAD_FUNC_CALL_TYPE *startAddress)(void *), LPVOID parameter)
|
23
|
+
{
|
24
|
+
thread->_tid = spawn_thread((int32 (*)(void *))startAddress, "CThread", B_LOW_PRIORITY, parameter);
|
25
|
+
if (thread->_tid >= B_OK) {
|
26
|
+
resume_thread(thread->_tid);
|
27
|
+
} else {
|
28
|
+
thread->_tid = B_BAD_THREAD_ID;
|
29
|
+
}
|
30
|
+
thread->_created = 1;
|
31
|
+
return 0; // SZ_OK;
|
32
|
+
}
|
33
|
+
|
34
|
+
WRes Thread_Wait(CThread *thread)
|
35
|
+
{
|
36
|
+
int ret;
|
37
|
+
|
38
|
+
if (thread->_created == 0)
|
39
|
+
return EINVAL;
|
40
|
+
|
41
|
+
if (thread->_tid >= B_OK)
|
42
|
+
{
|
43
|
+
status_t exit_value;
|
44
|
+
wait_for_thread(thread->_tid, &exit_value);
|
45
|
+
thread->_tid = B_BAD_THREAD_ID;
|
46
|
+
} else {
|
47
|
+
return EINVAL;
|
48
|
+
}
|
49
|
+
|
50
|
+
thread->_created = 0;
|
51
|
+
|
52
|
+
return 0;
|
53
|
+
}
|
54
|
+
|
55
|
+
WRes Thread_Close(CThread *thread)
|
56
|
+
{
|
57
|
+
if (!thread->_created) return SZ_OK;
|
58
|
+
|
59
|
+
thread->_tid = B_BAD_THREAD_ID;
|
60
|
+
thread->_created = 0;
|
61
|
+
return SZ_OK;
|
62
|
+
}
|
63
|
+
|
64
|
+
|
65
|
+
WRes Event_Create(CEvent *p, BOOL manualReset, int initialSignaled)
|
66
|
+
{
|
67
|
+
p->_index_waiting = 0;
|
68
|
+
p->_manual_reset = manualReset;
|
69
|
+
p->_state = (initialSignaled ? TRUE : FALSE);
|
70
|
+
p->_created = 1;
|
71
|
+
p->_sem = create_sem(1,"event");
|
72
|
+
return 0;
|
73
|
+
}
|
74
|
+
|
75
|
+
WRes Event_Set(CEvent *p) {
|
76
|
+
int index;
|
77
|
+
acquire_sem(p->_sem);
|
78
|
+
p->_state = TRUE;
|
79
|
+
for(index = 0 ; index < p->_index_waiting ; index++)
|
80
|
+
{
|
81
|
+
send_data(p->_waiting[index], '7zCN', NULL, 0);
|
82
|
+
}
|
83
|
+
p->_index_waiting = 0;
|
84
|
+
release_sem(p->_sem);
|
85
|
+
return 0;
|
86
|
+
}
|
87
|
+
|
88
|
+
WRes Event_Reset(CEvent *p) {
|
89
|
+
acquire_sem(p->_sem);
|
90
|
+
p->_state = FALSE;
|
91
|
+
release_sem(p->_sem);
|
92
|
+
return 0;
|
93
|
+
}
|
94
|
+
|
95
|
+
WRes Event_Wait(CEvent *p) {
|
96
|
+
acquire_sem(p->_sem);
|
97
|
+
while (p->_state == FALSE)
|
98
|
+
{
|
99
|
+
thread_id sender;
|
100
|
+
p->_waiting[p->_index_waiting++] = find_thread(NULL);
|
101
|
+
release_sem(p->_sem);
|
102
|
+
/* int msg = */ receive_data(&sender, NULL, 0);
|
103
|
+
acquire_sem(p->_sem);
|
104
|
+
}
|
105
|
+
if (p->_manual_reset == FALSE)
|
106
|
+
{
|
107
|
+
p->_state = FALSE;
|
108
|
+
}
|
109
|
+
release_sem(p->_sem);
|
110
|
+
return 0;
|
111
|
+
}
|
112
|
+
|
113
|
+
WRes Event_Close(CEvent *p) {
|
114
|
+
if (p->_created)
|
115
|
+
{
|
116
|
+
p->_created = 0;
|
117
|
+
delete_sem(p->_sem);
|
118
|
+
}
|
119
|
+
return 0;
|
120
|
+
}
|
121
|
+
|
122
|
+
WRes Semaphore_Create(CSemaphore *p, UInt32 initiallyCount, UInt32 maxCount)
|
123
|
+
{
|
124
|
+
p->_index_waiting = 0;
|
125
|
+
p->_count = initiallyCount;
|
126
|
+
p->_maxCount = maxCount;
|
127
|
+
p->_created = 1;
|
128
|
+
p->_sem = create_sem(1,"sem");
|
129
|
+
return 0;
|
130
|
+
}
|
131
|
+
|
132
|
+
WRes Semaphore_ReleaseN(CSemaphore *p, UInt32 releaseCount)
|
133
|
+
{
|
134
|
+
UInt32 newCount;
|
135
|
+
int index;
|
136
|
+
|
137
|
+
if (releaseCount < 1) return EINVAL;
|
138
|
+
|
139
|
+
acquire_sem(p->_sem);
|
140
|
+
newCount = p->_count + releaseCount;
|
141
|
+
if (newCount > p->_maxCount)
|
142
|
+
{
|
143
|
+
release_sem(p->_sem);
|
144
|
+
return EINVAL;
|
145
|
+
}
|
146
|
+
p->_count = newCount;
|
147
|
+
for(index = 0 ; index < p->_index_waiting ; index++)
|
148
|
+
{
|
149
|
+
send_data(p->_waiting[index], '7zCN', NULL, 0);
|
150
|
+
}
|
151
|
+
p->_index_waiting = 0;
|
152
|
+
release_sem(p->_sem);
|
153
|
+
return 0;
|
154
|
+
}
|
155
|
+
|
156
|
+
WRes Semaphore_Wait(CSemaphore *p) {
|
157
|
+
acquire_sem(p->_sem);
|
158
|
+
while (p->_count < 1)
|
159
|
+
{
|
160
|
+
thread_id sender;
|
161
|
+
p->_waiting[p->_index_waiting++] = find_thread(NULL);
|
162
|
+
release_sem(p->_sem);
|
163
|
+
/* int msg = */ receive_data(&sender, NULL, 0);
|
164
|
+
acquire_sem(p->_sem);
|
165
|
+
}
|
166
|
+
p->_count--;
|
167
|
+
release_sem(p->_sem);
|
168
|
+
return 0;
|
169
|
+
}
|
170
|
+
|
171
|
+
WRes Semaphore_Close(CSemaphore *p) {
|
172
|
+
if (p->_created)
|
173
|
+
{
|
174
|
+
p->_created = 0;
|
175
|
+
delete_sem(p->_sem);
|
176
|
+
}
|
177
|
+
return 0;
|
178
|
+
}
|
179
|
+
|
180
|
+
WRes CriticalSection_Init(CCriticalSection * lpCriticalSection)
|
181
|
+
{
|
182
|
+
lpCriticalSection->_sem = create_sem(1,"cc");
|
183
|
+
return 0;
|
184
|
+
}
|
185
|
+
|
186
|
+
#else /* !ENV_BEOS */
|
187
|
+
|
188
|
+
WRes Thread_Create(CThread *thread, THREAD_FUNC_RET_TYPE (THREAD_FUNC_CALL_TYPE *startAddress)(void *), LPVOID parameter)
|
189
|
+
{
|
190
|
+
pthread_attr_t attr;
|
191
|
+
int ret;
|
192
|
+
|
193
|
+
thread->_created = 0;
|
194
|
+
|
195
|
+
ret = pthread_attr_init(&attr);
|
196
|
+
if (ret) return ret;
|
197
|
+
|
198
|
+
ret = pthread_attr_setdetachstate(&attr,PTHREAD_CREATE_JOINABLE);
|
199
|
+
if (ret) return ret;
|
200
|
+
|
201
|
+
ret = pthread_create(&thread->_tid, &attr, (void * (*)(void *))startAddress, parameter);
|
202
|
+
|
203
|
+
/* ret2 = */ pthread_attr_destroy(&attr);
|
204
|
+
|
205
|
+
if (ret) return ret;
|
206
|
+
|
207
|
+
thread->_created = 1;
|
208
|
+
|
209
|
+
return 0; // SZ_OK;
|
210
|
+
}
|
211
|
+
|
212
|
+
WRes Thread_Wait(CThread *thread)
|
213
|
+
{
|
214
|
+
void *thread_return;
|
215
|
+
int ret;
|
216
|
+
|
217
|
+
if (thread->_created == 0)
|
218
|
+
return EINVAL;
|
219
|
+
|
220
|
+
ret = pthread_join(thread->_tid,&thread_return);
|
221
|
+
thread->_created = 0;
|
222
|
+
|
223
|
+
return ret;
|
224
|
+
}
|
225
|
+
|
226
|
+
WRes Thread_Close(CThread *thread)
|
227
|
+
{
|
228
|
+
if (!thread->_created) return SZ_OK;
|
229
|
+
|
230
|
+
pthread_detach(thread->_tid);
|
231
|
+
thread->_tid = 0;
|
232
|
+
thread->_created = 0;
|
233
|
+
return SZ_OK;
|
234
|
+
}
|
235
|
+
|
236
|
+
#ifdef DEBUG_SYNCHRO
|
237
|
+
|
238
|
+
#include <stdio.h>
|
239
|
+
|
240
|
+
static void dump_error(int ligne,int ret,const char *text,void *param)
|
241
|
+
{
|
242
|
+
printf("\n##T%d#ERROR2 (l=%d) %s : param=%p ret = %d (%s)##\n",(int)pthread_self(),ligne,text,param,ret,strerror(ret));
|
243
|
+
// abort();
|
244
|
+
}
|
245
|
+
|
246
|
+
WRes Event_Create(CEvent *p, BOOL manualReset, int initialSignaled)
|
247
|
+
{
|
248
|
+
int ret;
|
249
|
+
pthread_mutexattr_t mutexattr;
|
250
|
+
memset(&mutexattr,0,sizeof(mutexattr));
|
251
|
+
ret = pthread_mutexattr_init(&mutexattr);
|
252
|
+
if (ret != 0) dump_error(__LINE__,ret,"Event_Create::pthread_mutexattr_init",&mutexattr);
|
253
|
+
ret = pthread_mutexattr_settype(&mutexattr,PTHREAD_MUTEX_ERRORCHECK);
|
254
|
+
if (ret != 0) dump_error(__LINE__,ret,"Event_Create::pthread_mutexattr_settype",&mutexattr);
|
255
|
+
ret = pthread_mutex_init(&p->_mutex,&mutexattr);
|
256
|
+
if (ret != 0) dump_error(__LINE__,ret,"Event_Create::pthread_mutexattr_init",&p->_mutex);
|
257
|
+
if (ret == 0)
|
258
|
+
{
|
259
|
+
ret = pthread_cond_init(&p->_cond,0);
|
260
|
+
if (ret != 0) dump_error(__LINE__,ret,"Event_Create::pthread_cond_init",&p->_cond);
|
261
|
+
p->_manual_reset = manualReset;
|
262
|
+
p->_state = (initialSignaled ? TRUE : FALSE);
|
263
|
+
p->_created = 1;
|
264
|
+
}
|
265
|
+
return ret;
|
266
|
+
}
|
267
|
+
|
268
|
+
WRes Event_Set(CEvent *p) {
|
269
|
+
int ret = pthread_mutex_lock(&p->_mutex);
|
270
|
+
if (ret != 0) dump_error(__LINE__,ret,"ES::pthread_mutex_lock",&p->_mutex);
|
271
|
+
if (ret == 0)
|
272
|
+
{
|
273
|
+
p->_state = TRUE;
|
274
|
+
ret = pthread_cond_broadcast(&p->_cond);
|
275
|
+
if (ret != 0) dump_error(__LINE__,ret,"ES::pthread_cond_broadcast",&p->_cond);
|
276
|
+
if (ret == 0)
|
277
|
+
{
|
278
|
+
ret = pthread_mutex_unlock(&p->_mutex);
|
279
|
+
if (ret != 0) dump_error(__LINE__,ret,"ES::pthread_mutex_unlock",&p->_mutex);
|
280
|
+
}
|
281
|
+
}
|
282
|
+
return ret;
|
283
|
+
}
|
284
|
+
|
285
|
+
WRes Event_Reset(CEvent *p) {
|
286
|
+
int ret = pthread_mutex_lock(&p->_mutex);
|
287
|
+
if (ret != 0) dump_error(__LINE__,ret,"ER::pthread_mutex_lock",&p->_mutex);
|
288
|
+
if (ret == 0)
|
289
|
+
{
|
290
|
+
p->_state = FALSE;
|
291
|
+
ret = pthread_mutex_unlock(&p->_mutex);
|
292
|
+
if (ret != 0) dump_error(__LINE__,ret,"ER::pthread_mutex_unlock",&p->_mutex);
|
293
|
+
}
|
294
|
+
return ret;
|
295
|
+
}
|
296
|
+
|
297
|
+
WRes Event_Wait(CEvent *p) {
|
298
|
+
int ret = pthread_mutex_lock(&p->_mutex);
|
299
|
+
if (ret != 0) dump_error(__LINE__,ret,"EW::pthread_mutex_lock",&p->_mutex);
|
300
|
+
if (ret == 0)
|
301
|
+
{
|
302
|
+
while ((p->_state == FALSE) && (ret == 0))
|
303
|
+
{
|
304
|
+
ret = pthread_cond_wait(&p->_cond, &p->_mutex);
|
305
|
+
if (ret != 0) dump_error(__LINE__,ret,"EW::pthread_cond_wait",&p->_mutex);
|
306
|
+
}
|
307
|
+
if (ret == 0)
|
308
|
+
{
|
309
|
+
if (p->_manual_reset == FALSE)
|
310
|
+
{
|
311
|
+
p->_state = FALSE;
|
312
|
+
}
|
313
|
+
ret = pthread_mutex_unlock(&p->_mutex);
|
314
|
+
if (ret != 0) dump_error(__LINE__,ret,"EW::pthread_mutex_unlock",&p->_mutex);
|
315
|
+
}
|
316
|
+
}
|
317
|
+
return ret;
|
318
|
+
}
|
319
|
+
|
320
|
+
WRes Event_Close(CEvent *p) {
|
321
|
+
if (p->_created)
|
322
|
+
{
|
323
|
+
int ret;
|
324
|
+
p->_created = 0;
|
325
|
+
ret = pthread_mutex_destroy(&p->_mutex);
|
326
|
+
if (ret != 0) dump_error(__LINE__,ret,"EC::pthread_mutex_destroy",&p->_mutex);
|
327
|
+
ret = pthread_cond_destroy(&p->_cond);
|
328
|
+
if (ret != 0) dump_error(__LINE__,ret,"EC::pthread_cond_destroy",&p->_cond);
|
329
|
+
}
|
330
|
+
return 0;
|
331
|
+
}
|
332
|
+
|
333
|
+
WRes Semaphore_Create(CSemaphore *p, UInt32 initiallyCount, UInt32 maxCount)
|
334
|
+
{
|
335
|
+
int ret;
|
336
|
+
pthread_mutexattr_t mutexattr;
|
337
|
+
memset(&mutexattr,0,sizeof(mutexattr));
|
338
|
+
ret = pthread_mutexattr_init(&mutexattr);
|
339
|
+
if (ret != 0) dump_error(__LINE__,ret,"SemC::pthread_mutexattr_init",&mutexattr);
|
340
|
+
ret = pthread_mutexattr_settype(&mutexattr,PTHREAD_MUTEX_ERRORCHECK);
|
341
|
+
if (ret != 0) dump_error(__LINE__,ret,"SemC::pthread_mutexattr_settype",&mutexattr);
|
342
|
+
ret = pthread_mutex_init(&p->_mutex,&mutexattr);
|
343
|
+
if (ret != 0) dump_error(__LINE__,ret,"SemC::pthread_mutexattr_init",&p->_mutex);
|
344
|
+
if (ret == 0)
|
345
|
+
{
|
346
|
+
ret = pthread_cond_init(&p->_cond,0);
|
347
|
+
if (ret != 0) dump_error(__LINE__,ret,"SemC::pthread_cond_init",&p->_mutex);
|
348
|
+
p->_count = initiallyCount;
|
349
|
+
p->_maxCount = maxCount;
|
350
|
+
p->_created = 1;
|
351
|
+
}
|
352
|
+
return ret;
|
353
|
+
}
|
354
|
+
|
355
|
+
WRes Semaphore_ReleaseN(CSemaphore *p, UInt32 releaseCount)
|
356
|
+
{
|
357
|
+
int ret;
|
358
|
+
if (releaseCount < 1) return EINVAL;
|
359
|
+
|
360
|
+
ret = pthread_mutex_lock(&p->_mutex);
|
361
|
+
if (ret != 0) dump_error(__LINE__,ret,"SemR::pthread_mutex_lock",&p->_mutex);
|
362
|
+
if (ret == 0)
|
363
|
+
{
|
364
|
+
UInt32 newCount = p->_count + releaseCount;
|
365
|
+
if (newCount > p->_maxCount)
|
366
|
+
{
|
367
|
+
ret = pthread_mutex_unlock(&p->_mutex);
|
368
|
+
if (ret != 0) dump_error(__LINE__,ret,"SemR::pthread_mutex_unlock",&p->_mutex);
|
369
|
+
return EINVAL;
|
370
|
+
}
|
371
|
+
p->_count = newCount;
|
372
|
+
ret = pthread_cond_broadcast(&p->_cond);
|
373
|
+
if (ret != 0) dump_error(__LINE__,ret,"SemR::pthread_cond_broadcast",&p->_cond);
|
374
|
+
if (ret == 0)
|
375
|
+
{
|
376
|
+
ret = pthread_mutex_unlock(&p->_mutex);
|
377
|
+
if (ret != 0) dump_error(__LINE__,ret,"SemR::pthread_mutex_unlock",&p->_mutex);
|
378
|
+
}
|
379
|
+
}
|
380
|
+
return ret;
|
381
|
+
}
|
382
|
+
|
383
|
+
WRes Semaphore_Wait(CSemaphore *p) {
|
384
|
+
int ret = pthread_mutex_lock(&p->_mutex);
|
385
|
+
if (ret != 0) dump_error(__LINE__,ret,"SemW::pthread_mutex_lock",&p->_mutex);
|
386
|
+
if (ret == 0)
|
387
|
+
{
|
388
|
+
while ((p->_count < 1) && (ret == 0))
|
389
|
+
{
|
390
|
+
ret = pthread_cond_wait(&p->_cond, &p->_mutex);
|
391
|
+
if (ret != 0) dump_error(__LINE__,ret,"SemW::pthread_cond_wait",&p->_mutex);
|
392
|
+
}
|
393
|
+
if (ret == 0)
|
394
|
+
{
|
395
|
+
p->_count--;
|
396
|
+
ret = pthread_mutex_unlock(&p->_mutex);
|
397
|
+
if (ret != 0) dump_error(__LINE__,ret,"SemW::pthread_mutex_unlock",&p->_mutex);
|
398
|
+
}
|
399
|
+
}
|
400
|
+
return ret;
|
401
|
+
}
|
402
|
+
|
403
|
+
WRes Semaphore_Close(CSemaphore *p) {
|
404
|
+
if (p->_created)
|
405
|
+
{
|
406
|
+
int ret;
|
407
|
+
p->_created = 0;
|
408
|
+
ret = pthread_mutex_destroy(&p->_mutex);
|
409
|
+
if (ret != 0) dump_error(__LINE__,ret,"Semc::pthread_mutex_destroy",&p->_mutex);
|
410
|
+
ret = pthread_cond_destroy(&p->_cond);
|
411
|
+
if (ret != 0) dump_error(__LINE__,ret,"Semc::pthread_cond_destroy",&p->_cond);
|
412
|
+
}
|
413
|
+
return 0;
|
414
|
+
}
|
415
|
+
|
416
|
+
WRes CriticalSection_Init(CCriticalSection * lpCriticalSection)
|
417
|
+
{
|
418
|
+
if (lpCriticalSection)
|
419
|
+
{
|
420
|
+
int ret;
|
421
|
+
pthread_mutexattr_t mutexattr;
|
422
|
+
memset(&mutexattr,0,sizeof(mutexattr));
|
423
|
+
ret = pthread_mutexattr_init(&mutexattr);
|
424
|
+
if (ret != 0) dump_error(__LINE__,ret,"CS I::pthread_mutexattr_init",&mutexattr);
|
425
|
+
ret = pthread_mutexattr_settype(&mutexattr,PTHREAD_MUTEX_ERRORCHECK);
|
426
|
+
if (ret != 0) dump_error(__LINE__,ret,"CS I::pthread_mutexattr_settype",&mutexattr);
|
427
|
+
ret = pthread_mutex_init(&lpCriticalSection->_mutex,&mutexattr);
|
428
|
+
if (ret != 0) dump_error(__LINE__,ret,"CS I::pthread_mutexattr_init",&lpCriticalSection->_mutex);
|
429
|
+
return ret;
|
430
|
+
}
|
431
|
+
return EINTR;
|
432
|
+
}
|
433
|
+
|
434
|
+
void CriticalSection_Enter(CCriticalSection * lpCriticalSection)
|
435
|
+
{
|
436
|
+
if (lpCriticalSection)
|
437
|
+
{
|
438
|
+
int ret = pthread_mutex_lock(&(lpCriticalSection->_mutex));
|
439
|
+
if (ret != 0) dump_error(__LINE__,ret,"CS::pthread_mutex_lock",&(lpCriticalSection->_mutex));
|
440
|
+
}
|
441
|
+
}
|
442
|
+
|
443
|
+
void CriticalSection_Leave(CCriticalSection * lpCriticalSection)
|
444
|
+
{
|
445
|
+
if (lpCriticalSection)
|
446
|
+
{
|
447
|
+
int ret = pthread_mutex_unlock(&(lpCriticalSection->_mutex));
|
448
|
+
if (ret != 0) dump_error(__LINE__,ret,"CS::pthread_mutex_unlock",&(lpCriticalSection->_mutex));
|
449
|
+
}
|
450
|
+
}
|
451
|
+
|
452
|
+
void CriticalSection_Delete(CCriticalSection * lpCriticalSection)
|
453
|
+
{
|
454
|
+
if (lpCriticalSection)
|
455
|
+
{
|
456
|
+
int ret = pthread_mutex_destroy(&(lpCriticalSection->_mutex));
|
457
|
+
if (ret != 0) dump_error(__LINE__,ret,"CS::pthread_mutex_destroy",&(lpCriticalSection->_mutex));
|
458
|
+
}
|
459
|
+
}
|
460
|
+
|
461
|
+
#else
|
462
|
+
|
463
|
+
WRes Event_Create(CEvent *p, BOOL manualReset, int initialSignaled)
|
464
|
+
{
|
465
|
+
pthread_mutex_init(&p->_mutex,0);
|
466
|
+
pthread_cond_init(&p->_cond,0);
|
467
|
+
p->_manual_reset = manualReset;
|
468
|
+
p->_state = (initialSignaled ? TRUE : FALSE);
|
469
|
+
p->_created = 1;
|
470
|
+
return 0;
|
471
|
+
}
|
472
|
+
|
473
|
+
WRes Event_Set(CEvent *p) {
|
474
|
+
pthread_mutex_lock(&p->_mutex);
|
475
|
+
p->_state = TRUE;
|
476
|
+
pthread_cond_broadcast(&p->_cond);
|
477
|
+
pthread_mutex_unlock(&p->_mutex);
|
478
|
+
return 0;
|
479
|
+
}
|
480
|
+
|
481
|
+
WRes Event_Reset(CEvent *p) {
|
482
|
+
pthread_mutex_lock(&p->_mutex);
|
483
|
+
p->_state = FALSE;
|
484
|
+
pthread_mutex_unlock(&p->_mutex);
|
485
|
+
return 0;
|
486
|
+
}
|
487
|
+
|
488
|
+
WRes Event_Wait(CEvent *p) {
|
489
|
+
pthread_mutex_lock(&p->_mutex);
|
490
|
+
while (p->_state == FALSE)
|
491
|
+
{
|
492
|
+
pthread_cond_wait(&p->_cond, &p->_mutex);
|
493
|
+
}
|
494
|
+
if (p->_manual_reset == FALSE)
|
495
|
+
{
|
496
|
+
p->_state = FALSE;
|
497
|
+
}
|
498
|
+
pthread_mutex_unlock(&p->_mutex);
|
499
|
+
return 0;
|
500
|
+
}
|
501
|
+
|
502
|
+
WRes Event_Close(CEvent *p) {
|
503
|
+
if (p->_created)
|
504
|
+
{
|
505
|
+
p->_created = 0;
|
506
|
+
pthread_mutex_destroy(&p->_mutex);
|
507
|
+
pthread_cond_destroy(&p->_cond);
|
508
|
+
}
|
509
|
+
return 0;
|
510
|
+
}
|
511
|
+
|
512
|
+
WRes Semaphore_Create(CSemaphore *p, UInt32 initiallyCount, UInt32 maxCount)
|
513
|
+
{
|
514
|
+
pthread_mutex_init(&p->_mutex,0);
|
515
|
+
pthread_cond_init(&p->_cond,0);
|
516
|
+
p->_count = initiallyCount;
|
517
|
+
p->_maxCount = maxCount;
|
518
|
+
p->_created = 1;
|
519
|
+
return 0;
|
520
|
+
}
|
521
|
+
|
522
|
+
WRes Semaphore_ReleaseN(CSemaphore *p, UInt32 releaseCount)
|
523
|
+
{
|
524
|
+
UInt32 newCount;
|
525
|
+
|
526
|
+
if (releaseCount < 1) return EINVAL;
|
527
|
+
|
528
|
+
pthread_mutex_lock(&p->_mutex);
|
529
|
+
|
530
|
+
newCount = p->_count + releaseCount;
|
531
|
+
if (newCount > p->_maxCount)
|
532
|
+
{
|
533
|
+
pthread_mutex_unlock(&p->_mutex);
|
534
|
+
return EINVAL;
|
535
|
+
}
|
536
|
+
p->_count = newCount;
|
537
|
+
pthread_cond_broadcast(&p->_cond);
|
538
|
+
pthread_mutex_unlock(&p->_mutex);
|
539
|
+
return 0;
|
540
|
+
}
|
541
|
+
|
542
|
+
WRes Semaphore_Wait(CSemaphore *p) {
|
543
|
+
pthread_mutex_lock(&p->_mutex);
|
544
|
+
while (p->_count < 1)
|
545
|
+
{
|
546
|
+
pthread_cond_wait(&p->_cond, &p->_mutex);
|
547
|
+
}
|
548
|
+
p->_count--;
|
549
|
+
pthread_mutex_unlock(&p->_mutex);
|
550
|
+
return 0;
|
551
|
+
}
|
552
|
+
|
553
|
+
WRes Semaphore_Close(CSemaphore *p) {
|
554
|
+
if (p->_created)
|
555
|
+
{
|
556
|
+
p->_created = 0;
|
557
|
+
pthread_mutex_destroy(&p->_mutex);
|
558
|
+
pthread_cond_destroy(&p->_cond);
|
559
|
+
}
|
560
|
+
return 0;
|
561
|
+
}
|
562
|
+
|
563
|
+
WRes CriticalSection_Init(CCriticalSection * lpCriticalSection)
|
564
|
+
{
|
565
|
+
return pthread_mutex_init(&(lpCriticalSection->_mutex),0);
|
566
|
+
}
|
567
|
+
|
568
|
+
#endif /* DEBUG_SYNCHRO */
|
569
|
+
|
570
|
+
#endif /* ENV_BEOS */
|
571
|
+
|
572
|
+
WRes ManualResetEvent_Create(CManualResetEvent *p, int initialSignaled)
|
573
|
+
{ return Event_Create(p, TRUE, initialSignaled); }
|
574
|
+
|
575
|
+
WRes ManualResetEvent_CreateNotSignaled(CManualResetEvent *p)
|
576
|
+
{ return ManualResetEvent_Create(p, 0); }
|
577
|
+
|
578
|
+
WRes AutoResetEvent_Create(CAutoResetEvent *p, int initialSignaled)
|
579
|
+
{ return Event_Create(p, FALSE, initialSignaled); }
|
580
|
+
WRes AutoResetEvent_CreateNotSignaled(CAutoResetEvent *p)
|
581
|
+
{ return AutoResetEvent_Create(p, 0); }
|
582
|
+
|