blob: 7625f12fcb0db14404f60f768543665497eb1dc1 [file] [log] [blame]
inikep82057aa2016-10-06 13:23:52 +02001/*
Yann Collet4ded9e52016-08-30 10:04:33 -07002 * Copyright (c) 2016-present, Yann Collet, Facebook, Inc.
3 * All rights reserved.
4 *
5 * This source code is licensed under the BSD-style license found in the
6 * LICENSE file in the root directory of this source tree. An additional grant
7 * of patent rights can be found in the PATENTS file in the same directory.
8 */
Yann Collet4856a002015-01-24 01:58:16 +01009
Yann Collet4856a002015-01-24 01:58:16 +010010#if defined (__cplusplus)
11extern "C" {
12#endif
13
Nick Terrell05c00f22016-11-29 11:46:37 -080014#ifndef ZSTD_H_235446
15#define ZSTD_H_235446
16
inikep82057aa2016-10-06 13:23:52 +020017/* ====== Dependency ======*/
Yann Collet4856a002015-01-24 01:58:16 +010018#include <stddef.h> /* size_t */
19
20
Yann Collet426a9d42016-12-07 16:39:34 -080021/* ===== ZSTDLIB_API : control library symbols visibility ===== */
22#if defined(__GNUC__) && (__GNUC__ >= 4)
Nick Terrell8de46ab2016-12-16 13:27:30 -080023# define ZSTDLIB_VISIBILITY __attribute__ ((visibility ("default")))
Christophe Chevalierc6e84532015-12-07 17:44:09 +010024#else
Nick Terrell8de46ab2016-12-16 13:27:30 -080025# define ZSTDLIB_VISIBILITY
26#endif
27#if defined(ZSTD_DLL_EXPORT) && (ZSTD_DLL_EXPORT==1)
28# define ZSTDLIB_API __declspec(dllexport) ZSTDLIB_VISIBILITY
29#elif defined(ZSTD_DLL_IMPORT) && (ZSTD_DLL_IMPORT==1)
30# define ZSTDLIB_API __declspec(dllimport) ZSTDLIB_VISIBILITY /* It isn't required but allows to generate better code, saving a function pointer load from the IAT and an indirect jump.*/
31#else
32# define ZSTDLIB_API ZSTDLIB_VISIBILITY
Christophe Chevalierc6e84532015-12-07 17:44:09 +010033#endif
34
35
inikep2d261332016-10-06 16:28:21 +020036/*******************************************************************************************************
37 Introduction
38
Yann Collet37d13002016-10-24 17:22:12 -070039 zstd, short for Zstandard, is a fast lossless compression algorithm, targeting real-time compression scenarios
inikep2d261332016-10-06 16:28:21 +020040 at zlib-level and better compression ratios. The zstd compression library provides in-memory compression and
41 decompression functions. The library supports compression levels from 1 up to ZSTD_maxCLevel() which is 22.
Yann Collet37d13002016-10-24 17:22:12 -070042 Levels >= 20, labelled `--ultra`, should be used with caution, as they require more memory.
inikep2d261332016-10-06 16:28:21 +020043 Compression can be done in:
44 - a single step (described as Simple API)
45 - a single step, reusing a context (described as Explicit memory management)
Yann Collet37d13002016-10-24 17:22:12 -070046 - unbounded multiple steps (described as Streaming compression)
inikep2d261332016-10-06 16:28:21 +020047 The compression ratio achievable on small data can be highly improved using compression with a dictionary in:
48 - a single step (described as Simple dictionary API)
Przemyslaw Skibinski984b66c2016-10-24 15:59:51 +020049 - a single step, reusing a dictionary (described as Fast dictionary API)
inikep2d261332016-10-06 16:28:21 +020050
Yann Collet37d13002016-10-24 17:22:12 -070051 Advanced experimental functions can be accessed using #define ZSTD_STATIC_LINKING_ONLY before including zstd.h.
52 These APIs shall never be used with a dynamic library.
inikep2d261332016-10-06 16:28:21 +020053 They are not "stable", their definition may change in the future. Only static linking is allowed.
54*********************************************************************************************************/
55
56/*------ Version ------*/
Yann Collet901e85f2016-08-31 07:51:25 -070057#define ZSTD_VERSION_MAJOR 1
Yann Collet1eb2fdc2016-09-18 12:21:47 +020058#define ZSTD_VERSION_MINOR 1
Yann Colletd46ecb52016-12-17 16:28:12 +010059#define ZSTD_VERSION_RELEASE 3
Yann Collete02808f2016-04-20 22:46:16 +020060
61#define ZSTD_LIB_VERSION ZSTD_VERSION_MAJOR.ZSTD_VERSION_MINOR.ZSTD_VERSION_RELEASE
62#define ZSTD_QUOTE(str) #str
63#define ZSTD_EXPAND_AND_QUOTE(str) ZSTD_QUOTE(str)
64#define ZSTD_VERSION_STRING ZSTD_EXPAND_AND_QUOTE(ZSTD_LIB_VERSION)
65
Yann Collet213089c2015-06-18 07:43:16 -080066#define ZSTD_VERSION_NUMBER (ZSTD_VERSION_MAJOR *100*100 + ZSTD_VERSION_MINOR *100 + ZSTD_VERSION_RELEASE)
Yann Collet379908b2016-12-06 10:36:15 -080067ZSTDLIB_API unsigned ZSTD_versionNumber(void); /**< library version number; to be used when checking dll version */
Yann Collet4856a002015-01-24 01:58:16 +010068
69
inikep82057aa2016-10-06 13:23:52 +020070/***************************************
Yann Colletcf05b9d2016-07-18 16:52:10 +020071* Simple API
Yann Collet7010c272015-10-21 09:07:25 +010072***************************************/
Yann Collet953ce722016-02-04 15:28:14 +010073/*! ZSTD_compress() :
Yann Colletac175d42016-09-13 00:51:47 +020074 Compresses `src` content as a single zstd compressed frame into already allocated `dst`.
Yann Colletcf05b9d2016-07-18 16:52:10 +020075 Hint : compression runs faster if `dstCapacity` >= `ZSTD_compressBound(srcSize)`.
Yann Collet64deef32016-09-14 00:16:07 +020076 @return : compressed size written into `dst` (<= `dstCapacity),
Nick Terrelld82efd82016-11-02 16:47:53 -070077 or an error code if it fails (which can be tested using ZSTD_isError()). */
Yann Colletcf05b9d2016-07-18 16:52:10 +020078ZSTDLIB_API size_t ZSTD_compress( void* dst, size_t dstCapacity,
79 const void* src, size_t srcSize,
80 int compressionLevel);
Yann Collet4856a002015-01-24 01:58:16 +010081
Yann Collet953ce722016-02-04 15:28:14 +010082/*! ZSTD_decompress() :
Yann Colletac175d42016-09-13 00:51:47 +020083 `compressedSize` : must be the _exact_ size of a single compressed frame.
84 `dstCapacity` is an upper bound of originalSize.
85 If user cannot imply a maximum upper bound, it's better to use streaming mode to decompress data.
Yann Collet953ce722016-02-04 15:28:14 +010086 @return : the number of bytes decompressed into `dst` (<= `dstCapacity`),
Nick Terrelld82efd82016-11-02 16:47:53 -070087 or an errorCode if it fails (which can be tested using ZSTD_isError()). */
Yann Collet7d968c72016-02-03 02:11:32 +010088ZSTDLIB_API size_t ZSTD_decompress( void* dst, size_t dstCapacity,
Christophe Chevalierc6e84532015-12-07 17:44:09 +010089 const void* src, size_t compressedSize);
Yann Collet4856a002015-01-24 01:58:16 +010090
Yann Colletac175d42016-09-13 00:51:47 +020091/*! ZSTD_getDecompressedSize() :
92* 'src' is the start of a zstd compressed frame.
93* @return : content size to be decompressed, as a 64-bits value _if known_, 0 otherwise.
94* note 1 : decompressed size is an optional field, that may not be present, especially in streaming mode.
95* When `return==0`, data to decompress could be any size.
96* In which case, it's necessary to use streaming mode to decompress data.
97* Optionally, application can still use ZSTD_decompress() while relying on implied limits.
98* (For example, data may be necessarily cut into blocks <= 16 KB).
99* note 2 : decompressed size is always present when compression is done with ZSTD_compress()
100* note 3 : decompressed size can be very large (64-bits value),
101* potentially larger than what local system can handle as a single memory segment.
102* In which case, it's necessary to use streaming mode to decompress data.
103* note 4 : If source is untrusted, decompressed size could be wrong or intentionally modified.
104* Always ensure result fits within application's authorized limits.
105* Each application can set its own limits.
106* note 5 : when `return==0`, if precise failure cause is needed, use ZSTD_getFrameParams() to know more. */
107ZSTDLIB_API unsigned long long ZSTD_getDecompressedSize(const void* src, size_t srcSize);
108
Yann Collet41105342016-07-27 15:09:11 +0200109
Yann Colletcf05b9d2016-07-18 16:52:10 +0200110/*====== Helper functions ======*/
Yann Collet41105342016-07-27 15:09:11 +0200111ZSTDLIB_API int ZSTD_maxCLevel(void); /*!< maximum compression level available */
112ZSTDLIB_API size_t ZSTD_compressBound(size_t srcSize); /*!< maximum compressed size in worst case scenario */
Yann Collet953ce722016-02-04 15:28:14 +0100113ZSTDLIB_API unsigned ZSTD_isError(size_t code); /*!< tells if a `size_t` function result is an error code */
Yann Colletcf05b9d2016-07-18 16:52:10 +0200114ZSTDLIB_API const char* ZSTD_getErrorName(size_t code); /*!< provides readable string from an error code */
Yann Collet7010c272015-10-21 09:07:25 +0100115
116
inikep82057aa2016-10-06 13:23:52 +0200117/***************************************
Yann Collet7d968c72016-02-03 02:11:32 +0100118* Explicit memory management
Yann Collet7010c272015-10-21 09:07:25 +0100119***************************************/
Yann Collet37d13002016-10-24 17:22:12 -0700120/*= Compression context
Yann Collet379908b2016-12-06 10:36:15 -0800121* When compressing many times,
Yann Collet37d13002016-10-24 17:22:12 -0700122* it is recommended to allocate a context just once, and re-use it for each successive compression operation.
Yann Collet379908b2016-12-06 10:36:15 -0800123* This will make workload friendlier for system's memory.
Yann Collet37d13002016-10-24 17:22:12 -0700124* Use one context per thread for parallel execution in multi-threaded environments. */
Yann Collet87c18b22016-08-26 01:43:47 +0200125typedef struct ZSTD_CCtx_s ZSTD_CCtx;
Christophe Chevalierc6e84532015-12-07 17:44:09 +0100126ZSTDLIB_API ZSTD_CCtx* ZSTD_createCCtx(void);
Yann Colletd469a982016-07-28 03:47:45 +0200127ZSTDLIB_API size_t ZSTD_freeCCtx(ZSTD_CCtx* cctx);
Yann Collet7010c272015-10-21 09:07:25 +0100128
inikep82057aa2016-10-06 13:23:52 +0200129/*! ZSTD_compressCCtx() :
Nick Terrelld82efd82016-11-02 16:47:53 -0700130 Same as ZSTD_compress(), requires an allocated ZSTD_CCtx (see ZSTD_createCCtx()). */
Yann Collet7d968c72016-02-03 02:11:32 +0100131ZSTDLIB_API size_t ZSTD_compressCCtx(ZSTD_CCtx* ctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize, int compressionLevel);
Yann Collet4856a002015-01-24 01:58:16 +0100132
inikep82057aa2016-10-06 13:23:52 +0200133/*= Decompression context */
Yann Collet87c18b22016-08-26 01:43:47 +0200134typedef struct ZSTD_DCtx_s ZSTD_DCtx;
Yann Colletecd651b2016-01-07 15:35:18 +0100135ZSTDLIB_API ZSTD_DCtx* ZSTD_createDCtx(void);
Yann Colletd469a982016-07-28 03:47:45 +0200136ZSTDLIB_API size_t ZSTD_freeDCtx(ZSTD_DCtx* dctx);
Yann Colletecd651b2016-01-07 15:35:18 +0100137
inikep82057aa2016-10-06 13:23:52 +0200138/*! ZSTD_decompressDCtx() :
Nick Terrelld82efd82016-11-02 16:47:53 -0700139* Same as ZSTD_decompress(), requires an allocated ZSTD_DCtx (see ZSTD_createDCtx()). */
Yann Collet7d968c72016-02-03 02:11:32 +0100140ZSTDLIB_API size_t ZSTD_decompressDCtx(ZSTD_DCtx* ctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize);
141
142
inikep82057aa2016-10-06 13:23:52 +0200143/**************************
Yann Collet302fb532016-06-07 12:16:49 +0200144* Simple dictionary API
145***************************/
Yann Collet953ce722016-02-04 15:28:14 +0100146/*! ZSTD_compress_usingDict() :
Yann Colletd469a982016-07-28 03:47:45 +0200147* Compression using a predefined Dictionary (see dictBuilder/zdict.h).
Nick Terrelld82efd82016-11-02 16:47:53 -0700148* Note : This function loads the dictionary, resulting in significant startup delay.
149* Note : When `dict == NULL || dictSize < 8` no dictionary is used. */
Yann Collet7d968c72016-02-03 02:11:32 +0100150ZSTDLIB_API size_t ZSTD_compress_usingDict(ZSTD_CCtx* ctx,
151 void* dst, size_t dstCapacity,
152 const void* src, size_t srcSize,
153 const void* dict,size_t dictSize,
154 int compressionLevel);
155
Yann Collet953ce722016-02-04 15:28:14 +0100156/*! ZSTD_decompress_usingDict() :
Yann Colletd469a982016-07-28 03:47:45 +0200157* Decompression using a predefined Dictionary (see dictBuilder/zdict.h).
Yann Collet81e13ef2016-06-07 00:51:51 +0200158* Dictionary must be identical to the one used during compression.
Nick Terrelld82efd82016-11-02 16:47:53 -0700159* Note : This function loads the dictionary, resulting in significant startup delay.
160* Note : When `dict == NULL || dictSize < 8` no dictionary is used. */
Yann Collet7d968c72016-02-03 02:11:32 +0100161ZSTDLIB_API size_t ZSTD_decompress_usingDict(ZSTD_DCtx* dctx,
162 void* dst, size_t dstCapacity,
163 const void* src, size_t srcSize,
164 const void* dict,size_t dictSize);
Yann Colletecd651b2016-01-07 15:35:18 +0100165
Yann Collet4856a002015-01-24 01:58:16 +0100166
inikep82057aa2016-10-06 13:23:52 +0200167/****************************
Przemyslaw Skibinski984b66c2016-10-24 15:59:51 +0200168* Fast dictionary API
Yann Collet302fb532016-06-07 12:16:49 +0200169****************************/
inikep2d261332016-10-06 16:28:21 +0200170typedef struct ZSTD_CDict_s ZSTD_CDict;
171
Yann Collet302fb532016-06-07 12:16:49 +0200172/*! ZSTD_createCDict() :
Yann Collet37d13002016-10-24 17:22:12 -0700173* When compressing multiple messages / blocks with the same dictionary, it's recommended to load it just once.
174* ZSTD_createCDict() will create a digested dictionary, ready to start future compression operations without startup delay.
175* ZSTD_CDict can be created once and used by multiple threads concurrently, as its usage is read-only.
Yann Collet1f57c2e2016-12-21 16:20:11 +0100176* `dictBuffer` can be released after ZSTD_CDict creation, as its content is copied within CDict */
177ZSTDLIB_API ZSTD_CDict* ZSTD_createCDict(const void* dictBuffer, size_t dictSize, int compressionLevel);
inikep2d261332016-10-06 16:28:21 +0200178
179/*! ZSTD_freeCDict() :
Nick Terrelld82efd82016-11-02 16:47:53 -0700180* Function frees memory allocated by ZSTD_createCDict(). */
Yann Collet302fb532016-06-07 12:16:49 +0200181ZSTDLIB_API size_t ZSTD_freeCDict(ZSTD_CDict* CDict);
182
183/*! ZSTD_compress_usingCDict() :
Yann Colletd469a982016-07-28 03:47:45 +0200184* Compression using a digested Dictionary.
Yann Colletcf05b9d2016-07-18 16:52:10 +0200185* Faster startup than ZSTD_compress_usingDict(), recommended when same dictionary is used multiple times.
Nick Terrelld82efd82016-11-02 16:47:53 -0700186* Note that compression level is decided during dictionary creation. */
Yann Collet302fb532016-06-07 12:16:49 +0200187ZSTDLIB_API size_t ZSTD_compress_usingCDict(ZSTD_CCtx* cctx,
188 void* dst, size_t dstCapacity,
189 const void* src, size_t srcSize,
190 const ZSTD_CDict* cdict);
191
inikep2d261332016-10-06 16:28:21 +0200192
193typedef struct ZSTD_DDict_s ZSTD_DDict;
194
Yann Collet302fb532016-06-07 12:16:49 +0200195/*! ZSTD_createDDict() :
196* Create a digested dictionary, ready to start decompression operation without startup delay.
Yann Collet4e5eea62016-12-21 16:44:35 +0100197* dictBuffer can be released after DDict creation, as its content is copied inside DDict */
198ZSTDLIB_API ZSTD_DDict* ZSTD_createDDict(const void* dictBuffer, size_t dictSize);
inikep2d261332016-10-06 16:28:21 +0200199
200/*! ZSTD_freeDDict() :
201* Function frees memory allocated with ZSTD_createDDict() */
Yann Collet302fb532016-06-07 12:16:49 +0200202ZSTDLIB_API size_t ZSTD_freeDDict(ZSTD_DDict* ddict);
203
204/*! ZSTD_decompress_usingDDict() :
Nick Terrelld82efd82016-11-02 16:47:53 -0700205* Decompression using a digested Dictionary.
Yann Colletcf05b9d2016-07-18 16:52:10 +0200206* Faster startup than ZSTD_decompress_usingDict(), recommended when same dictionary is used multiple times. */
Yann Collet302fb532016-06-07 12:16:49 +0200207ZSTDLIB_API size_t ZSTD_decompress_usingDDict(ZSTD_DCtx* dctx,
208 void* dst, size_t dstCapacity,
209 const void* src, size_t srcSize,
210 const ZSTD_DDict* ddict);
211
212
inikep82057aa2016-10-06 13:23:52 +0200213/****************************
Yann Collet7be46bf2016-08-19 18:39:36 +0200214* Streaming
215****************************/
216
217typedef struct ZSTD_inBuffer_s {
218 const void* src; /**< start of input buffer */
219 size_t size; /**< size of input buffer */
220 size_t pos; /**< position where reading stopped. Will be updated. Necessarily 0 <= pos <= size */
221} ZSTD_inBuffer;
222
223typedef struct ZSTD_outBuffer_s {
224 void* dst; /**< start of output buffer */
225 size_t size; /**< size of output buffer */
226 size_t pos; /**< position where writing stopped. Will be updated. Necessarily 0 <= pos <= size */
227} ZSTD_outBuffer;
228
229
Yann Collet7be46bf2016-08-19 18:39:36 +0200230
inikepba1db372016-10-06 14:22:48 +0200231/*-***********************************************************************
Przemyslaw Skibinski984b66c2016-10-24 15:59:51 +0200232* Streaming compression - HowTo
Yann Collet7be46bf2016-08-19 18:39:36 +0200233*
234* A ZSTD_CStream object is required to track streaming operation.
235* Use ZSTD_createCStream() and ZSTD_freeCStream() to create/release resources.
236* ZSTD_CStream objects can be reused multiple times on consecutive compression operations.
Yann Collet37d13002016-10-24 17:22:12 -0700237* It is recommended to re-use ZSTD_CStream in situations where many streaming operations will be achieved consecutively,
238* since it will play nicer with system's memory, by re-using already allocated memory.
239* Use one separate ZSTD_CStream per thread for parallel execution.
Yann Collet7be46bf2016-08-19 18:39:36 +0200240*
Yann Collet37d13002016-10-24 17:22:12 -0700241* Start a new compression by initializing ZSTD_CStream.
Yann Collet7be46bf2016-08-19 18:39:36 +0200242* Use ZSTD_initCStream() to start a new compression operation.
Yann Collete795c8a2016-12-13 16:39:36 +0100243* Use ZSTD_initCStream_usingDict() or ZSTD_initCStream_usingCDict() for a compression which requires a dictionary (experimental section)
Yann Collet7be46bf2016-08-19 18:39:36 +0200244*
245* Use ZSTD_compressStream() repetitively to consume input stream.
Yann Colletfa72f6b2016-09-05 17:39:56 +0200246* The function will automatically update both `pos` fields.
Yann Collet7be46bf2016-08-19 18:39:36 +0200247* Note that it may not consume the entire input, in which case `pos < size`,
248* and it's up to the caller to present again remaining data.
Yann Collet4bf317d2016-08-28 07:43:34 -0700249* @return : a size hint, preferred nb of bytes to use as input for next function call
Yann Collet7be46bf2016-08-19 18:39:36 +0200250* or an error code, which can be tested using ZSTD_isError().
Yann Collete795c8a2016-12-13 16:39:36 +0100251* Note 1 : it's just a hint, to help latency a little, any other value will work fine.
252* Note 2 : size hint is guaranteed to be <= ZSTD_CStreamInSize()
Yann Collet7be46bf2016-08-19 18:39:36 +0200253*
Yann Collete795c8a2016-12-13 16:39:36 +0100254* At any moment, it's possible to flush whatever data remains within internal buffer, using ZSTD_flushStream().
Yann Collet7be46bf2016-08-19 18:39:36 +0200255* `output->pos` will be updated.
Yann Collete795c8a2016-12-13 16:39:36 +0100256* Note that some content might still be left within internal buffer if `output->size` is too small.
Yann Collet7be46bf2016-08-19 18:39:36 +0200257* @return : nb of bytes still present within internal buffer (0 if it's empty)
258* or an error code, which can be tested using ZSTD_isError().
259*
260* ZSTD_endStream() instructs to finish a frame.
261* It will perform a flush and write frame epilogue.
262* The epilogue is required for decoders to consider a frame completed.
263* Similar to ZSTD_flushStream(), it may not be able to flush the full content if `output->size` is too small.
264* In which case, call again ZSTD_endStream() to complete the flush.
Yann Collete795c8a2016-12-13 16:39:36 +0100265* @return : nb of bytes still present within internal buffer (0 if it's empty, hence compression completed)
Yann Collet7be46bf2016-08-19 18:39:36 +0200266* or an error code, which can be tested using ZSTD_isError().
267*
268* *******************************************************************/
269
270typedef struct ZSTD_CStream_s ZSTD_CStream;
Yann Collet70e3b312016-08-23 01:18:06 +0200271ZSTDLIB_API ZSTD_CStream* ZSTD_createCStream(void);
272ZSTDLIB_API size_t ZSTD_freeCStream(ZSTD_CStream* zcs);
Yann Collete795c8a2016-12-13 16:39:36 +0100273
Yann Collet70e3b312016-08-23 01:18:06 +0200274ZSTDLIB_API size_t ZSTD_initCStream(ZSTD_CStream* zcs, int compressionLevel);
275ZSTDLIB_API size_t ZSTD_compressStream(ZSTD_CStream* zcs, ZSTD_outBuffer* output, ZSTD_inBuffer* input);
276ZSTDLIB_API size_t ZSTD_flushStream(ZSTD_CStream* zcs, ZSTD_outBuffer* output);
277ZSTDLIB_API size_t ZSTD_endStream(ZSTD_CStream* zcs, ZSTD_outBuffer* output);
Yann Collet7be46bf2016-08-19 18:39:36 +0200278
inikep82057aa2016-10-06 13:23:52 +0200279ZSTDLIB_API size_t ZSTD_CStreamInSize(void); /**< recommended size for input buffer */
280ZSTDLIB_API size_t ZSTD_CStreamOutSize(void); /**< recommended size for output buffer. Guarantee to successfully flush at least one complete compressed block in all circumstances. */
Yann Collet7be46bf2016-08-19 18:39:36 +0200281
Yann Collet7be46bf2016-08-19 18:39:36 +0200282
inikep82057aa2016-10-06 13:23:52 +0200283
inikepba1db372016-10-06 14:22:48 +0200284/*-***************************************************************************
Przemyslaw Skibinski984b66c2016-10-24 15:59:51 +0200285* Streaming decompression - HowTo
Yann Collet7be46bf2016-08-19 18:39:36 +0200286*
287* A ZSTD_DStream object is required to track streaming operations.
288* Use ZSTD_createDStream() and ZSTD_freeDStream() to create/release resources.
Yann Collet17e482e2016-08-23 16:58:10 +0200289* ZSTD_DStream objects can be re-used multiple times.
Yann Collet7be46bf2016-08-19 18:39:36 +0200290*
291* Use ZSTD_initDStream() to start a new decompression operation,
292* or ZSTD_initDStream_usingDict() if decompression requires a dictionary.
Yann Collet7c83dfd2016-09-05 19:47:43 +0200293* @return : recommended first input size
Yann Collet7be46bf2016-08-19 18:39:36 +0200294*
295* Use ZSTD_decompressStream() repetitively to consume your input.
Yann Colletfa72f6b2016-09-05 17:39:56 +0200296* The function will update both `pos` fields.
Yann Colletb3060f72016-09-09 16:44:16 +0200297* If `input.pos < input.size`, some input has not been consumed.
Yann Collet1d4208c2016-09-06 05:16:40 +0200298* It's up to the caller to present again remaining data.
Yann Colletb3060f72016-09-09 16:44:16 +0200299* If `output.pos < output.size`, decoder has flushed everything it could.
Yann Collet7be46bf2016-08-19 18:39:36 +0200300* @return : 0 when a frame is completely decoded and fully flushed,
Yann Colletfa72f6b2016-09-05 17:39:56 +0200301* an error code, which can be tested using ZSTD_isError(),
Yann Collet9ffbeea2016-12-02 18:37:38 -0800302* any other value > 0, which means there is still some decoding to do to complete current frame.
303* The return value is a suggested next input size (a hint to improve latency) that will never load more than the current frame.
Yann Collet7be46bf2016-08-19 18:39:36 +0200304* *******************************************************************************/
305
306typedef struct ZSTD_DStream_s ZSTD_DStream;
Yann Collet70e3b312016-08-23 01:18:06 +0200307ZSTDLIB_API ZSTD_DStream* ZSTD_createDStream(void);
308ZSTDLIB_API size_t ZSTD_freeDStream(ZSTD_DStream* zds);
Yann Collete795c8a2016-12-13 16:39:36 +0100309
inikep82057aa2016-10-06 13:23:52 +0200310ZSTDLIB_API size_t ZSTD_initDStream(ZSTD_DStream* zds);
311ZSTDLIB_API size_t ZSTD_decompressStream(ZSTD_DStream* zds, ZSTD_outBuffer* output, ZSTD_inBuffer* input);
Yann Collet7be46bf2016-08-19 18:39:36 +0200312
Yann Collet70e3b312016-08-23 01:18:06 +0200313ZSTDLIB_API size_t ZSTD_DStreamInSize(void); /*!< recommended size for input buffer */
Yann Collet01c19922016-09-08 19:29:04 +0200314ZSTDLIB_API size_t ZSTD_DStreamOutSize(void); /*!< recommended size for output buffer. Guarantee to successfully flush at least one complete block in all circumstances. */
Yann Collet7be46bf2016-08-19 18:39:36 +0200315
Nick Terrell05c00f22016-11-29 11:46:37 -0800316#endif /* ZSTD_H_235446 */
Yann Collet7be46bf2016-08-19 18:39:36 +0200317
318
Nick Terrell05c00f22016-11-29 11:46:37 -0800319#if defined(ZSTD_STATIC_LINKING_ONLY) && !defined(ZSTD_H_ZSTD_STATIC_LINKING_ONLY)
320#define ZSTD_H_ZSTD_STATIC_LINKING_ONLY
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200321
inikep82057aa2016-10-06 13:23:52 +0200322/****************************************************************************************
inikep2d261332016-10-06 16:28:21 +0200323 * START OF ADVANCED AND EXPERIMENTAL FUNCTIONS
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200324 * The definitions in this section are considered experimental.
Yann Colleta49e0662016-06-21 11:54:03 +0200325 * They should never be used with a dynamic library, as they may change in the future.
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200326 * They are provided for advanced usages.
327 * Use them only in association with static linking.
inikep82057aa2016-10-06 13:23:52 +0200328 * ***************************************************************************************/
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200329
inikep82057aa2016-10-06 13:23:52 +0200330/* --- Constants ---*/
Yann Collet4e5eea62016-12-21 16:44:35 +0100331#define ZSTD_MAGICNUMBER 0xFD2FB528 /* >= v0.8.0 */
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200332#define ZSTD_MAGIC_SKIPPABLE_START 0x184D2A50U
333
Yann Colleted3845d2016-07-08 12:57:10 +0200334#define ZSTD_WINDOWLOG_MAX_32 25
335#define ZSTD_WINDOWLOG_MAX_64 27
336#define ZSTD_WINDOWLOG_MAX ((U32)(MEM_32bits() ? ZSTD_WINDOWLOG_MAX_32 : ZSTD_WINDOWLOG_MAX_64))
Yann Colletcf409a72016-09-26 16:41:05 +0200337#define ZSTD_WINDOWLOG_MIN 10
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200338#define ZSTD_HASHLOG_MAX ZSTD_WINDOWLOG_MAX
Yann Colletcf409a72016-09-26 16:41:05 +0200339#define ZSTD_HASHLOG_MIN 6
340#define ZSTD_CHAINLOG_MAX (ZSTD_WINDOWLOG_MAX+1)
341#define ZSTD_CHAINLOG_MIN ZSTD_HASHLOG_MIN
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200342#define ZSTD_HASHLOG3_MAX 17
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200343#define ZSTD_SEARCHLOG_MAX (ZSTD_WINDOWLOG_MAX-1)
344#define ZSTD_SEARCHLOG_MIN 1
Yann Collet0e07bf32016-09-07 06:33:02 +0200345#define ZSTD_SEARCHLENGTH_MAX 7 /* only for ZSTD_fast, other strategies are limited to 6 */
346#define ZSTD_SEARCHLENGTH_MIN 3 /* only for ZSTD_btopt, other strategies are limited to 4 */
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200347#define ZSTD_TARGETLENGTH_MIN 4
348#define ZSTD_TARGETLENGTH_MAX 999
349
Yann Collet673f0d72016-06-06 00:26:38 +0200350#define ZSTD_FRAMEHEADERSIZE_MAX 18 /* for static allocation */
Yann Colletba75e9d2016-12-21 19:57:18 +0100351#define ZSTD_FRAMEHEADERSIZE_MIN 6
Yann Collet7c83dfd2016-09-05 19:47:43 +0200352static const size_t ZSTD_frameHeaderSize_prefix = 5;
Yann Colletba75e9d2016-12-21 19:57:18 +0100353static const size_t ZSTD_frameHeaderSize_min = ZSTD_FRAMEHEADERSIZE_MIN;
Yann Collet673f0d72016-06-06 00:26:38 +0200354static const size_t ZSTD_frameHeaderSize_max = ZSTD_FRAMEHEADERSIZE_MAX;
355static const size_t ZSTD_skippableHeaderSize = 8; /* magic number + skippable frame length */
356
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200357
Przemyslaw Skibinski984b66c2016-10-24 15:59:51 +0200358/*--- Advanced types ---*/
Przemyslaw Skibinski5c5f01f2016-10-25 12:25:07 +0200359typedef enum { ZSTD_fast, ZSTD_dfast, ZSTD_greedy, ZSTD_lazy, ZSTD_lazy2, ZSTD_btlazy2, ZSTD_btopt, ZSTD_btopt2 } ZSTD_strategy; /* from faster to stronger */
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200360
361typedef struct {
Yann Collet655393c2016-08-14 00:16:20 +0200362 unsigned windowLog; /**< largest match distance : larger == more compression, more memory needed during decompression */
363 unsigned chainLog; /**< fully searched segment : larger == more compression, slower, more memory (useless for fast) */
364 unsigned hashLog; /**< dispatch table : larger == faster, more memory */
365 unsigned searchLog; /**< nb of searches : larger == more compression, slower */
366 unsigned searchLength; /**< match length searched : larger == faster decompression, sometimes less compression */
367 unsigned targetLength; /**< acceptable match size for optimal parser (only) : larger == more compression, slower */
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200368 ZSTD_strategy strategy;
369} ZSTD_compressionParameters;
370
371typedef struct {
Yann Collet655393c2016-08-14 00:16:20 +0200372 unsigned contentSizeFlag; /**< 1: content size will be in frame header (if known). */
373 unsigned checksumFlag; /**< 1: will generate a 22-bits checksum at end of frame, to be used for error detection by decompressor */
374 unsigned noDictIDFlag; /**< 1: no dict ID will be saved into frame header (if dictionary compression) */
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200375} ZSTD_frameParameters;
376
377typedef struct {
378 ZSTD_compressionParameters cParams;
379 ZSTD_frameParameters fParams;
380} ZSTD_parameters;
381
inikep82057aa2016-10-06 13:23:52 +0200382/*= Custom memory allocation functions */
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200383typedef void* (*ZSTD_allocFunction) (void* opaque, size_t size);
384typedef void (*ZSTD_freeFunction) (void* opaque, void* address);
385typedef struct { ZSTD_allocFunction customAlloc; ZSTD_freeFunction customFree; void* opaque; } ZSTD_customMem;
386
387
inikep82057aa2016-10-06 13:23:52 +0200388/***************************************
Yann Collet81e13ef2016-06-07 00:51:51 +0200389* Advanced compression functions
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200390***************************************/
Yann Collet3ae543c2016-07-11 03:12:17 +0200391/*! ZSTD_estimateCCtxSize() :
392 * Gives the amount of memory allocated for a ZSTD_CCtx given a set of compression parameters.
393 * `frameContentSize` is an optional parameter, provide `0` if unknown */
Yann Collet88472382016-07-14 17:05:38 +0200394ZSTDLIB_API size_t ZSTD_estimateCCtxSize(ZSTD_compressionParameters cParams);
Yann Collet3ae543c2016-07-11 03:12:17 +0200395
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200396/*! ZSTD_createCCtx_advanced() :
397 * Create a ZSTD compression context using external alloc and free functions */
398ZSTDLIB_API ZSTD_CCtx* ZSTD_createCCtx_advanced(ZSTD_customMem customMem);
399
Yann Colletd7c65892016-09-15 02:50:27 +0200400/*! ZSTD_sizeofCCtx() :
401 * Gives the amount of memory used by a given ZSTD_CCtx */
402ZSTDLIB_API size_t ZSTD_sizeof_CCtx(const ZSTD_CCtx* cctx);
403
Yann Collet1f57c2e2016-12-21 16:20:11 +0100404/*! ZSTD_createCDict_byReference() :
405 * Create a digested dictionary for compression
406 * Dictionary content is simply referenced, and therefore stays in dictBuffer.
407 * It is important that dictBuffer outlives CDict, it must remain read accessible throughout the lifetime of CDict */
408ZSTDLIB_API ZSTD_CDict* ZSTD_createCDict_byReference(const void* dictBuffer, size_t dictSize, int compressionLevel);
409
Yann Collet81e13ef2016-06-07 00:51:51 +0200410/*! ZSTD_createCDict_advanced() :
411 * Create a ZSTD_CDict using external alloc and free, and customized compression parameters */
Yann Collet1f57c2e2016-12-21 16:20:11 +0100412ZSTDLIB_API ZSTD_CDict* ZSTD_createCDict_advanced(const void* dict, size_t dictSize, unsigned byReference,
Yann Collet81e13ef2016-06-07 00:51:51 +0200413 ZSTD_parameters params, ZSTD_customMem customMem);
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200414
Yann Colletd7c65892016-09-15 02:50:27 +0200415/*! ZSTD_sizeof_CDict() :
416 * Gives the amount of memory used by a given ZSTD_sizeof_CDict */
417ZSTDLIB_API size_t ZSTD_sizeof_CDict(const ZSTD_CDict* cdict);
Yann Collet8e0ee682016-07-11 13:09:52 +0200418
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200419/*! ZSTD_getCParams() :
Yann Collet2b36b232016-12-13 17:59:55 +0100420* @return ZSTD_compressionParameters structure for a selected compression level and estimated srcSize.
421* `estimatedSrcSize` value is optional, select 0 if not known */
422ZSTDLIB_API ZSTD_compressionParameters ZSTD_getCParams(int compressionLevel, unsigned long long estimatedSrcSize, size_t dictSize);
423
424/*! ZSTD_getParams() :
425* same as ZSTD_getCParams(), but @return a full `ZSTD_parameters` object instead of sub-component `ZSTD_compressionParameters`.
426* All fields of `ZSTD_frameParameters` are set to default (0) */
427ZSTDLIB_API ZSTD_parameters ZSTD_getParams(int compressionLevel, unsigned long long estimatedSrcSize, size_t dictSize);
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200428
Yann Collet3d2cd7f2016-06-27 15:12:26 +0200429/*! ZSTD_checkCParams() :
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200430* Ensure param values remain within authorized range */
431ZSTDLIB_API size_t ZSTD_checkCParams(ZSTD_compressionParameters params);
432
Yann Collet3d2cd7f2016-06-27 15:12:26 +0200433/*! ZSTD_adjustCParams() :
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200434* optimize params for a given `srcSize` and `dictSize`.
435* both values are optional, select `0` if unknown. */
Yann Collet52c04fe2016-07-07 11:53:18 +0200436ZSTDLIB_API ZSTD_compressionParameters ZSTD_adjustCParams(ZSTD_compressionParameters cPar, unsigned long long srcSize, size_t dictSize);
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200437
438/*! ZSTD_compress_advanced() :
439* Same as ZSTD_compress_usingDict(), with fine-tune control of each compression parameter */
440ZSTDLIB_API size_t ZSTD_compress_advanced (ZSTD_CCtx* ctx,
441 void* dst, size_t dstCapacity,
442 const void* src, size_t srcSize,
443 const void* dict,size_t dictSize,
444 ZSTD_parameters params);
445
Yann Collet45c03c52016-06-14 13:46:11 +0200446
Przemyslaw Skibinski984b66c2016-10-24 15:59:51 +0200447/*--- Advanced decompression functions ---*/
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200448
Yann Collet179b1972016-11-02 17:30:49 -0700449/*! ZSTD_isFrame() :
450 * Tells if the content of `buffer` starts with a valid Frame Identifier.
451 * Note : Frame Identifier is 4 bytes. If `size < 4`, @return will always be 0.
452 * Note 2 : Legacy Frame Identifiers are considered valid only if Legacy Support is enabled.
453 * Note 3 : Skippable Frame Identifiers are considered valid. */
454ZSTDLIB_API unsigned ZSTD_isFrame(const void* buffer, size_t size);
455
Yann Colletd158c352016-07-11 13:46:25 +0200456/*! ZSTD_estimateDCtxSize() :
457 * Gives the potential amount of memory allocated to create a ZSTD_DCtx */
458ZSTDLIB_API size_t ZSTD_estimateDCtxSize(void);
459
Yann Collet81e13ef2016-06-07 00:51:51 +0200460/*! ZSTD_createDCtx_advanced() :
461 * Create a ZSTD decompression context using external alloc and free functions */
462ZSTDLIB_API ZSTD_DCtx* ZSTD_createDCtx_advanced(ZSTD_customMem customMem);
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200463
Yann Colletd7c65892016-09-15 02:50:27 +0200464/*! ZSTD_sizeof_DCtx() :
Yann Colletd158c352016-07-11 13:46:25 +0200465 * Gives the amount of memory used by a given ZSTD_DCtx */
Yann Collet70e3b312016-08-23 01:18:06 +0200466ZSTDLIB_API size_t ZSTD_sizeof_DCtx(const ZSTD_DCtx* dctx);
Yann Collet8e0ee682016-07-11 13:09:52 +0200467
Yann Collet4e5eea62016-12-21 16:44:35 +0100468/*! ZSTD_createDDict_byReference() :
469 * Create a digested dictionary, ready to start decompression operation without startup delay.
470 * Dictionary content is simply referenced, and therefore stays in dictBuffer.
471 * It is important that dictBuffer outlives DDict, it must remain read accessible throughout the lifetime of DDict */
472ZSTDLIB_API ZSTD_DDict* ZSTD_createDDict_byReference(const void* dictBuffer, size_t dictSize);
473
474ZSTDLIB_API ZSTD_DDict* ZSTD_createDDict_advanced(const void* dict, size_t dictSize,
475 unsigned byReference, ZSTD_customMem customMem);
476
Yann Collete91c4b42016-09-14 16:55:44 +0200477/*! ZSTD_sizeof_DDict() :
478 * Gives the amount of memory used by a given ZSTD_DDict */
479ZSTDLIB_API size_t ZSTD_sizeof_DDict(const ZSTD_DDict* ddict);
480
Yann Collete7a41a52016-12-05 16:21:06 -0800481/*! ZSTD_getDictID_fromDict() :
482 * Provides the dictID stored within dictionary.
483 * if @return == 0, the dictionary is not conformant with Zstandard specification.
484 * It can still be loaded, but as a content-only dictionary. */
Nick Terrell8de46ab2016-12-16 13:27:30 -0800485ZSTDLIB_API unsigned ZSTD_getDictID_fromDict(const void* dict, size_t dictSize);
Yann Collete7a41a52016-12-05 16:21:06 -0800486
487/*! ZSTD_getDictID_fromDDict() :
488 * Provides the dictID of the dictionary loaded into `ddict`.
489 * If @return == 0, the dictionary is not conformant to Zstandard specification, or empty.
490 * Non-conformant dictionaries can still be loaded, but as content-only dictionaries. */
Nick Terrell8de46ab2016-12-16 13:27:30 -0800491ZSTDLIB_API unsigned ZSTD_getDictID_fromDDict(const ZSTD_DDict* ddict);
Yann Collete7a41a52016-12-05 16:21:06 -0800492
493/*! ZSTD_getDictID_fromFrame() :
494 * Provides the dictID required to decompressed the frame stored within `src`.
495 * If @return == 0, the dictID could not be decoded.
496 * This could for one of the following reasons :
497 * - The frame does not require a dictionary to be decoded (most common case).
498 * - The frame was built with dictID intentionally removed. Whatever dictionary is necessary is a hidden information.
499 * Note : this use case also happens when using a non-conformant dictionary.
500 * - `srcSize` is too small, and as a result, the frame header could not be decoded (only possible if `srcSize < ZSTD_FRAMEHEADERSIZE_MAX`).
501 * - This is not a Zstandard frame.
502 * When identifying the exact failure cause, it's possible to used ZSTD_getFrameParams(), which will provide a more precise error code. */
Nick Terrell8de46ab2016-12-16 13:27:30 -0800503ZSTDLIB_API unsigned ZSTD_getDictID_fromFrame(const void* src, size_t srcSize);
Yann Collete7a41a52016-12-05 16:21:06 -0800504
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200505
inikep82057aa2016-10-06 13:23:52 +0200506/********************************************************************
Przemyslaw Skibinski984b66c2016-10-24 15:59:51 +0200507* Advanced streaming functions
Yann Collet5a0c8e22016-08-12 01:20:36 +0200508********************************************************************/
509
inikep82057aa2016-10-06 13:23:52 +0200510/*===== Advanced Streaming compression functions =====*/
Yann Collet70e3b312016-08-23 01:18:06 +0200511ZSTDLIB_API ZSTD_CStream* ZSTD_createCStream_advanced(ZSTD_customMem customMem);
Yann Collete795c8a2016-12-13 16:39:36 +0100512ZSTDLIB_API size_t ZSTD_initCStream_srcSize(ZSTD_CStream* zcs, int compressionLevel, unsigned long long pledgedSrcSize); /**< pledgedSrcSize must be correct */
Sean Purcell0b5370a2017-01-18 13:44:43 -0800513ZSTDLIB_API size_t ZSTD_initCStream_usingDict(ZSTD_CStream* zcs, const void* dict, size_t dictSize, int compressionLevel); /**< note: a dict will not be used if dict == NULL or dictSize < 8 */
Yann Collet70e3b312016-08-23 01:18:06 +0200514ZSTDLIB_API size_t ZSTD_initCStream_advanced(ZSTD_CStream* zcs, const void* dict, size_t dictSize,
Yann Collet4cb21292016-09-15 14:54:07 +0200515 ZSTD_parameters params, unsigned long long pledgedSrcSize); /**< pledgedSrcSize is optional and can be zero == unknown */
Yann Collet95162342016-10-25 16:19:52 -0700516ZSTDLIB_API size_t ZSTD_initCStream_usingCDict(ZSTD_CStream* zcs, const ZSTD_CDict* cdict); /**< note : cdict will just be referenced, and must outlive compression session */
Yann Colletee5b7252016-10-27 14:20:55 -0700517ZSTDLIB_API size_t ZSTD_resetCStream(ZSTD_CStream* zcs, unsigned long long pledgedSrcSize); /**< re-use compression parameters from previous init; skip dictionary loading stage; zcs must be init at least once before */
Yann Collet70e3b312016-08-23 01:18:06 +0200518ZSTDLIB_API size_t ZSTD_sizeof_CStream(const ZSTD_CStream* zcs);
Yann Colletcb327632016-08-23 00:30:31 +0200519
Yann Collet5a0c8e22016-08-12 01:20:36 +0200520
inikep82057aa2016-10-06 13:23:52 +0200521/*===== Advanced Streaming decompression functions =====*/
Yann Collet17e482e2016-08-23 16:58:10 +0200522typedef enum { ZSTDdsp_maxWindowSize } ZSTD_DStreamParameter_e;
Yann Collet70e3b312016-08-23 01:18:06 +0200523ZSTDLIB_API ZSTD_DStream* ZSTD_createDStream_advanced(ZSTD_customMem customMem);
Sean Purcell0b5370a2017-01-18 13:44:43 -0800524ZSTDLIB_API size_t ZSTD_initDStream_usingDict(ZSTD_DStream* zds, const void* dict, size_t dictSize); /**< note: a dict will not be used if dict == NULL or dictSize < 8 */
Yann Collet17e482e2016-08-23 16:58:10 +0200525ZSTDLIB_API size_t ZSTD_setDStreamParameter(ZSTD_DStream* zds, ZSTD_DStreamParameter_e paramType, unsigned paramValue);
Yann Collet95162342016-10-25 16:19:52 -0700526ZSTDLIB_API size_t ZSTD_initDStream_usingDDict(ZSTD_DStream* zds, const ZSTD_DDict* ddict); /**< note : ddict will just be referenced, and must outlive decompression session */
Yann Collet4cb21292016-09-15 14:54:07 +0200527ZSTDLIB_API size_t ZSTD_resetDStream(ZSTD_DStream* zds); /**< re-use decompression parameters from previous init; saves dictionary loading */
Yann Collet70e3b312016-08-23 01:18:06 +0200528ZSTDLIB_API size_t ZSTD_sizeof_DStream(const ZSTD_DStream* zds);
Yann Collet5a0c8e22016-08-12 01:20:36 +0200529
530
inikep82057aa2016-10-06 13:23:52 +0200531/*********************************************************************
Yann Collet5a0c8e22016-08-12 01:20:36 +0200532* Buffer-less and synchronous inner streaming functions
inikep82057aa2016-10-06 13:23:52 +0200533*
534* This is an advanced API, giving full control over buffer management, for users which need direct control over memory.
Yann Collet655393c2016-08-14 00:16:20 +0200535* But it's also a complex one, with many restrictions (documented below).
Yann Collet37d13002016-10-24 17:22:12 -0700536* Prefer using normal streaming API for an easier experience
inikep82057aa2016-10-06 13:23:52 +0200537********************************************************************* */
Yann Collet60ba31c2016-07-28 19:55:09 +0200538
inikep82057aa2016-10-06 13:23:52 +0200539/**
540 Buffer-less streaming compression (synchronous mode)
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200541
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200542 A ZSTD_CCtx object is required to track streaming operations.
Yann Collet45c03c52016-06-14 13:46:11 +0200543 Use ZSTD_createCCtx() / ZSTD_freeCCtx() to manage resource.
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200544 ZSTD_CCtx object can be re-used multiple times within successive compression operations.
545
546 Start by initializing a context.
547 Use ZSTD_compressBegin(), or ZSTD_compressBegin_usingDict() for dictionary compression,
548 or ZSTD_compressBegin_advanced(), for finer parameter control.
549 It's also possible to duplicate a reference context which has already been initialized, using ZSTD_copyCCtx()
550
551 Then, consume your input using ZSTD_compressContinue().
Yann Colleta49e0662016-06-21 11:54:03 +0200552 There are some important considerations to keep in mind when using this advanced function :
553 - ZSTD_compressContinue() has no internal buffer. It uses externally provided buffer only.
Yann Collet62470b42016-07-28 15:29:08 +0200554 - Interface is synchronous : input is consumed entirely and produce 1+ (or more) compressed blocks.
Yann Colleta49e0662016-06-21 11:54:03 +0200555 - Caller must ensure there is enough space in `dst` to store compressed data under worst case scenario.
556 Worst case evaluation is provided by ZSTD_compressBound().
557 ZSTD_compressContinue() doesn't guarantee recover after a failed compression.
558 - ZSTD_compressContinue() presumes prior input ***is still accessible and unmodified*** (up to maximum distance size, see WindowLog).
559 It remembers all previous contiguous blocks, plus one separated memory segment (which can itself consists of multiple contiguous blocks)
560 - ZSTD_compressContinue() detects that prior input has been overwritten when `src` buffer overlaps.
561 In which case, it will "discard" the relevant memory section from its history.
562
Yann Collet62470b42016-07-28 15:29:08 +0200563 Finish a frame with ZSTD_compressEnd(), which will write the last block(s) and optional checksum.
564 It's possible to use a NULL,0 src content, in which case, it will write a final empty block to end the frame,
565 Without last block mark, frames will be considered unfinished (broken) by decoders.
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200566
Yann Colleta49e0662016-06-21 11:54:03 +0200567 You can then reuse `ZSTD_CCtx` (ZSTD_compressBegin()) to compress some new frame.
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200568*/
569
inikep82057aa2016-10-06 13:23:52 +0200570/*===== Buffer-less streaming compression functions =====*/
571ZSTDLIB_API size_t ZSTD_compressBegin(ZSTD_CCtx* cctx, int compressionLevel);
572ZSTDLIB_API size_t ZSTD_compressBegin_usingDict(ZSTD_CCtx* cctx, const void* dict, size_t dictSize, int compressionLevel);
573ZSTDLIB_API size_t ZSTD_compressBegin_advanced(ZSTD_CCtx* cctx, const void* dict, size_t dictSize, ZSTD_parameters params, unsigned long long pledgedSrcSize);
574ZSTDLIB_API size_t ZSTD_copyCCtx(ZSTD_CCtx* cctx, const ZSTD_CCtx* preparedCCtx, unsigned long long pledgedSrcSize);
575ZSTDLIB_API size_t ZSTD_compressContinue(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize);
576ZSTDLIB_API size_t ZSTD_compressEnd(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize);
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200577
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200578
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200579
inikepba1db372016-10-06 14:22:48 +0200580/*-
Yann Colletcf05b9d2016-07-18 16:52:10 +0200581 Buffer-less streaming decompression (synchronous mode)
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200582
583 A ZSTD_DCtx object is required to track streaming operations.
584 Use ZSTD_createDCtx() / ZSTD_freeDCtx() to manage it.
585 A ZSTD_DCtx object can be re-used multiple times.
586
Yann Collet6b615d32016-07-29 19:40:37 +0200587 First typical operation is to retrieve frame parameters, using ZSTD_getFrameParams().
588 It fills a ZSTD_frameParams structure which provide important information to correctly decode the frame,
589 such as the minimum rolling buffer size to allocate to decompress data (`windowSize`),
590 and the dictionary ID used.
591 (Note : content size is optional, it may not be present. 0 means : content size unknown).
592 Note that these values could be wrong, either because of data malformation, or because an attacker is spoofing deliberate false information.
593 As a consequence, check that values remain within valid application range, especially `windowSize`, before allocation.
594 Each application can set its own limit, depending on local restrictions. For extended interoperability, it is recommended to support at least 8 MB.
595 Frame parameters are extracted from the beginning of the compressed frame.
596 Data fragment must be large enough to ensure successful decoding, typically `ZSTD_frameHeaderSize_max` bytes.
597 @result : 0 : successful decoding, the `ZSTD_frameParams` structure is correctly filled.
598 >0 : `srcSize` is too small, please provide at least @result bytes on next attempt.
Yann Colletd469a982016-07-28 03:47:45 +0200599 errorCode, which can be tested using ZSTD_isError().
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200600
601 Start decompression, with ZSTD_decompressBegin() or ZSTD_decompressBegin_usingDict().
602 Alternatively, you can copy a prepared context, using ZSTD_copyDCtx().
603
604 Then use ZSTD_nextSrcSizeToDecompress() and ZSTD_decompressContinue() alternatively.
Yann Collet6b615d32016-07-29 19:40:37 +0200605 ZSTD_nextSrcSizeToDecompress() tells how many bytes to provide as 'srcSize' to ZSTD_decompressContinue().
606 ZSTD_decompressContinue() requires this _exact_ amount of bytes, or it will fail.
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200607
Yann Collet49bb0042016-06-04 20:17:38 +0200608 @result of ZSTD_decompressContinue() is the number of bytes regenerated within 'dst' (necessarily <= dstCapacity).
Yann Collet6b615d32016-07-29 19:40:37 +0200609 It can be zero, which is not an error; it just means ZSTD_decompressContinue() has decoded some metadata item.
610 It can also be an error code, which can be tested with ZSTD_isError().
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200611
Yann Collet3b6ae772016-07-08 23:42:22 +0200612 ZSTD_decompressContinue() needs previous data blocks during decompression, up to `windowSize`.
613 They should preferably be located contiguously, prior to current block.
614 Alternatively, a round buffer of sufficient size is also possible. Sufficient size is determined by frame parameters.
615 ZSTD_decompressContinue() is very sensitive to contiguity,
616 if 2 blocks don't follow each other, make sure that either the compressor breaks contiguity at the same place,
Yann Colletd469a982016-07-28 03:47:45 +0200617 or that previous contiguous segment is large enough to properly handle maximum back-reference.
Yann Collet3b6ae772016-07-08 23:42:22 +0200618
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200619 A frame is fully decoded when ZSTD_nextSrcSizeToDecompress() returns zero.
620 Context can then be reset to start a new decompression.
621
Yann Collet4c5bbf62016-07-28 20:30:25 +0200622 Note : it's possible to know if next input to present is a header or a block, using ZSTD_nextInputType().
Yann Collet6b615d32016-07-29 19:40:37 +0200623 This information is not required to properly decode a frame.
Yann Collet3b6ae772016-07-08 23:42:22 +0200624
Yann Collete795c8a2016-12-13 16:39:36 +0100625 == Special case : skippable frames ==
Yann Collet3b6ae772016-07-08 23:42:22 +0200626
Yann Colletd469a982016-07-28 03:47:45 +0200627 Skippable frames allow integration of user-defined data into a flow of concatenated frames.
Yann Collet5b567392016-07-28 01:17:22 +0200628 Skippable frames will be ignored (skipped) by a decompressor. The format of skippable frames is as follows :
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200629 a) Skippable frame ID - 4 Bytes, Little endian format, any value from 0x184D2A50 to 0x184D2A5F
630 b) Frame Size - 4 Bytes, Little endian format, unsigned 32-bits
631 c) Frame Content - any content (User Data) of length equal to Frame Size
632 For skippable frames ZSTD_decompressContinue() always returns 0.
633 For skippable frames ZSTD_getFrameParams() returns fparamsPtr->windowLog==0 what means that a frame is skippable.
634 It also returns Frame Size as fparamsPtr->frameContentSize.
635*/
636
inikep82057aa2016-10-06 13:23:52 +0200637typedef struct {
638 unsigned long long frameContentSize;
639 unsigned windowSize;
640 unsigned dictID;
641 unsigned checksumFlag;
642} ZSTD_frameParams;
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200643
inikep82057aa2016-10-06 13:23:52 +0200644/*===== Buffer-less streaming decompression functions =====*/
645ZSTDLIB_API size_t ZSTD_getFrameParams(ZSTD_frameParams* fparamsPtr, const void* src, size_t srcSize); /**< doesn't consume input, see details below */
646ZSTDLIB_API size_t ZSTD_decompressBegin(ZSTD_DCtx* dctx);
647ZSTDLIB_API size_t ZSTD_decompressBegin_usingDict(ZSTD_DCtx* dctx, const void* dict, size_t dictSize);
648ZSTDLIB_API void ZSTD_copyDCtx(ZSTD_DCtx* dctx, const ZSTD_DCtx* preparedDCtx);
649ZSTDLIB_API size_t ZSTD_nextSrcSizeToDecompress(ZSTD_DCtx* dctx);
650ZSTDLIB_API size_t ZSTD_decompressContinue(ZSTD_DCtx* dctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize);
651typedef enum { ZSTDnit_frameHeader, ZSTDnit_blockHeader, ZSTDnit_block, ZSTDnit_lastBlock, ZSTDnit_checksum, ZSTDnit_skippableFrame } ZSTD_nextInputType_e;
652ZSTDLIB_API ZSTD_nextInputType_e ZSTD_nextInputType(ZSTD_DCtx* dctx);
653
654/**
655 Block functions
656
657 Block functions produce and decode raw zstd blocks, without frame metadata.
Yann Colletcf05b9d2016-07-18 16:52:10 +0200658 Frame metadata cost is typically ~18 bytes, which can be non-negligible for very small blocks (< 100 bytes).
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200659 User will have to take in charge required information to regenerate data, such as compressed and content sizes.
660
661 A few rules to respect :
Yann Colletf246cf52016-07-06 20:30:52 +0200662 - Compressing and decompressing require a context structure
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200663 + Use ZSTD_createCCtx() and ZSTD_createDCtx()
664 - It is necessary to init context before starting
665 + compression : ZSTD_compressBegin()
666 + decompression : ZSTD_decompressBegin()
667 + variants _usingDict() are also allowed
668 + copyCCtx() and copyDCtx() work too
Yann Colletcf05b9d2016-07-18 16:52:10 +0200669 - Block size is limited, it must be <= ZSTD_getBlockSizeMax()
670 + If you need to compress more, cut data into multiple blocks
671 + Consider using the regular ZSTD_compress() instead, as frame metadata costs become negligible when source size is large.
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200672 - When a block is considered not compressible enough, ZSTD_compressBlock() result will be zero.
673 In which case, nothing is produced into `dst`.
674 + User must test for such outcome and deal directly with uncompressed data
Yann Colletf246cf52016-07-06 20:30:52 +0200675 + ZSTD_decompressBlock() doesn't accept uncompressed data as input !!!
676 + In case of multiple successive blocks, decoder must be informed of uncompressed block existence to follow proper history.
677 Use ZSTD_insertBlock() in such a case.
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200678*/
679
Yann Colletcf05b9d2016-07-18 16:52:10 +0200680#define ZSTD_BLOCKSIZE_ABSOLUTEMAX (128 * 1024) /* define, for static allocation */
inikep82057aa2016-10-06 13:23:52 +0200681/*===== Raw zstd block functions =====*/
Yann Colletcf05b9d2016-07-18 16:52:10 +0200682ZSTDLIB_API size_t ZSTD_getBlockSizeMax(ZSTD_CCtx* cctx);
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200683ZSTDLIB_API size_t ZSTD_compressBlock (ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize);
684ZSTDLIB_API size_t ZSTD_decompressBlock(ZSTD_DCtx* dctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize);
Yann Colletd5c5a772016-07-19 15:06:55 +0200685ZSTDLIB_API size_t ZSTD_insertBlock(ZSTD_DCtx* dctx, const void* blockStart, size_t blockSize); /**< insert block into `dctx` history. Useful for uncompressed blocks */
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200686
687
Nick Terrell05c00f22016-11-29 11:46:37 -0800688#endif /* ZSTD_H_ZSTD_STATIC_LINKING_ONLY */
Yann Colletd3b7f8d2016-06-04 19:47:02 +0200689
Yann Collet4856a002015-01-24 01:58:16 +0100690#if defined (__cplusplus)
691}
692#endif