extlz4 0.2.4.2 → 0.3.2

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