Rizin
unix-like reverse engineering framework and cli tools
|
#include <stddef.h>
Go to the source code of this file.
Classes | |
struct | LZ4F_frameInfo_t |
struct | LZ4F_preferences_t |
struct | LZ4F_compressOptions_t |
struct | LZ4F_decompressOptions_t |
Macros | |
#define | LZ4FLIB_VISIBILITY |
#define | LZ4FLIB_API LZ4FLIB_VISIBILITY |
#define | LZ4F_DEPRECATE(x) x /* no deprecation warning for this compiler */ |
#define | LZ4F_OBSOLETE_ENUM(x) |
#define | LZ4F_INIT_FRAMEINFO { LZ4F_default, LZ4F_blockLinked, LZ4F_noContentChecksum, LZ4F_frame, 0ULL, 0U, LZ4F_noBlockChecksum } /* v1.8.3+ */ |
#define | LZ4F_INIT_PREFERENCES { LZ4F_INIT_FRAMEINFO, 0, 0u, 0u, { 0u, 0u, 0u } } /* v1.8.3+ */ |
#define | LZ4F_VERSION 100 /* This number can be used to check for an incompatible API breaking change */ |
#define | LZ4F_HEADER_SIZE_MIN 7 /* LZ4 Frame header size can vary, depending on selected paramaters */ |
#define | LZ4F_HEADER_SIZE_MAX 19 |
#define | LZ4F_BLOCK_HEADER_SIZE 4 |
#define | LZ4F_BLOCK_CHECKSUM_SIZE 4 |
#define | LZ4F_CONTENT_CHECKSUM_SIZE 4 |
#define | LZ4F_MIN_SIZE_TO_KNOW_HEADER_LENGTH 5 |
Typedefs | |
typedef size_t | LZ4F_errorCode_t |
typedef struct LZ4F_cctx_s | LZ4F_cctx |
typedef LZ4F_cctx * | LZ4F_compressionContext_t |
typedef struct LZ4F_dctx_s | LZ4F_dctx |
typedef LZ4F_dctx * | LZ4F_decompressionContext_t |
Enumerations | |
enum | LZ4F_blockSizeID_t { LZ4F_default =0 , LZ4F_max64KB =4 , LZ4F_max256KB =5 , LZ4F_max1MB =6 , LZ4F_max4MB =7 } |
enum | LZ4F_blockMode_t { LZ4F_blockLinked =0 , LZ4F_blockIndependent } |
enum | LZ4F_contentChecksum_t { LZ4F_noContentChecksum =0 , LZ4F_contentChecksumEnabled } |
enum | LZ4F_blockChecksum_t { LZ4F_noBlockChecksum =0 , LZ4F_blockChecksumEnabled } |
enum | LZ4F_frameType_t { LZ4F_frame =0 , LZ4F_skippableFrame } |
#define LZ4F_BLOCK_CHECKSUM_SIZE 4 |
Definition at line 266 of file lz4frame.h.
#define LZ4F_BLOCK_HEADER_SIZE 4 |
Definition at line 263 of file lz4frame.h.
#define LZ4F_CONTENT_CHECKSUM_SIZE 4 |
Definition at line 269 of file lz4frame.h.
Definition at line 95 of file lz4frame.h.
#define LZ4F_HEADER_SIZE_MAX 19 |
Definition at line 260 of file lz4frame.h.
#define LZ4F_HEADER_SIZE_MIN 7 /* LZ4 Frame header size can vary, depending on selected paramaters */ |
Definition at line 259 of file lz4frame.h.
#define LZ4F_INIT_FRAMEINFO { LZ4F_default, LZ4F_blockLinked, LZ4F_noContentChecksum, LZ4F_frame, 0ULL, 0U, LZ4F_noBlockChecksum } /* v1.8.3+ */ |
Definition at line 185 of file lz4frame.h.
#define LZ4F_INIT_PREFERENCES { LZ4F_INIT_FRAMEINFO, 0, 0u, 0u, { 0u, 0u, 0u } } /* v1.8.3+ */ |
Definition at line 200 of file lz4frame.h.
#define LZ4F_MIN_SIZE_TO_KNOW_HEADER_LENGTH 5 |
Definition at line 374 of file lz4frame.h.
#define LZ4F_OBSOLETE_ENUM | ( | x | ) |
Definition at line 116 of file lz4frame.h.
#define LZ4F_VERSION 100 /* This number can be used to check for an incompatible API breaking change */ |
Definition at line 242 of file lz4frame.h.
#define LZ4FLIB_API LZ4FLIB_VISIBILITY |
Definition at line 84 of file lz4frame.h.
#define LZ4FLIB_VISIBILITY |
Introduction
lz4frame.h implements LZ4 frame specification (doc/lz4_Frame_format.md). lz4frame.h provides frame compression functions that take care of encoding standard metadata alongside LZ4-compressed blocks.
Definition at line 76 of file lz4frame.h.
typedef struct LZ4F_cctx_s LZ4F_cctx |
Definition at line 224 of file lz4frame.h.
typedef LZ4F_cctx* LZ4F_compressionContext_t |
Definition at line 233 of file lz4frame.h.
typedef struct LZ4F_dctx_s LZ4F_dctx |
Definition at line 338 of file lz4frame.h.
typedef LZ4F_dctx* LZ4F_decompressionContext_t |
Definition at line 347 of file lz4frame.h.
typedef size_t LZ4F_errorCode_t |
Definition at line 103 of file lz4frame.h.
enum LZ4F_blockChecksum_t |
enum LZ4F_blockMode_t |
enum LZ4F_blockSizeID_t |
Enumerator | |
---|---|
LZ4F_default | |
LZ4F_max64KB | |
LZ4F_max256KB | |
LZ4F_max1MB | |
LZ4F_max4MB |
Definition at line 123 of file lz4frame.h.
Enumerator | |
---|---|
LZ4F_noContentChecksum | |
LZ4F_contentChecksumEnabled |
Definition at line 145 of file lz4frame.h.
enum LZ4F_frameType_t |
LZ4FLIB_API size_t LZ4F_compressBegin | ( | LZ4F_cctx * | cctxPtr, |
void * | dstBuffer, | ||
size_t | dstCapacity, | ||
const LZ4F_preferences_t * | preferencesPtr | ||
) |
LZ4F_compressBegin() : will write the frame header into dstBuffer. dstCapacity must be >= LZ4F_HEADER_SIZE_MAX bytes. prefsPtr
is optional : you can provide NULL as argument, all preferences will then be set to default.
LZ4F_compressBegin() : init streaming compression and writes frame header into dstBuffer. dstBuffer must be >= LZ4F_HEADER_SIZE_MAX bytes. preferencesPtr can be NULL, in which case default parameters are selected.
Definition at line 710 of file lz4frame.c.
References LZ4F_compressBegin_usingCDict(), and NULL.
Referenced by basicTests(), compress_file_internal(), and fuzzerTests().
LZ4FLIB_API size_t LZ4F_compressBound | ( | size_t | srcSize, |
const LZ4F_preferences_t * | prefsPtr | ||
) |
LZ4F_compressBound() : Provides minimum dstCapacity required to guarantee success of LZ4F_compressUpdate(), given a srcSize and preferences, for a worst case scenario. When srcSize==0, LZ4F_compressBound() provides an upper bound for LZ4F_flush() and LZ4F_compressEnd() instead. Note that the result is only valid for a single invocation of LZ4F_compressUpdate(). When invoking LZ4F_compressUpdate() multiple times, if the output buffer is gradually filled up instead of emptied and re-used from its start, one must check if there is enough remaining capacity before each invocation, using LZ4F_compressBound().
Definition at line 724 of file lz4frame.c.
References LZ4F_preferences_t::autoFlush, LZ4F_compressBound_internal(), and srcSize.
Referenced by basicTests(), compress_file(), compress_file_internal(), and fuzzerTests().
LZ4FLIB_API size_t LZ4F_compressEnd | ( | LZ4F_cctx * | cctxPtr, |
void * | dstBuffer, | ||
size_t | dstCapacity, | ||
const LZ4F_compressOptions_t * | compressOptionsPtr | ||
) |
LZ4F_compressEnd() : To properly finish an LZ4 frame, invoke LZ4F_compressEnd(). It will flush whatever data remained within cctx
(like LZ4_flush()) and properly finalize the frame, with an endMark and a checksum. cOptPtr
is optional : NULL can be provided, in which case all options will be set to default.
cctx
available again for another compression task.LZ4F_compressEnd() : When you want to properly finish the compressed frame, just call LZ4F_compressEnd(). It will flush whatever data remained within compressionContext (like LZ4_flush()) but also properly finalize the frame, with an endMark and an (optional) checksum. LZ4F_compressOptions_t structure is optional : you can provide NULL as argument.
Definition at line 986 of file lz4frame.c.
References assert, LZ4F_frameInfo_t::contentChecksumFlag, LZ4F_frameInfo_t::contentSize, LZ4F_cctx_s::cStage, DEBUGLOG, err0r(), LZ4F_preferences_t::frameInfo, LZ4F_contentChecksumEnabled, LZ4F_flush(), LZ4F_isError(), LZ4F_writeLE32(), LZ4F_cctx_s::maxBufferSize, LZ4F_cctx_s::prefs, LZ4F_cctx_s::totalInSize, LZ4F_cctx_s::xxh, and XXH32_digest().
Referenced by basicTests(), compress_file_internal(), fuzzerTests(), LZ4F_compressFrame_usingCDict(), and LZ4IO_compressFilename_extRess().
LZ4FLIB_API size_t LZ4F_compressFrame | ( | void * | dstBuffer, |
size_t | dstCapacity, | ||
const void * | srcBuffer, | ||
size_t | srcSize, | ||
const LZ4F_preferences_t * | preferencesPtr | ||
) |
LZ4F_compressFrame() : Compress an entire srcBuffer into a valid LZ4 frame. dstCapacity MUST be >= LZ4F_compressFrameBound(srcSize, preferencesPtr). The LZ4F_preferences_t structure is optional : you can provide NULL as argument. All preferences will be set to default.
LZ4F_compressFrame() : Compress an entire srcBuffer into a valid LZ4 frame, in a single step. dstBuffer MUST be >= LZ4F_compressFrameBound(srcSize, preferencesPtr). The LZ4F_preferences_t structure is optional : you can provide NULL as argument. All preferences will be set to default.
Definition at line 429 of file lz4frame.c.
References LZ4F_preferences_t::compressionLevel, DEBUGLOG, FREEMEM, LZ4_initStream(), LZ4F_cctx_s::lz4CtxAlloc, LZ4F_cctx_s::lz4CtxPtr, LZ4F_cctx_s::lz4CtxState, LZ4F_compressFrame_usingCDict(), LZ4F_createCompressionContext(), LZ4F_freeCompressionContext(), LZ4F_isError(), LZ4F_VERSION, LZ4HC_CLEVEL_MIN, LZ4F_cctx_s::maxBufferSize, MB, MEM_INIT, NULL, srcSize, and LZ4F_cctx_s::version.
Referenced by basicTests(), fullSpeedBench(), fuzzerTests(), LLVMFuzzerTestOneInput(), and local_LZ4F_compressFrame().
LZ4FLIB_API size_t LZ4F_compressFrameBound | ( | size_t | srcSize, |
const LZ4F_preferences_t * | preferencesPtr | ||
) |
LZ4F_compressFrameBound() : Returns the maximum possible compressed size with LZ4F_compressFrame() given srcSize and preferences. preferencesPtr
is optional. It can be replaced by NULL, in which case, the function will assume default preferences. Note : this result is only usable with LZ4F_compressFrame(). It may also be used with LZ4F_compressUpdate() if no flush() operation is performed.
Definition at line 351 of file lz4frame.c.
References LZ4F_preferences_t::autoFlush, LZ4F_compressBound_internal(), maxFHSize, MEM_INIT, NULL, and srcSize.
Referenced by basicTests(), fuzzerTests(), LLVMFuzzerTestOneInput(), local_LZ4F_compressFrame(), LZ4F_compressFrame_usingCDict(), and LZ4IO_createCResources().
LZ4FLIB_API int LZ4F_compressionLevel_max | ( | void | ) |
LZ4FLIB_API size_t LZ4F_compressUpdate | ( | LZ4F_cctx * | cctxPtr, |
void * | dstBuffer, | ||
size_t | dstCapacity, | ||
const void * | srcBuffer, | ||
size_t | srcSize, | ||
const LZ4F_compressOptions_t * | compressOptionsPtr | ||
) |
LZ4F_compressUpdate() : LZ4F_compressUpdate() can be called repetitively to compress as much data as necessary. Important rule: dstCapacity MUST be large enough to ensure operation success even in worst case situations. This value is provided by LZ4F_compressBound(). If this condition is not respected, LZ4F_compress() will fail (result is an errorCode). LZ4F_compressUpdate() doesn't guarantee error recovery. When an error occurs, compression context must be freed or resized. cOptPtr
is optional : NULL can be provided, in which case all options are set to default.
dstBuffer
(it can be zero, meaning input data was just buffered). or an error code if it fails (which can be tested using LZ4F_isError())LZ4F_compressUpdate() : LZ4F_compressUpdate() can be called repetitively to compress as much data as necessary. dstBuffer MUST be >= LZ4F_compressBound(srcSize, preferencesPtr). LZ4F_compressOptions_t structure is optional : you can provide NULL as argument.
Definition at line 825 of file lz4frame.c.
References LZ4F_preferences_t::autoFlush, LZ4F_frameInfo_t::blockChecksumFlag, LZ4F_frameInfo_t::blockMode, LZ4F_cctx_s::cdict, compress(), LZ4F_preferences_t::compressionLevel, LZ4F_frameInfo_t::contentChecksumFlag, LZ4F_cctx_s::cStage, DEBUGLOG, err0r(), LZ4F_preferences_t::frameInfo, fromSrcBuffer, fromTmpBuffer, LZ4F_cctx_s::lz4CtxPtr, LZ4F_blockLinked, LZ4F_compressBound_internal(), LZ4F_contentChecksumEnabled, LZ4F_localSaveDict(), LZ4F_makeBlock(), LZ4F_selectCompression(), LZ4F_cctx_s::maxBlockSize, LZ4F_cctx_s::maxBufferSize, MEM_INIT, memcpy(), notDone, NULL, LZ4F_cctx_s::prefs, srcSize, LZ4F_compressOptions_t::stableSrc, LZ4F_cctx_s::tmpBuff, LZ4F_cctx_s::tmpIn, LZ4F_cctx_s::tmpInSize, LZ4F_cctx_s::totalInSize, LZ4F_cctx_s::xxh, and XXH32_update().
Referenced by basicTests(), compress_file_internal(), fuzzerTests(), LZ4F_compressFrame_usingCDict(), and LZ4IO_compressFilename_extRess().
LZ4FLIB_API LZ4F_errorCode_t LZ4F_createCompressionContext | ( | LZ4F_cctx ** | LZ4F_compressionContextPtr, |
unsigned | version | ||
) |
LZ4F_createCompressionContext() : The first thing to do is to create a compressionContext object, which will be used in all compression operations. This is achieved using LZ4F_createCompressionContext(), which takes as argument a version. The version provided MUST be LZ4F_VERSION. It is intended to track potential version mismatch, notably when using DLL. The function will provide a pointer to a fully allocated LZ4F_cctx object. If
LZ4F_createCompressionContext() : The first thing to do is to create a compressionContext object, which will be used in all compression operations. This is achieved using LZ4F_createCompressionContext(), which takes as argument a version and an LZ4F_preferences_t structure. The version provided MUST be LZ4F_VERSION. It is intended to track potential incompatible differences between different binaries. The function will provide a pointer to an allocated LZ4F_compressionContext_t object. If the result LZ4F_errorCode_t is not OK_NoError, there was an error during context creation. Object can release its memory using LZ4F_freeCompressionContext();
Definition at line 536 of file lz4frame.c.
References ALLOC_AND_ZERO, LZ4F_cctx_s::cStage, err0r(), NULL, LZ4F_cctx_s::version, and version.
Referenced by basicTests(), compress_file(), fuzzerTests(), LZ4F_compressFrame(), and LZ4IO_createCResources().
LZ4FLIB_API LZ4F_errorCode_t LZ4F_createDecompressionContext | ( | LZ4F_dctx ** | LZ4F_decompressionContextPtr, |
unsigned | versionNumber | ||
) |
LZ4F_createDecompressionContext() : Create an LZ4F_dctx object, to track all decompression operations. The version provided MUST be LZ4F_VERSION. The function provides a pointer to an allocated and initialized LZ4F_dctx object. The result is an errorCode, which can be tested using LZ4F_isError(). dctx memory can be released using LZ4F_freeDecompressionContext(); Result of LZ4F_freeDecompressionContext() indicates current state of decompressionContext when being released. That is, it should be == 0 if decompression has been completed fully and correctly.
LZ4F_createDecompressionContext() : Create a decompressionContext object, which will track all decompression operations. Provides a pointer to a fully allocated and initialized LZ4F_decompressionContext object. Object can later be released using LZ4F_freeDecompressionContext().
Definition at line 1069 of file lz4frame.c.
References ALLOC_AND_ZERO, err0r(), NULL, and LZ4F_dctx_s::version.
Referenced by basicTests(), createCResources(), decompress_file(), fullSpeedBench(), FUZZ_decompressFrame(), fuzzerTests(), LLVMFuzzerTestOneInput(), LZ4IO_createDResources(), and LZ4IO_getCompressedFileInfo().
LZ4FLIB_API size_t LZ4F_decompress | ( | LZ4F_dctx * | dctx, |
void * | dstBuffer, | ||
size_t * | dstSizePtr, | ||
const void * | srcBuffer, | ||
size_t * | srcSizePtr, | ||
const LZ4F_decompressOptions_t * | decompressOptionsPtr | ||
) |
LZ4F_decompress() : Call this function repetitively to regenerate data compressed in srcBuffer
.
The function requires a valid dctx state. It will read up to *srcSizePtr bytes from srcBuffer, and decompress data into dstBuffer, of capacity *dstSizePtr.
The nb of bytes consumed from srcBuffer will be written into *srcSizePtr (necessarily <= original value). The nb of bytes decompressed into dstBuffer will be written into *dstSizePtr (necessarily <= original value).
The function does not necessarily read all input bytes, so always check value in *srcSizePtr. Unconsumed source data must be presented again in subsequent invocations.
dstBuffer
can freely change between each consecutive function invocation. dstBuffer
content will be overwritten.
srcSize
bytes LZ4F_decompress() expects for next call. Schematically, it's the size of the current (or remaining) compressed block + header of next block. Respecting the hint provides some small speed benefit, because it skips intermediate buffers. This is just a hint though, it's always possible to provide any srcSize.When a frame is fully decoded,
If decompression failed,
dctx
context is not resumable. Use LZ4F_resetDecompressionContext() to return to clean state.After a frame is fully decoded, dctx can be used again to decompress another frame.
LZ4F_decompress() : Call this function repetitively to regenerate compressed data in srcBuffer. The function will attempt to decode up to *srcSizePtr bytes from srcBuffer into dstBuffer of capacity *dstSizePtr.
The number of bytes regenerated into dstBuffer will be provided within *dstSizePtr (necessarily <= original value).
The number of bytes effectively read from srcBuffer will be provided within *srcSizePtr (necessarily <= original value). If number of bytes read is < number of bytes provided, then decompression operation is not complete. Remaining data will have to be presented again in a subsequent invocation.
The function result is an hint of the better srcSize to use for next call to LZ4F_decompress. Schematically, it's the size of the current (or remaining) compressed block + header of next block. Respecting the hint provides a small boost to performance, since it allows less buffer shuffling. Note that this is just a hint, and it's always possible to any srcSize value. When a frame is fully decoded,
Definition at line 1384 of file lz4frame.c.
References ALLOC, assert, BFSize, BHSize, LZ4F_dctx_s::blockChecksum, LZ4F_frameInfo_t::blockChecksumFlag, LZ4F_frameInfo_t::blockMode, LZ4F_frameInfo_t::contentChecksumFlag, LZ4F_frameInfo_t::contentSize, DEBUGLOG, LZ4F_dctx_s::dict, LZ4F_dctx_s::dictSize, LZ4F_dctx_s::dStage, dstage_copyDirect, dstage_flushOut, dstage_getBlockChecksum, dstage_getBlockHeader, dstage_getCBlock, dstage_getFrameHeader, dstage_getSFrameSize, dstage_getSuffix, dstage_init, dstage_skipSkippable, dstage_storeBlockHeader, dstage_storeCBlock, dstage_storeFrameHeader, dstage_storeSFrameSize, dstage_storeSuffix, err0r(), LZ4F_dctx_s::frameInfo, LZ4F_dctx_s::frameRemainingSize, FREEMEM, GB, LZ4F_dctx_s::header, if(), KB, LZ4_decompress_safe_usingDict(), LZ4F_blockLinked, LZ4F_BLOCKUNCOMPRESSED_FLAG, LZ4F_decodeHeader(), LZ4F_isError(), LZ4F_readLE32(), LZ4F_resetDecompressionContext(), LZ4F_STATIC_ASSERT, LZ4F_updateDict(), LZ4F_dctx_s::maxBlockSize, LZ4F_dctx_s::maxBufferSize, maxFHSize, MEM_INIT, memcpy(), MIN, minFHSize, NULL, LZ4F_decompressOptions_t::stableDst, LZ4F_dctx_s::tmpIn, LZ4F_dctx_s::tmpInSize, LZ4F_dctx_s::tmpInTarget, LZ4F_dctx_s::tmpOut, LZ4F_dctx_s::tmpOutBuffer, LZ4F_dctx_s::tmpOutSize, LZ4F_dctx_s::tmpOutStart, LZ4F_dctx_s::xxh, XXH32(), XXH32_digest(), XXH32_reset(), and XXH32_update().
Referenced by basicTests(), decompress(), decompress_file_internal(), frameCheck(), FUZZ_decompressFrame(), local_LZ4F_decompress(), local_LZ4F_decompress_followHint(), local_LZ4F_decompress_noHint(), LZ4F_decompress_usingDict(), LZ4F_getFrameInfo(), and test_lz4f_decompression_wBuffers().
LZ4FLIB_API size_t LZ4F_flush | ( | LZ4F_cctx * | cctxPtr, |
void * | dstBuffer, | ||
size_t | dstCapacity, | ||
const LZ4F_compressOptions_t * | compressOptionsPtr | ||
) |
LZ4F_flush() : When data must be generated and sent immediately, without waiting for a block to be completely filled, it's possible to call LZ4_flush(). It will immediately compress any data buffered within cctx. dstCapacity
must be large enough to ensure the operation will be successful. cOptPtr
is optional : it's possible to provide NULL, all options will be set to default.
LZ4F_flush() : When compressed data must be sent immediately, without waiting for a block to be filled, invoke LZ4_flush(), which will immediately compress any remaining data stored within LZ4F_cctx. The result of the function is the number of bytes written into dstBuffer. It can be zero, this means there was no data left within LZ4F_cctx. The function outputs an error code if it fails (can be tested using LZ4F_isError()) LZ4F_compressOptions_t* is optional. NULL is a valid argument.
Definition at line 938 of file lz4frame.c.
References assert, BFSize, BHSize, LZ4F_frameInfo_t::blockChecksumFlag, LZ4F_frameInfo_t::blockMode, LZ4F_cctx_s::cdict, compress(), LZ4F_preferences_t::compressionLevel, LZ4F_cctx_s::cStage, err0r(), LZ4F_preferences_t::frameInfo, LZ4F_cctx_s::lz4CtxPtr, LZ4F_blockLinked, LZ4F_localSaveDict(), LZ4F_makeBlock(), LZ4F_selectCompression(), LZ4F_cctx_s::maxBlockSize, LZ4F_cctx_s::maxBufferSize, LZ4F_cctx_s::prefs, LZ4F_cctx_s::tmpBuff, LZ4F_cctx_s::tmpIn, and LZ4F_cctx_s::tmpInSize.
Referenced by fuzzerTests(), and LZ4F_compressEnd().
LZ4FLIB_API LZ4F_errorCode_t LZ4F_freeCompressionContext | ( | LZ4F_cctx * | cctx | ) |
Definition at line 550 of file lz4frame.c.
References FREEMEM, LZ4F_cctx_s::lz4CtxPtr, NULL, and LZ4F_cctx_s::tmpBuff.
Referenced by basicTests(), compress_file(), fuzzerTests(), LZ4F_compressFrame(), and LZ4IO_freeCResources().
LZ4FLIB_API LZ4F_errorCode_t LZ4F_freeDecompressionContext | ( | LZ4F_dctx * | dctx | ) |
Definition at line 1082 of file lz4frame.c.
References LZ4F_dctx_s::dStage, FREEMEM, NULL, LZ4F_dctx_s::tmpIn, and LZ4F_dctx_s::tmpOutBuffer.
Referenced by basicTests(), decompress_file(), freeCResources(), fullSpeedBench(), FUZZ_decompressFrame(), fuzzerTests(), LLVMFuzzerTestOneInput(), LZ4IO_freeDResources(), and LZ4IO_getCompressedFileInfo().
LZ4FLIB_API const char* LZ4F_getErrorName | ( | LZ4F_errorCode_t | code | ) |
return error code string; for debugging
Definition at line 254 of file lz4frame.c.
References int, LZ4F_errorStrings, and LZ4F_isError().
Referenced by basicTests(), decompress_file(), decompress_file_allocDst(), decompress_file_internal(), frameCheck(), fuzzerTests(), LZ4IO_compressFilename_extRess(), LZ4IO_createCResources(), LZ4IO_createDResources(), LZ4IO_decompressLZ4F(), LZ4IO_freeCResources(), and LZ4IO_freeDResources().
LZ4FLIB_API size_t LZ4F_getFrameInfo | ( | LZ4F_dctx * | dctx, |
LZ4F_frameInfo_t * | frameInfoPtr, | ||
const void * | srcBuffer, | ||
size_t * | srcSizePtr | ||
) |
LZ4F_getFrameInfo() : This function extracts frame parameters (max blockSize, dictID, etc.). Its usage is optional: user can call LZ4F_decompress() directly.
Extracted information will fill an existing LZ4F_frameInfo_t structure. This can be useful for allocation and dictionary identification purposes.
LZ4F_getFrameInfo() can work in the following situations :
1) At the beginning of a new frame, before any invocation of LZ4F_decompress(). It will decode header from srcBuffer
, consuming the header and starting the decoding process.
Input size must be large enough to contain the full frame header. Frame header size can be known beforehand by LZ4F_headerSize(). Frame header size is variable, but is guaranteed to be >= LZ4F_HEADER_SIZE_MIN bytes, and not more than <= LZ4F_HEADER_SIZE_MAX bytes. Hence, blindly providing LZ4F_HEADER_SIZE_MAX bytes or more will always work. It's allowed to provide more input data than the header size, LZ4F_getFrameInfo() will only consume the header.
If input size is not large enough, aka if it's smaller than header size, function will fail and return an error code.
2) After decoding has been started, it's possible to invoke LZ4F_getFrameInfo() anytime to extract already decoded frame parameters stored within dctx.
Note that, if decoding has barely started, and not yet read enough information to decode the header, LZ4F_getFrameInfo() will fail.
The number of bytes consumed from srcBuffer will be updated in *srcSizePtr (necessarily <= original value). LZ4F_getFrameInfo() only consumes bytes when decoding has not yet started, and when decoding the header has been successful. Decompression must then resume from (srcBuffer + *srcSizePtr).
LZ4F_getFrameInfo() : This function extracts frame parameters (max blockSize, frame checksum, etc.). Usage is optional. Objective is to provide relevant information for allocation purposes. This function works in 2 situations :
srcBuffer
, and start the decoding process. Amount of input data provided must be large enough to successfully decode the frame header. A header size is variable, but is guaranteed to be <= LZ4F_HEADER_SIZE_MAX bytes. It's possible to provide more input data than this minimum.Definition at line 1253 of file lz4frame.c.
References BHSize, LZ4F_dctx_s::dStage, dstage_getFrameHeader, dstage_storeFrameHeader, err0r(), LZ4F_dctx_s::frameInfo, i, LZ4F_decodeHeader(), LZ4F_decompress(), LZ4F_headerSize(), LZ4F_isError(), LZ4F_STATIC_ASSERT, and NULL.
Referenced by basicTests(), decompress_file_allocDst(), frameCheck(), and LZ4IO_getCompressedFileInfo().
LZ4FLIB_API unsigned LZ4F_getVersion | ( | void | ) |
LZ4FLIB_API size_t LZ4F_headerSize | ( | const void * | src, |
size_t | srcSize | ||
) |
LZ4F_headerSize() : v1.9.0+ Provide the header size of a frame starting at src
. srcSize
must be >= LZ4F_MIN_SIZE_TO_KNOW_HEADER_LENGTH, which is enough to decode the header length.
Definition at line 1212 of file lz4frame.c.
References _1BIT, err0r(), FLG, LZ4F_MAGIC_SKIPPABLE_START, LZ4F_MAGICNUMBER, LZ4F_MIN_SIZE_TO_KNOW_HEADER_LENGTH, LZ4F_readLE32(), minFHSize, NULL, src, and srcSize.
Referenced by basicTests(), LZ4F_getFrameInfo(), and LZ4IO_getCompressedFileInfo().
LZ4FLIB_API unsigned LZ4F_isError | ( | LZ4F_errorCode_t | code | ) |
tells when a function result is an error code
Definition at line 249 of file lz4frame.c.
Referenced by basicTests(), compress_file(), compress_file_internal(), createCResources(), decompress_file(), decompress_file_allocDst(), decompress_file_internal(), frameCheck(), fullSpeedBench(), FUZZ_decompressFrame(), fuzzerTests(), LLVMFuzzerTestOneInput(), local_LZ4F_decompress_followHint(), local_LZ4F_decompress_noHint(), LZ4F_compressEnd(), LZ4F_compressFrame(), LZ4F_compressFrame_usingCDict(), LZ4F_decompress(), LZ4F_getErrorCode(), LZ4F_getErrorName(), LZ4F_getFrameInfo(), LZ4IO_compressFilename_extRess(), LZ4IO_createCResources(), LZ4IO_createDResources(), LZ4IO_decompressLZ4F(), LZ4IO_freeCResources(), LZ4IO_freeDResources(), LZ4IO_getCompressedFileInfo(), and test_lz4f_decompression_wBuffers().
LZ4FLIB_API void LZ4F_resetDecompressionContext | ( | LZ4F_dctx * | dctx | ) |
LZ4F_resetDecompressionContext() : added in v1.8.0 In case of an error, the context is left in "undefined" state. In which case, it's necessary to reset it, before re-using it. This method can also be used to abruptly stop any unfinished decompression, and start a new one using same context resources.
Definition at line 1097 of file lz4frame.c.
References LZ4F_dctx_s::dict, LZ4F_dctx_s::dictSize, LZ4F_dctx_s::dStage, dstage_getFrameHeader, and NULL.
Referenced by basicTests(), decompress(), fuzzerTests(), and LZ4F_decompress().