VR-Vantage 3.0 API Documentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
lz4.h
Go to the documentation of this file.
1 /*
2  * LZ4 - Fast LZ compression algorithm
3  * Header File
4  * Copyright (C) 2011-2016, Yann Collet.
5 
6  BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
7 
8  Redistribution and use in source and binary forms, with or without
9  modification, are permitted provided that the following conditions are
10  met:
11 
12  * Redistributions of source code must retain the above copyright
13  notice, this list of conditions and the following disclaimer.
14  * Redistributions in binary form must reproduce the above
15  copyright notice, this list of conditions and the following disclaimer
16  in the documentation and/or other materials provided with the
17  distribution.
18 
19  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 
31  You can contact the author at :
32  - LZ4 homepage : http://www.lz4.org
33  - LZ4 source repository : https://github.com/lz4/lz4
34 */
35 #ifndef LZ4_H_2983827168210
36 #define LZ4_H_2983827168210
37 
38 #if defined (__cplusplus)
39 extern "C" {
40 #endif
41 
42 /* --- Dependency --- */
43 #include <stddef.h> /* size_t */
44 
45 
69 /*^***************************************************************
70 * Export parameters
71 *****************************************************************/
72 /*
73 * LZ4_DLL_EXPORT :
74 * Enable exporting of functions when building a Windows DLL
75 */
76 #if defined(LZ4_DLL_EXPORT) && (LZ4_DLL_EXPORT==1)
77 # define LZ4LIB_API __declspec(dllexport)
78 #elif defined(LZ4_DLL_IMPORT) && (LZ4_DLL_IMPORT==1)
79 # 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.*/
80 #else
81 # define LZ4LIB_API
82 #endif
83 
84 
85 /*------ Version ------*/
86 #define LZ4_VERSION_MAJOR 1 /* for breaking interface changes */
87 #define LZ4_VERSION_MINOR 7 /* for new (non-breaking) interface capabilities */
88 #define LZ4_VERSION_RELEASE 5 /* for tweaks, bug-fixes, or development */
89 
90 #define LZ4_VERSION_NUMBER (LZ4_VERSION_MAJOR *100*100 + LZ4_VERSION_MINOR *100 + LZ4_VERSION_RELEASE)
91 
92 #define LZ4_LIB_VERSION LZ4_VERSION_MAJOR.LZ4_VERSION_MINOR.LZ4_VERSION_RELEASE
93 #define LZ4_QUOTE(str) #str
94 #define LZ4_EXPAND_AND_QUOTE(str) LZ4_QUOTE(str)
95 #define LZ4_VERSION_STRING LZ4_EXPAND_AND_QUOTE(LZ4_LIB_VERSION)
96 
97 LZ4LIB_API int LZ4_versionNumber (void);
98 LZ4LIB_API const char* LZ4_versionString (void);
101 /*-************************************
102 * Tuning parameter
103 **************************************/
111 #ifndef LZ4_MEMORY_USAGE
112 # define LZ4_MEMORY_USAGE 14
113 #endif
114 
115 /*-************************************
116 * Simple Functions
117 **************************************/
131 LZ4LIB_API int LZ4_compress_default(const char* source, char* dest, int sourceSize, int maxDestSize);
132 
142 LZ4LIB_API int LZ4_decompress_safe (const char* source, char* dest, int compressedSize, int maxDecompressedSize);
143 
144 
145 /*-************************************
146 * Advanced Functions
147 **************************************/
148 #define LZ4_MAX_INPUT_SIZE 0x7E000000 /* 2 113 929 216 bytes */
149 #define LZ4_COMPRESSBOUND(isize) ((unsigned)(isize) > (unsigned)LZ4_MAX_INPUT_SIZE ? 0 : (isize) + ((isize)/255) + 16)
150 
162 
171 LZ4LIB_API int LZ4_compress_fast (const char* source, char* dest, int sourceSize, int maxDestSize, int acceleration);
172 
173 
181 LZ4LIB_API int LZ4_sizeofState(void);
182 LZ4LIB_API int LZ4_compress_fast_extState (void* state, const char* source, char* dest, int inputSize, int maxDestSize, int acceleration);
183 
184 
196 LZ4LIB_API int LZ4_compress_destSize (const char* source, char* dest, int* sourceSizePtr, int targetDestSize);
197 
198 
210 // VRV_PATCH_BEGIN
211 // This is renamed to avoid ambiguity with the system LZ4 library. A namespace is
212 // not sufficient for this purpose due to the C linkage. Why the system library
213 // was ever being used is not fully understood, but if that is ever solved, this
214 // renaming can be undone.
215 LZ4LIB_API int LZ4_decompress_fastStatic (const char* source, char* dest, int originalSize);
216 // VRV_PATCH_END
217 
230 LZ4LIB_API int LZ4_decompress_safe_partial (const char* source, char* dest, int compressedSize, int targetOutputSize, int maxDecompressedSize);
231 
232 
233 /*-*********************************************
234 * Streaming Compression Functions
235 ***********************************************/
236 typedef union LZ4_stream_u LZ4_stream_t; /* incomplete type (defined later) */
237 
243 LZ4LIB_API int LZ4_freeStream (LZ4_stream_t* streamPtr);
244 
249 LZ4LIB_API void LZ4_resetStream (LZ4_stream_t* streamPtr);
250 
257 LZ4LIB_API int LZ4_loadDict (LZ4_stream_t* streamPtr, const char* dictionary, int dictSize);
258 
266 LZ4LIB_API int LZ4_compress_fast_continue (LZ4_stream_t* streamPtr, const char* src, char* dst, int srcSize, int maxDstSize, int acceleration);
267 
275 LZ4LIB_API int LZ4_saveDict (LZ4_stream_t* streamPtr, char* safeBuffer, int dictSize);
276 
277 
278 /*-**********************************************
279 * Streaming Decompression Functions
280 * Bufferless synchronous API
281 ************************************************/
282 typedef union LZ4_streamDecode_u LZ4_streamDecode_t; /* incomplete type (defined later) */
283 
288 
294 LZ4LIB_API int LZ4_setStreamDecode (LZ4_streamDecode_t* LZ4_streamDecode, const char* dictionary, int dictSize);
295 
313 LZ4LIB_API int LZ4_decompress_safe_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* source, char* dest, int compressedSize, int maxDecompressedSize);
314 LZ4LIB_API int LZ4_decompress_fast_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* source, char* dest, int originalSize);
315 
316 
322 LZ4LIB_API int LZ4_decompress_safe_usingDict (const char* source, char* dest, int compressedSize, int maxDecompressedSize, const char* dictStart, int dictSize);
323 LZ4LIB_API int LZ4_decompress_fast_usingDict (const char* source, char* dest, int originalSize, const char* dictStart, int dictSize);
324 
325 
326 /*^**********************************************
327  * !!!!!! STATIC LINKING ONLY !!!!!!
328  ***********************************************/
329 /*-************************************
330  * Private definitions
331  **************************************
332  * Do not use these definitions.
333  * They are exposed to allow static allocation of `LZ4_stream_t` and `LZ4_streamDecode_t`.
334  * Using these definitions will expose code to API and/or ABI break in future versions of the library.
335  **************************************/
336 #define LZ4_HASHLOG (LZ4_MEMORY_USAGE-2)
337 #define LZ4_HASHTABLESIZE (1 << LZ4_MEMORY_USAGE)
338 #define LZ4_HASH_SIZE_U32 (1 << LZ4_HASHLOG) /* required as macro for static allocation */
339 
340 #if defined(__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */)
341 #include <stdint.h>
342 
343 typedef struct {
344  uint32_t hashTable[LZ4_HASH_SIZE_U32];
345  uint32_t currentOffset;
346  uint32_t initCheck;
347  const uint8_t* dictionary;
348  uint8_t* bufferStart; /* obsolete, used for slideInputBuffer */
349  uint32_t dictSize;
351 
352 typedef struct {
353  const uint8_t* externalDict;
354  size_t extDictSize;
355  const uint8_t* prefixEnd;
356  size_t prefixSize;
358 
359 #else
360 
361 typedef struct {
362  unsigned int hashTable[LZ4_HASH_SIZE_U32];
363  unsigned int currentOffset;
364  unsigned int initCheck;
365  const unsigned char* dictionary;
366  unsigned char* bufferStart; /* obsolete, used for slideInputBuffer */
367  unsigned int dictSize;
369 
370 typedef struct {
371  const unsigned char* externalDict;
372  size_t extDictSize;
373  const unsigned char* prefixEnd;
374  size_t prefixSize;
376 
377 #endif
378 
387 #define LZ4_STREAMSIZE_U64 ((1 << (LZ4_MEMORY_USAGE-3)) + 4)
388 #define LZ4_STREAMSIZE (LZ4_STREAMSIZE_U64 * sizeof(unsigned long long))
390  unsigned long long table[LZ4_STREAMSIZE_U64];
392 } ; /* previously typedef'd to LZ4_stream_t */
393 
394 
403 #define LZ4_STREAMDECODESIZE_U64 4
404 #define LZ4_STREAMDECODESIZE (LZ4_STREAMDECODESIZE_U64 * sizeof(unsigned long long))
406  unsigned long long table[LZ4_STREAMDECODESIZE_U64];
408 } ; /* previously typedef'd to LZ4_streamDecode_t */
409 
410 
411 /*-************************************
412 * Obsolete Functions
413 **************************************/
414 
421 #ifdef LZ4_DISABLE_DEPRECATE_WARNINGS
422 # define LZ4_DEPRECATED(message) /* disable deprecation warnings */
423 #else
424 # define LZ4_GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__)
425 # if defined (__cplusplus) && (__cplusplus >= 201402) /* C++14 or greater */
426 # define LZ4_DEPRECATED(message) [[deprecated(message)]]
427 # elif (LZ4_GCC_VERSION >= 405) || defined(__clang__)
428 # define LZ4_DEPRECATED(message) __attribute__((deprecated(message)))
429 # elif (LZ4_GCC_VERSION >= 301)
430 # define LZ4_DEPRECATED(message) __attribute__((deprecated))
431 # elif defined(_MSC_VER)
432 # define LZ4_DEPRECATED(message) __declspec(deprecated(message))
433 # else
434 # pragma message("WARNING: You need to implement LZ4_DEPRECATED for this compiler")
435 # define LZ4_DEPRECATED(message)
436 # endif
437 #endif /* LZ4_DISABLE_DEPRECATE_WARNINGS */
438 
439 /* Obsolete compression functions */
440 LZ4_DEPRECATED("use LZ4_compress_default() instead") int LZ4_compress (const char* source, char* dest, int sourceSize);
441 LZ4_DEPRECATED("use LZ4_compress_default() instead") int LZ4_compress_limitedOutput (const char* source, char* dest, int sourceSize, int maxOutputSize);
442 LZ4_DEPRECATED("use LZ4_compress_fast_extState() instead") int LZ4_compress_withState (void* state, const char* source, char* dest, int inputSize);
443 LZ4_DEPRECATED("use LZ4_compress_fast_extState() instead") int LZ4_compress_limitedOutput_withState (void* state, const char* source, char* dest, int inputSize, int maxOutputSize);
444 LZ4_DEPRECATED("use LZ4_compress_fast_continue() instead") int LZ4_compress_continue (LZ4_stream_t* LZ4_streamPtr, const char* source, char* dest, int inputSize);
445 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);
446 
447 /* Obsolete decompression functions */
448 /* These function names are completely deprecated and must no longer be used.
449  They are only provided in lz4.c for compatibility with older programs.
450  - LZ4_uncompress is the same as LZ4_decompress_fast
451  - LZ4_uncompress_unknownOutputSize is the same as LZ4_decompress_safe
452  These function prototypes are now disabled; uncomment them only if you really need them.
453  It is highly recommended to stop using these prototypes and migrate to maintained ones */
454 /* int LZ4_uncompress (const char* source, char* dest, int outputSize); */
455 /* int LZ4_uncompress_unknownOutputSize (const char* source, char* dest, int isize, int maxOutputSize); */
456 
457 /* Obsolete streaming functions; use new streaming interface whenever possible */
458 LZ4_DEPRECATED("use LZ4_createStream() instead") void* LZ4_create (char* inputBuffer);
459 LZ4_DEPRECATED("use LZ4_createStream() instead") int LZ4_sizeofStreamState(void);
460 LZ4_DEPRECATED("use LZ4_resetStream() instead") int LZ4_resetStreamState(void* state, char* inputBuffer);
461 LZ4_DEPRECATED("use LZ4_saveDict() instead") char* LZ4_slideInputBuffer (void* state);
462 
463 /* Obsolete streaming decoding functions */
464 LZ4_DEPRECATED("use LZ4_decompress_safe_usingDict() instead") int LZ4_decompress_safe_withPrefix64k (const char* src, char* dst, int compressedSize, int maxDstSize);
465 LZ4_DEPRECATED("use LZ4_decompress_fast_usingDict() instead") int LZ4_decompress_fast_withPrefix64k (const char* src, char* dst, int originalSize);
466 
467 
468 #if defined (__cplusplus)
469 }
470 #endif
471 
472 #endif /* LZ4_H_2983827168210 */


Copyright © 2005-2022 MAK Technologies. All Rights Reserved (www.mak.com)