react-native-update 10.34.2 → 10.34.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (746) hide show
  1. package/.gitmodules +4 -4
  2. package/harmony/pushy/src/main/cpp/HDiffPatch/CHANGELOG.md +153 -0
  3. package/harmony/pushy/src/main/cpp/HDiffPatch/LICENSE +48 -0
  4. package/harmony/pushy/src/main/cpp/HDiffPatch/Makefile +157 -0
  5. package/harmony/pushy/src/main/cpp/HDiffPatch/README.md +307 -0
  6. package/harmony/pushy/src/main/cpp/HDiffPatch/_atosize.h +83 -0
  7. package/harmony/pushy/src/main/cpp/HDiffPatch/_clock_for_demo.h +47 -0
  8. package/harmony/pushy/src/main/cpp/HDiffPatch/_dir_ignore.h +191 -0
  9. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/android_ndk_jni_mk/Android.mk +37 -0
  10. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/android_ndk_jni_mk/Application.mk +7 -0
  11. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/android_ndk_jni_mk/build_libs.bat +1 -0
  12. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/android_ndk_jni_mk/build_libs.sh +1 -0
  13. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/android_ndk_jni_mk/hpatch.c +18 -0
  14. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/android_ndk_jni_mk/hpatch.h +20 -0
  15. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/android_ndk_jni_mk/hpatch_jni.c +28 -0
  16. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/android_ndk_jni_mk/java/com/github/sisong/HPatch.java +8 -0
  17. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/codeblocks/HDiffPatch.workspace +8 -0
  18. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/codeblocks/HDiffZ.cbp +219 -0
  19. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/codeblocks/HPatchZ.cbp +156 -0
  20. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/codeblocks/unitTest.cbp +65 -0
  21. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/vc/HDiffPatch.sln +105 -0
  22. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/vc/HDiffZ.vcxproj +237 -0
  23. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/vc/HDiffZ.vcxproj.user +3 -0
  24. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/vc/HPatchZ.vcxproj +318 -0
  25. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/vc/HPatchZ.vcxproj.user +3 -0
  26. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/vc/unitTest.vcxproj +182 -0
  27. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/vc/unitTest.vcxproj.user +3 -0
  28. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/xcode/HDiffPatch.xcworkspace/contents.xcworkspacedata +30 -0
  29. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/xcode/HDiffPatch.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  30. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/xcode/bestParams.xcodeproj/project.pbxproj +408 -0
  31. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/xcode/hdiffz.xcodeproj/project.pbxproj +573 -0
  32. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/xcode/hpatchz.xcodeproj/project.pbxproj +396 -0
  33. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/xcode/lz4.xcodeproj/project.pbxproj +268 -0
  34. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/xcode/lzma.xcodeproj/project.pbxproj +361 -0
  35. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/xcode/testHashClash.xcodeproj/project.pbxproj +301 -0
  36. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/xcode/unitTest.xcodeproj/project.pbxproj +411 -0
  37. package/harmony/pushy/src/main/cpp/HDiffPatch/builds/xcode/zstd.xcodeproj/project.pbxproj +504 -0
  38. package/harmony/pushy/src/main/cpp/HDiffPatch/checksum_plugin_demo.h +344 -0
  39. package/harmony/pushy/src/main/cpp/HDiffPatch/compress_parallel.cpp +166 -0
  40. package/harmony/pushy/src/main/cpp/HDiffPatch/compress_parallel.h +59 -0
  41. package/harmony/pushy/src/main/cpp/HDiffPatch/compress_plugin_demo.h +1152 -0
  42. package/harmony/pushy/src/main/cpp/HDiffPatch/decompress_plugin_demo.h +995 -0
  43. package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_diff/dir_diff.cpp +797 -0
  44. package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_diff/dir_diff.h +65 -0
  45. package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_diff/dir_diff_tools.cpp +200 -0
  46. package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_diff/dir_diff_tools.h +178 -0
  47. package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_diff/dir_manifest.cpp +357 -0
  48. package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_diff/dir_manifest.h +87 -0
  49. package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_diff/file_for_dirDiff.h +151 -0
  50. package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_patch/dir_patch.c +770 -0
  51. package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_patch/dir_patch.h +236 -0
  52. package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_patch/dir_patch_private.h +47 -0
  53. package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_patch/dir_patch_tools.c +112 -0
  54. package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_patch/dir_patch_tools.h +53 -0
  55. package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_patch/dir_patch_types.h +61 -0
  56. package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_patch/new_dir_output.c +331 -0
  57. package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_patch/new_dir_output.h +144 -0
  58. package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_patch/new_stream.c +176 -0
  59. package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_patch/new_stream.h +84 -0
  60. package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_patch/ref_stream.c +146 -0
  61. package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_patch/ref_stream.h +61 -0
  62. package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_patch/res_handle_limit.c +152 -0
  63. package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_patch/res_handle_limit.h +76 -0
  64. package/harmony/pushy/src/main/cpp/HDiffPatch/file_for_patch.c +524 -0
  65. package/harmony/pushy/src/main/cpp/HDiffPatch/file_for_patch.h +259 -0
  66. package/harmony/pushy/src/main/cpp/HDiffPatch/hdiffz.cpp +1570 -0
  67. package/harmony/pushy/src/main/cpp/HDiffPatch/hpatch_dir_listener.h +290 -0
  68. package/harmony/pushy/src/main/cpp/HDiffPatch/hpatchz.c +1221 -0
  69. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/diff.cpp +1025 -0
  70. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/diff.h +116 -0
  71. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/diff_types.h +72 -0
  72. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/bytes_rle.cpp +213 -0
  73. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/bytes_rle.h +63 -0
  74. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/compress_detect.cpp +170 -0
  75. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/compress_detect.h +86 -0
  76. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/libdivsufsort/config.h +89 -0
  77. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/libdivsufsort/divsufsort.c +13 -0
  78. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/libdivsufsort/divsufsort.c.inc.h +398 -0
  79. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/libdivsufsort/divsufsort.h +194 -0
  80. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/libdivsufsort/divsufsort64.c +13 -0
  81. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/libdivsufsort/divsufsort64.h +204 -0
  82. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/libdivsufsort/divsufsort_private.h +207 -0
  83. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/libdivsufsort/sssort.c.inc.h +815 -0
  84. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/libdivsufsort/trsort.c.inc.h +586 -0
  85. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/libdivsufsort/utils.c.inc.h +381 -0
  86. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/limit_mem_diff/adler_roll.c +352 -0
  87. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/limit_mem_diff/adler_roll.h +137 -0
  88. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/limit_mem_diff/bloom_filter.h +137 -0
  89. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/limit_mem_diff/covers.h +70 -0
  90. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/limit_mem_diff/digest_matcher.cpp +628 -0
  91. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/limit_mem_diff/digest_matcher.h +87 -0
  92. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/limit_mem_diff/stream_serialize.cpp +363 -0
  93. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/limit_mem_diff/stream_serialize.h +139 -0
  94. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/mem_buf.h +68 -0
  95. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/pack_uint.h +115 -0
  96. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/suffix_string.cpp +342 -0
  97. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/suffix_string.h +94 -0
  98. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HPatch/checksum_plugin.h +52 -0
  99. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HPatch/patch.c +2292 -0
  100. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HPatch/patch.h +215 -0
  101. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HPatch/patch_private.h +165 -0
  102. package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HPatch/patch_types.h +251 -0
  103. package/harmony/pushy/src/main/cpp/HDiffPatch/libParallel/parallel_channel.cpp +174 -0
  104. package/harmony/pushy/src/main/cpp/HDiffPatch/libParallel/parallel_channel.h +73 -0
  105. package/harmony/pushy/src/main/cpp/HDiffPatch/libParallel/parallel_import.cpp +367 -0
  106. package/harmony/pushy/src/main/cpp/HDiffPatch/libParallel/parallel_import.h +92 -0
  107. package/harmony/pushy/src/main/cpp/HDiffPatch/test/_private_searchBestParams.cpp +301 -0
  108. package/harmony/pushy/src/main/cpp/HDiffPatch/test/hpatchz_test.cpp +292 -0
  109. package/harmony/pushy/src/main/cpp/HDiffPatch/test/testHashClash.cpp +436 -0
  110. package/harmony/pushy/src/main/cpp/HDiffPatch/test/unit_test.cpp +417 -0
  111. package/harmony/pushy/src/main/cpp/lzma/Asm/arm/7zCrcOpt.asm +100 -0
  112. package/harmony/pushy/src/main/cpp/lzma/Asm/x86/7zAsm.asm +147 -0
  113. package/harmony/pushy/src/main/cpp/lzma/Asm/x86/7zCrcOpt.asm +147 -0
  114. package/harmony/pushy/src/main/cpp/lzma/Asm/x86/AesOpt.asm +237 -0
  115. package/harmony/pushy/src/main/cpp/lzma/Asm/x86/LzmaDecOpt.asm +1258 -0
  116. package/harmony/pushy/src/main/cpp/lzma/Asm/x86/XzCrc64Opt.asm +205 -0
  117. package/harmony/pushy/src/main/cpp/lzma/C/7z.h +202 -0
  118. package/harmony/pushy/src/main/cpp/lzma/C/7zAlloc.c +80 -0
  119. package/harmony/pushy/src/main/cpp/lzma/C/7zAlloc.h +19 -0
  120. package/harmony/pushy/src/main/cpp/lzma/C/7zArcIn.c +1771 -0
  121. package/harmony/pushy/src/main/cpp/lzma/C/7zBuf.c +36 -0
  122. package/harmony/pushy/src/main/cpp/lzma/C/7zBuf.h +35 -0
  123. package/harmony/pushy/src/main/cpp/lzma/C/7zBuf2.c +52 -0
  124. package/harmony/pushy/src/main/cpp/lzma/C/7zCrc.c +128 -0
  125. package/harmony/pushy/src/main/cpp/lzma/C/7zCrc.h +25 -0
  126. package/harmony/pushy/src/main/cpp/lzma/C/7zCrcOpt.c +115 -0
  127. package/harmony/pushy/src/main/cpp/lzma/C/7zDec.c +591 -0
  128. package/harmony/pushy/src/main/cpp/lzma/C/7zFile.c +286 -0
  129. package/harmony/pushy/src/main/cpp/lzma/C/7zFile.h +83 -0
  130. package/harmony/pushy/src/main/cpp/lzma/C/7zStream.c +176 -0
  131. package/harmony/pushy/src/main/cpp/lzma/C/7zTypes.h +375 -0
  132. package/harmony/pushy/src/main/cpp/lzma/C/7zVersion.h +27 -0
  133. package/harmony/pushy/src/main/cpp/lzma/C/7zVersion.rc +55 -0
  134. package/harmony/pushy/src/main/cpp/lzma/C/Aes.c +306 -0
  135. package/harmony/pushy/src/main/cpp/lzma/C/Aes.h +38 -0
  136. package/harmony/pushy/src/main/cpp/lzma/C/AesOpt.c +184 -0
  137. package/harmony/pushy/src/main/cpp/lzma/C/Alloc.c +455 -0
  138. package/harmony/pushy/src/main/cpp/lzma/C/Alloc.h +51 -0
  139. package/harmony/pushy/src/main/cpp/lzma/C/Bcj2.c +257 -0
  140. package/harmony/pushy/src/main/cpp/lzma/C/Bcj2.h +146 -0
  141. package/harmony/pushy/src/main/cpp/lzma/C/Bcj2Enc.c +311 -0
  142. package/harmony/pushy/src/main/cpp/lzma/C/Bra.c +230 -0
  143. package/harmony/pushy/src/main/cpp/lzma/C/Bra.h +64 -0
  144. package/harmony/pushy/src/main/cpp/lzma/C/Bra86.c +82 -0
  145. package/harmony/pushy/src/main/cpp/lzma/C/BraIA64.c +53 -0
  146. package/harmony/pushy/src/main/cpp/lzma/C/Compiler.h +33 -0
  147. package/harmony/pushy/src/main/cpp/lzma/C/CpuArch.c +218 -0
  148. package/harmony/pushy/src/main/cpp/lzma/C/CpuArch.h +336 -0
  149. package/harmony/pushy/src/main/cpp/lzma/C/Delta.c +64 -0
  150. package/harmony/pushy/src/main/cpp/lzma/C/Delta.h +19 -0
  151. package/harmony/pushy/src/main/cpp/lzma/C/DllSecur.c +108 -0
  152. package/harmony/pushy/src/main/cpp/lzma/C/DllSecur.h +20 -0
  153. package/harmony/pushy/src/main/cpp/lzma/C/LzFind.c +1127 -0
  154. package/harmony/pushy/src/main/cpp/lzma/C/LzFind.h +121 -0
  155. package/harmony/pushy/src/main/cpp/lzma/C/LzFindMt.c +853 -0
  156. package/harmony/pushy/src/main/cpp/lzma/C/LzFindMt.h +101 -0
  157. package/harmony/pushy/src/main/cpp/lzma/C/LzHash.h +57 -0
  158. package/harmony/pushy/src/main/cpp/lzma/C/Lzma2Dec.c +488 -0
  159. package/harmony/pushy/src/main/cpp/lzma/C/Lzma2Dec.h +120 -0
  160. package/harmony/pushy/src/main/cpp/lzma/C/Lzma2DecMt.c +1082 -0
  161. package/harmony/pushy/src/main/cpp/lzma/C/Lzma2DecMt.h +79 -0
  162. package/harmony/pushy/src/main/cpp/lzma/C/Lzma2Enc.c +803 -0
  163. package/harmony/pushy/src/main/cpp/lzma/C/Lzma2Enc.h +55 -0
  164. package/harmony/pushy/src/main/cpp/lzma/C/Lzma86.h +111 -0
  165. package/harmony/pushy/src/main/cpp/lzma/C/Lzma86Dec.c +54 -0
  166. package/harmony/pushy/src/main/cpp/lzma/C/Lzma86Enc.c +106 -0
  167. package/harmony/pushy/src/main/cpp/lzma/C/LzmaDec.c +1185 -0
  168. package/harmony/pushy/src/main/cpp/lzma/C/LzmaDec.h +234 -0
  169. package/harmony/pushy/src/main/cpp/lzma/C/LzmaEnc.c +2976 -0
  170. package/harmony/pushy/src/main/cpp/lzma/C/LzmaEnc.h +76 -0
  171. package/harmony/pushy/src/main/cpp/lzma/C/LzmaLib.c +40 -0
  172. package/harmony/pushy/src/main/cpp/lzma/C/LzmaLib.h +131 -0
  173. package/harmony/pushy/src/main/cpp/lzma/C/MtCoder.c +601 -0
  174. package/harmony/pushy/src/main/cpp/lzma/C/MtCoder.h +141 -0
  175. package/harmony/pushy/src/main/cpp/lzma/C/MtDec.c +1138 -0
  176. package/harmony/pushy/src/main/cpp/lzma/C/MtDec.h +201 -0
  177. package/harmony/pushy/src/main/cpp/lzma/C/Ppmd.h +85 -0
  178. package/harmony/pushy/src/main/cpp/lzma/C/Ppmd7.c +712 -0
  179. package/harmony/pushy/src/main/cpp/lzma/C/Ppmd7.h +142 -0
  180. package/harmony/pushy/src/main/cpp/lzma/C/Ppmd7Dec.c +191 -0
  181. package/harmony/pushy/src/main/cpp/lzma/C/Ppmd7Enc.c +187 -0
  182. package/harmony/pushy/src/main/cpp/lzma/C/Precomp.h +10 -0
  183. package/harmony/pushy/src/main/cpp/lzma/C/RotateDefs.h +30 -0
  184. package/harmony/pushy/src/main/cpp/lzma/C/Sha256.c +248 -0
  185. package/harmony/pushy/src/main/cpp/lzma/C/Sha256.h +26 -0
  186. package/harmony/pushy/src/main/cpp/lzma/C/Sort.c +141 -0
  187. package/harmony/pushy/src/main/cpp/lzma/C/Sort.h +18 -0
  188. package/harmony/pushy/src/main/cpp/lzma/C/Threads.c +95 -0
  189. package/harmony/pushy/src/main/cpp/lzma/C/Threads.h +70 -0
  190. package/harmony/pushy/src/main/cpp/lzma/C/ThreadsP.c +396 -0
  191. package/harmony/pushy/src/main/cpp/lzma/C/ThreadsP.h +31 -0
  192. package/harmony/pushy/src/main/cpp/lzma/C/Util/7z/7z.dsp +241 -0
  193. package/harmony/pushy/src/main/cpp/lzma/C/Util/7z/7z.dsw +29 -0
  194. package/harmony/pushy/src/main/cpp/lzma/C/Util/7z/7zMain.c +686 -0
  195. package/harmony/pushy/src/main/cpp/lzma/C/Util/7z/Precomp.c +4 -0
  196. package/harmony/pushy/src/main/cpp/lzma/C/Util/7z/Precomp.h +10 -0
  197. package/harmony/pushy/src/main/cpp/lzma/C/Util/7z/makefile +40 -0
  198. package/harmony/pushy/src/main/cpp/lzma/C/Util/7z/makefile.gcc +75 -0
  199. package/harmony/pushy/src/main/cpp/lzma/C/Util/Lzma/LzmaUtil.c +258 -0
  200. package/harmony/pushy/src/main/cpp/lzma/C/Util/Lzma/LzmaUtil.dsp +168 -0
  201. package/harmony/pushy/src/main/cpp/lzma/C/Util/Lzma/LzmaUtil.dsw +29 -0
  202. package/harmony/pushy/src/main/cpp/lzma/C/Util/Lzma/makefile +28 -0
  203. package/harmony/pushy/src/main/cpp/lzma/C/Util/Lzma/makefile.gcc +44 -0
  204. package/harmony/pushy/src/main/cpp/lzma/C/Util/LzmaLib/LzmaLib.def +4 -0
  205. package/harmony/pushy/src/main/cpp/lzma/C/Util/LzmaLib/LzmaLib.dsp +178 -0
  206. package/harmony/pushy/src/main/cpp/lzma/C/Util/LzmaLib/LzmaLib.dsw +29 -0
  207. package/harmony/pushy/src/main/cpp/lzma/C/Util/LzmaLib/LzmaLibExports.c +14 -0
  208. package/harmony/pushy/src/main/cpp/lzma/C/Util/LzmaLib/makefile +34 -0
  209. package/harmony/pushy/src/main/cpp/lzma/C/Util/LzmaLib/resource.rc +3 -0
  210. package/harmony/pushy/src/main/cpp/lzma/C/Util/SfxSetup/Precomp.c +4 -0
  211. package/harmony/pushy/src/main/cpp/lzma/C/Util/SfxSetup/Precomp.h +10 -0
  212. package/harmony/pushy/src/main/cpp/lzma/C/Util/SfxSetup/SfxSetup.c +640 -0
  213. package/harmony/pushy/src/main/cpp/lzma/C/Util/SfxSetup/SfxSetup.dsp +231 -0
  214. package/harmony/pushy/src/main/cpp/lzma/C/Util/SfxSetup/SfxSetup.dsw +29 -0
  215. package/harmony/pushy/src/main/cpp/lzma/C/Util/SfxSetup/makefile +37 -0
  216. package/harmony/pushy/src/main/cpp/lzma/C/Util/SfxSetup/makefile_con +38 -0
  217. package/harmony/pushy/src/main/cpp/lzma/C/Util/SfxSetup/resource.rc +5 -0
  218. package/harmony/pushy/src/main/cpp/lzma/C/Util/SfxSetup/setup.ico +0 -0
  219. package/harmony/pushy/src/main/cpp/lzma/C/Xz.c +90 -0
  220. package/harmony/pushy/src/main/cpp/lzma/C/Xz.h +460 -0
  221. package/harmony/pushy/src/main/cpp/lzma/C/XzCrc64.c +86 -0
  222. package/harmony/pushy/src/main/cpp/lzma/C/XzCrc64.h +26 -0
  223. package/harmony/pushy/src/main/cpp/lzma/C/XzCrc64Opt.c +69 -0
  224. package/harmony/pushy/src/main/cpp/lzma/C/XzDec.c +2766 -0
  225. package/harmony/pushy/src/main/cpp/lzma/C/XzEnc.c +1329 -0
  226. package/harmony/pushy/src/main/cpp/lzma/C/XzEnc.h +60 -0
  227. package/harmony/pushy/src/main/cpp/lzma/C/XzIn.c +319 -0
  228. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/7zip.mak +240 -0
  229. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Aes.mak +7 -0
  230. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zCompressionMode.cpp +3 -0
  231. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zCompressionMode.h +76 -0
  232. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zDecode.cpp +569 -0
  233. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zDecode.h +70 -0
  234. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zEncode.cpp +678 -0
  235. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zEncode.h +92 -0
  236. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zExtract.cpp +423 -0
  237. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zFolderInStream.cpp +139 -0
  238. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zFolderInStream.h +61 -0
  239. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zHandler.cpp +763 -0
  240. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zHandler.h +181 -0
  241. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zHandlerOut.cpp +942 -0
  242. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zHeader.cpp +19 -0
  243. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zHeader.h +148 -0
  244. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zIn.cpp +1666 -0
  245. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zIn.h +445 -0
  246. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zItem.h +202 -0
  247. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zOut.cpp +901 -0
  248. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zOut.h +335 -0
  249. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zProperties.cpp +174 -0
  250. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zProperties.h +22 -0
  251. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zRegister.cpp +21 -0
  252. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zSpecStream.cpp +22 -0
  253. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zSpecStream.h +35 -0
  254. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zUpdate.cpp +2500 -0
  255. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zUpdate.h +139 -0
  256. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/StdAfx.cpp +3 -0
  257. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/StdAfx.h +8 -0
  258. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Archive.def +12 -0
  259. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Archive2.def +19 -0
  260. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/ArchiveExports.cpp +151 -0
  261. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/CoderMixer2.cpp +1125 -0
  262. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/CoderMixer2.h +447 -0
  263. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/DummyOutStream.cpp +17 -0
  264. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/DummyOutStream.h +25 -0
  265. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/HandlerOut.cpp +232 -0
  266. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/HandlerOut.h +110 -0
  267. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/InStreamWithCRC.cpp +46 -0
  268. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/InStreamWithCRC.h +67 -0
  269. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/ItemNameUtils.cpp +88 -0
  270. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/ItemNameUtils.h +28 -0
  271. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/MultiStream.cpp +191 -0
  272. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/MultiStream.h +89 -0
  273. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/OutStreamWithCRC.cpp +18 -0
  274. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/OutStreamWithCRC.h +37 -0
  275. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/ParseProperties.cpp +3 -0
  276. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/ParseProperties.h +6 -0
  277. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/StdAfx.h +8 -0
  278. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/DllExports2.cpp +122 -0
  279. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/IArchive.h +608 -0
  280. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Icons/7z.ico +0 -0
  281. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/LzmaHandler.cpp +629 -0
  282. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/SplitHandler.cpp +359 -0
  283. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/StdAfx.h +8 -0
  284. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/XzHandler.cpp +1308 -0
  285. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/XzHandler.h +11 -0
  286. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Asm.mak +9 -0
  287. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/Alone7z/Alone.dsp +1910 -0
  288. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/Alone7z/Alone.dsw +29 -0
  289. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/Alone7z/StdAfx.cpp +3 -0
  290. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/Alone7z/StdAfx.h +8 -0
  291. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/Alone7z/makefile +154 -0
  292. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/Alone7z/resource.rc +7 -0
  293. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/Format7zExtractR/StdAfx.cpp +3 -0
  294. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/Format7zExtractR/StdAfx.h +8 -0
  295. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/Format7zExtractR/makefile +96 -0
  296. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/Format7zExtractR/resource.rc +5 -0
  297. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/Format7zR/StdAfx.cpp +3 -0
  298. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/Format7zR/StdAfx.h +8 -0
  299. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/Format7zR/makefile +116 -0
  300. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/Format7zR/resource.rc +5 -0
  301. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/LzmaCon/LzmaAlone.cpp +799 -0
  302. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/LzmaCon/LzmaCon.dsp +477 -0
  303. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/LzmaCon/LzmaCon.dsw +29 -0
  304. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/LzmaCon/StdAfx.cpp +3 -0
  305. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/LzmaCon/StdAfx.h +8 -0
  306. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/LzmaCon/makefile +59 -0
  307. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/LzmaCon/makefile.gcc +195 -0
  308. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/LzmaCon/resource.rc +3 -0
  309. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/LzmaSpec/LzmaSpec.cpp +715 -0
  310. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXCon/7z.ico +0 -0
  311. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXCon/SFXCon.dsp +912 -0
  312. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXCon/SFXCon.dsw +29 -0
  313. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXCon/SfxCon.cpp +482 -0
  314. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXCon/StdAfx.cpp +3 -0
  315. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXCon/StdAfx.h +8 -0
  316. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXCon/makefile +134 -0
  317. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXCon/resource.rc +5 -0
  318. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXSetup/ExtractCallbackSfx.cpp +246 -0
  319. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXSetup/ExtractCallbackSfx.h +86 -0
  320. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXSetup/ExtractEngine.cpp +137 -0
  321. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXSetup/ExtractEngine.h +11 -0
  322. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXSetup/SFXSetup.dsp +803 -0
  323. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXSetup/SFXSetup.dsw +29 -0
  324. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXSetup/SfxSetup.cpp +364 -0
  325. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXSetup/StdAfx.cpp +3 -0
  326. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXSetup/StdAfx.h +13 -0
  327. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXSetup/makefile +117 -0
  328. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXSetup/resource.h +6 -0
  329. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXSetup/resource.rc +16 -0
  330. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXSetup/setup.ico +0 -0
  331. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXWin/7z.ico +0 -0
  332. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXWin/SFXWin.dsp +988 -0
  333. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXWin/SFXWin.dsw +29 -0
  334. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXWin/SfxWin.cpp +241 -0
  335. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXWin/StdAfx.cpp +3 -0
  336. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXWin/StdAfx.h +14 -0
  337. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXWin/makefile +153 -0
  338. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXWin/resource.h +1 -0
  339. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXWin/resource.rc +50 -0
  340. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/CWrappers.cpp +250 -0
  341. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/CWrappers.h +120 -0
  342. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/CreateCoder.cpp +536 -0
  343. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/CreateCoder.h +192 -0
  344. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/FilePathAutoRename.cpp +46 -0
  345. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/FilePathAutoRename.h +10 -0
  346. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/FileStreams.cpp +475 -0
  347. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/FileStreams.h +166 -0
  348. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/FilterCoder.cpp +435 -0
  349. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/FilterCoder.h +205 -0
  350. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/InBuffer.cpp +163 -0
  351. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/InBuffer.h +92 -0
  352. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/InOutTempBuffer.cpp +127 -0
  353. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/InOutTempBuffer.h +48 -0
  354. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/LimitedStreams.cpp +367 -0
  355. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/LimitedStreams.h +252 -0
  356. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/LockedStream.cpp +3 -0
  357. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/LockedStream.h +6 -0
  358. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/MethodId.cpp +3 -0
  359. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/MethodId.h +10 -0
  360. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/MethodProps.cpp +509 -0
  361. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/MethodProps.h +264 -0
  362. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/OffsetStream.cpp +39 -0
  363. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/OffsetStream.h +26 -0
  364. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/OutBuffer.cpp +111 -0
  365. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/OutBuffer.h +66 -0
  366. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/ProgressUtils.cpp +51 -0
  367. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/ProgressUtils.h +35 -0
  368. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/PropId.cpp +108 -0
  369. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/RegisterArc.h +78 -0
  370. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/RegisterCodec.h +106 -0
  371. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/StdAfx.h +8 -0
  372. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/StreamBinder.cpp +156 -0
  373. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/StreamBinder.h +60 -0
  374. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/StreamObjects.cpp +285 -0
  375. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/StreamObjects.h +157 -0
  376. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/StreamUtils.cpp +56 -0
  377. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/StreamUtils.h +13 -0
  378. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/UniqBlocks.cpp +57 -0
  379. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/UniqBlocks.h +26 -0
  380. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/VirtThread.cpp +48 -0
  381. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/VirtThread.h +24 -0
  382. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/Bcj2Coder.cpp +666 -0
  383. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/Bcj2Coder.h +120 -0
  384. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/Bcj2Register.cpp +24 -0
  385. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/BcjCoder.cpp +24 -0
  386. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/BcjCoder.h +31 -0
  387. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/BcjRegister.cpp +17 -0
  388. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/BranchMisc.cpp +23 -0
  389. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/BranchMisc.h +35 -0
  390. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/BranchRegister.cpp +41 -0
  391. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/ByteSwap.cpp +92 -0
  392. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/CodecExports.cpp +344 -0
  393. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/CopyCoder.cpp +120 -0
  394. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/CopyCoder.h +49 -0
  395. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/CopyRegister.cpp +15 -0
  396. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/DeltaFilter.cpp +128 -0
  397. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/Lzma2Decoder.cpp +265 -0
  398. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/Lzma2Decoder.h +96 -0
  399. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/Lzma2Encoder.cpp +122 -0
  400. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/Lzma2Encoder.h +42 -0
  401. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/Lzma2Register.cpp +22 -0
  402. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/LzmaDecoder.cpp +343 -0
  403. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/LzmaDecoder.h +113 -0
  404. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/LzmaEncoder.cpp +182 -0
  405. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/LzmaEncoder.h +46 -0
  406. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/LzmaRegister.cpp +22 -0
  407. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/PpmdDecoder.cpp +170 -0
  408. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/PpmdDecoder.h +86 -0
  409. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/PpmdEncoder.cpp +152 -0
  410. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/PpmdEncoder.h +58 -0
  411. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/PpmdRegister.cpp +22 -0
  412. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/StdAfx.h +8 -0
  413. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/XzDecoder.cpp +150 -0
  414. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/XzDecoder.h +92 -0
  415. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/XzEncoder.cpp +245 -0
  416. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/XzEncoder.h +46 -0
  417. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Crc.mak +8 -0
  418. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Crc64.mak +8 -0
  419. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Crypto/7zAes.cpp +280 -0
  420. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Crypto/7zAes.h +118 -0
  421. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Crypto/7zAesRegister.cpp +17 -0
  422. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Crypto/MyAes.cpp +112 -0
  423. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Crypto/MyAes.h +57 -0
  424. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Crypto/MyAesReg.cpp +16 -0
  425. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Crypto/RandGen.cpp +233 -0
  426. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Crypto/RandGen.h +40 -0
  427. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Crypto/StdAfx.h +8 -0
  428. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/GuiCommon.rc +84 -0
  429. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Guid.txt +220 -0
  430. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/ICoder.h +399 -0
  431. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/IDecl.h +28 -0
  432. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/IPassword.h +23 -0
  433. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/IProgress.h +19 -0
  434. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/IStream.h +127 -0
  435. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/LzmaDec.mak +5 -0
  436. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/MyVersion.h +2 -0
  437. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/MyVersionInfo.rc +2 -0
  438. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/PropID.h +127 -0
  439. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/SubBuild.mak +3 -0
  440. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Client7z/Client7z.cpp +993 -0
  441. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Client7z/Client7z.dsp +235 -0
  442. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Client7z/Client7z.dsw +29 -0
  443. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Client7z/StdAfx.cpp +3 -0
  444. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Client7z/StdAfx.h +8 -0
  445. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Client7z/makefile +28 -0
  446. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Client7z/resource.rc +3 -0
  447. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/ArchiveCommandLine.cpp +1295 -0
  448. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/ArchiveCommandLine.h +136 -0
  449. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/ArchiveExtractCallback.cpp +1715 -0
  450. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/ArchiveExtractCallback.h +403 -0
  451. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/ArchiveName.cpp +155 -0
  452. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/ArchiveName.h +10 -0
  453. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/ArchiveOpenCallback.cpp +161 -0
  454. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/ArchiveOpenCallback.h +112 -0
  455. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/Bench.cpp +3618 -0
  456. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/Bench.h +77 -0
  457. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/DefaultName.cpp +37 -0
  458. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/DefaultName.h +11 -0
  459. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/DirItem.h +190 -0
  460. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/EnumDirItems.cpp +1096 -0
  461. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/EnumDirItems.h +42 -0
  462. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/ExitCode.h +27 -0
  463. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/Extract.cpp +482 -0
  464. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/Extract.h +94 -0
  465. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/ExtractMode.h +34 -0
  466. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/ExtractingFilePath.cpp +280 -0
  467. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/ExtractingFilePath.h +31 -0
  468. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/HashCalc.cpp +347 -0
  469. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/HashCalc.h +110 -0
  470. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/IFileExtractCallback.h +114 -0
  471. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/LoadCodecs.cpp +1074 -0
  472. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/LoadCodecs.h +424 -0
  473. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/OpenArchive.cpp +3553 -0
  474. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/OpenArchive.h +436 -0
  475. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/PropIDUtils.cpp +668 -0
  476. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/PropIDUtils.h +18 -0
  477. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/Property.h +14 -0
  478. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/SetProperties.cpp +80 -0
  479. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/SetProperties.h +10 -0
  480. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/SortUtils.cpp +25 -0
  481. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/SortUtils.h +10 -0
  482. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/StdAfx.h +8 -0
  483. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/TempFiles.cpp +19 -0
  484. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/TempFiles.h +16 -0
  485. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/Update.cpp +1704 -0
  486. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/Update.h +200 -0
  487. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/UpdateAction.cpp +64 -0
  488. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/UpdateAction.h +66 -0
  489. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/UpdateCallback.cpp +771 -0
  490. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/UpdateCallback.h +162 -0
  491. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/UpdatePair.cpp +233 -0
  492. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/UpdatePair.h +27 -0
  493. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/UpdateProduce.cpp +70 -0
  494. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/UpdateProduce.h +55 -0
  495. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/WorkDir.cpp +94 -0
  496. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/WorkDir.h +26 -0
  497. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/ZipRegistry.h +130 -0
  498. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/BenchCon.cpp +41 -0
  499. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/BenchCon.h +14 -0
  500. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/Console.mak +43 -0
  501. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/Console.manifest +13 -0
  502. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/ConsoleClose.cpp +69 -0
  503. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/ConsoleClose.h +33 -0
  504. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/ExtractCallbackConsole.cpp +825 -0
  505. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/ExtractCallbackConsole.h +164 -0
  506. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/HashCon.cpp +367 -0
  507. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/HashCon.h +48 -0
  508. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/List.cpp +1359 -0
  509. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/List.h +27 -0
  510. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/Main.cpp +1154 -0
  511. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/MainAr.cpp +175 -0
  512. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/OpenCallbackConsole.cpp +115 -0
  513. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/OpenCallbackConsole.h +66 -0
  514. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/PercentPrinter.cpp +183 -0
  515. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/PercentPrinter.h +62 -0
  516. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/StdAfx.cpp +3 -0
  517. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/StdAfx.h +8 -0
  518. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/UpdateCallbackConsole.cpp +702 -0
  519. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/UpdateCallbackConsole.h +124 -0
  520. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/UserInputUtils.cpp +110 -0
  521. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/UserInputUtils.h +27 -0
  522. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/makefile +64 -0
  523. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/resource.rc +7 -0
  524. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Explorer/MyMessages.cpp +37 -0
  525. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Explorer/MyMessages.h +16 -0
  526. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/BrowseDialog.cpp +1025 -0
  527. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/BrowseDialog.h +21 -0
  528. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/BrowseDialogRes.h +9 -0
  529. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/ComboDialog.cpp +64 -0
  530. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/ComboDialog.h +28 -0
  531. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/ComboDialogRes.h +4 -0
  532. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/DialogSize.h +16 -0
  533. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/ExtractCallback.cpp +1037 -0
  534. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/ExtractCallback.h +328 -0
  535. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/FormatUtils.cpp +28 -0
  536. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/FormatUtils.h +14 -0
  537. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/LangUtils.h +40 -0
  538. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/MyWindowsNew.h +76 -0
  539. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/OverwriteDialog.cpp +122 -0
  540. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/OverwriteDialog.h +69 -0
  541. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/OverwriteDialog.rc +91 -0
  542. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/OverwriteDialogRes.h +17 -0
  543. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/PasswordDialog.cpp +58 -0
  544. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/PasswordDialog.h +28 -0
  545. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/PasswordDialog.rc +14 -0
  546. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/PasswordDialogRes.h +5 -0
  547. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/ProgressDialog.cpp +196 -0
  548. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/ProgressDialog.h +170 -0
  549. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/ProgressDialog.rc +12 -0
  550. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/ProgressDialog2.cpp +1337 -0
  551. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/ProgressDialog2.h +351 -0
  552. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/ProgressDialog2.rc +40 -0
  553. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/ProgressDialog2Res.h +48 -0
  554. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/ProgressDialog2a.rc +80 -0
  555. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/ProgressDialogRes.h +3 -0
  556. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/PropertyName.cpp +23 -0
  557. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/PropertyName.h +10 -0
  558. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/PropertyNameRes.h +95 -0
  559. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/SysIconUtils.cpp +255 -0
  560. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/SysIconUtils.h +62 -0
  561. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/resource.h +177 -0
  562. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/resourceGui.h +15 -0
  563. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/GUI/Extract.rc +59 -0
  564. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/GUI/ExtractDialog.cpp +418 -0
  565. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/GUI/ExtractDialog.h +113 -0
  566. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/GUI/ExtractDialog.rc +98 -0
  567. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/GUI/ExtractDialogRes.h +24 -0
  568. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/GUI/ExtractGUI.cpp +280 -0
  569. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/GUI/ExtractGUI.h +38 -0
  570. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/GUI/ExtractRes.h +51 -0
  571. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/GUI/HashGUI.h +27 -0
  572. package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/GUI/resource2.h +2 -0
  573. package/harmony/pushy/src/main/cpp/lzma/CPP/Build.mak +156 -0
  574. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/AutoPtr.h +35 -0
  575. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/CRC.cpp +7 -0
  576. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/C_FileIO.cpp +92 -0
  577. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/C_FileIO.h +53 -0
  578. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/ComTry.h +21 -0
  579. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/CommandLineParser.cpp +197 -0
  580. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/CommandLineParser.h +63 -0
  581. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/Common.h +43 -0
  582. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/CrcReg.cpp +98 -0
  583. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/Defs.h +15 -0
  584. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/DynamicBuffer.h +64 -0
  585. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/IntToString.cpp +193 -0
  586. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/IntToString.h +28 -0
  587. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/Lang.h +23 -0
  588. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/ListFileUtils.cpp +132 -0
  589. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/ListFileUtils.h +18 -0
  590. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyBuffer.h +259 -0
  591. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyBuffer2.h +100 -0
  592. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyCom.h +277 -0
  593. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyException.h +14 -0
  594. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyGuidDef.h +54 -0
  595. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyInitGuid.h +45 -0
  596. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyLinux.h +42 -0
  597. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyString.cpp +1659 -0
  598. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyString.h +868 -0
  599. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyTypes.h +35 -0
  600. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyUnknown.h +17 -0
  601. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyVector.cpp +3 -0
  602. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyVector.h +634 -0
  603. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyWindows.cpp +145 -0
  604. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyWindows.h +231 -0
  605. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/NewHandler.cpp +163 -0
  606. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/NewHandler.h +88 -0
  607. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/Sha256Reg.cpp +40 -0
  608. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/StdAfx.h +8 -0
  609. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/StdInStream.cpp +89 -0
  610. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/StdInStream.h +38 -0
  611. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/StdOutStream.cpp +163 -0
  612. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/StdOutStream.h +71 -0
  613. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/StringConvert.cpp +319 -0
  614. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/StringConvert.h +88 -0
  615. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/StringToInt.cpp +144 -0
  616. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/StringToInt.h +21 -0
  617. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/TextConfig.cpp +124 -0
  618. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/TextConfig.h +19 -0
  619. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/UTFConvert.cpp +288 -0
  620. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/UTFConvert.h +12 -0
  621. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/Wildcard.cpp +676 -0
  622. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/Wildcard.h +149 -0
  623. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/XzCrc64Init.cpp +7 -0
  624. package/harmony/pushy/src/main/cpp/lzma/CPP/Common/XzCrc64Reg.cpp +42 -0
  625. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/COM.h +70 -0
  626. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/CommonDialog.cpp +185 -0
  627. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/CommonDialog.h +23 -0
  628. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/ComboBox.cpp +66 -0
  629. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/ComboBox.h +65 -0
  630. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/CommandBar.h +52 -0
  631. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/Dialog.cpp +251 -0
  632. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/Dialog.h +170 -0
  633. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/Edit.h +19 -0
  634. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/ImageList.cpp +10 -0
  635. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/ImageList.h +87 -0
  636. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/ListView.cpp +155 -0
  637. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/ListView.h +146 -0
  638. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/ProgressBar.h +35 -0
  639. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/PropertyPage.cpp +143 -0
  640. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/PropertyPage.h +50 -0
  641. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/ReBar.h +34 -0
  642. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/Static.h +28 -0
  643. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/StatusBar.h +42 -0
  644. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/StdAfx.h +8 -0
  645. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/ToolBar.h +43 -0
  646. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/Trackbar.h +27 -0
  647. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/Window2.cpp +200 -0
  648. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/Window2.h +51 -0
  649. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/DLL.cpp +109 -0
  650. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/DLL.h +58 -0
  651. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Defs.h +17 -0
  652. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/ErrorMsg.cpp +66 -0
  653. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/ErrorMsg.h +15 -0
  654. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/FileDir.cpp +714 -0
  655. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/FileDir.h +117 -0
  656. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/FileFind.cpp +749 -0
  657. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/FileFind.h +161 -0
  658. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/FileIO.cpp +432 -0
  659. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/FileIO.h +212 -0
  660. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/FileLink.cpp +440 -0
  661. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/FileMapping.cpp +12 -0
  662. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/FileMapping.h +66 -0
  663. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/FileName.cpp +839 -0
  664. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/FileName.h +115 -0
  665. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/FileSystem.cpp +131 -0
  666. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/FileSystem.h +27 -0
  667. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Handle.h +37 -0
  668. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/MemoryLock.cpp +112 -0
  669. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/MemoryLock.h +40 -0
  670. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/NtCheck.h +46 -0
  671. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/PropVariant.cpp +347 -0
  672. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/PropVariant.h +114 -0
  673. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/PropVariantConv.cpp +138 -0
  674. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/PropVariantConv.h +37 -0
  675. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Registry.cpp +390 -0
  676. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Registry.h +84 -0
  677. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/ResourceString.cpp +103 -0
  678. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/ResourceString.h +16 -0
  679. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/SecurityUtils.cpp +181 -0
  680. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/SecurityUtils.h +167 -0
  681. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Shell.cpp +358 -0
  682. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Shell.h +94 -0
  683. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/StdAfx.h +8 -0
  684. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Synchronization.cpp +10 -0
  685. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Synchronization.h +164 -0
  686. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/System.cpp +142 -0
  687. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/System.h +40 -0
  688. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Thread.h +38 -0
  689. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/TimeUtils.cpp +213 -0
  690. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/TimeUtils.h +32 -0
  691. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Window.cpp +179 -0
  692. package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Window.h +284 -0
  693. package/harmony/pushy/src/main/cpp/lzma/CS/7zip/Common/CRC.cs +55 -0
  694. package/harmony/pushy/src/main/cpp/lzma/CS/7zip/Common/CommandLineParser.cs +274 -0
  695. package/harmony/pushy/src/main/cpp/lzma/CS/7zip/Common/InBuffer.cs +72 -0
  696. package/harmony/pushy/src/main/cpp/lzma/CS/7zip/Common/OutBuffer.cs +47 -0
  697. package/harmony/pushy/src/main/cpp/lzma/CS/7zip/Compress/LZ/IMatchFinder.cs +24 -0
  698. package/harmony/pushy/src/main/cpp/lzma/CS/7zip/Compress/LZ/LzBinTree.cs +367 -0
  699. package/harmony/pushy/src/main/cpp/lzma/CS/7zip/Compress/LZ/LzInWindow.cs +132 -0
  700. package/harmony/pushy/src/main/cpp/lzma/CS/7zip/Compress/LZ/LzOutWindow.cs +110 -0
  701. package/harmony/pushy/src/main/cpp/lzma/CS/7zip/Compress/LZMA/LzmaBase.cs +76 -0
  702. package/harmony/pushy/src/main/cpp/lzma/CS/7zip/Compress/LZMA/LzmaDecoder.cs +398 -0
  703. package/harmony/pushy/src/main/cpp/lzma/CS/7zip/Compress/LZMA/LzmaEncoder.cs +1480 -0
  704. package/harmony/pushy/src/main/cpp/lzma/CS/7zip/Compress/LzmaAlone/LzmaAlone.cs +364 -0
  705. package/harmony/pushy/src/main/cpp/lzma/CS/7zip/Compress/LzmaAlone/LzmaAlone.csproj +90 -0
  706. package/harmony/pushy/src/main/cpp/lzma/CS/7zip/Compress/LzmaAlone/LzmaAlone.sln +20 -0
  707. package/harmony/pushy/src/main/cpp/lzma/CS/7zip/Compress/LzmaAlone/LzmaBench.cs +340 -0
  708. package/harmony/pushy/src/main/cpp/lzma/CS/7zip/Compress/LzmaAlone/Properties/AssemblyInfo.cs +29 -0
  709. package/harmony/pushy/src/main/cpp/lzma/CS/7zip/Compress/LzmaAlone/Properties/Resources.cs +70 -0
  710. package/harmony/pushy/src/main/cpp/lzma/CS/7zip/Compress/LzmaAlone/Properties/Settings.cs +42 -0
  711. package/harmony/pushy/src/main/cpp/lzma/CS/7zip/Compress/RangeCoder/RangeCoder.cs +234 -0
  712. package/harmony/pushy/src/main/cpp/lzma/CS/7zip/Compress/RangeCoder/RangeCoderBit.cs +117 -0
  713. package/harmony/pushy/src/main/cpp/lzma/CS/7zip/Compress/RangeCoder/RangeCoderBitTree.cs +157 -0
  714. package/harmony/pushy/src/main/cpp/lzma/CS/7zip/ICoder.cs +157 -0
  715. package/harmony/pushy/src/main/cpp/lzma/DOC/7zC.txt +187 -0
  716. package/harmony/pushy/src/main/cpp/lzma/DOC/7zFormat.txt +469 -0
  717. package/harmony/pushy/src/main/cpp/lzma/DOC/Methods.txt +173 -0
  718. package/harmony/pushy/src/main/cpp/lzma/DOC/installer.txt +166 -0
  719. package/harmony/pushy/src/main/cpp/lzma/DOC/lzma-history.txt +446 -0
  720. package/harmony/pushy/src/main/cpp/lzma/DOC/lzma-sdk.txt +357 -0
  721. package/harmony/pushy/src/main/cpp/lzma/DOC/lzma-specification.txt +1176 -0
  722. package/harmony/pushy/src/main/cpp/lzma/DOC/lzma.txt +328 -0
  723. package/harmony/pushy/src/main/cpp/lzma/Java/SevenZip/CRC.java +52 -0
  724. package/harmony/pushy/src/main/cpp/lzma/Java/SevenZip/Compression/LZ/BinTree.java +382 -0
  725. package/harmony/pushy/src/main/cpp/lzma/Java/SevenZip/Compression/LZ/InWindow.java +131 -0
  726. package/harmony/pushy/src/main/cpp/lzma/Java/SevenZip/Compression/LZ/OutWindow.java +85 -0
  727. package/harmony/pushy/src/main/cpp/lzma/Java/SevenZip/Compression/LZMA/Base.java +88 -0
  728. package/harmony/pushy/src/main/cpp/lzma/Java/SevenZip/Compression/LZMA/Decoder.java +329 -0
  729. package/harmony/pushy/src/main/cpp/lzma/Java/SevenZip/Compression/LZMA/Encoder.java +1416 -0
  730. package/harmony/pushy/src/main/cpp/lzma/Java/SevenZip/Compression/RangeCoder/BitTreeDecoder.java +55 -0
  731. package/harmony/pushy/src/main/cpp/lzma/Java/SevenZip/Compression/RangeCoder/BitTreeEncoder.java +99 -0
  732. package/harmony/pushy/src/main/cpp/lzma/Java/SevenZip/Compression/RangeCoder/Decoder.java +88 -0
  733. package/harmony/pushy/src/main/cpp/lzma/Java/SevenZip/Compression/RangeCoder/Encoder.java +151 -0
  734. package/harmony/pushy/src/main/cpp/lzma/Java/SevenZip/ICodeProgress.java +6 -0
  735. package/harmony/pushy/src/main/cpp/lzma/Java/SevenZip/LzmaAlone.java +253 -0
  736. package/harmony/pushy/src/main/cpp/lzma/Java/SevenZip/LzmaBench.java +392 -0
  737. package/harmony/pushy/src/main/cpp/lzma/bin/7zS2.sfx +0 -0
  738. package/harmony/pushy/src/main/cpp/lzma/bin/7zS2con.sfx +0 -0
  739. package/harmony/pushy/src/main/cpp/lzma/bin/7zSD.sfx +0 -0
  740. package/harmony/pushy/src/main/cpp/lzma/bin/7zdec.exe +0 -0
  741. package/harmony/pushy/src/main/cpp/lzma/bin/7zr.exe +0 -0
  742. package/harmony/pushy/src/main/cpp/lzma/bin/installer/config.txt +5 -0
  743. package/harmony/pushy/src/main/cpp/lzma/bin/installer/cr.bat +5 -0
  744. package/harmony/pushy/src/main/cpp/lzma/bin/lzma.exe +0 -0
  745. package/harmony/pushy/src/main/cpp/lzma/bin/x64/7zr.exe +0 -0
  746. package/package.json +1 -1
@@ -0,0 +1,1715 @@
1
+ // ArchiveExtractCallback.cpp
2
+
3
+ #include "StdAfx.h"
4
+
5
+ #undef sprintf
6
+ #undef printf
7
+
8
+ // #include <stdio.h>
9
+ // #include "../../../../C/CpuTicks.h"
10
+
11
+ #include "../../../../C/Alloc.h"
12
+ #include "../../../../C/CpuArch.h"
13
+
14
+
15
+ #include "../../../Common/ComTry.h"
16
+ #include "../../../Common/IntToString.h"
17
+ #include "../../../Common/StringConvert.h"
18
+ #include "../../../Common/Wildcard.h"
19
+
20
+ #include "../../../Windows/ErrorMsg.h"
21
+ #include "../../../Windows/FileDir.h"
22
+ #include "../../../Windows/FileFind.h"
23
+ #include "../../../Windows/FileName.h"
24
+ #include "../../../Windows/PropVariant.h"
25
+ #include "../../../Windows/PropVariantConv.h"
26
+
27
+ #if defined(_WIN32) && !defined(UNDER_CE) && !defined(_SFX)
28
+ #define _USE_SECURITY_CODE
29
+ #include "../../../Windows/SecurityUtils.h"
30
+ #endif
31
+
32
+ #include "../../Common/FilePathAutoRename.h"
33
+ // #include "../../Common/StreamUtils.h"
34
+
35
+ #include "../Common/ExtractingFilePath.h"
36
+ #include "../Common/PropIDUtils.h"
37
+
38
+ #include "ArchiveExtractCallback.h"
39
+
40
+ using namespace NWindows;
41
+ using namespace NFile;
42
+ using namespace NDir;
43
+
44
+ static const char * const kCantAutoRename = "Can not create file with auto name";
45
+ static const char * const kCantRenameFile = "Can not rename existing file";
46
+ static const char * const kCantDeleteOutputFile = "Can not delete output file";
47
+ static const char * const kCantDeleteOutputDir = "Can not delete output folder";
48
+ static const char * const kCantCreateHardLink = "Can not create hard link";
49
+ static const char * const kCantCreateSymLink = "Can not create symbolic link";
50
+ static const char * const kCantOpenOutFile = "Can not open output file";
51
+ static const char * const kCantSetFileLen = "Can not set length for output file";
52
+
53
+
54
+ #ifndef _SFX
55
+
56
+ STDMETHODIMP COutStreamWithHash::Write(const void *data, UInt32 size, UInt32 *processedSize)
57
+ {
58
+ HRESULT result = S_OK;
59
+ if (_stream)
60
+ result = _stream->Write(data, size, &size);
61
+ if (_calculate)
62
+ _hash->Update(data, size);
63
+ _size += size;
64
+ if (processedSize)
65
+ *processedSize = size;
66
+ return result;
67
+ }
68
+
69
+ #endif
70
+
71
+ #ifdef _USE_SECURITY_CODE
72
+ bool InitLocalPrivileges()
73
+ {
74
+ NSecurity::CAccessToken token;
75
+ if (!token.OpenProcessToken(GetCurrentProcess(),
76
+ TOKEN_QUERY | TOKEN_ADJUST_PRIVILEGES))
77
+ return false;
78
+
79
+ TOKEN_PRIVILEGES tp;
80
+
81
+ tp.PrivilegeCount = 1;
82
+ tp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
83
+
84
+ if (!::LookupPrivilegeValue(NULL, SE_SECURITY_NAME, &tp.Privileges[0].Luid))
85
+ return false;
86
+ if (!token.AdjustPrivileges(&tp))
87
+ return false;
88
+ return (GetLastError() == ERROR_SUCCESS);
89
+ }
90
+ #endif
91
+
92
+ #ifdef SUPPORT_LINKS
93
+
94
+ int CHardLinkNode::Compare(const CHardLinkNode &a) const
95
+ {
96
+ if (StreamId < a.StreamId) return -1;
97
+ if (StreamId > a.StreamId) return 1;
98
+ return MyCompare(INode, a.INode);
99
+ }
100
+
101
+ static HRESULT Archive_Get_HardLinkNode(IInArchive *archive, UInt32 index, CHardLinkNode &h, bool &defined)
102
+ {
103
+ h.INode = 0;
104
+ h.StreamId = (UInt64)(Int64)-1;
105
+ defined = false;
106
+ {
107
+ NCOM::CPropVariant prop;
108
+ RINOK(archive->GetProperty(index, kpidINode, &prop));
109
+ if (!ConvertPropVariantToUInt64(prop, h.INode))
110
+ return S_OK;
111
+ }
112
+ {
113
+ NCOM::CPropVariant prop;
114
+ RINOK(archive->GetProperty(index, kpidStreamId, &prop));
115
+ ConvertPropVariantToUInt64(prop, h.StreamId);
116
+ }
117
+ defined = true;
118
+ return S_OK;
119
+ }
120
+
121
+
122
+ HRESULT CArchiveExtractCallback::PrepareHardLinks(const CRecordVector<UInt32> *realIndices)
123
+ {
124
+ _hardLinks.Clear();
125
+
126
+ if (!_arc->Ask_INode)
127
+ return S_OK;
128
+
129
+ IInArchive *archive = _arc->Archive;
130
+ CRecordVector<CHardLinkNode> &hardIDs = _hardLinks.IDs;
131
+
132
+ {
133
+ UInt32 numItems;
134
+ if (realIndices)
135
+ numItems = realIndices->Size();
136
+ else
137
+ {
138
+ RINOK(archive->GetNumberOfItems(&numItems));
139
+ }
140
+
141
+ for (UInt32 i = 0; i < numItems; i++)
142
+ {
143
+ CHardLinkNode h;
144
+ bool defined;
145
+ UInt32 realIndex = realIndices ? (*realIndices)[i] : i;
146
+
147
+ RINOK(Archive_Get_HardLinkNode(archive, realIndex, h, defined));
148
+ if (defined)
149
+ {
150
+ bool isAltStream = false;
151
+ RINOK(Archive_IsItem_AltStream(archive, realIndex, isAltStream));
152
+ if (!isAltStream)
153
+ hardIDs.Add(h);
154
+ }
155
+ }
156
+ }
157
+
158
+ hardIDs.Sort2();
159
+
160
+ {
161
+ // wee keep only items that have 2 or more items
162
+ unsigned k = 0;
163
+ unsigned numSame = 1;
164
+ for (unsigned i = 1; i < hardIDs.Size(); i++)
165
+ {
166
+ if (hardIDs[i].Compare(hardIDs[i - 1]) != 0)
167
+ numSame = 1;
168
+ else if (++numSame == 2)
169
+ {
170
+ if (i - 1 != k)
171
+ hardIDs[k] = hardIDs[i - 1];
172
+ k++;
173
+ }
174
+ }
175
+ hardIDs.DeleteFrom(k);
176
+ }
177
+
178
+ _hardLinks.PrepareLinks();
179
+ return S_OK;
180
+ }
181
+
182
+ #endif
183
+
184
+ CArchiveExtractCallback::CArchiveExtractCallback():
185
+ _arc(NULL),
186
+ WriteCTime(true),
187
+ WriteATime(true),
188
+ WriteMTime(true),
189
+ _multiArchives(false)
190
+ {
191
+ LocalProgressSpec = new CLocalProgress();
192
+ _localProgress = LocalProgressSpec;
193
+
194
+ #ifdef _USE_SECURITY_CODE
195
+ _saclEnabled = InitLocalPrivileges();
196
+ #endif
197
+ }
198
+
199
+ void CArchiveExtractCallback::Init(
200
+ const CExtractNtOptions &ntOptions,
201
+ const NWildcard::CCensorNode *wildcardCensor,
202
+ const CArc *arc,
203
+ IFolderArchiveExtractCallback *extractCallback2,
204
+ bool stdOutMode, bool testMode,
205
+ const FString &directoryPath,
206
+ const UStringVector &removePathParts, bool removePartsForAltStreams,
207
+ UInt64 packSize)
208
+ {
209
+ ClearExtractedDirsInfo();
210
+ _outFileStream.Release();
211
+
212
+ #ifdef SUPPORT_LINKS
213
+ _hardLinks.Clear();
214
+ #endif
215
+
216
+ #ifdef SUPPORT_ALT_STREAMS
217
+ _renamedFiles.Clear();
218
+ #endif
219
+
220
+ _ntOptions = ntOptions;
221
+ _wildcardCensor = wildcardCensor;
222
+
223
+ _stdOutMode = stdOutMode;
224
+ _testMode = testMode;
225
+
226
+ // _progressTotal = 0;
227
+ // _progressTotal_Defined = false;
228
+
229
+ _packTotal = packSize;
230
+ _progressTotal = packSize;
231
+ _progressTotal_Defined = true;
232
+
233
+ _extractCallback2 = extractCallback2;
234
+ _compressProgress.Release();
235
+ _extractCallback2.QueryInterface(IID_ICompressProgressInfo, &_compressProgress);
236
+ _extractCallback2.QueryInterface(IID_IArchiveExtractCallbackMessage, &_callbackMessage);
237
+ _extractCallback2.QueryInterface(IID_IFolderArchiveExtractCallback2, &_folderArchiveExtractCallback2);
238
+
239
+ #ifndef _SFX
240
+
241
+ _extractCallback2.QueryInterface(IID_IFolderExtractToStreamCallback, &ExtractToStreamCallback);
242
+ if (ExtractToStreamCallback)
243
+ {
244
+ Int32 useStreams = 0;
245
+ if (ExtractToStreamCallback->UseExtractToStream(&useStreams) != S_OK)
246
+ useStreams = 0;
247
+ if (useStreams == 0)
248
+ ExtractToStreamCallback.Release();
249
+ }
250
+
251
+ #endif
252
+
253
+ LocalProgressSpec->Init(extractCallback2, true);
254
+ LocalProgressSpec->SendProgress = false;
255
+
256
+ _removePathParts = removePathParts;
257
+ _removePartsForAltStreams = removePartsForAltStreams;
258
+
259
+ #ifndef _SFX
260
+ _baseParentFolder = (UInt32)(Int32)-1;
261
+ _use_baseParentFolder_mode = false;
262
+ #endif
263
+
264
+ _arc = arc;
265
+ _dirPathPrefix = directoryPath;
266
+ _dirPathPrefix_Full = directoryPath;
267
+ #if defined(_WIN32) && !defined(UNDER_CE)
268
+ if (!NName::IsAltPathPrefix(_dirPathPrefix))
269
+ #endif
270
+ {
271
+ NName::NormalizeDirPathPrefix(_dirPathPrefix);
272
+ NDir::MyGetFullPathName(directoryPath, _dirPathPrefix_Full);
273
+ NName::NormalizeDirPathPrefix(_dirPathPrefix_Full);
274
+ }
275
+ }
276
+
277
+ STDMETHODIMP CArchiveExtractCallback::SetTotal(UInt64 size)
278
+ {
279
+ COM_TRY_BEGIN
280
+ _progressTotal = size;
281
+ _progressTotal_Defined = true;
282
+ if (!_multiArchives && _extractCallback2)
283
+ return _extractCallback2->SetTotal(size);
284
+ return S_OK;
285
+ COM_TRY_END
286
+ }
287
+
288
+ static void NormalizeVals(UInt64 &v1, UInt64 &v2)
289
+ {
290
+ const UInt64 kMax = (UInt64)1 << 31;
291
+ while (v1 > kMax)
292
+ {
293
+ v1 >>= 1;
294
+ v2 >>= 1;
295
+ }
296
+ }
297
+
298
+ static UInt64 MyMultDiv64(UInt64 unpCur, UInt64 unpTotal, UInt64 packTotal)
299
+ {
300
+ NormalizeVals(packTotal, unpTotal);
301
+ NormalizeVals(unpCur, unpTotal);
302
+ if (unpTotal == 0)
303
+ unpTotal = 1;
304
+ return unpCur * packTotal / unpTotal;
305
+ }
306
+
307
+ STDMETHODIMP CArchiveExtractCallback::SetCompleted(const UInt64 *completeValue)
308
+ {
309
+ COM_TRY_BEGIN
310
+
311
+ if (!_extractCallback2)
312
+ return S_OK;
313
+
314
+ UInt64 packCur;
315
+ if (_multiArchives)
316
+ {
317
+ packCur = LocalProgressSpec->InSize;
318
+ if (completeValue && _progressTotal_Defined)
319
+ packCur += MyMultDiv64(*completeValue, _progressTotal, _packTotal);
320
+ completeValue = &packCur;
321
+ }
322
+ return _extractCallback2->SetCompleted(completeValue);
323
+
324
+ COM_TRY_END
325
+ }
326
+
327
+ STDMETHODIMP CArchiveExtractCallback::SetRatioInfo(const UInt64 *inSize, const UInt64 *outSize)
328
+ {
329
+ COM_TRY_BEGIN
330
+ return _localProgress->SetRatioInfo(inSize, outSize);
331
+ COM_TRY_END
332
+ }
333
+
334
+ void CArchiveExtractCallback::CreateComplexDirectory(const UStringVector &dirPathParts, FString &fullPath)
335
+ {
336
+ bool isAbsPath = false;
337
+
338
+ if (!dirPathParts.IsEmpty())
339
+ {
340
+ const UString &s = dirPathParts[0];
341
+ if (s.IsEmpty())
342
+ isAbsPath = true;
343
+ #if defined(_WIN32) && !defined(UNDER_CE)
344
+ else
345
+ {
346
+ if (NName::IsDrivePath2(s))
347
+ isAbsPath = true;
348
+ }
349
+ #endif
350
+ }
351
+
352
+ if (_pathMode == NExtract::NPathMode::kAbsPaths && isAbsPath)
353
+ fullPath.Empty();
354
+ else
355
+ fullPath = _dirPathPrefix;
356
+
357
+ FOR_VECTOR (i, dirPathParts)
358
+ {
359
+ if (i != 0)
360
+ fullPath.Add_PathSepar();
361
+ const UString &s = dirPathParts[i];
362
+ fullPath += us2fs(s);
363
+ #if defined(_WIN32) && !defined(UNDER_CE)
364
+ if (_pathMode == NExtract::NPathMode::kAbsPaths)
365
+ if (i == 0 && s.Len() == 2 && NName::IsDrivePath2(s))
366
+ continue;
367
+ #endif
368
+ CreateDir(fullPath);
369
+ }
370
+ }
371
+
372
+ HRESULT CArchiveExtractCallback::GetTime(UInt32 index, PROPID propID, FILETIME &filetime, bool &filetimeIsDefined)
373
+ {
374
+ filetimeIsDefined = false;
375
+ filetime.dwLowDateTime = 0;
376
+ filetime.dwHighDateTime = 0;
377
+ NCOM::CPropVariant prop;
378
+ RINOK(_arc->Archive->GetProperty(index, propID, &prop));
379
+ if (prop.vt == VT_FILETIME)
380
+ {
381
+ filetime = prop.filetime;
382
+ filetimeIsDefined = (filetime.dwHighDateTime != 0 || filetime.dwLowDateTime != 0);
383
+ }
384
+ else if (prop.vt != VT_EMPTY)
385
+ return E_FAIL;
386
+ return S_OK;
387
+ }
388
+
389
+ HRESULT CArchiveExtractCallback::GetUnpackSize()
390
+ {
391
+ return _arc->GetItemSize(_index, _curSize, _curSizeDefined);
392
+ }
393
+
394
+ static void AddPathToMessage(UString &s, const FString &path)
395
+ {
396
+ s += " : ";
397
+ s += fs2us(path);
398
+ }
399
+
400
+ HRESULT CArchiveExtractCallback::SendMessageError(const char *message, const FString &path)
401
+ {
402
+ UString s (message);
403
+ AddPathToMessage(s, path);
404
+ return _extractCallback2->MessageError(s);
405
+ }
406
+
407
+ HRESULT CArchiveExtractCallback::SendMessageError_with_LastError(const char *message, const FString &path)
408
+ {
409
+ DWORD errorCode = GetLastError();
410
+ UString s (message);
411
+ if (errorCode != 0)
412
+ {
413
+ s += " : ";
414
+ s += NError::MyFormatMessage(errorCode);
415
+ }
416
+ AddPathToMessage(s, path);
417
+ return _extractCallback2->MessageError(s);
418
+ }
419
+
420
+ HRESULT CArchiveExtractCallback::SendMessageError2(const char *message, const FString &path1, const FString &path2)
421
+ {
422
+ UString s (message);
423
+ AddPathToMessage(s, path1);
424
+ AddPathToMessage(s, path2);
425
+ return _extractCallback2->MessageError(s);
426
+ }
427
+
428
+ #ifndef _SFX
429
+
430
+ STDMETHODIMP CGetProp::GetProp(PROPID propID, PROPVARIANT *value)
431
+ {
432
+ /*
433
+ if (propID == kpidName)
434
+ {
435
+ COM_TRY_BEGIN
436
+ NCOM::CPropVariant prop = Name;
437
+ prop.Detach(value);
438
+ return S_OK;
439
+ COM_TRY_END
440
+ }
441
+ */
442
+ return Arc->Archive->GetProperty(IndexInArc, propID, value);
443
+ }
444
+
445
+ #endif
446
+
447
+
448
+ #ifdef SUPPORT_LINKS
449
+
450
+ static UString GetDirPrefixOf(const UString &src)
451
+ {
452
+ UString s (src);
453
+ if (!s.IsEmpty())
454
+ {
455
+ if (IsPathSepar(s.Back()))
456
+ s.DeleteBack();
457
+ int pos = s.ReverseFind_PathSepar();
458
+ s.DeleteFrom(pos + 1);
459
+ }
460
+ return s;
461
+ }
462
+
463
+ #endif
464
+
465
+
466
+ bool IsSafePath(const UString &path)
467
+ {
468
+ if (NName::IsAbsolutePath(path))
469
+ return false;
470
+
471
+ UStringVector parts;
472
+ SplitPathToParts(path, parts);
473
+ unsigned level = 0;
474
+
475
+ FOR_VECTOR (i, parts)
476
+ {
477
+ const UString &s = parts[i];
478
+ if (s.IsEmpty())
479
+ {
480
+ if (i == 0)
481
+ return false;
482
+ continue;
483
+ }
484
+ if (s == L".")
485
+ continue;
486
+ if (s == L"..")
487
+ {
488
+ if (level == 0)
489
+ return false;
490
+ level--;
491
+ }
492
+ else
493
+ level++;
494
+ }
495
+
496
+ return level > 0;
497
+ }
498
+
499
+
500
+ bool CensorNode_CheckPath2(const NWildcard::CCensorNode &node, const CReadArcItem &item, bool &include)
501
+ {
502
+ bool found = false;
503
+
504
+ if (node.CheckPathVect(item.PathParts, !item.MainIsDir, include))
505
+ {
506
+ if (!include)
507
+ return true;
508
+
509
+ #ifdef SUPPORT_ALT_STREAMS
510
+ if (!item.IsAltStream)
511
+ return true;
512
+ #endif
513
+
514
+ found = true;
515
+ }
516
+
517
+ #ifdef SUPPORT_ALT_STREAMS
518
+
519
+ if (!item.IsAltStream)
520
+ return false;
521
+
522
+ UStringVector pathParts2 = item.PathParts;
523
+ if (pathParts2.IsEmpty())
524
+ pathParts2.AddNew();
525
+ UString &back = pathParts2.Back();
526
+ back += ':';
527
+ back += item.AltStreamName;
528
+ bool include2;
529
+
530
+ if (node.CheckPathVect(pathParts2,
531
+ true, // isFile,
532
+ include2))
533
+ {
534
+ include = include2;
535
+ return true;
536
+ }
537
+
538
+ #endif
539
+
540
+ return found;
541
+ }
542
+
543
+ bool CensorNode_CheckPath(const NWildcard::CCensorNode &node, const CReadArcItem &item)
544
+ {
545
+ bool include;
546
+ if (CensorNode_CheckPath2(node, item, include))
547
+ return include;
548
+ return false;
549
+ }
550
+
551
+ static FString MakePath_from_2_Parts(const FString &prefix, const FString &path)
552
+ {
553
+ FString s (prefix);
554
+ #if defined(_WIN32) && !defined(UNDER_CE)
555
+ if (!path.IsEmpty() && path[0] == ':' && !prefix.IsEmpty() && IsPathSepar(prefix.Back()))
556
+ {
557
+ if (!NName::IsDriveRootPath_SuperAllowed(prefix))
558
+ s.DeleteBack();
559
+ }
560
+ #endif
561
+ s += path;
562
+ return s;
563
+ }
564
+
565
+
566
+ /*
567
+ #ifdef SUPPORT_LINKS
568
+
569
+ struct CTempMidBuffer
570
+ {
571
+ void *Buf;
572
+
573
+ CTempMidBuffer(size_t size): Buf(NULL) { Buf = ::MidAlloc(size); }
574
+ ~CTempMidBuffer() { ::MidFree(Buf); }
575
+ };
576
+
577
+ HRESULT CArchiveExtractCallback::MyCopyFile(ISequentialOutStream *outStream)
578
+ {
579
+ const size_t kBufSize = 1 << 16;
580
+ CTempMidBuffer buf(kBufSize);
581
+ if (!buf.Buf)
582
+ return E_OUTOFMEMORY;
583
+
584
+ NIO::CInFile inFile;
585
+ NIO::COutFile outFile;
586
+
587
+ if (!inFile.Open(_CopyFile_Path))
588
+ return SendMessageError_with_LastError("Open error", _CopyFile_Path);
589
+
590
+ for (;;)
591
+ {
592
+ UInt32 num;
593
+
594
+ if (!inFile.Read(buf.Buf, kBufSize, num))
595
+ return SendMessageError_with_LastError("Read error", _CopyFile_Path);
596
+
597
+ if (num == 0)
598
+ return S_OK;
599
+
600
+
601
+ RINOK(WriteStream(outStream, buf.Buf, num));
602
+ }
603
+ }
604
+
605
+ #endif
606
+ */
607
+
608
+
609
+ STDMETHODIMP CArchiveExtractCallback::GetStream(UInt32 index, ISequentialOutStream **outStream, Int32 askExtractMode)
610
+ {
611
+ COM_TRY_BEGIN
612
+
613
+ *outStream = NULL;
614
+
615
+ #ifndef _SFX
616
+ if (_hashStream)
617
+ _hashStreamSpec->ReleaseStream();
618
+ _hashStreamWasUsed = false;
619
+ #endif
620
+
621
+ _outFileStream.Release();
622
+
623
+ _encrypted = false;
624
+ _position = 0;
625
+ _isSplit = false;
626
+
627
+ _curSize = 0;
628
+ _curSizeDefined = false;
629
+ _fileLengthWasSet = false;
630
+ _index = index;
631
+
632
+ _diskFilePath.Empty();
633
+
634
+ // _fi.Clear();
635
+
636
+ #ifdef SUPPORT_LINKS
637
+ // _CopyFile_Path.Empty();
638
+ linkPath.Empty();
639
+ #endif
640
+
641
+ IInArchive *archive = _arc->Archive;
642
+
643
+ #ifndef _SFX
644
+ _item._use_baseParentFolder_mode = _use_baseParentFolder_mode;
645
+ if (_use_baseParentFolder_mode)
646
+ {
647
+ _item._baseParentFolder = _baseParentFolder;
648
+ if (_pathMode == NExtract::NPathMode::kFullPaths ||
649
+ _pathMode == NExtract::NPathMode::kAbsPaths)
650
+ _item._baseParentFolder = -1;
651
+ }
652
+ #endif
653
+
654
+ #ifdef SUPPORT_ALT_STREAMS
655
+ _item.WriteToAltStreamIfColon = _ntOptions.WriteToAltStreamIfColon;
656
+ #endif
657
+
658
+ RINOK(_arc->GetItem(index, _item));
659
+
660
+ {
661
+ NCOM::CPropVariant prop;
662
+ RINOK(archive->GetProperty(index, kpidPosition, &prop));
663
+ if (prop.vt != VT_EMPTY)
664
+ {
665
+ if (prop.vt != VT_UI8)
666
+ return E_FAIL;
667
+ _position = prop.uhVal.QuadPart;
668
+ _isSplit = true;
669
+ }
670
+ }
671
+
672
+ #ifdef SUPPORT_LINKS
673
+
674
+ // bool isCopyLink = false;
675
+ bool isHardLink = false;
676
+ bool isJunction = false;
677
+ bool isRelative = false;
678
+
679
+ {
680
+ NCOM::CPropVariant prop;
681
+ RINOK(archive->GetProperty(index, kpidHardLink, &prop));
682
+ if (prop.vt == VT_BSTR)
683
+ {
684
+ isHardLink = true;
685
+ // isCopyLink = false;
686
+ isRelative = false; // RAR5, TAR: hard links are from root folder of archive
687
+ linkPath.SetFromBstr(prop.bstrVal);
688
+ }
689
+ else if (prop.vt != VT_EMPTY)
690
+ return E_FAIL;
691
+ }
692
+
693
+ /*
694
+ {
695
+ NCOM::CPropVariant prop;
696
+ RINOK(archive->GetProperty(index, kpidCopyLink, &prop));
697
+ if (prop.vt == VT_BSTR)
698
+ {
699
+ isHardLink = false;
700
+ isCopyLink = true;
701
+ isRelative = false; // RAR5: copy links are from root folder of archive
702
+ linkPath.SetFromBstr(prop.bstrVal);
703
+ }
704
+ else if (prop.vt != VT_EMPTY)
705
+ return E_FAIL;
706
+ }
707
+ */
708
+
709
+ {
710
+ NCOM::CPropVariant prop;
711
+ RINOK(archive->GetProperty(index, kpidSymLink, &prop));
712
+ if (prop.vt == VT_BSTR)
713
+ {
714
+ isHardLink = false;
715
+ // isCopyLink = false;
716
+ isRelative = true; // RAR5, TAR: symbolic links can be relative
717
+ linkPath.SetFromBstr(prop.bstrVal);
718
+ }
719
+ else if (prop.vt != VT_EMPTY)
720
+ return E_FAIL;
721
+ }
722
+
723
+
724
+ bool isOkReparse = false;
725
+
726
+ if (linkPath.IsEmpty() && _arc->GetRawProps)
727
+ {
728
+ const void *data;
729
+ UInt32 dataSize;
730
+ UInt32 propType;
731
+
732
+ _arc->GetRawProps->GetRawProp(_index, kpidNtReparse, &data, &dataSize, &propType);
733
+
734
+ if (dataSize != 0)
735
+ {
736
+ if (propType != NPropDataType::kRaw)
737
+ return E_FAIL;
738
+ UString s;
739
+ CReparseAttr reparse;
740
+ DWORD errorCode = 0;
741
+ isOkReparse = reparse.Parse((const Byte *)data, dataSize, errorCode);
742
+ if (isOkReparse)
743
+ {
744
+ isHardLink = false;
745
+ // isCopyLink = false;
746
+ linkPath = reparse.GetPath();
747
+ isJunction = reparse.IsMountPoint();
748
+ isRelative = reparse.IsRelative();
749
+ #ifndef _WIN32
750
+ linkPath.Replace(L'\\', WCHAR_PATH_SEPARATOR);
751
+ #endif
752
+ }
753
+ }
754
+ }
755
+
756
+ if (!linkPath.IsEmpty())
757
+ {
758
+ #ifdef _WIN32
759
+ linkPath.Replace(L'/', WCHAR_PATH_SEPARATOR);
760
+ #endif
761
+
762
+ // rar5 uses "\??\" prefix for absolute links
763
+ if (linkPath.IsPrefixedBy(WSTRING_PATH_SEPARATOR L"??" WSTRING_PATH_SEPARATOR))
764
+ {
765
+ isRelative = false;
766
+ linkPath.DeleteFrontal(4);
767
+ }
768
+
769
+ for (;;)
770
+ // while (NName::IsAbsolutePath(linkPath))
771
+ {
772
+ unsigned n = NName::GetRootPrefixSize(linkPath);
773
+ if (n == 0)
774
+ break;
775
+ isRelative = false;
776
+ linkPath.DeleteFrontal(n);
777
+ }
778
+ }
779
+
780
+ if (!linkPath.IsEmpty() && !isRelative && _removePathParts.Size() != 0)
781
+ {
782
+ UStringVector pathParts;
783
+ SplitPathToParts(linkPath, pathParts);
784
+ bool badPrefix = false;
785
+ FOR_VECTOR (i, _removePathParts)
786
+ {
787
+ if (CompareFileNames(_removePathParts[i], pathParts[i]) != 0)
788
+ {
789
+ badPrefix = true;
790
+ break;
791
+ }
792
+ }
793
+ if (!badPrefix)
794
+ pathParts.DeleteFrontal(_removePathParts.Size());
795
+ linkPath = MakePathFromParts(pathParts);
796
+ }
797
+
798
+ #endif
799
+
800
+ RINOK(Archive_GetItemBoolProp(archive, index, kpidEncrypted, _encrypted));
801
+
802
+ RINOK(GetUnpackSize());
803
+
804
+ #ifdef SUPPORT_ALT_STREAMS
805
+
806
+ if (!_ntOptions.AltStreams.Val && _item.IsAltStream)
807
+ return S_OK;
808
+
809
+ #endif
810
+
811
+
812
+ UStringVector &pathParts = _item.PathParts;
813
+
814
+ if (_wildcardCensor)
815
+ {
816
+ if (!CensorNode_CheckPath(*_wildcardCensor, _item))
817
+ return S_OK;
818
+ }
819
+
820
+ #ifndef _SFX
821
+ if (_use_baseParentFolder_mode)
822
+ {
823
+ if (!pathParts.IsEmpty())
824
+ {
825
+ unsigned numRemovePathParts = 0;
826
+
827
+ #ifdef SUPPORT_ALT_STREAMS
828
+ if (_pathMode == NExtract::NPathMode::kNoPathsAlt && _item.IsAltStream)
829
+ numRemovePathParts = pathParts.Size();
830
+ else
831
+ #endif
832
+ if (_pathMode == NExtract::NPathMode::kNoPaths ||
833
+ _pathMode == NExtract::NPathMode::kNoPathsAlt)
834
+ numRemovePathParts = pathParts.Size() - 1;
835
+ pathParts.DeleteFrontal(numRemovePathParts);
836
+ }
837
+ }
838
+ else
839
+ #endif
840
+ {
841
+ if (pathParts.IsEmpty())
842
+ {
843
+ if (_item.IsDir)
844
+ return S_OK;
845
+ /*
846
+ #ifdef SUPPORT_ALT_STREAMS
847
+ if (!_item.IsAltStream)
848
+ #endif
849
+ return E_FAIL;
850
+ */
851
+ }
852
+
853
+ unsigned numRemovePathParts = 0;
854
+
855
+ switch (_pathMode)
856
+ {
857
+ case NExtract::NPathMode::kFullPaths:
858
+ case NExtract::NPathMode::kCurPaths:
859
+ {
860
+ if (_removePathParts.IsEmpty())
861
+ break;
862
+ bool badPrefix = false;
863
+
864
+ if (pathParts.Size() < _removePathParts.Size())
865
+ badPrefix = true;
866
+ else
867
+ {
868
+ if (pathParts.Size() == _removePathParts.Size())
869
+ {
870
+ if (_removePartsForAltStreams)
871
+ {
872
+ #ifdef SUPPORT_ALT_STREAMS
873
+ if (!_item.IsAltStream)
874
+ #endif
875
+ badPrefix = true;
876
+ }
877
+ else
878
+ {
879
+ if (!_item.MainIsDir)
880
+ badPrefix = true;
881
+ }
882
+ }
883
+
884
+ if (!badPrefix)
885
+ FOR_VECTOR (i, _removePathParts)
886
+ {
887
+ if (CompareFileNames(_removePathParts[i], pathParts[i]) != 0)
888
+ {
889
+ badPrefix = true;
890
+ break;
891
+ }
892
+ }
893
+ }
894
+
895
+ if (badPrefix)
896
+ {
897
+ if (askExtractMode == NArchive::NExtract::NAskMode::kExtract && !_testMode)
898
+ return E_FAIL;
899
+ }
900
+ else
901
+ numRemovePathParts = _removePathParts.Size();
902
+ break;
903
+ }
904
+
905
+ case NExtract::NPathMode::kNoPaths:
906
+ {
907
+ if (!pathParts.IsEmpty())
908
+ numRemovePathParts = pathParts.Size() - 1;
909
+ break;
910
+ }
911
+ case NExtract::NPathMode::kNoPathsAlt:
912
+ {
913
+ #ifdef SUPPORT_ALT_STREAMS
914
+ if (_item.IsAltStream)
915
+ numRemovePathParts = pathParts.Size();
916
+ else
917
+ #endif
918
+ if (!pathParts.IsEmpty())
919
+ numRemovePathParts = pathParts.Size() - 1;
920
+ break;
921
+ }
922
+ /*
923
+ case NExtract::NPathMode::kFullPaths:
924
+ case NExtract::NPathMode::kAbsPaths:
925
+ break;
926
+ */
927
+ }
928
+
929
+ pathParts.DeleteFrontal(numRemovePathParts);
930
+ }
931
+
932
+ #ifndef _SFX
933
+
934
+ if (ExtractToStreamCallback)
935
+ {
936
+ if (!GetProp)
937
+ {
938
+ GetProp_Spec = new CGetProp;
939
+ GetProp = GetProp_Spec;
940
+ }
941
+ GetProp_Spec->Arc = _arc;
942
+ GetProp_Spec->IndexInArc = index;
943
+ UString name (MakePathFromParts(pathParts));
944
+
945
+ #ifdef SUPPORT_ALT_STREAMS
946
+ if (_item.IsAltStream)
947
+ {
948
+ if (!pathParts.IsEmpty() || (!_removePartsForAltStreams && _pathMode != NExtract::NPathMode::kNoPathsAlt))
949
+ name += ':';
950
+ name += _item.AltStreamName;
951
+ }
952
+ #endif
953
+
954
+ return ExtractToStreamCallback->GetStream7(name, BoolToInt(_item.IsDir), outStream, askExtractMode, GetProp);
955
+ }
956
+
957
+ #endif
958
+
959
+ CMyComPtr<ISequentialOutStream> outStreamLoc;
960
+
961
+ if (askExtractMode == NArchive::NExtract::NAskMode::kExtract && !_testMode)
962
+ {
963
+ if (_stdOutMode)
964
+ {
965
+ outStreamLoc = new CStdOutFileStream;
966
+ }
967
+ else
968
+ {
969
+ {
970
+ NCOM::CPropVariant prop;
971
+ RINOK(archive->GetProperty(index, kpidAttrib, &prop));
972
+ if (prop.vt == VT_UI4)
973
+ {
974
+ _fi.Attrib = prop.ulVal;
975
+ _fi.AttribDefined = true;
976
+ }
977
+ else if (prop.vt == VT_EMPTY)
978
+ _fi.AttribDefined = false;
979
+ else
980
+ return E_FAIL;
981
+ }
982
+
983
+ RINOK(GetTime(index, kpidCTime, _fi.CTime, _fi.CTimeDefined));
984
+ RINOK(GetTime(index, kpidATime, _fi.ATime, _fi.ATimeDefined));
985
+ RINOK(GetTime(index, kpidMTime, _fi.MTime, _fi.MTimeDefined));
986
+
987
+ bool isAnti = false;
988
+ RINOK(_arc->IsItemAnti(index, isAnti));
989
+
990
+ #ifdef SUPPORT_ALT_STREAMS
991
+ if (!_item.IsAltStream
992
+ || !pathParts.IsEmpty()
993
+ || !(_removePartsForAltStreams || _pathMode == NExtract::NPathMode::kNoPathsAlt))
994
+ #endif
995
+ Correct_FsPath(_pathMode == NExtract::NPathMode::kAbsPaths, _keepAndReplaceEmptyDirPrefixes, pathParts, _item.MainIsDir);
996
+
997
+ #ifdef SUPPORT_ALT_STREAMS
998
+
999
+ if (_item.IsAltStream)
1000
+ {
1001
+ UString s (_item.AltStreamName);
1002
+ Correct_AltStream_Name(s);
1003
+ bool needColon = true;
1004
+
1005
+ if (pathParts.IsEmpty())
1006
+ {
1007
+ pathParts.AddNew();
1008
+ if (_removePartsForAltStreams || _pathMode == NExtract::NPathMode::kNoPathsAlt)
1009
+ needColon = false;
1010
+ }
1011
+ else if (_pathMode == NExtract::NPathMode::kAbsPaths &&
1012
+ NWildcard::GetNumPrefixParts_if_DrivePath(pathParts) == pathParts.Size())
1013
+ pathParts.AddNew();
1014
+
1015
+ UString &name = pathParts.Back();
1016
+ if (needColon)
1017
+ name += (char)(_ntOptions.ReplaceColonForAltStream ? '_' : ':');
1018
+ name += s;
1019
+ }
1020
+
1021
+ #endif
1022
+
1023
+ UString processedPath (MakePathFromParts(pathParts));
1024
+
1025
+ if (!isAnti)
1026
+ {
1027
+ if (!_item.IsDir)
1028
+ {
1029
+ if (!pathParts.IsEmpty())
1030
+ pathParts.DeleteBack();
1031
+ }
1032
+
1033
+ if (!pathParts.IsEmpty())
1034
+ {
1035
+ FString fullPathNew;
1036
+ CreateComplexDirectory(pathParts, fullPathNew);
1037
+
1038
+ if (_item.IsDir)
1039
+ {
1040
+ CDirPathTime &pt = _extractedFolders.AddNew();
1041
+
1042
+ pt.CTime = _fi.CTime;
1043
+ pt.CTimeDefined = (WriteCTime && _fi.CTimeDefined);
1044
+
1045
+ pt.ATime = _fi.ATime;
1046
+ pt.ATimeDefined = (WriteATime && _fi.ATimeDefined);
1047
+
1048
+ pt.MTimeDefined = false;
1049
+
1050
+ if (WriteMTime)
1051
+ {
1052
+ if (_fi.MTimeDefined)
1053
+ {
1054
+ pt.MTime = _fi.MTime;
1055
+ pt.MTimeDefined = true;
1056
+ }
1057
+ else if (_arc->MTimeDefined)
1058
+ {
1059
+ pt.MTime = _arc->MTime;
1060
+ pt.MTimeDefined = true;
1061
+ }
1062
+ }
1063
+
1064
+ pt.Path = fullPathNew;
1065
+
1066
+ pt.SetDirTime();
1067
+ }
1068
+ }
1069
+ }
1070
+
1071
+
1072
+ FString fullProcessedPath (us2fs(processedPath));
1073
+ if (_pathMode != NExtract::NPathMode::kAbsPaths
1074
+ || !NName::IsAbsolutePath(processedPath))
1075
+ {
1076
+ fullProcessedPath = MakePath_from_2_Parts(_dirPathPrefix, fullProcessedPath);
1077
+ }
1078
+
1079
+ #ifdef SUPPORT_ALT_STREAMS
1080
+
1081
+ if (_item.IsAltStream && _item.ParentIndex != (UInt32)(Int32)-1)
1082
+ {
1083
+ int renIndex = _renamedFiles.FindInSorted(CIndexToPathPair(_item.ParentIndex));
1084
+ if (renIndex >= 0)
1085
+ {
1086
+ const CIndexToPathPair &pair = _renamedFiles[renIndex];
1087
+ fullProcessedPath = pair.Path;
1088
+ fullProcessedPath += ':';
1089
+ UString s (_item.AltStreamName);
1090
+ Correct_AltStream_Name(s);
1091
+ fullProcessedPath += us2fs(s);
1092
+ }
1093
+ }
1094
+
1095
+ #endif
1096
+
1097
+ bool isRenamed = false;
1098
+
1099
+ if (_item.IsDir)
1100
+ {
1101
+ _diskFilePath = fullProcessedPath;
1102
+ if (isAnti)
1103
+ RemoveDir(_diskFilePath);
1104
+ #ifdef SUPPORT_LINKS
1105
+ if (linkPath.IsEmpty())
1106
+ #endif
1107
+ return S_OK;
1108
+ }
1109
+ else if (!_isSplit)
1110
+ {
1111
+
1112
+ // ----- Is file (not split) -----
1113
+ NFind::CFileInfo fileInfo;
1114
+ if (fileInfo.Find(fullProcessedPath))
1115
+ {
1116
+ switch (_overwriteMode)
1117
+ {
1118
+ case NExtract::NOverwriteMode::kSkip:
1119
+ return S_OK;
1120
+ case NExtract::NOverwriteMode::kAsk:
1121
+ {
1122
+ int slashPos = fullProcessedPath.ReverseFind_PathSepar();
1123
+ FString realFullProcessedPath (fullProcessedPath.Left(slashPos + 1) + fileInfo.Name);
1124
+
1125
+ Int32 overwriteResult;
1126
+ RINOK(_extractCallback2->AskOverwrite(
1127
+ fs2us(realFullProcessedPath), &fileInfo.MTime, &fileInfo.Size, _item.Path,
1128
+ _fi.MTimeDefined ? &_fi.MTime : NULL,
1129
+ _curSizeDefined ? &_curSize : NULL,
1130
+ &overwriteResult))
1131
+
1132
+ switch (overwriteResult)
1133
+ {
1134
+ case NOverwriteAnswer::kCancel: return E_ABORT;
1135
+ case NOverwriteAnswer::kNo: return S_OK;
1136
+ case NOverwriteAnswer::kNoToAll: _overwriteMode = NExtract::NOverwriteMode::kSkip; return S_OK;
1137
+ case NOverwriteAnswer::kYes: break;
1138
+ case NOverwriteAnswer::kYesToAll: _overwriteMode = NExtract::NOverwriteMode::kOverwrite; break;
1139
+ case NOverwriteAnswer::kAutoRename: _overwriteMode = NExtract::NOverwriteMode::kRename; break;
1140
+ default:
1141
+ return E_FAIL;
1142
+ }
1143
+ }
1144
+ }
1145
+ if (_overwriteMode == NExtract::NOverwriteMode::kRename)
1146
+ {
1147
+ if (!AutoRenamePath(fullProcessedPath))
1148
+ {
1149
+ RINOK(SendMessageError(kCantAutoRename, fullProcessedPath));
1150
+ return E_FAIL;
1151
+ }
1152
+ isRenamed = true;
1153
+ }
1154
+ else if (_overwriteMode == NExtract::NOverwriteMode::kRenameExisting)
1155
+ {
1156
+ FString existPath (fullProcessedPath);
1157
+ if (!AutoRenamePath(existPath))
1158
+ {
1159
+ RINOK(SendMessageError(kCantAutoRename, fullProcessedPath));
1160
+ return E_FAIL;
1161
+ }
1162
+ // MyMoveFile can raname folders. So it's OK to use it for folders too
1163
+ if (!MyMoveFile(fullProcessedPath, existPath))
1164
+ {
1165
+ RINOK(SendMessageError2(kCantRenameFile, existPath, fullProcessedPath));
1166
+ return E_FAIL;
1167
+ }
1168
+ }
1169
+ else
1170
+ {
1171
+ if (fileInfo.IsDir())
1172
+ {
1173
+ // do we need to delete all files in folder?
1174
+ if (!RemoveDir(fullProcessedPath))
1175
+ {
1176
+ RINOK(SendMessageError_with_LastError(kCantDeleteOutputDir, fullProcessedPath));
1177
+ return S_OK;
1178
+ }
1179
+ }
1180
+ else
1181
+ {
1182
+ bool needDelete = true;
1183
+ if (needDelete)
1184
+ {
1185
+ if (NFind::DoesFileExist(fullProcessedPath))
1186
+ if (!DeleteFileAlways(fullProcessedPath))
1187
+ if (GetLastError() != ERROR_FILE_NOT_FOUND)
1188
+ {
1189
+ RINOK(SendMessageError_with_LastError(kCantDeleteOutputFile, fullProcessedPath));
1190
+ return S_OK;
1191
+ // return E_FAIL;
1192
+ }
1193
+ }
1194
+ }
1195
+ }
1196
+ }
1197
+ else // not Find(fullProcessedPath)
1198
+ {
1199
+ // we need to clear READ-ONLY of parent before creating alt stream
1200
+ #if defined(_WIN32) && !defined(UNDER_CE)
1201
+ int colonPos = NName::FindAltStreamColon(fullProcessedPath);
1202
+ if (colonPos >= 0 && fullProcessedPath[(unsigned)colonPos + 1] != 0)
1203
+ {
1204
+ FString parentFsPath (fullProcessedPath);
1205
+ parentFsPath.DeleteFrom(colonPos);
1206
+ NFind::CFileInfo parentFi;
1207
+ if (parentFi.Find(parentFsPath))
1208
+ {
1209
+ if (parentFi.IsReadOnly())
1210
+ SetFileAttrib(parentFsPath, parentFi.Attrib & ~FILE_ATTRIBUTE_READONLY);
1211
+ }
1212
+ }
1213
+ #endif
1214
+ }
1215
+ // ----- END of code for Is file (not split) -----
1216
+
1217
+ }
1218
+ _diskFilePath = fullProcessedPath;
1219
+
1220
+
1221
+ if (!isAnti)
1222
+ {
1223
+ #ifdef SUPPORT_LINKS
1224
+
1225
+ if (!linkPath.IsEmpty())
1226
+ {
1227
+ #ifndef UNDER_CE
1228
+
1229
+ UString relatPath;
1230
+ if (isRelative)
1231
+ relatPath = GetDirPrefixOf(_item.Path);
1232
+ relatPath += linkPath;
1233
+
1234
+ if (!IsSafePath(relatPath))
1235
+ {
1236
+ RINOK(SendMessageError("Dangerous link path was ignored", us2fs(relatPath)));
1237
+ }
1238
+ else
1239
+ {
1240
+ FString existPath;
1241
+ if (isHardLink /* || isCopyLink */ || !isRelative)
1242
+ {
1243
+ if (!NName::GetFullPath(_dirPathPrefix_Full, us2fs(relatPath), existPath))
1244
+ {
1245
+ RINOK(SendMessageError("Incorrect path", us2fs(relatPath)));
1246
+ }
1247
+ }
1248
+ else
1249
+ {
1250
+ existPath = us2fs(linkPath);
1251
+ }
1252
+
1253
+ if (!existPath.IsEmpty())
1254
+ {
1255
+ if (isHardLink /* || isCopyLink */)
1256
+ {
1257
+ // if (isHardLink)
1258
+ {
1259
+ if (!MyCreateHardLink(fullProcessedPath, existPath))
1260
+ {
1261
+ RINOK(SendMessageError2(kCantCreateHardLink, fullProcessedPath, existPath));
1262
+ // return S_OK;
1263
+ }
1264
+ }
1265
+ /*
1266
+ else
1267
+ {
1268
+ NFind::CFileInfo fi;
1269
+ if (!fi.Find(existPath))
1270
+ {
1271
+ RINOK(SendMessageError2("Can not find the file for copying", existPath, fullProcessedPath));
1272
+ }
1273
+ else
1274
+ {
1275
+ if (_curSizeDefined && _curSize == fi.Size)
1276
+ _CopyFile_Path = existPath;
1277
+ else
1278
+ {
1279
+ RINOK(SendMessageError2("File size collision for file copying", existPath, fullProcessedPath));
1280
+ }
1281
+
1282
+ // RINOK(MyCopyFile(existPath, fullProcessedPath));
1283
+ }
1284
+ }
1285
+ */
1286
+ }
1287
+ else if (_ntOptions.SymLinks.Val)
1288
+ {
1289
+ // bool isSymLink = true; // = false for junction
1290
+ if (_item.IsDir && !isRelative)
1291
+ {
1292
+ // if it's before Vista we use Junction Point
1293
+ // isJunction = true;
1294
+ // convertToAbs = true;
1295
+ }
1296
+
1297
+ CByteBuffer data;
1298
+ if (FillLinkData(data, fs2us(existPath), !isJunction))
1299
+ {
1300
+ CReparseAttr attr;
1301
+ DWORD errorCode = 0;
1302
+ if (!attr.Parse(data, data.Size(), errorCode))
1303
+ {
1304
+ RINOK(SendMessageError("Internal error for symbolic link file", us2fs(_item.Path)));
1305
+ // return E_FAIL;
1306
+ }
1307
+ else
1308
+ if (!NFile::NIO::SetReparseData(fullProcessedPath, _item.IsDir, data, (DWORD)data.Size()))
1309
+ {
1310
+ RINOK(SendMessageError_with_LastError(kCantCreateSymLink, fullProcessedPath));
1311
+ }
1312
+ }
1313
+ }
1314
+ }
1315
+ }
1316
+
1317
+ #endif
1318
+ }
1319
+
1320
+ if (linkPath.IsEmpty() /* || !_CopyFile_Path.IsEmpty() */)
1321
+ #endif // SUPPORT_LINKS
1322
+ {
1323
+ bool needWriteFile = true;
1324
+
1325
+ #ifdef SUPPORT_LINKS
1326
+ if (!_hardLinks.IDs.IsEmpty() && !_item.IsAltStream)
1327
+ {
1328
+ CHardLinkNode h;
1329
+ bool defined;
1330
+ RINOK(Archive_Get_HardLinkNode(archive, index, h, defined));
1331
+ if (defined)
1332
+ {
1333
+ {
1334
+ int linkIndex = _hardLinks.IDs.FindInSorted2(h);
1335
+ if (linkIndex >= 0)
1336
+ {
1337
+ FString &hl = _hardLinks.Links[linkIndex];
1338
+ if (hl.IsEmpty())
1339
+ hl = fullProcessedPath;
1340
+ else
1341
+ {
1342
+ if (!MyCreateHardLink(fullProcessedPath, hl))
1343
+ {
1344
+ RINOK(SendMessageError2(kCantCreateHardLink, fullProcessedPath, hl));
1345
+ return S_OK;
1346
+ }
1347
+ needWriteFile = false;
1348
+ }
1349
+ }
1350
+ }
1351
+ }
1352
+ }
1353
+ #endif
1354
+
1355
+ if (needWriteFile)
1356
+ {
1357
+ _outFileStreamSpec = new COutFileStream;
1358
+ CMyComPtr<ISequentialOutStream> outStreamLoc2(_outFileStreamSpec);
1359
+ if (!_outFileStreamSpec->Open(fullProcessedPath, _isSplit ? OPEN_ALWAYS: CREATE_ALWAYS))
1360
+ {
1361
+ // if (::GetLastError() != ERROR_FILE_EXISTS || !isSplit)
1362
+ {
1363
+ RINOK(SendMessageError_with_LastError(kCantOpenOutFile, fullProcessedPath));
1364
+ return S_OK;
1365
+ }
1366
+ }
1367
+
1368
+ if (_ntOptions.PreAllocateOutFile && !_isSplit && _curSizeDefined && _curSize > (1 << 12))
1369
+ {
1370
+ // UInt64 ticks = GetCpuTicks();
1371
+ bool res = _outFileStreamSpec->File.SetLength(_curSize);
1372
+ _fileLengthWasSet = res;
1373
+
1374
+ // ticks = GetCpuTicks() - ticks;
1375
+ // printf("\nticks = %10d\n", (unsigned)ticks);
1376
+ if (!res)
1377
+ {
1378
+ RINOK(SendMessageError_with_LastError(kCantSetFileLen, fullProcessedPath));
1379
+ }
1380
+
1381
+ /*
1382
+ _outFileStreamSpec->File.Close();
1383
+ ticks = GetCpuTicks() - ticks;
1384
+ printf("\nticks = %10d\n", (unsigned)ticks);
1385
+ return S_FALSE;
1386
+ */
1387
+
1388
+ /*
1389
+ File.SetLength() on FAT (xp64): is fast, but then File.Close() can be slow,
1390
+ if we don't write any data.
1391
+ File.SetLength() for remote share file (exFAT) can be slow in some cases,
1392
+ and the Windows can return "network error" after 1 minute,
1393
+ while remote file still can grow.
1394
+ We need some way to detect such bad cases and disable PreAllocateOutFile mode.
1395
+ */
1396
+
1397
+ res = _outFileStreamSpec->File.SeekToBegin();
1398
+ if (!res)
1399
+ {
1400
+ RINOK(SendMessageError_with_LastError("Can not seek to begin of file", fullProcessedPath));
1401
+ }
1402
+ }
1403
+
1404
+ #ifdef SUPPORT_ALT_STREAMS
1405
+ if (isRenamed && !_item.IsAltStream)
1406
+ {
1407
+ CIndexToPathPair pair(index, fullProcessedPath);
1408
+ unsigned oldSize = _renamedFiles.Size();
1409
+ unsigned insertIndex = _renamedFiles.AddToUniqueSorted(pair);
1410
+ if (oldSize == _renamedFiles.Size())
1411
+ _renamedFiles[insertIndex].Path = fullProcessedPath;
1412
+ }
1413
+ #endif
1414
+
1415
+ if (_isSplit)
1416
+ {
1417
+ RINOK(_outFileStreamSpec->Seek(_position, STREAM_SEEK_SET, NULL));
1418
+ }
1419
+
1420
+ _outFileStream = outStreamLoc2;
1421
+ }
1422
+ }
1423
+ }
1424
+
1425
+ outStreamLoc = _outFileStream;
1426
+ }
1427
+ }
1428
+
1429
+ #ifndef _SFX
1430
+
1431
+ if (_hashStream)
1432
+ {
1433
+ if (askExtractMode == NArchive::NExtract::NAskMode::kExtract ||
1434
+ askExtractMode == NArchive::NExtract::NAskMode::kTest)
1435
+ {
1436
+ _hashStreamSpec->SetStream(outStreamLoc);
1437
+ outStreamLoc = _hashStream;
1438
+ _hashStreamSpec->Init(true);
1439
+ _hashStreamWasUsed = true;
1440
+ }
1441
+ }
1442
+
1443
+ #endif
1444
+
1445
+
1446
+ if (outStreamLoc)
1447
+ {
1448
+ /*
1449
+ #ifdef SUPPORT_LINKS
1450
+
1451
+ if (!_CopyFile_Path.IsEmpty())
1452
+ {
1453
+ RINOK(PrepareOperation(askExtractMode));
1454
+ RINOK(MyCopyFile(outStreamLoc));
1455
+ return SetOperationResult(NArchive::NExtract::NOperationResult::kOK);
1456
+ }
1457
+
1458
+ if (isCopyLink && _testMode)
1459
+ return S_OK;
1460
+
1461
+ #endif
1462
+ */
1463
+
1464
+ *outStream = outStreamLoc.Detach();
1465
+ }
1466
+
1467
+ return S_OK;
1468
+
1469
+ COM_TRY_END
1470
+ }
1471
+
1472
+
1473
+ STDMETHODIMP CArchiveExtractCallback::PrepareOperation(Int32 askExtractMode)
1474
+ {
1475
+ COM_TRY_BEGIN
1476
+
1477
+ #ifndef _SFX
1478
+ if (ExtractToStreamCallback)
1479
+ return ExtractToStreamCallback->PrepareOperation7(askExtractMode);
1480
+ #endif
1481
+
1482
+ _extractMode = false;
1483
+
1484
+ switch (askExtractMode)
1485
+ {
1486
+ case NArchive::NExtract::NAskMode::kExtract:
1487
+ if (_testMode)
1488
+ askExtractMode = NArchive::NExtract::NAskMode::kTest;
1489
+ else
1490
+ _extractMode = true;
1491
+ break;
1492
+ };
1493
+
1494
+ return _extractCallback2->PrepareOperation(_item.Path, BoolToInt(_item.IsDir),
1495
+ askExtractMode, _isSplit ? &_position: 0);
1496
+
1497
+ COM_TRY_END
1498
+ }
1499
+
1500
+
1501
+ HRESULT CArchiveExtractCallback::CloseFile()
1502
+ {
1503
+ if (!_outFileStream)
1504
+ return S_OK;
1505
+
1506
+ HRESULT hres = S_OK;
1507
+ _outFileStreamSpec->SetTime(
1508
+ (WriteCTime && _fi.CTimeDefined) ? &_fi.CTime : NULL,
1509
+ (WriteATime && _fi.ATimeDefined) ? &_fi.ATime : NULL,
1510
+ (WriteMTime && _fi.MTimeDefined) ? &_fi.MTime : (_arc->MTimeDefined ? &_arc->MTime : NULL));
1511
+
1512
+ const UInt64 processedSize = _outFileStreamSpec->ProcessedSize;
1513
+ if (_fileLengthWasSet && _curSize > processedSize)
1514
+ {
1515
+ bool res = _outFileStreamSpec->File.SetLength(processedSize);
1516
+ _fileLengthWasSet = res;
1517
+ if (!res)
1518
+ hres = SendMessageError_with_LastError(kCantSetFileLen, us2fs(_item.Path));
1519
+ }
1520
+ _curSize = processedSize;
1521
+ _curSizeDefined = true;
1522
+ RINOK(_outFileStreamSpec->Close());
1523
+ _outFileStream.Release();
1524
+ return hres;
1525
+ }
1526
+
1527
+
1528
+ STDMETHODIMP CArchiveExtractCallback::SetOperationResult(Int32 opRes)
1529
+ {
1530
+ COM_TRY_BEGIN
1531
+
1532
+ #ifndef _SFX
1533
+ if (ExtractToStreamCallback)
1534
+ return ExtractToStreamCallback->SetOperationResult7(opRes, BoolToInt(_encrypted));
1535
+ #endif
1536
+
1537
+ #ifndef _SFX
1538
+
1539
+ if (_hashStreamWasUsed)
1540
+ {
1541
+ _hashStreamSpec->_hash->Final(_item.IsDir,
1542
+ #ifdef SUPPORT_ALT_STREAMS
1543
+ _item.IsAltStream
1544
+ #else
1545
+ false
1546
+ #endif
1547
+ , _item.Path);
1548
+ _curSize = _hashStreamSpec->GetSize();
1549
+ _curSizeDefined = true;
1550
+ _hashStreamSpec->ReleaseStream();
1551
+ _hashStreamWasUsed = false;
1552
+ }
1553
+
1554
+ #endif
1555
+
1556
+ RINOK(CloseFile());
1557
+
1558
+ #ifdef _USE_SECURITY_CODE
1559
+ if (!_stdOutMode && _extractMode && _ntOptions.NtSecurity.Val && _arc->GetRawProps)
1560
+ {
1561
+ const void *data;
1562
+ UInt32 dataSize;
1563
+ UInt32 propType;
1564
+ _arc->GetRawProps->GetRawProp(_index, kpidNtSecure, &data, &dataSize, &propType);
1565
+ if (dataSize != 0)
1566
+ {
1567
+ if (propType != NPropDataType::kRaw)
1568
+ return E_FAIL;
1569
+ if (CheckNtSecure((const Byte *)data, dataSize))
1570
+ {
1571
+ SECURITY_INFORMATION securInfo = DACL_SECURITY_INFORMATION | GROUP_SECURITY_INFORMATION | OWNER_SECURITY_INFORMATION;
1572
+ if (_saclEnabled)
1573
+ securInfo |= SACL_SECURITY_INFORMATION;
1574
+ ::SetFileSecurityW(fs2us(_diskFilePath), securInfo, (PSECURITY_DESCRIPTOR)(void *)data);
1575
+ }
1576
+ }
1577
+ }
1578
+ #endif
1579
+
1580
+ if (!_curSizeDefined)
1581
+ GetUnpackSize();
1582
+
1583
+ if (_curSizeDefined)
1584
+ {
1585
+ #ifdef SUPPORT_ALT_STREAMS
1586
+ if (_item.IsAltStream)
1587
+ AltStreams_UnpackSize += _curSize;
1588
+ else
1589
+ #endif
1590
+ UnpackSize += _curSize;
1591
+ }
1592
+
1593
+ if (_item.IsDir)
1594
+ NumFolders++;
1595
+ #ifdef SUPPORT_ALT_STREAMS
1596
+ else if (_item.IsAltStream)
1597
+ NumAltStreams++;
1598
+ #endif
1599
+ else
1600
+ NumFiles++;
1601
+
1602
+ if (!_stdOutMode && _extractMode && _fi.AttribDefined)
1603
+ SetFileAttrib_PosixHighDetect(_diskFilePath, _fi.Attrib);
1604
+
1605
+ RINOK(_extractCallback2->SetOperationResult(opRes, BoolToInt(_encrypted)));
1606
+
1607
+ return S_OK;
1608
+
1609
+ COM_TRY_END
1610
+ }
1611
+
1612
+ STDMETHODIMP CArchiveExtractCallback::ReportExtractResult(UInt32 indexType, UInt32 index, Int32 opRes)
1613
+ {
1614
+ if (_folderArchiveExtractCallback2)
1615
+ {
1616
+ bool isEncrypted = false;
1617
+ UString s;
1618
+
1619
+ if (indexType == NArchive::NEventIndexType::kInArcIndex && index != (UInt32)(Int32)-1)
1620
+ {
1621
+ CReadArcItem item;
1622
+ RINOK(_arc->GetItem(index, item));
1623
+ s = item.Path;
1624
+ RINOK(Archive_GetItemBoolProp(_arc->Archive, index, kpidEncrypted, isEncrypted));
1625
+ }
1626
+ else
1627
+ {
1628
+ s = '#';
1629
+ s.Add_UInt32(index);
1630
+ // if (indexType == NArchive::NEventIndexType::kBlockIndex) {}
1631
+ }
1632
+
1633
+ return _folderArchiveExtractCallback2->ReportExtractResult(opRes, isEncrypted, s);
1634
+ }
1635
+
1636
+ return S_OK;
1637
+ }
1638
+
1639
+
1640
+ STDMETHODIMP CArchiveExtractCallback::CryptoGetTextPassword(BSTR *password)
1641
+ {
1642
+ COM_TRY_BEGIN
1643
+ if (!_cryptoGetTextPassword)
1644
+ {
1645
+ RINOK(_extractCallback2.QueryInterface(IID_ICryptoGetTextPassword,
1646
+ &_cryptoGetTextPassword));
1647
+ }
1648
+ return _cryptoGetTextPassword->CryptoGetTextPassword(password);
1649
+ COM_TRY_END
1650
+ }
1651
+
1652
+
1653
+ void CDirPathSortPair::SetNumSlashes(const FChar *s)
1654
+ {
1655
+ for (unsigned numSlashes = 0;;)
1656
+ {
1657
+ FChar c = *s++;
1658
+ if (c == 0)
1659
+ {
1660
+ Len = numSlashes;
1661
+ return;
1662
+ }
1663
+ if (IS_PATH_SEPAR(c))
1664
+ numSlashes++;
1665
+ }
1666
+ }
1667
+
1668
+
1669
+ bool CDirPathTime::SetDirTime()
1670
+ {
1671
+ return NDir::SetDirTime(Path,
1672
+ CTimeDefined ? &CTime : NULL,
1673
+ ATimeDefined ? &ATime : NULL,
1674
+ MTimeDefined ? &MTime : NULL);
1675
+ }
1676
+
1677
+
1678
+ HRESULT CArchiveExtractCallback::SetDirsTimes()
1679
+ {
1680
+ if (!_arc)
1681
+ return S_OK;
1682
+
1683
+ CRecordVector<CDirPathSortPair> pairs;
1684
+ pairs.ClearAndSetSize(_extractedFolders.Size());
1685
+ unsigned i;
1686
+
1687
+ for (i = 0; i < _extractedFolders.Size(); i++)
1688
+ {
1689
+ CDirPathSortPair &pair = pairs[i];
1690
+ pair.Index = i;
1691
+ pair.SetNumSlashes(_extractedFolders[i].Path);
1692
+ }
1693
+
1694
+ pairs.Sort2();
1695
+
1696
+ for (i = 0; i < pairs.Size(); i++)
1697
+ {
1698
+ _extractedFolders[pairs[i].Index].SetDirTime();
1699
+ // if (!) return GetLastError();
1700
+ }
1701
+
1702
+ ClearExtractedDirsInfo();
1703
+ return S_OK;
1704
+ }
1705
+
1706
+
1707
+ HRESULT CArchiveExtractCallback::CloseArc()
1708
+ {
1709
+ HRESULT res = CloseFile();
1710
+ HRESULT res2 = SetDirsTimes();
1711
+ if (res == S_OK)
1712
+ res = res2;
1713
+ _arc = NULL;
1714
+ return res;
1715
+ }