extlz4 0.3.3 → 0.3.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.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/Rakefile +43 -3
- data/contrib/lz4/CODING_STYLE +57 -0
- data/contrib/lz4/LICENSE +3 -2
- data/contrib/lz4/Makefile.inc +56 -30
- data/contrib/lz4/NEWS +46 -0
- data/contrib/lz4/README.md +17 -6
- data/contrib/lz4/SECURITY.md +17 -0
- data/contrib/lz4/build/README.md +4 -15
- data/contrib/lz4/build/VS2022/_build.bat +39 -0
- data/contrib/lz4/build/VS2022/_setup.bat +35 -0
- data/contrib/lz4/build/VS2022/_test.bat +38 -0
- data/contrib/lz4/build/VS2022/build-and-test-win32-debug.bat +26 -0
- data/contrib/lz4/build/VS2022/build-and-test-win32-release.bat +26 -0
- data/contrib/lz4/build/VS2022/build-and-test-x64-debug.bat +26 -0
- data/contrib/lz4/build/VS2022/build-and-test-x64-release.bat +26 -0
- data/contrib/lz4/build/{VS2017 → VS2022}/datagen/datagen.vcxproj +11 -7
- data/contrib/lz4/build/{VS2017 → VS2022}/frametest/frametest.vcxproj +4 -4
- data/contrib/lz4/build/{VS2017 → VS2022}/fullbench/fullbench.vcxproj +4 -4
- data/contrib/lz4/build/{VS2017 → VS2022}/fullbench-dll/fullbench-dll.vcxproj +4 -4
- data/contrib/lz4/build/{VS2017 → VS2022}/fuzzer/fuzzer.vcxproj +4 -4
- data/contrib/lz4/build/{VS2017 → VS2022}/liblz4/liblz4.vcxproj +4 -4
- data/contrib/lz4/build/{VS2010 → VS2022}/liblz4-dll/liblz4-dll.rc +1 -1
- data/contrib/lz4/build/{VS2017 → VS2022}/liblz4-dll/liblz4-dll.vcxproj +4 -4
- data/contrib/lz4/build/{VS2010 → VS2022}/lz4/lz4.rc +1 -1
- data/contrib/lz4/build/{VS2017 → VS2022}/lz4/lz4.vcxproj +33 -8
- data/contrib/lz4/build/{VS2017 → VS2022}/lz4.sln +5 -2
- data/contrib/lz4/build/cmake/CMakeLists.txt +133 -100
- data/contrib/lz4/build/cmake/lz4Config.cmake.in +2 -0
- data/contrib/lz4/build/meson/GetLz4LibraryVersion.py +39 -0
- data/contrib/lz4/build/meson/README.md +34 -0
- data/contrib/lz4/build/meson/meson/contrib/gen_manual/meson.build +42 -0
- data/contrib/lz4/build/meson/meson/contrib/meson.build +11 -0
- data/contrib/lz4/build/meson/meson/examples/meson.build +32 -0
- data/contrib/lz4/build/meson/meson/lib/meson.build +87 -0
- data/contrib/lz4/build/meson/meson/meson.build +135 -0
- data/contrib/lz4/build/meson/meson/ossfuzz/meson.build +35 -0
- data/contrib/lz4/build/meson/meson/programs/meson.build +91 -0
- data/contrib/lz4/build/meson/meson/tests/meson.build +162 -0
- data/contrib/lz4/build/meson/meson.build +31 -0
- data/contrib/lz4/build/meson/meson_options.txt +44 -0
- data/contrib/lz4/build/visual/README.md +5 -0
- data/contrib/lz4/build/visual/generate_solution.cmd +55 -0
- data/contrib/lz4/build/visual/generate_vs2015.cmd +3 -0
- data/contrib/lz4/build/visual/generate_vs2017.cmd +3 -0
- data/contrib/lz4/build/visual/generate_vs2019.cmd +3 -0
- data/contrib/lz4/build/visual/generate_vs2022.cmd +3 -0
- data/contrib/lz4/lib/LICENSE +1 -1
- data/contrib/lz4/lib/README.md +69 -13
- data/contrib/lz4/lib/liblz4-dll.rc.in +1 -1
- data/contrib/lz4/lib/liblz4.pc.in +3 -3
- data/contrib/lz4/lib/lz4.c +608 -274
- data/contrib/lz4/lib/lz4.h +212 -102
- data/contrib/lz4/lib/lz4file.c +341 -0
- data/contrib/lz4/lib/lz4file.h +93 -0
- data/contrib/lz4/lib/lz4frame.c +545 -308
- data/contrib/lz4/lib/lz4frame.h +252 -124
- data/contrib/lz4/lib/lz4frame_static.h +1 -1
- data/contrib/lz4/lib/lz4hc.c +1038 -461
- data/contrib/lz4/lib/lz4hc.h +57 -56
- data/contrib/lz4/lib/xxhash.c +21 -21
- data/contrib/lz4/ossfuzz/Makefile +1 -0
- data/contrib/lz4/ossfuzz/decompress_fuzzer.c +18 -2
- data/contrib/lz4/ossfuzz/fuzz_helpers.h +4 -3
- data/contrib/lz4/ossfuzz/round_trip_frame_uncompressed_fuzzer.c +134 -0
- data/contrib/lz4/ossfuzz/round_trip_fuzzer.c +66 -6
- data/ext/blockapi.c +19 -19
- data/ext/extlz4.h +12 -0
- data/ext/frameapi.c +26 -26
- data/ext/hashargs.c +7 -1
- metadata +47 -30
- data/contrib/lz4/build/VS2010/datagen/datagen.vcxproj +0 -169
- data/contrib/lz4/build/VS2010/frametest/frametest.vcxproj +0 -176
- data/contrib/lz4/build/VS2010/fullbench/fullbench.vcxproj +0 -176
- data/contrib/lz4/build/VS2010/fullbench-dll/fullbench-dll.vcxproj +0 -180
- data/contrib/lz4/build/VS2010/fuzzer/fuzzer.vcxproj +0 -173
- data/contrib/lz4/build/VS2010/liblz4/liblz4.vcxproj +0 -175
- data/contrib/lz4/build/VS2010/liblz4-dll/liblz4-dll.vcxproj +0 -179
- data/contrib/lz4/build/VS2010/lz4/lz4.vcxproj +0 -189
- data/contrib/lz4/build/VS2010/lz4.sln +0 -98
- data/contrib/lz4/build/VS2017/liblz4-dll/liblz4-dll.rc +0 -51
- data/contrib/lz4/build/VS2017/lz4/lz4.rc +0 -51
- data/contrib/lz4/tmp +0 -0
- data/contrib/lz4/tmpsparse +0 -0
data/contrib/lz4/lib/lz4frame.h
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
/*
|
2
|
-
|
2
|
+
LZ4F - LZ4-Frame library
|
3
3
|
Header File
|
4
|
-
Copyright (C) 2011-
|
4
|
+
Copyright (C) 2011-2020, Yann Collet.
|
5
5
|
BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
|
6
6
|
|
7
7
|
Redistribution and use in source and binary forms, with or without
|
@@ -39,7 +39,7 @@
|
|
39
39
|
* LZ4F also offers streaming capabilities.
|
40
40
|
*
|
41
41
|
* lz4.h is not required when using lz4frame.h,
|
42
|
-
* except to extract common
|
42
|
+
* except to extract common constants such as LZ4_VERSION_NUMBER.
|
43
43
|
* */
|
44
44
|
|
45
45
|
#ifndef LZ4F_H_09782039843
|
@@ -54,12 +54,12 @@ extern "C" {
|
|
54
54
|
|
55
55
|
|
56
56
|
/**
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
57
|
+
* Introduction
|
58
|
+
*
|
59
|
+
* lz4frame.h implements LZ4 frame specification: see doc/lz4_Frame_format.md .
|
60
|
+
* LZ4 Frames are compatible with `lz4` CLI,
|
61
|
+
* and designed to be interoperable with any system.
|
62
|
+
**/
|
63
63
|
|
64
64
|
/*-***************************************************************
|
65
65
|
* Compiler specifics
|
@@ -173,16 +173,16 @@ typedef LZ4F_contentChecksum_t contentChecksum_t;
|
|
173
173
|
* setting all parameters to default.
|
174
174
|
* It's then possible to update selectively some parameters */
|
175
175
|
typedef struct {
|
176
|
-
LZ4F_blockSizeID_t blockSizeID; /* max64KB, max256KB, max1MB, max4MB; 0 == default */
|
177
|
-
LZ4F_blockMode_t blockMode; /* LZ4F_blockLinked, LZ4F_blockIndependent; 0 == default */
|
178
|
-
LZ4F_contentChecksum_t contentChecksumFlag; /* 1:
|
176
|
+
LZ4F_blockSizeID_t blockSizeID; /* max64KB, max256KB, max1MB, max4MB; 0 == default (LZ4F_max64KB) */
|
177
|
+
LZ4F_blockMode_t blockMode; /* LZ4F_blockLinked, LZ4F_blockIndependent; 0 == default (LZ4F_blockLinked) */
|
178
|
+
LZ4F_contentChecksum_t contentChecksumFlag; /* 1: add a 32-bit checksum of frame's decompressed data; 0 == default (disabled) */
|
179
179
|
LZ4F_frameType_t frameType; /* read-only field : LZ4F_frame or LZ4F_skippableFrame */
|
180
180
|
unsigned long long contentSize; /* Size of uncompressed content ; 0 == unknown */
|
181
181
|
unsigned dictID; /* Dictionary ID, sent by compressor to help decoder select correct dictionary; 0 == no dictID provided */
|
182
|
-
LZ4F_blockChecksum_t blockChecksumFlag; /* 1: each block followed by a checksum of block's compressed data; 0
|
182
|
+
LZ4F_blockChecksum_t blockChecksumFlag; /* 1: each block followed by a checksum of block's compressed data; 0 == default (disabled) */
|
183
183
|
} LZ4F_frameInfo_t;
|
184
184
|
|
185
|
-
#define LZ4F_INIT_FRAMEINFO {
|
185
|
+
#define LZ4F_INIT_FRAMEINFO { LZ4F_max64KB, LZ4F_blockLinked, LZ4F_noContentChecksum, LZ4F_frame, 0ULL, 0U, LZ4F_noBlockChecksum } /* v1.8.3+ */
|
186
186
|
|
187
187
|
/*! LZ4F_preferences_t :
|
188
188
|
* makes it possible to supply advanced compression instructions to streaming interface.
|
@@ -204,33 +204,47 @@ typedef struct {
|
|
204
204
|
* Simple compression function
|
205
205
|
***********************************/
|
206
206
|
|
207
|
-
|
207
|
+
/*! LZ4F_compressFrame() :
|
208
|
+
* Compress srcBuffer content into an LZ4-compressed frame.
|
209
|
+
* It's a one shot operation, all input content is consumed, and all output is generated.
|
210
|
+
*
|
211
|
+
* Note : it's a stateless operation (no LZ4F_cctx state needed).
|
212
|
+
* In order to reduce load on the allocator, LZ4F_compressFrame(), by default,
|
213
|
+
* uses the stack to allocate space for the compression state and some table.
|
214
|
+
* If this usage of the stack is too much for your application,
|
215
|
+
* consider compiling `lz4frame.c` with compile-time macro LZ4F_HEAPMODE set to 1 instead.
|
216
|
+
* All state allocations will use the Heap.
|
217
|
+
* It also means each invocation of LZ4F_compressFrame() will trigger several internal alloc/free invocations.
|
218
|
+
*
|
219
|
+
* @dstCapacity MUST be >= LZ4F_compressFrameBound(srcSize, preferencesPtr).
|
220
|
+
* @preferencesPtr is optional : one can provide NULL, in which case all preferences are set to default.
|
221
|
+
* @return : number of bytes written into dstBuffer.
|
222
|
+
* or an error code if it fails (can be tested using LZ4F_isError())
|
223
|
+
*/
|
224
|
+
LZ4FLIB_API size_t LZ4F_compressFrame(void* dstBuffer, size_t dstCapacity,
|
225
|
+
const void* srcBuffer, size_t srcSize,
|
226
|
+
const LZ4F_preferences_t* preferencesPtr);
|
208
227
|
|
209
228
|
/*! LZ4F_compressFrameBound() :
|
210
229
|
* Returns the maximum possible compressed size with LZ4F_compressFrame() given srcSize and preferences.
|
211
230
|
* `preferencesPtr` is optional. It can be replaced by NULL, in which case, the function will assume default preferences.
|
212
231
|
* Note : this result is only usable with LZ4F_compressFrame().
|
213
|
-
* It may also be
|
232
|
+
* It may also be relevant to LZ4F_compressUpdate() _only if_ no flush() operation is ever performed.
|
214
233
|
*/
|
215
234
|
LZ4FLIB_API size_t LZ4F_compressFrameBound(size_t srcSize, const LZ4F_preferences_t* preferencesPtr);
|
216
235
|
|
217
|
-
|
218
|
-
|
219
|
-
*
|
220
|
-
* The LZ4F_preferences_t structure is optional : you can provide NULL as argument. All preferences will be set to default.
|
221
|
-
* @return : number of bytes written into dstBuffer.
|
222
|
-
* or an error code if it fails (can be tested using LZ4F_isError())
|
236
|
+
|
237
|
+
/*! LZ4F_compressionLevel_max() :
|
238
|
+
* @return maximum allowed compression level (currently: 12)
|
223
239
|
*/
|
224
|
-
LZ4FLIB_API
|
225
|
-
const void* srcBuffer, size_t srcSize,
|
226
|
-
const LZ4F_preferences_t* preferencesPtr);
|
240
|
+
LZ4FLIB_API int LZ4F_compressionLevel_max(void); /* v1.8.0+ */
|
227
241
|
|
228
242
|
|
229
243
|
/*-***********************************
|
230
244
|
* Advanced compression functions
|
231
245
|
*************************************/
|
232
246
|
typedef struct LZ4F_cctx_s LZ4F_cctx; /* incomplete type */
|
233
|
-
typedef LZ4F_cctx* LZ4F_compressionContext_t;
|
247
|
+
typedef LZ4F_cctx* LZ4F_compressionContext_t; /* for compatibility with older APIs, prefer using LZ4F_cctx */
|
234
248
|
|
235
249
|
typedef struct {
|
236
250
|
unsigned stableSrc; /* 1 == src content will remain present on future calls to LZ4F_compress(); skip copying src content within tmp buffer */
|
@@ -243,20 +257,27 @@ typedef struct {
|
|
243
257
|
LZ4FLIB_API unsigned LZ4F_getVersion(void);
|
244
258
|
|
245
259
|
/*! LZ4F_createCompressionContext() :
|
246
|
-
*
|
247
|
-
*
|
248
|
-
*
|
249
|
-
*
|
250
|
-
*
|
251
|
-
*
|
252
|
-
|
260
|
+
* The first thing to do is to create a compressionContext object,
|
261
|
+
* which will keep track of operation state during streaming compression.
|
262
|
+
* This is achieved using LZ4F_createCompressionContext(), which takes as argument a version,
|
263
|
+
* and a pointer to LZ4F_cctx*, to write the resulting pointer into.
|
264
|
+
* @version provided MUST be LZ4F_VERSION. It is intended to track potential version mismatch, notably when using DLL.
|
265
|
+
* The function provides a pointer to a fully allocated LZ4F_cctx object.
|
266
|
+
* @cctxPtr MUST be != NULL.
|
267
|
+
* If @return != zero, context creation failed.
|
268
|
+
* A created compression context can be employed multiple times for consecutive streaming operations.
|
269
|
+
* Once all streaming compression jobs are completed,
|
270
|
+
* the state object can be released using LZ4F_freeCompressionContext().
|
271
|
+
* Note1 : LZ4F_freeCompressionContext() is always successful. Its return value can be ignored.
|
272
|
+
* Note2 : LZ4F_freeCompressionContext() works fine with NULL input pointers (do nothing).
|
273
|
+
**/
|
253
274
|
LZ4FLIB_API LZ4F_errorCode_t LZ4F_createCompressionContext(LZ4F_cctx** cctxPtr, unsigned version);
|
254
275
|
LZ4FLIB_API LZ4F_errorCode_t LZ4F_freeCompressionContext(LZ4F_cctx* cctx);
|
255
276
|
|
256
277
|
|
257
278
|
/*---- Compression ----*/
|
258
279
|
|
259
|
-
#define LZ4F_HEADER_SIZE_MIN 7 /* LZ4 Frame header size can vary, depending on selected
|
280
|
+
#define LZ4F_HEADER_SIZE_MIN 7 /* LZ4 Frame header size can vary, depending on selected parameters */
|
260
281
|
#define LZ4F_HEADER_SIZE_MAX 19
|
261
282
|
|
262
283
|
/* Size in bytes of a block header in little-endian format. Highest bit indicates if block data is uncompressed */
|
@@ -271,7 +292,7 @@ LZ4FLIB_API LZ4F_errorCode_t LZ4F_freeCompressionContext(LZ4F_cctx* cctx);
|
|
271
292
|
/*! LZ4F_compressBegin() :
|
272
293
|
* will write the frame header into dstBuffer.
|
273
294
|
* dstCapacity must be >= LZ4F_HEADER_SIZE_MAX bytes.
|
274
|
-
* `prefsPtr` is optional :
|
295
|
+
* `prefsPtr` is optional : NULL can be provided to set all preferences to default.
|
275
296
|
* @return : number of bytes written into dstBuffer for the header
|
276
297
|
* or an error code (which can be tested using LZ4F_isError())
|
277
298
|
*/
|
@@ -301,8 +322,9 @@ LZ4FLIB_API size_t LZ4F_compressBound(size_t srcSize, const LZ4F_preferences_t*
|
|
301
322
|
* Important rule: dstCapacity MUST be large enough to ensure operation success even in worst case situations.
|
302
323
|
* This value is provided by LZ4F_compressBound().
|
303
324
|
* If this condition is not respected, LZ4F_compress() will fail (result is an errorCode).
|
304
|
-
*
|
305
|
-
*
|
325
|
+
* After an error, the state is left in a UB state, and must be re-initialized or freed.
|
326
|
+
* If previously an uncompressed block was written, buffered data is flushed
|
327
|
+
* before appending compressed data is continued.
|
306
328
|
* `cOptPtr` is optional : NULL can be provided, in which case all options are set to default.
|
307
329
|
* @return : number of bytes written into `dstBuffer` (it can be zero, meaning input data was just buffered).
|
308
330
|
* or an error code if it fails (which can be tested using LZ4F_isError())
|
@@ -347,8 +369,13 @@ typedef struct LZ4F_dctx_s LZ4F_dctx; /* incomplete type */
|
|
347
369
|
typedef LZ4F_dctx* LZ4F_decompressionContext_t; /* compatibility with previous API versions */
|
348
370
|
|
349
371
|
typedef struct {
|
350
|
-
unsigned stableDst;
|
351
|
-
|
372
|
+
unsigned stableDst; /* pledges that last 64KB decompressed data is present right before @dstBuffer pointer.
|
373
|
+
* This optimization skips internal storage operations.
|
374
|
+
* Once set, this pledge must remain valid up to the end of current frame. */
|
375
|
+
unsigned skipChecksums; /* disable checksum calculation and verification, even when one is present in frame, to save CPU time.
|
376
|
+
* Setting this option to 1 once disables all checksums for the rest of the frame. */
|
377
|
+
unsigned reserved1; /* must be set to zero for forward compatibility */
|
378
|
+
unsigned reserved0; /* idem */
|
352
379
|
} LZ4F_decompressOptions_t;
|
353
380
|
|
354
381
|
|
@@ -356,9 +383,10 @@ typedef struct {
|
|
356
383
|
|
357
384
|
/*! LZ4F_createDecompressionContext() :
|
358
385
|
* Create an LZ4F_dctx object, to track all decompression operations.
|
359
|
-
*
|
360
|
-
*
|
361
|
-
* The
|
386
|
+
* @version provided MUST be LZ4F_VERSION.
|
387
|
+
* @dctxPtr MUST be valid.
|
388
|
+
* The function fills @dctxPtr with the value of a pointer to an allocated and initialized LZ4F_dctx object.
|
389
|
+
* The @return is an errorCode, which can be tested using LZ4F_isError().
|
362
390
|
* dctx memory can be released using LZ4F_freeDecompressionContext();
|
363
391
|
* Result of LZ4F_freeDecompressionContext() indicates current state of decompressionContext when being released.
|
364
392
|
* That is, it should be == 0 if decompression has been completed fully and correctly.
|
@@ -371,6 +399,8 @@ LZ4FLIB_API LZ4F_errorCode_t LZ4F_freeDecompressionContext(LZ4F_dctx* dctx);
|
|
371
399
|
* Streaming decompression functions
|
372
400
|
*************************************/
|
373
401
|
|
402
|
+
#define LZ4F_MAGICNUMBER 0x184D2204U
|
403
|
+
#define LZ4F_MAGIC_SKIPPABLE_START 0x184D2A50U
|
374
404
|
#define LZ4F_MIN_SIZE_TO_KNOW_HEADER_LENGTH 5
|
375
405
|
|
376
406
|
/*! LZ4F_headerSize() : v1.9.0+
|
@@ -386,7 +416,7 @@ LZ4FLIB_API size_t LZ4F_headerSize(const void* src, size_t srcSize);
|
|
386
416
|
|
387
417
|
/*! LZ4F_getFrameInfo() :
|
388
418
|
* This function extracts frame parameters (max blockSize, dictID, etc.).
|
389
|
-
* Its usage is optional: user can
|
419
|
+
* Its usage is optional: user can also invoke LZ4F_decompress() directly.
|
390
420
|
*
|
391
421
|
* Extracted information will fill an existing LZ4F_frameInfo_t structure.
|
392
422
|
* This can be useful for allocation and dictionary identification purposes.
|
@@ -427,9 +457,10 @@ LZ4FLIB_API size_t LZ4F_headerSize(const void* src, size_t srcSize);
|
|
427
457
|
* note 1 : in case of error, dctx is not modified. Decoding operation can resume from beginning safely.
|
428
458
|
* note 2 : frame parameters are *copied into* an already allocated LZ4F_frameInfo_t structure.
|
429
459
|
*/
|
430
|
-
LZ4FLIB_API size_t
|
431
|
-
|
432
|
-
|
460
|
+
LZ4FLIB_API size_t
|
461
|
+
LZ4F_getFrameInfo(LZ4F_dctx* dctx,
|
462
|
+
LZ4F_frameInfo_t* frameInfoPtr,
|
463
|
+
const void* srcBuffer, size_t* srcSizePtr);
|
433
464
|
|
434
465
|
/*! LZ4F_decompress() :
|
435
466
|
* Call this function repetitively to regenerate data compressed in `srcBuffer`.
|
@@ -447,6 +478,11 @@ LZ4FLIB_API size_t LZ4F_getFrameInfo(LZ4F_dctx* dctx,
|
|
447
478
|
* `dstBuffer` can freely change between each consecutive function invocation.
|
448
479
|
* `dstBuffer` content will be overwritten.
|
449
480
|
*
|
481
|
+
* Note: if `LZ4F_getFrameInfo()` is called before `LZ4F_decompress()`, srcBuffer must be updated to reflect
|
482
|
+
* the number of bytes consumed after reading the frame header. Failure to update srcBuffer before calling
|
483
|
+
* `LZ4F_decompress()` will cause decompression failure or, even worse, successful but incorrect decompression.
|
484
|
+
* See the `LZ4F_getFrameInfo()` docs for details.
|
485
|
+
*
|
450
486
|
* @return : an hint of how many `srcSize` bytes LZ4F_decompress() expects for next call.
|
451
487
|
* Schematically, it's the size of the current (or remaining) compressed block + header of next block.
|
452
488
|
* Respecting the hint provides some small speed benefit, because it skips intermediate buffers.
|
@@ -462,10 +498,11 @@ LZ4FLIB_API size_t LZ4F_getFrameInfo(LZ4F_dctx* dctx,
|
|
462
498
|
*
|
463
499
|
* After a frame is fully decoded, dctx can be used again to decompress another frame.
|
464
500
|
*/
|
465
|
-
LZ4FLIB_API size_t
|
466
|
-
|
467
|
-
|
468
|
-
|
501
|
+
LZ4FLIB_API size_t
|
502
|
+
LZ4F_decompress(LZ4F_dctx* dctx,
|
503
|
+
void* dstBuffer, size_t* dstSizePtr,
|
504
|
+
const void* srcBuffer, size_t* srcSizePtr,
|
505
|
+
const LZ4F_decompressOptions_t* dOptPtr);
|
469
506
|
|
470
507
|
|
471
508
|
/*! LZ4F_resetDecompressionContext() : added in v1.8.0
|
@@ -476,6 +513,109 @@ LZ4FLIB_API size_t LZ4F_decompress(LZ4F_dctx* dctx,
|
|
476
513
|
LZ4FLIB_API void LZ4F_resetDecompressionContext(LZ4F_dctx* dctx); /* always successful */
|
477
514
|
|
478
515
|
|
516
|
+
/**********************************
|
517
|
+
* Dictionary compression API
|
518
|
+
*********************************/
|
519
|
+
|
520
|
+
/* A Dictionary is useful for the compression of small messages (KB range).
|
521
|
+
* It dramatically improves compression efficiency.
|
522
|
+
*
|
523
|
+
* LZ4 can ingest any input as dictionary, though only the last 64 KB are useful.
|
524
|
+
* Better results are generally achieved by using Zstandard's Dictionary Builder
|
525
|
+
* to generate a high-quality dictionary from a set of samples.
|
526
|
+
*
|
527
|
+
* The same dictionary will have to be used on the decompression side
|
528
|
+
* for decoding to be successful.
|
529
|
+
* To help identify the correct dictionary at decoding stage,
|
530
|
+
* the frame header allows optional embedding of a dictID field.
|
531
|
+
*/
|
532
|
+
|
533
|
+
/*! LZ4F_compressBegin_usingDict() : stable since v1.10
|
534
|
+
* Inits dictionary compression streaming, and writes the frame header into dstBuffer.
|
535
|
+
* @dstCapacity must be >= LZ4F_HEADER_SIZE_MAX bytes.
|
536
|
+
* @prefsPtr is optional : one may provide NULL as argument,
|
537
|
+
* however, it's the only way to provide dictID in the frame header.
|
538
|
+
* @dictBuffer must outlive the compression session.
|
539
|
+
* @return : number of bytes written into dstBuffer for the header,
|
540
|
+
* or an error code (which can be tested using LZ4F_isError())
|
541
|
+
* NOTE: The LZ4Frame spec allows each independent block to be compressed with the dictionary,
|
542
|
+
* but this entry supports a more limited scenario, where only the first block uses the dictionary.
|
543
|
+
* This is still useful for small data, which only need one block anyway.
|
544
|
+
* For larger inputs, one may be more interested in LZ4F_compressFrame_usingCDict() below.
|
545
|
+
*/
|
546
|
+
LZ4FLIB_API size_t
|
547
|
+
LZ4F_compressBegin_usingDict(LZ4F_cctx* cctx,
|
548
|
+
void* dstBuffer, size_t dstCapacity,
|
549
|
+
const void* dictBuffer, size_t dictSize,
|
550
|
+
const LZ4F_preferences_t* prefsPtr);
|
551
|
+
|
552
|
+
/*! LZ4F_decompress_usingDict() : stable since v1.10
|
553
|
+
* Same as LZ4F_decompress(), using a predefined dictionary.
|
554
|
+
* Dictionary is used "in place", without any preprocessing.
|
555
|
+
** It must remain accessible throughout the entire frame decoding. */
|
556
|
+
LZ4FLIB_API size_t
|
557
|
+
LZ4F_decompress_usingDict(LZ4F_dctx* dctxPtr,
|
558
|
+
void* dstBuffer, size_t* dstSizePtr,
|
559
|
+
const void* srcBuffer, size_t* srcSizePtr,
|
560
|
+
const void* dict, size_t dictSize,
|
561
|
+
const LZ4F_decompressOptions_t* decompressOptionsPtr);
|
562
|
+
|
563
|
+
/*****************************************
|
564
|
+
* Bulk processing dictionary compression
|
565
|
+
*****************************************/
|
566
|
+
|
567
|
+
/* Loading a dictionary has a cost, since it involves construction of tables.
|
568
|
+
* The Bulk processing dictionary API makes it possible to share this cost
|
569
|
+
* over an arbitrary number of compression jobs, even concurrently,
|
570
|
+
* markedly improving compression latency for these cases.
|
571
|
+
*
|
572
|
+
* Note that there is no corresponding bulk API for the decompression side,
|
573
|
+
* because dictionary does not carry any initialization cost for decompression.
|
574
|
+
* Use the regular LZ4F_decompress_usingDict() there.
|
575
|
+
*/
|
576
|
+
typedef struct LZ4F_CDict_s LZ4F_CDict;
|
577
|
+
|
578
|
+
/*! LZ4_createCDict() : stable since v1.10
|
579
|
+
* When compressing multiple messages / blocks using the same dictionary, it's recommended to initialize it just once.
|
580
|
+
* LZ4_createCDict() will create a digested dictionary, ready to start future compression operations without startup delay.
|
581
|
+
* LZ4_CDict can be created once and shared by multiple threads concurrently, since its usage is read-only.
|
582
|
+
* @dictBuffer can be released after LZ4_CDict creation, since its content is copied within CDict. */
|
583
|
+
LZ4FLIB_API LZ4F_CDict* LZ4F_createCDict(const void* dictBuffer, size_t dictSize);
|
584
|
+
LZ4FLIB_API void LZ4F_freeCDict(LZ4F_CDict* CDict);
|
585
|
+
|
586
|
+
/*! LZ4_compressFrame_usingCDict() : stable since v1.10
|
587
|
+
* Compress an entire srcBuffer into a valid LZ4 frame using a digested Dictionary.
|
588
|
+
* @cctx must point to a context created by LZ4F_createCompressionContext().
|
589
|
+
* If @cdict==NULL, compress without a dictionary.
|
590
|
+
* @dstBuffer MUST be >= LZ4F_compressFrameBound(srcSize, preferencesPtr).
|
591
|
+
* If this condition is not respected, function will fail (@return an errorCode).
|
592
|
+
* The LZ4F_preferences_t structure is optional : one may provide NULL as argument,
|
593
|
+
* but it's not recommended, as it's the only way to provide @dictID in the frame header.
|
594
|
+
* @return : number of bytes written into dstBuffer.
|
595
|
+
* or an error code if it fails (can be tested using LZ4F_isError())
|
596
|
+
* Note: for larger inputs generating multiple independent blocks,
|
597
|
+
* this entry point uses the dictionary for each block. */
|
598
|
+
LZ4FLIB_API size_t
|
599
|
+
LZ4F_compressFrame_usingCDict(LZ4F_cctx* cctx,
|
600
|
+
void* dst, size_t dstCapacity,
|
601
|
+
const void* src, size_t srcSize,
|
602
|
+
const LZ4F_CDict* cdict,
|
603
|
+
const LZ4F_preferences_t* preferencesPtr);
|
604
|
+
|
605
|
+
/*! LZ4F_compressBegin_usingCDict() : stable since v1.10
|
606
|
+
* Inits streaming dictionary compression, and writes the frame header into dstBuffer.
|
607
|
+
* @dstCapacity must be >= LZ4F_HEADER_SIZE_MAX bytes.
|
608
|
+
* @prefsPtr is optional : one may provide NULL as argument,
|
609
|
+
* note however that it's the only way to insert a @dictID in the frame header.
|
610
|
+
* @cdict must outlive the compression session.
|
611
|
+
* @return : number of bytes written into dstBuffer for the header,
|
612
|
+
* or an error code, which can be tested using LZ4F_isError(). */
|
613
|
+
LZ4FLIB_API size_t
|
614
|
+
LZ4F_compressBegin_usingCDict(LZ4F_cctx* cctx,
|
615
|
+
void* dstBuffer, size_t dstCapacity,
|
616
|
+
const LZ4F_CDict* cdict,
|
617
|
+
const LZ4F_preferences_t* prefsPtr);
|
618
|
+
|
479
619
|
|
480
620
|
#if defined (__cplusplus)
|
481
621
|
}
|
@@ -486,11 +626,8 @@ LZ4FLIB_API void LZ4F_resetDecompressionContext(LZ4F_dctx* dctx); /* always su
|
|
486
626
|
#if defined(LZ4F_STATIC_LINKING_ONLY) && !defined(LZ4F_H_STATIC_09782039843)
|
487
627
|
#define LZ4F_H_STATIC_09782039843
|
488
628
|
|
489
|
-
|
490
|
-
|
491
|
-
#endif
|
492
|
-
|
493
|
-
/* These declarations are not stable and may change in the future.
|
629
|
+
/* Note :
|
630
|
+
* The below declarations are not stable and may change in the future.
|
494
631
|
* They are therefore only safe to depend on
|
495
632
|
* when the caller is statically linked against the library.
|
496
633
|
* To access their declarations, define LZ4F_STATIC_LINKING_ONLY.
|
@@ -500,6 +637,11 @@ extern "C" {
|
|
500
637
|
* by defining LZ4F_PUBLISH_STATIC_FUNCTIONS.
|
501
638
|
* Use at your own risk.
|
502
639
|
*/
|
640
|
+
|
641
|
+
#if defined (__cplusplus)
|
642
|
+
extern "C" {
|
643
|
+
#endif
|
644
|
+
|
503
645
|
#ifdef LZ4F_PUBLISH_STATIC_FUNCTIONS
|
504
646
|
# define LZ4FLIB_STATIC_API LZ4FLIB_API
|
505
647
|
#else
|
@@ -513,7 +655,7 @@ extern "C" {
|
|
513
655
|
ITEM(ERROR_GENERIC) \
|
514
656
|
ITEM(ERROR_maxBlockSize_invalid) \
|
515
657
|
ITEM(ERROR_blockMode_invalid) \
|
516
|
-
ITEM(
|
658
|
+
ITEM(ERROR_parameter_invalid) \
|
517
659
|
ITEM(ERROR_compressionLevel_invalid) \
|
518
660
|
ITEM(ERROR_headerVersion_wrong) \
|
519
661
|
ITEM(ERROR_blockChecksum_invalid) \
|
@@ -529,6 +671,10 @@ extern "C" {
|
|
529
671
|
ITEM(ERROR_headerChecksum_invalid) \
|
530
672
|
ITEM(ERROR_contentChecksum_invalid) \
|
531
673
|
ITEM(ERROR_frameDecoding_alreadyStarted) \
|
674
|
+
ITEM(ERROR_compressionState_uninitialized) \
|
675
|
+
ITEM(ERROR_parameter_null) \
|
676
|
+
ITEM(ERROR_io_write) \
|
677
|
+
ITEM(ERROR_io_read) \
|
532
678
|
ITEM(ERROR_maxCode)
|
533
679
|
|
534
680
|
#define LZ4F_GENERATE_ENUM(ENUM) LZ4F_##ENUM,
|
@@ -539,82 +685,64 @@ typedef enum { LZ4F_LIST_ERRORS(LZ4F_GENERATE_ENUM)
|
|
539
685
|
|
540
686
|
LZ4FLIB_STATIC_API LZ4F_errorCodes LZ4F_getErrorCode(size_t functionResult);
|
541
687
|
|
542
|
-
LZ4FLIB_STATIC_API size_t LZ4F_getBlockSize(unsigned);
|
543
|
-
|
544
688
|
/**********************************
|
545
|
-
*
|
689
|
+
* Advanced compression operations
|
546
690
|
*********************************/
|
547
691
|
|
548
|
-
|
549
|
-
*
|
550
|
-
*
|
551
|
-
*
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
*
|
557
|
-
*
|
558
|
-
*
|
559
|
-
*
|
560
|
-
*
|
561
|
-
*
|
562
|
-
*
|
563
|
-
*
|
692
|
+
/*! LZ4F_getBlockSize() :
|
693
|
+
* @return, in scalar format (size_t),
|
694
|
+
* the maximum block size associated with @blockSizeID,
|
695
|
+
* or an error code (can be tested using LZ4F_isError()) if @blockSizeID is invalid.
|
696
|
+
**/
|
697
|
+
LZ4FLIB_STATIC_API size_t LZ4F_getBlockSize(LZ4F_blockSizeID_t blockSizeID);
|
698
|
+
|
699
|
+
/*! LZ4F_uncompressedUpdate() :
|
700
|
+
* LZ4F_uncompressedUpdate() can be called repetitively to add data stored as uncompressed blocks.
|
701
|
+
* Important rule: dstCapacity MUST be large enough to store the entire source buffer as
|
702
|
+
* no compression is done for this operation
|
703
|
+
* If this condition is not respected, LZ4F_uncompressedUpdate() will fail (result is an errorCode).
|
704
|
+
* After an error, the state is left in a UB state, and must be re-initialized or freed.
|
705
|
+
* If previously a compressed block was written, buffered data is flushed first,
|
706
|
+
* before appending uncompressed data is continued.
|
707
|
+
* This operation is only supported when LZ4F_blockIndependent is used.
|
708
|
+
* `cOptPtr` is optional : NULL can be provided, in which case all options are set to default.
|
709
|
+
* @return : number of bytes written into `dstBuffer` (it can be zero, meaning input data was just buffered).
|
710
|
+
* or an error code if it fails (which can be tested using LZ4F_isError())
|
564
711
|
*/
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
*
|
569
|
-
*
|
570
|
-
* LZ4_CDict can be created once and shared by multiple threads concurrently, since its usage is read-only.
|
571
|
-
* `dictBuffer` can be released after LZ4_CDict creation, since its content is copied within CDict */
|
572
|
-
LZ4FLIB_STATIC_API LZ4F_CDict* LZ4F_createCDict(const void* dictBuffer, size_t dictSize);
|
573
|
-
LZ4FLIB_STATIC_API void LZ4F_freeCDict(LZ4F_CDict* CDict);
|
574
|
-
|
575
|
-
|
576
|
-
/*! LZ4_compressFrame_usingCDict() :
|
577
|
-
* Compress an entire srcBuffer into a valid LZ4 frame using a digested Dictionary.
|
578
|
-
* cctx must point to a context created by LZ4F_createCompressionContext().
|
579
|
-
* If cdict==NULL, compress without a dictionary.
|
580
|
-
* dstBuffer MUST be >= LZ4F_compressFrameBound(srcSize, preferencesPtr).
|
581
|
-
* If this condition is not respected, function will fail (@return an errorCode).
|
582
|
-
* The LZ4F_preferences_t structure is optional : you may provide NULL as argument,
|
583
|
-
* but it's not recommended, as it's the only way to provide dictID in the frame header.
|
584
|
-
* @return : number of bytes written into dstBuffer.
|
585
|
-
* or an error code if it fails (can be tested using LZ4F_isError()) */
|
586
|
-
LZ4FLIB_STATIC_API size_t LZ4F_compressFrame_usingCDict(
|
587
|
-
LZ4F_cctx* cctx,
|
588
|
-
void* dst, size_t dstCapacity,
|
589
|
-
const void* src, size_t srcSize,
|
590
|
-
const LZ4F_CDict* cdict,
|
591
|
-
const LZ4F_preferences_t* preferencesPtr);
|
712
|
+
LZ4FLIB_STATIC_API size_t
|
713
|
+
LZ4F_uncompressedUpdate(LZ4F_cctx* cctx,
|
714
|
+
void* dstBuffer, size_t dstCapacity,
|
715
|
+
const void* srcBuffer, size_t srcSize,
|
716
|
+
const LZ4F_compressOptions_t* cOptPtr);
|
592
717
|
|
718
|
+
/**********************************
|
719
|
+
* Custom memory allocation
|
720
|
+
*********************************/
|
593
721
|
|
594
|
-
/*!
|
595
|
-
*
|
596
|
-
*
|
597
|
-
*
|
598
|
-
|
599
|
-
*
|
600
|
-
*
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
722
|
+
/*! Custom memory allocation : v1.9.4+
|
723
|
+
* These prototypes make it possible to pass custom allocation/free functions.
|
724
|
+
* LZ4F_customMem is provided at state creation time, using LZ4F_create*_advanced() listed below.
|
725
|
+
* All allocation/free operations will be completed using these custom variants instead of regular <stdlib.h> ones.
|
726
|
+
*/
|
727
|
+
typedef void* (*LZ4F_AllocFunction) (void* opaqueState, size_t size);
|
728
|
+
typedef void* (*LZ4F_CallocFunction) (void* opaqueState, size_t size);
|
729
|
+
typedef void (*LZ4F_FreeFunction) (void* opaqueState, void* address);
|
730
|
+
typedef struct {
|
731
|
+
LZ4F_AllocFunction customAlloc;
|
732
|
+
LZ4F_CallocFunction customCalloc; /* optional; when not defined, uses customAlloc + memset */
|
733
|
+
LZ4F_FreeFunction customFree;
|
734
|
+
void* opaqueState;
|
735
|
+
} LZ4F_CustomMem;
|
736
|
+
static
|
737
|
+
#ifdef __GNUC__
|
738
|
+
__attribute__((__unused__))
|
739
|
+
#endif
|
740
|
+
LZ4F_CustomMem const LZ4F_defaultCMem = { NULL, NULL, NULL, NULL }; /**< this constant defers to stdlib's functions */
|
606
741
|
|
742
|
+
LZ4FLIB_STATIC_API LZ4F_cctx* LZ4F_createCompressionContext_advanced(LZ4F_CustomMem customMem, unsigned version);
|
743
|
+
LZ4FLIB_STATIC_API LZ4F_dctx* LZ4F_createDecompressionContext_advanced(LZ4F_CustomMem customMem, unsigned version);
|
744
|
+
LZ4FLIB_STATIC_API LZ4F_CDict* LZ4F_createCDict_advanced(LZ4F_CustomMem customMem, const void* dictBuffer, size_t dictSize);
|
607
745
|
|
608
|
-
/*! LZ4F_decompress_usingDict() :
|
609
|
-
* Same as LZ4F_decompress(), using a predefined dictionary.
|
610
|
-
* Dictionary is used "in place", without any preprocessing.
|
611
|
-
* It must remain accessible throughout the entire frame decoding. */
|
612
|
-
LZ4FLIB_STATIC_API size_t LZ4F_decompress_usingDict(
|
613
|
-
LZ4F_dctx* dctxPtr,
|
614
|
-
void* dstBuffer, size_t* dstSizePtr,
|
615
|
-
const void* srcBuffer, size_t* srcSizePtr,
|
616
|
-
const void* dict, size_t dictSize,
|
617
|
-
const LZ4F_decompressOptions_t* decompressOptionsPtr);
|
618
746
|
|
619
747
|
#if defined (__cplusplus)
|
620
748
|
}
|