| cyan4973 | 2e3b659 | 2017-01-20 14:00:41 -0800 | [diff] [blame] | 1 | /** |
| 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 Collet | 3d93f2f | 2016-12-27 07:19:36 +0100 | [diff] [blame] | 9 | |
| Yann Collet | 512cbe8 | 2017-01-24 17:02:26 -0800 | [diff] [blame] | 10 | |
| 11 | /* Note : All prototypes defined in this file shall be considered experimental. |
| 12 | * There is no guarantee of API continuity (yet) on any of these prototypes */ |
| 13 | |
| Yann Collet | 107bcbb | 2017-01-12 01:25:46 +0100 | [diff] [blame] | 14 | /* === Dependencies === */ |
| Yann Collet | 3d93f2f | 2016-12-27 07:19:36 +0100 | [diff] [blame] | 15 | #include <stddef.h> /* size_t */ |
| Yann Collet | 19d670b | 2017-01-19 15:32:07 -0800 | [diff] [blame] | 16 | #define ZSTD_STATIC_LINKING_ONLY /* ZSTD_parameters */ |
| Yann Collet | 317604e | 2017-01-20 17:18:41 -0800 | [diff] [blame] | 17 | #include "zstd.h" /* ZSTD_inBuffer, ZSTD_outBuffer, ZSTDLIB_API */ |
| Yann Collet | 107bcbb | 2017-01-12 01:25:46 +0100 | [diff] [blame] | 18 | |
| 19 | |
| 20 | /* === Simple one-pass functions === */ |
| Yann Collet | 3d93f2f | 2016-12-27 07:19:36 +0100 | [diff] [blame] | 21 | |
| 22 | typedef struct ZSTDMT_CCtx_s ZSTDMT_CCtx; |
| Yann Collet | 317604e | 2017-01-20 17:18:41 -0800 | [diff] [blame] | 23 | ZSTDLIB_API ZSTDMT_CCtx* ZSTDMT_createCCtx(unsigned nbThreads); |
| 24 | ZSTDLIB_API size_t ZSTDMT_freeCCtx(ZSTDMT_CCtx* cctx); |
| Yann Collet | 3d93f2f | 2016-12-27 07:19:36 +0100 | [diff] [blame] | 25 | |
| Yann Collet | 317604e | 2017-01-20 17:18:41 -0800 | [diff] [blame] | 26 | ZSTDLIB_API size_t ZSTDMT_compressCCtx(ZSTDMT_CCtx* cctx, |
| Yann Collet | 3d93f2f | 2016-12-27 07:19:36 +0100 | [diff] [blame] | 27 | void* dst, size_t dstCapacity, |
| 28 | const void* src, size_t srcSize, |
| 29 | int compressionLevel); |
| Yann Collet | 107bcbb | 2017-01-12 01:25:46 +0100 | [diff] [blame] | 30 | |
| 31 | |
| 32 | /* === Streaming functions === */ |
| 33 | |
| Yann Collet | 512cbe8 | 2017-01-24 17:02:26 -0800 | [diff] [blame] | 34 | ZSTDLIB_API size_t ZSTDMT_initCStream(ZSTDMT_CCtx* mtctx, int compressionLevel); |
| 35 | ZSTDLIB_API size_t ZSTDMT_resetCStream(ZSTDMT_CCtx* mtctx, unsigned long long pledgedSrcSize); /**< pledgedSrcSize is optional and can be zero == unknown */ |
| Yann Collet | 19d670b | 2017-01-19 15:32:07 -0800 | [diff] [blame] | 36 | |
| Yann Collet | 512cbe8 | 2017-01-24 17:02:26 -0800 | [diff] [blame] | 37 | ZSTDLIB_API size_t ZSTDMT_compressStream(ZSTDMT_CCtx* mtctx, ZSTD_outBuffer* output, ZSTD_inBuffer* input); |
| Yann Collet | 19d670b | 2017-01-19 15:32:07 -0800 | [diff] [blame] | 38 | |
| Yann Collet | 512cbe8 | 2017-01-24 17:02:26 -0800 | [diff] [blame] | 39 | ZSTDLIB_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()) */ |
| 40 | ZSTDLIB_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()) */ |
| 41 | |
| 42 | |
| 43 | /* === Advanced functions and parameters === */ |
| 44 | |
| 45 | #ifndef ZSTDMT_SECTION_SIZE_MIN |
| 46 | # define ZSTDMT_SECTION_SIZE_MIN (1U << 20) /* 1 MB - Minimum size of each compression job */ |
| 47 | #endif |
| 48 | |
| 49 | ZSTDLIB_API size_t ZSTDMT_initCStream_advanced(ZSTDMT_CCtx* mtctx, const void* dict, size_t dictSize, /**< dict can be released after init, a local copy is preserved within zcs */ |
| 50 | ZSTD_parameters params, unsigned long long pledgedSrcSize); /**< pledgedSrcSize is optional and can be zero == unknown */ |
| 51 | |
| 52 | /* ZSDTMT_parameter : |
| 53 | * List of parameters that can be set using ZSTDMT_setMTCtxParameter() */ |
| Yann Collet | 06e7697 | 2017-01-25 16:39:03 -0800 | [diff] [blame] | 54 | typedef enum { |
| Yann Collet | 8dafb1a | 2017-01-25 17:01:13 -0800 | [diff] [blame^] | 55 | ZSTDMT_p_sectionSize, /* size of input "section". Each section is compressed in parallel. 0 means default, which is dynamically determined within compression functions */ |
| 56 | ZSTDMT_p_overlapSectionRLog /* reverse log of overlapped section; 0 == use a complete window, 3(default) == use 1/8th of window, values >=10 means no overlap */ |
| Yann Collet | 06e7697 | 2017-01-25 16:39:03 -0800 | [diff] [blame] | 57 | } ZSDTMT_parameter; |
| Yann Collet | 512cbe8 | 2017-01-24 17:02:26 -0800 | [diff] [blame] | 58 | |
| 59 | /* ZSTDMT_setMTCtxParameter() : |
| 60 | * allow setting individual parameters, one at a time, among a list of enums defined in ZSTDMT_parameter. |
| 61 | * The function must be called typically after ZSTD_createCCtx(). |
| 62 | * Parameters not explicitly reset by ZSTDMT_init*() remain the same in consecutive compression sessions. |
| 63 | * @return : 0, or an error code (which can be tested using ZSTD_isError()) */ |
| Yann Collet | dc8dae5 | 2017-01-24 22:32:12 -0800 | [diff] [blame] | 64 | ZSTDLIB_API size_t ZSTDMT_setMTCtxParameter(ZSTDMT_CCtx* mtctx, ZSDTMT_parameter parameter, unsigned value); |