zstd_v02.h 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. * Copyright (c) 2016-present, Yann Collet, Facebook, Inc.
  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 ZSTD_V02_H_4174539423
  11. #define ZSTD_V02_H_4174539423
  12. #if defined (__cplusplus)
  13. extern "C" {
  14. #endif
  15. /* *************************************
  16. * Includes
  17. ***************************************/
  18. #include <stddef.h> /* size_t */
  19. /* *************************************
  20. * Simple one-step function
  21. ***************************************/
  22. /**
  23. ZSTDv02_decompress() : decompress ZSTD frames compliant with v0.2.x format
  24. compressedSize : is the exact source size
  25. maxOriginalSize : is the size of the 'dst' buffer, which must be already allocated.
  26. It must be equal or larger than originalSize, otherwise decompression will fail.
  27. return : the number of bytes decompressed into destination buffer (originalSize)
  28. or an errorCode if it fails (which can be tested using ZSTDv01_isError())
  29. */
  30. size_t ZSTDv02_decompress( void* dst, size_t maxOriginalSize,
  31. const void* src, size_t compressedSize);
  32. /**
  33. ZSTDv02_getFrameSrcSize() : get the source length of a ZSTD frame compliant with v0.2.x format
  34. compressedSize : The size of the 'src' buffer, at least as large as the frame pointed to by 'src'
  35. return : the number of bytes that would be read to decompress this frame
  36. or an errorCode if it fails (which can be tested using ZSTDv02_isError())
  37. */
  38. size_t ZSTDv02_findFrameCompressedSize(const void* src, size_t compressedSize);
  39. /**
  40. ZSTDv02_isError() : tells if the result of ZSTDv02_decompress() is an error
  41. */
  42. unsigned ZSTDv02_isError(size_t code);
  43. /* *************************************
  44. * Advanced functions
  45. ***************************************/
  46. typedef struct ZSTDv02_Dctx_s ZSTDv02_Dctx;
  47. ZSTDv02_Dctx* ZSTDv02_createDCtx(void);
  48. size_t ZSTDv02_freeDCtx(ZSTDv02_Dctx* dctx);
  49. size_t ZSTDv02_decompressDCtx(void* ctx,
  50. void* dst, size_t maxOriginalSize,
  51. const void* src, size_t compressedSize);
  52. /* *************************************
  53. * Streaming functions
  54. ***************************************/
  55. size_t ZSTDv02_resetDCtx(ZSTDv02_Dctx* dctx);
  56. size_t ZSTDv02_nextSrcSizeToDecompress(ZSTDv02_Dctx* dctx);
  57. size_t ZSTDv02_decompressContinue(ZSTDv02_Dctx* dctx, void* dst, size_t maxDstSize, const void* src, size_t srcSize);
  58. /**
  59. Use above functions alternatively.
  60. ZSTD_nextSrcSizeToDecompress() tells how much bytes to provide as 'srcSize' to ZSTD_decompressContinue().
  61. ZSTD_decompressContinue() will use previous data blocks to improve compression if they are located prior to current block.
  62. Result is the number of bytes regenerated within 'dst'.
  63. It can be zero, which is not an error; it just means ZSTD_decompressContinue() has decoded some header.
  64. */
  65. /* *************************************
  66. * Prefix - version detection
  67. ***************************************/
  68. #define ZSTDv02_magicNumber 0xFD2FB522 /* v0.2 */
  69. #if defined (__cplusplus)
  70. }
  71. #endif
  72. #endif /* ZSTD_V02_H_4174539423 */