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
2
  * LZ4 - Fast LZ compression algorithm
3
3
  * Header File
4
- * Copyright (C) 2011-2017, Yann Collet.
4
+ * Copyright (C) 2011-2020, Yann Collet.
5
5
 
6
6
  BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
7
7
 
@@ -46,24 +46,31 @@ extern "C" {
46
46
  /**
47
47
  Introduction
48
48
 
49
- LZ4 is lossless compression algorithm, providing compression speed at 400 MB/s per core,
49
+ LZ4 is lossless compression algorithm, providing compression speed >500 MB/s per core,
50
50
  scalable with multi-cores CPU. It features an extremely fast decoder, with speed in
51
51
  multiple GB/s per core, typically reaching RAM speed limits on multi-core systems.
52
52
 
53
53
  The LZ4 compression library provides in-memory compression and decompression functions.
54
+ It gives full buffer control to user.
54
55
  Compression can be done in:
55
56
  - a single step (described as Simple Functions)
56
57
  - a single step, reusing a context (described in Advanced Functions)
57
58
  - unbounded multiple steps (described as Streaming compression)
58
59
 
59
- lz4.h provides block compression functions. It gives full buffer control to user.
60
- Decompressing an lz4-compressed block also requires metadata (such as compressed size).
61
- Each application is free to encode such metadata in whichever way it wants.
60
+ lz4.h generates and decodes LZ4-compressed blocks (doc/lz4_Block_format.md).
61
+ Decompressing such a compressed block requires additional metadata.
62
+ Exact metadata depends on exact decompression function.
63
+ For the typical case of LZ4_decompress_safe(),
64
+ metadata includes block's compressed size, and maximum bound of decompressed size.
65
+ Each application is free to encode and pass such metadata in whichever way it wants.
62
66
 
63
- An additional format, called LZ4 frame specification (doc/lz4_Frame_format.md),
64
- take care of encoding standard metadata alongside LZ4-compressed blocks.
65
- If your application requires interoperability, it's recommended to use it.
66
- A library is provided to take care of it, see lz4frame.h.
67
+ lz4.h only handle blocks, it can not generate Frames.
68
+
69
+ Blocks are different from Frames (doc/lz4_Frame_format.md).
70
+ Frames bundle both blocks and metadata in a specified manner.
71
+ Embedding metadata is required for compressed data to be self-contained and portable.
72
+ Frame format is delivered through a companion API, declared in lz4frame.h.
73
+ The `lz4` CLI can only manage frames.
67
74
  */
68
75
 
69
76
  /*^***************************************************************
@@ -90,63 +97,111 @@ extern "C" {
90
97
  # define LZ4LIB_API LZ4LIB_VISIBILITY
91
98
  #endif
92
99
 
100
+ /*! LZ4_FREESTANDING :
101
+ * When this macro is set to 1, it enables "freestanding mode" that is
102
+ * suitable for typical freestanding environment which doesn't support
103
+ * standard C library.
104
+ *
105
+ * - LZ4_FREESTANDING is a compile-time switch.
106
+ * - It requires the following macros to be defined:
107
+ * LZ4_memcpy, LZ4_memmove, LZ4_memset.
108
+ * - It only enables LZ4/HC functions which don't use heap.
109
+ * All LZ4F_* functions are not supported.
110
+ * - See tests/freestanding.c to check its basic setup.
111
+ */
112
+ #if defined(LZ4_FREESTANDING) && (LZ4_FREESTANDING == 1)
113
+ # define LZ4_HEAPMODE 0
114
+ # define LZ4HC_HEAPMODE 0
115
+ # define LZ4_STATIC_LINKING_ONLY_DISABLE_MEMORY_ALLOCATION 1
116
+ # if !defined(LZ4_memcpy)
117
+ # error "LZ4_FREESTANDING requires macro 'LZ4_memcpy'."
118
+ # endif
119
+ # if !defined(LZ4_memset)
120
+ # error "LZ4_FREESTANDING requires macro 'LZ4_memset'."
121
+ # endif
122
+ # if !defined(LZ4_memmove)
123
+ # error "LZ4_FREESTANDING requires macro 'LZ4_memmove'."
124
+ # endif
125
+ #elif ! defined(LZ4_FREESTANDING)
126
+ # define LZ4_FREESTANDING 0
127
+ #endif
128
+
129
+
93
130
  /*------ Version ------*/
94
131
  #define LZ4_VERSION_MAJOR 1 /* for breaking interface changes */
95
- #define LZ4_VERSION_MINOR 8 /* for new (non-breaking) interface capabilities */
96
- #define LZ4_VERSION_RELEASE 0 /* for tweaks, bug-fixes, or development */
132
+ #define LZ4_VERSION_MINOR 9 /* for new (non-breaking) interface capabilities */
133
+ #define LZ4_VERSION_RELEASE 4 /* for tweaks, bug-fixes, or development */
97
134
 
98
135
  #define LZ4_VERSION_NUMBER (LZ4_VERSION_MAJOR *100*100 + LZ4_VERSION_MINOR *100 + LZ4_VERSION_RELEASE)
99
136
 
100
137
  #define LZ4_LIB_VERSION LZ4_VERSION_MAJOR.LZ4_VERSION_MINOR.LZ4_VERSION_RELEASE
101
138
  #define LZ4_QUOTE(str) #str
102
139
  #define LZ4_EXPAND_AND_QUOTE(str) LZ4_QUOTE(str)
103
- #define LZ4_VERSION_STRING LZ4_EXPAND_AND_QUOTE(LZ4_LIB_VERSION)
140
+ #define LZ4_VERSION_STRING LZ4_EXPAND_AND_QUOTE(LZ4_LIB_VERSION) /* requires v1.7.3+ */
104
141
 
105
- LZ4LIB_API int LZ4_versionNumber (void); /**< library version number; to be used when checking dll version */
106
- LZ4LIB_API const char* LZ4_versionString (void); /**< library version string; to be used when checking dll version */
142
+ LZ4LIB_API int LZ4_versionNumber (void); /**< library version number; useful to check dll version; requires v1.3.0+ */
143
+ LZ4LIB_API const char* LZ4_versionString (void); /**< library version string; useful to check dll version; requires v1.7.5+ */
107
144
 
108
145
 
109
146
  /*-************************************
110
147
  * Tuning parameter
111
148
  **************************************/
149
+ #define LZ4_MEMORY_USAGE_MIN 10
150
+ #define LZ4_MEMORY_USAGE_DEFAULT 14
151
+ #define LZ4_MEMORY_USAGE_MAX 20
152
+
112
153
  /*!
113
154
  * LZ4_MEMORY_USAGE :
114
- * Memory usage formula : N->2^N Bytes (examples : 10 -> 1KB; 12 -> 4KB ; 16 -> 64KB; 20 -> 1MB; etc.)
115
- * Increasing memory usage improves compression ratio
116
- * Reduced memory usage can improve speed, due to cache effect
155
+ * Memory usage formula : N->2^N Bytes (examples : 10 -> 1KB; 12 -> 4KB ; 16 -> 64KB; 20 -> 1MB; )
156
+ * Increasing memory usage improves compression ratio, at the cost of speed.
157
+ * Reduced memory usage may improve speed at the cost of ratio, thanks to better cache locality.
117
158
  * Default value is 14, for 16KB, which nicely fits into Intel x86 L1 cache
118
159
  */
119
160
  #ifndef LZ4_MEMORY_USAGE
120
- # define LZ4_MEMORY_USAGE 14
161
+ # define LZ4_MEMORY_USAGE LZ4_MEMORY_USAGE_DEFAULT
162
+ #endif
163
+
164
+ #if (LZ4_MEMORY_USAGE < LZ4_MEMORY_USAGE_MIN)
165
+ # error "LZ4_MEMORY_USAGE is too small !"
166
+ #endif
167
+
168
+ #if (LZ4_MEMORY_USAGE > LZ4_MEMORY_USAGE_MAX)
169
+ # error "LZ4_MEMORY_USAGE is too large !"
121
170
  #endif
122
171
 
123
172
  /*-************************************
124
173
  * Simple Functions
125
174
  **************************************/
126
175
  /*! LZ4_compress_default() :
127
- Compresses 'srcSize' bytes from buffer 'src'
128
- into already allocated 'dst' buffer of size 'dstCapacity'.
129
- Compression is guaranteed to succeed if 'dstCapacity' >= LZ4_compressBound(srcSize).
130
- It also runs faster, so it's a recommended setting.
131
- If the function cannot compress 'src' into a limited 'dst' budget,
132
- compression stops *immediately*, and the function result is zero.
133
- As a consequence, 'dst' content is not valid.
134
- This function never writes outside 'dst' buffer, nor read outside 'source' buffer.
135
- srcSize : supported max value is LZ4_MAX_INPUT_VALUE
136
- dstCapacity : full or partial size of buffer 'dst' (which must be already allocated)
137
- return : the number of bytes written into buffer 'dst' (necessarily <= dstCapacity)
138
- or 0 if compression fails */
176
+ * Compresses 'srcSize' bytes from buffer 'src'
177
+ * into already allocated 'dst' buffer of size 'dstCapacity'.
178
+ * Compression is guaranteed to succeed if 'dstCapacity' >= LZ4_compressBound(srcSize).
179
+ * It also runs faster, so it's a recommended setting.
180
+ * If the function cannot compress 'src' into a more limited 'dst' budget,
181
+ * compression stops *immediately*, and the function result is zero.
182
+ * In which case, 'dst' content is undefined (invalid).
183
+ * srcSize : max supported value is LZ4_MAX_INPUT_SIZE.
184
+ * dstCapacity : size of buffer 'dst' (which must be already allocated)
185
+ * @return : the number of bytes written into buffer 'dst' (necessarily <= dstCapacity)
186
+ * or 0 if compression fails
187
+ * Note : This function is protected against buffer overflow scenarios (never writes outside 'dst' buffer, nor read outside 'source' buffer).
188
+ */
139
189
  LZ4LIB_API int LZ4_compress_default(const char* src, char* dst, int srcSize, int dstCapacity);
140
190
 
141
191
  /*! LZ4_decompress_safe() :
142
- compressedSize : is the exact complete size of the compressed block.
143
- dstCapacity : is the size of destination buffer, which must be already allocated.
144
- return : the number of bytes decompressed into destination buffer (necessarily <= dstCapacity)
145
- If destination buffer is not large enough, decoding will stop and output an error code (negative value).
146
- If the source stream is detected malformed, the function will stop decoding and return a negative result.
147
- This function is protected against buffer overflow exploits, including malicious data packets.
148
- It never writes outside output buffer, nor reads outside input buffer.
149
- */
192
+ * compressedSize : is the exact complete size of the compressed block.
193
+ * dstCapacity : is the size of destination buffer (which must be already allocated), presumed an upper bound of decompressed size.
194
+ * @return : the number of bytes decompressed into destination buffer (necessarily <= dstCapacity)
195
+ * If destination buffer is not large enough, decoding will stop and output an error code (negative value).
196
+ * If the source stream is detected malformed, the function will stop decoding and return a negative result.
197
+ * Note 1 : This function is protected against malicious data packets :
198
+ * it will never writes outside 'dst' buffer, nor read outside 'source' buffer,
199
+ * even if the compressed block is maliciously modified to order the decoder to do these actions.
200
+ * In such case, the decoder stops immediately, and considers the compressed block malformed.
201
+ * Note 2 : compressedSize and dstCapacity must be provided to the function, the compressed block does not contain them.
202
+ * The implementation is free to send / store / derive this information in whichever way is most beneficial.
203
+ * If there is a need for a different format which bundles together both compressed data and its metadata, consider looking at lz4frame.h instead.
204
+ */
150
205
  LZ4LIB_API int LZ4_decompress_safe (const char* src, char* dst, int compressedSize, int dstCapacity);
151
206
 
152
207
 
@@ -156,322 +211,630 @@ LZ4LIB_API int LZ4_decompress_safe (const char* src, char* dst, int compressedSi
156
211
  #define LZ4_MAX_INPUT_SIZE 0x7E000000 /* 2 113 929 216 bytes */
157
212
  #define LZ4_COMPRESSBOUND(isize) ((unsigned)(isize) > (unsigned)LZ4_MAX_INPUT_SIZE ? 0 : (isize) + ((isize)/255) + 16)
158
213
 
159
- /*!
160
- LZ4_compressBound() :
214
+ /*! LZ4_compressBound() :
161
215
  Provides the maximum size that LZ4 compression may output in a "worst case" scenario (input data not compressible)
162
216
  This function is primarily useful for memory allocation purposes (destination buffer size).
163
217
  Macro LZ4_COMPRESSBOUND() is also provided for compilation-time evaluation (stack memory allocation for example).
164
- Note that LZ4_compress_default() compress faster when dest buffer size is >= LZ4_compressBound(srcSize)
218
+ Note that LZ4_compress_default() compresses faster when dstCapacity is >= LZ4_compressBound(srcSize)
165
219
  inputSize : max supported value is LZ4_MAX_INPUT_SIZE
166
220
  return : maximum output size in a "worst case" scenario
167
- or 0, if input size is too large ( > LZ4_MAX_INPUT_SIZE)
221
+ or 0, if input size is incorrect (too large or negative)
168
222
  */
169
223
  LZ4LIB_API int LZ4_compressBound(int inputSize);
170
224
 
171
- /*!
172
- LZ4_compress_fast() :
173
- Same as LZ4_compress_default(), but allows to select an "acceleration" factor.
225
+ /*! LZ4_compress_fast() :
226
+ Same as LZ4_compress_default(), but allows selection of "acceleration" factor.
174
227
  The larger the acceleration value, the faster the algorithm, but also the lesser the compression.
175
228
  It's a trade-off. It can be fine tuned, with each successive value providing roughly +~3% to speed.
176
229
  An acceleration value of "1" is the same as regular LZ4_compress_default()
177
- Values <= 0 will be replaced by ACCELERATION_DEFAULT (see lz4.c), which is 1.
230
+ Values <= 0 will be replaced by LZ4_ACCELERATION_DEFAULT (currently == 1, see lz4.c).
231
+ Values > LZ4_ACCELERATION_MAX will be replaced by LZ4_ACCELERATION_MAX (currently == 65537, see lz4.c).
178
232
  */
179
233
  LZ4LIB_API int LZ4_compress_fast (const char* src, char* dst, int srcSize, int dstCapacity, int acceleration);
180
234
 
181
235
 
182
- /*!
183
- LZ4_compress_fast_extState() :
184
- Same compression function, just using an externally allocated memory space to store compression state.
185
- Use LZ4_sizeofState() to know how much memory must be allocated,
186
- and allocate it on 8-bytes boundaries (using malloc() typically).
187
- Then, provide it as 'void* state' to compression function.
188
- */
236
+ /*! LZ4_compress_fast_extState() :
237
+ * Same as LZ4_compress_fast(), using an externally allocated memory space for its state.
238
+ * Use LZ4_sizeofState() to know how much memory must be allocated,
239
+ * and allocate it on 8-bytes boundaries (using `malloc()` typically).
240
+ * Then, provide this buffer as `void* state` to compression function.
241
+ */
189
242
  LZ4LIB_API int LZ4_sizeofState(void);
190
243
  LZ4LIB_API int LZ4_compress_fast_extState (void* state, const char* src, char* dst, int srcSize, int dstCapacity, int acceleration);
191
244
 
192
245
 
193
- /*!
194
- LZ4_compress_destSize() :
195
- Reverse the logic : compresses as much data as possible from 'src' buffer
196
- into already allocated buffer 'dst' of size 'targetDestSize'.
197
- This function either compresses the entire 'src' content into 'dst' if it's large enough,
198
- or fill 'dst' buffer completely with as much data as possible from 'src'.
199
- *srcSizePtr : will be modified to indicate how many bytes where read from 'src' to fill 'dst'.
200
- New value is necessarily <= old value.
201
- return : Nb bytes written into 'dst' (necessarily <= targetDestSize)
202
- or 0 if compression fails
203
- */
246
+ /*! LZ4_compress_destSize() :
247
+ * Reverse the logic : compresses as much data as possible from 'src' buffer
248
+ * into already allocated buffer 'dst', of size >= 'targetDestSize'.
249
+ * This function either compresses the entire 'src' content into 'dst' if it's large enough,
250
+ * or fill 'dst' buffer completely with as much data as possible from 'src'.
251
+ * note: acceleration parameter is fixed to "default".
252
+ *
253
+ * *srcSizePtr : will be modified to indicate how many bytes where read from 'src' to fill 'dst'.
254
+ * New value is necessarily <= input value.
255
+ * @return : Nb bytes written into 'dst' (necessarily <= targetDestSize)
256
+ * or 0 if compression fails.
257
+ *
258
+ * Note : from v1.8.2 to v1.9.1, this function had a bug (fixed un v1.9.2+):
259
+ * the produced compressed content could, in specific circumstances,
260
+ * require to be decompressed into a destination buffer larger
261
+ * by at least 1 byte than the content to decompress.
262
+ * If an application uses `LZ4_compress_destSize()`,
263
+ * it's highly recommended to update liblz4 to v1.9.2 or better.
264
+ * If this can't be done or ensured,
265
+ * the receiving decompression function should provide
266
+ * a dstCapacity which is > decompressedSize, by at least 1 byte.
267
+ * See https://github.com/lz4/lz4/issues/859 for details
268
+ */
204
269
  LZ4LIB_API int LZ4_compress_destSize (const char* src, char* dst, int* srcSizePtr, int targetDstSize);
205
270
 
206
271
 
207
- /*!
208
- LZ4_decompress_fast() : (unsafe!!)
209
- originalSize : is the original uncompressed size
210
- return : the number of bytes read from the source buffer (in other words, the compressed size)
211
- If the source stream is detected malformed, the function will stop decoding and return a negative result.
212
- Destination buffer must be already allocated. Its size must be >= 'originalSize' bytes.
213
- note : This function respects memory boundaries for *properly formed* compressed data.
214
- It is a bit faster than LZ4_decompress_safe().
215
- However, it does not provide any protection against intentionally modified data stream (malicious input).
216
- Use this function in trusted environment only (data to decode comes from a trusted source).
217
- */
218
- LZ4LIB_API int LZ4_decompress_fast (const char* src, char* dst, int originalSize);
219
-
220
- /*!
221
- LZ4_decompress_safe_partial() :
222
- This function decompress a compressed block of size 'srcSize' at position 'src'
223
- into destination buffer 'dst' of size 'dstCapacity'.
224
- The function will decompress a minimum of 'targetOutputSize' bytes, and stop after that.
225
- However, it's not accurate, and may write more than 'targetOutputSize' (but <= dstCapacity).
226
- @return : the number of bytes decoded in the destination buffer (necessarily <= dstCapacity)
227
- Note : this number can be < 'targetOutputSize' should the compressed block contain less data.
228
- Always control how many bytes were decoded.
229
- If the source stream is detected malformed, the function will stop decoding and return a negative result.
230
- This function never writes outside of output buffer, and never reads outside of input buffer. It is therefore protected against malicious data packets.
231
- */
272
+ /*! LZ4_decompress_safe_partial() :
273
+ * Decompress an LZ4 compressed block, of size 'srcSize' at position 'src',
274
+ * into destination buffer 'dst' of size 'dstCapacity'.
275
+ * Up to 'targetOutputSize' bytes will be decoded.
276
+ * The function stops decoding on reaching this objective.
277
+ * This can be useful to boost performance
278
+ * whenever only the beginning of a block is required.
279
+ *
280
+ * @return : the number of bytes decoded in `dst` (necessarily <= targetOutputSize)
281
+ * If source stream is detected malformed, function returns a negative result.
282
+ *
283
+ * Note 1 : @return can be < targetOutputSize, if compressed block contains less data.
284
+ *
285
+ * Note 2 : targetOutputSize must be <= dstCapacity
286
+ *
287
+ * Note 3 : this function effectively stops decoding on reaching targetOutputSize,
288
+ * so dstCapacity is kind of redundant.
289
+ * This is because in older versions of this function,
290
+ * decoding operation would still write complete sequences.
291
+ * Therefore, there was no guarantee that it would stop writing at exactly targetOutputSize,
292
+ * it could write more bytes, though only up to dstCapacity.
293
+ * Some "margin" used to be required for this operation to work properly.
294
+ * Thankfully, this is no longer necessary.
295
+ * The function nonetheless keeps the same signature, in an effort to preserve API compatibility.
296
+ *
297
+ * Note 4 : If srcSize is the exact size of the block,
298
+ * then targetOutputSize can be any value,
299
+ * including larger than the block's decompressed size.
300
+ * The function will, at most, generate block's decompressed size.
301
+ *
302
+ * Note 5 : If srcSize is _larger_ than block's compressed size,
303
+ * then targetOutputSize **MUST** be <= block's decompressed size.
304
+ * Otherwise, *silent corruption will occur*.
305
+ */
232
306
  LZ4LIB_API int LZ4_decompress_safe_partial (const char* src, char* dst, int srcSize, int targetOutputSize, int dstCapacity);
233
307
 
234
308
 
235
309
  /*-*********************************************
236
310
  * Streaming Compression Functions
237
311
  ***********************************************/
238
- typedef union LZ4_stream_u LZ4_stream_t; /* incomplete type (defined later) */
312
+ typedef union LZ4_stream_u LZ4_stream_t; /* incomplete type (defined later) */
239
313
 
240
- /*! LZ4_createStream() and LZ4_freeStream() :
241
- * LZ4_createStream() will allocate and initialize an `LZ4_stream_t` structure.
242
- * LZ4_freeStream() releases its memory.
243
- */
314
+ /**
315
+ Note about RC_INVOKED
316
+
317
+ - RC_INVOKED is predefined symbol of rc.exe (the resource compiler which is part of MSVC/Visual Studio).
318
+ https://docs.microsoft.com/en-us/windows/win32/menurc/predefined-macros
319
+
320
+ - Since rc.exe is a legacy compiler, it truncates long symbol (> 30 chars)
321
+ and reports warning "RC4011: identifier truncated".
322
+
323
+ - To eliminate the warning, we surround long preprocessor symbol with
324
+ "#if !defined(RC_INVOKED) ... #endif" block that means
325
+ "skip this block when rc.exe is trying to read it".
326
+ */
327
+ #if !defined(RC_INVOKED) /* https://docs.microsoft.com/en-us/windows/win32/menurc/predefined-macros */
328
+ #if !defined(LZ4_STATIC_LINKING_ONLY_DISABLE_MEMORY_ALLOCATION)
244
329
  LZ4LIB_API LZ4_stream_t* LZ4_createStream(void);
245
330
  LZ4LIB_API int LZ4_freeStream (LZ4_stream_t* streamPtr);
331
+ #endif /* !defined(LZ4_STATIC_LINKING_ONLY_DISABLE_MEMORY_ALLOCATION) */
332
+ #endif
246
333
 
247
- /*! LZ4_resetStream() :
248
- * An LZ4_stream_t structure can be allocated once and re-used multiple times.
249
- * Use this function to start compressing a new stream.
334
+ /*! LZ4_resetStream_fast() : v1.9.0+
335
+ * Use this to prepare an LZ4_stream_t for a new chain of dependent blocks
336
+ * (e.g., LZ4_compress_fast_continue()).
337
+ *
338
+ * An LZ4_stream_t must be initialized once before usage.
339
+ * This is automatically done when created by LZ4_createStream().
340
+ * However, should the LZ4_stream_t be simply declared on stack (for example),
341
+ * it's necessary to initialize it first, using LZ4_initStream().
342
+ *
343
+ * After init, start any new stream with LZ4_resetStream_fast().
344
+ * A same LZ4_stream_t can be re-used multiple times consecutively
345
+ * and compress multiple streams,
346
+ * provided that it starts each new stream with LZ4_resetStream_fast().
347
+ *
348
+ * LZ4_resetStream_fast() is much faster than LZ4_initStream(),
349
+ * but is not compatible with memory regions containing garbage data.
350
+ *
351
+ * Note: it's only useful to call LZ4_resetStream_fast()
352
+ * in the context of streaming compression.
353
+ * The *extState* functions perform their own resets.
354
+ * Invoking LZ4_resetStream_fast() before is redundant, and even counterproductive.
250
355
  */
251
- LZ4LIB_API void LZ4_resetStream (LZ4_stream_t* streamPtr);
356
+ LZ4LIB_API void LZ4_resetStream_fast (LZ4_stream_t* streamPtr);
252
357
 
253
358
  /*! LZ4_loadDict() :
254
- * Use this function to load a static dictionary into LZ4_stream_t.
255
- * Any previous data will be forgotten, only 'dictionary' will remain in memory.
359
+ * Use this function to reference a static dictionary into LZ4_stream_t.
360
+ * The dictionary must remain available during compression.
361
+ * LZ4_loadDict() triggers a reset, so any previous data will be forgotten.
362
+ * The same dictionary will have to be loaded on decompression side for successful decoding.
363
+ * Dictionary are useful for better compression of small data (KB range).
364
+ * While LZ4 accept any input as dictionary,
365
+ * results are generally better when using Zstandard's Dictionary Builder.
256
366
  * Loading a size of 0 is allowed, and is the same as reset.
257
- * @return : dictionary size, in bytes (necessarily <= 64 KB)
367
+ * @return : loaded dictionary size, in bytes (necessarily <= 64 KB)
258
368
  */
259
369
  LZ4LIB_API int LZ4_loadDict (LZ4_stream_t* streamPtr, const char* dictionary, int dictSize);
260
370
 
261
371
  /*! LZ4_compress_fast_continue() :
262
- * Compress content into 'src' using data from previously compressed blocks, improving compression ratio.
263
- * 'dst' buffer must be already allocated.
372
+ * Compress 'src' content using data from previously compressed blocks, for better compression ratio.
373
+ * 'dst' buffer must be already allocated.
264
374
  * If dstCapacity >= LZ4_compressBound(srcSize), compression is guaranteed to succeed, and runs faster.
265
375
  *
266
- * Important : Up to 64KB of previously compressed data is assumed to remain present and unmodified in memory !
267
- * Special 1 : If input buffer is a double-buffer, it can have any size, including < 64 KB.
268
- * Special 2 : If input buffer is a ring-buffer, it can have any size, including < 64 KB.
269
- *
270
376
  * @return : size of compressed block
271
- * or 0 if there is an error (typically, compressed data cannot fit into 'dst')
272
- * After an error, the stream status is invalid, it can only be reset or freed.
377
+ * or 0 if there is an error (typically, cannot fit into 'dst').
378
+ *
379
+ * Note 1 : Each invocation to LZ4_compress_fast_continue() generates a new block.
380
+ * Each block has precise boundaries.
381
+ * Each block must be decompressed separately, calling LZ4_decompress_*() with relevant metadata.
382
+ * It's not possible to append blocks together and expect a single invocation of LZ4_decompress_*() to decompress them together.
383
+ *
384
+ * Note 2 : The previous 64KB of source data is __assumed__ to remain present, unmodified, at same address in memory !
385
+ *
386
+ * Note 3 : When input is structured as a double-buffer, each buffer can have any size, including < 64 KB.
387
+ * Make sure that buffers are separated, by at least one byte.
388
+ * This construction ensures that each block only depends on previous block.
389
+ *
390
+ * Note 4 : If input buffer is a ring-buffer, it can have any size, including < 64 KB.
391
+ *
392
+ * Note 5 : After an error, the stream status is undefined (invalid), it can only be reset or freed.
273
393
  */
274
394
  LZ4LIB_API int LZ4_compress_fast_continue (LZ4_stream_t* streamPtr, const char* src, char* dst, int srcSize, int dstCapacity, int acceleration);
275
395
 
276
396
  /*! LZ4_saveDict() :
277
- * If previously compressed data block is not guaranteed to remain available at its current memory location,
397
+ * If last 64KB data cannot be guaranteed to remain available at its current memory location,
278
398
  * save it into a safer place (char* safeBuffer).
279
- * Note : it's not necessary to call LZ4_loadDict() after LZ4_saveDict(), dictionary is immediately usable.
280
- * @return : saved dictionary size in bytes (necessarily <= dictSize), or 0 if error.
399
+ * This is schematically equivalent to a memcpy() followed by LZ4_loadDict(),
400
+ * but is much faster, because LZ4_saveDict() doesn't need to rebuild tables.
401
+ * @return : saved dictionary size in bytes (necessarily <= maxDictSize), or 0 if error.
281
402
  */
282
- LZ4LIB_API int LZ4_saveDict (LZ4_stream_t* streamPtr, char* safeBuffer, int dictSize);
403
+ LZ4LIB_API int LZ4_saveDict (LZ4_stream_t* streamPtr, char* safeBuffer, int maxDictSize);
283
404
 
284
405
 
285
406
  /*-**********************************************
286
407
  * Streaming Decompression Functions
287
408
  * Bufferless synchronous API
288
409
  ************************************************/
289
- typedef union LZ4_streamDecode_u LZ4_streamDecode_t; /* incomplete type (defined later) */
410
+ typedef union LZ4_streamDecode_u LZ4_streamDecode_t; /* tracking context */
290
411
 
291
412
  /*! LZ4_createStreamDecode() and LZ4_freeStreamDecode() :
292
- * creation / destruction of streaming decompression tracking structure.
293
- * A tracking structure can be re-used multiple times sequentially. */
413
+ * creation / destruction of streaming decompression tracking context.
414
+ * A tracking context can be re-used multiple times.
415
+ */
416
+ #if !defined(RC_INVOKED) /* https://docs.microsoft.com/en-us/windows/win32/menurc/predefined-macros */
417
+ #if !defined(LZ4_STATIC_LINKING_ONLY_DISABLE_MEMORY_ALLOCATION)
294
418
  LZ4LIB_API LZ4_streamDecode_t* LZ4_createStreamDecode(void);
295
419
  LZ4LIB_API int LZ4_freeStreamDecode (LZ4_streamDecode_t* LZ4_stream);
420
+ #endif /* !defined(LZ4_STATIC_LINKING_ONLY_DISABLE_MEMORY_ALLOCATION) */
421
+ #endif
296
422
 
297
423
  /*! LZ4_setStreamDecode() :
298
- * An LZ4_streamDecode_t structure can be allocated once and re-used multiple times.
424
+ * An LZ4_streamDecode_t context can be allocated once and re-used multiple times.
299
425
  * Use this function to start decompression of a new stream of blocks.
300
- * A dictionary can optionnally be set. Use NULL or size 0 for a simple reset order.
426
+ * A dictionary can optionally be set. Use NULL or size 0 for a reset order.
427
+ * Dictionary is presumed stable : it must remain accessible and unmodified during next decompression.
301
428
  * @return : 1 if OK, 0 if error
302
429
  */
303
430
  LZ4LIB_API int LZ4_setStreamDecode (LZ4_streamDecode_t* LZ4_streamDecode, const char* dictionary, int dictSize);
304
431
 
432
+ /*! LZ4_decoderRingBufferSize() : v1.8.2+
433
+ * Note : in a ring buffer scenario (optional),
434
+ * blocks are presumed decompressed next to each other
435
+ * up to the moment there is not enough remaining space for next block (remainingSize < maxBlockSize),
436
+ * at which stage it resumes from beginning of ring buffer.
437
+ * When setting such a ring buffer for streaming decompression,
438
+ * provides the minimum size of this ring buffer
439
+ * to be compatible with any source respecting maxBlockSize condition.
440
+ * @return : minimum ring buffer size,
441
+ * or 0 if there is an error (invalid maxBlockSize).
442
+ */
443
+ LZ4LIB_API int LZ4_decoderRingBufferSize(int maxBlockSize);
444
+ #define LZ4_DECODER_RING_BUFFER_SIZE(maxBlockSize) (65536 + 14 + (maxBlockSize)) /* for static allocation; maxBlockSize presumed valid */
445
+
305
446
  /*! LZ4_decompress_*_continue() :
306
447
  * These decoding functions allow decompression of consecutive blocks in "streaming" mode.
307
448
  * A block is an unsplittable entity, it must be presented entirely to a decompression function.
308
- * Decompression functions only accept one block at a time.
309
- * Previously decoded blocks *must* remain available at the memory position where they were decoded (up to 64 KB).
310
- *
311
- * Special : if application sets a ring buffer for decompression, it must respect one of the following conditions :
312
- * - Exactly same size as encoding buffer, with same update rule (block boundaries at same positions)
313
- * In which case, the decoding & encoding ring buffer can have any size, including very small ones ( < 64 KB).
314
- * - Larger than encoding buffer, by a minimum of maxBlockSize more bytes.
315
- * maxBlockSize is implementation dependent. It's the maximum size of any single block.
449
+ * Decompression functions only accepts one block at a time.
450
+ * The last 64KB of previously decoded data *must* remain available and unmodified at the memory position where they were decoded.
451
+ * If less than 64KB of data has been decoded, all the data must be present.
452
+ *
453
+ * Special : if decompression side sets a ring buffer, it must respect one of the following conditions :
454
+ * - Decompression buffer size is _at least_ LZ4_decoderRingBufferSize(maxBlockSize).
455
+ * maxBlockSize is the maximum size of any single block. It can have any value > 16 bytes.
456
+ * In which case, encoding and decoding buffers do not need to be synchronized.
457
+ * Actually, data can be produced by any source compliant with LZ4 format specification, and respecting maxBlockSize.
458
+ * - Synchronized mode :
459
+ * Decompression buffer size is _exactly_ the same as compression buffer size,
460
+ * and follows exactly same update rule (block boundaries at same positions),
461
+ * and decoding function is provided with exact decompressed size of each block (exception for last block of the stream),
462
+ * _then_ decoding & encoding ring buffer can have any size, including small ones ( < 64 KB).
463
+ * - Decompression buffer is larger than encoding buffer, by a minimum of maxBlockSize more bytes.
316
464
  * In which case, encoding and decoding buffers do not need to be synchronized,
317
465
  * and encoding ring buffer can have any size, including small ones ( < 64 KB).
318
- * - _At least_ 64 KB + 8 bytes + maxBlockSize.
319
- * In which case, encoding and decoding buffers do not need to be synchronized,
320
- * and encoding ring buffer can have any size, including larger than decoding buffer.
321
- * Whenever these conditions are not possible, save the last 64KB of decoded data into a safe buffer,
322
- * and indicate where it is saved using LZ4_setStreamDecode() before decompressing next block.
466
+ *
467
+ * Whenever these conditions are not possible,
468
+ * save the last 64KB of decoded data into a safe buffer where it can't be modified during decompression,
469
+ * then indicate where this data is saved using LZ4_setStreamDecode(), before decompressing next block.
323
470
  */
324
- LZ4LIB_API int LZ4_decompress_safe_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* src, char* dst, int srcSize, int dstCapacity);
325
- LZ4LIB_API int LZ4_decompress_fast_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* src, char* dst, int originalSize);
471
+ LZ4LIB_API int
472
+ LZ4_decompress_safe_continue (LZ4_streamDecode_t* LZ4_streamDecode,
473
+ const char* src, char* dst,
474
+ int srcSize, int dstCapacity);
326
475
 
327
476
 
328
477
  /*! LZ4_decompress_*_usingDict() :
329
478
  * These decoding functions work the same as
330
479
  * a combination of LZ4_setStreamDecode() followed by LZ4_decompress_*_continue()
331
480
  * They are stand-alone, and don't need an LZ4_streamDecode_t structure.
481
+ * Dictionary is presumed stable : it must remain accessible and unmodified during decompression.
482
+ * Performance tip : Decompression speed can be substantially increased
483
+ * when dst == dictStart + dictSize.
332
484
  */
333
- LZ4LIB_API int LZ4_decompress_safe_usingDict (const char* src, char* dst, int srcSize, int dstCapcity, const char* dictStart, int dictSize);
334
- LZ4LIB_API int LZ4_decompress_fast_usingDict (const char* src, char* dst, int originalSize, const char* dictStart, int dictSize);
485
+ LZ4LIB_API int
486
+ LZ4_decompress_safe_usingDict(const char* src, char* dst,
487
+ int srcSize, int dstCapacity,
488
+ const char* dictStart, int dictSize);
335
489
 
490
+ LZ4LIB_API int
491
+ LZ4_decompress_safe_partial_usingDict(const char* src, char* dst,
492
+ int compressedSize,
493
+ int targetOutputSize, int maxOutputSize,
494
+ const char* dictStart, int dictSize);
495
+
496
+ #endif /* LZ4_H_2983827168210 */
336
497
 
337
- /*^**********************************************
498
+
499
+ /*^*************************************
338
500
  * !!!!!! STATIC LINKING ONLY !!!!!!
339
- ***********************************************/
340
- /*-************************************
341
- * Private definitions
342
- **************************************
343
- * Do not use these definitions.
344
- * They are exposed to allow static allocation of `LZ4_stream_t` and `LZ4_streamDecode_t`.
345
- * Using these definitions will expose code to API and/or ABI break in future versions of the library.
346
- **************************************/
347
- #define LZ4_HASHLOG (LZ4_MEMORY_USAGE-2)
348
- #define LZ4_HASHTABLESIZE (1 << LZ4_MEMORY_USAGE)
349
- #define LZ4_HASH_SIZE_U32 (1 << LZ4_HASHLOG) /* required as macro for static allocation */
501
+ ***************************************/
350
502
 
351
- #if defined(__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */)
352
- #include <stdint.h>
503
+ /*-****************************************************************************
504
+ * Experimental section
505
+ *
506
+ * Symbols declared in this section must be considered unstable. Their
507
+ * signatures or semantics may change, or they may be removed altogether in the
508
+ * future. They are therefore only safe to depend on when the caller is
509
+ * statically linked against the library.
510
+ *
511
+ * To protect against unsafe usage, not only are the declarations guarded,
512
+ * the definitions are hidden by default
513
+ * when building LZ4 as a shared/dynamic library.
514
+ *
515
+ * In order to access these declarations,
516
+ * define LZ4_STATIC_LINKING_ONLY in your application
517
+ * before including LZ4's headers.
518
+ *
519
+ * In order to make their implementations accessible dynamically, you must
520
+ * define LZ4_PUBLISH_STATIC_FUNCTIONS when building the LZ4 library.
521
+ ******************************************************************************/
353
522
 
354
- typedef struct {
355
- uint32_t hashTable[LZ4_HASH_SIZE_U32];
356
- uint32_t currentOffset;
357
- uint32_t initCheck;
358
- const uint8_t* dictionary;
359
- uint8_t* bufferStart; /* obsolete, used for slideInputBuffer */
360
- uint32_t dictSize;
361
- } LZ4_stream_t_internal;
523
+ #ifdef LZ4_STATIC_LINKING_ONLY
362
524
 
363
- typedef struct {
364
- const uint8_t* externalDict;
365
- size_t extDictSize;
366
- const uint8_t* prefixEnd;
367
- size_t prefixSize;
368
- } LZ4_streamDecode_t_internal;
525
+ #ifndef LZ4_STATIC_3504398509
526
+ #define LZ4_STATIC_3504398509
369
527
 
528
+ #ifdef LZ4_PUBLISH_STATIC_FUNCTIONS
529
+ #define LZ4LIB_STATIC_API LZ4LIB_API
370
530
  #else
531
+ #define LZ4LIB_STATIC_API
532
+ #endif
371
533
 
372
- typedef struct {
373
- unsigned int hashTable[LZ4_HASH_SIZE_U32];
374
- unsigned int currentOffset;
375
- unsigned int initCheck;
376
- const unsigned char* dictionary;
377
- unsigned char* bufferStart; /* obsolete, used for slideInputBuffer */
378
- unsigned int dictSize;
379
- } LZ4_stream_t_internal;
380
534
 
381
- typedef struct {
382
- const unsigned char* externalDict;
383
- size_t extDictSize;
384
- const unsigned char* prefixEnd;
385
- size_t prefixSize;
386
- } LZ4_streamDecode_t_internal;
535
+ /*! LZ4_compress_fast_extState_fastReset() :
536
+ * A variant of LZ4_compress_fast_extState().
537
+ *
538
+ * Using this variant avoids an expensive initialization step.
539
+ * It is only safe to call if the state buffer is known to be correctly initialized already
540
+ * (see above comment on LZ4_resetStream_fast() for a definition of "correctly initialized").
541
+ * From a high level, the difference is that
542
+ * this function initializes the provided state with a call to something like LZ4_resetStream_fast()
543
+ * while LZ4_compress_fast_extState() starts with a call to LZ4_resetStream().
544
+ */
545
+ LZ4LIB_STATIC_API int LZ4_compress_fast_extState_fastReset (void* state, const char* src, char* dst, int srcSize, int dstCapacity, int acceleration);
387
546
 
388
- #endif
547
+ /*! LZ4_attach_dictionary() :
548
+ * This is an experimental API that allows
549
+ * efficient use of a static dictionary many times.
550
+ *
551
+ * Rather than re-loading the dictionary buffer into a working context before
552
+ * each compression, or copying a pre-loaded dictionary's LZ4_stream_t into a
553
+ * working LZ4_stream_t, this function introduces a no-copy setup mechanism,
554
+ * in which the working stream references the dictionary stream in-place.
555
+ *
556
+ * Several assumptions are made about the state of the dictionary stream.
557
+ * Currently, only streams which have been prepared by LZ4_loadDict() should
558
+ * be expected to work.
559
+ *
560
+ * Alternatively, the provided dictionaryStream may be NULL,
561
+ * in which case any existing dictionary stream is unset.
562
+ *
563
+ * If a dictionary is provided, it replaces any pre-existing stream history.
564
+ * The dictionary contents are the only history that can be referenced and
565
+ * logically immediately precede the data compressed in the first subsequent
566
+ * compression call.
567
+ *
568
+ * The dictionary will only remain attached to the working stream through the
569
+ * first compression call, at the end of which it is cleared. The dictionary
570
+ * stream (and source buffer) must remain in-place / accessible / unchanged
571
+ * through the completion of the first compression call on the stream.
572
+ */
573
+ LZ4LIB_STATIC_API void
574
+ LZ4_attach_dictionary(LZ4_stream_t* workingStream,
575
+ const LZ4_stream_t* dictionaryStream);
389
576
 
390
- /*!
391
- * LZ4_stream_t :
392
- * information structure to track an LZ4 stream.
393
- * init this structure before first use.
394
- * note : only use in association with static linking !
395
- * this definition is not API/ABI safe,
396
- * it may change in a future version !
577
+
578
+ /*! In-place compression and decompression
579
+ *
580
+ * It's possible to have input and output sharing the same buffer,
581
+ * for highly constrained memory environments.
582
+ * In both cases, it requires input to lay at the end of the buffer,
583
+ * and decompression to start at beginning of the buffer.
584
+ * Buffer size must feature some margin, hence be larger than final size.
585
+ *
586
+ * |<------------------------buffer--------------------------------->|
587
+ * |<-----------compressed data--------->|
588
+ * |<-----------decompressed size------------------>|
589
+ * |<----margin---->|
590
+ *
591
+ * This technique is more useful for decompression,
592
+ * since decompressed size is typically larger,
593
+ * and margin is short.
594
+ *
595
+ * In-place decompression will work inside any buffer
596
+ * which size is >= LZ4_DECOMPRESS_INPLACE_BUFFER_SIZE(decompressedSize).
597
+ * This presumes that decompressedSize > compressedSize.
598
+ * Otherwise, it means compression actually expanded data,
599
+ * and it would be more efficient to store such data with a flag indicating it's not compressed.
600
+ * This can happen when data is not compressible (already compressed, or encrypted).
601
+ *
602
+ * For in-place compression, margin is larger, as it must be able to cope with both
603
+ * history preservation, requiring input data to remain unmodified up to LZ4_DISTANCE_MAX,
604
+ * and data expansion, which can happen when input is not compressible.
605
+ * As a consequence, buffer size requirements are much higher,
606
+ * and memory savings offered by in-place compression are more limited.
607
+ *
608
+ * There are ways to limit this cost for compression :
609
+ * - Reduce history size, by modifying LZ4_DISTANCE_MAX.
610
+ * Note that it is a compile-time constant, so all compressions will apply this limit.
611
+ * Lower values will reduce compression ratio, except when input_size < LZ4_DISTANCE_MAX,
612
+ * so it's a reasonable trick when inputs are known to be small.
613
+ * - Require the compressor to deliver a "maximum compressed size".
614
+ * This is the `dstCapacity` parameter in `LZ4_compress*()`.
615
+ * When this size is < LZ4_COMPRESSBOUND(inputSize), then compression can fail,
616
+ * in which case, the return code will be 0 (zero).
617
+ * The caller must be ready for these cases to happen,
618
+ * and typically design a backup scheme to send data uncompressed.
619
+ * The combination of both techniques can significantly reduce
620
+ * the amount of margin required for in-place compression.
621
+ *
622
+ * In-place compression can work in any buffer
623
+ * which size is >= (maxCompressedSize)
624
+ * with maxCompressedSize == LZ4_COMPRESSBOUND(srcSize) for guaranteed compression success.
625
+ * LZ4_COMPRESS_INPLACE_BUFFER_SIZE() depends on both maxCompressedSize and LZ4_DISTANCE_MAX,
626
+ * so it's possible to reduce memory requirements by playing with them.
397
627
  */
398
- #define LZ4_STREAMSIZE_U64 ((1 << (LZ4_MEMORY_USAGE-3)) + 4)
399
- #define LZ4_STREAMSIZE (LZ4_STREAMSIZE_U64 * sizeof(unsigned long long))
628
+
629
+ #define LZ4_DECOMPRESS_INPLACE_MARGIN(compressedSize) (((compressedSize) >> 8) + 32)
630
+ #define LZ4_DECOMPRESS_INPLACE_BUFFER_SIZE(decompressedSize) ((decompressedSize) + LZ4_DECOMPRESS_INPLACE_MARGIN(decompressedSize)) /**< note: presumes that compressedSize < decompressedSize. note2: margin is overestimated a bit, since it could use compressedSize instead */
631
+
632
+ #ifndef LZ4_DISTANCE_MAX /* history window size; can be user-defined at compile time */
633
+ # define LZ4_DISTANCE_MAX 65535 /* set to maximum value by default */
634
+ #endif
635
+
636
+ #define LZ4_COMPRESS_INPLACE_MARGIN (LZ4_DISTANCE_MAX + 32) /* LZ4_DISTANCE_MAX can be safely replaced by srcSize when it's smaller */
637
+ #define LZ4_COMPRESS_INPLACE_BUFFER_SIZE(maxCompressedSize) ((maxCompressedSize) + LZ4_COMPRESS_INPLACE_MARGIN) /**< maxCompressedSize is generally LZ4_COMPRESSBOUND(inputSize), but can be set to any lower value, with the risk that compression can fail (return code 0(zero)) */
638
+
639
+ #endif /* LZ4_STATIC_3504398509 */
640
+ #endif /* LZ4_STATIC_LINKING_ONLY */
641
+
642
+
643
+
644
+ #ifndef LZ4_H_98237428734687
645
+ #define LZ4_H_98237428734687
646
+
647
+ /*-************************************************************
648
+ * Private Definitions
649
+ **************************************************************
650
+ * Do not use these definitions directly.
651
+ * They are only exposed to allow static allocation of `LZ4_stream_t` and `LZ4_streamDecode_t`.
652
+ * Accessing members will expose user code to API and/or ABI break in future versions of the library.
653
+ **************************************************************/
654
+ #define LZ4_HASHLOG (LZ4_MEMORY_USAGE-2)
655
+ #define LZ4_HASHTABLESIZE (1 << LZ4_MEMORY_USAGE)
656
+ #define LZ4_HASH_SIZE_U32 (1 << LZ4_HASHLOG) /* required as macro for static allocation */
657
+
658
+ #if defined(__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */)
659
+ # include <stdint.h>
660
+ typedef int8_t LZ4_i8;
661
+ typedef uint8_t LZ4_byte;
662
+ typedef uint16_t LZ4_u16;
663
+ typedef uint32_t LZ4_u32;
664
+ #else
665
+ typedef signed char LZ4_i8;
666
+ typedef unsigned char LZ4_byte;
667
+ typedef unsigned short LZ4_u16;
668
+ typedef unsigned int LZ4_u32;
669
+ #endif
670
+
671
+ /*! LZ4_stream_t :
672
+ * Never ever use below internal definitions directly !
673
+ * These definitions are not API/ABI safe, and may change in future versions.
674
+ * If you need static allocation, declare or allocate an LZ4_stream_t object.
675
+ **/
676
+
677
+ typedef struct LZ4_stream_t_internal LZ4_stream_t_internal;
678
+ struct LZ4_stream_t_internal {
679
+ LZ4_u32 hashTable[LZ4_HASH_SIZE_U32];
680
+ const LZ4_byte* dictionary;
681
+ const LZ4_stream_t_internal* dictCtx;
682
+ LZ4_u32 currentOffset;
683
+ LZ4_u32 tableType;
684
+ LZ4_u32 dictSize;
685
+ /* Implicit padding to ensure structure is aligned */
686
+ };
687
+
688
+ #define LZ4_STREAM_MINSIZE ((1UL << LZ4_MEMORY_USAGE) + 32) /* static size, for inter-version compatibility */
400
689
  union LZ4_stream_u {
401
- unsigned long long table[LZ4_STREAMSIZE_U64];
690
+ char minStateSize[LZ4_STREAM_MINSIZE];
402
691
  LZ4_stream_t_internal internal_donotuse;
403
- } ; /* previously typedef'd to LZ4_stream_t */
692
+ }; /* previously typedef'd to LZ4_stream_t */
404
693
 
405
694
 
406
- /*!
407
- * LZ4_streamDecode_t :
408
- * information structure to track an LZ4 stream during decompression.
409
- * init this structure using LZ4_setStreamDecode (or memset()) before first use
410
- * note : only use in association with static linking !
411
- * this definition is not API/ABI safe,
412
- * and may change in a future version !
413
- */
414
- #define LZ4_STREAMDECODESIZE_U64 4
415
- #define LZ4_STREAMDECODESIZE (LZ4_STREAMDECODESIZE_U64 * sizeof(unsigned long long))
695
+ /*! LZ4_initStream() : v1.9.0+
696
+ * An LZ4_stream_t structure must be initialized at least once.
697
+ * This is automatically done when invoking LZ4_createStream(),
698
+ * but it's not when the structure is simply declared on stack (for example).
699
+ *
700
+ * Use LZ4_initStream() to properly initialize a newly declared LZ4_stream_t.
701
+ * It can also initialize any arbitrary buffer of sufficient size,
702
+ * and will @return a pointer of proper type upon initialization.
703
+ *
704
+ * Note : initialization fails if size and alignment conditions are not respected.
705
+ * In which case, the function will @return NULL.
706
+ * Note2: An LZ4_stream_t structure guarantees correct alignment and size.
707
+ * Note3: Before v1.9.0, use LZ4_resetStream() instead
708
+ **/
709
+ LZ4LIB_API LZ4_stream_t* LZ4_initStream (void* buffer, size_t size);
710
+
711
+
712
+ /*! LZ4_streamDecode_t :
713
+ * Never ever use below internal definitions directly !
714
+ * These definitions are not API/ABI safe, and may change in future versions.
715
+ * If you need static allocation, declare or allocate an LZ4_streamDecode_t object.
716
+ **/
717
+ typedef struct {
718
+ const LZ4_byte* externalDict;
719
+ const LZ4_byte* prefixEnd;
720
+ size_t extDictSize;
721
+ size_t prefixSize;
722
+ } LZ4_streamDecode_t_internal;
723
+
724
+ #define LZ4_STREAMDECODE_MINSIZE 32
416
725
  union LZ4_streamDecode_u {
417
- unsigned long long table[LZ4_STREAMDECODESIZE_U64];
726
+ char minStateSize[LZ4_STREAMDECODE_MINSIZE];
418
727
  LZ4_streamDecode_t_internal internal_donotuse;
419
728
  } ; /* previously typedef'd to LZ4_streamDecode_t */
420
729
 
421
730
 
731
+
422
732
  /*-************************************
423
733
  * Obsolete Functions
424
734
  **************************************/
425
735
 
426
736
  /*! Deprecation warnings
427
- Should deprecation warnings be a problem,
428
- it is generally possible to disable them,
429
- typically with -Wno-deprecated-declarations for gcc
430
- or _CRT_SECURE_NO_WARNINGS in Visual.
431
- Otherwise, it's also possible to define LZ4_DISABLE_DEPRECATE_WARNINGS */
737
+ *
738
+ * Deprecated functions make the compiler generate a warning when invoked.
739
+ * This is meant to invite users to update their source code.
740
+ * Should deprecation warnings be a problem, it is generally possible to disable them,
741
+ * typically with -Wno-deprecated-declarations for gcc
742
+ * or _CRT_SECURE_NO_WARNINGS in Visual.
743
+ *
744
+ * Another method is to define LZ4_DISABLE_DEPRECATE_WARNINGS
745
+ * before including the header file.
746
+ */
432
747
  #ifdef LZ4_DISABLE_DEPRECATE_WARNINGS
433
748
  # define LZ4_DEPRECATED(message) /* disable deprecation warnings */
434
749
  #else
435
- # define LZ4_GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__)
436
- # if defined(__clang__) /* clang doesn't handle mixed C++11 and CNU attributes */
437
- # define LZ4_DEPRECATED(message) __attribute__((deprecated(message)))
438
- # elif defined (__cplusplus) && (__cplusplus >= 201402) /* C++14 or greater */
750
+ # if defined (__cplusplus) && (__cplusplus >= 201402) /* C++14 or greater */
439
751
  # define LZ4_DEPRECATED(message) [[deprecated(message)]]
440
- # elif (LZ4_GCC_VERSION >= 405)
441
- # define LZ4_DEPRECATED(message) __attribute__((deprecated(message)))
442
- # elif (LZ4_GCC_VERSION >= 301)
443
- # define LZ4_DEPRECATED(message) __attribute__((deprecated))
444
752
  # elif defined(_MSC_VER)
445
753
  # define LZ4_DEPRECATED(message) __declspec(deprecated(message))
754
+ # elif defined(__clang__) || (defined(__GNUC__) && (__GNUC__ * 10 + __GNUC_MINOR__ >= 45))
755
+ # define LZ4_DEPRECATED(message) __attribute__((deprecated(message)))
756
+ # elif defined(__GNUC__) && (__GNUC__ * 10 + __GNUC_MINOR__ >= 31)
757
+ # define LZ4_DEPRECATED(message) __attribute__((deprecated))
446
758
  # else
447
- # pragma message("WARNING: You need to implement LZ4_DEPRECATED for this compiler")
448
- # define LZ4_DEPRECATED(message)
759
+ # pragma message("WARNING: LZ4_DEPRECATED needs custom implementation for this compiler")
760
+ # define LZ4_DEPRECATED(message) /* disabled */
449
761
  # endif
450
762
  #endif /* LZ4_DISABLE_DEPRECATE_WARNINGS */
451
763
 
452
- /* Obsolete compression functions */
453
- LZ4LIB_API LZ4_DEPRECATED("use LZ4_compress_default() instead") int LZ4_compress (const char* source, char* dest, int sourceSize);
454
- LZ4LIB_API LZ4_DEPRECATED("use LZ4_compress_default() instead") int LZ4_compress_limitedOutput (const char* source, char* dest, int sourceSize, int maxOutputSize);
455
- LZ4LIB_API LZ4_DEPRECATED("use LZ4_compress_fast_extState() instead") int LZ4_compress_withState (void* state, const char* source, char* dest, int inputSize);
456
- LZ4LIB_API LZ4_DEPRECATED("use LZ4_compress_fast_extState() instead") int LZ4_compress_limitedOutput_withState (void* state, const char* source, char* dest, int inputSize, int maxOutputSize);
457
- LZ4LIB_API LZ4_DEPRECATED("use LZ4_compress_fast_continue() instead") int LZ4_compress_continue (LZ4_stream_t* LZ4_streamPtr, const char* source, char* dest, int inputSize);
458
- LZ4LIB_API LZ4_DEPRECATED("use LZ4_compress_fast_continue() instead") int LZ4_compress_limitedOutput_continue (LZ4_stream_t* LZ4_streamPtr, const char* source, char* dest, int inputSize, int maxOutputSize);
764
+ /*! Obsolete compression functions (since v1.7.3) */
765
+ LZ4_DEPRECATED("use LZ4_compress_default() instead") LZ4LIB_API int LZ4_compress (const char* src, char* dest, int srcSize);
766
+ LZ4_DEPRECATED("use LZ4_compress_default() instead") LZ4LIB_API int LZ4_compress_limitedOutput (const char* src, char* dest, int srcSize, int maxOutputSize);
767
+ LZ4_DEPRECATED("use LZ4_compress_fast_extState() instead") LZ4LIB_API int LZ4_compress_withState (void* state, const char* source, char* dest, int inputSize);
768
+ LZ4_DEPRECATED("use LZ4_compress_fast_extState() instead") LZ4LIB_API int LZ4_compress_limitedOutput_withState (void* state, const char* source, char* dest, int inputSize, int maxOutputSize);
769
+ LZ4_DEPRECATED("use LZ4_compress_fast_continue() instead") LZ4LIB_API int LZ4_compress_continue (LZ4_stream_t* LZ4_streamPtr, const char* source, char* dest, int inputSize);
770
+ LZ4_DEPRECATED("use LZ4_compress_fast_continue() instead") LZ4LIB_API int LZ4_compress_limitedOutput_continue (LZ4_stream_t* LZ4_streamPtr, const char* source, char* dest, int inputSize, int maxOutputSize);
459
771
 
460
- /* Obsolete decompression functions */
461
- LZ4LIB_API LZ4_DEPRECATED("use LZ4_decompress_fast() instead") int LZ4_uncompress (const char* source, char* dest, int outputSize);
462
- LZ4LIB_API LZ4_DEPRECATED("use LZ4_decompress_safe() instead") int LZ4_uncompress_unknownOutputSize (const char* source, char* dest, int isize, int maxOutputSize);
772
+ /*! Obsolete decompression functions (since v1.8.0) */
773
+ LZ4_DEPRECATED("use LZ4_decompress_fast() instead") LZ4LIB_API int LZ4_uncompress (const char* source, char* dest, int outputSize);
774
+ LZ4_DEPRECATED("use LZ4_decompress_safe() instead") LZ4LIB_API int LZ4_uncompress_unknownOutputSize (const char* source, char* dest, int isize, int maxOutputSize);
463
775
 
464
- /* Obsolete streaming functions; use new streaming interface whenever possible */
465
- LZ4LIB_API LZ4_DEPRECATED("use LZ4_createStream() instead") void* LZ4_create (char* inputBuffer);
466
- LZ4LIB_API LZ4_DEPRECATED("use LZ4_createStream() instead") int LZ4_sizeofStreamState(void);
467
- LZ4LIB_API LZ4_DEPRECATED("use LZ4_resetStream() instead") int LZ4_resetStreamState(void* state, char* inputBuffer);
468
- LZ4LIB_API LZ4_DEPRECATED("use LZ4_saveDict() instead") char* LZ4_slideInputBuffer (void* state);
776
+ /* Obsolete streaming functions (since v1.7.0)
777
+ * degraded functionality; do not use!
778
+ *
779
+ * In order to perform streaming compression, these functions depended on data
780
+ * that is no longer tracked in the state. They have been preserved as well as
781
+ * possible: using them will still produce a correct output. However, they don't
782
+ * actually retain any history between compression calls. The compression ratio
783
+ * achieved will therefore be no better than compressing each chunk
784
+ * independently.
785
+ */
786
+ LZ4_DEPRECATED("Use LZ4_createStream() instead") LZ4LIB_API void* LZ4_create (char* inputBuffer);
787
+ LZ4_DEPRECATED("Use LZ4_createStream() instead") LZ4LIB_API int LZ4_sizeofStreamState(void);
788
+ LZ4_DEPRECATED("Use LZ4_resetStream() instead") LZ4LIB_API int LZ4_resetStreamState(void* state, char* inputBuffer);
789
+ LZ4_DEPRECATED("Use LZ4_saveDict() instead") LZ4LIB_API char* LZ4_slideInputBuffer (void* state);
790
+
791
+ /*! Obsolete streaming decoding functions (since v1.7.0) */
792
+ LZ4_DEPRECATED("use LZ4_decompress_safe_usingDict() instead") LZ4LIB_API int LZ4_decompress_safe_withPrefix64k (const char* src, char* dst, int compressedSize, int maxDstSize);
793
+ LZ4_DEPRECATED("use LZ4_decompress_fast_usingDict() instead") LZ4LIB_API int LZ4_decompress_fast_withPrefix64k (const char* src, char* dst, int originalSize);
794
+
795
+ /*! Obsolete LZ4_decompress_fast variants (since v1.9.0) :
796
+ * These functions used to be faster than LZ4_decompress_safe(),
797
+ * but this is no longer the case. They are now slower.
798
+ * This is because LZ4_decompress_fast() doesn't know the input size,
799
+ * and therefore must progress more cautiously into the input buffer to not read beyond the end of block.
800
+ * On top of that `LZ4_decompress_fast()` is not protected vs malformed or malicious inputs, making it a security liability.
801
+ * As a consequence, LZ4_decompress_fast() is strongly discouraged, and deprecated.
802
+ *
803
+ * The last remaining LZ4_decompress_fast() specificity is that
804
+ * it can decompress a block without knowing its compressed size.
805
+ * Such functionality can be achieved in a more secure manner
806
+ * by employing LZ4_decompress_safe_partial().
807
+ *
808
+ * Parameters:
809
+ * originalSize : is the uncompressed size to regenerate.
810
+ * `dst` must be already allocated, its size must be >= 'originalSize' bytes.
811
+ * @return : number of bytes read from source buffer (== compressed size).
812
+ * The function expects to finish at block's end exactly.
813
+ * If the source stream is detected malformed, the function stops decoding and returns a negative result.
814
+ * note : LZ4_decompress_fast*() requires originalSize. Thanks to this information, it never writes past the output buffer.
815
+ * However, since it doesn't know its 'src' size, it may read an unknown amount of input, past input buffer bounds.
816
+ * Also, since match offsets are not validated, match reads from 'src' may underflow too.
817
+ * These issues never happen if input (compressed) data is correct.
818
+ * But they may happen if input data is invalid (error or intentional tampering).
819
+ * As a consequence, use these functions in trusted environments with trusted data **only**.
820
+ */
821
+ LZ4_DEPRECATED("This function is deprecated and unsafe. Consider using LZ4_decompress_safe() instead")
822
+ LZ4LIB_API int LZ4_decompress_fast (const char* src, char* dst, int originalSize);
823
+ LZ4_DEPRECATED("This function is deprecated and unsafe. Consider using LZ4_decompress_safe_continue() instead")
824
+ LZ4LIB_API int LZ4_decompress_fast_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* src, char* dst, int originalSize);
825
+ LZ4_DEPRECATED("This function is deprecated and unsafe. Consider using LZ4_decompress_safe_usingDict() instead")
826
+ LZ4LIB_API int LZ4_decompress_fast_usingDict (const char* src, char* dst, int originalSize, const char* dictStart, int dictSize);
469
827
 
470
- /* Obsolete streaming decoding functions */
471
- LZ4LIB_API LZ4_DEPRECATED("use LZ4_decompress_safe_usingDict() instead") int LZ4_decompress_safe_withPrefix64k (const char* src, char* dst, int compressedSize, int maxDstSize);
472
- LZ4LIB_API LZ4_DEPRECATED("use LZ4_decompress_fast_usingDict() instead") int LZ4_decompress_fast_withPrefix64k (const char* src, char* dst, int originalSize);
828
+ /*! LZ4_resetStream() :
829
+ * An LZ4_stream_t structure must be initialized at least once.
830
+ * This is done with LZ4_initStream(), or LZ4_resetStream().
831
+ * Consider switching to LZ4_initStream(),
832
+ * invoking LZ4_resetStream() will trigger deprecation warnings in the future.
833
+ */
834
+ LZ4LIB_API void LZ4_resetStream (LZ4_stream_t* streamPtr);
473
835
 
474
- #endif /* LZ4_H_2983827168210 */
836
+
837
+ #endif /* LZ4_H_98237428734687 */
475
838
 
476
839
 
477
840
  #if defined (__cplusplus)