blob: ceff32ef6b4bb09ef782cf33b3ff1f6ccfb62ebc [file] [log] [blame]
cyan49732e3b6592017-01-20 14:00:41 -08001/**
2 * 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 Collet3d93f2f2016-12-27 07:19:36 +01009
Nick Terrellb42dd272017-01-27 16:00:19 -080010 #ifndef ZSTDMT_COMPRESS_H
11 #define ZSTDMT_COMPRESS_H
12
13 #if defined (__cplusplus)
14 extern "C" {
15 #endif
16
Yann Collet512cbe82017-01-24 17:02:26 -080017
Yann Collet58e8d792017-06-02 18:20:48 -070018/* Note : All prototypes defined in this file must be considered experimental.
19 * There is no guarantee of API continuity on any of these prototypes */
Yann Collet512cbe82017-01-24 17:02:26 -080020
Yann Collet107bcbb2017-01-12 01:25:46 +010021/* === Dependencies === */
Yann Collet3d93f2f2016-12-27 07:19:36 +010022#include <stddef.h> /* size_t */
Yann Collet19d670b2017-01-19 15:32:07 -080023#define ZSTD_STATIC_LINKING_ONLY /* ZSTD_parameters */
Yann Collet317604e2017-01-20 17:18:41 -080024#include "zstd.h" /* ZSTD_inBuffer, ZSTD_outBuffer, ZSTDLIB_API */
Yann Collet107bcbb2017-01-12 01:25:46 +010025
26
Yann Colletc4a5a212017-06-01 17:56:14 -070027/* === Memory management === */
Yann Collet3d93f2f2016-12-27 07:19:36 +010028typedef struct ZSTDMT_CCtx_s ZSTDMT_CCtx;
Yann Collet317604e2017-01-20 17:18:41 -080029ZSTDLIB_API ZSTDMT_CCtx* ZSTDMT_createCCtx(unsigned nbThreads);
Yann Colletc4a5a212017-06-01 17:56:14 -070030ZSTDLIB_API ZSTDMT_CCtx* ZSTDMT_createCCtx_advanced(unsigned nbThreads,
31 ZSTD_customMem cMem);
32ZSTDLIB_API size_t ZSTDMT_freeCCtx(ZSTDMT_CCtx* mtctx);
Yann Collet3d93f2f2016-12-27 07:19:36 +010033
Yann Colletc4a5a212017-06-01 17:56:14 -070034ZSTDLIB_API size_t ZSTDMT_sizeof_CCtx(ZSTDMT_CCtx* mtctx);
Yann Colletb877e832017-06-02 13:47:11 -070035ZSTDLIB_API size_t ZSTDMT_estimateCCtxSize(ZSTD_compressionParameters cParams, unsigned nbThreads); /* not ready yet */
Yann Colletc4a5a212017-06-01 17:56:14 -070036
37
38/* === Simple buffer-to-butter one-pass function === */
39
40ZSTDLIB_API size_t ZSTDMT_compressCCtx(ZSTDMT_CCtx* mtctx,
Yann Colletb877e832017-06-02 13:47:11 -070041 void* dst, size_t dstCapacity,
42 const void* src, size_t srcSize,
43 int compressionLevel);
Yann Collet107bcbb2017-01-12 01:25:46 +010044
45
46/* === Streaming functions === */
47
Yann Collet512cbe82017-01-24 17:02:26 -080048ZSTDLIB_API size_t ZSTDMT_initCStream(ZSTDMT_CCtx* mtctx, int compressionLevel);
49ZSTDLIB_API size_t ZSTDMT_resetCStream(ZSTDMT_CCtx* mtctx, unsigned long long pledgedSrcSize); /**< pledgedSrcSize is optional and can be zero == unknown */
Yann Collet19d670b2017-01-19 15:32:07 -080050
Yann Collet512cbe82017-01-24 17:02:26 -080051ZSTDLIB_API size_t ZSTDMT_compressStream(ZSTDMT_CCtx* mtctx, ZSTD_outBuffer* output, ZSTD_inBuffer* input);
Yann Collet19d670b2017-01-19 15:32:07 -080052
Yann Collet512cbe82017-01-24 17:02:26 -080053ZSTDLIB_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()) */
54ZSTDLIB_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()) */
55
56
57/* === Advanced functions and parameters === */
58
59#ifndef ZSTDMT_SECTION_SIZE_MIN
60# define ZSTDMT_SECTION_SIZE_MIN (1U << 20) /* 1 MB - Minimum size of each compression job */
61#endif
62
Yann Collet58e8d792017-06-02 18:20:48 -070063ZSTDLIB_API size_t ZSTDMT_initCStream_advanced(ZSTDMT_CCtx* mtctx,
64 const void* dict, size_t dictSize, /* dict can be released after init, a local copy is preserved within zcs */
65 ZSTD_parameters params,
66 unsigned long long pledgedSrcSize); /* pledgedSrcSize is optional and can be zero == unknown */
Yann Collet512cbe82017-01-24 17:02:26 -080067
Yann Colletae728a42017-05-30 17:11:39 -070068
Yann Collet512cbe82017-01-24 17:02:26 -080069/* ZSDTMT_parameter :
70 * List of parameters that can be set using ZSTDMT_setMTCtxParameter() */
Yann Collet06e76972017-01-25 16:39:03 -080071typedef enum {
Yann Collet8dafb1a2017-01-25 17:01:13 -080072 ZSTDMT_p_sectionSize, /* size of input "section". Each section is compressed in parallel. 0 means default, which is dynamically determined within compression functions */
Yann Collet88df1ae2017-01-30 11:00:00 -080073 ZSTDMT_p_overlapSectionLog /* Log of overlapped section; 0 == no overlap, 6(default) == use 1/8th of window, >=9 == use full window */
Yann Collet06e76972017-01-25 16:39:03 -080074} ZSDTMT_parameter;
Yann Collet512cbe82017-01-24 17:02:26 -080075
76/* ZSTDMT_setMTCtxParameter() :
77 * allow setting individual parameters, one at a time, among a list of enums defined in ZSTDMT_parameter.
78 * The function must be called typically after ZSTD_createCCtx().
79 * Parameters not explicitly reset by ZSTDMT_init*() remain the same in consecutive compression sessions.
80 * @return : 0, or an error code (which can be tested using ZSTD_isError()) */
Yann Colletdc8dae52017-01-24 22:32:12 -080081ZSTDLIB_API size_t ZSTDMT_setMTCtxParameter(ZSTDMT_CCtx* mtctx, ZSDTMT_parameter parameter, unsigned value);
Nick Terrellb42dd272017-01-27 16:00:19 -080082
83
84#if defined (__cplusplus)
85}
86#endif
87
88#endif /* ZSTDMT_COMPRESS_H */