1*3117ece4Schristos /* 2*3117ece4Schristos * Copyright (c) Meta Platforms, Inc. and affiliates. 3*3117ece4Schristos * All rights reserved. 4*3117ece4Schristos * 5*3117ece4Schristos * This source code is licensed under both the BSD-style license (found in the 6*3117ece4Schristos * LICENSE file in the root directory of this source tree) and the GPLv2 (found 7*3117ece4Schristos * in the COPYING file in the root directory of this source tree). 8*3117ece4Schristos * You may select, at your option, one of the above-listed licenses. 9*3117ece4Schristos */ 10*3117ece4Schristos 11*3117ece4Schristos /* *************************************************************** 12*3117ece4Schristos * NOTES/WARNINGS 13*3117ece4Schristos ******************************************************************/ 14*3117ece4Schristos /* The streaming API defined here is deprecated. 15*3117ece4Schristos * Consider migrating towards ZSTD_compressStream() API in `zstd.h` 16*3117ece4Schristos * See 'lib/README.md'. 17*3117ece4Schristos *****************************************************************/ 18*3117ece4Schristos 19*3117ece4Schristos 20*3117ece4Schristos #if defined (__cplusplus) 21*3117ece4Schristos extern "C" { 22*3117ece4Schristos #endif 23*3117ece4Schristos 24*3117ece4Schristos #ifndef ZSTD_BUFFERED_H_23987 25*3117ece4Schristos #define ZSTD_BUFFERED_H_23987 26*3117ece4Schristos 27*3117ece4Schristos /* ************************************* 28*3117ece4Schristos * Dependencies 29*3117ece4Schristos ***************************************/ 30*3117ece4Schristos #include <stddef.h> /* size_t */ 31*3117ece4Schristos #include "../zstd.h" /* ZSTD_CStream, ZSTD_DStream, ZSTDLIB_API */ 32*3117ece4Schristos 33*3117ece4Schristos 34*3117ece4Schristos /* *************************************************************** 35*3117ece4Schristos * Compiler specifics 36*3117ece4Schristos *****************************************************************/ 37*3117ece4Schristos /* Deprecation warnings */ 38*3117ece4Schristos /* Should these warnings be a problem, 39*3117ece4Schristos * it is generally possible to disable them, 40*3117ece4Schristos * typically with -Wno-deprecated-declarations for gcc 41*3117ece4Schristos * or _CRT_SECURE_NO_WARNINGS in Visual. 42*3117ece4Schristos * Otherwise, it's also possible to define ZBUFF_DISABLE_DEPRECATE_WARNINGS 43*3117ece4Schristos */ 44*3117ece4Schristos #ifdef ZBUFF_DISABLE_DEPRECATE_WARNINGS 45*3117ece4Schristos # define ZBUFF_DEPRECATED(message) ZSTDLIB_API /* disable deprecation warnings */ 46*3117ece4Schristos #else 47*3117ece4Schristos # if defined (__cplusplus) && (__cplusplus >= 201402) /* C++14 or greater */ 48*3117ece4Schristos # define ZBUFF_DEPRECATED(message) [[deprecated(message)]] ZSTDLIB_API 49*3117ece4Schristos # elif (defined(GNUC) && (GNUC > 4 || (GNUC == 4 && GNUC_MINOR >= 5))) || defined(__clang__) 50*3117ece4Schristos # define ZBUFF_DEPRECATED(message) ZSTDLIB_API __attribute__((deprecated(message))) 51*3117ece4Schristos # elif defined(__GNUC__) && (__GNUC__ >= 3) 52*3117ece4Schristos # define ZBUFF_DEPRECATED(message) ZSTDLIB_API __attribute__((deprecated)) 53*3117ece4Schristos # elif defined(_MSC_VER) 54*3117ece4Schristos # define ZBUFF_DEPRECATED(message) ZSTDLIB_API __declspec(deprecated(message)) 55*3117ece4Schristos # else 56*3117ece4Schristos # pragma message("WARNING: You need to implement ZBUFF_DEPRECATED for this compiler") 57*3117ece4Schristos # define ZBUFF_DEPRECATED(message) ZSTDLIB_API 58*3117ece4Schristos # endif 59*3117ece4Schristos #endif /* ZBUFF_DISABLE_DEPRECATE_WARNINGS */ 60*3117ece4Schristos 61*3117ece4Schristos 62*3117ece4Schristos /* ************************************* 63*3117ece4Schristos * Streaming functions 64*3117ece4Schristos ***************************************/ 65*3117ece4Schristos /* This is the easier "buffered" streaming API, 66*3117ece4Schristos * using an internal buffer to lift all restrictions on user-provided buffers 67*3117ece4Schristos * which can be any size, any place, for both input and output. 68*3117ece4Schristos * ZBUFF and ZSTD are 100% interoperable, 69*3117ece4Schristos * frames created by one can be decoded by the other one */ 70*3117ece4Schristos 71*3117ece4Schristos typedef ZSTD_CStream ZBUFF_CCtx; 72*3117ece4Schristos ZBUFF_DEPRECATED("use ZSTD_createCStream") ZBUFF_CCtx* ZBUFF_createCCtx(void); 73*3117ece4Schristos ZBUFF_DEPRECATED("use ZSTD_freeCStream") size_t ZBUFF_freeCCtx(ZBUFF_CCtx* cctx); 74*3117ece4Schristos 75*3117ece4Schristos ZBUFF_DEPRECATED("use ZSTD_initCStream") size_t ZBUFF_compressInit(ZBUFF_CCtx* cctx, int compressionLevel); 76*3117ece4Schristos ZBUFF_DEPRECATED("use ZSTD_initCStream_usingDict") size_t ZBUFF_compressInitDictionary(ZBUFF_CCtx* cctx, const void* dict, size_t dictSize, int compressionLevel); 77*3117ece4Schristos 78*3117ece4Schristos ZBUFF_DEPRECATED("use ZSTD_compressStream") size_t ZBUFF_compressContinue(ZBUFF_CCtx* cctx, void* dst, size_t* dstCapacityPtr, const void* src, size_t* srcSizePtr); 79*3117ece4Schristos ZBUFF_DEPRECATED("use ZSTD_flushStream") size_t ZBUFF_compressFlush(ZBUFF_CCtx* cctx, void* dst, size_t* dstCapacityPtr); 80*3117ece4Schristos ZBUFF_DEPRECATED("use ZSTD_endStream") size_t ZBUFF_compressEnd(ZBUFF_CCtx* cctx, void* dst, size_t* dstCapacityPtr); 81*3117ece4Schristos 82*3117ece4Schristos /*-************************************************* 83*3117ece4Schristos * Streaming compression - howto 84*3117ece4Schristos * 85*3117ece4Schristos * A ZBUFF_CCtx object is required to track streaming operation. 86*3117ece4Schristos * Use ZBUFF_createCCtx() and ZBUFF_freeCCtx() to create/release resources. 87*3117ece4Schristos * ZBUFF_CCtx objects can be reused multiple times. 88*3117ece4Schristos * 89*3117ece4Schristos * Start by initializing ZBUF_CCtx. 90*3117ece4Schristos * Use ZBUFF_compressInit() to start a new compression operation. 91*3117ece4Schristos * Use ZBUFF_compressInitDictionary() for a compression which requires a dictionary. 92*3117ece4Schristos * 93*3117ece4Schristos * Use ZBUFF_compressContinue() repetitively to consume input stream. 94*3117ece4Schristos * *srcSizePtr and *dstCapacityPtr can be any size. 95*3117ece4Schristos * The function will report how many bytes were read or written within *srcSizePtr and *dstCapacityPtr. 96*3117ece4Schristos * Note that it may not consume the entire input, in which case it's up to the caller to present again remaining data. 97*3117ece4Schristos * The content of `dst` will be overwritten (up to *dstCapacityPtr) at each call, so save its content if it matters or change @dst . 98*3117ece4Schristos * @return : a hint to preferred nb of bytes to use as input for next function call (it's just a hint, to improve latency) 99*3117ece4Schristos * or an error code, which can be tested using ZBUFF_isError(). 100*3117ece4Schristos * 101*3117ece4Schristos * At any moment, it's possible to flush whatever data remains within buffer, using ZBUFF_compressFlush(). 102*3117ece4Schristos * The nb of bytes written into `dst` will be reported into *dstCapacityPtr. 103*3117ece4Schristos * Note that the function cannot output more than *dstCapacityPtr, 104*3117ece4Schristos * therefore, some content might still be left into internal buffer if *dstCapacityPtr is too small. 105*3117ece4Schristos * @return : nb of bytes still present into internal buffer (0 if it's empty) 106*3117ece4Schristos * or an error code, which can be tested using ZBUFF_isError(). 107*3117ece4Schristos * 108*3117ece4Schristos * ZBUFF_compressEnd() instructs to finish a frame. 109*3117ece4Schristos * It will perform a flush and write frame epilogue. 110*3117ece4Schristos * The epilogue is required for decoders to consider a frame completed. 111*3117ece4Schristos * Similar to ZBUFF_compressFlush(), it may not be able to output the entire internal buffer content if *dstCapacityPtr is too small. 112*3117ece4Schristos * In which case, call again ZBUFF_compressFlush() to complete the flush. 113*3117ece4Schristos * @return : nb of bytes still present into internal buffer (0 if it's empty) 114*3117ece4Schristos * or an error code, which can be tested using ZBUFF_isError(). 115*3117ece4Schristos * 116*3117ece4Schristos * Hint : _recommended buffer_ sizes (not compulsory) : ZBUFF_recommendedCInSize() / ZBUFF_recommendedCOutSize() 117*3117ece4Schristos * input : ZBUFF_recommendedCInSize==128 KB block size is the internal unit, use this value to reduce intermediate stages (better latency) 118*3117ece4Schristos * output : ZBUFF_recommendedCOutSize==ZSTD_compressBound(128 KB) + 3 + 3 : ensures it's always possible to write/flush/end a full block. Skip some buffering. 119*3117ece4Schristos * By using both, it ensures that input will be entirely consumed, and output will always contain the result, reducing intermediate buffering. 120*3117ece4Schristos * **************************************************/ 121*3117ece4Schristos 122*3117ece4Schristos 123*3117ece4Schristos typedef ZSTD_DStream ZBUFF_DCtx; 124*3117ece4Schristos ZBUFF_DEPRECATED("use ZSTD_createDStream") ZBUFF_DCtx* ZBUFF_createDCtx(void); 125*3117ece4Schristos ZBUFF_DEPRECATED("use ZSTD_freeDStream") size_t ZBUFF_freeDCtx(ZBUFF_DCtx* dctx); 126*3117ece4Schristos 127*3117ece4Schristos ZBUFF_DEPRECATED("use ZSTD_initDStream") size_t ZBUFF_decompressInit(ZBUFF_DCtx* dctx); 128*3117ece4Schristos ZBUFF_DEPRECATED("use ZSTD_initDStream_usingDict") size_t ZBUFF_decompressInitDictionary(ZBUFF_DCtx* dctx, const void* dict, size_t dictSize); 129*3117ece4Schristos 130*3117ece4Schristos ZBUFF_DEPRECATED("use ZSTD_decompressStream") size_t ZBUFF_decompressContinue(ZBUFF_DCtx* dctx, 131*3117ece4Schristos void* dst, size_t* dstCapacityPtr, 132*3117ece4Schristos const void* src, size_t* srcSizePtr); 133*3117ece4Schristos 134*3117ece4Schristos /*-*************************************************************************** 135*3117ece4Schristos * Streaming decompression howto 136*3117ece4Schristos * 137*3117ece4Schristos * A ZBUFF_DCtx object is required to track streaming operations. 138*3117ece4Schristos * Use ZBUFF_createDCtx() and ZBUFF_freeDCtx() to create/release resources. 139*3117ece4Schristos * Use ZBUFF_decompressInit() to start a new decompression operation, 140*3117ece4Schristos * or ZBUFF_decompressInitDictionary() if decompression requires a dictionary. 141*3117ece4Schristos * Note that ZBUFF_DCtx objects can be re-init multiple times. 142*3117ece4Schristos * 143*3117ece4Schristos * Use ZBUFF_decompressContinue() repetitively to consume your input. 144*3117ece4Schristos * *srcSizePtr and *dstCapacityPtr can be any size. 145*3117ece4Schristos * The function will report how many bytes were read or written by modifying *srcSizePtr and *dstCapacityPtr. 146*3117ece4Schristos * Note that it may not consume the entire input, in which case it's up to the caller to present remaining input again. 147*3117ece4Schristos * The content of `dst` will be overwritten (up to *dstCapacityPtr) at each function call, so save its content if it matters, or change `dst`. 148*3117ece4Schristos * @return : 0 when a frame is completely decoded and fully flushed, 149*3117ece4Schristos * 1 when there is still some data left within internal buffer to flush, 150*3117ece4Schristos * >1 when more data is expected, with value being a suggested next input size (it's just a hint, which helps latency), 151*3117ece4Schristos * or an error code, which can be tested using ZBUFF_isError(). 152*3117ece4Schristos * 153*3117ece4Schristos * Hint : recommended buffer sizes (not compulsory) : ZBUFF_recommendedDInSize() and ZBUFF_recommendedDOutSize() 154*3117ece4Schristos * output : ZBUFF_recommendedDOutSize== 128 KB block size is the internal unit, it ensures it's always possible to write a full block when decoded. 155*3117ece4Schristos * input : ZBUFF_recommendedDInSize == 128KB + 3; 156*3117ece4Schristos * just follow indications from ZBUFF_decompressContinue() to minimize latency. It should always be <= 128 KB + 3 . 157*3117ece4Schristos * *******************************************************************************/ 158*3117ece4Schristos 159*3117ece4Schristos 160*3117ece4Schristos /* ************************************* 161*3117ece4Schristos * Tool functions 162*3117ece4Schristos ***************************************/ 163*3117ece4Schristos ZBUFF_DEPRECATED("use ZSTD_isError") unsigned ZBUFF_isError(size_t errorCode); 164*3117ece4Schristos ZBUFF_DEPRECATED("use ZSTD_getErrorName") const char* ZBUFF_getErrorName(size_t errorCode); 165*3117ece4Schristos 166*3117ece4Schristos /** Functions below provide recommended buffer sizes for Compression or Decompression operations. 167*3117ece4Schristos * These sizes are just hints, they tend to offer better latency */ 168*3117ece4Schristos ZBUFF_DEPRECATED("use ZSTD_CStreamInSize") size_t ZBUFF_recommendedCInSize(void); 169*3117ece4Schristos ZBUFF_DEPRECATED("use ZSTD_CStreamOutSize") size_t ZBUFF_recommendedCOutSize(void); 170*3117ece4Schristos ZBUFF_DEPRECATED("use ZSTD_DStreamInSize") size_t ZBUFF_recommendedDInSize(void); 171*3117ece4Schristos ZBUFF_DEPRECATED("use ZSTD_DStreamOutSize") size_t ZBUFF_recommendedDOutSize(void); 172*3117ece4Schristos 173*3117ece4Schristos #endif /* ZSTD_BUFFERED_H_23987 */ 174*3117ece4Schristos 175*3117ece4Schristos 176*3117ece4Schristos #ifdef ZBUFF_STATIC_LINKING_ONLY 177*3117ece4Schristos #ifndef ZBUFF_STATIC_H_30298098432 178*3117ece4Schristos #define ZBUFF_STATIC_H_30298098432 179*3117ece4Schristos 180*3117ece4Schristos /* ==================================================================================== 181*3117ece4Schristos * The definitions in this section are considered experimental. 182*3117ece4Schristos * They should never be used in association with a dynamic library, as they may change in the future. 183*3117ece4Schristos * They are provided for advanced usages. 184*3117ece4Schristos * Use them only in association with static linking. 185*3117ece4Schristos * ==================================================================================== */ 186*3117ece4Schristos 187*3117ece4Schristos /*--- Dependency ---*/ 188*3117ece4Schristos #define ZSTD_STATIC_LINKING_ONLY /* ZSTD_parameters, ZSTD_customMem */ 189*3117ece4Schristos #include "../zstd.h" 190*3117ece4Schristos 191*3117ece4Schristos 192*3117ece4Schristos /*--- Custom memory allocator ---*/ 193*3117ece4Schristos /*! ZBUFF_createCCtx_advanced() : 194*3117ece4Schristos * Create a ZBUFF compression context using external alloc and free functions */ 195*3117ece4Schristos ZBUFF_DEPRECATED("use ZSTD_createCStream_advanced") ZBUFF_CCtx* ZBUFF_createCCtx_advanced(ZSTD_customMem customMem); 196*3117ece4Schristos 197*3117ece4Schristos /*! ZBUFF_createDCtx_advanced() : 198*3117ece4Schristos * Create a ZBUFF decompression context using external alloc and free functions */ 199*3117ece4Schristos ZBUFF_DEPRECATED("use ZSTD_createDStream_advanced") ZBUFF_DCtx* ZBUFF_createDCtx_advanced(ZSTD_customMem customMem); 200*3117ece4Schristos 201*3117ece4Schristos 202*3117ece4Schristos /*--- Advanced Streaming Initialization ---*/ 203*3117ece4Schristos ZBUFF_DEPRECATED("use ZSTD_initDStream_usingDict") size_t ZBUFF_compressInit_advanced(ZBUFF_CCtx* zbc, 204*3117ece4Schristos const void* dict, size_t dictSize, 205*3117ece4Schristos ZSTD_parameters params, unsigned long long pledgedSrcSize); 206*3117ece4Schristos 207*3117ece4Schristos 208*3117ece4Schristos #endif /* ZBUFF_STATIC_H_30298098432 */ 209*3117ece4Schristos #endif /* ZBUFF_STATIC_LINKING_ONLY */ 210*3117ece4Schristos 211*3117ece4Schristos 212*3117ece4Schristos #if defined (__cplusplus) 213*3117ece4Schristos } 214*3117ece4Schristos #endif 215