| 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 | |
| Nick Terrell | b42dd27 | 2017-01-27 16:00:19 -0800 | [diff] [blame] | 10 | #ifndef ZSTDMT_COMPRESS_H |
| 11 | #define ZSTDMT_COMPRESS_H |
| 12 | |
| 13 | #if defined (__cplusplus) |
| 14 | extern "C" { |
| 15 | #endif |
| 16 | |
| Yann Collet | 512cbe8 | 2017-01-24 17:02:26 -0800 | [diff] [blame] | 17 | |
| Yann Collet | b44ab82 | 2017-06-20 14:11:49 -0700 | [diff] [blame^] | 18 | /* Note : All prototypes defined in this file are labelled experimental. |
| 19 | * No guarantee of API continuity is provided on any of them. |
| 20 | * In fact, the expectation is that these prototypes will be replaced |
| 21 | * by ZSTD_compress_generic() API in the near future */ |
| Yann Collet | 512cbe8 | 2017-01-24 17:02:26 -0800 | [diff] [blame] | 22 | |
| Yann Collet | 107bcbb | 2017-01-12 01:25:46 +0100 | [diff] [blame] | 23 | /* === Dependencies === */ |
| Yann Collet | b44ab82 | 2017-06-20 14:11:49 -0700 | [diff] [blame^] | 24 | #include <stddef.h> /* size_t */ |
| Yann Collet | 19d670b | 2017-01-19 15:32:07 -0800 | [diff] [blame] | 25 | #define ZSTD_STATIC_LINKING_ONLY /* ZSTD_parameters */ |
| Yann Collet | b44ab82 | 2017-06-20 14:11:49 -0700 | [diff] [blame^] | 26 | #include "zstd.h" /* ZSTD_inBuffer, ZSTD_outBuffer, ZSTDLIB_API */ |
| Yann Collet | 107bcbb | 2017-01-12 01:25:46 +0100 | [diff] [blame] | 27 | |
| 28 | |
| Yann Collet | c4a5a21 | 2017-06-01 17:56:14 -0700 | [diff] [blame] | 29 | /* === Memory management === */ |
| Yann Collet | 3d93f2f | 2016-12-27 07:19:36 +0100 | [diff] [blame] | 30 | typedef struct ZSTDMT_CCtx_s ZSTDMT_CCtx; |
| Yann Collet | 317604e | 2017-01-20 17:18:41 -0800 | [diff] [blame] | 31 | ZSTDLIB_API ZSTDMT_CCtx* ZSTDMT_createCCtx(unsigned nbThreads); |
| Yann Collet | c4a5a21 | 2017-06-01 17:56:14 -0700 | [diff] [blame] | 32 | ZSTDLIB_API ZSTDMT_CCtx* ZSTDMT_createCCtx_advanced(unsigned nbThreads, |
| 33 | ZSTD_customMem cMem); |
| 34 | ZSTDLIB_API size_t ZSTDMT_freeCCtx(ZSTDMT_CCtx* mtctx); |
| Yann Collet | 3d93f2f | 2016-12-27 07:19:36 +0100 | [diff] [blame] | 35 | |
| Yann Collet | c4a5a21 | 2017-06-01 17:56:14 -0700 | [diff] [blame] | 36 | ZSTDLIB_API size_t ZSTDMT_sizeof_CCtx(ZSTDMT_CCtx* mtctx); |
| Yann Collet | c4a5a21 | 2017-06-01 17:56:14 -0700 | [diff] [blame] | 37 | |
| 38 | |
| 39 | /* === Simple buffer-to-butter one-pass function === */ |
| 40 | |
| 41 | ZSTDLIB_API size_t ZSTDMT_compressCCtx(ZSTDMT_CCtx* mtctx, |
| Yann Collet | b877e83 | 2017-06-02 13:47:11 -0700 | [diff] [blame] | 42 | void* dst, size_t dstCapacity, |
| 43 | const void* src, size_t srcSize, |
| 44 | int compressionLevel); |
| Yann Collet | 107bcbb | 2017-01-12 01:25:46 +0100 | [diff] [blame] | 45 | |
| 46 | |
| 47 | /* === Streaming functions === */ |
| 48 | |
| Yann Collet | 512cbe8 | 2017-01-24 17:02:26 -0800 | [diff] [blame] | 49 | ZSTDLIB_API size_t ZSTDMT_initCStream(ZSTDMT_CCtx* mtctx, int compressionLevel); |
| 50 | 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] | 51 | |
| Yann Collet | 512cbe8 | 2017-01-24 17:02:26 -0800 | [diff] [blame] | 52 | 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] | 53 | |
| Yann Collet | 512cbe8 | 2017-01-24 17:02:26 -0800 | [diff] [blame] | 54 | 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()) */ |
| 55 | 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()) */ |
| 56 | |
| 57 | |
| 58 | /* === Advanced functions and parameters === */ |
| 59 | |
| 60 | #ifndef ZSTDMT_SECTION_SIZE_MIN |
| 61 | # define ZSTDMT_SECTION_SIZE_MIN (1U << 20) /* 1 MB - Minimum size of each compression job */ |
| 62 | #endif |
| 63 | |
| Yann Collet | 58e8d79 | 2017-06-02 18:20:48 -0700 | [diff] [blame] | 64 | ZSTDLIB_API size_t ZSTDMT_initCStream_advanced(ZSTDMT_CCtx* mtctx, |
| 65 | const void* dict, size_t dictSize, /* dict can be released after init, a local copy is preserved within zcs */ |
| 66 | ZSTD_parameters params, |
| 67 | unsigned long long pledgedSrcSize); /* pledgedSrcSize is optional and can be zero == unknown */ |
| Yann Collet | 512cbe8 | 2017-01-24 17:02:26 -0800 | [diff] [blame] | 68 | |
| Yann Collet | 8c910d2 | 2017-06-03 01:15:02 -0700 | [diff] [blame] | 69 | ZSTDLIB_API size_t ZSTDMT_initCStream_usingCDict(ZSTDMT_CCtx* mtctx, |
| 70 | const ZSTD_CDict* cdict, |
| 71 | ZSTD_frameParameters fparams, |
| 72 | unsigned long long pledgedSrcSize); /* note : zero means empty */ |
| Yann Collet | ae728a4 | 2017-05-30 17:11:39 -0700 | [diff] [blame] | 73 | |
| Yann Collet | 512cbe8 | 2017-01-24 17:02:26 -0800 | [diff] [blame] | 74 | /* ZSDTMT_parameter : |
| 75 | * List of parameters that can be set using ZSTDMT_setMTCtxParameter() */ |
| Yann Collet | 06e7697 | 2017-01-25 16:39:03 -0800 | [diff] [blame] | 76 | typedef enum { |
| Yann Collet | 8dafb1a | 2017-01-25 17:01:13 -0800 | [diff] [blame] | 77 | ZSTDMT_p_sectionSize, /* size of input "section". Each section is compressed in parallel. 0 means default, which is dynamically determined within compression functions */ |
| Yann Collet | 88df1ae | 2017-01-30 11:00:00 -0800 | [diff] [blame] | 78 | ZSTDMT_p_overlapSectionLog /* Log of overlapped section; 0 == no overlap, 6(default) == use 1/8th of window, >=9 == use full window */ |
| Yann Collet | 06e7697 | 2017-01-25 16:39:03 -0800 | [diff] [blame] | 79 | } ZSDTMT_parameter; |
| Yann Collet | 512cbe8 | 2017-01-24 17:02:26 -0800 | [diff] [blame] | 80 | |
| 81 | /* ZSTDMT_setMTCtxParameter() : |
| 82 | * allow setting individual parameters, one at a time, among a list of enums defined in ZSTDMT_parameter. |
| 83 | * The function must be called typically after ZSTD_createCCtx(). |
| 84 | * Parameters not explicitly reset by ZSTDMT_init*() remain the same in consecutive compression sessions. |
| 85 | * @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] | 86 | ZSTDLIB_API size_t ZSTDMT_setMTCtxParameter(ZSTDMT_CCtx* mtctx, ZSDTMT_parameter parameter, unsigned value); |
| Nick Terrell | b42dd27 | 2017-01-27 16:00:19 -0800 | [diff] [blame] | 87 | |
| 88 | |
| Yann Collet | f35e2de | 2017-06-05 18:32:48 -0700 | [diff] [blame] | 89 | /*! ZSTDMT_compressStream_generic() : |
| 90 | * Combines ZSTDMT_compressStream() with ZSTDMT_flushStream() or ZSTDMT_endStream() |
| Yann Collet | b44ab82 | 2017-06-20 14:11:49 -0700 | [diff] [blame^] | 91 | * depending on flush directive. |
| Yann Collet | f35e2de | 2017-06-05 18:32:48 -0700 | [diff] [blame] | 92 | * @return : minimum amount of data still to be flushed |
| 93 | * 0 if fully flushed |
| 94 | * or an error code */ |
| 95 | ZSTDLIB_API size_t ZSTDMT_compressStream_generic(ZSTDMT_CCtx* mtctx, |
| 96 | ZSTD_outBuffer* output, |
| 97 | ZSTD_inBuffer* input, |
| 98 | ZSTD_EndDirective endOp); |
| 99 | |
| 100 | |
| 101 | |
| Nick Terrell | b42dd27 | 2017-01-27 16:00:19 -0800 | [diff] [blame] | 102 | #if defined (__cplusplus) |
| 103 | } |
| 104 | #endif |
| 105 | |
| 106 | #endif /* ZSTDMT_COMPRESS_H */ |