react-native-update 10.34.3 → 10.34.5
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.
- package/harmony/pushy/src/main/cpp/HDiffPatch/CHANGELOG.md +34 -172
- package/harmony/pushy/src/main/cpp/HDiffPatch/LICENSE +4 -4
- package/harmony/pushy/src/main/cpp/HDiffPatch/Makefile +63 -379
- package/harmony/pushy/src/main/cpp/HDiffPatch/README.md +170 -415
- package/harmony/pushy/src/main/cpp/HDiffPatch/_atosize.h +10 -54
- package/harmony/pushy/src/main/cpp/HDiffPatch/_clock_for_demo.h +1 -13
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/android_ndk_jni_mk/Android.mk +18 -171
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/android_ndk_jni_mk/Application.mk +4 -5
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/android_ndk_jni_mk/hpatch.c +7 -38
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/android_ndk_jni_mk/hpatch.h +4 -15
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/android_ndk_jni_mk/hpatch_jni.c +12 -22
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/android_ndk_jni_mk/java/com/github/sisong/HPatch.java +4 -22
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/codeblocks/HDiffPatch.workspace +8 -0
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/codeblocks/HDiffZ.cbp +219 -0
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/codeblocks/HPatchZ.cbp +156 -0
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/codeblocks/unitTest.cbp +65 -0
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/vc/HDiffPatch.sln +105 -155
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/vc/HDiffZ.vcxproj +236 -363
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/vc/HDiffZ.vcxproj.user +3 -0
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/vc/HPatchZ.vcxproj +317 -347
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/vc/HPatchZ.vcxproj.user +3 -0
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/vc/unitTest.vcxproj +181 -295
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/vc/unitTest.vcxproj.user +3 -0
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/xcode/HDiffPatch.xcworkspace/contents.xcworkspacedata +0 -9
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/xcode/bestParams.xcodeproj/project.pbxproj +14 -53
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/xcode/hdiffz.xcodeproj/project.pbxproj +32 -162
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/xcode/hpatchz.xcodeproj/project.pbxproj +22 -89
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/xcode/lzma.xcodeproj/project.pbxproj +13 -237
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/xcode/testHashClash.xcodeproj/project.pbxproj +2 -2
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/xcode/unitTest.xcodeproj/project.pbxproj +14 -194
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/xcode/zstd.xcodeproj/project.pbxproj +10 -30
- package/harmony/pushy/src/main/cpp/HDiffPatch/checksum_plugin_demo.h +3 -458
- package/harmony/pushy/src/main/cpp/HDiffPatch/compress_parallel.cpp +71 -106
- package/harmony/pushy/src/main/cpp/HDiffPatch/compress_parallel.h +3 -3
- package/harmony/pushy/src/main/cpp/HDiffPatch/compress_plugin_demo.h +110 -484
- package/harmony/pushy/src/main/cpp/HDiffPatch/decompress_plugin_demo.h +193 -835
- package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_diff/dir_diff.cpp +50 -99
- package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_diff/dir_diff.h +4 -18
- package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_diff/dir_diff_tools.cpp +8 -147
- package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_diff/dir_diff_tools.h +6 -18
- package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_diff/dir_manifest.cpp +25 -7
- package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_diff/file_for_dirDiff.h +113 -5
- package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_patch/dir_patch.c +97 -163
- package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_patch/dir_patch.h +39 -49
- package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_patch/dir_patch_tools.c +15 -15
- package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_patch/dir_patch_tools.h +2 -18
- package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_patch/dir_patch_types.h +4 -8
- package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_patch/new_dir_output.c +57 -72
- package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_patch/new_dir_output.h +13 -18
- package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_patch/new_stream.c +1 -1
- package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_patch/new_stream.h +2 -2
- package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_patch/ref_stream.c +2 -2
- package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_patch/ref_stream.h +2 -2
- package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_patch/res_handle_limit.c +2 -2
- package/harmony/pushy/src/main/cpp/HDiffPatch/dirDiffPatch/dir_patch/res_handle_limit.h +1 -1
- package/harmony/pushy/src/main/cpp/HDiffPatch/file_for_patch.c +100 -311
- package/harmony/pushy/src/main/cpp/HDiffPatch/file_for_patch.h +72 -53
- package/harmony/pushy/src/main/cpp/HDiffPatch/hdiffz.cpp +487 -888
- package/harmony/pushy/src/main/cpp/HDiffPatch/hpatch_dir_listener.h +28 -45
- package/harmony/pushy/src/main/cpp/HDiffPatch/hpatchz.c +247 -812
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/diff.cpp +544 -1265
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/diff.h +38 -123
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/diff_types.h +0 -115
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/bytes_rle.cpp +102 -272
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/bytes_rle.h +12 -22
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/compress_detect.cpp +4 -18
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/compress_detect.h +5 -7
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/libdivsufsort/{divsufsort.cpp → divsufsort.c} +8 -5
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/libdivsufsort/divsufsort.c.inc.h +164 -91
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/libdivsufsort/divsufsort.h +102 -5
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/libdivsufsort/divsufsort64.c +13 -0
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/libdivsufsort/divsufsort64.h +97 -1
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/libdivsufsort/divsufsort_private.h +44 -23
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/libdivsufsort/sssort.c.inc.h +89 -54
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/libdivsufsort/trsort.c.inc.h +55 -48
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/libdivsufsort/utils.c.inc.h +381 -0
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/limit_mem_diff/adler_roll.c +47 -110
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/limit_mem_diff/adler_roll.h +4 -11
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/limit_mem_diff/bloom_filter.h +26 -53
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/limit_mem_diff/covers.h +25 -103
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/limit_mem_diff/digest_matcher.cpp +130 -271
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/limit_mem_diff/digest_matcher.h +7 -17
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/limit_mem_diff/stream_serialize.cpp +37 -628
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/limit_mem_diff/stream_serialize.h +43 -203
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/mem_buf.h +10 -14
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/pack_uint.h +7 -22
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/suffix_string.cpp +46 -132
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/suffix_string.h +9 -48
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HPatch/patch.c +299 -650
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HPatch/patch.h +82 -120
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HPatch/patch_private.h +7 -87
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HPatch/patch_types.h +9 -119
- package/harmony/pushy/src/main/cpp/HDiffPatch/libParallel/parallel_channel.cpp +6 -2
- package/harmony/pushy/src/main/cpp/HDiffPatch/libParallel/parallel_channel.h +15 -192
- package/harmony/pushy/src/main/cpp/HDiffPatch/libParallel/parallel_import.cpp +367 -0
- package/harmony/pushy/src/main/cpp/HDiffPatch/libParallel/parallel_import.h +56 -31
- package/harmony/pushy/src/main/cpp/HDiffPatch/test/_private_searchBestParams.cpp +1 -1
- package/harmony/pushy/src/main/cpp/HDiffPatch/test/hpatchz_test.cpp +1 -0
- package/harmony/pushy/src/main/cpp/HDiffPatch/test/testHashClash.cpp +31 -225
- package/harmony/pushy/src/main/cpp/HDiffPatch/test/unit_test.cpp +94 -566
- package/harmony/pushy/src/main/cpp/lzma/Asm/x86/7zAsm.asm +28 -222
- package/harmony/pushy/src/main/cpp/lzma/Asm/x86/7zCrcOpt.asm +117 -228
- package/harmony/pushy/src/main/cpp/lzma/Asm/x86/AesOpt.asm +173 -678
- package/harmony/pushy/src/main/cpp/lzma/Asm/x86/LzmaDecOpt.asm +22 -103
- package/harmony/pushy/src/main/cpp/lzma/Asm/x86/XzCrc64Opt.asm +167 -485
- package/harmony/pushy/src/main/cpp/lzma/C/7z.h +6 -8
- package/harmony/pushy/src/main/cpp/lzma/C/7zAlloc.c +30 -39
- package/harmony/pushy/src/main/cpp/lzma/C/7zAlloc.h +3 -3
- package/harmony/pushy/src/main/cpp/lzma/C/7zArcIn.c +217 -232
- package/harmony/pushy/src/main/cpp/lzma/C/7zBuf.h +3 -3
- package/harmony/pushy/src/main/cpp/lzma/C/7zCrc.c +68 -404
- package/harmony/pushy/src/main/cpp/lzma/C/7zCrc.h +6 -9
- package/harmony/pushy/src/main/cpp/lzma/C/7zCrcOpt.c +79 -163
- package/harmony/pushy/src/main/cpp/lzma/C/7zDec.c +78 -160
- package/harmony/pushy/src/main/cpp/lzma/C/7zFile.c +58 -215
- package/harmony/pushy/src/main/cpp/lzma/C/7zFile.h +6 -15
- package/harmony/pushy/src/main/cpp/lzma/C/7zStream.c +23 -46
- package/harmony/pushy/src/main/cpp/lzma/C/7zTypes.h +89 -311
- package/harmony/pushy/src/main/cpp/lzma/C/7zVersion.h +5 -5
- package/harmony/pushy/src/main/cpp/lzma/C/Aes.c +68 -191
- package/harmony/pushy/src/main/cpp/lzma/C/Aes.h +8 -30
- package/harmony/pushy/src/main/cpp/lzma/C/AesOpt.c +108 -926
- package/harmony/pushy/src/main/cpp/lzma/C/Alloc.c +96 -246
- package/harmony/pushy/src/main/cpp/lzma/C/Alloc.h +8 -33
- package/harmony/pushy/src/main/cpp/lzma/C/Bcj2.c +144 -177
- package/harmony/pushy/src/main/cpp/lzma/C/Bcj2.h +42 -228
- package/harmony/pushy/src/main/cpp/lzma/C/Bcj2Enc.c +182 -377
- package/harmony/pushy/src/main/cpp/lzma/C/Bra.c +143 -622
- package/harmony/pushy/src/main/cpp/lzma/C/Bra.h +40 -81
- package/harmony/pushy/src/main/cpp/lzma/C/Bra86.c +58 -163
- package/harmony/pushy/src/main/cpp/lzma/C/BraIA64.c +48 -9
- package/harmony/pushy/src/main/cpp/lzma/C/Compiler.h +15 -228
- package/harmony/pushy/src/main/cpp/lzma/C/CpuArch.c +133 -885
- package/harmony/pushy/src/main/cpp/lzma/C/CpuArch.h +78 -428
- package/harmony/pushy/src/main/cpp/lzma/C/Delta.c +31 -136
- package/harmony/pushy/src/main/cpp/lzma/C/Delta.h +3 -3
- package/harmony/pushy/src/main/cpp/lzma/C/DllSecur.c +62 -53
- package/harmony/pushy/src/main/cpp/lzma/C/DllSecur.h +5 -5
- package/harmony/pushy/src/main/cpp/lzma/C/LzFind.c +495 -1114
- package/harmony/pushy/src/main/cpp/lzma/C/LzFind.h +25 -64
- package/harmony/pushy/src/main/cpp/lzma/C/LzFindMt.c +400 -969
- package/harmony/pushy/src/main/cpp/lzma/C/LzFindMt.h +24 -37
- package/harmony/pushy/src/main/cpp/lzma/C/LzHash.h +48 -25
- package/harmony/pushy/src/main/cpp/lzma/C/Lzma2Dec.c +7 -12
- package/harmony/pushy/src/main/cpp/lzma/C/Lzma2Dec.h +7 -8
- package/harmony/pushy/src/main/cpp/lzma/C/Lzma2DecMt.c +83 -96
- package/harmony/pushy/src/main/cpp/lzma/C/Lzma2DecMt.h +9 -11
- package/harmony/pushy/src/main/cpp/lzma/C/Lzma2Enc.c +92 -96
- package/harmony/pushy/src/main/cpp/lzma/C/Lzma2Enc.h +9 -12
- package/harmony/pushy/src/main/cpp/lzma/C/Lzma86.h +3 -3
- package/harmony/pushy/src/main/cpp/lzma/C/Lzma86Dec.c +4 -3
- package/harmony/pushy/src/main/cpp/lzma/C/Lzma86Enc.c +6 -3
- package/harmony/pushy/src/main/cpp/lzma/C/LzmaDec.c +206 -384
- package/harmony/pushy/src/main/cpp/lzma/C/LzmaDec.h +8 -11
- package/harmony/pushy/src/main/cpp/lzma/C/LzmaEnc.c +315 -489
- package/harmony/pushy/src/main/cpp/lzma/C/LzmaEnc.h +9 -18
- package/harmony/pushy/src/main/cpp/lzma/C/LzmaLib.c +3 -5
- package/harmony/pushy/src/main/cpp/lzma/C/LzmaLib.h +14 -21
- package/harmony/pushy/src/main/cpp/lzma/C/MtCoder.c +87 -90
- package/harmony/pushy/src/main/cpp/lzma/C/MtCoder.h +25 -28
- package/harmony/pushy/src/main/cpp/lzma/C/MtDec.c +88 -74
- package/harmony/pushy/src/main/cpp/lzma/C/MtDec.h +20 -21
- package/harmony/pushy/src/main/cpp/lzma/C/Ppmd.h +34 -118
- package/harmony/pushy/src/main/cpp/lzma/C/Ppmd7.c +293 -712
- package/harmony/pushy/src/main/cpp/lzma/C/Ppmd7.h +70 -109
- package/harmony/pushy/src/main/cpp/lzma/C/Ppmd7Dec.c +116 -237
- package/harmony/pushy/src/main/cpp/lzma/C/Ppmd7Enc.c +95 -245
- package/harmony/pushy/src/main/cpp/lzma/C/Precomp.h +5 -122
- package/harmony/pushy/src/main/cpp/lzma/C/RotateDefs.h +4 -24
- package/harmony/pushy/src/main/cpp/lzma/C/Sha256.c +143 -387
- package/harmony/pushy/src/main/cpp/lzma/C/Sha256.h +7 -67
- package/harmony/pushy/src/main/cpp/lzma/C/Sort.c +114 -241
- package/harmony/pushy/src/main/cpp/lzma/C/Sort.h +7 -4
- package/harmony/pushy/src/main/cpp/lzma/C/Threads.c +14 -731
- package/harmony/pushy/src/main/cpp/lzma/C/Threads.h +14 -204
- package/harmony/pushy/src/main/cpp/lzma/C/ThreadsP.c +396 -0
- package/harmony/pushy/src/main/cpp/lzma/C/ThreadsP.h +31 -0
- package/harmony/pushy/src/main/cpp/lzma/C/Util/7z/7z.dsp +2 -10
- package/harmony/pushy/src/main/cpp/lzma/C/Util/7z/7zMain.c +79 -282
- package/harmony/pushy/src/main/cpp/lzma/C/Util/7z/Precomp.h +7 -10
- package/harmony/pushy/src/main/cpp/lzma/C/Util/7z/makefile +3 -7
- package/harmony/pushy/src/main/cpp/lzma/C/Util/7z/makefile.gcc +75 -32
- package/harmony/pushy/src/main/cpp/lzma/C/Util/Lzma/LzmaUtil.c +56 -111
- package/harmony/pushy/src/main/cpp/lzma/C/Util/Lzma/LzmaUtil.dsp +0 -24
- package/harmony/pushy/src/main/cpp/lzma/C/Util/Lzma/makefile +0 -2
- package/harmony/pushy/src/main/cpp/lzma/C/Util/Lzma/makefile.gcc +41 -18
- package/harmony/pushy/src/main/cpp/lzma/C/Util/LzmaLib/LzmaLib.dsp +2 -30
- package/harmony/pushy/src/main/cpp/lzma/C/Util/LzmaLib/LzmaLibExports.c +6 -7
- package/harmony/pushy/src/main/cpp/lzma/C/Util/LzmaLib/makefile +2 -27
- package/harmony/pushy/src/main/cpp/lzma/C/Util/SfxSetup/Precomp.h +7 -10
- package/harmony/pushy/src/main/cpp/lzma/C/Util/SfxSetup/SfxSetup.c +22 -39
- package/harmony/pushy/src/main/cpp/lzma/C/Util/SfxSetup/makefile +2 -9
- package/harmony/pushy/src/main/cpp/lzma/C/Util/SfxSetup/makefile_con +1 -3
- package/harmony/pushy/src/main/cpp/lzma/C/Xz.c +3 -5
- package/harmony/pushy/src/main/cpp/lzma/C/Xz.h +47 -129
- package/harmony/pushy/src/main/cpp/lzma/C/XzCrc64.c +43 -97
- package/harmony/pushy/src/main/cpp/lzma/C/XzCrc64.h +8 -8
- package/harmony/pushy/src/main/cpp/lzma/C/XzCrc64Opt.c +36 -228
- package/harmony/pushy/src/main/cpp/lzma/C/XzDec.c +295 -405
- package/harmony/pushy/src/main/cpp/lzma/C/XzEnc.c +139 -194
- package/harmony/pushy/src/main/cpp/lzma/C/XzEnc.h +11 -15
- package/harmony/pushy/src/main/cpp/lzma/C/XzIn.c +134 -200
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/7zip.mak +6 -6
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Aes.mak +1 -4
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zCompressionMode.h +13 -29
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zDecode.cpp +90 -120
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zDecode.h +6 -9
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zEncode.cpp +140 -183
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zEncode.h +20 -23
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zExtract.cpp +57 -78
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zFolderInStream.cpp +44 -169
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zFolderInStream.h +17 -57
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zHandler.cpp +109 -141
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zHandler.h +57 -54
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zHandlerOut.cpp +116 -336
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zHeader.cpp +1 -1
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zHeader.h +9 -17
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zIn.cpp +136 -234
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zIn.h +26 -35
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zItem.h +5 -10
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zOut.cpp +155 -280
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zOut.h +40 -51
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zProperties.cpp +59 -67
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zProperties.h +2 -6
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zRegister.cpp +2 -8
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zSpecStream.cpp +3 -12
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zSpecStream.h +9 -23
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zUpdate.cpp +387 -975
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/7zUpdate.h +16 -44
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/7z/StdAfx.h +2 -5
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Archive.def +0 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Archive2.def +0 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/ArchiveExports.cpp +8 -15
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/CoderMixer2.cpp +87 -106
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/CoderMixer2.h +57 -57
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/DummyOutStream.cpp +1 -1
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/DummyOutStream.h +8 -6
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/HandlerOut.cpp +43 -126
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/HandlerOut.h +18 -77
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/InStreamWithCRC.cpp +9 -20
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/InStreamWithCRC.h +23 -20
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/ItemNameUtils.cpp +9 -61
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/ItemNameUtils.h +3 -8
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/MultiStream.cpp +27 -29
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/MultiStream.h +26 -23
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/OutStreamWithCRC.cpp +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/OutStreamWithCRC.h +8 -6
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/ParseProperties.h +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/Common/StdAfx.h +2 -5
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/DllExports2.cpp +10 -63
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/IArchive.h +173 -319
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/LzmaHandler.cpp +113 -92
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/SplitHandler.cpp +53 -47
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/StdAfx.h +2 -5
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/XzHandler.cpp +208 -352
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Archive/XzHandler.h +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Asm.mak +3 -6
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/Alone7z/Alone.dsp +47 -227
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/Alone7z/StdAfx.h +2 -5
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/Alone7z/makefile +5 -19
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/Format7zExtractR/StdAfx.h +2 -5
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/Format7zExtractR/makefile +2 -4
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/Format7zR/StdAfx.h +2 -5
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/Format7zR/makefile +1 -6
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/LzmaCon/LzmaAlone.cpp +53 -71
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/LzmaCon/LzmaCon.dsp +22 -85
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/LzmaCon/StdAfx.h +2 -5
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/LzmaCon/makefile +4 -13
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/LzmaCon/makefile.gcc +166 -102
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXCon/SFXCon.dsp +4 -109
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXCon/SfxCon.cpp +30 -69
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXCon/StdAfx.h +2 -5
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXCon/makefile +7 -10
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXCon/resource.rc +1 -5
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXSetup/ExtractCallbackSfx.cpp +16 -16
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXSetup/ExtractCallbackSfx.h +12 -9
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXSetup/ExtractEngine.cpp +9 -7
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXSetup/ExtractEngine.h +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXSetup/SFXSetup.dsp +5 -74
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXSetup/SfxSetup.cpp +51 -58
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXSetup/StdAfx.h +10 -3
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXSetup/makefile +5 -9
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXWin/SFXWin.dsp +6 -92
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXWin/SfxWin.cpp +19 -46
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXWin/StdAfx.h +11 -3
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXWin/makefile +5 -11
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXWin/resource.rc +0 -5
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/CWrappers.cpp +28 -136
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/CWrappers.h +5 -67
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/CreateCoder.cpp +62 -74
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/CreateCoder.h +24 -32
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/FilePathAutoRename.cpp +7 -7
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/FilePathAutoRename.h +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/FileStreams.cpp +100 -548
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/FileStreams.h +86 -125
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/FilterCoder.cpp +116 -258
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/FilterCoder.h +76 -72
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/InBuffer.cpp +15 -34
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/InBuffer.h +9 -38
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/InOutTempBuffer.cpp +82 -192
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/InOutTempBuffer.h +28 -25
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/LimitedStreams.cpp +52 -78
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/LimitedStreams.h +83 -52
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/LockedStream.h +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/MethodId.h +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/MethodProps.cpp +67 -323
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/MethodProps.h +38 -123
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/OffsetStream.cpp +8 -6
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/OffsetStream.h +13 -9
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/OutBuffer.cpp +12 -12
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/OutBuffer.h +7 -74
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/ProgressUtils.cpp +5 -5
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/ProgressUtils.h +13 -11
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/PropId.cpp +1 -10
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/RegisterArc.h +14 -16
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/RegisterCodec.h +16 -16
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/StdAfx.h +2 -5
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/StreamBinder.cpp +50 -45
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/StreamBinder.h +21 -39
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/StreamObjects.cpp +42 -47
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/StreamObjects.h +53 -42
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/StreamUtils.cpp +4 -49
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/StreamUtils.h +2 -20
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/UniqBlocks.cpp +4 -4
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/UniqBlocks.h +5 -20
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/VirtThread.cpp +9 -8
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/VirtThread.h +5 -5
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/Bcj2Coder.cpp +355 -556
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/Bcj2Coder.h +59 -66
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/Bcj2Register.cpp +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/BcjCoder.cpp +6 -6
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/BcjCoder.h +13 -19
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/BcjRegister.cpp +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/BranchMisc.cpp +5 -88
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/BranchMisc.h +18 -42
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/BranchRegister.cpp +16 -33
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/ByteSwap.cpp +53 -52
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/CodecExports.cpp +30 -64
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/CopyCoder.cpp +22 -55
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/CopyCoder.h +26 -11
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/DeltaFilter.cpp +28 -26
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/Lzma2Decoder.cpp +28 -30
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/Lzma2Decoder.h +54 -45
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/Lzma2Encoder.cpp +12 -24
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/Lzma2Encoder.h +22 -10
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/Lzma2Register.cpp +1 -1
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/LzmaDecoder.cpp +26 -33
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/LzmaDecoder.h +51 -51
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/LzmaEncoder.cpp +40 -232
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/LzmaEncoder.h +14 -13
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/LzmaRegister.cpp +1 -1
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/PpmdDecoder.cpp +35 -84
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/PpmdDecoder.h +41 -42
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/PpmdEncoder.cpp +25 -66
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/PpmdEncoder.h +17 -8
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/PpmdRegister.cpp +1 -1
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/StdAfx.h +2 -5
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/XzDecoder.cpp +12 -13
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/XzDecoder.h +32 -26
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/XzEncoder.cpp +16 -14
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Compress/XzEncoder.h +20 -9
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Crc.mak +1 -1
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Crc64.mak +1 -1
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Crypto/7zAes.cpp +32 -67
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Crypto/7zAes.h +18 -30
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Crypto/7zAesRegister.cpp +3 -3
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Crypto/MyAes.cpp +43 -208
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Crypto/MyAes.h +25 -90
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Crypto/MyAesReg.cpp +4 -17
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Crypto/RandGen.cpp +21 -29
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Crypto/RandGen.h +3 -4
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Crypto/StdAfx.h +2 -5
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/GuiCommon.rc +3 -38
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Guid.txt +3 -26
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/ICoder.h +172 -253
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/IDecl.h +7 -55
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/IPassword.h +12 -43
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/IProgress.h +9 -10
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/IStream.h +50 -133
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/LzmaDec.mak +2 -4
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/MyVersionInfo.rc +1 -1
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/PropID.h +2 -53
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Client7z/Client7z.cpp +177 -329
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Client7z/Client7z.dsp +1 -97
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Client7z/StdAfx.h +2 -5
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Client7z/makefile +1 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/ArchiveCommandLine.cpp +183 -687
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/ArchiveCommandLine.h +15 -49
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/ArchiveExtractCallback.cpp +913 -2275
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/ArchiveExtractCallback.h +115 -353
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/ArchiveName.cpp +106 -127
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/ArchiveName.h +3 -9
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/ArchiveOpenCallback.cpp +35 -272
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/ArchiveOpenCallback.h +64 -134
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/Bench.cpp +1200 -2608
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/Bench.h +20 -64
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/DefaultName.cpp +1 -1
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/DefaultName.h +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/DirItem.h +36 -253
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/EnumDirItems.cpp +233 -774
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/EnumDirItems.h +6 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/ExitCode.h +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/Extract.cpp +63 -156
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/Extract.h +10 -23
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/ExtractMode.h +2 -12
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/ExtractingFilePath.cpp +6 -22
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/ExtractingFilePath.h +4 -4
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/HashCalc.cpp +65 -1991
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/HashCalc.h +29 -241
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/IFileExtractCallback.h +47 -45
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/LoadCodecs.cpp +179 -442
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/LoadCodecs.h +89 -147
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/OpenArchive.cpp +380 -529
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/OpenArchive.h +42 -75
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/PropIDUtils.cpp +86 -163
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/PropIDUtils.h +5 -5
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/Property.h +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/SetProperties.cpp +15 -23
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/SetProperties.h +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/SortUtils.h +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/StdAfx.h +2 -5
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/TempFiles.cpp +1 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/TempFiles.h +2 -5
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/Update.cpp +368 -595
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/Update.h +47 -68
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/UpdateAction.h +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/UpdateCallback.cpp +146 -444
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/UpdateCallback.h +68 -103
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/UpdatePair.cpp +42 -111
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/UpdatePair.h +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/UpdateProduce.cpp +3 -7
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/UpdateProduce.h +6 -11
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/WorkDir.cpp +35 -25
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/WorkDir.h +4 -8
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Common/ZipRegistry.h +9 -91
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/BenchCon.cpp +4 -4
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/BenchCon.h +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/Console.mak +1 -4
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/Console.manifest +0 -3
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/ConsoleClose.cpp +19 -48
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/ConsoleClose.h +12 -18
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/ExtractCallbackConsole.cpp +41 -162
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/ExtractCallbackConsole.h +41 -88
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/HashCon.cpp +81 -140
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/HashCon.h +17 -27
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/List.cpp +124 -182
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/List.h +7 -22
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/Main.cpp +109 -590
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/MainAr.cpp +2 -62
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/OpenCallbackConsole.cpp +3 -3
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/OpenCallbackConsole.h +10 -17
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/PercentPrinter.cpp +10 -13
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/PercentPrinter.h +9 -13
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/StdAfx.h +2 -5
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/UpdateCallbackConsole.cpp +24 -320
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/UpdateCallbackConsole.h +26 -50
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/UserInputUtils.cpp +5 -13
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/UserInputUtils.h +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/makefile +2 -6
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Explorer/MyMessages.cpp +6 -12
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Explorer/MyMessages.h +4 -4
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/BrowseDialog.cpp +195 -302
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/BrowseDialog.h +4 -15
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/ComboDialog.cpp +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/ComboDialog.h +6 -6
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/DialogSize.h +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/ExtractCallback.cpp +181 -416
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/ExtractCallback.h +197 -216
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/FormatUtils.h +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/LangUtils.h +5 -13
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/MyWindowsNew.h +5 -48
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/OverwriteDialog.cpp +49 -215
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/OverwriteDialog.h +30 -50
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/OverwriteDialog.rc +1 -3
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/OverwriteDialogRes.h +3 -5
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/PasswordDialog.cpp +5 -5
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/PasswordDialog.h +6 -6
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/PasswordDialog.rc +0 -4
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/ProgressDialog.cpp +10 -15
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/ProgressDialog.h +17 -18
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/ProgressDialog2.cpp +130 -276
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/ProgressDialog2.h +52 -56
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/ProgressDialog2Res.h +1 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/ProgressDialog2a.rc +3 -8
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/PropertyName.h +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/PropertyNameRes.h +0 -9
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/SysIconUtils.cpp +89 -185
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/SysIconUtils.h +20 -23
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/resource.h +1 -23
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/resourceGui.h +0 -10
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/GUI/Extract.rc +4 -4
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/GUI/ExtractDialog.cpp +33 -36
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/GUI/ExtractDialog.h +15 -15
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/GUI/ExtractGUI.cpp +22 -39
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/GUI/ExtractGUI.h +3 -4
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/GUI/HashGUI.h +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/Build.mak +13 -109
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/AutoPtr.h +14 -25
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/CRC.cpp +1 -1
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/C_FileIO.cpp +90 -1
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/C_FileIO.h +49 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/ComTry.h +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/CommandLineParser.cpp +7 -41
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/CommandLineParser.h +3 -3
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/Common.h +29 -14
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/CrcReg.cpp +45 -24
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/Defs.h +2 -3
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/DynamicBuffer.h +5 -17
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/IntToString.cpp +110 -132
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/IntToString.h +9 -35
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/Lang.h +5 -12
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/ListFileUtils.cpp +31 -49
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/ListFileUtils.h +4 -4
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyBuffer.h +21 -59
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyBuffer2.h +10 -95
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyCom.h +81 -497
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyException.h +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyGuidDef.h +9 -18
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyInitGuid.h +5 -17
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyLinux.h +2 -35
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyString.cpp +164 -347
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyString.h +35 -246
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyTypes.h +8 -11
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyUnknown.h +11 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyVector.h +94 -184
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyWindows.cpp +11 -158
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/MyWindows.h +54 -148
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/NewHandler.cpp +27 -204
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/NewHandler.h +5 -38
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/Sha256Reg.cpp +16 -43
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/StdAfx.h +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/StdInStream.cpp +11 -20
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/StdInStream.h +5 -13
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/StdOutStream.cpp +39 -124
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/StdOutStream.h +11 -27
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/StringConvert.cpp +15 -458
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/StringConvert.h +2 -24
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/StringToInt.cpp +89 -99
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/StringToInt.h +2 -19
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/TextConfig.cpp +11 -10
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/TextConfig.h +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/UTFConvert.cpp +102 -677
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/UTFConvert.h +5 -377
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/Wildcard.cpp +84 -197
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/Wildcard.h +25 -107
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/XzCrc64Reg.cpp +14 -11
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/COM.h +8 -24
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/CommonDialog.cpp +113 -197
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/CommonDialog.h +12 -32
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/ComboBox.cpp +4 -4
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/ComboBox.h +10 -22
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/CommandBar.h +6 -6
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/Dialog.cpp +47 -242
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/Dialog.h +51 -94
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/Edit.h +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/ImageList.h +4 -4
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/ListView.cpp +26 -33
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/ListView.h +22 -32
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/ProgressBar.h +13 -13
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/PropertyPage.cpp +34 -56
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/PropertyPage.h +9 -9
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/ReBar.h +3 -3
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/Static.h +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/StatusBar.h +5 -5
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/StdAfx.h +2 -5
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/ToolBar.h +3 -3
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/Trackbar.h +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/Window2.cpp +6 -8
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Control/Window2.h +7 -9
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/DLL.cpp +8 -77
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/DLL.h +10 -55
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Defs.h +4 -4
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/ErrorMsg.cpp +2 -69
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/ErrorMsg.h +2 -3
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/FileDir.cpp +80 -728
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/FileDir.h +7 -62
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/FileFind.cpp +56 -756
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/FileFind.h +19 -205
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/FileIO.cpp +47 -569
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/FileIO.h +28 -283
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/FileLink.cpp +112 -369
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/FileMapping.h +3 -3
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/FileName.cpp +113 -185
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/FileName.h +14 -41
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/FileSystem.cpp +10 -66
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/FileSystem.h +2 -6
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Handle.h +4 -6
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/MemoryLock.cpp +14 -29
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/MemoryLock.h +2 -2
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/NtCheck.h +2 -14
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/PropVariant.cpp +56 -102
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/PropVariant.h +9 -68
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/PropVariantConv.cpp +14 -150
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/PropVariantConv.h +3 -13
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Registry.cpp +128 -212
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Registry.h +20 -32
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/ResourceString.cpp +4 -4
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/ResourceString.h +2 -3
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/SecurityUtils.cpp +18 -23
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/SecurityUtils.h +56 -39
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Shell.cpp +58 -539
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Shell.h +14 -49
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/StdAfx.h +2 -5
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Synchronization.cpp +0 -77
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Synchronization.h +18 -240
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/System.cpp +38 -317
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/System.h +5 -154
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Thread.h +10 -18
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/TimeUtils.cpp +37 -291
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/TimeUtils.h +10 -124
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Window.cpp +7 -7
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Window.h +19 -98
- package/harmony/pushy/src/main/cpp/lzma/CS/7zip/Compress/LzmaAlone/LzmaAlone.csproj +90 -0
- package/harmony/pushy/src/main/cpp/lzma/DOC/Methods.txt +2 -6
- package/harmony/pushy/src/main/cpp/lzma/DOC/lzma-history.txt +0 -205
- package/harmony/pushy/src/main/cpp/lzma/DOC/lzma-sdk.txt +13 -93
- package/harmony/pushy/src/main/cpp/lzma/DOC/lzma.txt +13 -30
- package/harmony/pushy/src/main/cpp/lzma/bin/7zS2.sfx +0 -0
- package/harmony/pushy/src/main/cpp/lzma/bin/7zS2con.sfx +0 -0
- package/harmony/pushy/src/main/cpp/lzma/bin/7zSD.sfx +0 -0
- package/harmony/pushy/src/main/cpp/lzma/bin/7zdec.exe +0 -0
- package/harmony/pushy/src/main/cpp/lzma/bin/7zr.exe +0 -0
- package/harmony/pushy/src/main/cpp/lzma/bin/lzma.exe +0 -0
- package/harmony/pushy/src/main/cpp/lzma/bin/x64/7zr.exe +0 -0
- package/package.json +1 -1
- package/react-native-update.podspec +0 -1
- package/react-native.config.js +1 -0
- package/src/client.ts +1 -2
- package/src/type.ts +1 -0
- package/harmony/pushy/src/main/cpp/HDiffPatch/README_cn.md +0 -547
- package/harmony/pushy/src/main/cpp/HDiffPatch/_hextobytes.h +0 -112
- package/harmony/pushy/src/main/cpp/HDiffPatch/bsdiff_wrapper/bsdiff_wrapper.cpp +0 -389
- package/harmony/pushy/src/main/cpp/HDiffPatch/bsdiff_wrapper/bsdiff_wrapper.h +0 -73
- package/harmony/pushy/src/main/cpp/HDiffPatch/bsdiff_wrapper/bspatch_wrapper.c +0 -266
- package/harmony/pushy/src/main/cpp/HDiffPatch/bsdiff_wrapper/bspatch_wrapper.h +0 -58
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/android_ndk_jni_mk/build_libs_patchers.bat +0 -1
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/android_ndk_jni_mk/build_libs_patchers.sh +0 -1
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/vc/bzip2.vcxproj +0 -228
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/vc/hpatchz_test.vcxproj +0 -215
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/vc/libdeflate.vcxproj +0 -256
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/vc/longPathAware.exe.manifest +0 -7
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/vc/lzma.vcxproj +0 -271
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/vc/testHashClash.vcxproj +0 -228
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/vc/zlib.vcxproj +0 -242
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/vc/zstd.vcxproj +0 -287
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/xcode/HDiffPatch.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +0 -8
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/xcode/libdeflate.xcodeproj/project.pbxproj +0 -286
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/xcode/zlib.xcodeproj/project.pbxproj +0 -308
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/xcode_iOS_hpatchz/hpatch_objc/hpatch_objc.h +0 -33
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/xcode_iOS_hpatchz/hpatch_objc/hpatch_objc.m +0 -33
- package/harmony/pushy/src/main/cpp/HDiffPatch/builds/xcode_iOS_hpatchz/hpatchz.xcodeproj/project.pbxproj +0 -774
- package/harmony/pushy/src/main/cpp/HDiffPatch/hdiffz_import_patch.c +0 -31
- package/harmony/pushy/src/main/cpp/HDiffPatch/hdiffz_import_patch.h +0 -42
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/diff_for_hpatch_lite.h +0 -74
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/match_block.cpp +0 -478
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/match_block.h +0 -222
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/libdivsufsort/divsufsort64.cpp +0 -14
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/match_inplace.cpp +0 -168
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/match_inplace.h +0 -44
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HDiff/private_diff/qsort_parallel.h +0 -125
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HPatch/hpatch_mt/_hcache_old_mt.c +0 -243
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HPatch/hpatch_mt/_hcache_old_mt.h +0 -51
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HPatch/hpatch_mt/_hinput_mt.c +0 -153
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HPatch/hpatch_mt/_hinput_mt.h +0 -54
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HPatch/hpatch_mt/_houtput_mt.c +0 -158
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HPatch/hpatch_mt/_houtput_mt.h +0 -49
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HPatch/hpatch_mt/_hpatch_mt.c +0 -294
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HPatch/hpatch_mt/_hpatch_mt.h +0 -59
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HPatch/hpatch_mt/_patch_private_mt.h +0 -217
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HPatch/hpatch_mt/hpatch_mt.c +0 -349
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HPatch/hpatch_mt/hpatch_mt.h +0 -110
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HPatchLite/hpatch_lite.c +0 -366
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HPatchLite/hpatch_lite.h +0 -91
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HPatchLite/hpatch_lite_input_cache.h +0 -31
- package/harmony/pushy/src/main/cpp/HDiffPatch/libHDiffPatch/HPatchLite/hpatch_lite_types.h +0 -106
- package/harmony/pushy/src/main/cpp/HDiffPatch/libParallel/parallel_import_c.c +0 -497
- package/harmony/pushy/src/main/cpp/HDiffPatch/libParallel/parallel_import_c.h +0 -106
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sign_diff/_match_in_old_sign.cpp +0 -254
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sign_diff/_match_in_old_sign.h +0 -39
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sign_diff/_sign_diff_type.h +0 -37
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sign_diff/sign_diff.cpp +0 -62
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sign_diff/sign_diff.h +0 -44
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sync_client/dict_decompress_plugin.h +0 -156
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sync_client/dir_sync_client.cpp +0 -440
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sync_client/dir_sync_client.h +0 -88
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sync_client/match_in_old.cpp +0 -332
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sync_client/match_in_old.h +0 -48
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sync_client/match_in_types.h +0 -198
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sync_client/sync_client.cpp +0 -697
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sync_client/sync_client.h +0 -74
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sync_client/sync_client_private.h +0 -262
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sync_client/sync_client_type.h +0 -174
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sync_client/sync_client_type_private.h +0 -174
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sync_client/sync_diff_data.cpp +0 -252
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sync_client/sync_diff_data.h +0 -67
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sync_client/sync_info_client.cpp +0 -680
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sync_client/sync_info_client.h +0 -137
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sync_make/dict_compress_plugin.h +0 -83
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sync_make/dir_sync_make.cpp +0 -125
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sync_make/dir_sync_make.h +0 -56
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sync_make/hsynz_plugin.h +0 -55
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sync_make/match_in_new.cpp +0 -147
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sync_make/match_in_new.h +0 -38
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sync_make/sync_info_make.cpp +0 -354
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sync_make/sync_info_make.h +0 -76
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sync_make/sync_make.cpp +0 -521
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sync_make/sync_make.h +0 -69
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sync_make/sync_make_hash_clash.h +0 -122
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/sync_make/sync_make_private.h +0 -66
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/zsync_client_wrapper/zsync_client_type.h +0 -36
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/zsync_client_wrapper/zsync_client_type_private.h +0 -81
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/zsync_client_wrapper/zsync_client_wrapper.cpp +0 -247
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/zsync_client_wrapper/zsync_client_wrapper.h +0 -71
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/zsync_client_wrapper/zsync_info_client.cpp +0 -351
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/zsync_client_wrapper/zsync_info_client.h +0 -42
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/zsync_client_wrapper/zsync_match_in_old.cpp +0 -124
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/zsync_client_wrapper/zsync_match_in_old.h +0 -38
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/zsync_make_wrapper/zsync_info_make.cpp +0 -203
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/zsync_make_wrapper/zsync_info_make.h +0 -55
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/zsync_make_wrapper/zsync_make_wrapper.cpp +0 -79
- package/harmony/pushy/src/main/cpp/HDiffPatch/libhsync/zsync_make_wrapper/zsync_make_wrapper.h +0 -66
- package/harmony/pushy/src/main/cpp/HDiffPatch/vcdiff_wrapper/vcdiff_wrapper.cpp +0 -628
- package/harmony/pushy/src/main/cpp/HDiffPatch/vcdiff_wrapper/vcdiff_wrapper.h +0 -95
- package/harmony/pushy/src/main/cpp/HDiffPatch/vcdiff_wrapper/vcpatch_code_table.h +0 -78
- package/harmony/pushy/src/main/cpp/HDiffPatch/vcdiff_wrapper/vcpatch_wrapper.c +0 -950
- package/harmony/pushy/src/main/cpp/HDiffPatch/vcdiff_wrapper/vcpatch_wrapper.h +0 -72
- package/harmony/pushy/src/main/cpp/lzma/Asm/arm64/7zAsm.S +0 -181
- package/harmony/pushy/src/main/cpp/lzma/Asm/arm64/LzmaDecOpt.S +0 -1487
- package/harmony/pushy/src/main/cpp/lzma/Asm/x86/LzFindOpt.asm +0 -540
- package/harmony/pushy/src/main/cpp/lzma/Asm/x86/Sha256Opt.asm +0 -275
- package/harmony/pushy/src/main/cpp/lzma/Asm/x86/Sort.asm +0 -860
- package/harmony/pushy/src/main/cpp/lzma/C/7zWindows.h +0 -101
- package/harmony/pushy/src/main/cpp/lzma/C/7zip_gcc_c.mak +0 -360
- package/harmony/pushy/src/main/cpp/lzma/C/Asm_c.mak +0 -12
- package/harmony/pushy/src/main/cpp/lzma/C/LzFindOpt.c +0 -578
- package/harmony/pushy/src/main/cpp/lzma/C/Sha256Opt.c +0 -451
- package/harmony/pushy/src/main/cpp/lzma/C/SwapBytes.c +0 -835
- package/harmony/pushy/src/main/cpp/lzma/C/SwapBytes.h +0 -17
- package/harmony/pushy/src/main/cpp/lzma/C/Util/Lzma/Precomp.h +0 -13
- package/harmony/pushy/src/main/cpp/lzma/C/Util/LzmaLib/Precomp.c +0 -4
- package/harmony/pushy/src/main/cpp/lzma/C/Util/LzmaLib/Precomp.h +0 -13
- package/harmony/pushy/src/main/cpp/lzma/C/var_clang.mak +0 -11
- package/harmony/pushy/src/main/cpp/lzma/C/var_clang_arm64.mak +0 -12
- package/harmony/pushy/src/main/cpp/lzma/C/var_clang_x64.mak +0 -11
- package/harmony/pushy/src/main/cpp/lzma/C/var_clang_x86.mak +0 -11
- package/harmony/pushy/src/main/cpp/lzma/C/var_gcc.mak +0 -12
- package/harmony/pushy/src/main/cpp/lzma/C/var_gcc_arm64.mak +0 -12
- package/harmony/pushy/src/main/cpp/lzma/C/var_gcc_x64.mak +0 -10
- package/harmony/pushy/src/main/cpp/lzma/C/var_gcc_x86.mak +0 -10
- package/harmony/pushy/src/main/cpp/lzma/C/var_mac_arm64.mak +0 -11
- package/harmony/pushy/src/main/cpp/lzma/C/var_mac_x64.mak +0 -11
- package/harmony/pushy/src/main/cpp/lzma/C/warn_clang.mak +0 -1
- package/harmony/pushy/src/main/cpp/lzma/C/warn_clang_mac.mak +0 -1
- package/harmony/pushy/src/main/cpp/lzma/C/warn_gcc.mak +0 -51
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/7zip_gcc.mak +0 -1370
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/Alone7z/makefile.gcc +0 -279
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Bundles/SFXCon/makefile.gcc +0 -215
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/MultiOutStream.cpp +0 -855
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Common/MultiOutStream.h +0 -160
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/LzFindOpt.mak +0 -7
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/LzmaDec_gcc.mak +0 -14
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Sha256.mak +0 -13
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/Sort.mak +0 -6
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Client7z/makefile.gcc +0 -72
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/Console/makefile.gcc +0 -187
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/MemDialog.cpp +0 -218
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/MemDialog.h +0 -48
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/MemDialogRes.h +0 -13
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/FileManager/StdAfx.h +0 -67
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/UI/GUI/7zG.exe.manifest +0 -23
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/cmpl_clang.mak +0 -3
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/cmpl_clang_arm64.mak +0 -3
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/cmpl_clang_x64.mak +0 -3
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/cmpl_clang_x86.mak +0 -3
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/cmpl_gcc.mak +0 -3
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/cmpl_gcc_arm64.mak +0 -3
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/cmpl_gcc_x64.mak +0 -3
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/cmpl_gcc_x86.mak +0 -3
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/cmpl_mac_arm64.mak +0 -3
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/cmpl_mac_x64.mak +0 -3
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/var_clang.mak +0 -11
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/var_clang_arm64.mak +0 -19
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/var_clang_x64.mak +0 -11
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/var_clang_x86.mak +0 -11
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/var_gcc.mak +0 -12
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/var_gcc_arm64.mak +0 -12
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/var_gcc_x64.mak +0 -11
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/var_gcc_x86.mak +0 -10
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/var_mac_arm64.mak +0 -13
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/var_mac_x64.mak +0 -11
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/warn_clang.mak +0 -3
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/warn_clang_mac.mak +0 -9
- package/harmony/pushy/src/main/cpp/lzma/CPP/7zip/warn_gcc.mak +0 -55
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/Common0.h +0 -330
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/DynLimBuf.cpp +0 -93
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/DynLimBuf.h +0 -41
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/LzFindPrepare.cpp +0 -7
- package/harmony/pushy/src/main/cpp/lzma/CPP/Common/Sha256Prepare.cpp +0 -7
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Clipboard.cpp +0 -130
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/Clipboard.h +0 -28
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/MemoryGlobal.cpp +0 -36
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/MemoryGlobal.h +0 -55
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/SystemInfo.cpp +0 -1251
- package/harmony/pushy/src/main/cpp/lzma/CPP/Windows/SystemInfo.h +0 -19
- package/ios/ImportReact.h +0 -2
|
@@ -3,13 +3,6 @@
|
|
|
3
3
|
#include "StdAfx.h"
|
|
4
4
|
|
|
5
5
|
#include <wchar.h>
|
|
6
|
-
// #include <stdio.h>
|
|
7
|
-
|
|
8
|
-
#ifndef _WIN32
|
|
9
|
-
#include <grp.h>
|
|
10
|
-
#include <pwd.h>
|
|
11
|
-
#include "../../../Common/UTFConvert.h"
|
|
12
|
-
#endif
|
|
13
6
|
|
|
14
7
|
#include "../../../Common/Wildcard.h"
|
|
15
8
|
|
|
@@ -18,7 +11,7 @@
|
|
|
18
11
|
#include "../../../Windows/FileName.h"
|
|
19
12
|
|
|
20
13
|
#if defined(_WIN32) && !defined(UNDER_CE)
|
|
21
|
-
#define
|
|
14
|
+
#define _USE_SECURITY_CODE
|
|
22
15
|
#include "../../../Windows/SecurityUtils.h"
|
|
23
16
|
#endif
|
|
24
17
|
|
|
@@ -29,60 +22,32 @@ using namespace NWindows;
|
|
|
29
22
|
using namespace NFile;
|
|
30
23
|
using namespace NName;
|
|
31
24
|
|
|
32
|
-
|
|
33
|
-
static bool FindFile_KeepDots(NFile::NFind::CFileInfo &fi, const FString &path, bool followLink)
|
|
34
|
-
{
|
|
35
|
-
const bool res = fi.Find(path, followLink);
|
|
36
|
-
if (!res)
|
|
37
|
-
return res;
|
|
38
|
-
if (path.IsEmpty())
|
|
39
|
-
return res;
|
|
40
|
-
// we keep name "." and "..", if it's without tail slash
|
|
41
|
-
const FChar *p = path.RightPtr(1);
|
|
42
|
-
if (*p != '.')
|
|
43
|
-
return res;
|
|
44
|
-
if (p != path.Ptr())
|
|
45
|
-
{
|
|
46
|
-
FChar c = p[-1];
|
|
47
|
-
if (!IS_PATH_SEPAR(c))
|
|
48
|
-
{
|
|
49
|
-
if (c != '.')
|
|
50
|
-
return res;
|
|
51
|
-
p--;
|
|
52
|
-
if (p != path.Ptr())
|
|
53
|
-
{
|
|
54
|
-
c = p[-1];
|
|
55
|
-
if (!IS_PATH_SEPAR(c))
|
|
56
|
-
return res;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
fi.Name = p;
|
|
61
|
-
return res;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
|
|
65
25
|
void CDirItems::AddDirFileInfo(int phyParent, int logParent, int secureIndex,
|
|
66
26
|
const NFind::CFileInfo &fi)
|
|
67
27
|
{
|
|
68
|
-
|
|
69
|
-
|
|
28
|
+
CDirItem di;
|
|
29
|
+
di.Size = fi.Size;
|
|
30
|
+
di.CTime = fi.CTime;
|
|
31
|
+
di.ATime = fi.ATime;
|
|
32
|
+
di.MTime = fi.MTime;
|
|
33
|
+
di.Attrib = fi.Attrib;
|
|
34
|
+
di.IsAltStream = fi.IsAltStream;
|
|
70
35
|
di.PhyParent = phyParent;
|
|
71
36
|
di.LogParent = logParent;
|
|
72
37
|
di.SecureIndex = secureIndex;
|
|
38
|
+
di.Name = fs2us(fi.Name);
|
|
39
|
+
#if defined(_WIN32) && !defined(UNDER_CE)
|
|
40
|
+
// di.ShortName = fs2us(fi.ShortName);
|
|
41
|
+
#endif
|
|
73
42
|
Items.Add(di);
|
|
74
|
-
*/
|
|
75
|
-
VECTOR_ADD_NEW_OBJECT (Items, CDirItem(fi, phyParent, logParent, secureIndex))
|
|
76
43
|
|
|
77
44
|
if (fi.IsDir())
|
|
78
45
|
Stat.NumDirs++;
|
|
79
|
-
#ifdef _WIN32
|
|
80
46
|
else if (fi.IsAltStream)
|
|
81
47
|
{
|
|
82
48
|
Stat.NumAltStreams++;
|
|
83
49
|
Stat.AltStreamsSize += fi.Size;
|
|
84
50
|
}
|
|
85
|
-
#endif
|
|
86
51
|
else
|
|
87
52
|
{
|
|
88
53
|
Stat.NumFiles++;
|
|
@@ -90,13 +55,8 @@ void CDirItems::AddDirFileInfo(int phyParent, int logParent, int secureIndex,
|
|
|
90
55
|
}
|
|
91
56
|
}
|
|
92
57
|
|
|
93
|
-
// (DWORD)E_FAIL
|
|
94
|
-
#define DI_DEFAULT_ERROR ERROR_INVALID_FUNCTION
|
|
95
|
-
|
|
96
58
|
HRESULT CDirItems::AddError(const FString &path, DWORD errorCode)
|
|
97
59
|
{
|
|
98
|
-
if (errorCode == 0)
|
|
99
|
-
errorCode = DI_DEFAULT_ERROR;
|
|
100
60
|
Stat.NumErrors++;
|
|
101
61
|
if (Callback)
|
|
102
62
|
return Callback->ScanError(path, errorCode);
|
|
@@ -123,17 +83,17 @@ UString CDirItems::GetPrefixesPath(const CIntVector &parents, int index, const U
|
|
|
123
83
|
unsigned len = name.Len();
|
|
124
84
|
|
|
125
85
|
int i;
|
|
126
|
-
for (i = index; i >= 0; i = parents[
|
|
127
|
-
len += Prefixes[
|
|
86
|
+
for (i = index; i >= 0; i = parents[i])
|
|
87
|
+
len += Prefixes[i].Len();
|
|
128
88
|
|
|
129
89
|
wchar_t *p = path.GetBuf_SetEnd(len) + len;
|
|
130
90
|
|
|
131
91
|
p -= name.Len();
|
|
132
92
|
wmemcpy(p, (const wchar_t *)name, name.Len());
|
|
133
93
|
|
|
134
|
-
for (i = index; i >= 0; i = parents[
|
|
94
|
+
for (i = index; i >= 0; i = parents[i])
|
|
135
95
|
{
|
|
136
|
-
const UString &s = Prefixes[
|
|
96
|
+
const UString &s = Prefixes[i];
|
|
137
97
|
p -= s.Len();
|
|
138
98
|
wmemcpy(p, (const wchar_t *)s, s.Len());
|
|
139
99
|
}
|
|
@@ -180,24 +140,17 @@ bool InitLocalPrivileges();
|
|
|
180
140
|
CDirItems::CDirItems():
|
|
181
141
|
SymLinks(false),
|
|
182
142
|
ScanAltStreams(false)
|
|
183
|
-
|
|
184
|
-
, ExcludeFileItems(false)
|
|
185
|
-
, ShareForWrite(false)
|
|
186
|
-
#ifdef Z7_USE_SECURITY_CODE
|
|
143
|
+
#ifdef _USE_SECURITY_CODE
|
|
187
144
|
, ReadSecure(false)
|
|
188
|
-
|
|
189
|
-
#ifndef _WIN32
|
|
190
|
-
, StoreOwnerName(false)
|
|
191
|
-
#endif
|
|
145
|
+
#endif
|
|
192
146
|
, Callback(NULL)
|
|
193
147
|
{
|
|
194
|
-
#ifdef
|
|
148
|
+
#ifdef _USE_SECURITY_CODE
|
|
195
149
|
_saclEnabled = InitLocalPrivileges();
|
|
196
150
|
#endif
|
|
197
151
|
}
|
|
198
152
|
|
|
199
|
-
|
|
200
|
-
#ifdef Z7_USE_SECURITY_CODE
|
|
153
|
+
#ifdef _USE_SECURITY_CODE
|
|
201
154
|
|
|
202
155
|
HRESULT CDirItems::AddSecurityItem(const FString &path, int &secureIndex)
|
|
203
156
|
{
|
|
@@ -213,7 +166,7 @@ HRESULT CDirItems::AddSecurityItem(const FString &path, int &secureIndex)
|
|
|
213
166
|
DWORD errorCode = 0;
|
|
214
167
|
DWORD secureSize;
|
|
215
168
|
|
|
216
|
-
BOOL res = ::GetFileSecurityW(fs2us(path), securInfo, (PSECURITY_DESCRIPTOR)(
|
|
169
|
+
BOOL res = ::GetFileSecurityW(fs2us(path), securInfo, (PSECURITY_DESCRIPTOR)(Byte *)TempSecureBuf, (DWORD)TempSecureBuf.Size(), &secureSize);
|
|
217
170
|
|
|
218
171
|
if (res)
|
|
219
172
|
{
|
|
@@ -232,11 +185,11 @@ HRESULT CDirItems::AddSecurityItem(const FString &path, int &secureIndex)
|
|
|
232
185
|
else
|
|
233
186
|
{
|
|
234
187
|
TempSecureBuf.Alloc(secureSize);
|
|
235
|
-
res = ::GetFileSecurityW(fs2us(path), securInfo, (PSECURITY_DESCRIPTOR)(
|
|
188
|
+
res = ::GetFileSecurityW(fs2us(path), securInfo, (PSECURITY_DESCRIPTOR)(Byte *)TempSecureBuf, (DWORD)TempSecureBuf.Size(), &secureSize);
|
|
236
189
|
if (res)
|
|
237
190
|
{
|
|
238
191
|
if (secureSize != TempSecureBuf.Size())
|
|
239
|
-
errorCode = ERROR_INVALID_FUNCTION
|
|
192
|
+
errorCode = ERROR_INVALID_FUNCTION;;
|
|
240
193
|
}
|
|
241
194
|
else
|
|
242
195
|
errorCode = GetLastError();
|
|
@@ -246,222 +199,104 @@ HRESULT CDirItems::AddSecurityItem(const FString &path, int &secureIndex)
|
|
|
246
199
|
|
|
247
200
|
if (res)
|
|
248
201
|
{
|
|
249
|
-
secureIndex =
|
|
202
|
+
secureIndex = SecureBlocks.AddUniq(TempSecureBuf, secureSize);
|
|
250
203
|
return S_OK;
|
|
251
204
|
}
|
|
252
205
|
|
|
206
|
+
if (errorCode == 0)
|
|
207
|
+
errorCode = ERROR_INVALID_FUNCTION;
|
|
253
208
|
return AddError(path, errorCode);
|
|
254
209
|
}
|
|
255
210
|
|
|
256
|
-
#endif
|
|
257
|
-
|
|
211
|
+
#endif
|
|
258
212
|
|
|
259
|
-
HRESULT CDirItems::
|
|
213
|
+
HRESULT CDirItems::EnumerateDir(int phyParent, int logParent, const FString &phyPrefix)
|
|
260
214
|
{
|
|
261
|
-
|
|
262
|
-
// printf("\n enumerator.SetDirPrefix(phyPrefix) \n");
|
|
215
|
+
RINOK(ScanProgress(phyPrefix));
|
|
263
216
|
|
|
217
|
+
NFind::CEnumerator enumerator;
|
|
264
218
|
enumerator.SetDirPrefix(phyPrefix);
|
|
265
|
-
|
|
266
|
-
#ifdef _WIN32
|
|
267
|
-
|
|
268
|
-
NFind::CFileInfo fi;
|
|
269
|
-
|
|
270
219
|
for (unsigned ttt = 0; ; ttt++)
|
|
271
220
|
{
|
|
221
|
+
NFind::CFileInfo fi;
|
|
272
222
|
bool found;
|
|
273
223
|
if (!enumerator.Next(fi, found))
|
|
274
|
-
return AddError(phyPrefix);
|
|
275
|
-
if (!found)
|
|
276
|
-
return S_OK;
|
|
277
|
-
files.Add(fi);
|
|
278
|
-
if (Callback && (ttt & kScanProgressStepMask) == kScanProgressStepMask)
|
|
279
224
|
{
|
|
280
|
-
RINOK(ScanProgress(phyPrefix))
|
|
281
|
-
}
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
#else // _WIN32
|
|
285
|
-
|
|
286
|
-
// enumerator.SolveLinks = !SymLinks;
|
|
287
|
-
|
|
288
|
-
CObjectVector<NFind::CDirEntry> entries;
|
|
289
|
-
|
|
290
|
-
for (;;)
|
|
291
|
-
{
|
|
292
|
-
bool found;
|
|
293
|
-
NFind::CDirEntry de;
|
|
294
|
-
if (!enumerator.Next(de, found))
|
|
295
225
|
return AddError(phyPrefix);
|
|
296
|
-
if (!found)
|
|
297
|
-
break;
|
|
298
|
-
entries.Add(de);
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
FOR_VECTOR(i, entries)
|
|
302
|
-
{
|
|
303
|
-
const NFind::CDirEntry &de = entries[i];
|
|
304
|
-
NFind::CFileInfo fi;
|
|
305
|
-
if (!enumerator.Fill_FileInfo(de, fi, !SymLinks))
|
|
306
|
-
// if (!fi.Find_AfterEnumerator(path))
|
|
307
|
-
{
|
|
308
|
-
const FString path = phyPrefix + de.Name;
|
|
309
|
-
{
|
|
310
|
-
RINOK(AddError(path))
|
|
311
|
-
continue;
|
|
312
|
-
}
|
|
313
226
|
}
|
|
227
|
+
if (!found)
|
|
228
|
+
return S_OK;
|
|
314
229
|
|
|
315
|
-
files.Add(fi);
|
|
316
|
-
|
|
317
|
-
if (Callback && (i & kScanProgressStepMask) == kScanProgressStepMask)
|
|
318
|
-
{
|
|
319
|
-
RINOK(ScanProgress(phyPrefix))
|
|
320
|
-
}
|
|
321
|
-
}
|
|
322
|
-
|
|
323
|
-
return S_OK;
|
|
324
|
-
|
|
325
|
-
#endif // _WIN32
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
HRESULT CDirItems::EnumerateDir(int phyParent, int logParent, const FString &phyPrefix)
|
|
332
|
-
{
|
|
333
|
-
RINOK(ScanProgress(phyPrefix))
|
|
334
|
-
|
|
335
|
-
CObjectVector<NFind::CFileInfo> files;
|
|
336
|
-
RINOK(EnumerateOneDir(phyPrefix, files))
|
|
337
|
-
|
|
338
|
-
FOR_VECTOR (i, files)
|
|
339
|
-
{
|
|
340
|
-
#ifdef _WIN32
|
|
341
|
-
const NFind::CFileInfo &fi = files[i];
|
|
342
|
-
#else
|
|
343
|
-
const NFind::CFileInfo &fi = files[i];
|
|
344
|
-
/*
|
|
345
|
-
NFind::CFileInfo fi;
|
|
346
|
-
{
|
|
347
|
-
const NFind::CDirEntry &di = files[i];
|
|
348
|
-
const FString path = phyPrefix + di.Name;
|
|
349
|
-
if (!fi.Find_AfterEnumerator(path))
|
|
350
|
-
{
|
|
351
|
-
RINOK(AddError(path));
|
|
352
|
-
continue;
|
|
353
|
-
}
|
|
354
|
-
fi.Name = di.Name;
|
|
355
|
-
}
|
|
356
|
-
*/
|
|
357
|
-
#endif
|
|
358
|
-
|
|
359
|
-
if (CanIncludeItem(fi.IsDir()))
|
|
360
|
-
{
|
|
361
230
|
int secureIndex = -1;
|
|
362
|
-
#ifdef
|
|
231
|
+
#ifdef _USE_SECURITY_CODE
|
|
363
232
|
if (ReadSecure)
|
|
364
233
|
{
|
|
365
|
-
RINOK(AddSecurityItem(phyPrefix + fi.Name, secureIndex))
|
|
234
|
+
RINOK(AddSecurityItem(phyPrefix + fi.Name, secureIndex));
|
|
366
235
|
}
|
|
367
236
|
#endif
|
|
237
|
+
|
|
368
238
|
AddDirFileInfo(phyParent, logParent, secureIndex, fi);
|
|
369
|
-
}
|
|
370
239
|
|
|
371
|
-
if (Callback && (
|
|
240
|
+
if (Callback && (ttt & kScanProgressStepMask) == kScanProgressStepMask)
|
|
372
241
|
{
|
|
373
|
-
RINOK(ScanProgress(phyPrefix))
|
|
242
|
+
RINOK(ScanProgress(phyPrefix));
|
|
374
243
|
}
|
|
375
244
|
|
|
376
245
|
if (fi.IsDir())
|
|
377
246
|
{
|
|
378
247
|
const FString name2 = fi.Name + FCHAR_PATH_SEPARATOR;
|
|
379
248
|
unsigned parent = AddPrefix(phyParent, logParent, fs2us(name2));
|
|
380
|
-
RINOK(EnumerateDir(
|
|
249
|
+
RINOK(EnumerateDir(parent, parent, phyPrefix + name2));
|
|
381
250
|
}
|
|
382
251
|
}
|
|
383
|
-
return S_OK;
|
|
384
252
|
}
|
|
385
253
|
|
|
386
|
-
|
|
387
|
-
/*
|
|
388
|
-
EnumerateItems2()
|
|
389
|
-
const FStringVector &filePaths - are path without tail slashes.
|
|
390
|
-
All dir prefixes of filePaths will be not stores in logical paths
|
|
391
|
-
fix it: we can scan AltStream also.
|
|
392
|
-
*/
|
|
393
|
-
|
|
394
|
-
#ifdef _WIN32
|
|
395
|
-
// #define FOLLOW_LINK_PARAM
|
|
396
|
-
// #define FOLLOW_LINK_PARAM2
|
|
397
|
-
#define FOLLOW_LINK_PARAM , (!SymLinks)
|
|
398
|
-
#define FOLLOW_LINK_PARAM2 , (!dirItems.SymLinks)
|
|
399
|
-
#else
|
|
400
|
-
#define FOLLOW_LINK_PARAM , (!SymLinks)
|
|
401
|
-
#define FOLLOW_LINK_PARAM2 , (!dirItems.SymLinks)
|
|
402
|
-
#endif
|
|
403
|
-
|
|
404
254
|
HRESULT CDirItems::EnumerateItems2(
|
|
405
255
|
const FString &phyPrefix,
|
|
406
256
|
const UString &logPrefix,
|
|
407
257
|
const FStringVector &filePaths,
|
|
408
258
|
FStringVector *requestedPaths)
|
|
409
259
|
{
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
#ifdef _WIN32
|
|
414
|
-
const bool phyPrefix_isAltStreamPrefix =
|
|
415
|
-
NFile::NName::IsAltStreamPrefixWithColon(fs2us(phyPrefix));
|
|
416
|
-
#endif
|
|
260
|
+
int phyParent = phyPrefix.IsEmpty() ? -1 : AddPrefix(-1, -1, fs2us(phyPrefix));
|
|
261
|
+
int logParent = logPrefix.IsEmpty() ? -1 : AddPrefix(-1, -1, logPrefix);
|
|
417
262
|
|
|
418
263
|
FOR_VECTOR (i, filePaths)
|
|
419
264
|
{
|
|
420
265
|
const FString &filePath = filePaths[i];
|
|
421
266
|
NFind::CFileInfo fi;
|
|
422
267
|
const FString phyPath = phyPrefix + filePath;
|
|
423
|
-
if (!
|
|
268
|
+
if (!fi.Find(phyPath))
|
|
424
269
|
{
|
|
425
|
-
RINOK(AddError(phyPath))
|
|
270
|
+
RINOK(AddError(phyPath));
|
|
426
271
|
continue;
|
|
427
272
|
}
|
|
428
273
|
if (requestedPaths)
|
|
429
274
|
requestedPaths->Add(phyPath);
|
|
430
275
|
|
|
431
|
-
|
|
276
|
+
int delimiter = filePath.ReverseFind_PathSepar();
|
|
432
277
|
FString phyPrefixCur;
|
|
433
278
|
int phyParentCur = phyParent;
|
|
434
279
|
if (delimiter >= 0)
|
|
435
280
|
{
|
|
436
|
-
phyPrefixCur.SetFrom(filePath,
|
|
437
|
-
phyParentCur =
|
|
281
|
+
phyPrefixCur.SetFrom(filePath, delimiter + 1);
|
|
282
|
+
phyParentCur = AddPrefix(phyParent, logParent, fs2us(phyPrefixCur));
|
|
438
283
|
}
|
|
439
284
|
|
|
440
|
-
if (CanIncludeItem(fi.IsDir()))
|
|
441
|
-
{
|
|
442
285
|
int secureIndex = -1;
|
|
443
|
-
#ifdef
|
|
286
|
+
#ifdef _USE_SECURITY_CODE
|
|
444
287
|
if (ReadSecure)
|
|
445
288
|
{
|
|
446
|
-
RINOK(AddSecurityItem(phyPath, secureIndex))
|
|
289
|
+
RINOK(AddSecurityItem(phyPath, secureIndex));
|
|
447
290
|
}
|
|
448
291
|
#endif
|
|
449
|
-
|
|
450
|
-
if (phyPrefix_isAltStreamPrefix && fi.IsAltStream)
|
|
451
|
-
{
|
|
452
|
-
const int pos = fi.Name.Find(FChar(':'));
|
|
453
|
-
if (pos >= 0)
|
|
454
|
-
fi.Name.DeleteFrontal((unsigned)pos + 1);
|
|
455
|
-
}
|
|
456
|
-
#endif
|
|
292
|
+
|
|
457
293
|
AddDirFileInfo(phyParentCur, logParent, secureIndex, fi);
|
|
458
|
-
}
|
|
459
294
|
|
|
460
295
|
if (fi.IsDir())
|
|
461
296
|
{
|
|
462
297
|
const FString name2 = fi.Name + FCHAR_PATH_SEPARATOR;
|
|
463
|
-
|
|
464
|
-
RINOK(EnumerateDir(
|
|
298
|
+
unsigned parent = AddPrefix(phyParentCur, logParent, fs2us(name2));
|
|
299
|
+
RINOK(EnumerateDir(parent, parent, phyPrefix + phyPrefixCur + name2));
|
|
465
300
|
}
|
|
466
301
|
}
|
|
467
302
|
|
|
@@ -472,46 +307,34 @@ HRESULT CDirItems::EnumerateItems2(
|
|
|
472
307
|
|
|
473
308
|
|
|
474
309
|
|
|
310
|
+
|
|
311
|
+
|
|
475
312
|
static HRESULT EnumerateDirItems(
|
|
476
313
|
const NWildcard::CCensorNode &curNode,
|
|
477
|
-
|
|
478
|
-
const
|
|
479
|
-
const UStringVector &addParts, // additional parts from curNode
|
|
314
|
+
int phyParent, int logParent, const FString &phyPrefix,
|
|
315
|
+
const UStringVector &addArchivePrefix,
|
|
480
316
|
CDirItems &dirItems,
|
|
481
317
|
bool enterToSubFolders);
|
|
482
318
|
|
|
483
|
-
|
|
484
|
-
/* EnumerateDirItems_Spec()
|
|
485
|
-
adds new Dir item prefix, and enumerates dir items,
|
|
486
|
-
then it can remove that Dir item prefix, if there are no items in that dir.
|
|
487
|
-
*/
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
/*
|
|
491
|
-
EnumerateDirItems_Spec()
|
|
492
|
-
it's similar to EnumerateDirItems, but phyPrefix doesn't include (curFolderName)
|
|
493
|
-
*/
|
|
494
|
-
|
|
495
319
|
static HRESULT EnumerateDirItems_Spec(
|
|
496
320
|
const NWildcard::CCensorNode &curNode,
|
|
497
|
-
|
|
498
|
-
const FString &phyPrefix,
|
|
499
|
-
const UStringVector &
|
|
321
|
+
int phyParent, int logParent, const FString &curFolderName,
|
|
322
|
+
const FString &phyPrefix,
|
|
323
|
+
const UStringVector &addArchivePrefix,
|
|
500
324
|
CDirItems &dirItems,
|
|
501
325
|
bool enterToSubFolders)
|
|
502
326
|
{
|
|
503
327
|
const FString name2 = curFolderName + FCHAR_PATH_SEPARATOR;
|
|
504
|
-
|
|
505
|
-
|
|
328
|
+
unsigned parent = dirItems.AddPrefix(phyParent, logParent, fs2us(name2));
|
|
329
|
+
unsigned numItems = dirItems.Items.Size();
|
|
506
330
|
HRESULT res = EnumerateDirItems(
|
|
507
|
-
curNode,
|
|
508
|
-
|
|
331
|
+
curNode, parent, parent, phyPrefix + name2,
|
|
332
|
+
addArchivePrefix, dirItems, enterToSubFolders);
|
|
509
333
|
if (numItems == dirItems.Items.Size())
|
|
510
334
|
dirItems.DeleteLastPrefix();
|
|
511
335
|
return res;
|
|
512
336
|
}
|
|
513
337
|
|
|
514
|
-
|
|
515
338
|
#ifndef UNDER_CE
|
|
516
339
|
|
|
517
340
|
#ifdef _WIN32
|
|
@@ -519,222 +342,159 @@ static HRESULT EnumerateDirItems_Spec(
|
|
|
519
342
|
static HRESULT EnumerateAltStreams(
|
|
520
343
|
const NFind::CFileInfo &fi,
|
|
521
344
|
const NWildcard::CCensorNode &curNode,
|
|
522
|
-
|
|
523
|
-
const
|
|
524
|
-
|
|
525
|
-
bool addAllSubStreams,
|
|
345
|
+
int phyParent, int logParent, const FString &fullPath,
|
|
346
|
+
const UStringVector &addArchivePrefix, // prefix from curNode
|
|
347
|
+
bool addAllItems,
|
|
526
348
|
CDirItems &dirItems)
|
|
527
349
|
{
|
|
528
|
-
|
|
529
|
-
// if (dirItems.ExcludeFileItems) return S_OK;
|
|
530
|
-
|
|
531
|
-
NFind::CStreamEnumerator enumerator(phyPath);
|
|
350
|
+
NFind::CStreamEnumerator enumerator(fullPath);
|
|
532
351
|
for (;;)
|
|
533
352
|
{
|
|
534
353
|
NFind::CStreamInfo si;
|
|
535
354
|
bool found;
|
|
536
355
|
if (!enumerator.Next(si, found))
|
|
537
356
|
{
|
|
538
|
-
return dirItems.AddError(
|
|
357
|
+
return dirItems.AddError(fullPath + FTEXT(":*")); // , (DWORD)E_FAIL
|
|
539
358
|
}
|
|
540
359
|
if (!found)
|
|
541
360
|
return S_OK;
|
|
542
361
|
if (si.IsMainStream())
|
|
543
362
|
continue;
|
|
544
|
-
UStringVector
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
if (curNode.CheckPathToRoot(false,
|
|
363
|
+
UStringVector addArchivePrefixNew = addArchivePrefix;
|
|
364
|
+
UString reducedName = si.GetReducedName();
|
|
365
|
+
addArchivePrefixNew.Back() += reducedName;
|
|
366
|
+
if (curNode.CheckPathToRoot(false, addArchivePrefixNew, true))
|
|
548
367
|
continue;
|
|
549
|
-
if (!
|
|
550
|
-
if (!curNode.CheckPathToRoot(true,
|
|
368
|
+
if (!addAllItems)
|
|
369
|
+
if (!curNode.CheckPathToRoot(true, addArchivePrefixNew, true))
|
|
551
370
|
continue;
|
|
552
371
|
|
|
553
372
|
NFind::CFileInfo fi2 = fi;
|
|
554
373
|
fi2.Name += us2fs(reducedName);
|
|
555
374
|
fi2.Size = si.Size;
|
|
556
|
-
fi2.Attrib &= ~
|
|
375
|
+
fi2.Attrib &= ~FILE_ATTRIBUTE_DIRECTORY;
|
|
557
376
|
fi2.IsAltStream = true;
|
|
558
377
|
dirItems.AddDirFileInfo(phyParent, logParent, -1, fi2);
|
|
559
378
|
}
|
|
560
379
|
}
|
|
561
380
|
|
|
562
|
-
#endif
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
/* We get Reparse data and parse it.
|
|
566
|
-
If there is Reparse error, we free dirItem.Reparse data.
|
|
567
|
-
Do we need to work with empty reparse data?
|
|
568
|
-
*/
|
|
381
|
+
#endif
|
|
569
382
|
|
|
570
383
|
HRESULT CDirItems::SetLinkInfo(CDirItem &dirItem, const NFind::CFileInfo &fi,
|
|
571
384
|
const FString &phyPrefix)
|
|
572
385
|
{
|
|
573
|
-
if (!SymLinks)
|
|
386
|
+
if (!SymLinks || !fi.HasReparsePoint())
|
|
574
387
|
return S_OK;
|
|
575
|
-
|
|
576
|
-
#ifdef _WIN32
|
|
577
|
-
if (!fi.HasReparsePoint() || fi.IsAltStream)
|
|
578
|
-
#else // _WIN32
|
|
579
|
-
if (!fi.IsPosixLink())
|
|
580
|
-
#endif // _WIN32
|
|
581
|
-
return S_OK;
|
|
582
|
-
|
|
583
388
|
const FString path = phyPrefix + fi.Name;
|
|
584
389
|
CByteBuffer &buf = dirItem.ReparseData;
|
|
390
|
+
DWORD res = 0;
|
|
585
391
|
if (NIO::GetReparseData(path, buf))
|
|
586
392
|
{
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
393
|
+
CReparseAttr attr;
|
|
394
|
+
if (attr.Parse(buf, buf.Size(), res))
|
|
395
|
+
return S_OK;
|
|
396
|
+
// we ignore unknown reparse points
|
|
397
|
+
if (res != ERROR_INVALID_REPARSE_DATA)
|
|
398
|
+
res = 0;
|
|
399
|
+
}
|
|
400
|
+
else
|
|
401
|
+
{
|
|
402
|
+
res = ::GetLastError();
|
|
403
|
+
if (res == 0)
|
|
404
|
+
res = ERROR_INVALID_FUNCTION;
|
|
590
405
|
}
|
|
591
406
|
|
|
592
|
-
DWORD res = ::GetLastError();
|
|
593
407
|
buf.Free();
|
|
408
|
+
if (res == 0)
|
|
409
|
+
return S_OK;
|
|
594
410
|
return AddError(path, res);
|
|
595
411
|
}
|
|
596
412
|
|
|
597
|
-
#endif
|
|
598
|
-
|
|
599
|
-
|
|
413
|
+
#endif
|
|
600
414
|
|
|
601
415
|
static HRESULT EnumerateForItem(
|
|
602
|
-
|
|
416
|
+
NFind::CFileInfo &fi,
|
|
603
417
|
const NWildcard::CCensorNode &curNode,
|
|
604
|
-
|
|
605
|
-
const UStringVector &
|
|
418
|
+
int phyParent, int logParent, const FString &phyPrefix,
|
|
419
|
+
const UStringVector &addArchivePrefix, // prefix from curNode
|
|
606
420
|
CDirItems &dirItems,
|
|
607
421
|
bool enterToSubFolders)
|
|
608
422
|
{
|
|
609
423
|
const UString name = fs2us(fi.Name);
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
424
|
+
bool enterToSubFolders2 = enterToSubFolders;
|
|
425
|
+
UStringVector addArchivePrefixNew = addArchivePrefix;
|
|
426
|
+
addArchivePrefixNew.Add(name);
|
|
427
|
+
{
|
|
428
|
+
UStringVector addArchivePrefixNewTemp(addArchivePrefixNew);
|
|
429
|
+
if (curNode.CheckPathToRoot(false, addArchivePrefixNewTemp, !fi.IsDir()))
|
|
430
|
+
return S_OK;
|
|
431
|
+
}
|
|
618
432
|
int dirItemIndex = -1;
|
|
619
|
-
|
|
433
|
+
|
|
620
434
|
bool addAllSubStreams = false;
|
|
621
|
-
bool needAltStreams = true;
|
|
622
|
-
#endif // _WIN32
|
|
623
|
-
#endif // !defined(UNDER_CE)
|
|
624
435
|
|
|
625
|
-
|
|
626
|
-
if (curNode.CheckPathToRoot(true, newParts, !fi.IsDir()))
|
|
436
|
+
if (curNode.CheckPathToRoot(true, addArchivePrefixNew, !fi.IsDir()))
|
|
627
437
|
{
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
// we will not check include rules for substreams.
|
|
632
|
-
addAllSubStreams = true;
|
|
633
|
-
#endif // _WIN32
|
|
634
|
-
#endif // !defined(UNDER_CE)
|
|
635
|
-
|
|
636
|
-
if (dirItems.CanIncludeItem(fi.IsDir()))
|
|
637
|
-
{
|
|
638
|
-
int secureIndex = -1;
|
|
639
|
-
#ifdef Z7_USE_SECURITY_CODE
|
|
640
|
-
if (dirItems.ReadSecure)
|
|
641
|
-
{
|
|
642
|
-
RINOK(dirItems.AddSecurityItem(phyPrefix + fi.Name, secureIndex))
|
|
643
|
-
}
|
|
644
|
-
#endif
|
|
645
|
-
#if !defined(UNDER_CE)
|
|
646
|
-
dirItemIndex = (int)dirItems.Items.Size();
|
|
647
|
-
#endif // !defined(UNDER_CE)
|
|
648
|
-
dirItems.AddDirFileInfo(phyParent, logParent, secureIndex, fi);
|
|
649
|
-
}
|
|
650
|
-
else
|
|
438
|
+
int secureIndex = -1;
|
|
439
|
+
#ifdef _USE_SECURITY_CODE
|
|
440
|
+
if (dirItems.ReadSecure)
|
|
651
441
|
{
|
|
652
|
-
|
|
653
|
-
needAltStreams = false;
|
|
654
|
-
#endif
|
|
442
|
+
RINOK(dirItems.AddSecurityItem(phyPrefix + fi.Name, secureIndex));
|
|
655
443
|
}
|
|
444
|
+
#endif
|
|
656
445
|
|
|
446
|
+
dirItemIndex = dirItems.Items.Size();
|
|
447
|
+
dirItems.AddDirFileInfo(phyParent, logParent, secureIndex, fi);
|
|
657
448
|
if (fi.IsDir())
|
|
658
|
-
|
|
449
|
+
enterToSubFolders2 = true;
|
|
450
|
+
|
|
451
|
+
addAllSubStreams = true;
|
|
659
452
|
}
|
|
660
453
|
|
|
661
|
-
#
|
|
662
|
-
|
|
663
|
-
|
|
454
|
+
#ifndef UNDER_CE
|
|
455
|
+
if (dirItems.ScanAltStreams)
|
|
456
|
+
{
|
|
457
|
+
RINOK(EnumerateAltStreams(fi, curNode, phyParent, logParent,
|
|
458
|
+
phyPrefix + fi.Name,
|
|
459
|
+
addArchivePrefixNew,
|
|
460
|
+
addAllSubStreams,
|
|
461
|
+
dirItems));
|
|
462
|
+
}
|
|
664
463
|
|
|
665
464
|
if (dirItemIndex >= 0)
|
|
666
465
|
{
|
|
667
|
-
CDirItem &dirItem = dirItems.Items[
|
|
668
|
-
RINOK(dirItems.SetLinkInfo(dirItem, fi, phyPrefix))
|
|
466
|
+
CDirItem &dirItem = dirItems.Items[dirItemIndex];
|
|
467
|
+
RINOK(dirItems.SetLinkInfo(dirItem, fi, phyPrefix));
|
|
669
468
|
if (dirItem.ReparseData.Size() != 0)
|
|
670
469
|
return S_OK;
|
|
671
470
|
}
|
|
672
|
-
|
|
673
|
-
#if defined(_WIN32)
|
|
674
|
-
if (needAltStreams && dirItems.ScanAltStreams && !fi.IsAltStream)
|
|
675
|
-
{
|
|
676
|
-
RINOK(EnumerateAltStreams(fi, curNode, phyParent, logParent,
|
|
677
|
-
phyPrefix + fi.Name, // with (fi.Name)
|
|
678
|
-
newParts, // with (fi.Name)
|
|
679
|
-
addAllSubStreams,
|
|
680
|
-
dirItems))
|
|
681
|
-
}
|
|
682
|
-
#endif
|
|
683
|
-
|
|
684
|
-
#endif // !defined(UNDER_CE)
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
#ifndef _WIN32
|
|
688
|
-
if (!fi.IsPosixLink()) // posix link can follow to dir
|
|
689
471
|
#endif
|
|
472
|
+
|
|
690
473
|
if (!fi.IsDir())
|
|
691
474
|
return S_OK;
|
|
692
|
-
|
|
693
|
-
const NWildcard::CCensorNode *nextNode =
|
|
694
|
-
|
|
695
|
-
if (addParts.IsEmpty())
|
|
475
|
+
|
|
476
|
+
const NWildcard::CCensorNode *nextNode = 0;
|
|
477
|
+
if (addArchivePrefix.IsEmpty())
|
|
696
478
|
{
|
|
697
479
|
int index = curNode.FindSubNode(name);
|
|
698
480
|
if (index >= 0)
|
|
699
|
-
|
|
700
|
-
nextNode = &curNode.SubNodes[(unsigned)index];
|
|
701
|
-
newParts.Clear();
|
|
702
|
-
}
|
|
481
|
+
nextNode = &curNode.SubNodes[index];
|
|
703
482
|
}
|
|
704
|
-
|
|
705
|
-
|
|
483
|
+
if (!enterToSubFolders2 && nextNode == 0)
|
|
484
|
+
return S_OK;
|
|
485
|
+
|
|
486
|
+
addArchivePrefixNew = addArchivePrefix;
|
|
487
|
+
if (nextNode == 0)
|
|
706
488
|
{
|
|
707
|
-
if (!enterToSubFolders)
|
|
708
|
-
return S_OK;
|
|
709
|
-
|
|
710
|
-
#ifndef _WIN32
|
|
711
|
-
if (fi.IsPosixLink())
|
|
712
|
-
{
|
|
713
|
-
// here we can try to resolve posix link
|
|
714
|
-
// if the link to dir, then can we follow it
|
|
715
|
-
return S_OK; // we don't follow posix link
|
|
716
|
-
}
|
|
717
|
-
#else
|
|
718
|
-
if (dirItems.SymLinks && fi.HasReparsePoint())
|
|
719
|
-
{
|
|
720
|
-
/* 20.03: in SymLinks mode: we don't enter to directory that
|
|
721
|
-
has reparse point and has no CCensorNode
|
|
722
|
-
NOTE: (curNode and parent nodes) still can have wildcard rules
|
|
723
|
-
to include some items of target directory (of reparse point),
|
|
724
|
-
but we ignore these rules here.
|
|
725
|
-
*/
|
|
726
|
-
return S_OK;
|
|
727
|
-
}
|
|
728
|
-
#endif
|
|
729
489
|
nextNode = &curNode;
|
|
490
|
+
addArchivePrefixNew.Add(name);
|
|
730
491
|
}
|
|
731
492
|
|
|
732
493
|
return EnumerateDirItems_Spec(
|
|
733
|
-
*nextNode, phyParent, logParent, fi.Name,
|
|
734
|
-
|
|
735
|
-
newParts, // relative to (*nextNode). (*nextNode + newParts) includes (fi.Name)
|
|
494
|
+
*nextNode, phyParent, logParent, fi.Name, phyPrefix,
|
|
495
|
+
addArchivePrefixNew,
|
|
736
496
|
dirItems,
|
|
737
|
-
|
|
497
|
+
enterToSubFolders2);
|
|
738
498
|
}
|
|
739
499
|
|
|
740
500
|
|
|
@@ -753,13 +513,10 @@ static bool CanUseFsDirect(const NWildcard::CCensorNode &curNode)
|
|
|
753
513
|
|
|
754
514
|
/* Windows doesn't support file name with wildcard
|
|
755
515
|
But if another system supports file name with wildcard,
|
|
756
|
-
and wildcard mode is disabled, we can ignore wildcard in name
|
|
757
|
-
*/
|
|
516
|
+
and wildcard mode is disabled, we can ignore wildcard in name */
|
|
758
517
|
/*
|
|
759
|
-
#ifndef _WIN32
|
|
760
518
|
if (!item.WildcardParsing)
|
|
761
519
|
continue;
|
|
762
|
-
#endif
|
|
763
520
|
*/
|
|
764
521
|
if (DoesNameContainWildcard(name))
|
|
765
522
|
return false;
|
|
@@ -775,33 +532,26 @@ static bool IsVirtualFsFolder(const FString &prefix, const UString &name)
|
|
|
775
532
|
UString s = fs2us(prefix);
|
|
776
533
|
s += name;
|
|
777
534
|
s.Add_PathSepar();
|
|
778
|
-
// it returns (true) for non real FS folder path like - "\\SERVER\"
|
|
779
535
|
return IsPathSepar(s[0]) && GetRootPrefixSize(s) == 0;
|
|
780
536
|
}
|
|
781
537
|
|
|
782
538
|
#endif
|
|
783
539
|
|
|
784
|
-
|
|
785
|
-
|
|
786
540
|
static HRESULT EnumerateDirItems(
|
|
787
541
|
const NWildcard::CCensorNode &curNode,
|
|
788
|
-
|
|
789
|
-
const UStringVector &
|
|
542
|
+
int phyParent, int logParent, const FString &phyPrefix,
|
|
543
|
+
const UStringVector &addArchivePrefix, // prefix from curNode
|
|
790
544
|
CDirItems &dirItems,
|
|
791
545
|
bool enterToSubFolders)
|
|
792
546
|
{
|
|
793
547
|
if (!enterToSubFolders)
|
|
794
|
-
{
|
|
795
|
-
/* if there are IncludeItems censor rules that affect items in subdirs,
|
|
796
|
-
then we will enter to all subfolders */
|
|
797
548
|
if (curNode.NeedCheckSubDirs())
|
|
798
549
|
enterToSubFolders = true;
|
|
799
|
-
}
|
|
800
550
|
|
|
801
|
-
RINOK(dirItems.ScanProgress(phyPrefix))
|
|
551
|
+
RINOK(dirItems.ScanProgress(phyPrefix));
|
|
802
552
|
|
|
803
553
|
// try direct_names case at first
|
|
804
|
-
if (
|
|
554
|
+
if (addArchivePrefix.IsEmpty() && !enterToSubFolders)
|
|
805
555
|
{
|
|
806
556
|
if (CanUseFsDirect(curNode))
|
|
807
557
|
{
|
|
@@ -816,20 +566,11 @@ static HRESULT EnumerateDirItems(
|
|
|
816
566
|
const UString &name = item.PathParts.Front();
|
|
817
567
|
FString fullPath = phyPrefix + us2fs(name);
|
|
818
568
|
|
|
819
|
-
/*
|
|
820
|
-
// not possible now
|
|
821
|
-
if (!item.ForDir && !item.ForFile)
|
|
822
|
-
{
|
|
823
|
-
RINOK(dirItems.AddError(fullPath, ERROR_INVALID_PARAMETER));
|
|
824
|
-
continue;
|
|
825
|
-
}
|
|
826
|
-
*/
|
|
827
|
-
|
|
828
569
|
#if defined(_WIN32) && !defined(UNDER_CE)
|
|
829
570
|
bool needAltStreams = true;
|
|
830
571
|
#endif
|
|
831
572
|
|
|
832
|
-
#ifdef
|
|
573
|
+
#ifdef _USE_SECURITY_CODE
|
|
833
574
|
bool needSecurity = true;
|
|
834
575
|
#endif
|
|
835
576
|
|
|
@@ -849,7 +590,7 @@ static HRESULT EnumerateDirItems(
|
|
|
849
590
|
|
|
850
591
|
/*
|
|
851
592
|
// do we need to ignore security info for "\\" folder ?
|
|
852
|
-
#ifdef
|
|
593
|
+
#ifdef _USE_SECURITY_CODE
|
|
853
594
|
needSecurity = false;
|
|
854
595
|
#endif
|
|
855
596
|
*/
|
|
@@ -875,27 +616,16 @@ static HRESULT EnumerateDirItems(
|
|
|
875
616
|
}
|
|
876
617
|
else
|
|
877
618
|
#endif
|
|
878
|
-
if (!
|
|
619
|
+
if (!fi.Find(fullPath))
|
|
879
620
|
{
|
|
880
|
-
RINOK(dirItems.AddError(fullPath))
|
|
621
|
+
RINOK(dirItems.AddError(fullPath));
|
|
881
622
|
continue;
|
|
882
623
|
}
|
|
883
624
|
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
#define MY_ERROR_IS_DIR ERROR_FILE_NOT_FOUND
|
|
887
|
-
#define MY_ERROR_NOT_DIR DI_DEFAULT_ERROR
|
|
888
|
-
#else
|
|
889
|
-
#define MY_ERROR_IS_DIR EISDIR
|
|
890
|
-
#define MY_ERROR_NOT_DIR ENOTDIR
|
|
891
|
-
#endif
|
|
892
|
-
*/
|
|
893
|
-
|
|
894
|
-
const bool isDir = fi.IsDir();
|
|
895
|
-
if (isDir ? !item.ForDir : !item.ForFile)
|
|
625
|
+
bool isDir = fi.IsDir();
|
|
626
|
+
if (isDir && !item.ForDir || !isDir && !item.ForFile)
|
|
896
627
|
{
|
|
897
|
-
|
|
898
|
-
RINOK(dirItems.AddError(fullPath, DI_DEFAULT_ERROR))
|
|
628
|
+
RINOK(dirItems.AddError(fullPath, (DWORD)E_FAIL));
|
|
899
629
|
continue;
|
|
900
630
|
}
|
|
901
631
|
{
|
|
@@ -905,90 +635,67 @@ static HRESULT EnumerateDirItems(
|
|
|
905
635
|
continue;
|
|
906
636
|
}
|
|
907
637
|
|
|
908
|
-
|
|
909
|
-
if (dirItems.CanIncludeItem(fi.IsDir()))
|
|
910
|
-
{
|
|
911
638
|
int secureIndex = -1;
|
|
912
|
-
#ifdef
|
|
639
|
+
#ifdef _USE_SECURITY_CODE
|
|
913
640
|
if (needSecurity && dirItems.ReadSecure)
|
|
914
641
|
{
|
|
915
|
-
RINOK(dirItems.AddSecurityItem(fullPath, secureIndex))
|
|
642
|
+
RINOK(dirItems.AddSecurityItem(fullPath, secureIndex));
|
|
916
643
|
}
|
|
917
644
|
#endif
|
|
918
645
|
|
|
919
646
|
dirItems.AddDirFileInfo(phyParent, logParent, secureIndex, fi);
|
|
920
647
|
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
#if !defined(UNDER_CE)
|
|
648
|
+
#ifndef UNDER_CE
|
|
924
649
|
{
|
|
925
650
|
CDirItem &dirItem = dirItems.Items.Back();
|
|
926
|
-
RINOK(dirItems.SetLinkInfo(dirItem, fi, phyPrefix))
|
|
651
|
+
RINOK(dirItems.SetLinkInfo(dirItem, fi, phyPrefix));
|
|
927
652
|
if (dirItem.ReparseData.Size() != 0)
|
|
653
|
+
{
|
|
654
|
+
if (fi.IsAltStream)
|
|
655
|
+
dirItems.Stat.AltStreamsSize -= fi.Size;
|
|
656
|
+
else
|
|
657
|
+
dirItems.Stat.FilesSize -= fi.Size;
|
|
928
658
|
continue;
|
|
659
|
+
}
|
|
929
660
|
}
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
661
|
+
#endif
|
|
662
|
+
|
|
663
|
+
|
|
664
|
+
#ifndef UNDER_CE
|
|
665
|
+
if (needAltStreams && dirItems.ScanAltStreams)
|
|
933
666
|
{
|
|
934
667
|
UStringVector pathParts;
|
|
935
668
|
pathParts.Add(fs2us(fi.Name));
|
|
936
669
|
RINOK(EnumerateAltStreams(fi, curNode, phyParent, logParent,
|
|
937
|
-
fullPath,
|
|
938
|
-
pathParts, // including (fi.Name)
|
|
670
|
+
fullPath, pathParts,
|
|
939
671
|
true, /* addAllSubStreams */
|
|
940
|
-
dirItems))
|
|
672
|
+
dirItems));
|
|
941
673
|
}
|
|
942
|
-
#endif // defined(_WIN32)
|
|
943
|
-
|
|
944
|
-
#endif // !defined(UNDER_CE)
|
|
945
|
-
}
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
#ifndef _WIN32
|
|
949
|
-
if (!fi.IsPosixLink()) // posix link can follow to dir
|
|
950
674
|
#endif
|
|
675
|
+
|
|
951
676
|
if (!isDir)
|
|
952
677
|
continue;
|
|
953
|
-
|
|
954
|
-
UStringVector
|
|
955
|
-
const NWildcard::CCensorNode *nextNode =
|
|
678
|
+
|
|
679
|
+
UStringVector addArchivePrefixNew;
|
|
680
|
+
const NWildcard::CCensorNode *nextNode = 0;
|
|
956
681
|
int index = curNode.FindSubNode(name);
|
|
957
682
|
if (index >= 0)
|
|
958
683
|
{
|
|
959
|
-
for (int t =
|
|
684
|
+
for (int t = needEnterVector.Size(); t <= index; t++)
|
|
960
685
|
needEnterVector.Add(true);
|
|
961
|
-
needEnterVector[
|
|
962
|
-
nextNode = &curNode.SubNodes[
|
|
686
|
+
needEnterVector[index] = false;
|
|
687
|
+
nextNode = &curNode.SubNodes[index];
|
|
963
688
|
}
|
|
964
689
|
else
|
|
965
690
|
{
|
|
966
|
-
#ifndef _WIN32
|
|
967
|
-
if (fi.IsPosixLink())
|
|
968
|
-
{
|
|
969
|
-
// here we can try to resolve posix link
|
|
970
|
-
// if the link to dir, then can we follow it
|
|
971
|
-
continue; // we don't follow posix link
|
|
972
|
-
}
|
|
973
|
-
#else
|
|
974
|
-
if (dirItems.SymLinks)
|
|
975
|
-
{
|
|
976
|
-
if (fi.HasReparsePoint())
|
|
977
|
-
{
|
|
978
|
-
/* 20.03: in SymLinks mode: we don't enter to directory that
|
|
979
|
-
has reparse point and has no CCensorNode */
|
|
980
|
-
continue;
|
|
981
|
-
}
|
|
982
|
-
}
|
|
983
|
-
#endif
|
|
984
691
|
nextNode = &curNode;
|
|
985
|
-
|
|
692
|
+
addArchivePrefixNew.Add(name); // don't change it to fi.Name. It's for shortnames support
|
|
986
693
|
}
|
|
987
694
|
|
|
988
695
|
RINOK(EnumerateDirItems_Spec(*nextNode, phyParent, logParent, fi.Name, phyPrefix,
|
|
989
|
-
|
|
696
|
+
addArchivePrefixNew, dirItems, true));
|
|
990
697
|
}
|
|
991
|
-
|
|
698
|
+
|
|
992
699
|
for (i = 0; i < curNode.SubNodes.Size(); i++)
|
|
993
700
|
{
|
|
994
701
|
if (i < needEnterVector.Size())
|
|
@@ -998,23 +705,20 @@ static HRESULT EnumerateDirItems(
|
|
|
998
705
|
FString fullPath = phyPrefix + us2fs(nextNode.Name);
|
|
999
706
|
NFind::CFileInfo fi;
|
|
1000
707
|
|
|
1001
|
-
if (
|
|
1002
|
-
{
|
|
1003
|
-
if (phyPrefix.IsEmpty())
|
|
1004
|
-
fullPath = CHAR_PATH_SEPARATOR;
|
|
1005
|
-
}
|
|
1006
|
-
#ifdef _WIN32
|
|
1007
|
-
else if(phyPrefix.IsEmpty()
|
|
1008
|
-
|| (phyPrefix.Len() == NName::kSuperPathPrefixSize
|
|
1009
|
-
&& IsSuperPath(phyPrefix)))
|
|
708
|
+
if (phyPrefix.IsEmpty())
|
|
1010
709
|
{
|
|
1011
|
-
|
|
1012
|
-
|
|
710
|
+
{
|
|
711
|
+
if (nextNode.Name.IsEmpty())
|
|
712
|
+
fullPath = CHAR_PATH_SEPARATOR;
|
|
713
|
+
#ifdef _WIN32
|
|
714
|
+
else if (NWildcard::IsDriveColonName(nextNode.Name))
|
|
715
|
+
fullPath.Add_PathSepar();
|
|
716
|
+
#endif
|
|
717
|
+
}
|
|
1013
718
|
}
|
|
1014
|
-
#endif
|
|
1015
719
|
|
|
1016
720
|
// we don't want to call fi.Find() for root folder or virtual folder
|
|
1017
|
-
if (
|
|
721
|
+
if (phyPrefix.IsEmpty() && nextNode.Name.IsEmpty()
|
|
1018
722
|
#if defined(_WIN32) && !defined(UNDER_CE)
|
|
1019
723
|
|| IsVirtualFsFolder(phyPrefix, nextNode.Name)
|
|
1020
724
|
#endif
|
|
@@ -1025,23 +729,23 @@ static HRESULT EnumerateDirItems(
|
|
|
1025
729
|
}
|
|
1026
730
|
else
|
|
1027
731
|
{
|
|
1028
|
-
if (!
|
|
732
|
+
if (!fi.Find(fullPath))
|
|
1029
733
|
{
|
|
1030
734
|
if (!nextNode.AreThereIncludeItems())
|
|
1031
735
|
continue;
|
|
1032
|
-
RINOK(dirItems.AddError(fullPath))
|
|
736
|
+
RINOK(dirItems.AddError(fullPath));
|
|
1033
737
|
continue;
|
|
1034
738
|
}
|
|
1035
739
|
|
|
1036
740
|
if (!fi.IsDir())
|
|
1037
741
|
{
|
|
1038
|
-
RINOK(dirItems.AddError(fullPath,
|
|
742
|
+
RINOK(dirItems.AddError(fullPath, (DWORD)E_FAIL));
|
|
1039
743
|
continue;
|
|
1040
744
|
}
|
|
1041
745
|
}
|
|
1042
746
|
|
|
1043
747
|
RINOK(EnumerateDirItems_Spec(nextNode, phyParent, logParent, fi.Name, phyPrefix,
|
|
1044
|
-
UStringVector(), dirItems, false))
|
|
748
|
+
UStringVector(), dirItems, false));
|
|
1045
749
|
}
|
|
1046
750
|
|
|
1047
751
|
return S_OK;
|
|
@@ -1087,7 +791,7 @@ static HRESULT EnumerateDirItems(
|
|
|
1087
791
|
fi.Name = driveName;
|
|
1088
792
|
|
|
1089
793
|
RINOK(EnumerateForItem(fi, curNode, phyParent, logParent, phyPrefix,
|
|
1090
|
-
|
|
794
|
+
addArchivePrefix, dirItems, enterToSubFolders));
|
|
1091
795
|
}
|
|
1092
796
|
return S_OK;
|
|
1093
797
|
}
|
|
@@ -1096,81 +800,43 @@ static HRESULT EnumerateDirItems(
|
|
|
1096
800
|
#endif
|
|
1097
801
|
#endif
|
|
1098
802
|
|
|
803
|
+
NFind::CEnumerator enumerator;
|
|
804
|
+
enumerator.SetDirPrefix(phyPrefix);
|
|
1099
805
|
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
// for (int y = 0; y < 1; y++)
|
|
1103
|
-
{
|
|
1104
|
-
// files.Clear();
|
|
1105
|
-
RINOK(dirItems.EnumerateOneDir(phyPrefix, files))
|
|
1106
|
-
/*
|
|
1107
|
-
FOR_VECTOR (i, files)
|
|
806
|
+
for (unsigned ttt = 0; ; ttt++)
|
|
1108
807
|
{
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
NFind::CFileInfo &fi = files[i];
|
|
808
|
+
NFind::CFileInfo fi;
|
|
809
|
+
bool found;
|
|
810
|
+
if (!enumerator.Next(fi, found))
|
|
1113
811
|
{
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
if (!fi.Find_AfterEnumerator(path))
|
|
1117
|
-
{
|
|
1118
|
-
RINOK(dirItems.AddError(path));
|
|
1119
|
-
continue;
|
|
1120
|
-
}
|
|
1121
|
-
fi.Name = di.Name;
|
|
812
|
+
RINOK(dirItems.AddError(phyPrefix));
|
|
813
|
+
break;
|
|
1122
814
|
}
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
}
|
|
1126
|
-
*/
|
|
1127
|
-
}
|
|
815
|
+
if (!found)
|
|
816
|
+
break;
|
|
1128
817
|
|
|
1129
|
-
|
|
1130
|
-
{
|
|
1131
|
-
#ifdef _WIN32
|
|
1132
|
-
const NFind::CFileInfo &fi = files[i];
|
|
1133
|
-
#else
|
|
1134
|
-
const NFind::CFileInfo &fi = files[i];
|
|
1135
|
-
/*
|
|
1136
|
-
NFind::CFileInfo fi;
|
|
818
|
+
if (dirItems.Callback && (ttt & kScanProgressStepMask) == kScanProgressStepMask)
|
|
1137
819
|
{
|
|
1138
|
-
|
|
1139
|
-
const FString path = phyPrefix + di.Name;
|
|
1140
|
-
if (!fi.Find_AfterEnumerator(path))
|
|
1141
|
-
{
|
|
1142
|
-
RINOK(dirItems.AddError(path));
|
|
1143
|
-
continue;
|
|
1144
|
-
}
|
|
1145
|
-
fi.Name = di.Name;
|
|
820
|
+
RINOK(dirItems.ScanProgress(phyPrefix));
|
|
1146
821
|
}
|
|
1147
|
-
*/
|
|
1148
|
-
#endif
|
|
1149
822
|
|
|
1150
823
|
RINOK(EnumerateForItem(fi, curNode, phyParent, logParent, phyPrefix,
|
|
1151
|
-
|
|
1152
|
-
if (dirItems.Callback && (i & kScanProgressStepMask) == kScanProgressStepMask)
|
|
1153
|
-
{
|
|
1154
|
-
RINOK(dirItems.ScanProgress(phyPrefix))
|
|
1155
|
-
}
|
|
824
|
+
addArchivePrefix, dirItems, enterToSubFolders));
|
|
1156
825
|
}
|
|
1157
826
|
|
|
1158
827
|
return S_OK;
|
|
1159
828
|
}
|
|
1160
829
|
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
830
|
HRESULT EnumerateItems(
|
|
1165
831
|
const NWildcard::CCensor &censor,
|
|
1166
832
|
const NWildcard::ECensorPathMode pathMode,
|
|
1167
|
-
const UString &addPathPrefix,
|
|
833
|
+
const UString &addPathPrefix,
|
|
1168
834
|
CDirItems &dirItems)
|
|
1169
835
|
{
|
|
1170
836
|
FOR_VECTOR (i, censor.Pairs)
|
|
1171
837
|
{
|
|
1172
838
|
const NWildcard::CPair &pair = censor.Pairs[i];
|
|
1173
|
-
|
|
839
|
+
int phyParent = pair.Prefix.IsEmpty() ? -1 : dirItems.AddPrefix(-1, -1, pair.Prefix);
|
|
1174
840
|
int logParent = -1;
|
|
1175
841
|
|
|
1176
842
|
if (pathMode == NWildcard::k_AbsPath)
|
|
@@ -1178,94 +844,45 @@ HRESULT EnumerateItems(
|
|
|
1178
844
|
else
|
|
1179
845
|
{
|
|
1180
846
|
if (!addPathPrefix.IsEmpty())
|
|
1181
|
-
logParent =
|
|
847
|
+
logParent = dirItems.AddPrefix(-1, -1, addPathPrefix);
|
|
1182
848
|
}
|
|
1183
849
|
|
|
1184
850
|
RINOK(EnumerateDirItems(pair.Head, phyParent, logParent, us2fs(pair.Prefix), UStringVector(),
|
|
1185
851
|
dirItems,
|
|
1186
852
|
false // enterToSubFolders
|
|
1187
|
-
))
|
|
853
|
+
));
|
|
1188
854
|
}
|
|
1189
855
|
dirItems.ReserveDown();
|
|
1190
856
|
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
#ifndef _WIN32
|
|
1196
|
-
RINOK(dirItems.FillDeviceSizes())
|
|
1197
|
-
#endif
|
|
857
|
+
#if defined(_WIN32) && !defined(UNDER_CE)
|
|
858
|
+
dirItems.FillFixedReparse();
|
|
859
|
+
#endif
|
|
1198
860
|
|
|
1199
861
|
return S_OK;
|
|
1200
862
|
}
|
|
1201
863
|
|
|
1202
|
-
|
|
1203
864
|
#if defined(_WIN32) && !defined(UNDER_CE)
|
|
1204
865
|
|
|
1205
|
-
|
|
866
|
+
void CDirItems::FillFixedReparse()
|
|
1206
867
|
{
|
|
868
|
+
/* imagex/WIM reduces absolute pathes in links (raparse data),
|
|
869
|
+
if we archive non root folder. We do same thing here */
|
|
870
|
+
|
|
871
|
+
if (!SymLinks)
|
|
872
|
+
return;
|
|
873
|
+
|
|
1207
874
|
FOR_VECTOR(i, Items)
|
|
1208
875
|
{
|
|
1209
876
|
CDirItem &item = Items[i];
|
|
1210
|
-
|
|
1211
|
-
if (!SymLinks)
|
|
1212
|
-
{
|
|
1213
|
-
// continue; // for debug
|
|
1214
|
-
if (!item.Has_Attrib_ReparsePoint())
|
|
1215
|
-
continue;
|
|
1216
|
-
/*
|
|
1217
|
-
We want to get properties of target file instead of properies of symbolic link.
|
|
1218
|
-
Probably this code is unused, because
|
|
1219
|
-
CFileInfo::Find(with followLink = true) called Fill_From_ByHandleFileInfo() already.
|
|
1220
|
-
*/
|
|
1221
|
-
// if (item.IsDir()) continue;
|
|
1222
|
-
const FString phyPath = GetPhyPath(i);
|
|
1223
|
-
NFind::CFileInfo fi;
|
|
1224
|
-
if (fi.Fill_From_ByHandleFileInfo(phyPath)) // item.IsDir()
|
|
1225
|
-
{
|
|
1226
|
-
item.Size = fi.Size;
|
|
1227
|
-
item.CTime = fi.CTime;
|
|
1228
|
-
item.ATime = fi.ATime;
|
|
1229
|
-
item.MTime = fi.MTime;
|
|
1230
|
-
item.Attrib = fi.Attrib;
|
|
1231
|
-
continue;
|
|
1232
|
-
}
|
|
1233
|
-
RINOK(AddError(phyPath))
|
|
1234
|
-
continue;
|
|
1235
|
-
}
|
|
1236
|
-
|
|
1237
|
-
// (SymLinks == true)
|
|
1238
877
|
if (item.ReparseData.Size() == 0)
|
|
1239
878
|
continue;
|
|
1240
|
-
// if (item.Size == 0)
|
|
1241
|
-
{
|
|
1242
|
-
// 20.03: we use Reparse Data instead of real data
|
|
1243
|
-
item.Size = item.ReparseData.Size();
|
|
1244
|
-
}
|
|
1245
879
|
|
|
1246
880
|
CReparseAttr attr;
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
const FString phyPath = GetPhyPath(i);
|
|
1250
|
-
AddError(phyPath, attr.ErrorCode);
|
|
881
|
+
DWORD errorCode = 0;
|
|
882
|
+
if (!attr.Parse(item.ReparseData, item.ReparseData.Size(), errorCode))
|
|
1251
883
|
continue;
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
/* imagex/WIM reduces absolute paths in links (raparse data),
|
|
1255
|
-
if we archive non root folder. We do same thing here */
|
|
1256
|
-
|
|
1257
|
-
// bool isWSL = false;
|
|
1258
|
-
if (attr.IsSymLink_WSL())
|
|
1259
|
-
{
|
|
1260
|
-
// isWSL = true;
|
|
1261
|
-
// we don't change WSL symlinks
|
|
884
|
+
if (attr.IsRelative())
|
|
1262
885
|
continue;
|
|
1263
|
-
}
|
|
1264
|
-
else
|
|
1265
|
-
{
|
|
1266
|
-
if (attr.IsRelative_Win())
|
|
1267
|
-
continue;
|
|
1268
|
-
}
|
|
1269
886
|
|
|
1270
887
|
const UString &link = attr.GetPath();
|
|
1271
888
|
if (!IsDrivePath(link))
|
|
@@ -1275,7 +892,7 @@ HRESULT CDirItems::FillFixedReparse()
|
|
|
1275
892
|
FString fullPathF;
|
|
1276
893
|
if (!NDir::MyGetFullPathName(GetPhyPath(i), fullPathF))
|
|
1277
894
|
continue;
|
|
1278
|
-
|
|
895
|
+
UString fullPath = fs2us(fullPathF);
|
|
1279
896
|
const UString logPath = GetLogPath(i);
|
|
1280
897
|
if (logPath.Len() >= fullPath.Len())
|
|
1281
898
|
continue;
|
|
@@ -1286,177 +903,26 @@ HRESULT CDirItems::FillFixedReparse()
|
|
|
1286
903
|
if (!IsPathSepar(prefix.Back()))
|
|
1287
904
|
continue;
|
|
1288
905
|
|
|
1289
|
-
|
|
906
|
+
unsigned rootPrefixSize = GetRootPrefixSize(prefix);
|
|
1290
907
|
if (rootPrefixSize == 0)
|
|
1291
908
|
continue;
|
|
1292
909
|
if (rootPrefixSize == prefix.Len())
|
|
1293
910
|
continue; // simple case: paths are from root
|
|
911
|
+
|
|
1294
912
|
if (link.Len() <= prefix.Len())
|
|
1295
913
|
continue;
|
|
914
|
+
|
|
1296
915
|
if (CompareFileNames(link.Left(prefix.Len()), prefix) != 0)
|
|
1297
916
|
continue;
|
|
1298
917
|
|
|
1299
918
|
UString newLink = prefix.Left(rootPrefixSize);
|
|
1300
919
|
newLink += link.Ptr(prefix.Len());
|
|
1301
920
|
|
|
1302
|
-
CByteBuffer
|
|
1303
|
-
|
|
1304
|
-
if (isWSL)
|
|
1305
|
-
{
|
|
1306
|
-
Convert_WinPath_to_WslLinuxPath(newLink, true); // is absolute : change it
|
|
1307
|
-
FillLinkData_WslLink(data, newLink);
|
|
1308
|
-
}
|
|
1309
|
-
else
|
|
1310
|
-
*/
|
|
1311
|
-
FillLinkData_WinLink(data, newLink, !attr.IsMountPoint());
|
|
1312
|
-
if (data.Size() == 0)
|
|
921
|
+
CByteBuffer data;
|
|
922
|
+
if (!FillLinkData(data, newLink, attr.IsSymLink()))
|
|
1313
923
|
continue;
|
|
1314
|
-
|
|
924
|
+
item.ReparseData2 = data;
|
|
1315
925
|
}
|
|
1316
|
-
return S_OK;
|
|
1317
|
-
}
|
|
1318
|
-
|
|
1319
|
-
#endif
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
#ifndef _WIN32
|
|
1323
|
-
|
|
1324
|
-
HRESULT CDirItems::FillDeviceSizes()
|
|
1325
|
-
{
|
|
1326
|
-
{
|
|
1327
|
-
FOR_VECTOR (i, Items)
|
|
1328
|
-
{
|
|
1329
|
-
CDirItem &item = Items[i];
|
|
1330
|
-
|
|
1331
|
-
if (S_ISBLK(item.mode) && item.Size == 0)
|
|
1332
|
-
{
|
|
1333
|
-
const FString phyPath = GetPhyPath(i);
|
|
1334
|
-
NIO::CInFile inFile;
|
|
1335
|
-
inFile.PreserveATime = true;
|
|
1336
|
-
if (inFile.OpenShared(phyPath, ShareForWrite)) // fixme: OpenShared ??
|
|
1337
|
-
{
|
|
1338
|
-
UInt64 size = 0;
|
|
1339
|
-
if (inFile.GetLength(size))
|
|
1340
|
-
item.Size = size;
|
|
1341
|
-
}
|
|
1342
|
-
}
|
|
1343
|
-
if (StoreOwnerName)
|
|
1344
|
-
{
|
|
1345
|
-
OwnerNameMap.Add_UInt32(item.uid);
|
|
1346
|
-
OwnerGroupMap.Add_UInt32(item.gid);
|
|
1347
|
-
}
|
|
1348
|
-
}
|
|
1349
|
-
}
|
|
1350
|
-
|
|
1351
|
-
if (StoreOwnerName)
|
|
1352
|
-
{
|
|
1353
|
-
UString u;
|
|
1354
|
-
AString a;
|
|
1355
|
-
{
|
|
1356
|
-
FOR_VECTOR (i, OwnerNameMap.Numbers)
|
|
1357
|
-
{
|
|
1358
|
-
// 200K/sec speed
|
|
1359
|
-
u.Empty();
|
|
1360
|
-
const passwd *pw = getpwuid(OwnerNameMap.Numbers[i]);
|
|
1361
|
-
// printf("\ngetpwuid=%s\n", pw->pw_name);
|
|
1362
|
-
if (pw)
|
|
1363
|
-
{
|
|
1364
|
-
a = pw->pw_name;
|
|
1365
|
-
ConvertUTF8ToUnicode(a, u);
|
|
1366
|
-
}
|
|
1367
|
-
OwnerNameMap.Strings.Add(u);
|
|
1368
|
-
}
|
|
1369
|
-
}
|
|
1370
|
-
{
|
|
1371
|
-
FOR_VECTOR (i, OwnerGroupMap.Numbers)
|
|
1372
|
-
{
|
|
1373
|
-
u.Empty();
|
|
1374
|
-
const group *gr = getgrgid(OwnerGroupMap.Numbers[i]);
|
|
1375
|
-
if (gr)
|
|
1376
|
-
{
|
|
1377
|
-
// printf("\ngetgrgid %d %s\n", OwnerGroupMap.Numbers[i], gr->gr_name);
|
|
1378
|
-
a = gr->gr_name;
|
|
1379
|
-
ConvertUTF8ToUnicode(a, u);
|
|
1380
|
-
}
|
|
1381
|
-
OwnerGroupMap.Strings.Add(u);
|
|
1382
|
-
}
|
|
1383
|
-
}
|
|
1384
|
-
|
|
1385
|
-
FOR_VECTOR (i, Items)
|
|
1386
|
-
{
|
|
1387
|
-
CDirItem &item = Items[i];
|
|
1388
|
-
{
|
|
1389
|
-
const int index = OwnerNameMap.Find(item.uid);
|
|
1390
|
-
if (index < 0) throw 1;
|
|
1391
|
-
item.OwnerNameIndex = index;
|
|
1392
|
-
}
|
|
1393
|
-
{
|
|
1394
|
-
const int index = OwnerGroupMap.Find(item.gid);
|
|
1395
|
-
if (index < 0) throw 1;
|
|
1396
|
-
item.OwnerGroupIndex = index;
|
|
1397
|
-
}
|
|
1398
|
-
}
|
|
1399
|
-
}
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
// if (NeedOwnerNames)
|
|
1403
|
-
{
|
|
1404
|
-
/*
|
|
1405
|
-
{
|
|
1406
|
-
for (unsigned i = 0 ; i < 10000; i++)
|
|
1407
|
-
{
|
|
1408
|
-
const passwd *pw = getpwuid(i);
|
|
1409
|
-
if (pw)
|
|
1410
|
-
{
|
|
1411
|
-
UString u;
|
|
1412
|
-
ConvertUTF8ToUnicode(AString(pw->pw_name), u);
|
|
1413
|
-
OwnerNameMap.Add(i, u);
|
|
1414
|
-
OwnerNameMap.Add(i, u);
|
|
1415
|
-
OwnerNameMap.Add(i, u);
|
|
1416
|
-
}
|
|
1417
|
-
const group *gr = getgrgid(i);
|
|
1418
|
-
if (gr)
|
|
1419
|
-
{
|
|
1420
|
-
// we can use utf-8 here.
|
|
1421
|
-
UString u;
|
|
1422
|
-
ConvertUTF8ToUnicode(AString(gr->gr_name), u);
|
|
1423
|
-
OwnerGroupMap.Add(i, u);
|
|
1424
|
-
}
|
|
1425
|
-
}
|
|
1426
|
-
}
|
|
1427
|
-
*/
|
|
1428
|
-
/*
|
|
1429
|
-
{
|
|
1430
|
-
FOR_VECTOR (i, OwnerNameMap.Strings)
|
|
1431
|
-
{
|
|
1432
|
-
AString s;
|
|
1433
|
-
ConvertUnicodeToUTF8(OwnerNameMap.Strings[i], s);
|
|
1434
|
-
printf("\n%5d %s", (unsigned)OwnerNameMap.Numbers[i], s.Ptr());
|
|
1435
|
-
}
|
|
1436
|
-
}
|
|
1437
|
-
{
|
|
1438
|
-
printf("\n\n=========Groups\n");
|
|
1439
|
-
FOR_VECTOR (i, OwnerGroupMap.Strings)
|
|
1440
|
-
{
|
|
1441
|
-
AString s;
|
|
1442
|
-
ConvertUnicodeToUTF8(OwnerGroupMap.Strings[i], s);
|
|
1443
|
-
printf("\n%5d %s", (unsigned)OwnerGroupMap.Numbers[i], s.Ptr());
|
|
1444
|
-
}
|
|
1445
|
-
}
|
|
1446
|
-
*/
|
|
1447
|
-
}
|
|
1448
|
-
/*
|
|
1449
|
-
for (unsigned i = 0 ; i < 100000000; i++)
|
|
1450
|
-
{
|
|
1451
|
-
// const passwd *pw = getpwuid(1000);
|
|
1452
|
-
// pw = pw;
|
|
1453
|
-
int pos = OwnerNameMap.Find(1000);
|
|
1454
|
-
if (pos < 0 - (int)i)
|
|
1455
|
-
throw 1;
|
|
1456
|
-
}
|
|
1457
|
-
*/
|
|
1458
|
-
|
|
1459
|
-
return S_OK;
|
|
1460
926
|
}
|
|
1461
927
|
|
|
1462
928
|
#endif
|
|
@@ -1482,7 +948,7 @@ HRESULT EnumerateDirItemsAndSort(
|
|
|
1482
948
|
{
|
|
1483
949
|
HRESULT res = EnumerateItems(censor, censorPathMode, addPathPrefix, dirItems);
|
|
1484
950
|
st = dirItems.Stat;
|
|
1485
|
-
RINOK(res)
|
|
951
|
+
RINOK(res);
|
|
1486
952
|
}
|
|
1487
953
|
|
|
1488
954
|
FOR_VECTOR (i, dirItems.Items)
|
|
@@ -1532,18 +998,11 @@ HRESULT EnumerateDirItemsAndSort(
|
|
|
1532
998
|
|
|
1533
999
|
#ifdef _WIN32
|
|
1534
1000
|
|
|
1535
|
-
static bool IsDotsName(const wchar_t *s)
|
|
1536
|
-
{
|
|
1537
|
-
return s[0] == '.' && (s[1] == 0 || (s[1] == '.' && s[2] == 0));
|
|
1538
|
-
}
|
|
1539
|
-
|
|
1540
1001
|
// This code converts all short file names to long file names.
|
|
1541
1002
|
|
|
1542
1003
|
static void ConvertToLongName(const UString &prefix, UString &name)
|
|
1543
1004
|
{
|
|
1544
|
-
if (name.IsEmpty()
|
|
1545
|
-
|| DoesNameContainWildcard(name)
|
|
1546
|
-
|| IsDotsName(name))
|
|
1005
|
+
if (name.IsEmpty() || DoesNameContainWildcard(name))
|
|
1547
1006
|
return;
|
|
1548
1007
|
NFind::CFileInfo fi;
|
|
1549
1008
|
const FString path (us2fs(prefix + name));
|