zstdmt_compress.h 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. /*
  2. * Copyright (c) 2016-2020, 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 ZSTDMT_COMPRESS_H
  11. #define ZSTDMT_COMPRESS_H
  12. #if defined (__cplusplus)
  13. extern "C" {
  14. #endif
  15. /* Note : This is an internal API.
  16. * These APIs used to be exposed with ZSTDLIB_API,
  17. * because it used to be the only way to invoke MT compression.
  18. * Now, it's recommended to use ZSTD_compress2 and ZSTD_compressStream2()
  19. * instead.
  20. *
  21. * If you depend on these APIs and can't switch, then define
  22. * ZSTD_LEGACY_MULTITHREADED_API when making the dynamic library.
  23. * However, we may completely remove these functions in a future
  24. * release, so please switch soon.
  25. *
  26. * This API requires ZSTD_MULTITHREAD to be defined during compilation,
  27. * otherwise ZSTDMT_createCCtx*() will fail.
  28. */
  29. #ifdef ZSTD_LEGACY_MULTITHREADED_API
  30. # define ZSTDMT_API ZSTDLIB_API
  31. #else
  32. # define ZSTDMT_API
  33. #endif
  34. /* === Dependencies === */
  35. #include <stddef.h> /* size_t */
  36. #define ZSTD_STATIC_LINKING_ONLY /* ZSTD_parameters */
  37. #include "../zstd.h" /* ZSTD_inBuffer, ZSTD_outBuffer, ZSTDLIB_API */
  38. /* === Constants === */
  39. #ifndef ZSTDMT_NBWORKERS_MAX
  40. # define ZSTDMT_NBWORKERS_MAX 200
  41. #endif
  42. #ifndef ZSTDMT_JOBSIZE_MIN
  43. # define ZSTDMT_JOBSIZE_MIN (1 MB)
  44. #endif
  45. #define ZSTDMT_JOBLOG_MAX (MEM_32bits() ? 29 : 30)
  46. #define ZSTDMT_JOBSIZE_MAX (MEM_32bits() ? (512 MB) : (1024 MB))
  47. /* === Memory management === */
  48. typedef struct ZSTDMT_CCtx_s ZSTDMT_CCtx;
  49. /* Requires ZSTD_MULTITHREAD to be defined during compilation, otherwise it will return NULL. */
  50. ZSTDMT_API ZSTDMT_CCtx* ZSTDMT_createCCtx(unsigned nbWorkers);
  51. /* Requires ZSTD_MULTITHREAD to be defined during compilation, otherwise it will return NULL. */
  52. ZSTDMT_API ZSTDMT_CCtx* ZSTDMT_createCCtx_advanced(unsigned nbWorkers,
  53. ZSTD_customMem cMem);
  54. ZSTDMT_API size_t ZSTDMT_freeCCtx(ZSTDMT_CCtx* mtctx);
  55. ZSTDMT_API size_t ZSTDMT_sizeof_CCtx(ZSTDMT_CCtx* mtctx);
  56. /* === Simple one-pass compression function === */
  57. ZSTDMT_API size_t ZSTDMT_compressCCtx(ZSTDMT_CCtx* mtctx,
  58. void* dst, size_t dstCapacity,
  59. const void* src, size_t srcSize,
  60. int compressionLevel);
  61. /* === Streaming functions === */
  62. ZSTDMT_API size_t ZSTDMT_initCStream(ZSTDMT_CCtx* mtctx, int compressionLevel);
  63. ZSTDMT_API size_t ZSTDMT_resetCStream(ZSTDMT_CCtx* mtctx, unsigned long long pledgedSrcSize); /**< if srcSize is not known at reset time, use ZSTD_CONTENTSIZE_UNKNOWN. Note: for compatibility with older programs, 0 means the same as ZSTD_CONTENTSIZE_UNKNOWN, but it will change in the future to mean "empty" */
  64. ZSTDMT_API size_t ZSTDMT_nextInputSizeHint(const ZSTDMT_CCtx* mtctx);
  65. ZSTDMT_API size_t ZSTDMT_compressStream(ZSTDMT_CCtx* mtctx, ZSTD_outBuffer* output, ZSTD_inBuffer* input);
  66. ZSTDMT_API size_t ZSTDMT_flushStream(ZSTDMT_CCtx* mtctx, ZSTD_outBuffer* output); /**< @return : 0 == all flushed; >0 : still some data to be flushed; or an error code (ZSTD_isError()) */
  67. ZSTDMT_API size_t ZSTDMT_endStream(ZSTDMT_CCtx* mtctx, ZSTD_outBuffer* output); /**< @return : 0 == all flushed; >0 : still some data to be flushed; or an error code (ZSTD_isError()) */
  68. /* === Advanced functions and parameters === */
  69. ZSTDMT_API size_t ZSTDMT_compress_advanced(ZSTDMT_CCtx* mtctx,
  70. void* dst, size_t dstCapacity,
  71. const void* src, size_t srcSize,
  72. const ZSTD_CDict* cdict,
  73. ZSTD_parameters params,
  74. int overlapLog);
  75. ZSTDMT_API size_t ZSTDMT_initCStream_advanced(ZSTDMT_CCtx* mtctx,
  76. const void* dict, size_t dictSize, /* dict can be released after init, a local copy is preserved within zcs */
  77. ZSTD_parameters params,
  78. unsigned long long pledgedSrcSize); /* pledgedSrcSize is optional and can be zero == unknown */
  79. ZSTDMT_API size_t ZSTDMT_initCStream_usingCDict(ZSTDMT_CCtx* mtctx,
  80. const ZSTD_CDict* cdict,
  81. ZSTD_frameParameters fparams,
  82. unsigned long long pledgedSrcSize); /* note : zero means empty */
  83. /* ZSTDMT_parameter :
  84. * List of parameters that can be set using ZSTDMT_setMTCtxParameter() */
  85. typedef enum {
  86. ZSTDMT_p_jobSize, /* Each job is compressed in parallel. By default, this value is dynamically determined depending on compression parameters. Can be set explicitly here. */
  87. ZSTDMT_p_overlapLog, /* Each job may reload a part of previous job to enhance compression ratio; 0 == no overlap, 6(default) == use 1/8th of window, >=9 == use full window. This is a "sticky" parameter : its value will be re-used on next compression job */
  88. ZSTDMT_p_rsyncable /* Enables rsyncable mode. */
  89. } ZSTDMT_parameter;
  90. /* ZSTDMT_setMTCtxParameter() :
  91. * allow setting individual parameters, one at a time, among a list of enums defined in ZSTDMT_parameter.
  92. * The function must be called typically after ZSTD_createCCtx() but __before ZSTDMT_init*() !__
  93. * Parameters not explicitly reset by ZSTDMT_init*() remain the same in consecutive compression sessions.
  94. * @return : 0, or an error code (which can be tested using ZSTD_isError()) */
  95. ZSTDMT_API size_t ZSTDMT_setMTCtxParameter(ZSTDMT_CCtx* mtctx, ZSTDMT_parameter parameter, int value);
  96. /* ZSTDMT_getMTCtxParameter() :
  97. * Query the ZSTDMT_CCtx for a parameter value.
  98. * @return : 0, or an error code (which can be tested using ZSTD_isError()) */
  99. ZSTDMT_API size_t ZSTDMT_getMTCtxParameter(ZSTDMT_CCtx* mtctx, ZSTDMT_parameter parameter, int* value);
  100. /*! ZSTDMT_compressStream_generic() :
  101. * Combines ZSTDMT_compressStream() with optional ZSTDMT_flushStream() or ZSTDMT_endStream()
  102. * depending on flush directive.
  103. * @return : minimum amount of data still to be flushed
  104. * 0 if fully flushed
  105. * or an error code
  106. * note : needs to be init using any ZSTD_initCStream*() variant */
  107. ZSTDMT_API size_t ZSTDMT_compressStream_generic(ZSTDMT_CCtx* mtctx,
  108. ZSTD_outBuffer* output,
  109. ZSTD_inBuffer* input,
  110. ZSTD_EndDirective endOp);
  111. /* ========================================================
  112. * === Private interface, for use by ZSTD_compress.c ===
  113. * === Not exposed in libzstd. Never invoke directly ===
  114. * ======================================================== */
  115. /*! ZSTDMT_toFlushNow()
  116. * Tell how many bytes are ready to be flushed immediately.
  117. * Probe the oldest active job (not yet entirely flushed) and check its output buffer.
  118. * If return 0, it means there is no active job,
  119. * or, it means oldest job is still active, but everything produced has been flushed so far,
  120. * therefore flushing is limited by speed of oldest job. */
  121. size_t ZSTDMT_toFlushNow(ZSTDMT_CCtx* mtctx);
  122. /*! ZSTDMT_CCtxParam_setMTCtxParameter()
  123. * like ZSTDMT_setMTCtxParameter(), but into a ZSTD_CCtx_Params */
  124. size_t ZSTDMT_CCtxParam_setMTCtxParameter(ZSTD_CCtx_params* params, ZSTDMT_parameter parameter, int value);
  125. /*! ZSTDMT_CCtxParam_setNbWorkers()
  126. * Set nbWorkers, and clamp it.
  127. * Also reset jobSize and overlapLog */
  128. size_t ZSTDMT_CCtxParam_setNbWorkers(ZSTD_CCtx_params* params, unsigned nbWorkers);
  129. /*! ZSTDMT_updateCParams_whileCompressing() :
  130. * Updates only a selected set of compression parameters, to remain compatible with current frame.
  131. * New parameters will be applied to next compression job. */
  132. void ZSTDMT_updateCParams_whileCompressing(ZSTDMT_CCtx* mtctx, const ZSTD_CCtx_params* cctxParams);
  133. /*! ZSTDMT_getFrameProgression():
  134. * tells how much data has been consumed (input) and produced (output) for current frame.
  135. * able to count progression inside worker threads.
  136. */
  137. ZSTD_frameProgression ZSTDMT_getFrameProgression(ZSTDMT_CCtx* mtctx);
  138. /*! ZSTDMT_initCStream_internal() :
  139. * Private use only. Init streaming operation.
  140. * expects params to be valid.
  141. * must receive dict, or cdict, or none, but not both.
  142. * @return : 0, or an error code */
  143. size_t ZSTDMT_initCStream_internal(ZSTDMT_CCtx* zcs,
  144. const void* dict, size_t dictSize, ZSTD_dictContentType_e dictContentType,
  145. const ZSTD_CDict* cdict,
  146. ZSTD_CCtx_params params, unsigned long long pledgedSrcSize);
  147. #if defined (__cplusplus)
  148. }
  149. #endif
  150. #endif /* ZSTDMT_COMPRESS_H */