zstd_v05.h 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. /*
  2. * Copyright (c) Yann Collet, Meta Platforms, Inc. and affiliates.
  3. * All rights reserved.
  4. *
  5. * This source code is licensed under both the BSD-style license (found in the
  6. * LICENSE file in the root directory of this source tree) and the GPLv2 (found
  7. * in the COPYING file in the root directory of this source tree).
  8. * You may select, at your option, one of the above-listed licenses.
  9. */
  10. #ifndef ZSTDv05_H
  11. #define ZSTDv05_H
  12. #if defined (__cplusplus)
  13. extern "C" {
  14. #endif
  15. /*-*************************************
  16. * Dependencies
  17. ***************************************/
  18. #include <stddef.h> /* size_t */
  19. #include "../common/mem.h" /* U64, U32 */
  20. /* *************************************
  21. * Simple functions
  22. ***************************************/
  23. /*! ZSTDv05_decompress() :
  24. `compressedSize` : is the _exact_ size of the compressed blob, otherwise decompression will fail.
  25. `dstCapacity` must be large enough, equal or larger than originalSize.
  26. @return : the number of bytes decompressed into `dst` (<= `dstCapacity`),
  27. or an errorCode if it fails (which can be tested using ZSTDv05_isError()) */
  28. size_t ZSTDv05_decompress( void* dst, size_t dstCapacity,
  29. const void* src, size_t compressedSize);
  30. /**
  31. ZSTDv05_findFrameSizeInfoLegacy() : get the source length and decompressed bound of a ZSTD frame compliant with v0.5.x format
  32. srcSize : The size of the 'src' buffer, at least as large as the frame pointed to by 'src'
  33. cSize (output parameter) : the number of bytes that would be read to decompress this frame
  34. or an error code if it fails (which can be tested using ZSTDv01_isError())
  35. dBound (output parameter) : an upper-bound for the decompressed size of the data in the frame
  36. or ZSTD_CONTENTSIZE_ERROR if an error occurs
  37. note : assumes `cSize` and `dBound` are _not_ NULL.
  38. */
  39. void ZSTDv05_findFrameSizeInfoLegacy(const void *src, size_t srcSize,
  40. size_t* cSize, unsigned long long* dBound);
  41. /* *************************************
  42. * Helper functions
  43. ***************************************/
  44. /* Error Management */
  45. unsigned ZSTDv05_isError(size_t code); /*!< tells if a `size_t` function result is an error code */
  46. const char* ZSTDv05_getErrorName(size_t code); /*!< provides readable string for an error code */
  47. /* *************************************
  48. * Explicit memory management
  49. ***************************************/
  50. /** Decompression context */
  51. typedef struct ZSTDv05_DCtx_s ZSTDv05_DCtx;
  52. ZSTDv05_DCtx* ZSTDv05_createDCtx(void);
  53. size_t ZSTDv05_freeDCtx(ZSTDv05_DCtx* dctx); /*!< @return : errorCode */
  54. /** ZSTDv05_decompressDCtx() :
  55. * Same as ZSTDv05_decompress(), but requires an already allocated ZSTDv05_DCtx (see ZSTDv05_createDCtx()) */
  56. size_t ZSTDv05_decompressDCtx(ZSTDv05_DCtx* ctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize);
  57. /*-***********************
  58. * Simple Dictionary API
  59. *************************/
  60. /*! ZSTDv05_decompress_usingDict() :
  61. * Decompression using a pre-defined Dictionary content (see dictBuilder).
  62. * Dictionary must be identical to the one used during compression, otherwise regenerated data will be corrupted.
  63. * Note : dict can be NULL, in which case, it's equivalent to ZSTDv05_decompressDCtx() */
  64. size_t ZSTDv05_decompress_usingDict(ZSTDv05_DCtx* dctx,
  65. void* dst, size_t dstCapacity,
  66. const void* src, size_t srcSize,
  67. const void* dict,size_t dictSize);
  68. /*-************************
  69. * Advanced Streaming API
  70. ***************************/
  71. typedef enum { ZSTDv05_fast, ZSTDv05_greedy, ZSTDv05_lazy, ZSTDv05_lazy2, ZSTDv05_btlazy2, ZSTDv05_opt, ZSTDv05_btopt } ZSTDv05_strategy;
  72. typedef struct {
  73. U64 srcSize;
  74. U32 windowLog; /* the only useful information to retrieve */
  75. U32 contentLog; U32 hashLog; U32 searchLog; U32 searchLength; U32 targetLength; ZSTDv05_strategy strategy;
  76. } ZSTDv05_parameters;
  77. size_t ZSTDv05_getFrameParams(ZSTDv05_parameters* params, const void* src, size_t srcSize);
  78. size_t ZSTDv05_decompressBegin_usingDict(ZSTDv05_DCtx* dctx, const void* dict, size_t dictSize);
  79. void ZSTDv05_copyDCtx(ZSTDv05_DCtx* dstDCtx, const ZSTDv05_DCtx* srcDCtx);
  80. size_t ZSTDv05_nextSrcSizeToDecompress(ZSTDv05_DCtx* dctx);
  81. size_t ZSTDv05_decompressContinue(ZSTDv05_DCtx* dctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize);
  82. /*-***********************
  83. * ZBUFF API
  84. *************************/
  85. typedef struct ZBUFFv05_DCtx_s ZBUFFv05_DCtx;
  86. ZBUFFv05_DCtx* ZBUFFv05_createDCtx(void);
  87. size_t ZBUFFv05_freeDCtx(ZBUFFv05_DCtx* dctx);
  88. size_t ZBUFFv05_decompressInit(ZBUFFv05_DCtx* dctx);
  89. size_t ZBUFFv05_decompressInitDictionary(ZBUFFv05_DCtx* dctx, const void* dict, size_t dictSize);
  90. size_t ZBUFFv05_decompressContinue(ZBUFFv05_DCtx* dctx,
  91. void* dst, size_t* dstCapacityPtr,
  92. const void* src, size_t* srcSizePtr);
  93. /*-***************************************************************************
  94. * Streaming decompression
  95. *
  96. * A ZBUFFv05_DCtx object is required to track streaming operations.
  97. * Use ZBUFFv05_createDCtx() and ZBUFFv05_freeDCtx() to create/release resources.
  98. * Use ZBUFFv05_decompressInit() to start a new decompression operation,
  99. * or ZBUFFv05_decompressInitDictionary() if decompression requires a dictionary.
  100. * Note that ZBUFFv05_DCtx objects can be reused multiple times.
  101. *
  102. * Use ZBUFFv05_decompressContinue() repetitively to consume your input.
  103. * *srcSizePtr and *dstCapacityPtr can be any size.
  104. * The function will report how many bytes were read or written by modifying *srcSizePtr and *dstCapacityPtr.
  105. * Note that it may not consume the entire input, in which case it's up to the caller to present remaining input again.
  106. * The content of @dst will be overwritten (up to *dstCapacityPtr) at each function call, so save its content if it matters or change @dst.
  107. * @return : a hint to preferred nb of bytes to use as input for next function call (it's only a hint, to help latency)
  108. * or 0 when a frame is completely decoded
  109. * or an error code, which can be tested using ZBUFFv05_isError().
  110. *
  111. * Hint : recommended buffer sizes (not compulsory) : ZBUFFv05_recommendedDInSize() / ZBUFFv05_recommendedDOutSize()
  112. * output : ZBUFFv05_recommendedDOutSize==128 KB block size is the internal unit, it ensures it's always possible to write a full block when decoded.
  113. * input : ZBUFFv05_recommendedDInSize==128Kb+3; just follow indications from ZBUFFv05_decompressContinue() to minimize latency. It should always be <= 128 KB + 3 .
  114. * *******************************************************************************/
  115. /* *************************************
  116. * Tool functions
  117. ***************************************/
  118. unsigned ZBUFFv05_isError(size_t errorCode);
  119. const char* ZBUFFv05_getErrorName(size_t errorCode);
  120. /** Functions below provide recommended buffer sizes for Compression or Decompression operations.
  121. * These sizes are just hints, and tend to offer better latency */
  122. size_t ZBUFFv05_recommendedDInSize(void);
  123. size_t ZBUFFv05_recommendedDOutSize(void);
  124. /*-*************************************
  125. * Constants
  126. ***************************************/
  127. #define ZSTDv05_MAGICNUMBER 0xFD2FB525 /* v0.5 */
  128. #if defined (__cplusplus)
  129. }
  130. #endif
  131. #endif /* ZSTDv0505_H */