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,124 @@
|
|
1
|
+
// stdafx.h
|
2
|
+
|
3
|
+
#ifndef __STDAFX_H
|
4
|
+
#define __STDAFX_H
|
5
|
+
|
6
|
+
|
7
|
+
#include "config.h"
|
8
|
+
|
9
|
+
|
10
|
+
#define NO_INLINE /* FIXME */
|
11
|
+
|
12
|
+
#ifdef ENV_HAVE_PTHREAD
|
13
|
+
#include <pthread.h>
|
14
|
+
#endif
|
15
|
+
|
16
|
+
#include "Common/MyWindows.h"
|
17
|
+
#include "Common/Types.h"
|
18
|
+
|
19
|
+
#include <windows.h>
|
20
|
+
|
21
|
+
#include <stdio.h>
|
22
|
+
#include <stdlib.h>
|
23
|
+
#include <time.h>
|
24
|
+
#include <tchar.h>
|
25
|
+
#include <wchar.h>
|
26
|
+
#include <stddef.h>
|
27
|
+
#include <ctype.h>
|
28
|
+
#include <unistd.h>
|
29
|
+
#include <errno.h>
|
30
|
+
#include <math.h>
|
31
|
+
|
32
|
+
#ifdef __NETWARE__
|
33
|
+
#include <sys/types.h>
|
34
|
+
#endif
|
35
|
+
|
36
|
+
#undef CS /* fix for Solaris 10 x86 */
|
37
|
+
|
38
|
+
|
39
|
+
/***************************/
|
40
|
+
|
41
|
+
#ifndef ENV_HAVE_WCHAR__H
|
42
|
+
|
43
|
+
EXTERN_C_BEGIN
|
44
|
+
|
45
|
+
size_t wcslen(const wchar_t *);
|
46
|
+
wchar_t *wcscpy(wchar_t * , const wchar_t * );
|
47
|
+
wchar_t *wcscat(wchar_t * , const wchar_t * );
|
48
|
+
|
49
|
+
EXTERN_C_END
|
50
|
+
|
51
|
+
#endif
|
52
|
+
|
53
|
+
/***************************/
|
54
|
+
|
55
|
+
#define CLASS_E_CLASSNOTAVAILABLE ((HRESULT)0x80040111L)
|
56
|
+
|
57
|
+
/************************* LastError *************************/
|
58
|
+
inline DWORD WINAPI GetLastError(void) { return errno; }
|
59
|
+
inline void WINAPI SetLastError( DWORD err ) { errno = err; }
|
60
|
+
|
61
|
+
#define AreFileApisANSI() (1)
|
62
|
+
|
63
|
+
void Sleep(unsigned millisleep);
|
64
|
+
|
65
|
+
typedef pid_t t_processID;
|
66
|
+
|
67
|
+
t_processID GetCurrentProcess(void);
|
68
|
+
|
69
|
+
#define NORMAL_PRIORITY_CLASS (0)
|
70
|
+
#define IDLE_PRIORITY_CLASS (10)
|
71
|
+
void SetPriorityClass(t_processID , int priority);
|
72
|
+
|
73
|
+
#ifdef __cplusplus
|
74
|
+
class wxWindow;
|
75
|
+
typedef wxWindow *HWND;
|
76
|
+
|
77
|
+
#define MB_ICONERROR (0x00000200) // wxICON_ERROR
|
78
|
+
#define MB_YESNOCANCEL (0x00000002 | 0x00000008 | 0x00000010) // wxYES | wxNO | wxCANCEL
|
79
|
+
#define MB_ICONQUESTION (0x00000400) // wxICON_QUESTION
|
80
|
+
#define MB_TASKMODAL (0) // FIXME
|
81
|
+
#define MB_SYSTEMMODAL (0) // FIXME
|
82
|
+
|
83
|
+
#define MB_OK (0x00000004) // wxOK
|
84
|
+
#define MB_ICONSTOP (0x00000200) // wxICON_STOP
|
85
|
+
#define MB_OKCANCEL (0x00000004 | 0x00000010) // wxOK | wxCANCEL
|
86
|
+
|
87
|
+
#define MessageBox MessageBoxW
|
88
|
+
int MessageBoxW(wxWindow * parent, const TCHAR * mes, const TCHAR * title,int flag);
|
89
|
+
|
90
|
+
typedef void *HINSTANCE;
|
91
|
+
|
92
|
+
typedef int INT_PTR; // FIXME 64 bits ?
|
93
|
+
typedef unsigned int UINT_PTR; // FIXME 64 bits ?
|
94
|
+
typedef long LONG_PTR; // FIXME 64 bits ?
|
95
|
+
typedef long DWORD_PTR; // FIXME 64 bits ?
|
96
|
+
typedef UINT_PTR WPARAM;
|
97
|
+
|
98
|
+
/* WARNING
|
99
|
+
LPARAM shall be 'long' because of CListView::SortItems and wxListCtrl::SortItems :
|
100
|
+
*/
|
101
|
+
typedef LONG_PTR LPARAM;
|
102
|
+
typedef LONG_PTR LRESULT;
|
103
|
+
|
104
|
+
#define CALLBACK /* */
|
105
|
+
|
106
|
+
/************ LANG ***********/
|
107
|
+
typedef WORD LANGID;
|
108
|
+
|
109
|
+
LANGID GetUserDefaultLangID(void);
|
110
|
+
LANGID GetSystemDefaultLangID(void);
|
111
|
+
|
112
|
+
#define PRIMARYLANGID(l) ((WORD)(l) & 0x3ff)
|
113
|
+
#define SUBLANGID(l) ((WORD)(l) >> 10)
|
114
|
+
|
115
|
+
#if defined( __x86_64__ )
|
116
|
+
|
117
|
+
#define _WIN64 1
|
118
|
+
|
119
|
+
#endif
|
120
|
+
|
121
|
+
#endif
|
122
|
+
|
123
|
+
#endif
|
124
|
+
|
@@ -0,0 +1,67 @@
|
|
1
|
+
|
2
|
+
#if !defined(__DJGPP__)
|
3
|
+
|
4
|
+
#ifndef __CYGWIN__
|
5
|
+
#define FILESYSTEM_IS_CASE_SENSITIVE 1
|
6
|
+
#endif
|
7
|
+
|
8
|
+
#if !defined(ENV_MACOSX) && !defined(ENV_BEOS)
|
9
|
+
|
10
|
+
/* <wchar.h> */
|
11
|
+
/* ENV_HAVE_WCHAR__H and not ENV_HAVE_WCHAR_H to avoid warning with wxWidgets */
|
12
|
+
#define ENV_HAVE_WCHAR__H
|
13
|
+
|
14
|
+
/* <wctype.h> */
|
15
|
+
#define ENV_HAVE_WCTYPE_H
|
16
|
+
|
17
|
+
/* mbrtowc */
|
18
|
+
/* #ifndef __hpux */
|
19
|
+
/* #define ENV_HAVE_MBRTOWC */
|
20
|
+
/* #endif */
|
21
|
+
|
22
|
+
/* towupper */
|
23
|
+
#define ENV_HAVE_TOWUPPER
|
24
|
+
|
25
|
+
#endif /* !ENV_MACOSX && !ENV_BEOS */
|
26
|
+
|
27
|
+
#if !defined(ENV_BEOS)
|
28
|
+
#define ENV_HAVE_GETPASS
|
29
|
+
|
30
|
+
#if !defined(sun)
|
31
|
+
#define ENV_HAVE_TIMEGM
|
32
|
+
#endif
|
33
|
+
|
34
|
+
|
35
|
+
#endif
|
36
|
+
|
37
|
+
/* lstat, readlink and S_ISLNK */
|
38
|
+
#define ENV_HAVE_LSTAT
|
39
|
+
|
40
|
+
/* <locale.h> */
|
41
|
+
#define ENV_HAVE_LOCALE
|
42
|
+
|
43
|
+
/* mbstowcs */
|
44
|
+
#define ENV_HAVE_MBSTOWCS
|
45
|
+
|
46
|
+
/* wcstombs */
|
47
|
+
#define ENV_HAVE_WCSTOMBS
|
48
|
+
|
49
|
+
#endif /* !__DJGPP__ */
|
50
|
+
|
51
|
+
#ifndef ENV_BEOS
|
52
|
+
#define ENV_HAVE_PTHREAD
|
53
|
+
#endif
|
54
|
+
|
55
|
+
#if defined(ENV_MACOSX)
|
56
|
+
#define LOCALE_IS_UTF8
|
57
|
+
#endif
|
58
|
+
|
59
|
+
#ifdef LOCALE_IS_UTF8
|
60
|
+
#undef ENV_HAVE_LOCALE
|
61
|
+
#undef ENV_HAVE_MBSTOWCS
|
62
|
+
#undef ENV_HAVE_WCSTOMBS
|
63
|
+
/* #undef ENV_HAVE_MBRTOWC */
|
64
|
+
#endif
|
65
|
+
|
66
|
+
#define MAX_PATHNAME_LEN 1024
|
67
|
+
|
@@ -0,0 +1,21 @@
|
|
1
|
+
PROG=test_emul
|
2
|
+
|
3
|
+
LOCAL_FLAGS=-I. -I.. -I../include_windows -DUNICODE -D_UNICODE
|
4
|
+
|
5
|
+
include ../../makefile.crc32
|
6
|
+
include ../../makefile.machine
|
7
|
+
|
8
|
+
LIBS=$(LOCAL_LIBS)
|
9
|
+
|
10
|
+
OBJS=myGetTickCount.o \
|
11
|
+
wine_date_and_time.o \
|
12
|
+
mySplitCommandLine.o \
|
13
|
+
myAddExeFlag.o \
|
14
|
+
wine_GetXXXDefaultLangID.o \
|
15
|
+
test_emul.o \
|
16
|
+
MyVector.o \
|
17
|
+
MyString.o \
|
18
|
+
MyWindows.o
|
19
|
+
|
20
|
+
include ../../makefile.glb
|
21
|
+
|
@@ -0,0 +1,32 @@
|
|
1
|
+
myGetTickCount.o: myGetTickCount.cpp StdAfx.h config.h \
|
2
|
+
../Common/MyWindows.h ../Common/MyGuidDef.h ../Common/Types.h
|
3
|
+
mySplitCommandLine.o: mySplitCommandLine.cpp StdAfx.h config.h \
|
4
|
+
../Common/MyWindows.h ../Common/MyGuidDef.h ../Common/Types.h \
|
5
|
+
../Common/StringConvert.h ../Common/MyString.h ../Common/MyVector.h \
|
6
|
+
../Common/Defs.h myPrivate.h
|
7
|
+
myAddExeFlag.o: myAddExeFlag.cpp StdAfx.h config.h \
|
8
|
+
../Common/MyWindows.h ../Common/MyGuidDef.h ../Common/Types.h \
|
9
|
+
myPrivate.h ../Common/StringConvert.h ../Common/MyString.h \
|
10
|
+
../Common/MyVector.h ../Common/Defs.h
|
11
|
+
test_emul.o: test_emul.cpp StdAfx.h config.h ../Common/MyWindows.h \
|
12
|
+
../Common/MyGuidDef.h ../Common/Types.h ../Common/StringConvert.h \
|
13
|
+
../Common/MyString.h ../Common/MyVector.h ../Common/Defs.h \
|
14
|
+
../Common/StdOutStream.h ../Common/StringConvert.cpp \
|
15
|
+
../Common/UTFConvert.cpp ../Common/UTFConvert.h \
|
16
|
+
../Common/StdOutStream.cpp ../Common/IntToString.h \
|
17
|
+
../Common/IntToString.cpp ../Windows/Synchronization.cpp \
|
18
|
+
../Windows/Synchronization.h ../Windows/Defs.h \
|
19
|
+
../Windows/../../C/Threads.h ../Windows/../../C/Types.h \
|
20
|
+
../Windows/FileFind.cpp ../Windows/FileFind.h \
|
21
|
+
../Windows/../Common/MyString.h ../Windows/FileName.h \
|
22
|
+
../Windows/../Common/StringConvert.h myPrivate.h
|
23
|
+
wine_date_and_time.o: wine_date_and_time.cpp config.h
|
24
|
+
MyVector.o: ../Common/MyVector.cpp StdAfx.h config.h \
|
25
|
+
../Common/MyWindows.h ../Common/MyGuidDef.h ../Common/Types.h \
|
26
|
+
../Common/MyVector.h ../Common/Defs.h
|
27
|
+
MyString.o: ../Common/MyString.cpp StdAfx.h config.h \
|
28
|
+
../Common/MyWindows.h ../Common/MyGuidDef.h ../Common/Types.h \
|
29
|
+
../Common/StringConvert.h ../Common/MyString.h ../Common/MyVector.h \
|
30
|
+
../Common/Defs.h myPrivate.h
|
31
|
+
MyWindows.o: ../Common/MyWindows.cpp StdAfx.h config.h \
|
32
|
+
../Common/MyWindows.h ../Common/MyGuidDef.h ../Common/Types.h
|
@@ -0,0 +1,28 @@
|
|
1
|
+
SRCS=myGetTickCount.cpp \
|
2
|
+
mySplitCommandLine.cpp \
|
3
|
+
myAddExeFlag.cpp \
|
4
|
+
test_emul.cpp \
|
5
|
+
wine_date_and_time.cpp \
|
6
|
+
wine_GetXXXDefaultLangID.cpp \
|
7
|
+
../Common/MyVector.cpp \
|
8
|
+
../Common/MyString.cpp \
|
9
|
+
../Common/MyWindows.cpp
|
10
|
+
|
11
|
+
mySplitCommandLine.o : mySplitCommandLine.cpp
|
12
|
+
$(CXX) $(CXXFLAGS) mySplitCommandLine.cpp
|
13
|
+
myAddExeFlag.o : myAddExeFlag.cpp
|
14
|
+
$(CXX) $(CXXFLAGS) myAddExeFlag.cpp
|
15
|
+
myGetTickCount.o : myGetTickCount.cpp
|
16
|
+
$(CXX) $(CXXFLAGS) myGetTickCount.cpp
|
17
|
+
test_emul.o : test_emul.cpp
|
18
|
+
$(CXX) $(CXXFLAGS) test_emul.cpp
|
19
|
+
wine_date_and_time.o : wine_date_and_time.cpp
|
20
|
+
$(CXX) $(CXXFLAGS) wine_date_and_time.cpp
|
21
|
+
wine_GetXXXDefaultLangID.o : wine_GetXXXDefaultLangID.cpp
|
22
|
+
$(CXX) $(CXXFLAGS) wine_GetXXXDefaultLangID.cpp
|
23
|
+
MyVector.o : ../Common/MyVector.cpp
|
24
|
+
$(CXX) $(CXXFLAGS) ../Common/MyVector.cpp
|
25
|
+
MyString.o : ../Common/MyString.cpp
|
26
|
+
$(CXX) $(CXXFLAGS) ../Common/MyString.cpp
|
27
|
+
MyWindows.o : ../Common/MyWindows.cpp
|
28
|
+
$(CXX) $(CXXFLAGS) ../Common/MyWindows.cpp
|
@@ -0,0 +1,20 @@
|
|
1
|
+
#include "StdAfx.h"
|
2
|
+
|
3
|
+
#include <sys/types.h>
|
4
|
+
#include <sys/stat.h>
|
5
|
+
|
6
|
+
#include <windows.h>
|
7
|
+
|
8
|
+
#define NEED_NAME_WINDOWS_TO_UNIX
|
9
|
+
#include "myPrivate.h"
|
10
|
+
|
11
|
+
#include "Common/StringConvert.h"
|
12
|
+
|
13
|
+
void myAddExeFlag(const UString &u_name)
|
14
|
+
{
|
15
|
+
AString filename = UnicodeStringToMultiByte(u_name, CP_ACP); // FIXME
|
16
|
+
const char * name = nameWindowToUnix(filename);
|
17
|
+
// printf("myAddExeFlag(%s)\n",name);
|
18
|
+
chmod(name,0700);
|
19
|
+
}
|
20
|
+
|
@@ -0,0 +1,17 @@
|
|
1
|
+
|
2
|
+
void WINAPI RtlSecondsSince1970ToFileTime( DWORD Seconds, FILETIME * ft );
|
3
|
+
|
4
|
+
extern "C" int global_use_utf16_conversion;
|
5
|
+
#ifdef ENV_HAVE_LSTAT
|
6
|
+
extern "C" int global_use_lstat;
|
7
|
+
#endif
|
8
|
+
|
9
|
+
const char *my_getlocale(void);
|
10
|
+
|
11
|
+
#ifdef NEED_NAME_WINDOWS_TO_UNIX
|
12
|
+
static inline const char * nameWindowToUnix(const char * lpFileName) {
|
13
|
+
if ((lpFileName[0] == 'c') && (lpFileName[1] == ':')) return lpFileName+2;
|
14
|
+
return lpFileName;
|
15
|
+
}
|
16
|
+
#endif
|
17
|
+
|
@@ -0,0 +1,82 @@
|
|
1
|
+
#include "StdAfx.h"
|
2
|
+
|
3
|
+
#include "../Common/StringConvert.h"
|
4
|
+
|
5
|
+
#include "myPrivate.h"
|
6
|
+
|
7
|
+
#ifdef ENV_HAVE_LOCALE
|
8
|
+
#include <locale.h>
|
9
|
+
#endif
|
10
|
+
|
11
|
+
extern void my_windows_split_path(const AString &p_path, AString &dir , AString &base);
|
12
|
+
|
13
|
+
void mySplitCommandLine(int numArguments,const char *arguments[],UStringVector &parts) {
|
14
|
+
|
15
|
+
{ // define P7ZIP_HOME_DIR
|
16
|
+
static char p7zip_home_dir[MAX_PATH];
|
17
|
+
AString dir,name;
|
18
|
+
my_windows_split_path(arguments[0],dir,name);
|
19
|
+
snprintf(p7zip_home_dir,sizeof(p7zip_home_dir),"P7ZIP_HOME_DIR=%s/",(const char *)dir);
|
20
|
+
p7zip_home_dir[sizeof(p7zip_home_dir)-1] = 0;
|
21
|
+
putenv(p7zip_home_dir);
|
22
|
+
}
|
23
|
+
|
24
|
+
#ifdef ENV_HAVE_LOCALE
|
25
|
+
// set the program's current locale from the user's environment variables
|
26
|
+
setlocale(LC_ALL,"");
|
27
|
+
|
28
|
+
|
29
|
+
// auto-detect which conversion p7zip should use
|
30
|
+
char *locale = setlocale(LC_CTYPE,0);
|
31
|
+
if (locale) {
|
32
|
+
size_t len = strlen(locale);
|
33
|
+
char *locale_upper = (char *)malloc(len+1);
|
34
|
+
if (locale_upper) {
|
35
|
+
strcpy(locale_upper,locale);
|
36
|
+
|
37
|
+
for(size_t i=0;i<len;i++)
|
38
|
+
locale_upper[i] = toupper(locale_upper[i] & 255);
|
39
|
+
|
40
|
+
if ( (strcmp(locale_upper,"") != 0)
|
41
|
+
&& (strcmp(locale_upper,"C") != 0)
|
42
|
+
&& (strcmp(locale_upper,"POSIX") != 0) ) {
|
43
|
+
global_use_utf16_conversion = 1;
|
44
|
+
}
|
45
|
+
free(locale_upper);
|
46
|
+
}
|
47
|
+
}
|
48
|
+
#elif defined(LOCALE_IS_UTF8)
|
49
|
+
global_use_utf16_conversion = 1; // assume LC_CTYPE="utf8"
|
50
|
+
#else
|
51
|
+
global_use_utf16_conversion = 0; // assume LC_CTYPE="C"
|
52
|
+
#endif
|
53
|
+
|
54
|
+
parts.Clear();
|
55
|
+
for(int ind=0;ind < numArguments; ind++) {
|
56
|
+
if ((ind <= 2) && (strcmp(arguments[ind],"-no-utf16") == 0)) {
|
57
|
+
global_use_utf16_conversion = 0;
|
58
|
+
} else if ((ind <= 2) && (strcmp(arguments[ind],"-utf16") == 0)) {
|
59
|
+
global_use_utf16_conversion = 1;
|
60
|
+
} else {
|
61
|
+
UString tmp = MultiByteToUnicodeString(arguments[ind]);
|
62
|
+
// tmp.Trim(); " " is a valid filename ...
|
63
|
+
if (!tmp.IsEmpty()) {
|
64
|
+
parts.Add(tmp);
|
65
|
+
}
|
66
|
+
}
|
67
|
+
}
|
68
|
+
}
|
69
|
+
|
70
|
+
const char *my_getlocale(void) {
|
71
|
+
#ifdef ENV_HAVE_LOCALE
|
72
|
+
const char* ret = setlocale(LC_CTYPE,0);
|
73
|
+
if (ret == 0)
|
74
|
+
ret ="C";
|
75
|
+
return ret;
|
76
|
+
#elif defined(LOCALE_IS_UTF8)
|
77
|
+
return "utf8";
|
78
|
+
#else
|
79
|
+
return "C";
|
80
|
+
#endif
|
81
|
+
}
|
82
|
+
|
@@ -0,0 +1,745 @@
|
|
1
|
+
#undef BIG_ENDIAN
|
2
|
+
#undef LITTLE_ENDIAN
|
3
|
+
|
4
|
+
#include "StdAfx.h"
|
5
|
+
|
6
|
+
#include <stdio.h>
|
7
|
+
#include <stdlib.h>
|
8
|
+
#include <sys/types.h>
|
9
|
+
#include <sys/stat.h>
|
10
|
+
#include <dirent.h>
|
11
|
+
#include <unistd.h>
|
12
|
+
|
13
|
+
#ifdef __APPLE_CC__
|
14
|
+
#define UInt32 macUIn32
|
15
|
+
#include <CoreFoundation/CoreFoundation.h>
|
16
|
+
#undef UInt32
|
17
|
+
#endif
|
18
|
+
|
19
|
+
#ifdef ENV_HAVE_WCHAR__H
|
20
|
+
#include <wchar.h>
|
21
|
+
#endif
|
22
|
+
#ifdef ENV_HAVE_LOCALE
|
23
|
+
#include <locale.h>
|
24
|
+
#endif
|
25
|
+
|
26
|
+
#include <windows.h>
|
27
|
+
|
28
|
+
#define NEED_NAME_WINDOWS_TO_UNIX
|
29
|
+
// #include "myPrivate.h"
|
30
|
+
|
31
|
+
#include "Common/StringConvert.h"
|
32
|
+
#include "Common/StdOutStream.h"
|
33
|
+
|
34
|
+
#undef NDEBUG
|
35
|
+
#include <assert.h>
|
36
|
+
|
37
|
+
#include "Common/StringConvert.cpp"
|
38
|
+
#include "Common/StdOutStream.cpp"
|
39
|
+
#include "Common/IntToString.cpp"
|
40
|
+
|
41
|
+
#include "Windows/Synchronization.cpp"
|
42
|
+
#include "Windows/FileFind.cpp"
|
43
|
+
#include "Windows/Time.cpp"
|
44
|
+
#include "../C/Threads.c"
|
45
|
+
#include "../../C/Ppmd.h"
|
46
|
+
|
47
|
+
using namespace NWindows;
|
48
|
+
|
49
|
+
#if defined(ENV_HAVE_WCHAR__H) && defined(ENV_HAVE_MBSTOWCS) && defined(ENV_HAVE_WCSTOMBS)
|
50
|
+
void test_mbs(void) {
|
51
|
+
wchar_t wstr1[256] = {
|
52
|
+
L'e',
|
53
|
+
0xE8, // latin small letter e with grave
|
54
|
+
0xE9, // latin small letter e with acute
|
55
|
+
L'a',
|
56
|
+
0xE0, // latin small letter a with grave
|
57
|
+
0x20AC, // euro sign
|
58
|
+
L'b',
|
59
|
+
0 };
|
60
|
+
wchar_t wstr2[256];
|
61
|
+
char astr[256];
|
62
|
+
|
63
|
+
global_use_utf16_conversion = 1;
|
64
|
+
|
65
|
+
size_t len1 = wcslen(wstr1);
|
66
|
+
|
67
|
+
printf("wstr1 - %d - '%ls'\n",(int)len1,wstr1);
|
68
|
+
|
69
|
+
size_t len0 = wcstombs(astr,wstr1,sizeof(astr));
|
70
|
+
printf("astr - %d - '%s'\n",(int)len0,astr);
|
71
|
+
|
72
|
+
size_t len2 = mbstowcs(wstr2,astr,sizeof(wstr2)/sizeof(*wstr2));
|
73
|
+
printf("wstr - %d - '%ls'\n",(int)len2,wstr2);
|
74
|
+
|
75
|
+
if (wcscmp(wstr1,wstr2) != 0) {
|
76
|
+
printf("ERROR during conversions wcs -> mbs -> wcs\n");
|
77
|
+
exit(EXIT_FAILURE);
|
78
|
+
}
|
79
|
+
|
80
|
+
char *ptr = astr;
|
81
|
+
size_t len = 0;
|
82
|
+
while (*ptr) {
|
83
|
+
ptr = CharNextA(ptr);
|
84
|
+
len += 1;
|
85
|
+
}
|
86
|
+
if ((len != len1) && (len != 12)) { // 12 = when locale is UTF8 instead of ISO8859-15
|
87
|
+
printf("ERROR CharNextA : len=%d, len1=%d\n",(int)len,(int)len1);
|
88
|
+
exit(EXIT_FAILURE);
|
89
|
+
}
|
90
|
+
|
91
|
+
UString ustr(wstr1);
|
92
|
+
assert(ustr.Length() == (int)len1);
|
93
|
+
|
94
|
+
AString ansistr(astr);
|
95
|
+
assert(ansistr.Length() == (int)len0);
|
96
|
+
|
97
|
+
ansistr = UnicodeStringToMultiByte(ustr);
|
98
|
+
assert(ansistr.Length() == (int)len0);
|
99
|
+
|
100
|
+
assert(strcmp(ansistr,astr) == 0);
|
101
|
+
assert(wcscmp(ustr,wstr1) == 0);
|
102
|
+
|
103
|
+
UString ustr2 = MultiByteToUnicodeString(astr);
|
104
|
+
assert(ustr2.Length() == (int)len1);
|
105
|
+
assert(wcscmp(ustr2,wstr1) == 0);
|
106
|
+
}
|
107
|
+
#endif
|
108
|
+
|
109
|
+
static void test_astring(int num) {
|
110
|
+
AString strResult;
|
111
|
+
|
112
|
+
strResult = "first part : ";
|
113
|
+
char number[256];
|
114
|
+
sprintf(number,"%d",num);
|
115
|
+
strResult += AString(number);
|
116
|
+
|
117
|
+
strResult += " : last part";
|
118
|
+
|
119
|
+
printf("strResult -%s-\n",(const char *)strResult);
|
120
|
+
|
121
|
+
}
|
122
|
+
|
123
|
+
|
124
|
+
extern void my_windows_split_path(const AString &p_path, AString &dir , AString &base);
|
125
|
+
|
126
|
+
static struct {
|
127
|
+
const char *path;
|
128
|
+
const char *dir;
|
129
|
+
const char *base;
|
130
|
+
}
|
131
|
+
tabSplit[]=
|
132
|
+
{
|
133
|
+
{ "",".","." },
|
134
|
+
{ "/","/","/" },
|
135
|
+
{ ".",".","." },
|
136
|
+
{ "//","/","/" },
|
137
|
+
{ "///","/","/" },
|
138
|
+
{ "dir",".","dir" },
|
139
|
+
{ "/dir","/","dir" },
|
140
|
+
{ "/dir/","/","dir" },
|
141
|
+
{ "/dir/base","/dir","base" },
|
142
|
+
{ "/dir//base","/dir","base" },
|
143
|
+
{ "/dir///base","/dir","base" },
|
144
|
+
{ "//dir/base","//dir","base" },
|
145
|
+
{ "///dir/base","///dir","base" },
|
146
|
+
{ "/dir/base/","/dir","base" },
|
147
|
+
{ 0,0,0 }
|
148
|
+
};
|
149
|
+
|
150
|
+
static void test_split_astring() {
|
151
|
+
int ind = 0;
|
152
|
+
while (tabSplit[ind].path) {
|
153
|
+
AString path(tabSplit[ind].path);
|
154
|
+
AString dir;
|
155
|
+
AString base;
|
156
|
+
|
157
|
+
my_windows_split_path(path,dir,base);
|
158
|
+
|
159
|
+
if ((dir != tabSplit[ind].dir) || (base != tabSplit[ind].base)) {
|
160
|
+
printf("ERROR : '%s' '%s' '%s'\n",(const char *)path,(const char *)dir,(const char *)base);
|
161
|
+
}
|
162
|
+
ind++;
|
163
|
+
}
|
164
|
+
printf("test_split_astring : done\n");
|
165
|
+
}
|
166
|
+
|
167
|
+
// Number of 100 nanosecond units from 1/1/1601 to 1/1/1970
|
168
|
+
#define EPOCH_BIAS 116444736000000000LL
|
169
|
+
static LARGE_INTEGER UnixTimeToUL(time_t tps_unx)
|
170
|
+
{
|
171
|
+
LARGE_INTEGER ul;
|
172
|
+
ul.QuadPart = tps_unx * 10000000LL + EPOCH_BIAS;
|
173
|
+
return ul;
|
174
|
+
}
|
175
|
+
|
176
|
+
static LARGE_INTEGER FileTimeToUL(FILETIME fileTime)
|
177
|
+
{
|
178
|
+
LARGE_INTEGER lFileTime;
|
179
|
+
lFileTime.QuadPart = fileTime.dwHighDateTime;
|
180
|
+
lFileTime.QuadPart = (lFileTime.QuadPart << 32) | fileTime.dwLowDateTime;
|
181
|
+
return lFileTime;
|
182
|
+
}
|
183
|
+
|
184
|
+
static void display(const char *txt,SYSTEMTIME systime)
|
185
|
+
{
|
186
|
+
FILETIME fileTime;
|
187
|
+
BOOL ret = SystemTimeToFileTime(&systime,&fileTime);
|
188
|
+
assert(ret == TRUE);
|
189
|
+
LARGE_INTEGER ulFileTime = FileTimeToUL(fileTime);
|
190
|
+
|
191
|
+
const char * day="";
|
192
|
+
switch (systime.wDayOfWeek)
|
193
|
+
{
|
194
|
+
case 0:day = "Sunday";break;
|
195
|
+
case 1:day = "Monday";break;
|
196
|
+
case 2:day = "Tuesday";break;
|
197
|
+
case 3:day = "Wednesday";break;
|
198
|
+
case 4:day = "Thursday";break;
|
199
|
+
case 5:day = "Friday";break;
|
200
|
+
case 6:day = "Saturday";break;
|
201
|
+
}
|
202
|
+
g_StdOut<< txt << day << " "
|
203
|
+
<< (int)systime.wYear << "/" << (int)systime.wMonth << "/" << (int)systime.wDay << " "
|
204
|
+
<< (int)systime.wHour << ":" << (int)systime.wMinute << ":" << (int)systime.wSecond << ":"
|
205
|
+
<< (int)systime.wMilliseconds
|
206
|
+
<< " (" << (UInt64)ulFileTime.QuadPart << ")\n";
|
207
|
+
}
|
208
|
+
|
209
|
+
static void test_time()
|
210
|
+
{
|
211
|
+
time_t tps_unx = time(0);
|
212
|
+
|
213
|
+
printf("Test Time (1):\n");
|
214
|
+
printf("===========\n");
|
215
|
+
SYSTEMTIME systimeGM;
|
216
|
+
GetSystemTime(&systimeGM);
|
217
|
+
|
218
|
+
LARGE_INTEGER ul = UnixTimeToUL(tps_unx);
|
219
|
+
g_StdOut<<" unix time = " << (UInt64)tps_unx << " (" << (UInt64)ul.QuadPart << ")\n";
|
220
|
+
|
221
|
+
g_StdOut<<" gmtime : " << asctime(gmtime(&tps_unx))<<"\n";
|
222
|
+
g_StdOut<<" localtime : " << asctime(localtime(&tps_unx))<<"\n";
|
223
|
+
|
224
|
+
display(" GetSystemTime : ", systimeGM);
|
225
|
+
}
|
226
|
+
|
227
|
+
static void test_time2()
|
228
|
+
{
|
229
|
+
UInt32 dosTime = 0x30d0094C;
|
230
|
+
FILETIME utcFileTime;
|
231
|
+
FILETIME localFileTime;
|
232
|
+
FILETIME localFileTime2;
|
233
|
+
UInt32 dosTime2 = 0;
|
234
|
+
|
235
|
+
printf("Test Time (2):\n");
|
236
|
+
printf("===========\n");
|
237
|
+
NTime::DosTimeToFileTime(dosTime, localFileTime);
|
238
|
+
NTime::FileTimeToDosTime(localFileTime, dosTime2);
|
239
|
+
assert(dosTime == dosTime2);
|
240
|
+
|
241
|
+
printf("Test Time (3):\n");
|
242
|
+
printf("===========\n");
|
243
|
+
/* DosTime To utcFileTime */
|
244
|
+
|
245
|
+
if (NTime::DosTimeToFileTime(dosTime, localFileTime)) /* DosDateTimeToFileTime */
|
246
|
+
{
|
247
|
+
if (!LocalFileTimeToFileTime(&localFileTime, &utcFileTime))
|
248
|
+
utcFileTime.dwHighDateTime = utcFileTime.dwLowDateTime = 0;
|
249
|
+
}
|
250
|
+
|
251
|
+
printf(" - 0x%x => 0x%x 0x%x => 0x%x 0x%x\n",(unsigned)dosTime,
|
252
|
+
(unsigned)localFileTime.dwHighDateTime,(unsigned)localFileTime.dwLowDateTime,
|
253
|
+
(unsigned)utcFileTime.dwHighDateTime,(unsigned)utcFileTime.dwLowDateTime);
|
254
|
+
|
255
|
+
|
256
|
+
/* utcFileTime to DosTime */
|
257
|
+
|
258
|
+
FileTimeToLocalFileTime(&utcFileTime, &localFileTime2);
|
259
|
+
NTime::FileTimeToDosTime(localFileTime2, dosTime2); /* FileTimeToDosDateTime */
|
260
|
+
|
261
|
+
printf(" - 0x%x <= 0x%x 0x%x <= 0x%x 0x%x\n",(unsigned)dosTime2,
|
262
|
+
(unsigned)localFileTime2.dwHighDateTime,(unsigned)localFileTime2.dwLowDateTime,
|
263
|
+
(unsigned)utcFileTime.dwHighDateTime,(unsigned)utcFileTime.dwLowDateTime);
|
264
|
+
|
265
|
+
assert(dosTime == dosTime2);
|
266
|
+
assert(localFileTime.dwHighDateTime == localFileTime2.dwHighDateTime);
|
267
|
+
assert(localFileTime.dwLowDateTime == localFileTime2.dwLowDateTime);
|
268
|
+
}
|
269
|
+
|
270
|
+
static void test_semaphore()
|
271
|
+
{
|
272
|
+
g_StdOut << "\nTEST SEMAPHORE :\n";
|
273
|
+
|
274
|
+
NWindows::NSynchronization::CSynchro sync;
|
275
|
+
NWindows::NSynchronization::CSemaphoreWFMO sema;
|
276
|
+
bool bres;
|
277
|
+
DWORD waitResult;
|
278
|
+
int i;
|
279
|
+
|
280
|
+
sync.Create();
|
281
|
+
sema.Create(&sync,2,10);
|
282
|
+
|
283
|
+
g_StdOut << " - Release(1)\n";
|
284
|
+
for(i = 0 ;i < 8;i++)
|
285
|
+
{
|
286
|
+
// g_StdOut << " - Release(1) : "<< i << "\n";
|
287
|
+
bres = sema.Release(1);
|
288
|
+
assert(bres == S_OK);
|
289
|
+
}
|
290
|
+
// g_StdOut << " - Release(1) : done\n";
|
291
|
+
bres = sema.Release(1);
|
292
|
+
assert(bres == S_FALSE);
|
293
|
+
|
294
|
+
g_StdOut << " - WaitForMultipleObjects(INFINITE)\n";
|
295
|
+
HANDLE events[1] = { sema };
|
296
|
+
for(i=0;i<10;i++)
|
297
|
+
{
|
298
|
+
waitResult = ::WaitForMultipleObjects(1, events, FALSE, INFINITE);
|
299
|
+
assert(waitResult == WAIT_OBJECT_0);
|
300
|
+
}
|
301
|
+
|
302
|
+
g_StdOut << " Done\n";
|
303
|
+
}
|
304
|
+
|
305
|
+
|
306
|
+
/****************************************************************************************/
|
307
|
+
|
308
|
+
|
309
|
+
static int threads_count = 0;
|
310
|
+
|
311
|
+
static THREAD_FUNC_RET_TYPE thread_fct(void * /* param */ ) {
|
312
|
+
threads_count++;
|
313
|
+
return 0;
|
314
|
+
}
|
315
|
+
|
316
|
+
#define MAX_THREADS 100000
|
317
|
+
|
318
|
+
int test_thread(void) {
|
319
|
+
::CThread thread;
|
320
|
+
|
321
|
+
Thread_Construct(&thread);
|
322
|
+
|
323
|
+
threads_count = 0;
|
324
|
+
|
325
|
+
printf("test_thread : %d threads\n",MAX_THREADS);
|
326
|
+
|
327
|
+
for(int i=0;i<MAX_THREADS;i++) {
|
328
|
+
Thread_Create(&thread, thread_fct, 0);
|
329
|
+
|
330
|
+
Thread_Wait(&thread);
|
331
|
+
|
332
|
+
Thread_Close(&thread);
|
333
|
+
}
|
334
|
+
|
335
|
+
assert(threads_count == MAX_THREADS);
|
336
|
+
|
337
|
+
return 0;
|
338
|
+
}
|
339
|
+
|
340
|
+
|
341
|
+
void dumpStr(const char *title,const char *txt)
|
342
|
+
{
|
343
|
+
size_t i,len = strlen(txt);
|
344
|
+
|
345
|
+
printf("%s - %d :",title,(int)len);
|
346
|
+
|
347
|
+
for(i = 0 ; i<len;i++) {
|
348
|
+
printf(" 0x%02x",(unsigned)(txt[i] & 255));
|
349
|
+
}
|
350
|
+
|
351
|
+
printf("\n");
|
352
|
+
}
|
353
|
+
|
354
|
+
|
355
|
+
void dumpWStr(const char *title,const wchar_t *txt)
|
356
|
+
{
|
357
|
+
size_t i,len = wcslen(txt);
|
358
|
+
|
359
|
+
printf("%s - %d :",title,(int)len);
|
360
|
+
|
361
|
+
for(i = 0 ; i<len;i++) {
|
362
|
+
printf(" 0x%02x",(unsigned)(txt[i]));
|
363
|
+
}
|
364
|
+
|
365
|
+
printf("\n");
|
366
|
+
}
|
367
|
+
|
368
|
+
#ifdef __APPLE_CC__
|
369
|
+
|
370
|
+
void testMaxOSX_stringConvert()
|
371
|
+
{
|
372
|
+
/*
|
373
|
+
0xE8, // latin small letter e with grave
|
374
|
+
0xE9, // latin small letter e with acute
|
375
|
+
L'a',
|
376
|
+
0xE0, // latin small letter a with grave
|
377
|
+
0x20AC, // euro sign
|
378
|
+
*/
|
379
|
+
struct
|
380
|
+
{
|
381
|
+
char astr [256];
|
382
|
+
wchar_t ustr [256];
|
383
|
+
}
|
384
|
+
tab [] =
|
385
|
+
{
|
386
|
+
{
|
387
|
+
// 'a' , 'e with acute' , 'e with grave' , 'a with grave' , 'u with grave' , 'b' , '.' , 't' , 'x' , 't'
|
388
|
+
{ 0x61, 0x65, 0xcc, 0x81 , 0x65, 0xcc, 0x80, 0x61, 0xcc, 0x80, 0x75, 0xcc, 0x80, 0x62, 0x2e, 0x74, 0x78, 0x74, 0 },
|
389
|
+
{ 0x61, 0xe9, 0xe8, 0xe0, 0xf9, 0x62, 0x2e, 0x74, 0x78, 0x74, 0 }
|
390
|
+
},
|
391
|
+
{
|
392
|
+
// 'a' , 'euro sign' , 'b' , '.' , 't' , 'x' , 't' , '\n'
|
393
|
+
{ 0x61, 0xe2, 0x82, 0xac, 0x62, 0x2e, 0x74, 0x78, 0x74, 0x0a, 0 },
|
394
|
+
{ 0x61, 0x20AC, 0x62, 0x2e, 0x74, 0x78, 0x74, 0x0a, 0 }
|
395
|
+
},
|
396
|
+
{
|
397
|
+
{ 0 },
|
398
|
+
{ 0 }
|
399
|
+
}
|
400
|
+
};
|
401
|
+
|
402
|
+
int i;
|
403
|
+
|
404
|
+
printf("testMaxOSX_stringConvert : \n");
|
405
|
+
|
406
|
+
i = 0;
|
407
|
+
while (tab[i].astr[0])
|
408
|
+
{
|
409
|
+
printf(" %s\n",tab[i].astr);
|
410
|
+
|
411
|
+
UString ustr = GetUnicodeString(tab[i].astr);
|
412
|
+
|
413
|
+
// dumpWStr("1",&ustr[0]);
|
414
|
+
|
415
|
+
assert(MyStringCompare(&ustr[0],tab[i].ustr) == 0);
|
416
|
+
assert(ustr.Length() == wcslen(tab[i].ustr) );
|
417
|
+
|
418
|
+
|
419
|
+
AString astr = GetAnsiString(ustr);
|
420
|
+
assert(MyStringCompare(&astr[0],tab[i].astr) == 0);
|
421
|
+
assert(astr.Length() == strlen(tab[i].astr) );
|
422
|
+
|
423
|
+
i++;
|
424
|
+
}
|
425
|
+
}
|
426
|
+
|
427
|
+
void testMacOSX()
|
428
|
+
{
|
429
|
+
// char texte1[]= { 0xc3 , 0xa9 , 0xc3, 0xa0, 0};
|
430
|
+
|
431
|
+
wchar_t wpath1[4096] = {
|
432
|
+
0xE9, // latin small letter e with acute
|
433
|
+
0xE0,
|
434
|
+
0xc7,
|
435
|
+
0x25cc,
|
436
|
+
0x327,
|
437
|
+
0xe4,
|
438
|
+
0xe2,
|
439
|
+
0xc2,
|
440
|
+
0xc3,
|
441
|
+
0x2e,
|
442
|
+
0x74,
|
443
|
+
0x78,
|
444
|
+
0x74,
|
445
|
+
/*
|
446
|
+
L'e',
|
447
|
+
0xE8, // latin small letter e with grave
|
448
|
+
0xE9, // latin small letter e with acute
|
449
|
+
L'a',
|
450
|
+
0xE0, // latin small letter a with grave
|
451
|
+
0x20AC, // euro sign
|
452
|
+
L'b',
|
453
|
+
*/
|
454
|
+
0 };
|
455
|
+
|
456
|
+
char utf8[4096];
|
457
|
+
wchar_t wpath2[4096];
|
458
|
+
|
459
|
+
|
460
|
+
|
461
|
+
// dumpStr("UTF8 standart",texte1);
|
462
|
+
|
463
|
+
dumpWStr("UCS32 standard",wpath1);
|
464
|
+
|
465
|
+
// Translate into FS pathname
|
466
|
+
{
|
467
|
+
const wchar_t * wcs = wpath1;
|
468
|
+
|
469
|
+
UniChar unipath[4096];
|
470
|
+
|
471
|
+
long n = wcslen(wcs);
|
472
|
+
|
473
|
+
for(long i = 0 ; i<= n ;i++) {
|
474
|
+
unipath[i] = wcs[i];
|
475
|
+
}
|
476
|
+
|
477
|
+
CFStringRef cfpath = CFStringCreateWithCharacters(NULL,unipath,n);
|
478
|
+
|
479
|
+
CFMutableStringRef cfpath2 = CFStringCreateMutableCopy(NULL,0,cfpath);
|
480
|
+
CFRelease(cfpath);
|
481
|
+
CFStringNormalize(cfpath2,kCFStringNormalizationFormD);
|
482
|
+
|
483
|
+
CFStringGetCString(cfpath2,(char *)utf8,4096,kCFStringEncodingUTF8);
|
484
|
+
|
485
|
+
CFRelease(cfpath2);
|
486
|
+
}
|
487
|
+
|
488
|
+
dumpStr("UTF8 MacOSX",utf8);
|
489
|
+
|
490
|
+
// Translate from FS pathname
|
491
|
+
{
|
492
|
+
const char * path = utf8;
|
493
|
+
|
494
|
+
long n = strlen(path);
|
495
|
+
|
496
|
+
CFStringRef cfpath = CFStringCreateWithCString(NULL,path,kCFStringEncodingUTF8);
|
497
|
+
|
498
|
+
if (cfpath)
|
499
|
+
{
|
500
|
+
|
501
|
+
CFMutableStringRef cfpath2 = CFStringCreateMutableCopy(NULL,0,cfpath);
|
502
|
+
CFRelease(cfpath);
|
503
|
+
CFStringNormalize(cfpath2,kCFStringNormalizationFormC);
|
504
|
+
|
505
|
+
n = CFStringGetLength(cfpath2);
|
506
|
+
for(long i = 0 ; i<= n ;i++) {
|
507
|
+
wpath2[i] = CFStringGetCharacterAtIndex(cfpath2,i);
|
508
|
+
}
|
509
|
+
wpath2[n] = 0;
|
510
|
+
|
511
|
+
CFRelease(cfpath2);
|
512
|
+
}
|
513
|
+
else
|
514
|
+
{
|
515
|
+
wpath2[0] = 0;
|
516
|
+
}
|
517
|
+
}
|
518
|
+
|
519
|
+
dumpWStr("UCS32 standard (2)",wpath2);
|
520
|
+
|
521
|
+
/*
|
522
|
+
{
|
523
|
+
CFStringRef cfpath;
|
524
|
+
|
525
|
+
cfpath = CFStringCreateWithCString(kCFAllocatorDefault, texte1, kCFStringEncodingUTF8);
|
526
|
+
|
527
|
+
// TODO str = null ?
|
528
|
+
|
529
|
+
CFMutableStringRef cfpath2 = CFStringCreateMutableCopy(NULL,0,cfpaht);
|
530
|
+
CFRealease(cfpath);
|
531
|
+
|
532
|
+
|
533
|
+
|
534
|
+
|
535
|
+
}
|
536
|
+
*/
|
537
|
+
|
538
|
+
|
539
|
+
}
|
540
|
+
#endif // __APPLE_CC__
|
541
|
+
|
542
|
+
|
543
|
+
static const TCHAR *kMainDll = TEXT("7z.dll");
|
544
|
+
|
545
|
+
static CSysString ConvertUInt32ToString(UInt32 value)
|
546
|
+
{
|
547
|
+
TCHAR buffer[32];
|
548
|
+
ConvertUInt32ToString(value, buffer);
|
549
|
+
return buffer;
|
550
|
+
}
|
551
|
+
|
552
|
+
|
553
|
+
void test_csystring(void)
|
554
|
+
{
|
555
|
+
{
|
556
|
+
const CSysString baseFolder = TEXT("bin/");
|
557
|
+
const CSysString b2 = baseFolder + kMainDll;
|
558
|
+
|
559
|
+
assert(MyStringCompare(&b2[0],TEXT("bin/7z.dll")) == 0);
|
560
|
+
}
|
561
|
+
|
562
|
+
{
|
563
|
+
LPCTSTR dirPath=TEXT("/tmp/");
|
564
|
+
LPCTSTR prefix=TEXT("foo");
|
565
|
+
CSysString resultPath;
|
566
|
+
|
567
|
+
UINT number = 12345;
|
568
|
+
UInt32 count = 6789;
|
569
|
+
|
570
|
+
/*
|
571
|
+
TCHAR * buf = resultPath.GetBuffer(MAX_PATH);
|
572
|
+
::swprintf(buf,MAX_PATH,L"%ls%ls#%d@%d.tmp",dirPath,prefix,(unsigned)number,count);
|
573
|
+
buf[MAX_PATH-1]=0;
|
574
|
+
resultPath.ReleaseBuffer();
|
575
|
+
*/
|
576
|
+
resultPath = dirPath;
|
577
|
+
resultPath += prefix;
|
578
|
+
resultPath += TEXT('#');
|
579
|
+
resultPath += ConvertUInt32ToString(number);
|
580
|
+
resultPath += TEXT('@');
|
581
|
+
resultPath += ConvertUInt32ToString(count);
|
582
|
+
resultPath += TEXT(".tmp");
|
583
|
+
|
584
|
+
// printf("##%ls##\n",&resultPath[0]);
|
585
|
+
|
586
|
+
assert(MyStringCompare(&resultPath[0],TEXT("/tmp/foo#12345@6789.tmp")) == 0);
|
587
|
+
}
|
588
|
+
|
589
|
+
}
|
590
|
+
|
591
|
+
static void test_AString()
|
592
|
+
{
|
593
|
+
AString a;
|
594
|
+
|
595
|
+
a = "abc";
|
596
|
+
assert(MyStringCompare(&a[0],"abc") == 0);
|
597
|
+
assert(a.Length() == 3);
|
598
|
+
|
599
|
+
a = GetAnsiString(L"abc");
|
600
|
+
assert(MyStringCompare(&a[0],"abc") == 0);
|
601
|
+
assert(a.Length() == 3);
|
602
|
+
}
|
603
|
+
|
604
|
+
|
605
|
+
const TCHAR kAnyStringWildcard = '*';
|
606
|
+
|
607
|
+
static void test_UString2(const UString &phyPrefix)
|
608
|
+
{
|
609
|
+
UString tmp = phyPrefix + wchar_t(kAnyStringWildcard);
|
610
|
+
printf("Enum(%ls-%ls-%lc)\n",&tmp[0],&phyPrefix[0],wchar_t(kAnyStringWildcard));
|
611
|
+
}
|
612
|
+
|
613
|
+
|
614
|
+
|
615
|
+
static void test_UString()
|
616
|
+
{
|
617
|
+
UString us = L"7za433_tar";
|
618
|
+
|
619
|
+
test_UString2(L"7za433_tar");
|
620
|
+
|
621
|
+
UString u1(us);
|
622
|
+
test_UString2(u1);
|
623
|
+
u1 = L"";
|
624
|
+
test_UString2(u1);
|
625
|
+
u1 = us;
|
626
|
+
test_UString2(u1);
|
627
|
+
|
628
|
+
UString u2 = us;
|
629
|
+
test_UString2(u2);
|
630
|
+
u2 = L"";
|
631
|
+
test_UString2(u2);
|
632
|
+
u2 = u1;
|
633
|
+
test_UString2(u2);
|
634
|
+
|
635
|
+
u1 = L"abc";
|
636
|
+
assert(MyStringCompare(&u1[0],L"abc") == 0);
|
637
|
+
assert(u1.Length() == 3);
|
638
|
+
|
639
|
+
u1 = GetUnicodeString("abc");
|
640
|
+
assert(MyStringCompare(&u1[0],L"abc") == 0);
|
641
|
+
assert(u1.Length() == 3);
|
642
|
+
}
|
643
|
+
|
644
|
+
/****************************************************************************************/
|
645
|
+
int main() {
|
646
|
+
|
647
|
+
// return test_thread();
|
648
|
+
|
649
|
+
|
650
|
+
#ifdef ENV_HAVE_LOCALE
|
651
|
+
setlocale(LC_ALL,"");
|
652
|
+
#endif
|
653
|
+
|
654
|
+
#if defined(BIG_ENDIAN)
|
655
|
+
printf("BIG_ENDIAN : %d\n",(int)BIG_ENDIAN);
|
656
|
+
#endif
|
657
|
+
#if defined(LITTLE_ENDIAN)
|
658
|
+
printf("LITTLE_ENDIAN : %d\n",(int)LITTLE_ENDIAN);
|
659
|
+
#endif
|
660
|
+
|
661
|
+
printf("sizeof(Byte) : %d\n",(int)sizeof(Byte));
|
662
|
+
printf("sizeof(UInt16) : %d\n",(int)sizeof(UInt16));
|
663
|
+
printf("sizeof(UInt32) : %d\n",(int)sizeof(UInt32));
|
664
|
+
printf("sizeof(UINT32) : %d\n",(int)sizeof(UINT32));
|
665
|
+
printf("sizeof(UInt64) : %d\n",(int)sizeof(UInt64));
|
666
|
+
printf("sizeof(UINT64) : %d\n",(int)sizeof(UINT64));
|
667
|
+
printf("sizeof(void *) : %d\n",(int)sizeof(void *));
|
668
|
+
printf("sizeof(size_t) : %d\n",(int)sizeof(size_t));
|
669
|
+
printf("sizeof(ptrdiff_t) : %d\n",(int)sizeof(ptrdiff_t));
|
670
|
+
printf("sizeof(off_t) : %d\n",(int)sizeof(off_t));
|
671
|
+
printf("sizeof(wchar_t) : %d\n",(int)sizeof(wchar_t));
|
672
|
+
#ifdef __APPLE_CC__
|
673
|
+
printf("sizeof(UniChar) : %d\n",(int)sizeof(UniChar));
|
674
|
+
#endif
|
675
|
+
printf("sizeof(CPpmd_See) : %d\n",(int)sizeof(CPpmd_See));
|
676
|
+
printf("sizeof(CPpmd_State) : %d\n",(int)sizeof(CPpmd_State));
|
677
|
+
|
678
|
+
// size tests
|
679
|
+
assert(sizeof(Byte)==1);
|
680
|
+
assert(sizeof(UInt16)==2);
|
681
|
+
assert(sizeof(UInt32)==4);
|
682
|
+
assert(sizeof(UINT32)==4);
|
683
|
+
assert(sizeof(UInt64)==8);
|
684
|
+
assert(sizeof(UINT64)==8);
|
685
|
+
|
686
|
+
// alignement tests
|
687
|
+
assert(sizeof(CPpmd_See)==4);
|
688
|
+
assert(sizeof(CPpmd_State)==6);
|
689
|
+
|
690
|
+
union {
|
691
|
+
Byte b[2];
|
692
|
+
UInt16 s;
|
693
|
+
} u;
|
694
|
+
u.s = 0x1234;
|
695
|
+
|
696
|
+
if ((u.b[0] == 0x12) && (u.b[1] == 0x34)) {
|
697
|
+
printf("CPU : big endian\n");
|
698
|
+
} else if ((u.b[0] == 0x34) && (u.b[1] == 0x12)) {
|
699
|
+
printf("CPU : little endian\n");
|
700
|
+
} else {
|
701
|
+
printf("CPU : unknown endianess\n");
|
702
|
+
}
|
703
|
+
|
704
|
+
#if defined(ENV_HAVE_WCHAR__H) && defined(ENV_HAVE_MBSTOWCS) && defined(ENV_HAVE_WCSTOMBS)
|
705
|
+
test_mbs();
|
706
|
+
#endif
|
707
|
+
|
708
|
+
test_astring(12345);
|
709
|
+
test_split_astring();
|
710
|
+
|
711
|
+
test_csystring();
|
712
|
+
test_AString();
|
713
|
+
test_UString();
|
714
|
+
|
715
|
+
test_time();
|
716
|
+
|
717
|
+
test_time2();
|
718
|
+
|
719
|
+
test_semaphore();
|
720
|
+
|
721
|
+
#ifdef __APPLE_CC__
|
722
|
+
testMacOSX();
|
723
|
+
testMaxOSX_stringConvert();
|
724
|
+
#endif
|
725
|
+
|
726
|
+
|
727
|
+
{
|
728
|
+
LANGID langID;
|
729
|
+
WORD primLang;
|
730
|
+
WORD subLang;
|
731
|
+
|
732
|
+
langID = GetUserDefaultLangID();
|
733
|
+
printf("langID=0x%x\n",langID);
|
734
|
+
|
735
|
+
primLang = (WORD)(PRIMARYLANGID(langID));
|
736
|
+
subLang = (WORD)(SUBLANGID(langID));
|
737
|
+
|
738
|
+
printf("primLang=%d subLang=%d\n",(unsigned)primLang,(unsigned)subLang);
|
739
|
+
}
|
740
|
+
|
741
|
+
printf("\n### All Done ###\n\n");
|
742
|
+
|
743
|
+
return 0;
|
744
|
+
}
|
745
|
+
|