extlz4 0.2.5 → 0.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. checksums.yaml +4 -4
  2. data/HISTORY.ja.md +16 -1
  3. data/README.md +49 -51
  4. data/Rakefile +22 -0
  5. data/bin/extlz4 +1 -1
  6. data/contrib/lz4/LICENSE +2 -1
  7. data/contrib/lz4/Makefile.inc +111 -0
  8. data/contrib/lz4/NEWS +97 -0
  9. data/contrib/lz4/README.md +41 -36
  10. data/contrib/lz4/build/README.md +55 -0
  11. data/contrib/lz4/build/VS2010/datagen/datagen.vcxproj +169 -0
  12. data/contrib/lz4/build/VS2010/frametest/frametest.vcxproj +176 -0
  13. data/contrib/lz4/build/VS2010/fullbench/fullbench.vcxproj +176 -0
  14. data/contrib/lz4/build/VS2010/fullbench-dll/fullbench-dll.vcxproj +180 -0
  15. data/contrib/lz4/build/VS2010/fuzzer/fuzzer.vcxproj +173 -0
  16. data/contrib/lz4/build/VS2010/liblz4/liblz4.vcxproj +175 -0
  17. data/contrib/lz4/build/VS2010/liblz4-dll/liblz4-dll.rc +51 -0
  18. data/contrib/lz4/build/VS2010/liblz4-dll/liblz4-dll.vcxproj +179 -0
  19. data/contrib/lz4/build/VS2010/lz4/lz4.rc +51 -0
  20. data/contrib/lz4/build/VS2010/lz4/lz4.vcxproj +189 -0
  21. data/contrib/lz4/build/VS2010/lz4.sln +98 -0
  22. data/contrib/lz4/build/VS2017/datagen/datagen.vcxproj +173 -0
  23. data/contrib/lz4/build/VS2017/frametest/frametest.vcxproj +180 -0
  24. data/contrib/lz4/build/VS2017/fullbench/fullbench.vcxproj +180 -0
  25. data/contrib/lz4/build/VS2017/fullbench-dll/fullbench-dll.vcxproj +184 -0
  26. data/contrib/lz4/build/VS2017/fuzzer/fuzzer.vcxproj +177 -0
  27. data/contrib/lz4/build/VS2017/liblz4/liblz4.vcxproj +179 -0
  28. data/contrib/lz4/build/VS2017/liblz4-dll/liblz4-dll.rc +51 -0
  29. data/contrib/lz4/build/VS2017/liblz4-dll/liblz4-dll.vcxproj +183 -0
  30. data/contrib/lz4/build/VS2017/lz4/lz4.rc +51 -0
  31. data/contrib/lz4/build/VS2017/lz4/lz4.vcxproj +175 -0
  32. data/contrib/lz4/build/VS2017/lz4.sln +103 -0
  33. data/contrib/lz4/build/VS2022/datagen/datagen.vcxproj +173 -0
  34. data/contrib/lz4/build/VS2022/frametest/frametest.vcxproj +180 -0
  35. data/contrib/lz4/build/VS2022/fullbench/fullbench.vcxproj +180 -0
  36. data/contrib/lz4/build/VS2022/fullbench-dll/fullbench-dll.vcxproj +184 -0
  37. data/contrib/lz4/build/VS2022/fuzzer/fuzzer.vcxproj +177 -0
  38. data/contrib/lz4/build/VS2022/liblz4/liblz4.vcxproj +179 -0
  39. data/contrib/lz4/build/VS2022/liblz4-dll/liblz4-dll.rc +51 -0
  40. data/contrib/lz4/build/VS2022/liblz4-dll/liblz4-dll.vcxproj +183 -0
  41. data/contrib/lz4/build/VS2022/lz4.sln +103 -0
  42. data/contrib/lz4/build/cmake/CMakeLists.txt +273 -0
  43. data/contrib/lz4/build/cmake/lz4Config.cmake.in +2 -0
  44. data/contrib/lz4/lib/LICENSE +1 -1
  45. data/contrib/lz4/lib/README.md +111 -15
  46. data/contrib/lz4/lib/liblz4-dll.rc.in +35 -0
  47. data/contrib/lz4/lib/liblz4.pc.in +3 -3
  48. data/contrib/lz4/lib/lz4.c +1891 -733
  49. data/contrib/lz4/lib/lz4.h +597 -234
  50. data/contrib/lz4/lib/lz4file.c +311 -0
  51. data/contrib/lz4/lib/lz4file.h +93 -0
  52. data/contrib/lz4/lib/lz4frame.c +896 -493
  53. data/contrib/lz4/lib/lz4frame.h +408 -107
  54. data/contrib/lz4/lib/lz4frame_static.h +5 -112
  55. data/contrib/lz4/lib/lz4hc.c +1039 -301
  56. data/contrib/lz4/lib/lz4hc.h +264 -123
  57. data/contrib/lz4/lib/xxhash.c +376 -240
  58. data/contrib/lz4/lib/xxhash.h +128 -93
  59. data/contrib/lz4/ossfuzz/Makefile +79 -0
  60. data/contrib/lz4/ossfuzz/compress_frame_fuzzer.c +48 -0
  61. data/contrib/lz4/ossfuzz/compress_fuzzer.c +58 -0
  62. data/contrib/lz4/ossfuzz/compress_hc_fuzzer.c +64 -0
  63. data/contrib/lz4/ossfuzz/decompress_frame_fuzzer.c +75 -0
  64. data/contrib/lz4/ossfuzz/decompress_fuzzer.c +78 -0
  65. data/contrib/lz4/ossfuzz/fuzz.h +48 -0
  66. data/contrib/lz4/ossfuzz/fuzz_data_producer.c +77 -0
  67. data/contrib/lz4/ossfuzz/fuzz_data_producer.h +36 -0
  68. data/contrib/lz4/ossfuzz/fuzz_helpers.h +95 -0
  69. data/contrib/lz4/ossfuzz/lz4_helpers.c +51 -0
  70. data/contrib/lz4/ossfuzz/lz4_helpers.h +13 -0
  71. data/contrib/lz4/ossfuzz/ossfuzz.sh +23 -0
  72. data/contrib/lz4/ossfuzz/round_trip_frame_fuzzer.c +43 -0
  73. data/contrib/lz4/ossfuzz/round_trip_frame_uncompressed_fuzzer.c +134 -0
  74. data/contrib/lz4/ossfuzz/round_trip_fuzzer.c +117 -0
  75. data/contrib/lz4/ossfuzz/round_trip_hc_fuzzer.c +44 -0
  76. data/contrib/lz4/ossfuzz/round_trip_stream_fuzzer.c +302 -0
  77. data/contrib/lz4/ossfuzz/standaloneengine.c +74 -0
  78. data/contrib/lz4/ossfuzz/travisoss.sh +26 -0
  79. data/ext/blockapi.c +13 -48
  80. data/ext/extlz4.c +2 -0
  81. data/ext/extlz4.h +17 -0
  82. data/ext/frameapi.c +3 -14
  83. data/ext/hashargs.c +9 -3
  84. data/ext/hashargs.h +1 -1
  85. data/ext/lz4_amalgam.c +0 -23
  86. data/gemstub.rb +5 -16
  87. data/lib/extlz4/oldstream.rb +1 -1
  88. data/lib/extlz4.rb +51 -3
  89. data/test/common.rb +2 -2
  90. metadata +84 -16
  91. data/contrib/lz4/circle.yml +0 -38
  92. data/contrib/lz4/lib/lz4opt.h +0 -356
  93. data/lib/extlz4/version.rb +0 -3
@@ -1,7 +1,7 @@
1
1
  /*
2
- LZ4 auto-framing library
2
+ LZ4F - LZ4-Frame library
3
3
  Header File
4
- Copyright (C) 2011-2017, Yann Collet.
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
@@ -32,10 +32,14 @@
32
32
  - LZ4 public forum : https://groups.google.com/forum/#!forum/lz4c
33
33
  */
34
34
 
35
- /* LZ4F is a stand-alone API to create LZ4-compressed frames
36
- * conformant with specification v1.5.1.
37
- * It also offers streaming capabilities.
38
- * lz4.h is not required when using lz4frame.h.
35
+ /* LZ4F is a stand-alone API able to create and decode LZ4 frames
36
+ * conformant with specification v1.6.1 in doc/lz4_Frame_format.md .
37
+ * Generated frames are compatible with `lz4` CLI.
38
+ *
39
+ * LZ4F also offers streaming capabilities.
40
+ *
41
+ * lz4.h is not required when using lz4frame.h,
42
+ * except to extract common constants such as LZ4_VERSION_NUMBER.
39
43
  * */
40
44
 
41
45
  #ifndef LZ4F_H_09782039843
@@ -50,29 +54,34 @@ extern "C" {
50
54
 
51
55
 
52
56
  /**
53
- Introduction
54
-
55
- lz4frame.h implements LZ4 frame specification (doc/lz4_Frame_format.md).
56
- lz4frame.h provides frame compression functions that take care
57
- of encoding standard metadata alongside LZ4-compressed blocks.
58
- */
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
+ **/
59
63
 
60
64
  /*-***************************************************************
61
65
  * Compiler specifics
62
66
  *****************************************************************/
63
67
  /* LZ4_DLL_EXPORT :
64
68
  * Enable exporting of functions when building a Windows DLL
65
- * LZ4FLIB_API :
69
+ * LZ4FLIB_VISIBILITY :
66
70
  * Control library symbols visibility.
67
71
  */
72
+ #ifndef LZ4FLIB_VISIBILITY
73
+ # if defined(__GNUC__) && (__GNUC__ >= 4)
74
+ # define LZ4FLIB_VISIBILITY __attribute__ ((visibility ("default")))
75
+ # else
76
+ # define LZ4FLIB_VISIBILITY
77
+ # endif
78
+ #endif
68
79
  #if defined(LZ4_DLL_EXPORT) && (LZ4_DLL_EXPORT==1)
69
- # define LZ4FLIB_API __declspec(dllexport)
80
+ # define LZ4FLIB_API __declspec(dllexport) LZ4FLIB_VISIBILITY
70
81
  #elif defined(LZ4_DLL_IMPORT) && (LZ4_DLL_IMPORT==1)
71
- # define LZ4FLIB_API __declspec(dllimport)
72
- #elif defined(__GNUC__) && (__GNUC__ >= 4)
73
- # define LZ4FLIB_API __attribute__ ((__visibility__ ("default")))
82
+ # define LZ4FLIB_API __declspec(dllimport) LZ4FLIB_VISIBILITY
74
83
  #else
75
- # define LZ4FLIB_API
84
+ # define LZ4FLIB_API LZ4FLIB_VISIBILITY
76
85
  #endif
77
86
 
78
87
  #ifdef LZ4F_DISABLE_DEPRECATE_WARNINGS
@@ -93,13 +102,13 @@ extern "C" {
93
102
  **************************************/
94
103
  typedef size_t LZ4F_errorCode_t;
95
104
 
96
- LZ4FLIB_API unsigned LZ4F_isError(LZ4F_errorCode_t code); /**< tells if a `LZ4F_errorCode_t` function result is an error code */
97
- LZ4FLIB_API const char* LZ4F_getErrorName(LZ4F_errorCode_t code); /**< return error code string; useful for debugging */
105
+ LZ4FLIB_API unsigned LZ4F_isError(LZ4F_errorCode_t code); /**< tells when a function result is an error code */
106
+ LZ4FLIB_API const char* LZ4F_getErrorName(LZ4F_errorCode_t code); /**< return error code string; for debugging */
98
107
 
99
108
 
100
109
  /*-************************************
101
110
  * Frame compression types
102
- **************************************/
111
+ ************************************* */
103
112
  /* #define LZ4F_ENABLE_OBSOLETE_ENUMS // uncomment to enable obsolete enums */
104
113
  #ifdef LZ4F_ENABLE_OBSOLETE_ENUMS
105
114
  # define LZ4F_OBSOLETE_ENUM(x) , LZ4F_DEPRECATE(x) = LZ4F_##x
@@ -109,7 +118,8 @@ LZ4FLIB_API const char* LZ4F_getErrorName(LZ4F_errorCode_t code); /**< return
109
118
 
110
119
  /* The larger the block size, the (slightly) better the compression ratio,
111
120
  * though there are diminishing returns.
112
- * Larger blocks also increase memory usage on both compression and decompression sides. */
121
+ * Larger blocks also increase memory usage on both compression and decompression sides.
122
+ */
113
123
  typedef enum {
114
124
  LZ4F_default=0,
115
125
  LZ4F_max64KB=4,
@@ -159,38 +169,48 @@ typedef LZ4F_contentChecksum_t contentChecksum_t;
159
169
 
160
170
  /*! LZ4F_frameInfo_t :
161
171
  * makes it possible to set or read frame parameters.
162
- * It's not required to set all fields, as long as the structure was initially memset() to zero.
163
- * For all fields, 0 sets it to default value */
172
+ * Structure must be first init to 0, using memset() or LZ4F_INIT_FRAMEINFO,
173
+ * setting all parameters to default.
174
+ * It's then possible to update selectively some parameters */
164
175
  typedef struct {
165
- LZ4F_blockSizeID_t blockSizeID; /* max64KB, max256KB, max1MB, max4MB ; 0 == default */
166
- LZ4F_blockMode_t blockMode; /* LZ4F_blockLinked, LZ4F_blockIndependent ; 0 == default */
167
- LZ4F_contentChecksum_t contentChecksumFlag; /* if enabled, frame is terminated with a 32-bits checksum of decompressed data ; 0 == disabled (default) */
168
- LZ4F_frameType_t frameType; /* read-only field : LZ4F_frame or LZ4F_skippableFrame */
169
- unsigned long long contentSize; /* Size of uncompressed content ; 0 == unknown */
170
- unsigned dictID; /* Dictionary ID, sent by the compressor to help decoder select the correct dictionary; 0 == no dictID provided */
171
- LZ4F_blockChecksum_t blockChecksumFlag; /* if enabled, each block is followed by a checksum of block's compressed data ; 0 == disabled (default) */
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: frame terminated with 32-bit checksum of decompressed data; 0: disabled (default) */
179
+ LZ4F_frameType_t frameType; /* read-only field : LZ4F_frame or LZ4F_skippableFrame */
180
+ unsigned long long contentSize; /* Size of uncompressed content ; 0 == unknown */
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: disabled (default) */
172
183
  } LZ4F_frameInfo_t;
173
184
 
185
+ #define LZ4F_INIT_FRAMEINFO { LZ4F_default, LZ4F_blockLinked, LZ4F_noContentChecksum, LZ4F_frame, 0ULL, 0U, LZ4F_noBlockChecksum } /* v1.8.3+ */
186
+
174
187
  /*! LZ4F_preferences_t :
175
- * makes it possible to supply detailed compression parameters to the stream interface.
176
- * It's not required to set all fields, as long as the structure was initially memset() to zero.
188
+ * makes it possible to supply advanced compression instructions to streaming interface.
189
+ * Structure must be first init to 0, using memset() or LZ4F_INIT_PREFERENCES,
190
+ * setting all parameters to default.
177
191
  * All reserved fields must be set to zero. */
178
192
  typedef struct {
179
193
  LZ4F_frameInfo_t frameInfo;
180
- int compressionLevel; /* 0 == default (fast mode); values above LZ4HC_CLEVEL_MAX count as LZ4HC_CLEVEL_MAX; values below 0 trigger "fast acceleration", proportional to value */
181
- unsigned autoFlush; /* 1 == always flush, to reduce usage of internal buffers */
182
- unsigned reserved[4]; /* must be zero for forward compatibility */
194
+ int compressionLevel; /* 0: default (fast mode); values > LZ4HC_CLEVEL_MAX count as LZ4HC_CLEVEL_MAX; values < 0 trigger "fast acceleration" */
195
+ unsigned autoFlush; /* 1: always flush; reduces usage of internal buffers */
196
+ unsigned favorDecSpeed; /* 1: parser favors decompression speed vs compression ratio. Only works for high compression modes (>= LZ4HC_CLEVEL_OPT_MIN) */ /* v1.8.2+ */
197
+ unsigned reserved[3]; /* must be zero for forward compatibility */
183
198
  } LZ4F_preferences_t;
184
199
 
185
- LZ4FLIB_API int LZ4F_compressionLevel_max(void);
200
+ #define LZ4F_INIT_PREFERENCES { LZ4F_INIT_FRAMEINFO, 0, 0u, 0u, { 0u, 0u, 0u } } /* v1.8.3+ */
186
201
 
187
202
 
188
203
  /*-*********************************
189
204
  * Simple compression function
190
205
  ***********************************/
206
+
207
+ LZ4FLIB_API int LZ4F_compressionLevel_max(void); /* v1.8.0+ */
208
+
191
209
  /*! LZ4F_compressFrameBound() :
192
- * Returns the maximum possible size of a frame compressed with LZ4F_compressFrame() given srcSize content and preferences.
193
- * Note : this result is only usable with LZ4F_compressFrame(), not with multi-segments compression.
210
+ * Returns the maximum possible compressed size with LZ4F_compressFrame() given srcSize and preferences.
211
+ * `preferencesPtr` is optional. It can be replaced by NULL, in which case, the function will assume default preferences.
212
+ * Note : this result is only usable with LZ4F_compressFrame().
213
+ * It may also be relevant to LZ4F_compressUpdate() _only if_ no flush() operation is ever performed.
194
214
  */
195
215
  LZ4FLIB_API size_t LZ4F_compressFrameBound(size_t srcSize, const LZ4F_preferences_t* preferencesPtr);
196
216
 
@@ -210,7 +230,7 @@ LZ4FLIB_API size_t LZ4F_compressFrame(void* dstBuffer, size_t dstCapacity,
210
230
  * Advanced compression functions
211
231
  *************************************/
212
232
  typedef struct LZ4F_cctx_s LZ4F_cctx; /* incomplete type */
213
- typedef LZ4F_cctx* LZ4F_compressionContext_t; /* for compatibility with previous API version */
233
+ typedef LZ4F_cctx* LZ4F_compressionContext_t; /* for compatibility with older APIs, prefer using LZ4F_cctx */
214
234
 
215
235
  typedef struct {
216
236
  unsigned stableSrc; /* 1 == src content will remain present on future calls to LZ4F_compress(); skip copying src content within tmp buffer */
@@ -219,23 +239,42 @@ typedef struct {
219
239
 
220
240
  /*--- Resource Management ---*/
221
241
 
222
- #define LZ4F_VERSION 100
242
+ #define LZ4F_VERSION 100 /* This number can be used to check for an incompatible API breaking change */
223
243
  LZ4FLIB_API unsigned LZ4F_getVersion(void);
244
+
224
245
  /*! LZ4F_createCompressionContext() :
225
- * The first thing to do is to create a compressionContext object, which will be used in all compression operations.
226
- * This is achieved using LZ4F_createCompressionContext(), which takes as argument a version.
227
- * The version provided MUST be LZ4F_VERSION. It is intended to track potential version mismatch, notably when using DLL.
228
- * The function will provide a pointer to a fully allocated LZ4F_cctx object.
229
- * If @return != zero, there was an error during context creation.
230
- * Object can release its memory using LZ4F_freeCompressionContext();
231
- */
246
+ * The first thing to do is to create a compressionContext object,
247
+ * which will keep track of operation state during streaming compression.
248
+ * This is achieved using LZ4F_createCompressionContext(), which takes as argument a version,
249
+ * and a pointer to LZ4F_cctx*, to write the resulting pointer into.
250
+ * @version provided MUST be LZ4F_VERSION. It is intended to track potential version mismatch, notably when using DLL.
251
+ * The function provides a pointer to a fully allocated LZ4F_cctx object.
252
+ * @cctxPtr MUST be != NULL.
253
+ * If @return != zero, context creation failed.
254
+ * A created compression context can be employed multiple times for consecutive streaming operations.
255
+ * Once all streaming compression jobs are completed,
256
+ * the state object can be released using LZ4F_freeCompressionContext().
257
+ * Note1 : LZ4F_freeCompressionContext() is always successful. Its return value can be ignored.
258
+ * Note2 : LZ4F_freeCompressionContext() works fine with NULL input pointers (do nothing).
259
+ **/
232
260
  LZ4FLIB_API LZ4F_errorCode_t LZ4F_createCompressionContext(LZ4F_cctx** cctxPtr, unsigned version);
233
261
  LZ4FLIB_API LZ4F_errorCode_t LZ4F_freeCompressionContext(LZ4F_cctx* cctx);
234
262
 
235
263
 
236
264
  /*---- Compression ----*/
237
265
 
266
+ #define LZ4F_HEADER_SIZE_MIN 7 /* LZ4 Frame header size can vary, depending on selected parameters */
238
267
  #define LZ4F_HEADER_SIZE_MAX 19
268
+
269
+ /* Size in bytes of a block header in little-endian format. Highest bit indicates if block data is uncompressed */
270
+ #define LZ4F_BLOCK_HEADER_SIZE 4
271
+
272
+ /* Size in bytes of a block checksum footer in little-endian format. */
273
+ #define LZ4F_BLOCK_CHECKSUM_SIZE 4
274
+
275
+ /* Size in bytes of the content checksum. */
276
+ #define LZ4F_CONTENT_CHECKSUM_SIZE 4
277
+
239
278
  /*! LZ4F_compressBegin() :
240
279
  * will write the frame header into dstBuffer.
241
280
  * dstCapacity must be >= LZ4F_HEADER_SIZE_MAX bytes.
@@ -248,45 +287,65 @@ LZ4FLIB_API size_t LZ4F_compressBegin(LZ4F_cctx* cctx,
248
287
  const LZ4F_preferences_t* prefsPtr);
249
288
 
250
289
  /*! LZ4F_compressBound() :
251
- * Provides dstCapacity given a srcSize to guarantee operation success in worst case situations.
252
- * prefsPtr is optional : you can provide NULL as argument, preferences will be set to cover worst case scenario.
253
- * Result is always the same for a srcSize and prefsPtr, so it can be trusted to size reusable buffers.
254
- * When srcSize==0, LZ4F_compressBound() provides an upper bound for LZ4F_flush() and LZ4F_compressEnd() operations.
290
+ * Provides minimum dstCapacity required to guarantee success of
291
+ * LZ4F_compressUpdate(), given a srcSize and preferences, for a worst case scenario.
292
+ * When srcSize==0, LZ4F_compressBound() provides an upper bound for LZ4F_flush() and LZ4F_compressEnd() instead.
293
+ * Note that the result is only valid for a single invocation of LZ4F_compressUpdate().
294
+ * When invoking LZ4F_compressUpdate() multiple times,
295
+ * if the output buffer is gradually filled up instead of emptied and re-used from its start,
296
+ * one must check if there is enough remaining capacity before each invocation, using LZ4F_compressBound().
297
+ * @return is always the same for a srcSize and prefsPtr.
298
+ * prefsPtr is optional : when NULL is provided, preferences will be set to cover worst case scenario.
299
+ * tech details :
300
+ * @return if automatic flushing is not enabled, includes the possibility that internal buffer might already be filled by up to (blockSize-1) bytes.
301
+ * It also includes frame footer (ending + checksum), since it might be generated by LZ4F_compressEnd().
302
+ * @return doesn't include frame header, as it was already generated by LZ4F_compressBegin().
255
303
  */
256
304
  LZ4FLIB_API size_t LZ4F_compressBound(size_t srcSize, const LZ4F_preferences_t* prefsPtr);
257
305
 
258
306
  /*! LZ4F_compressUpdate() :
259
- * LZ4F_compressUpdate() can be called repetitively to compress as much data as necessary.
260
- * An important rule is that dstCapacity MUST be large enough to ensure operation success even in worst case situations.
261
- * This value is provided by LZ4F_compressBound().
262
- * If this condition is not respected, LZ4F_compress() will fail (result is an errorCode).
263
- * LZ4F_compressUpdate() doesn't guarantee error recovery. When an error occurs, compression context must be freed or resized.
307
+ * LZ4F_compressUpdate() can be called repetitively to compress as much data as necessary.
308
+ * Important rule: dstCapacity MUST be large enough to ensure operation success even in worst case situations.
309
+ * This value is provided by LZ4F_compressBound().
310
+ * If this condition is not respected, LZ4F_compress() will fail (result is an errorCode).
311
+ * After an error, the state is left in a UB state, and must be re-initialized or freed.
312
+ * If previously an uncompressed block was written, buffered data is flushed
313
+ * before appending compressed data is continued.
264
314
  * `cOptPtr` is optional : NULL can be provided, in which case all options are set to default.
265
315
  * @return : number of bytes written into `dstBuffer` (it can be zero, meaning input data was just buffered).
266
316
  * or an error code if it fails (which can be tested using LZ4F_isError())
267
317
  */
268
- LZ4FLIB_API size_t LZ4F_compressUpdate(LZ4F_cctx* cctx, void* dstBuffer, size_t dstCapacity, const void* srcBuffer, size_t srcSize, const LZ4F_compressOptions_t* cOptPtr);
318
+ LZ4FLIB_API size_t LZ4F_compressUpdate(LZ4F_cctx* cctx,
319
+ void* dstBuffer, size_t dstCapacity,
320
+ const void* srcBuffer, size_t srcSize,
321
+ const LZ4F_compressOptions_t* cOptPtr);
269
322
 
270
323
  /*! LZ4F_flush() :
271
- * When data must be generated and sent immediately, without waiting for a block to be completely filled,
272
- * it's possible to call LZ4_flush(). It will immediately compress any data buffered within cctx.
324
+ * When data must be generated and sent immediately, without waiting for a block to be completely filled,
325
+ * it's possible to call LZ4_flush(). It will immediately compress any data buffered within cctx.
273
326
  * `dstCapacity` must be large enough to ensure the operation will be successful.
274
327
  * `cOptPtr` is optional : it's possible to provide NULL, all options will be set to default.
275
- * @return : number of bytes written into dstBuffer (it can be zero, which means there was no data stored within cctx)
328
+ * @return : nb of bytes written into dstBuffer (can be zero, when there is no data stored within cctx)
276
329
  * or an error code if it fails (which can be tested using LZ4F_isError())
330
+ * Note : LZ4F_flush() is guaranteed to be successful when dstCapacity >= LZ4F_compressBound(0, prefsPtr).
277
331
  */
278
- LZ4FLIB_API size_t LZ4F_flush(LZ4F_cctx* cctx, void* dstBuffer, size_t dstCapacity, const LZ4F_compressOptions_t* cOptPtr);
332
+ LZ4FLIB_API size_t LZ4F_flush(LZ4F_cctx* cctx,
333
+ void* dstBuffer, size_t dstCapacity,
334
+ const LZ4F_compressOptions_t* cOptPtr);
279
335
 
280
336
  /*! LZ4F_compressEnd() :
281
337
  * To properly finish an LZ4 frame, invoke LZ4F_compressEnd().
282
338
  * It will flush whatever data remained within `cctx` (like LZ4_flush())
283
339
  * and properly finalize the frame, with an endMark and a checksum.
284
340
  * `cOptPtr` is optional : NULL can be provided, in which case all options will be set to default.
285
- * @return : number of bytes written into dstBuffer (necessarily >= 4 (endMark), or 8 if optional frame checksum is enabled)
341
+ * @return : nb of bytes written into dstBuffer, necessarily >= 4 (endMark),
286
342
  * or an error code if it fails (which can be tested using LZ4F_isError())
343
+ * Note : LZ4F_compressEnd() is guaranteed to be successful when dstCapacity >= LZ4F_compressBound(0, prefsPtr).
287
344
  * A successful call to LZ4F_compressEnd() makes `cctx` available again for another compression task.
288
345
  */
289
- LZ4FLIB_API size_t LZ4F_compressEnd(LZ4F_cctx* cctx, void* dstBuffer, size_t dstCapacity, const LZ4F_compressOptions_t* cOptPtr);
346
+ LZ4FLIB_API size_t LZ4F_compressEnd(LZ4F_cctx* cctx,
347
+ void* dstBuffer, size_t dstCapacity,
348
+ const LZ4F_compressOptions_t* cOptPtr);
290
349
 
291
350
 
292
351
  /*-*********************************
@@ -296,21 +355,26 @@ typedef struct LZ4F_dctx_s LZ4F_dctx; /* incomplete type */
296
355
  typedef LZ4F_dctx* LZ4F_decompressionContext_t; /* compatibility with previous API versions */
297
356
 
298
357
  typedef struct {
299
- unsigned stableDst; /* pledge that at least 64KB+64Bytes of previously decompressed data remain unmodifed where it was decoded. This optimization skips storage operations in tmp buffers */
300
- unsigned reserved[3]; /* must be set to zero for forward compatibility */
358
+ unsigned stableDst; /* pledges that last 64KB decompressed data will remain available unmodified between invocations.
359
+ * This optimization skips storage operations in tmp buffers. */
360
+ unsigned skipChecksums; /* disable checksum calculation and verification, even when one is present in frame, to save CPU time.
361
+ * Setting this option to 1 once disables all checksums for the rest of the frame. */
362
+ unsigned reserved1; /* must be set to zero for forward compatibility */
363
+ unsigned reserved0; /* idem */
301
364
  } LZ4F_decompressOptions_t;
302
365
 
303
366
 
304
367
  /* Resource management */
305
368
 
306
- /*!LZ4F_createDecompressionContext() :
307
- * Create an LZ4F_dctx object, to track all decompression operations.
308
- * The version provided MUST be LZ4F_VERSION.
309
- * The function provides a pointer to an allocated and initialized LZ4F_dctx object.
310
- * The result is an errorCode, which can be tested using LZ4F_isError().
311
- * dctx memory can be released using LZ4F_freeDecompressionContext();
312
- * The result of LZ4F_freeDecompressionContext() is indicative of the current state of decompressionContext when being released.
313
- * That is, it should be == 0 if decompression has been completed fully and correctly.
369
+ /*! LZ4F_createDecompressionContext() :
370
+ * Create an LZ4F_dctx object, to track all decompression operations.
371
+ * @version provided MUST be LZ4F_VERSION.
372
+ * @dctxPtr MUST be valid.
373
+ * The function fills @dctxPtr with the value of a pointer to an allocated and initialized LZ4F_dctx object.
374
+ * The @return is an errorCode, which can be tested using LZ4F_isError().
375
+ * dctx memory can be released using LZ4F_freeDecompressionContext();
376
+ * Result of LZ4F_freeDecompressionContext() indicates current state of decompressionContext when being released.
377
+ * That is, it should be == 0 if decompression has been completed fully and correctly.
314
378
  */
315
379
  LZ4FLIB_API LZ4F_errorCode_t LZ4F_createDecompressionContext(LZ4F_dctx** dctxPtr, unsigned version);
316
380
  LZ4FLIB_API LZ4F_errorCode_t LZ4F_freeDecompressionContext(LZ4F_dctx* dctx);
@@ -320,66 +384,112 @@ LZ4FLIB_API LZ4F_errorCode_t LZ4F_freeDecompressionContext(LZ4F_dctx* dctx);
320
384
  * Streaming decompression functions
321
385
  *************************************/
322
386
 
387
+ #define LZ4F_MAGICNUMBER 0x184D2204U
388
+ #define LZ4F_MAGIC_SKIPPABLE_START 0x184D2A50U
389
+ #define LZ4F_MIN_SIZE_TO_KNOW_HEADER_LENGTH 5
390
+
391
+ /*! LZ4F_headerSize() : v1.9.0+
392
+ * Provide the header size of a frame starting at `src`.
393
+ * `srcSize` must be >= LZ4F_MIN_SIZE_TO_KNOW_HEADER_LENGTH,
394
+ * which is enough to decode the header length.
395
+ * @return : size of frame header
396
+ * or an error code, which can be tested using LZ4F_isError()
397
+ * note : Frame header size is variable, but is guaranteed to be
398
+ * >= LZ4F_HEADER_SIZE_MIN bytes, and <= LZ4F_HEADER_SIZE_MAX bytes.
399
+ */
400
+ LZ4FLIB_API size_t LZ4F_headerSize(const void* src, size_t srcSize);
401
+
323
402
  /*! LZ4F_getFrameInfo() :
324
403
  * This function extracts frame parameters (max blockSize, dictID, etc.).
325
- * Its usage is optional.
326
- * Extracted information is typically useful for allocation and dictionary.
327
- * This function works in 2 situations :
328
- * - At the beginning of a new frame, in which case
329
- * it will decode information from `srcBuffer`, starting the decoding process.
330
- * Input size must be large enough to successfully decode the entire frame header.
331
- * Frame header size is variable, but is guaranteed to be <= LZ4F_HEADER_SIZE_MAX bytes.
332
- * It's allowed to provide more input data than this minimum.
333
- * - After decoding has been started.
334
- * In which case, no input is read, frame parameters are extracted from dctx.
335
- * - If decoding has barely started, but not yet extracted information from header,
404
+ * Its usage is optional: user can also invoke LZ4F_decompress() directly.
405
+ *
406
+ * Extracted information will fill an existing LZ4F_frameInfo_t structure.
407
+ * This can be useful for allocation and dictionary identification purposes.
408
+ *
409
+ * LZ4F_getFrameInfo() can work in the following situations :
410
+ *
411
+ * 1) At the beginning of a new frame, before any invocation of LZ4F_decompress().
412
+ * It will decode header from `srcBuffer`,
413
+ * consuming the header and starting the decoding process.
414
+ *
415
+ * Input size must be large enough to contain the full frame header.
416
+ * Frame header size can be known beforehand by LZ4F_headerSize().
417
+ * Frame header size is variable, but is guaranteed to be >= LZ4F_HEADER_SIZE_MIN bytes,
418
+ * and not more than <= LZ4F_HEADER_SIZE_MAX bytes.
419
+ * Hence, blindly providing LZ4F_HEADER_SIZE_MAX bytes or more will always work.
420
+ * It's allowed to provide more input data than the header size,
421
+ * LZ4F_getFrameInfo() will only consume the header.
422
+ *
423
+ * If input size is not large enough,
424
+ * aka if it's smaller than header size,
425
+ * function will fail and return an error code.
426
+ *
427
+ * 2) After decoding has been started,
428
+ * it's possible to invoke LZ4F_getFrameInfo() anytime
429
+ * to extract already decoded frame parameters stored within dctx.
430
+ *
431
+ * Note that, if decoding has barely started,
432
+ * and not yet read enough information to decode the header,
336
433
  * LZ4F_getFrameInfo() will fail.
337
- * The number of bytes consumed from srcBuffer will be updated within *srcSizePtr (necessarily <= original value).
338
- * Decompression must resume from (srcBuffer + *srcSizePtr).
339
- * @return : an hint about how many srcSize bytes LZ4F_decompress() expects for next call,
434
+ *
435
+ * The number of bytes consumed from srcBuffer will be updated in *srcSizePtr (necessarily <= original value).
436
+ * LZ4F_getFrameInfo() only consumes bytes when decoding has not yet started,
437
+ * and when decoding the header has been successful.
438
+ * Decompression must then resume from (srcBuffer + *srcSizePtr).
439
+ *
440
+ * @return : a hint about how many srcSize bytes LZ4F_decompress() expects for next call,
340
441
  * or an error code which can be tested using LZ4F_isError().
341
442
  * note 1 : in case of error, dctx is not modified. Decoding operation can resume from beginning safely.
342
443
  * note 2 : frame parameters are *copied into* an already allocated LZ4F_frameInfo_t structure.
343
444
  */
344
- LZ4FLIB_API size_t LZ4F_getFrameInfo(LZ4F_dctx* dctx,
345
- LZ4F_frameInfo_t* frameInfoPtr,
346
- const void* srcBuffer, size_t* srcSizePtr);
445
+ LZ4FLIB_API size_t
446
+ LZ4F_getFrameInfo(LZ4F_dctx* dctx,
447
+ LZ4F_frameInfo_t* frameInfoPtr,
448
+ const void* srcBuffer, size_t* srcSizePtr);
347
449
 
348
450
  /*! LZ4F_decompress() :
349
- * Call this function repetitively to regenerate compressed data from `srcBuffer`.
350
- * The function will attempt to decode up to *srcSizePtr bytes from srcBuffer, into dstBuffer of capacity *dstSizePtr.
451
+ * Call this function repetitively to regenerate data compressed in `srcBuffer`.
351
452
  *
352
- * The number of bytes regenerated into dstBuffer is provided within *dstSizePtr (necessarily <= original value).
453
+ * The function requires a valid dctx state.
454
+ * It will read up to *srcSizePtr bytes from srcBuffer,
455
+ * and decompress data into dstBuffer, of capacity *dstSizePtr.
353
456
  *
354
- * The number of bytes consumed from srcBuffer is provided within *srcSizePtr (necessarily <= original value).
355
- * Number of bytes consumed can be < number of bytes provided.
356
- * It typically happens when dstBuffer is not large enough to contain all decoded data.
457
+ * The nb of bytes consumed from srcBuffer will be written into *srcSizePtr (necessarily <= original value).
458
+ * The nb of bytes decompressed into dstBuffer will be written into *dstSizePtr (necessarily <= original value).
459
+ *
460
+ * The function does not necessarily read all input bytes, so always check value in *srcSizePtr.
357
461
  * Unconsumed source data must be presented again in subsequent invocations.
358
462
  *
359
- * `dstBuffer` content is expected to be flushed between each invocation, as its content will be overwritten.
360
- * `dstBuffer` itself can be changed at will between each consecutive function invocation.
463
+ * `dstBuffer` can freely change between each consecutive function invocation.
464
+ * `dstBuffer` content will be overwritten.
361
465
  *
362
466
  * @return : an hint of how many `srcSize` bytes LZ4F_decompress() expects for next call.
363
467
  * Schematically, it's the size of the current (or remaining) compressed block + header of next block.
364
468
  * Respecting the hint provides some small speed benefit, because it skips intermediate buffers.
365
469
  * This is just a hint though, it's always possible to provide any srcSize.
470
+ *
366
471
  * When a frame is fully decoded, @return will be 0 (no more data expected).
472
+ * When provided with more bytes than necessary to decode a frame,
473
+ * LZ4F_decompress() will stop reading exactly at end of current frame, and @return 0.
474
+ *
367
475
  * If decompression failed, @return is an error code, which can be tested using LZ4F_isError().
476
+ * After a decompression error, the `dctx` context is not resumable.
477
+ * Use LZ4F_resetDecompressionContext() to return to clean state.
368
478
  *
369
479
  * After a frame is fully decoded, dctx can be used again to decompress another frame.
370
- * After a decompression error, use LZ4F_resetDecompressionContext() before re-using dctx, to return to clean state.
371
480
  */
372
- LZ4FLIB_API size_t LZ4F_decompress(LZ4F_dctx* dctx,
373
- void* dstBuffer, size_t* dstSizePtr,
374
- const void* srcBuffer, size_t* srcSizePtr,
375
- const LZ4F_decompressOptions_t* dOptPtr);
481
+ LZ4FLIB_API size_t
482
+ LZ4F_decompress(LZ4F_dctx* dctx,
483
+ void* dstBuffer, size_t* dstSizePtr,
484
+ const void* srcBuffer, size_t* srcSizePtr,
485
+ const LZ4F_decompressOptions_t* dOptPtr);
376
486
 
377
487
 
378
- /*! LZ4F_resetDecompressionContext() : v1.8.0
488
+ /*! LZ4F_resetDecompressionContext() : added in v1.8.0
379
489
  * In case of an error, the context is left in "undefined" state.
380
490
  * In which case, it's necessary to reset it, before re-using it.
381
- * This method can also be used to abruptly stop an unfinished decompression,
382
- * and start a new one using the same context. */
491
+ * This method can also be used to abruptly stop any unfinished decompression,
492
+ * and start a new one using same context resources. */
383
493
  LZ4FLIB_API void LZ4F_resetDecompressionContext(LZ4F_dctx* dctx); /* always successful */
384
494
 
385
495
 
@@ -389,3 +499,194 @@ LZ4FLIB_API void LZ4F_resetDecompressionContext(LZ4F_dctx* dctx); /* always su
389
499
  #endif
390
500
 
391
501
  #endif /* LZ4F_H_09782039843 */
502
+
503
+ #if defined(LZ4F_STATIC_LINKING_ONLY) && !defined(LZ4F_H_STATIC_09782039843)
504
+ #define LZ4F_H_STATIC_09782039843
505
+
506
+ #if defined (__cplusplus)
507
+ extern "C" {
508
+ #endif
509
+
510
+ /* These declarations are not stable and may change in the future.
511
+ * They are therefore only safe to depend on
512
+ * when the caller is statically linked against the library.
513
+ * To access their declarations, define LZ4F_STATIC_LINKING_ONLY.
514
+ *
515
+ * By default, these symbols aren't published into shared/dynamic libraries.
516
+ * You can override this behavior and force them to be published
517
+ * by defining LZ4F_PUBLISH_STATIC_FUNCTIONS.
518
+ * Use at your own risk.
519
+ */
520
+ #ifdef LZ4F_PUBLISH_STATIC_FUNCTIONS
521
+ # define LZ4FLIB_STATIC_API LZ4FLIB_API
522
+ #else
523
+ # define LZ4FLIB_STATIC_API
524
+ #endif
525
+
526
+
527
+ /* --- Error List --- */
528
+ #define LZ4F_LIST_ERRORS(ITEM) \
529
+ ITEM(OK_NoError) \
530
+ ITEM(ERROR_GENERIC) \
531
+ ITEM(ERROR_maxBlockSize_invalid) \
532
+ ITEM(ERROR_blockMode_invalid) \
533
+ ITEM(ERROR_contentChecksumFlag_invalid) \
534
+ ITEM(ERROR_compressionLevel_invalid) \
535
+ ITEM(ERROR_headerVersion_wrong) \
536
+ ITEM(ERROR_blockChecksum_invalid) \
537
+ ITEM(ERROR_reservedFlag_set) \
538
+ ITEM(ERROR_allocation_failed) \
539
+ ITEM(ERROR_srcSize_tooLarge) \
540
+ ITEM(ERROR_dstMaxSize_tooSmall) \
541
+ ITEM(ERROR_frameHeader_incomplete) \
542
+ ITEM(ERROR_frameType_unknown) \
543
+ ITEM(ERROR_frameSize_wrong) \
544
+ ITEM(ERROR_srcPtr_wrong) \
545
+ ITEM(ERROR_decompressionFailed) \
546
+ ITEM(ERROR_headerChecksum_invalid) \
547
+ ITEM(ERROR_contentChecksum_invalid) \
548
+ ITEM(ERROR_frameDecoding_alreadyStarted) \
549
+ ITEM(ERROR_compressionState_uninitialized) \
550
+ ITEM(ERROR_parameter_null) \
551
+ ITEM(ERROR_maxCode)
552
+
553
+ #define LZ4F_GENERATE_ENUM(ENUM) LZ4F_##ENUM,
554
+
555
+ /* enum list is exposed, to handle specific errors */
556
+ typedef enum { LZ4F_LIST_ERRORS(LZ4F_GENERATE_ENUM)
557
+ _LZ4F_dummy_error_enum_for_c89_never_used } LZ4F_errorCodes;
558
+
559
+ LZ4FLIB_STATIC_API LZ4F_errorCodes LZ4F_getErrorCode(size_t functionResult);
560
+
561
+
562
+ /*! LZ4F_getBlockSize() :
563
+ * Return, in scalar format (size_t),
564
+ * the maximum block size associated with blockSizeID.
565
+ **/
566
+ LZ4FLIB_STATIC_API size_t LZ4F_getBlockSize(LZ4F_blockSizeID_t blockSizeID);
567
+
568
+ /*! LZ4F_uncompressedUpdate() :
569
+ * LZ4F_uncompressedUpdate() can be called repetitively to add as much data uncompressed data as necessary.
570
+ * Important rule: dstCapacity MUST be large enough to store the entire source buffer as
571
+ * no compression is done for this operation
572
+ * If this condition is not respected, LZ4F_uncompressedUpdate() will fail (result is an errorCode).
573
+ * After an error, the state is left in a UB state, and must be re-initialized or freed.
574
+ * If previously a compressed block was written, buffered data is flushed
575
+ * before appending uncompressed data is continued.
576
+ * This is only supported when LZ4F_blockIndependent is used
577
+ * `cOptPtr` is optional : NULL can be provided, in which case all options are set to default.
578
+ * @return : number of bytes written into `dstBuffer` (it can be zero, meaning input data was just buffered).
579
+ * or an error code if it fails (which can be tested using LZ4F_isError())
580
+ */
581
+ LZ4FLIB_STATIC_API size_t
582
+ LZ4F_uncompressedUpdate(LZ4F_cctx* cctx,
583
+ void* dstBuffer, size_t dstCapacity,
584
+ const void* srcBuffer, size_t srcSize,
585
+ const LZ4F_compressOptions_t* cOptPtr);
586
+
587
+ /**********************************
588
+ * Bulk processing dictionary API
589
+ *********************************/
590
+
591
+ /* A Dictionary is useful for the compression of small messages (KB range).
592
+ * It dramatically improves compression efficiency.
593
+ *
594
+ * LZ4 can ingest any input as dictionary, though only the last 64 KB are useful.
595
+ * Best results are generally achieved by using Zstandard's Dictionary Builder
596
+ * to generate a high-quality dictionary from a set of samples.
597
+ *
598
+ * Loading a dictionary has a cost, since it involves construction of tables.
599
+ * The Bulk processing dictionary API makes it possible to share this cost
600
+ * over an arbitrary number of compression jobs, even concurrently,
601
+ * markedly improving compression latency for these cases.
602
+ *
603
+ * The same dictionary will have to be used on the decompression side
604
+ * for decoding to be successful.
605
+ * To help identify the correct dictionary at decoding stage,
606
+ * the frame header allows optional embedding of a dictID field.
607
+ */
608
+ typedef struct LZ4F_CDict_s LZ4F_CDict;
609
+
610
+ /*! LZ4_createCDict() :
611
+ * When compressing multiple messages / blocks using the same dictionary, it's recommended to load it just once.
612
+ * LZ4_createCDict() will create a digested dictionary, ready to start future compression operations without startup delay.
613
+ * LZ4_CDict can be created once and shared by multiple threads concurrently, since its usage is read-only.
614
+ * `dictBuffer` can be released after LZ4_CDict creation, since its content is copied within CDict */
615
+ LZ4FLIB_STATIC_API LZ4F_CDict* LZ4F_createCDict(const void* dictBuffer, size_t dictSize);
616
+ LZ4FLIB_STATIC_API void LZ4F_freeCDict(LZ4F_CDict* CDict);
617
+
618
+
619
+ /*! LZ4_compressFrame_usingCDict() :
620
+ * Compress an entire srcBuffer into a valid LZ4 frame using a digested Dictionary.
621
+ * cctx must point to a context created by LZ4F_createCompressionContext().
622
+ * If cdict==NULL, compress without a dictionary.
623
+ * dstBuffer MUST be >= LZ4F_compressFrameBound(srcSize, preferencesPtr).
624
+ * If this condition is not respected, function will fail (@return an errorCode).
625
+ * The LZ4F_preferences_t structure is optional : you may provide NULL as argument,
626
+ * but it's not recommended, as it's the only way to provide dictID in the frame header.
627
+ * @return : number of bytes written into dstBuffer.
628
+ * or an error code if it fails (can be tested using LZ4F_isError()) */
629
+ LZ4FLIB_STATIC_API size_t
630
+ LZ4F_compressFrame_usingCDict(LZ4F_cctx* cctx,
631
+ void* dst, size_t dstCapacity,
632
+ const void* src, size_t srcSize,
633
+ const LZ4F_CDict* cdict,
634
+ const LZ4F_preferences_t* preferencesPtr);
635
+
636
+
637
+ /*! LZ4F_compressBegin_usingCDict() :
638
+ * Inits streaming dictionary compression, and writes the frame header into dstBuffer.
639
+ * dstCapacity must be >= LZ4F_HEADER_SIZE_MAX bytes.
640
+ * `prefsPtr` is optional : you may provide NULL as argument,
641
+ * however, it's the only way to provide dictID in the frame header.
642
+ * @return : number of bytes written into dstBuffer for the header,
643
+ * or an error code (which can be tested using LZ4F_isError()) */
644
+ LZ4FLIB_STATIC_API size_t
645
+ LZ4F_compressBegin_usingCDict(LZ4F_cctx* cctx,
646
+ void* dstBuffer, size_t dstCapacity,
647
+ const LZ4F_CDict* cdict,
648
+ const LZ4F_preferences_t* prefsPtr);
649
+
650
+
651
+ /*! LZ4F_decompress_usingDict() :
652
+ * Same as LZ4F_decompress(), using a predefined dictionary.
653
+ * Dictionary is used "in place", without any preprocessing.
654
+ ** It must remain accessible throughout the entire frame decoding. */
655
+ LZ4FLIB_STATIC_API size_t
656
+ LZ4F_decompress_usingDict(LZ4F_dctx* dctxPtr,
657
+ void* dstBuffer, size_t* dstSizePtr,
658
+ const void* srcBuffer, size_t* srcSizePtr,
659
+ const void* dict, size_t dictSize,
660
+ const LZ4F_decompressOptions_t* decompressOptionsPtr);
661
+
662
+
663
+ /*! Custom memory allocation :
664
+ * These prototypes make it possible to pass custom allocation/free functions.
665
+ * LZ4F_customMem is provided at state creation time, using LZ4F_create*_advanced() listed below.
666
+ * All allocation/free operations will be completed using these custom variants instead of regular <stdlib.h> ones.
667
+ */
668
+ typedef void* (*LZ4F_AllocFunction) (void* opaqueState, size_t size);
669
+ typedef void* (*LZ4F_CallocFunction) (void* opaqueState, size_t size);
670
+ typedef void (*LZ4F_FreeFunction) (void* opaqueState, void* address);
671
+ typedef struct {
672
+ LZ4F_AllocFunction customAlloc;
673
+ LZ4F_CallocFunction customCalloc; /* optional; when not defined, uses customAlloc + memset */
674
+ LZ4F_FreeFunction customFree;
675
+ void* opaqueState;
676
+ } LZ4F_CustomMem;
677
+ static
678
+ #ifdef __GNUC__
679
+ __attribute__((__unused__))
680
+ #endif
681
+ LZ4F_CustomMem const LZ4F_defaultCMem = { NULL, NULL, NULL, NULL }; /**< this constant defers to stdlib's functions */
682
+
683
+ LZ4FLIB_STATIC_API LZ4F_cctx* LZ4F_createCompressionContext_advanced(LZ4F_CustomMem customMem, unsigned version);
684
+ LZ4FLIB_STATIC_API LZ4F_dctx* LZ4F_createDecompressionContext_advanced(LZ4F_CustomMem customMem, unsigned version);
685
+ LZ4FLIB_STATIC_API LZ4F_CDict* LZ4F_createCDict_advanced(LZ4F_CustomMem customMem, const void* dictBuffer, size_t dictSize);
686
+
687
+
688
+ #if defined (__cplusplus)
689
+ }
690
+ #endif
691
+
692
+ #endif /* defined(LZ4F_STATIC_LINKING_ONLY) && !defined(LZ4F_H_STATIC_09782039843) */