2014-03-12 14:51:59 +00:00
/*
LZ4 HC - High Compression Mode of LZ4
Header File
2017-03-16 22:10:38 +00:00
Copyright ( C ) 2011 - 2017 , Yann Collet .
2014-03-12 14:51:59 +00:00
BSD 2 - Clause License ( http : //www.opensource.org/licenses/bsd-license.php)
Redistribution and use in source and binary forms , with or without
modification , are permitted provided that the following conditions are
met :
* Redistributions of source code must retain the above copyright
notice , this list of conditions and the following disclaimer .
* Redistributions in binary form must reproduce the above
copyright notice , this list of conditions and the following disclaimer
in the documentation and / or other materials provided with the
distribution .
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
" AS IS " AND ANY EXPRESS OR IMPLIED WARRANTIES , INCLUDING , BUT NOT
LIMITED TO , THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED . IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT , INDIRECT , INCIDENTAL ,
SPECIAL , EXEMPLARY , OR CONSEQUENTIAL DAMAGES ( INCLUDING , BUT NOT
LIMITED TO , PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES ; LOSS OF USE ,
DATA , OR PROFITS ; OR BUSINESS INTERRUPTION ) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY , WHETHER IN CONTRACT , STRICT LIABILITY , OR TORT
( INCLUDING NEGLIGENCE OR OTHERWISE ) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE , EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE .
You can contact the author at :
2016-11-03 14:12:57 +00:00
- LZ4 source repository : https : //github.com/lz4/lz4
2015-03-13 01:24:08 +00:00
- LZ4 public forum : https : //groups.google.com/forum/#!forum/lz4c
2014-03-12 14:51:59 +00:00
*/
2016-06-29 16:18:34 +00:00
# ifndef LZ4_HC_H_19834876238432
# define LZ4_HC_H_19834876238432
2014-03-12 14:51:59 +00:00
# if defined (__cplusplus)
extern " C " {
# endif
2016-11-12 15:29:54 +00:00
/* --- Dependency --- */
2016-11-12 23:50:29 +00:00
/* note : lz4hc is not an independent module, it requires lz4.h/lz4.c for proper compilation */
# include "lz4.h" /* stddef, LZ4LIB_API, LZ4_DEPRECATED */
2015-04-11 11:28:09 +00:00
2016-09-22 15:21:04 +00:00
2016-11-12 15:29:54 +00:00
/* --- Useful constants --- */
2016-12-22 10:41:05 +00:00
# define LZ4HC_CLEVEL_MIN 3
# define LZ4HC_CLEVEL_DEFAULT 9
# define LZ4HC_CLEVEL_OPT_MIN 11
# define LZ4HC_CLEVEL_MAX 12
2016-09-02 20:59:18 +00:00
2016-11-11 21:00:02 +00:00
/*-************************************
2016-11-12 15:29:54 +00:00
* Block Compression
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*! LZ4_compress_HC() :
* Compress data from ` src ` into ` dst ` , using the more powerful but slower " HC " algorithm .
* ` dst ` must be already allocated .
2016-11-12 23:50:29 +00:00
* Compression is guaranteed to succeed if ` dstCapacity > = LZ4_compressBound ( srcSize ) ` ( see " lz4.h " )
2016-11-12 15:29:54 +00:00
* Max supported ` srcSize ` value is LZ4_MAX_INPUT_SIZE ( see " lz4.h " )
2017-04-29 12:00:47 +00:00
* ` compressionLevel ` : Recommended values are between 4 and 9 , although any value between 1 and LZ4HC_CLEVEL_MAX will work .
* Values > LZ4HC_CLEVEL_MAX behave the same as LZ4HC_CLEVEL_MAX .
2016-11-12 15:29:54 +00:00
* @ return : the number of bytes written into ' dst '
* or 0 if compression fails .
*/
2016-11-12 23:50:29 +00:00
LZ4LIB_API int LZ4_compress_HC ( const char * src , char * dst , int srcSize , int dstCapacity , int compressionLevel ) ;
2016-11-12 15:29:54 +00:00
/* Note :
* Decompression functions are provided within " lz4.h " ( BSD license )
*/
/*! LZ4_compress_HC_extStateHC() :
* Same as LZ4_compress_HC ( ) , but using an externally allocated memory segment for ` state ` .
* ` state ` size is provided by LZ4_sizeofStateHC ( ) .
* Memory segment must be aligned on 8 - bytes boundaries ( which a normal malloc ( ) will do properly ) .
*/
2016-11-12 23:50:29 +00:00
LZ4LIB_API int LZ4_compress_HC_extStateHC ( void * state , const char * src , char * dst , int srcSize , int maxDstSize , int compressionLevel ) ;
LZ4LIB_API int LZ4_sizeofStateHC ( void ) ;
2016-11-12 15:29:54 +00:00
/*-************************************
* Streaming Compression
* Bufferless synchronous API
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2016-11-14 18:02:01 +00:00
typedef union LZ4_streamHC_u LZ4_streamHC_t ; /* incomplete type (defined later) */
2016-11-12 15:29:54 +00:00
/*! LZ4_createStreamHC() and LZ4_freeStreamHC() :
* These functions create and release memory for LZ4 HC streaming state .
* Newly created states are automatically initialized .
* Existing states can be re - used several times , using LZ4_resetStreamHC ( ) .
* These methods are API and ABI stable , they can be used in combination with a DLL .
*/
2016-11-12 23:50:29 +00:00
LZ4LIB_API LZ4_streamHC_t * LZ4_createStreamHC ( void ) ;
LZ4LIB_API int LZ4_freeStreamHC ( LZ4_streamHC_t * streamHCPtr ) ;
2016-11-12 15:29:54 +00:00
2016-11-12 23:50:29 +00:00
LZ4LIB_API void LZ4_resetStreamHC ( LZ4_streamHC_t * streamHCPtr , int compressionLevel ) ;
LZ4LIB_API int LZ4_loadDictHC ( LZ4_streamHC_t * streamHCPtr , const char * dictionary , int dictSize ) ;
2016-11-12 15:29:54 +00:00
2016-11-12 23:50:29 +00:00
LZ4LIB_API int LZ4_compress_HC_continue ( LZ4_streamHC_t * streamHCPtr , const char * src , char * dst , int srcSize , int maxDstSize ) ;
2016-11-12 15:29:54 +00:00
2016-11-12 23:50:29 +00:00
LZ4LIB_API int LZ4_saveDictHC ( LZ4_streamHC_t * streamHCPtr , char * safeBuffer , int maxDictSize ) ;
2016-11-12 15:29:54 +00:00
/*
These functions compress data in successive blocks of any size , using previous blocks as dictionary .
One key assumption is that previous blocks ( up to 64 KB ) remain read - accessible while compressing next blocks .
There is an exception for ring buffers , which can be smaller than 64 KB .
2016-11-12 23:50:29 +00:00
Ring buffers scenario is automatically detected and handled by LZ4_compress_HC_continue ( ) .
2016-11-12 15:29:54 +00:00
Before starting compression , state must be properly initialized , using LZ4_resetStreamHC ( ) .
A first " fictional block " can then be designated as initial dictionary , using LZ4_loadDictHC ( ) ( Optional ) .
Then , use LZ4_compress_HC_continue ( ) to compress each successive block .
Previous memory blocks ( including initial dictionary when present ) must remain accessible and unmodified during compression .
2017-03-16 09:16:24 +00:00
' dst ' buffer should be sized to handle worst case scenarios ( see LZ4_compressBound ( ) ) , to ensure operation success .
Because in case of failure , the API does not guarantee context recovery , and context will have to be reset .
If ` dst ` buffer budget cannot be > = LZ4_compressBound ( ) , consider using LZ4_compress_HC_continue_destSize ( ) instead .
2016-11-12 15:29:54 +00:00
2017-03-16 09:16:24 +00:00
If , for any reason , previous data block can ' t be preserved unmodified in memory for next compression block ,
you can save it to a more stable memory space , using LZ4_saveDictHC ( ) .
2016-11-12 15:29:54 +00:00
Return value of LZ4_saveDictHC ( ) is the size of dictionary effectively saved into ' safeBuffer ' .
*/
/*-*************************************
* PRIVATE DEFINITIONS :
2016-11-11 21:00:02 +00:00
* Do not use these definitions .
* They are exposed to allow static allocation of ` LZ4_streamHC_t ` .
2016-11-12 23:50:29 +00:00
* Using these definitions makes the code vulnerable to potential API break when upgrading LZ4
2016-11-12 15:29:54 +00:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2017-03-16 09:16:24 +00:00
# define LZ4HC_DICTIONARY_LOGSIZE 17 /* because of btopt, hc would only need 16 */
2016-12-07 15:19:10 +00:00
# define LZ4HC_MAXD (1<<LZ4HC_DICTIONARY_LOGSIZE)
2016-11-11 21:00:02 +00:00
# define LZ4HC_MAXD_MASK (LZ4HC_MAXD - 1)
2016-12-08 14:50:45 +00:00
# define LZ4HC_HASH_LOG 15
2016-11-11 21:00:02 +00:00
# define LZ4HC_HASHTABLESIZE (1 << LZ4HC_HASH_LOG)
# define LZ4HC_HASH_MASK (LZ4HC_HASHTABLESIZE - 1)
# if defined(__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */ )
# include <stdint.h>
typedef struct
{
uint32_t hashTable [ LZ4HC_HASHTABLESIZE ] ;
uint16_t chainTable [ LZ4HC_MAXD ] ;
2017-03-16 22:10:38 +00:00
const uint8_t * end ; /* next block here to continue on current prefix */
const uint8_t * base ; /* All index relative to this position */
const uint8_t * dictBase ; /* alternate base for extDict */
uint8_t * inputBuffer ; /* deprecated */
uint32_t dictLimit ; /* below that point, need extDict */
uint32_t lowLimit ; /* below that point, no more dict */
uint32_t nextToUpdate ; /* index from which to continue dictionary update */
uint32_t searchNum ; /* only for optimal parser */
2016-11-11 21:00:02 +00:00
uint32_t compressionLevel ;
2016-11-12 15:29:54 +00:00
} LZ4HC_CCtx_internal ;
2016-11-11 21:00:02 +00:00
# else
typedef struct
{
unsigned int hashTable [ LZ4HC_HASHTABLESIZE ] ;
unsigned short chainTable [ LZ4HC_MAXD ] ;
const unsigned char * end ; /* next block here to continue on current prefix */
const unsigned char * base ; /* All index relative to this position */
const unsigned char * dictBase ; /* alternate base for extDict */
unsigned char * inputBuffer ; /* deprecated */
unsigned int dictLimit ; /* below that point, need extDict */
unsigned int lowLimit ; /* below that point, no more dict */
unsigned int nextToUpdate ; /* index from which to continue dictionary update */
2016-12-06 14:21:28 +00:00
unsigned int searchNum ; /* only for optimal parser */
2017-03-16 22:10:38 +00:00
int compressionLevel ;
2016-11-12 15:29:54 +00:00
} LZ4HC_CCtx_internal ;
2016-11-11 21:00:02 +00:00
# endif
2016-12-07 15:24:35 +00:00
# define LZ4_STREAMHCSIZE (4*LZ4HC_HASHTABLESIZE + 2*LZ4HC_MAXD + 56) /* 393268 */
2015-03-25 17:06:40 +00:00
# define LZ4_STREAMHCSIZE_SIZET (LZ4_STREAMHCSIZE / sizeof(size_t))
2016-11-14 18:02:01 +00:00
union LZ4_streamHC_u {
2016-11-11 21:00:02 +00:00
size_t table [ LZ4_STREAMHCSIZE_SIZET ] ;
2016-11-12 15:29:54 +00:00
LZ4HC_CCtx_internal internal_donotuse ;
} ; /* previously typedef'd to LZ4_streamHC_t */
2014-10-18 10:18:14 +00:00
/*
2016-11-12 15:29:54 +00:00
LZ4_streamHC_t :
2015-05-03 19:57:21 +00:00
This structure allows static allocation of LZ4 HC streaming state .
2016-11-12 15:29:54 +00:00
State must be initialized using LZ4_resetStreamHC ( ) before first use .
2014-10-18 10:18:14 +00:00
2016-11-12 15:29:54 +00:00
Static allocation shall only be used in combination with static linking .
When invoking LZ4 from a DLL , use create / free functions instead , which are API and ABI stable .
2014-10-18 10:18:14 +00:00
*/
2016-06-29 16:18:34 +00:00
/*-************************************
2015-05-03 19:57:21 +00:00
* Deprecated Functions
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2016-11-12 23:50:29 +00:00
/* see lz4.h LZ4_DISABLE_DEPRECATE_WARNINGS to turn off deprecation warnings */
2015-04-11 11:28:09 +00:00
2016-06-29 16:18:34 +00:00
/* deprecated compression functions */
/* these functions will trigger warning messages in future releases */
2017-03-24 03:12:48 +00:00
LZ4LIB_API LZ4_DEPRECATED ( " use LZ4_compress_HC() instead " ) int LZ4_compressHC (const char* source, char* dest, int inputSize) ;
LZ4LIB_API LZ4_DEPRECATED ( " use LZ4_compress_HC() instead " ) int LZ4_compressHC_limitedOutput (const char* source, char* dest, int inputSize, int maxOutputSize) ;
LZ4LIB_API LZ4_DEPRECATED ( " use LZ4_compress_HC() instead " ) int LZ4_compressHC2 (const char* source, char* dest, int inputSize, int compressionLevel) ;
LZ4LIB_API LZ4_DEPRECATED ( " use LZ4_compress_HC() instead " ) int LZ4_compressHC2_limitedOutput (const char* source, char* dest, int inputSize, int maxOutputSize, int compressionLevel) ;
LZ4LIB_API LZ4_DEPRECATED ( " use LZ4_compress_HC_extStateHC() instead " ) int LZ4_compressHC_withStateHC (void* state, const char* source, char* dest, int inputSize) ;
LZ4LIB_API LZ4_DEPRECATED ( " use LZ4_compress_HC_extStateHC() instead " ) int LZ4_compressHC_limitedOutput_withStateHC (void* state, const char* source, char* dest, int inputSize, int maxOutputSize) ;
LZ4LIB_API LZ4_DEPRECATED ( " use LZ4_compress_HC_extStateHC() instead " ) int LZ4_compressHC2_withStateHC (void* state, const char* source, char* dest, int inputSize, int compressionLevel) ;
LZ4LIB_API LZ4_DEPRECATED ( " use LZ4_compress_HC_extStateHC() instead " ) int LZ4_compressHC2_limitedOutput_withStateHC(void* state, const char* source, char* dest, int inputSize, int maxOutputSize, int compressionLevel) ;
LZ4LIB_API LZ4_DEPRECATED ( " use LZ4_compress_HC_continue() instead " ) int LZ4_compressHC_continue (LZ4_streamHC_t* LZ4_streamHCPtr, const char* source, char* dest, int inputSize) ;
LZ4LIB_API LZ4_DEPRECATED ( " use LZ4_compress_HC_continue() instead " ) int LZ4_compressHC_limitedOutput_continue (LZ4_streamHC_t* LZ4_streamHCPtr, const char* source, char* dest, int inputSize, int maxOutputSize) ;
2015-04-11 11:28:09 +00:00
2016-06-29 16:18:34 +00:00
/* Deprecated Streaming functions using older model; should no longer be used */
2017-03-24 03:12:48 +00:00
LZ4LIB_API LZ4_DEPRECATED ( " use LZ4_createStreamHC() instead " ) void* LZ4_createHC (char* inputBuffer) ;
LZ4LIB_API LZ4_DEPRECATED ( " use LZ4_saveDictHC() instead " ) char* LZ4_slideInputBufferHC (void* LZ4HC_Data) ;
LZ4LIB_API LZ4_DEPRECATED ( " use LZ4_freeStreamHC() instead " ) int LZ4_freeHC (void* LZ4HC_Data) ;
LZ4LIB_API LZ4_DEPRECATED ( " use LZ4_compress_HC_continue() instead " ) int LZ4_compressHC2_continue (void* LZ4HC_Data, const char* source, char* dest, int inputSize, int compressionLevel) ;
LZ4LIB_API LZ4_DEPRECATED ( " use LZ4_compress_HC_continue() instead " ) int LZ4_compressHC2_limitedOutput_continue (void* LZ4HC_Data, const char* source, char* dest, int inputSize, int maxOutputSize, int compressionLevel) ;
LZ4LIB_API LZ4_DEPRECATED ( " use LZ4_createStreamHC() instead " ) int LZ4_sizeofStreamStateHC(void) ;
LZ4LIB_API LZ4_DEPRECATED ( " use LZ4_resetStreamHC() instead " ) int LZ4_resetStreamStateHC(void* state, char* inputBuffer) ;
2014-03-12 14:51:59 +00:00
# if defined (__cplusplus)
}
# endif
2016-06-29 16:18:34 +00:00
# endif /* LZ4_HC_H_19834876238432 */
2017-03-16 09:16:24 +00:00
/*-************************************************
* ! ! ! ! ! STATIC LINKING ONLY ! ! ! ! !
* Following definitions are considered experimental .
* They should not be linked from DLL ,
* as there is no guarantee of API stability yet .
* Prototypes will be promoted to " stable " status
* after successfull usage in real - life scenarios .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
# ifdef LZ4_HC_STATIC_LINKING_ONLY /* protection macro */
# ifndef LZ4_HC_SLO_098092834
# define LZ4_HC_SLO_098092834
2017-06-12 17:54:59 +00:00
/*! LZ4_compress_HC_destSize() : v1.8.0 (experimental)
2017-03-16 09:16:24 +00:00
* Will try to compress as much data from ` src ` as possible
2017-06-12 17:54:59 +00:00
* that can fit into ` targetDstSize ` budget .
2017-03-16 09:16:24 +00:00
* Result is provided in 2 parts :
* @ return : the number of bytes written into ' dst '
* or 0 if compression fails .
* ` srcSizePtr ` : value will be updated to indicate how much bytes were read from ` src `
*/
LZ4LIB_API int LZ4_compress_HC_destSize ( void * LZ4HC_Data ,
const char * src , char * dst ,
int * srcSizePtr , int targetDstSize ,
int compressionLevel ) ;
/*! LZ4_compress_HC_continue_destSize() :
* Similar as LZ4_compress_HC_continue ( ) ,
* but will read a variable nb of bytes from ` src `
* to fit into ` targetDstSize ` budget .
* Result is provided in 2 parts :
* @ return : the number of bytes written into ' dst '
* or 0 if compression fails .
2017-03-17 22:11:09 +00:00
* ` srcSizePtr ` : value will be updated to indicate how much bytes were read from ` src `
2017-03-16 22:41:30 +00:00
* Important : due to limitations , this prototype only works well up to cLevel < LZ4HC_CLEVEL_OPT_MIN
* beyond that level , compression performance will be much reduced due to internal incompatibilities
2017-03-16 09:16:24 +00:00
*/
LZ4LIB_API int LZ4_compress_HC_continue_destSize ( LZ4_streamHC_t * LZ4_streamHCPtr ,
const char * src , char * dst ,
int * srcSizePtr , int targetDstSize ) ;
# endif /* LZ4_HC_SLO_098092834 */
# endif /* LZ4_HC_STATIC_LINKING_ONLY */