seven_zip_ruby 1.0.0

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