Skip to content

Commit 4c752d8

Browse files
authored
Merge pull request #391 from sisong/dev
hdiffz added "-c-ldef" ; used libdeflate compressor, compatible with zlib.
2 parents 619dcc7 + 33f3517 commit 4c752d8

File tree

32 files changed

+1839
-167
lines changed

32 files changed

+1839
-167
lines changed

.github/workflows/ci.yml

+21-11
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,29 @@ jobs:
1010
- uses: actions/checkout@v2
1111
- name: makeInit
1212
run: |
13-
make LZMA=0 ZSTD=0 MD5=0 -j
13+
make LDEF=0 LZMA=0 ZSTD=0 MD5=0 -j
1414
make clean
15-
- name: makeUnDef
15+
- name: makeNoAll
1616
run: |
1717
git clone --depth=1 https://github.com/sisong/libmd5.git ../libmd5
1818
git clone --depth=1 https://github.com/sisong/lzma.git ../lzma
1919
git clone --depth=1 https://github.com/sisong/zstd.git ../zstd
20-
make DIR_DIFF=0 MT=0 BSD=0 VCD=0 ZLIB=0 BZIP2=0 -j
20+
make DIR_DIFF=0 MT=0 BSD=0 VCD=0 ZLIB=0 LDEF=0 BZIP2=0 -j
21+
make clean
22+
- name: makeNoldef
23+
run: |
24+
make LDEF=0 -j
2125
make clean
2226
- name: makeAll
2327
run: |
28+
git clone --depth=1 https://github.com/sisong/zlib.git ../zlib
29+
git clone --depth=1 https://github.com/sisong/libdeflate.git ../libdeflate
2430
make -j
2531
make clean
26-
- name: makeByCode
32+
- name: makeByBz2Code
2733
run: |
28-
git clone --depth=1 https://github.com/sisong/zlib.git ../zlib
2934
git clone --depth=1 https://github.com/sisong/bzip2.git ../bzip2
30-
make ZLIB=1 BZIP2=1 -j
35+
make BZIP2=1 -j
3136
3237
clang-build:
3338
runs-on: ubuntu-latest
@@ -41,6 +46,8 @@ jobs:
4146
git clone --depth=1 https://github.com/sisong/libmd5.git ../libmd5
4247
git clone --depth=1 https://github.com/sisong/lzma.git ../lzma
4348
git clone --depth=1 https://github.com/sisong/zstd.git ../zstd
49+
git clone --depth=1 https://github.com/sisong/zlib.git ../zlib
50+
git clone --depth=1 https://github.com/sisong/libdeflate.git ../libdeflate
4451
- name: makeByClang
4552
run: |
4653
make CL=1 -j
@@ -54,6 +61,8 @@ jobs:
5461
git clone --depth=1 https://github.com/sisong/libmd5.git ../libmd5
5562
git clone --depth=1 https://github.com/sisong/lzma.git ../lzma
5663
git clone --depth=1 https://github.com/sisong/zstd.git ../zstd
64+
git clone --depth=1 https://github.com/sisong/zlib.git ../zlib
65+
git clone --depth=1 https://github.com/sisong/libdeflate.git ../libdeflate
5766
- name: buildByXcode
5867
run: |
5968
xcodebuild -workspace builds/xcode/HDiffPatch.xcworkspace -scheme hdiffz -configuration Release OBJROOT=$PWD/bin SYMROOT=$PWD/bin
@@ -72,7 +81,7 @@ jobs:
7281
git clone --depth=1 https://github.com/sisong/lzma.git ../lzma
7382
git clone --depth=1 https://github.com/sisong/zstd.git ../zstd
7483
cd ./builds/android_ndk_jni_mk
75-
ndk-build NDK_PROJECT_PATH=. APP_BUILD_SCRIPT=./Android.mk NDK_APPLICATION_MK=./Application.mk APP_PLATFORM=android-16 APP_ABI=all
84+
ndk-build NDK_PROJECT_PATH=. NDK_APPLICATION_MK=./Application.mk APP_PLATFORM=android-16 APP_ABI=all
7685
7786
windows-ndk-build:
7887
runs-on: windows-latest
@@ -87,7 +96,7 @@ jobs:
8796
git clone --depth=1 https://github.com/sisong/zstd.git ../zstd
8897
git clone --depth=1 https://github.com/sisong/bzip2.git ../bzip2
8998
cd ./builds/android_ndk_jni_mk
90-
ndk-build NDK_PROJECT_PATH=. APP_BUILD_SCRIPT=./Android.mk NDK_APPLICATION_MK=./Application.mk BSD=1 BZIP2=1
99+
ndk-build NDK_PROJECT_PATH=. NDK_APPLICATION_MK=./Application.mk BSD=1 BZIP2=1
91100
92101
ubuntu-ndk-build:
93102
runs-on: ubuntu-latest
@@ -103,7 +112,7 @@ jobs:
103112
git clone --depth=1 https://github.com/sisong/bzip2.git ../bzip2
104113
git clone --depth=1 https://github.com/sisong/zstd.git ../zstd
105114
cd ./builds/android_ndk_jni_mk
106-
ndk-build NDK_PROJECT_PATH=. APP_BUILD_SCRIPT=./Android.mk NDK_APPLICATION_MK=./Application.mk BSD=1 BZIP2=1 VCD=1
115+
ndk-build NDK_PROJECT_PATH=. NDK_APPLICATION_MK=./Application.mk BSD=1 BZIP2=1 VCD=1
107116
108117
vc-build:
109118
runs-on: windows-latest
@@ -114,11 +123,12 @@ jobs:
114123
msbuild-architecture: x64
115124
- name: initAndClone
116125
run: |
117-
git clone --depth=1 https://github.com/sisong/zlib.git ../zlib
118-
git clone --depth=1 https://github.com/sisong/bzip2.git ../bzip2
119126
git clone --depth=1 https://github.com/sisong/libmd5.git ../libmd5
120127
git clone --depth=1 https://github.com/sisong/lzma.git ../lzma
121128
git clone --depth=1 https://github.com/sisong/zstd.git ../zstd
129+
git clone --depth=1 https://github.com/sisong/bzip2.git ../bzip2
130+
git clone --depth=1 https://github.com/sisong/zlib.git ../zlib
131+
git clone --depth=1 https://github.com/sisong/libdeflate.git ../libdeflate
122132
- name: buildByVC
123133
run: |
124134
msbuild builds/vc/HDiffPatch.sln -t:rebuild -verbosity:diag -property:Configuration=Release

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
full changelog at: https://github.com/sisong/HDiffPatch/commits
44

5+
## [v4.8.0](https://github.com/sisong/HDiffPatch/tree/v4.8.0) - 2024-07-26
6+
### Added
7+
* cmdline hdiffz support option "-c-ldef-{1..12}"; used libdeflate compressor, compatible with -c-zlib, faster or better than zlib;
8+
(hpatchz now default closed libdeflate decompressor)
9+
* add plugin ldefCompressPlugin, pldefCompressPlugin, ldefDecompressPlugin;
10+
### Changed
11+
* released Android libhpatchz.so support Android 15 with 16KB page size;
12+
513
## [v4.7.0](https://github.com/sisong/HDiffPatch/tree/v4.7.0) - 2024-07-12
614
### Added
715
* cmdline hdiffz support option "-BSD -SD", to create diffFile compatible with another BSDIFF format "ENDSLEY/BSDIFF43", https://github.com/mendsley/bsdiff ; patch support this format from v4.6.7
@@ -54,7 +62,7 @@ if diffFile created by empty oldPath, then extract with default option `$selfExt
5462

5563
## [v4.3.0](https://github.com/sisong/HDiffPatch/tree/v4.3.0) - 2022-09-23
5664
### Changed
57-
* recode some patch error code: decompresser errors, file error, disk space full error, jni error
65+
* recode some patch error code: decompressor errors, file error, disk space full error, jni error
5866

5967
## [v4.2.0](https://github.com/sisong/HDiffPatch/tree/v4.2.0) - 2022-05-15
6068
### Added

Makefile

+55-14
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,22 @@
11
# args
22
DIR_DIFF := 1
33
MT := 1
4+
# used libdeflate?
5+
LDEF := 1
46
# 0: not need zlib; 1: compile zlib source code; 2: used -lz to link zlib lib;
5-
ZLIB := 2
7+
ifeq ($(LDEF),0)
8+
ZLIB := 2
9+
else
10+
ZLIB := 1
11+
endif
612
# 0: not need lzma; 1: compile lzma source code; 2: used -llzma to link lzma lib;
713
LZMA := 1
14+
# lzma decompressor used arm64 asm optimize?
815
ARM64ASM := 0
9-
RISCV32 := 0
16+
# lzma only can used software CRC? (no hardware CRC)
17+
USE_CRC_EMU := 0
18+
# supported atomic uint64?
19+
ATOMIC_U64 := 1
1020
# 0: not need zstd; 1: compile zstd source code; 2: used -lzstd to link zstd lib;
1121
ZSTD := 1
1222
MD5 := 1
@@ -17,9 +27,9 @@ CL := 0
1727
M32 := 0
1828
# build for out min size
1929
MINS := 0
20-
# support VCDIFF?
30+
# need support VCDIFF?
2131
VCD := 1
22-
# support bsdiff&bspatch?
32+
# need support bsdiff&bspatch?
2333
BSD := 1
2434
ifeq ($(OS),Windows_NT) # mingw?
2535
CC := gcc
@@ -28,10 +38,21 @@ else
2838
# 0: not need bzip2 (must BSD=0); 1: compile bzip2 source code; 2: used -lbz2 to link bzip2 lib;
2939
BZIP2 := 2
3040
endif
31-
ifeq ($(BZIP2),0)
32-
ifeq ($(BSD),0)
41+
ifeq ($(BSD),0)
42+
else
43+
ifeq ($(BZIP2),0)
44+
$(error error: support bsdiff need BZIP2! set BSD=0 or BZIP2>0 continue)
45+
endif
46+
endif
47+
48+
ifeq ($(LDEF),0)
49+
else
50+
ifeq ($(ZLIB),2)
51+
$(error error: now libdeflate decompressor not support -lz! need zlib source code, set ZLIB=1 continue)
3352
else
34-
$(error error: support bsdiff need BZIP2! set BSD=0 continue)
53+
ifeq ($(ZLIB),0)
54+
$(warning warning: libdeflate can't support all of the deflate code, when no zlib source code)
55+
endif
3556
endif
3657
endif
3758

@@ -159,7 +180,7 @@ ifeq ($(BZIP2),1) # http://www.bzip.org https://github.com/sisong/bzip2
159180
endif
160181

161182
ZLIB_PATH := ../zlib
162-
ifeq ($(ZLIB),1) # http://zlib.net https://github.com/sisong/zlib
183+
ifeq ($(ZLIB),1) # https://github.com/sisong/zlib/tree/bit_pos_padding
163184
HPATCH_OBJ += $(ZLIB_PATH)/adler32.o \
164185
$(ZLIB_PATH)/crc32.o \
165186
$(ZLIB_PATH)/inffast.o \
@@ -170,6 +191,14 @@ ifeq ($(ZLIB),1) # http://zlib.net https://github.com/sisong/zlib
170191
HDIFF_OBJ += $(ZLIB_PATH)/deflate.o
171192
endif
172193

194+
LDEF_PATH := ../libdeflate
195+
ifeq ($(LDEF),1) # https://github.com/sisong/libdeflate/tree/stream-mt
196+
HPATCH_OBJ += $(LDEF_PATH)/lib/deflate_decompress.o\
197+
$(LDEF_PATH)/lib/utils.o \
198+
$(LDEF_PATH)/lib/x86/cpu_features.o
199+
HDIFF_OBJ += $(LDEF_PATH)/lib/deflate_compress.o
200+
endif
201+
173202
HDIFF_OBJ += \
174203
hdiffz_import_patch.o \
175204
libHDiffPatch/HPatchLite/hpatch_lite.o \
@@ -213,8 +242,7 @@ DEF_FLAGS := \
213242
-D_IS_NEED_DEFAULT_CompressPlugin=0 \
214243
-D_IS_NEED_ALL_ChecksumPlugin=0 \
215244
-D_IS_NEED_DEFAULT_ChecksumPlugin=0
216-
ifeq ($(RISCV32),0)
217-
else
245+
ifeq ($(ATOMIC_U64),0)
218246
DEF_FLAGS += -D_IS_NO_ATOMIC_U64=1
219247
endif
220248
ifeq ($(M32),0)
@@ -243,7 +271,19 @@ ifeq ($(ZLIB),0)
243271
else
244272
DEF_FLAGS += -D_CompressPlugin_zlib
245273
ifeq ($(ZLIB),1)
246-
DEF_FLAGS += -I$(ZLIB_PATH)
274+
DEF_FLAGS += -I$(ZLIB_PATH)
275+
endif
276+
endif
277+
ifeq ($(LDEF),0)
278+
else
279+
DEF_FLAGS += -D_CompressPlugin_ldef
280+
ifeq ($(LDEF),1)
281+
DEF_FLAGS += -I$(LDEF_PATH)
282+
endif
283+
ifeq ($(ZLIB),1)
284+
DEF_FLAGS += -D_CompressPlugin_ldef_is_use_zlib=1
285+
else
286+
DEF_FLAGS += -D_CompressPlugin_ldef_is_use_zlib=0
247287
endif
248288
endif
249289
ifeq ($(DIR_DIFF),0)
@@ -284,9 +324,10 @@ else
284324
else
285325
DEF_FLAGS += -DZ7_LZMA_DEC_OPT
286326
endif
287-
ifeq ($(VCD),0)
288-
else
289-
DEF_FLAGS += -DUSE_CRC_EMU
327+
ifneq ($(VCD),0)
328+
ifneq ($(USE_CRC_EMU),0)
329+
DEF_FLAGS += -DUSE_CRC_EMU
330+
endif
290331
endif
291332
endif
292333
endif

README.md

+11-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# [HDiffPatch]
2-
[![release](https://img.shields.io/badge/release-v4.7.0-blue.svg)](https://github.com/sisong/HDiffPatch/releases)
2+
[![release](https://img.shields.io/badge/release-v4.8.0-blue.svg)](https://github.com/sisong/HDiffPatch/releases)
33
[![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/sisong/HDiffPatch/blob/master/LICENSE)
44
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-blue.svg)](https://github.com/sisong/HDiffPatch/pulls)
55
[![+issue Welcome](https://img.shields.io/github/issues-raw/sisong/HDiffPatch?color=green&label=%2Bissue%20welcome)](https://github.com/sisong/HDiffPatch/issues)
@@ -50,17 +50,19 @@ apply the delta:
5050
`$ cd <dir>/HDiffPatch`
5151
### Linux or MacOS X ###
5252
Try:
53-
`$ make LZMA=0 ZSTD=0 MD5=0`
53+
`$ make LDEF=0 LZMA=0 ZSTD=0 MD5=0`
5454
bzip2 : if the build fails with `fatal error: bzlib.h: No such file or directory`, use your system's package manager to install the libbz2 package and try again; or download & make with libbz2 source code:
5555
```
5656
$ git clone https://github.com/sisong/bzip2.git ../bzip2
57-
$ make LZMA=0 ZSTD=0 MD5=0 BZIP2=1
57+
$ make LDEF=0 LZMA=0 ZSTD=0 MD5=0 BZIP2=1
5858
```
59-
if need lzma zstd & md5 support, Try:
59+
if need lzma zstd & md5 ... default support, Try:
6060
```
6161
$ git clone https://github.com/sisong/libmd5.git ../libmd5
6262
$ git clone https://github.com/sisong/lzma.git ../lzma
6363
$ git clone https://github.com/sisong/zstd.git ../zstd
64+
$ git clone https://github.com/sisong/zlib.git ../zlib
65+
$ git clone https://github.com/sisong/libdeflate.git ../libdeflate
6466
$ make
6567
```
6668
Tip: You can use `$ make -j` to compile in parallel.
@@ -72,6 +74,7 @@ $ git clone https://github.com/sisong/libmd5.git ../libmd5
7274
$ git clone https://github.com/sisong/lzma.git ../lzma
7375
$ git clone https://github.com/sisong/zstd.git ../zstd
7476
$ git clone https://github.com/sisong/zlib.git ../zlib
77+
$ git clone https://github.com/sisong/libdeflate.git ../libdeflate
7578
$ git clone https://github.com/sisong/bzip2.git ../bzip2
7679
```
7780

@@ -149,11 +152,14 @@ options:
149152
-c-zlib[-{1..9}[-dictBits]] DEFAULT level 9
150153
dictBits can 9--15, DEFAULT 15.
151154
support run by multi-thread parallel, fast!
155+
-c-ldef[-{1..12}] DEFAULT level 12
156+
compatible with -c-zlib, faster or better compress than zlib;
157+
used libdeflate compressor, & dictBits always 15.
158+
support run by multi-thread parallel, fast!
152159
-c-bzip2[-{1..9}] (or -bz2) DEFAULT level 9
153160
-c-pbzip2[-{1..9}] (or -pbz2) DEFAULT level 8
154161
support run by multi-thread parallel, fast!
155162
NOTE: code not compatible with it compressed by -c-bzip2!
156-
and code size may be larger than if it compressed by -c-bzip2.
157163
-c-lzma[-{0..9}[-dictSize]] DEFAULT level 7
158164
dictSize can like 4096 or 4k or 4m or 128m etc..., DEFAULT 8m
159165
support run by 2-thread parallel.

README_cn.md

+13-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# [HDiffPatch]
2-
[![release](https://img.shields.io/badge/release-v4.7.0-blue.svg)](https://github.com/sisong/HDiffPatch/releases)
2+
[![release](https://img.shields.io/badge/release-v4.8.0-blue.svg)](https://github.com/sisong/HDiffPatch/releases)
33
[![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/sisong/HDiffPatch/blob/master/LICENSE)
44
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-blue.svg)](https://github.com/sisong/HDiffPatch/pulls)
55
[![+issue Welcome](https://img.shields.io/github/issues-raw/sisong/HDiffPatch?color=green&label=%2Bissue%20welcome)](https://github.com/sisong/HDiffPatch/issues)
@@ -50,17 +50,19 @@
5050
`$ cd <dir>/HDiffPatch`
5151
### Linux or MacOS X ###
5252
试试:
53-
`$ make LZMA=0 ZSTD=0 MD5=0`
53+
`$ make LDEF=0 LZMA=0 ZSTD=0 MD5=0`
5454
bzip2 : 如果编译失败,显示 `fatal error: bzlib.h: No such file or directory`,请使用系统的包管理器安装libbz2,然后再试一次;或者下载并使用libbz2源代码来编译:
5555
```
5656
$ git clone https://github.com/sisong/bzip2.git ../bzip2
57-
$ make LZMA=0 ZSTD=0 MD5=0 BZIP2=1
57+
$ make LDEF=0 LZMA=0 ZSTD=0 MD5=0 BZIP2=1
5858
```
59-
如果需要支持 lzma、zstd 和 md5,试试:
59+
如果需要支持 lzma、zstd 和 md5 等 默认编译设置,试试:
6060
```
6161
$ git clone https://github.com/sisong/libmd5.git ../libmd5
6262
$ git clone https://github.com/sisong/lzma.git ../lzma
6363
$ git clone https://github.com/sisong/zstd.git ../zstd
64+
$ git clone https://github.com/sisong/zlib.git ../zlib
65+
$ git clone https://github.com/sisong/libdeflate.git ../libdeflate
6466
$ make
6567
```
6668
提示:你可以使用 `$ make -j` 来并行编译。
@@ -72,6 +74,7 @@ $ git clone https://github.com/sisong/libmd5.git ../libmd5
7274
$ git clone https://github.com/sisong/lzma.git ../lzma
7375
$ git clone https://github.com/sisong/zstd.git ../zstd
7476
$ git clone https://github.com/sisong/zlib.git ../zlib
77+
$ git clone https://github.com/sisong/libdeflate.git ../libdeflate
7578
$ git clone https://github.com/sisong/bzip2.git ../bzip2
7679
```
7780

@@ -149,9 +152,13 @@ $ git clone https://github.com/sisong/bzip2.git ../bzip2
149152
-c-zlib[-{1..9}[-dictBits]] 默认级别 9
150153
压缩字典比特数dictBits可以为9到15, 默认为15。
151154
支持多线程并行压缩,很快!
155+
-c-ldef[-{1..12}] 默认级别 12
156+
输出压缩数据格式兼容于-c-zlib, 但比zlib压缩得更快或压缩得更小;
157+
使用了libdeflate压缩算法,且压缩字典比特数dictBits始终为15。
158+
支持多线程并行压缩,很快!
152159
-c-bzip2[-{1..9}] (或 -bz2) 默认级别 9
153160
-c-pbzip2[-{1..9}] (或 -pbz2) 默认级别 8
154-
支持并行压缩,生成的补丁和-c-bzip2的输出格式不同,一般也可能稍大一点
161+
支持并行压缩,生成的补丁和-c-bzip2的输出格式稍有不同
155162
-c-lzma[-{0..9}[-dictSize]] 默认级别 7
156163
压缩字典大小dictSize可以设置为 4096, 4k, 4m, 128m等, 默认为8m
157164
支持2个线程并行压缩。
@@ -161,7 +168,7 @@ $ git clone https://github.com/sisong/bzip2.git ../bzip2
161168
警告: lzma和lzma2是不同的压缩编码格式。
162169
-c-zstd[-{0..22}[-dictBits]] 默认级别 20
163170
压缩字典比特数dictBits 可以为10到30, 默认为23。
164-
支持多线程并行压缩,很快
171+
支持多线程并行压缩,较快
165172
-C-checksumType
166173
为文件夹间diff设置数据校验算法, 默认为fadler64;
167174
支持的校验选项:

builds/android_ndk_jni_mk/Application.mk

+1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ APP_CFLAGS += -s -Wno-error=format-security
33
APP_CFLAGS += -fvisibility=hidden -fvisibility-inlines-hidden
44
APP_CFLAGS += -ffunction-sections -fdata-sections
55
APP_LDFLAGS += -s -Wl,--gc-sections,--as-needed
6+
APP_LDFLAGS += -Wl,-z,max-page-size=16384
67
APP_BUILD_SCRIPT := Android.mk
78
APP_ABI := armeabi armeabi-v7a arm64-v8a x86 x86_64

0 commit comments

Comments
 (0)