zstd_compress.c
4040 lines
| 173.4 KiB
| text/x-c
|
CLexer
Gregory Szorc
|
r37513 | /* | ||
Gregory Szorc
|
r30434 | * Copyright (c) 2016-present, Yann Collet, Facebook, Inc. | ||
* All rights reserved. | ||||
* | ||||
Gregory Szorc
|
r37513 | * This source code is licensed under both the BSD-style license (found in the | ||
* LICENSE file in the root directory of this source tree) and the GPLv2 (found | ||||
* in the COPYING file in the root directory of this source tree). | ||||
* You may select, at your option, one of the above-listed licenses. | ||||
Gregory Szorc
|
r30434 | */ | ||
Gregory Szorc
|
r37513 | /*-************************************* | ||
Gregory Szorc
|
r30434 | * Dependencies | ||
***************************************/ | ||||
#include <string.h> /* memset */ | ||||
Gregory Szorc
|
r37513 | #include "cpu.h" | ||
Gregory Szorc
|
r30434 | #include "mem.h" | ||
Gregory Szorc
|
r40157 | #include "hist.h" /* HIST_countFast_wksp */ | ||
Gregory Szorc
|
r30434 | #define FSE_STATIC_LINKING_ONLY /* FSE_encodeSymbol */ | ||
#include "fse.h" | ||||
#define HUF_STATIC_LINKING_ONLY | ||||
#include "huf.h" | ||||
Gregory Szorc
|
r37513 | #include "zstd_compress_internal.h" | ||
#include "zstd_fast.h" | ||||
#include "zstd_double_fast.h" | ||||
#include "zstd_lazy.h" | ||||
#include "zstd_opt.h" | ||||
#include "zstd_ldm.h" | ||||
Gregory Szorc
|
r30434 | |||
/*-************************************* | ||||
* Helper functions | ||||
***************************************/ | ||||
Gregory Szorc
|
r37513 | size_t ZSTD_compressBound(size_t srcSize) { | ||
return ZSTD_COMPRESSBOUND(srcSize); | ||||
Gregory Szorc
|
r30434 | } | ||
/*-************************************* | ||||
* Context memory management | ||||
***************************************/ | ||||
Gregory Szorc
|
r37513 | struct ZSTD_CDict_s { | ||
void* dictBuffer; | ||||
const void* dictContent; | ||||
size_t dictContentSize; | ||||
void* workspace; | ||||
size_t workspaceSize; | ||||
ZSTD_matchState_t matchState; | ||||
ZSTD_compressedBlockState_t cBlockState; | ||||
Gregory Szorc
|
r30434 | ZSTD_customMem customMem; | ||
Gregory Szorc
|
r37513 | U32 dictID; | ||
}; /* typedef'd to ZSTD_CDict within "zstd.h" */ | ||||
Gregory Szorc
|
r30434 | |||
ZSTD_CCtx* ZSTD_createCCtx(void) | ||||
{ | ||||
Gregory Szorc
|
r37513 | return ZSTD_createCCtx_advanced(ZSTD_defaultCMem); | ||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r40157 | static void ZSTD_initCCtx(ZSTD_CCtx* cctx, ZSTD_customMem memManager) | ||
{ | ||||
assert(cctx != NULL); | ||||
memset(cctx, 0, sizeof(*cctx)); | ||||
cctx->customMem = memManager; | ||||
cctx->bmi2 = ZSTD_cpuid_bmi2(ZSTD_cpuid()); | ||||
{ size_t const err = ZSTD_CCtx_resetParameters(cctx); | ||||
assert(!ZSTD_isError(err)); | ||||
(void)err; | ||||
} | ||||
} | ||||
Gregory Szorc
|
r30434 | ZSTD_CCtx* ZSTD_createCCtx_advanced(ZSTD_customMem customMem) | ||
{ | ||||
Gregory Szorc
|
r37513 | ZSTD_STATIC_ASSERT(zcss_init==0); | ||
ZSTD_STATIC_ASSERT(ZSTD_CONTENTSIZE_UNKNOWN==(0ULL - 1)); | ||||
if (!customMem.customAlloc ^ !customMem.customFree) return NULL; | ||||
Gregory Szorc
|
r40157 | { ZSTD_CCtx* const cctx = (ZSTD_CCtx*)ZSTD_malloc(sizeof(ZSTD_CCtx), customMem); | ||
Gregory Szorc
|
r37513 | if (!cctx) return NULL; | ||
Gregory Szorc
|
r40157 | ZSTD_initCCtx(cctx, customMem); | ||
Gregory Szorc
|
r37513 | return cctx; | ||
} | ||||
} | ||||
ZSTD_CCtx* ZSTD_initStaticCCtx(void *workspace, size_t workspaceSize) | ||||
{ | ||||
ZSTD_CCtx* const cctx = (ZSTD_CCtx*) workspace; | ||||
if (workspaceSize <= sizeof(ZSTD_CCtx)) return NULL; /* minimum size */ | ||||
if ((size_t)workspace & 7) return NULL; /* must be 8-aligned */ | ||||
memset(workspace, 0, workspaceSize); /* may be a bit generous, could memset be smaller ? */ | ||||
cctx->staticSize = workspaceSize; | ||||
cctx->workSpace = (void*)(cctx+1); | ||||
cctx->workSpaceSize = workspaceSize - sizeof(ZSTD_CCtx); | ||||
/* statically sized space. entropyWorkspace never moves (but prev/next block swap places) */ | ||||
if (cctx->workSpaceSize < HUF_WORKSPACE_SIZE + 2 * sizeof(ZSTD_compressedBlockState_t)) return NULL; | ||||
assert(((size_t)cctx->workSpace & (sizeof(void*)-1)) == 0); /* ensure correct alignment */ | ||||
cctx->blockState.prevCBlock = (ZSTD_compressedBlockState_t*)cctx->workSpace; | ||||
cctx->blockState.nextCBlock = cctx->blockState.prevCBlock + 1; | ||||
{ | ||||
void* const ptr = cctx->blockState.nextCBlock + 1; | ||||
cctx->entropyWorkspace = (U32*)ptr; | ||||
} | ||||
cctx->bmi2 = ZSTD_cpuid_bmi2(ZSTD_cpuid()); | ||||
Gregory Szorc
|
r30434 | return cctx; | ||
} | ||||
Gregory Szorc
|
r40157 | static void ZSTD_freeCCtxContent(ZSTD_CCtx* cctx) | ||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r40157 | assert(cctx != NULL); | ||
assert(cctx->staticSize == 0); | ||||
Gregory Szorc
|
r37513 | ZSTD_free(cctx->workSpace, cctx->customMem); cctx->workSpace = NULL; | ||
ZSTD_freeCDict(cctx->cdictLocal); cctx->cdictLocal = NULL; | ||||
#ifdef ZSTD_MULTITHREAD | ||||
ZSTDMT_freeCCtx(cctx->mtctx); cctx->mtctx = NULL; | ||||
#endif | ||||
Gregory Szorc
|
r40157 | } | ||
size_t ZSTD_freeCCtx(ZSTD_CCtx* cctx) | ||||
{ | ||||
if (cctx==NULL) return 0; /* support free on NULL */ | ||||
if (cctx->staticSize) return ERROR(memory_allocation); /* not compatible with static CCtx */ | ||||
ZSTD_freeCCtxContent(cctx); | ||||
Gregory Szorc
|
r30434 | ZSTD_free(cctx, cctx->customMem); | ||
Gregory Szorc
|
r40157 | return 0; | ||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r37513 | |||
static size_t ZSTD_sizeof_mtctx(const ZSTD_CCtx* cctx) | ||||
{ | ||||
#ifdef ZSTD_MULTITHREAD | ||||
return ZSTDMT_sizeof_CCtx(cctx->mtctx); | ||||
#else | ||||
(void) cctx; | ||||
return 0; | ||||
#endif | ||||
} | ||||
Gregory Szorc
|
r30434 | size_t ZSTD_sizeof_CCtx(const ZSTD_CCtx* cctx) | ||
{ | ||||
if (cctx==NULL) return 0; /* support sizeof on NULL */ | ||||
Gregory Szorc
|
r37513 | return sizeof(*cctx) + cctx->workSpaceSize | ||
+ ZSTD_sizeof_CDict(cctx->cdictLocal) | ||||
+ ZSTD_sizeof_mtctx(cctx); | ||||
} | ||||
size_t ZSTD_sizeof_CStream(const ZSTD_CStream* zcs) | ||||
{ | ||||
return ZSTD_sizeof_CCtx(zcs); /* same object */ | ||||
} | ||||
/* private API call, for dictBuilder only */ | ||||
const seqStore_t* ZSTD_getSeqStore(const ZSTD_CCtx* ctx) { return &(ctx->seqStore); } | ||||
static ZSTD_CCtx_params ZSTD_makeCCtxParamsFromCParams( | ||||
ZSTD_compressionParameters cParams) | ||||
{ | ||||
ZSTD_CCtx_params cctxParams; | ||||
memset(&cctxParams, 0, sizeof(cctxParams)); | ||||
cctxParams.cParams = cParams; | ||||
cctxParams.compressionLevel = ZSTD_CLEVEL_DEFAULT; /* should not matter, as all cParams are presumed properly defined */ | ||||
assert(!ZSTD_checkCParams(cParams)); | ||||
cctxParams.fParams.contentSizeFlag = 1; | ||||
return cctxParams; | ||||
} | ||||
static ZSTD_CCtx_params* ZSTD_createCCtxParams_advanced( | ||||
ZSTD_customMem customMem) | ||||
{ | ||||
ZSTD_CCtx_params* params; | ||||
if (!customMem.customAlloc ^ !customMem.customFree) return NULL; | ||||
params = (ZSTD_CCtx_params*)ZSTD_calloc( | ||||
sizeof(ZSTD_CCtx_params), customMem); | ||||
if (!params) { return NULL; } | ||||
params->customMem = customMem; | ||||
params->compressionLevel = ZSTD_CLEVEL_DEFAULT; | ||||
params->fParams.contentSizeFlag = 1; | ||||
return params; | ||||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r37513 | ZSTD_CCtx_params* ZSTD_createCCtxParams(void) | ||
{ | ||||
return ZSTD_createCCtxParams_advanced(ZSTD_defaultCMem); | ||||
} | ||||
size_t ZSTD_freeCCtxParams(ZSTD_CCtx_params* params) | ||||
{ | ||||
if (params == NULL) { return 0; } | ||||
ZSTD_free(params, params->customMem); | ||||
return 0; | ||||
} | ||||
size_t ZSTD_CCtxParams_reset(ZSTD_CCtx_params* params) | ||||
{ | ||||
return ZSTD_CCtxParams_init(params, ZSTD_CLEVEL_DEFAULT); | ||||
} | ||||
size_t ZSTD_CCtxParams_init(ZSTD_CCtx_params* cctxParams, int compressionLevel) { | ||||
if (!cctxParams) { return ERROR(GENERIC); } | ||||
memset(cctxParams, 0, sizeof(*cctxParams)); | ||||
cctxParams->compressionLevel = compressionLevel; | ||||
cctxParams->fParams.contentSizeFlag = 1; | ||||
return 0; | ||||
} | ||||
size_t ZSTD_CCtxParams_init_advanced(ZSTD_CCtx_params* cctxParams, ZSTD_parameters params) | ||||
{ | ||||
if (!cctxParams) { return ERROR(GENERIC); } | ||||
CHECK_F( ZSTD_checkCParams(params.cParams) ); | ||||
memset(cctxParams, 0, sizeof(*cctxParams)); | ||||
cctxParams->cParams = params.cParams; | ||||
cctxParams->fParams = params.fParams; | ||||
cctxParams->compressionLevel = ZSTD_CLEVEL_DEFAULT; /* should not matter, as all cParams are presumed properly defined */ | ||||
assert(!ZSTD_checkCParams(params.cParams)); | ||||
return 0; | ||||
} | ||||
/* ZSTD_assignParamsToCCtxParams() : | ||||
* params is presumed valid at this stage */ | ||||
static ZSTD_CCtx_params ZSTD_assignParamsToCCtxParams( | ||||
ZSTD_CCtx_params cctxParams, ZSTD_parameters params) | ||||
{ | ||||
ZSTD_CCtx_params ret = cctxParams; | ||||
ret.cParams = params.cParams; | ||||
ret.fParams = params.fParams; | ||||
ret.compressionLevel = ZSTD_CLEVEL_DEFAULT; /* should not matter, as all cParams are presumed properly defined */ | ||||
assert(!ZSTD_checkCParams(params.cParams)); | ||||
return ret; | ||||
} | ||||
#define CLAMPCHECK(val,min,max) { \ | ||||
if (((val)<(min)) | ((val)>(max))) { \ | ||||
return ERROR(parameter_outOfBound); \ | ||||
} } | ||||
static int ZSTD_isUpdateAuthorized(ZSTD_cParameter param) | ||||
Gregory Szorc
|
r30895 | { | ||
switch(param) | ||||
{ | ||||
Gregory Szorc
|
r37513 | case ZSTD_p_compressionLevel: | ||
case ZSTD_p_hashLog: | ||||
case ZSTD_p_chainLog: | ||||
case ZSTD_p_searchLog: | ||||
case ZSTD_p_minMatch: | ||||
case ZSTD_p_targetLength: | ||||
case ZSTD_p_compressionStrategy: | ||||
return 1; | ||||
case ZSTD_p_format: | ||||
case ZSTD_p_windowLog: | ||||
case ZSTD_p_contentSizeFlag: | ||||
case ZSTD_p_checksumFlag: | ||||
case ZSTD_p_dictIDFlag: | ||||
case ZSTD_p_forceMaxWindow : | ||||
case ZSTD_p_nbWorkers: | ||||
case ZSTD_p_jobSize: | ||||
case ZSTD_p_overlapSizeLog: | ||||
case ZSTD_p_enableLongDistanceMatching: | ||||
case ZSTD_p_ldmHashLog: | ||||
case ZSTD_p_ldmMinMatch: | ||||
case ZSTD_p_ldmBucketSizeLog: | ||||
case ZSTD_p_ldmHashEveryLog: | ||||
Gregory Szorc
|
r40157 | case ZSTD_p_forceAttachDict: | ||
Gregory Szorc
|
r37513 | default: | ||
return 0; | ||||
} | ||||
} | ||||
size_t ZSTD_CCtx_setParameter(ZSTD_CCtx* cctx, ZSTD_cParameter param, unsigned value) | ||||
{ | ||||
DEBUGLOG(4, "ZSTD_CCtx_setParameter (%u, %u)", (U32)param, value); | ||||
if (cctx->streamStage != zcss_init) { | ||||
if (ZSTD_isUpdateAuthorized(param)) { | ||||
cctx->cParamsChanged = 1; | ||||
} else { | ||||
return ERROR(stage_wrong); | ||||
} } | ||||
switch(param) | ||||
{ | ||||
case ZSTD_p_format : | ||||
return ZSTD_CCtxParam_setParameter(&cctx->requestedParams, param, value); | ||||
case ZSTD_p_compressionLevel: | ||||
if (cctx->cdict) return ERROR(stage_wrong); | ||||
return ZSTD_CCtxParam_setParameter(&cctx->requestedParams, param, value); | ||||
case ZSTD_p_windowLog: | ||||
case ZSTD_p_hashLog: | ||||
case ZSTD_p_chainLog: | ||||
case ZSTD_p_searchLog: | ||||
case ZSTD_p_minMatch: | ||||
case ZSTD_p_targetLength: | ||||
case ZSTD_p_compressionStrategy: | ||||
if (cctx->cdict) return ERROR(stage_wrong); | ||||
return ZSTD_CCtxParam_setParameter(&cctx->requestedParams, param, value); | ||||
case ZSTD_p_contentSizeFlag: | ||||
case ZSTD_p_checksumFlag: | ||||
case ZSTD_p_dictIDFlag: | ||||
return ZSTD_CCtxParam_setParameter(&cctx->requestedParams, param, value); | ||||
case ZSTD_p_forceMaxWindow : /* Force back-references to remain < windowSize, | ||||
* even when referencing into Dictionary content. | ||||
* default : 0 when using a CDict, 1 when using a Prefix */ | ||||
return ZSTD_CCtxParam_setParameter(&cctx->requestedParams, param, value); | ||||
Gregory Szorc
|
r40157 | case ZSTD_p_forceAttachDict: | ||
return ZSTD_CCtxParam_setParameter(&cctx->requestedParams, param, value); | ||||
Gregory Szorc
|
r37513 | case ZSTD_p_nbWorkers: | ||
if ((value>0) && cctx->staticSize) { | ||||
return ERROR(parameter_unsupported); /* MT not compatible with static alloc */ | ||||
} | ||||
return ZSTD_CCtxParam_setParameter(&cctx->requestedParams, param, value); | ||||
case ZSTD_p_jobSize: | ||||
case ZSTD_p_overlapSizeLog: | ||||
return ZSTD_CCtxParam_setParameter(&cctx->requestedParams, param, value); | ||||
case ZSTD_p_enableLongDistanceMatching: | ||||
case ZSTD_p_ldmHashLog: | ||||
case ZSTD_p_ldmMinMatch: | ||||
case ZSTD_p_ldmBucketSizeLog: | ||||
case ZSTD_p_ldmHashEveryLog: | ||||
if (cctx->cdict) return ERROR(stage_wrong); | ||||
return ZSTD_CCtxParam_setParameter(&cctx->requestedParams, param, value); | ||||
default: return ERROR(parameter_unsupported); | ||||
Gregory Szorc
|
r30895 | } | ||
} | ||||
Gregory Szorc
|
r37513 | size_t ZSTD_CCtxParam_setParameter( | ||
ZSTD_CCtx_params* CCtxParams, ZSTD_cParameter param, unsigned value) | ||||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r37513 | DEBUGLOG(4, "ZSTD_CCtxParam_setParameter (%u, %u)", (U32)param, value); | ||
switch(param) | ||||
{ | ||||
case ZSTD_p_format : | ||||
if (value > (unsigned)ZSTD_f_zstd1_magicless) | ||||
return ERROR(parameter_unsupported); | ||||
CCtxParams->format = (ZSTD_format_e)value; | ||||
return (size_t)CCtxParams->format; | ||||
case ZSTD_p_compressionLevel : { | ||||
int cLevel = (int)value; /* cast expected to restore negative sign */ | ||||
if (cLevel > ZSTD_maxCLevel()) cLevel = ZSTD_maxCLevel(); | ||||
if (cLevel) { /* 0 : does not change current level */ | ||||
CCtxParams->compressionLevel = cLevel; | ||||
} | ||||
if (CCtxParams->compressionLevel >= 0) return CCtxParams->compressionLevel; | ||||
return 0; /* return type (size_t) cannot represent negative values */ | ||||
} | ||||
case ZSTD_p_windowLog : | ||||
if (value>0) /* 0 => use default */ | ||||
CLAMPCHECK(value, ZSTD_WINDOWLOG_MIN, ZSTD_WINDOWLOG_MAX); | ||||
CCtxParams->cParams.windowLog = value; | ||||
return CCtxParams->cParams.windowLog; | ||||
case ZSTD_p_hashLog : | ||||
if (value>0) /* 0 => use default */ | ||||
CLAMPCHECK(value, ZSTD_HASHLOG_MIN, ZSTD_HASHLOG_MAX); | ||||
CCtxParams->cParams.hashLog = value; | ||||
return CCtxParams->cParams.hashLog; | ||||
case ZSTD_p_chainLog : | ||||
if (value>0) /* 0 => use default */ | ||||
CLAMPCHECK(value, ZSTD_CHAINLOG_MIN, ZSTD_CHAINLOG_MAX); | ||||
CCtxParams->cParams.chainLog = value; | ||||
return CCtxParams->cParams.chainLog; | ||||
case ZSTD_p_searchLog : | ||||
if (value>0) /* 0 => use default */ | ||||
CLAMPCHECK(value, ZSTD_SEARCHLOG_MIN, ZSTD_SEARCHLOG_MAX); | ||||
CCtxParams->cParams.searchLog = value; | ||||
return value; | ||||
case ZSTD_p_minMatch : | ||||
if (value>0) /* 0 => use default */ | ||||
CLAMPCHECK(value, ZSTD_SEARCHLENGTH_MIN, ZSTD_SEARCHLENGTH_MAX); | ||||
CCtxParams->cParams.searchLength = value; | ||||
return CCtxParams->cParams.searchLength; | ||||
case ZSTD_p_targetLength : | ||||
/* all values are valid. 0 => use default */ | ||||
CCtxParams->cParams.targetLength = value; | ||||
return CCtxParams->cParams.targetLength; | ||||
case ZSTD_p_compressionStrategy : | ||||
if (value>0) /* 0 => use default */ | ||||
CLAMPCHECK(value, (unsigned)ZSTD_fast, (unsigned)ZSTD_btultra); | ||||
CCtxParams->cParams.strategy = (ZSTD_strategy)value; | ||||
return (size_t)CCtxParams->cParams.strategy; | ||||
case ZSTD_p_contentSizeFlag : | ||||
/* Content size written in frame header _when known_ (default:1) */ | ||||
DEBUGLOG(4, "set content size flag = %u", (value>0)); | ||||
CCtxParams->fParams.contentSizeFlag = value > 0; | ||||
return CCtxParams->fParams.contentSizeFlag; | ||||
case ZSTD_p_checksumFlag : | ||||
/* A 32-bits content checksum will be calculated and written at end of frame (default:0) */ | ||||
CCtxParams->fParams.checksumFlag = value > 0; | ||||
return CCtxParams->fParams.checksumFlag; | ||||
case ZSTD_p_dictIDFlag : /* When applicable, dictionary's dictID is provided in frame header (default:1) */ | ||||
DEBUGLOG(4, "set dictIDFlag = %u", (value>0)); | ||||
CCtxParams->fParams.noDictIDFlag = !value; | ||||
return !CCtxParams->fParams.noDictIDFlag; | ||||
case ZSTD_p_forceMaxWindow : | ||||
CCtxParams->forceWindow = (value > 0); | ||||
return CCtxParams->forceWindow; | ||||
Gregory Szorc
|
r40157 | case ZSTD_p_forceAttachDict : | ||
CCtxParams->attachDictPref = value ? | ||||
(value > 0 ? ZSTD_dictForceAttach : ZSTD_dictForceCopy) : | ||||
ZSTD_dictDefaultAttach; | ||||
return CCtxParams->attachDictPref; | ||||
Gregory Szorc
|
r37513 | case ZSTD_p_nbWorkers : | ||
#ifndef ZSTD_MULTITHREAD | ||||
if (value>0) return ERROR(parameter_unsupported); | ||||
return 0; | ||||
#else | ||||
return ZSTDMT_CCtxParam_setNbWorkers(CCtxParams, value); | ||||
#endif | ||||
case ZSTD_p_jobSize : | ||||
#ifndef ZSTD_MULTITHREAD | ||||
return ERROR(parameter_unsupported); | ||||
#else | ||||
return ZSTDMT_CCtxParam_setMTCtxParameter(CCtxParams, ZSTDMT_p_jobSize, value); | ||||
#endif | ||||
case ZSTD_p_overlapSizeLog : | ||||
#ifndef ZSTD_MULTITHREAD | ||||
return ERROR(parameter_unsupported); | ||||
#else | ||||
return ZSTDMT_CCtxParam_setMTCtxParameter(CCtxParams, ZSTDMT_p_overlapSectionLog, value); | ||||
#endif | ||||
case ZSTD_p_enableLongDistanceMatching : | ||||
CCtxParams->ldmParams.enableLdm = (value>0); | ||||
return CCtxParams->ldmParams.enableLdm; | ||||
case ZSTD_p_ldmHashLog : | ||||
if (value>0) /* 0 ==> auto */ | ||||
CLAMPCHECK(value, ZSTD_HASHLOG_MIN, ZSTD_HASHLOG_MAX); | ||||
CCtxParams->ldmParams.hashLog = value; | ||||
return CCtxParams->ldmParams.hashLog; | ||||
case ZSTD_p_ldmMinMatch : | ||||
if (value>0) /* 0 ==> default */ | ||||
CLAMPCHECK(value, ZSTD_LDM_MINMATCH_MIN, ZSTD_LDM_MINMATCH_MAX); | ||||
CCtxParams->ldmParams.minMatchLength = value; | ||||
return CCtxParams->ldmParams.minMatchLength; | ||||
case ZSTD_p_ldmBucketSizeLog : | ||||
if (value > ZSTD_LDM_BUCKETSIZELOG_MAX) | ||||
return ERROR(parameter_outOfBound); | ||||
CCtxParams->ldmParams.bucketSizeLog = value; | ||||
return CCtxParams->ldmParams.bucketSizeLog; | ||||
case ZSTD_p_ldmHashEveryLog : | ||||
if (value > ZSTD_WINDOWLOG_MAX - ZSTD_HASHLOG_MIN) | ||||
return ERROR(parameter_outOfBound); | ||||
CCtxParams->ldmParams.hashEveryLog = value; | ||||
return CCtxParams->ldmParams.hashEveryLog; | ||||
default: return ERROR(parameter_unsupported); | ||||
} | ||||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r40157 | size_t ZSTD_CCtx_getParameter(ZSTD_CCtx* cctx, ZSTD_cParameter param, unsigned* value) | ||
{ | ||||
return ZSTD_CCtxParam_getParameter(&cctx->requestedParams, param, value); | ||||
} | ||||
size_t ZSTD_CCtxParam_getParameter( | ||||
ZSTD_CCtx_params* CCtxParams, ZSTD_cParameter param, unsigned* value) | ||||
{ | ||||
switch(param) | ||||
{ | ||||
case ZSTD_p_format : | ||||
*value = CCtxParams->format; | ||||
break; | ||||
case ZSTD_p_compressionLevel : | ||||
*value = CCtxParams->compressionLevel; | ||||
break; | ||||
case ZSTD_p_windowLog : | ||||
*value = CCtxParams->cParams.windowLog; | ||||
break; | ||||
case ZSTD_p_hashLog : | ||||
*value = CCtxParams->cParams.hashLog; | ||||
break; | ||||
case ZSTD_p_chainLog : | ||||
*value = CCtxParams->cParams.chainLog; | ||||
break; | ||||
case ZSTD_p_searchLog : | ||||
*value = CCtxParams->cParams.searchLog; | ||||
break; | ||||
case ZSTD_p_minMatch : | ||||
*value = CCtxParams->cParams.searchLength; | ||||
break; | ||||
case ZSTD_p_targetLength : | ||||
*value = CCtxParams->cParams.targetLength; | ||||
break; | ||||
case ZSTD_p_compressionStrategy : | ||||
*value = (unsigned)CCtxParams->cParams.strategy; | ||||
break; | ||||
case ZSTD_p_contentSizeFlag : | ||||
*value = CCtxParams->fParams.contentSizeFlag; | ||||
break; | ||||
case ZSTD_p_checksumFlag : | ||||
*value = CCtxParams->fParams.checksumFlag; | ||||
break; | ||||
case ZSTD_p_dictIDFlag : | ||||
*value = !CCtxParams->fParams.noDictIDFlag; | ||||
break; | ||||
case ZSTD_p_forceMaxWindow : | ||||
*value = CCtxParams->forceWindow; | ||||
break; | ||||
case ZSTD_p_forceAttachDict : | ||||
*value = CCtxParams->attachDictPref; | ||||
break; | ||||
case ZSTD_p_nbWorkers : | ||||
#ifndef ZSTD_MULTITHREAD | ||||
assert(CCtxParams->nbWorkers == 0); | ||||
#endif | ||||
*value = CCtxParams->nbWorkers; | ||||
break; | ||||
case ZSTD_p_jobSize : | ||||
#ifndef ZSTD_MULTITHREAD | ||||
return ERROR(parameter_unsupported); | ||||
#else | ||||
*value = CCtxParams->jobSize; | ||||
break; | ||||
#endif | ||||
case ZSTD_p_overlapSizeLog : | ||||
#ifndef ZSTD_MULTITHREAD | ||||
return ERROR(parameter_unsupported); | ||||
#else | ||||
*value = CCtxParams->overlapSizeLog; | ||||
break; | ||||
#endif | ||||
case ZSTD_p_enableLongDistanceMatching : | ||||
*value = CCtxParams->ldmParams.enableLdm; | ||||
break; | ||||
case ZSTD_p_ldmHashLog : | ||||
*value = CCtxParams->ldmParams.hashLog; | ||||
break; | ||||
case ZSTD_p_ldmMinMatch : | ||||
*value = CCtxParams->ldmParams.minMatchLength; | ||||
break; | ||||
case ZSTD_p_ldmBucketSizeLog : | ||||
*value = CCtxParams->ldmParams.bucketSizeLog; | ||||
break; | ||||
case ZSTD_p_ldmHashEveryLog : | ||||
*value = CCtxParams->ldmParams.hashEveryLog; | ||||
break; | ||||
default: return ERROR(parameter_unsupported); | ||||
} | ||||
return 0; | ||||
} | ||||
Gregory Szorc
|
r37513 | /** ZSTD_CCtx_setParametersUsingCCtxParams() : | ||
* just applies `params` into `cctx` | ||||
* no action is performed, parameters are merely stored. | ||||
* If ZSTDMT is enabled, parameters are pushed to cctx->mtctx. | ||||
* This is possible even if a compression is ongoing. | ||||
* In which case, new parameters will be applied on the fly, starting with next compression job. | ||||
*/ | ||||
size_t ZSTD_CCtx_setParametersUsingCCtxParams( | ||||
ZSTD_CCtx* cctx, const ZSTD_CCtx_params* params) | ||||
{ | ||||
Gregory Szorc
|
r40157 | DEBUGLOG(4, "ZSTD_CCtx_setParametersUsingCCtxParams"); | ||
Gregory Szorc
|
r37513 | if (cctx->streamStage != zcss_init) return ERROR(stage_wrong); | ||
if (cctx->cdict) return ERROR(stage_wrong); | ||||
cctx->requestedParams = *params; | ||||
return 0; | ||||
} | ||||
ZSTDLIB_API size_t ZSTD_CCtx_setPledgedSrcSize(ZSTD_CCtx* cctx, unsigned long long pledgedSrcSize) | ||||
{ | ||||
DEBUGLOG(4, "ZSTD_CCtx_setPledgedSrcSize to %u bytes", (U32)pledgedSrcSize); | ||||
if (cctx->streamStage != zcss_init) return ERROR(stage_wrong); | ||||
cctx->pledgedSrcSizePlusOne = pledgedSrcSize+1; | ||||
return 0; | ||||
} | ||||
size_t ZSTD_CCtx_loadDictionary_advanced( | ||||
ZSTD_CCtx* cctx, const void* dict, size_t dictSize, | ||||
ZSTD_dictLoadMethod_e dictLoadMethod, ZSTD_dictContentType_e dictContentType) | ||||
{ | ||||
if (cctx->streamStage != zcss_init) return ERROR(stage_wrong); | ||||
if (cctx->staticSize) return ERROR(memory_allocation); /* no malloc for static CCtx */ | ||||
DEBUGLOG(4, "ZSTD_CCtx_loadDictionary_advanced (size: %u)", (U32)dictSize); | ||||
ZSTD_freeCDict(cctx->cdictLocal); /* in case one already exists */ | ||||
if (dict==NULL || dictSize==0) { /* no dictionary mode */ | ||||
cctx->cdictLocal = NULL; | ||||
cctx->cdict = NULL; | ||||
} else { | ||||
ZSTD_compressionParameters const cParams = | ||||
ZSTD_getCParamsFromCCtxParams(&cctx->requestedParams, cctx->pledgedSrcSizePlusOne-1, dictSize); | ||||
cctx->cdictLocal = ZSTD_createCDict_advanced( | ||||
dict, dictSize, | ||||
dictLoadMethod, dictContentType, | ||||
cParams, cctx->customMem); | ||||
cctx->cdict = cctx->cdictLocal; | ||||
if (cctx->cdictLocal == NULL) | ||||
return ERROR(memory_allocation); | ||||
} | ||||
return 0; | ||||
} | ||||
ZSTDLIB_API size_t ZSTD_CCtx_loadDictionary_byReference( | ||||
ZSTD_CCtx* cctx, const void* dict, size_t dictSize) | ||||
{ | ||||
return ZSTD_CCtx_loadDictionary_advanced( | ||||
cctx, dict, dictSize, ZSTD_dlm_byRef, ZSTD_dct_auto); | ||||
} | ||||
ZSTDLIB_API size_t ZSTD_CCtx_loadDictionary(ZSTD_CCtx* cctx, const void* dict, size_t dictSize) | ||||
{ | ||||
return ZSTD_CCtx_loadDictionary_advanced( | ||||
cctx, dict, dictSize, ZSTD_dlm_byCopy, ZSTD_dct_auto); | ||||
} | ||||
size_t ZSTD_CCtx_refCDict(ZSTD_CCtx* cctx, const ZSTD_CDict* cdict) | ||||
{ | ||||
if (cctx->streamStage != zcss_init) return ERROR(stage_wrong); | ||||
cctx->cdict = cdict; | ||||
memset(&cctx->prefixDict, 0, sizeof(cctx->prefixDict)); /* exclusive */ | ||||
return 0; | ||||
} | ||||
size_t ZSTD_CCtx_refPrefix(ZSTD_CCtx* cctx, const void* prefix, size_t prefixSize) | ||||
{ | ||||
return ZSTD_CCtx_refPrefix_advanced(cctx, prefix, prefixSize, ZSTD_dct_rawContent); | ||||
} | ||||
size_t ZSTD_CCtx_refPrefix_advanced( | ||||
ZSTD_CCtx* cctx, const void* prefix, size_t prefixSize, ZSTD_dictContentType_e dictContentType) | ||||
{ | ||||
if (cctx->streamStage != zcss_init) return ERROR(stage_wrong); | ||||
cctx->cdict = NULL; /* prefix discards any prior cdict */ | ||||
cctx->prefixDict.dict = prefix; | ||||
cctx->prefixDict.dictSize = prefixSize; | ||||
cctx->prefixDict.dictContentType = dictContentType; | ||||
return 0; | ||||
} | ||||
Gregory Szorc
|
r40157 | /*! ZSTD_CCtx_reset() : | ||
* Also dumps dictionary */ | ||||
void ZSTD_CCtx_reset(ZSTD_CCtx* cctx) | ||||
Gregory Szorc
|
r37513 | { | ||
cctx->streamStage = zcss_init; | ||||
cctx->pledgedSrcSizePlusOne = 0; | ||||
} | ||||
Gregory Szorc
|
r40157 | size_t ZSTD_CCtx_resetParameters(ZSTD_CCtx* cctx) | ||
Gregory Szorc
|
r37513 | { | ||
Gregory Szorc
|
r40157 | if (cctx->streamStage != zcss_init) return ERROR(stage_wrong); | ||
Gregory Szorc
|
r37513 | cctx->cdict = NULL; | ||
Gregory Szorc
|
r40157 | return ZSTD_CCtxParams_reset(&cctx->requestedParams); | ||
Gregory Szorc
|
r37513 | } | ||
/** ZSTD_checkCParams() : | ||||
control CParam values remain within authorized range. | ||||
Gregory Szorc
|
r30434 | @return : 0, or an error code if one value is beyond authorized range */ | ||
size_t ZSTD_checkCParams(ZSTD_compressionParameters cParams) | ||||
{ | ||||
CLAMPCHECK(cParams.windowLog, ZSTD_WINDOWLOG_MIN, ZSTD_WINDOWLOG_MAX); | ||||
CLAMPCHECK(cParams.chainLog, ZSTD_CHAINLOG_MIN, ZSTD_CHAINLOG_MAX); | ||||
CLAMPCHECK(cParams.hashLog, ZSTD_HASHLOG_MIN, ZSTD_HASHLOG_MAX); | ||||
CLAMPCHECK(cParams.searchLog, ZSTD_SEARCHLOG_MIN, ZSTD_SEARCHLOG_MAX); | ||||
Gregory Szorc
|
r37513 | CLAMPCHECK(cParams.searchLength, ZSTD_SEARCHLENGTH_MIN, ZSTD_SEARCHLENGTH_MAX); | ||
Gregory Szorc
|
r40157 | ZSTD_STATIC_ASSERT(ZSTD_TARGETLENGTH_MIN == 0); | ||
if (cParams.targetLength > ZSTD_TARGETLENGTH_MAX) | ||||
return ERROR(parameter_outOfBound); | ||||
Gregory Szorc
|
r37513 | if ((U32)(cParams.strategy) > (U32)ZSTD_btultra) | ||
return ERROR(parameter_unsupported); | ||||
Gregory Szorc
|
r30434 | return 0; | ||
} | ||||
Gregory Szorc
|
r37513 | /** ZSTD_clampCParams() : | ||
* make CParam values within valid range. | ||||
* @return : valid CParams */ | ||||
Gregory Szorc
|
r40157 | static ZSTD_compressionParameters | ||
ZSTD_clampCParams(ZSTD_compressionParameters cParams) | ||||
Gregory Szorc
|
r37513 | { | ||
# define CLAMP(val,min,max) { \ | ||||
if (val<min) val=min; \ | ||||
else if (val>max) val=max; \ | ||||
} | ||||
CLAMP(cParams.windowLog, ZSTD_WINDOWLOG_MIN, ZSTD_WINDOWLOG_MAX); | ||||
CLAMP(cParams.chainLog, ZSTD_CHAINLOG_MIN, ZSTD_CHAINLOG_MAX); | ||||
CLAMP(cParams.hashLog, ZSTD_HASHLOG_MIN, ZSTD_HASHLOG_MAX); | ||||
CLAMP(cParams.searchLog, ZSTD_SEARCHLOG_MIN, ZSTD_SEARCHLOG_MAX); | ||||
CLAMP(cParams.searchLength, ZSTD_SEARCHLENGTH_MIN, ZSTD_SEARCHLENGTH_MAX); | ||||
Gregory Szorc
|
r40157 | ZSTD_STATIC_ASSERT(ZSTD_TARGETLENGTH_MIN == 0); | ||
if (cParams.targetLength > ZSTD_TARGETLENGTH_MAX) | ||||
cParams.targetLength = ZSTD_TARGETLENGTH_MAX; | ||||
CLAMP(cParams.strategy, ZSTD_fast, ZSTD_btultra); | ||||
Gregory Szorc
|
r37513 | return cParams; | ||
} | ||||
Gregory Szorc
|
r30434 | |||
Gregory Szorc
|
r30822 | /** ZSTD_cycleLog() : | ||
* condition for correct operation : hashLog > 1 */ | ||||
static U32 ZSTD_cycleLog(U32 hashLog, ZSTD_strategy strat) | ||||
{ | ||||
U32 const btScale = ((U32)strat >= (U32)ZSTD_btlazy2); | ||||
return hashLog - btScale; | ||||
} | ||||
Gregory Szorc
|
r37513 | /** ZSTD_adjustCParams_internal() : | ||
Gregory Szorc
|
r30434 | optimize `cPar` for a given input (`srcSize` and `dictSize`). | ||
Gregory Szorc
|
r37513 | mostly downsizing to reduce memory consumption and initialization latency. | ||
Both `srcSize` and `dictSize` are optional (use 0 if unknown). | ||||
Gregory Szorc
|
r40157 | Note : cPar is assumed validated. Use ZSTD_checkCParams() to ensure this condition. */ | ||
static ZSTD_compressionParameters | ||||
ZSTD_adjustCParams_internal(ZSTD_compressionParameters cPar, | ||||
unsigned long long srcSize, | ||||
size_t dictSize) | ||||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r37513 | static const U64 minSrcSize = 513; /* (1<<9) + 1 */ | ||
static const U64 maxWindowResize = 1ULL << (ZSTD_WINDOWLOG_MAX-1); | ||||
assert(ZSTD_checkCParams(cPar)==0); | ||||
if (dictSize && (srcSize+1<2) /* srcSize unknown */ ) | ||||
srcSize = minSrcSize; /* presumed small when there is a dictionary */ | ||||
else if (srcSize == 0) | ||||
srcSize = ZSTD_CONTENTSIZE_UNKNOWN; /* 0 == unknown : presumed large */ | ||||
/* resize windowLog if input is small enough, to use less memory */ | ||||
if ( (srcSize < maxWindowResize) | ||||
&& (dictSize < maxWindowResize) ) { | ||||
U32 const tSize = (U32)(srcSize + dictSize); | ||||
static U32 const hashSizeMin = 1 << ZSTD_HASHLOG_MIN; | ||||
U32 const srcLog = (tSize < hashSizeMin) ? ZSTD_HASHLOG_MIN : | ||||
ZSTD_highbit32(tSize-1) + 1; | ||||
if (cPar.windowLog > srcLog) cPar.windowLog = srcLog; | ||||
} | ||||
Gregory Szorc
|
r40157 | if (cPar.hashLog > cPar.windowLog+1) cPar.hashLog = cPar.windowLog+1; | ||
Gregory Szorc
|
r30822 | { U32 const cycleLog = ZSTD_cycleLog(cPar.chainLog, cPar.strategy); | ||
Gregory Szorc
|
r37513 | if (cycleLog > cPar.windowLog) | ||
cPar.chainLog -= (cycleLog - cPar.windowLog); | ||||
Gregory Szorc
|
r30822 | } | ||
Gregory Szorc
|
r30434 | |||
Gregory Szorc
|
r37513 | if (cPar.windowLog < ZSTD_WINDOWLOG_ABSOLUTEMIN) | ||
cPar.windowLog = ZSTD_WINDOWLOG_ABSOLUTEMIN; /* required for frame header */ | ||||
Gregory Szorc
|
r30434 | |||
return cPar; | ||||
} | ||||
Gregory Szorc
|
r40157 | ZSTD_compressionParameters | ||
ZSTD_adjustCParams(ZSTD_compressionParameters cPar, | ||||
unsigned long long srcSize, | ||||
size_t dictSize) | ||||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r37513 | cPar = ZSTD_clampCParams(cPar); | ||
return ZSTD_adjustCParams_internal(cPar, srcSize, dictSize); | ||||
} | ||||
Gregory Szorc
|
r40157 | ZSTD_compressionParameters ZSTD_getCParamsFromCCtxParams( | ||
const ZSTD_CCtx_params* CCtxParams, U64 srcSizeHint, size_t dictSize) | ||||
{ | ||||
ZSTD_compressionParameters cParams = ZSTD_getCParams(CCtxParams->compressionLevel, srcSizeHint, dictSize); | ||||
if (CCtxParams->ldmParams.enableLdm) cParams.windowLog = ZSTD_LDM_DEFAULT_WINDOW_LOG; | ||||
if (CCtxParams->cParams.windowLog) cParams.windowLog = CCtxParams->cParams.windowLog; | ||||
if (CCtxParams->cParams.hashLog) cParams.hashLog = CCtxParams->cParams.hashLog; | ||||
if (CCtxParams->cParams.chainLog) cParams.chainLog = CCtxParams->cParams.chainLog; | ||||
if (CCtxParams->cParams.searchLog) cParams.searchLog = CCtxParams->cParams.searchLog; | ||||
if (CCtxParams->cParams.searchLength) cParams.searchLength = CCtxParams->cParams.searchLength; | ||||
if (CCtxParams->cParams.targetLength) cParams.targetLength = CCtxParams->cParams.targetLength; | ||||
if (CCtxParams->cParams.strategy) cParams.strategy = CCtxParams->cParams.strategy; | ||||
assert(!ZSTD_checkCParams(cParams)); | ||||
return ZSTD_adjustCParams_internal(cParams, srcSizeHint, dictSize); | ||||
} | ||||
static size_t | ||||
ZSTD_sizeof_matchState(const ZSTD_compressionParameters* const cParams, | ||||
const U32 forCCtx) | ||||
Gregory Szorc
|
r37513 | { | ||
size_t const chainSize = (cParams->strategy == ZSTD_fast) ? 0 : ((size_t)1 << cParams->chainLog); | ||||
size_t const hSize = ((size_t)1) << cParams->hashLog; | ||||
U32 const hashLog3 = (forCCtx && cParams->searchLength==3) ? MIN(ZSTD_HASHLOG3_MAX, cParams->windowLog) : 0; | ||||
Gregory Szorc
|
r30434 | size_t const h3Size = ((size_t)1) << hashLog3; | ||
size_t const tableSpace = (chainSize + hSize + h3Size) * sizeof(U32); | ||||
Gregory Szorc
|
r37513 | size_t const optPotentialSpace = ((MaxML+1) + (MaxLL+1) + (MaxOff+1) + (1<<Litbits)) * sizeof(U32) | ||
+ (ZSTD_OPT_NUM+1) * (sizeof(ZSTD_match_t)+sizeof(ZSTD_optimal_t)); | ||||
size_t const optSpace = (forCCtx && ((cParams->strategy == ZSTD_btopt) || | ||||
(cParams->strategy == ZSTD_btultra))) | ||||
? optPotentialSpace | ||||
: 0; | ||||
DEBUGLOG(4, "chainSize: %u - hSize: %u - h3Size: %u", | ||||
(U32)chainSize, (U32)hSize, (U32)h3Size); | ||||
return tableSpace + optSpace; | ||||
} | ||||
size_t ZSTD_estimateCCtxSize_usingCCtxParams(const ZSTD_CCtx_params* params) | ||||
{ | ||||
/* Estimate CCtx size is supported for single-threaded compression only. */ | ||||
if (params->nbWorkers > 0) { return ERROR(GENERIC); } | ||||
{ ZSTD_compressionParameters const cParams = | ||||
ZSTD_getCParamsFromCCtxParams(params, 0, 0); | ||||
size_t const blockSize = MIN(ZSTD_BLOCKSIZE_MAX, (size_t)1 << cParams.windowLog); | ||||
U32 const divider = (cParams.searchLength==3) ? 3 : 4; | ||||
size_t const maxNbSeq = blockSize / divider; | ||||
Gregory Szorc
|
r40157 | size_t const tokenSpace = WILDCOPY_OVERLENGTH + blockSize + 11*maxNbSeq; | ||
Gregory Szorc
|
r37513 | size_t const entropySpace = HUF_WORKSPACE_SIZE; | ||
size_t const blockStateSpace = 2 * sizeof(ZSTD_compressedBlockState_t); | ||||
size_t const matchStateSize = ZSTD_sizeof_matchState(&cParams, /* forCCtx */ 1); | ||||
size_t const ldmSpace = ZSTD_ldm_getTableSize(params->ldmParams); | ||||
size_t const ldmSeqSpace = ZSTD_ldm_getMaxNbSeq(params->ldmParams, blockSize) * sizeof(rawSeq); | ||||
size_t const neededSpace = entropySpace + blockStateSpace + tokenSpace + | ||||
matchStateSize + ldmSpace + ldmSeqSpace; | ||||
DEBUGLOG(5, "sizeof(ZSTD_CCtx) : %u", (U32)sizeof(ZSTD_CCtx)); | ||||
DEBUGLOG(5, "estimate workSpace : %u", (U32)neededSpace); | ||||
return sizeof(ZSTD_CCtx) + neededSpace; | ||||
} | ||||
} | ||||
size_t ZSTD_estimateCCtxSize_usingCParams(ZSTD_compressionParameters cParams) | ||||
{ | ||||
ZSTD_CCtx_params const params = ZSTD_makeCCtxParamsFromCParams(cParams); | ||||
return ZSTD_estimateCCtxSize_usingCCtxParams(¶ms); | ||||
} | ||||
static size_t ZSTD_estimateCCtxSize_internal(int compressionLevel) | ||||
{ | ||||
ZSTD_compressionParameters const cParams = ZSTD_getCParams(compressionLevel, 0, 0); | ||||
return ZSTD_estimateCCtxSize_usingCParams(cParams); | ||||
} | ||||
size_t ZSTD_estimateCCtxSize(int compressionLevel) | ||||
{ | ||||
int level; | ||||
size_t memBudget = 0; | ||||
for (level=1; level<=compressionLevel; level++) { | ||||
size_t const newMB = ZSTD_estimateCCtxSize_internal(level); | ||||
if (newMB > memBudget) memBudget = newMB; | ||||
} | ||||
return memBudget; | ||||
} | ||||
size_t ZSTD_estimateCStreamSize_usingCCtxParams(const ZSTD_CCtx_params* params) | ||||
{ | ||||
if (params->nbWorkers > 0) { return ERROR(GENERIC); } | ||||
{ size_t const CCtxSize = ZSTD_estimateCCtxSize_usingCCtxParams(params); | ||||
size_t const blockSize = MIN(ZSTD_BLOCKSIZE_MAX, (size_t)1 << params->cParams.windowLog); | ||||
size_t const inBuffSize = ((size_t)1 << params->cParams.windowLog) + blockSize; | ||||
size_t const outBuffSize = ZSTD_compressBound(blockSize) + 1; | ||||
size_t const streamingSize = inBuffSize + outBuffSize; | ||||
return CCtxSize + streamingSize; | ||||
} | ||||
} | ||||
size_t ZSTD_estimateCStreamSize_usingCParams(ZSTD_compressionParameters cParams) | ||||
{ | ||||
ZSTD_CCtx_params const params = ZSTD_makeCCtxParamsFromCParams(cParams); | ||||
return ZSTD_estimateCStreamSize_usingCCtxParams(¶ms); | ||||
} | ||||
Gregory Szorc
|
r40157 | static size_t ZSTD_estimateCStreamSize_internal(int compressionLevel) | ||
{ | ||||
Gregory Szorc
|
r37513 | ZSTD_compressionParameters const cParams = ZSTD_getCParams(compressionLevel, 0, 0); | ||
return ZSTD_estimateCStreamSize_usingCParams(cParams); | ||||
} | ||||
Gregory Szorc
|
r40157 | size_t ZSTD_estimateCStreamSize(int compressionLevel) | ||
{ | ||||
Gregory Szorc
|
r37513 | int level; | ||
size_t memBudget = 0; | ||||
for (level=1; level<=compressionLevel; level++) { | ||||
size_t const newMB = ZSTD_estimateCStreamSize_internal(level); | ||||
if (newMB > memBudget) memBudget = newMB; | ||||
} | ||||
return memBudget; | ||||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r37513 | /* ZSTD_getFrameProgression(): | ||
* tells how much data has been consumed (input) and produced (output) for current frame. | ||||
* able to count progression inside worker threads (non-blocking mode). | ||||
*/ | ||||
ZSTD_frameProgression ZSTD_getFrameProgression(const ZSTD_CCtx* cctx) | ||||
{ | ||||
#ifdef ZSTD_MULTITHREAD | ||||
if (cctx->appliedParams.nbWorkers > 0) { | ||||
return ZSTDMT_getFrameProgression(cctx->mtctx); | ||||
} | ||||
#endif | ||||
{ ZSTD_frameProgression fp; | ||||
size_t const buffered = (cctx->inBuff == NULL) ? 0 : | ||||
cctx->inBuffPos - cctx->inToCompress; | ||||
if (buffered) assert(cctx->inBuffPos >= cctx->inToCompress); | ||||
assert(buffered <= ZSTD_BLOCKSIZE_MAX); | ||||
fp.ingested = cctx->consumedSrcSize + buffered; | ||||
fp.consumed = cctx->consumedSrcSize; | ||||
fp.produced = cctx->producedCSize; | ||||
Gregory Szorc
|
r40157 | fp.flushed = cctx->producedCSize; /* simplified; some data might still be left within streaming output buffer */ | ||
fp.currentJobID = 0; | ||||
fp.nbActiveWorkers = 0; | ||||
Gregory Szorc
|
r37513 | return fp; | ||
} } | ||||
Gregory Szorc
|
r40157 | /*! ZSTD_toFlushNow() | ||
* Only useful for multithreading scenarios currently (nbWorkers >= 1). | ||||
*/ | ||||
size_t ZSTD_toFlushNow(ZSTD_CCtx* cctx) | ||||
{ | ||||
#ifdef ZSTD_MULTITHREAD | ||||
if (cctx->appliedParams.nbWorkers > 0) { | ||||
return ZSTDMT_toFlushNow(cctx->mtctx); | ||||
} | ||||
#endif | ||||
(void)cctx; | ||||
return 0; /* over-simplification; could also check if context is currently running in streaming mode, and in which case, report how many bytes are left to be flushed within output buffer */ | ||||
} | ||||
Gregory Szorc
|
r37513 | |||
static U32 ZSTD_equivalentCParams(ZSTD_compressionParameters cParams1, | ||||
ZSTD_compressionParameters cParams2) | ||||
{ | ||||
return (cParams1.hashLog == cParams2.hashLog) | ||||
& (cParams1.chainLog == cParams2.chainLog) | ||||
& (cParams1.strategy == cParams2.strategy) /* opt parser space */ | ||||
& ((cParams1.searchLength==3) == (cParams2.searchLength==3)); /* hashlog3 space */ | ||||
} | ||||
Gregory Szorc
|
r40157 | static void ZSTD_assertEqualCParams(ZSTD_compressionParameters cParams1, | ||
ZSTD_compressionParameters cParams2) | ||||
{ | ||||
(void)cParams1; | ||||
(void)cParams2; | ||||
assert(cParams1.windowLog == cParams2.windowLog); | ||||
assert(cParams1.chainLog == cParams2.chainLog); | ||||
assert(cParams1.hashLog == cParams2.hashLog); | ||||
assert(cParams1.searchLog == cParams2.searchLog); | ||||
assert(cParams1.searchLength == cParams2.searchLength); | ||||
assert(cParams1.targetLength == cParams2.targetLength); | ||||
assert(cParams1.strategy == cParams2.strategy); | ||||
} | ||||
Gregory Szorc
|
r37513 | /** The parameters are equivalent if ldm is not enabled in both sets or | ||
* all the parameters are equivalent. */ | ||||
static U32 ZSTD_equivalentLdmParams(ldmParams_t ldmParams1, | ||||
ldmParams_t ldmParams2) | ||||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r37513 | return (!ldmParams1.enableLdm && !ldmParams2.enableLdm) || | ||
(ldmParams1.enableLdm == ldmParams2.enableLdm && | ||||
ldmParams1.hashLog == ldmParams2.hashLog && | ||||
ldmParams1.bucketSizeLog == ldmParams2.bucketSizeLog && | ||||
ldmParams1.minMatchLength == ldmParams2.minMatchLength && | ||||
ldmParams1.hashEveryLog == ldmParams2.hashEveryLog); | ||||
} | ||||
typedef enum { ZSTDb_not_buffered, ZSTDb_buffered } ZSTD_buffered_policy_e; | ||||
/* ZSTD_sufficientBuff() : | ||||
* check internal buffers exist for streaming if buffPol == ZSTDb_buffered . | ||||
* Note : they are assumed to be correctly sized if ZSTD_equivalentCParams()==1 */ | ||||
Gregory Szorc
|
r40157 | static U32 ZSTD_sufficientBuff(size_t bufferSize1, size_t maxNbSeq1, | ||
size_t maxNbLit1, | ||||
Gregory Szorc
|
r37513 | ZSTD_buffered_policy_e buffPol2, | ||
ZSTD_compressionParameters cParams2, | ||||
U64 pledgedSrcSize) | ||||
{ | ||||
size_t const windowSize2 = MAX(1, (size_t)MIN(((U64)1 << cParams2.windowLog), pledgedSrcSize)); | ||||
size_t const blockSize2 = MIN(ZSTD_BLOCKSIZE_MAX, windowSize2); | ||||
Gregory Szorc
|
r40157 | size_t const maxNbSeq2 = blockSize2 / ((cParams2.searchLength == 3) ? 3 : 4); | ||
size_t const maxNbLit2 = blockSize2; | ||||
Gregory Szorc
|
r37513 | size_t const neededBufferSize2 = (buffPol2==ZSTDb_buffered) ? windowSize2 + blockSize2 : 0; | ||
Gregory Szorc
|
r40157 | DEBUGLOG(4, "ZSTD_sufficientBuff: is neededBufferSize2=%u <= bufferSize1=%u", | ||
(U32)neededBufferSize2, (U32)bufferSize1); | ||||
DEBUGLOG(4, "ZSTD_sufficientBuff: is maxNbSeq2=%u <= maxNbSeq1=%u", | ||||
(U32)maxNbSeq2, (U32)maxNbSeq1); | ||||
DEBUGLOG(4, "ZSTD_sufficientBuff: is maxNbLit2=%u <= maxNbLit1=%u", | ||||
(U32)maxNbLit2, (U32)maxNbLit1); | ||||
return (maxNbLit2 <= maxNbLit1) | ||||
& (maxNbSeq2 <= maxNbSeq1) | ||||
Gregory Szorc
|
r37513 | & (neededBufferSize2 <= bufferSize1); | ||
} | ||||
/** Equivalence for resetCCtx purposes */ | ||||
static U32 ZSTD_equivalentParams(ZSTD_CCtx_params params1, | ||||
ZSTD_CCtx_params params2, | ||||
Gregory Szorc
|
r40157 | size_t buffSize1, | ||
size_t maxNbSeq1, size_t maxNbLit1, | ||||
Gregory Szorc
|
r37513 | ZSTD_buffered_policy_e buffPol2, | ||
U64 pledgedSrcSize) | ||||
{ | ||||
DEBUGLOG(4, "ZSTD_equivalentParams: pledgedSrcSize=%u", (U32)pledgedSrcSize); | ||||
Gregory Szorc
|
r40157 | if (!ZSTD_equivalentCParams(params1.cParams, params2.cParams)) { | ||
DEBUGLOG(4, "ZSTD_equivalentCParams() == 0"); | ||||
return 0; | ||||
} | ||||
if (!ZSTD_equivalentLdmParams(params1.ldmParams, params2.ldmParams)) { | ||||
DEBUGLOG(4, "ZSTD_equivalentLdmParams() == 0"); | ||||
return 0; | ||||
} | ||||
if (!ZSTD_sufficientBuff(buffSize1, maxNbSeq1, maxNbLit1, buffPol2, | ||||
params2.cParams, pledgedSrcSize)) { | ||||
DEBUGLOG(4, "ZSTD_sufficientBuff() == 0"); | ||||
return 0; | ||||
} | ||||
return 1; | ||||
Gregory Szorc
|
r37513 | } | ||
static void ZSTD_reset_compressedBlockState(ZSTD_compressedBlockState_t* bs) | ||||
{ | ||||
int i; | ||||
for (i = 0; i < ZSTD_REP_NUM; ++i) | ||||
bs->rep[i] = repStartValue[i]; | ||||
Gregory Szorc
|
r40157 | bs->entropy.huf.repeatMode = HUF_repeat_none; | ||
bs->entropy.fse.offcode_repeatMode = FSE_repeat_none; | ||||
bs->entropy.fse.matchlength_repeatMode = FSE_repeat_none; | ||||
bs->entropy.fse.litlength_repeatMode = FSE_repeat_none; | ||||
Gregory Szorc
|
r37513 | } | ||
/*! ZSTD_invalidateMatchState() | ||||
* Invalidate all the matches in the match finder tables. | ||||
* Requires nextSrc and base to be set (can be NULL). | ||||
*/ | ||||
static void ZSTD_invalidateMatchState(ZSTD_matchState_t* ms) | ||||
{ | ||||
ZSTD_window_clear(&ms->window); | ||||
ms->nextToUpdate = ms->window.dictLimit + 1; | ||||
Gregory Szorc
|
r40157 | ms->nextToUpdate3 = ms->window.dictLimit + 1; | ||
Gregory Szorc
|
r37513 | ms->loadedDictEnd = 0; | ||
ms->opt.litLengthSum = 0; /* force reset of btopt stats */ | ||||
Gregory Szorc
|
r40157 | ms->dictMatchState = NULL; | ||
Gregory Szorc
|
r30434 | } | ||
/*! ZSTD_continueCCtx() : | ||||
Gregory Szorc
|
r37513 | * reuse CCtx without reset (note : requires no dictionary) */ | ||
static size_t ZSTD_continueCCtx(ZSTD_CCtx* cctx, ZSTD_CCtx_params params, U64 pledgedSrcSize) | ||||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r37513 | size_t const windowSize = MAX(1, (size_t)MIN(((U64)1 << params.cParams.windowLog), pledgedSrcSize)); | ||
size_t const blockSize = MIN(ZSTD_BLOCKSIZE_MAX, windowSize); | ||||
DEBUGLOG(4, "ZSTD_continueCCtx: re-use context in place"); | ||||
cctx->blockSize = blockSize; /* previous block size could be different even for same windowLog, due to pledgedSrcSize */ | ||||
cctx->appliedParams = params; | ||||
Gregory Szorc
|
r40157 | cctx->blockState.matchState.cParams = params.cParams; | ||
Gregory Szorc
|
r37513 | cctx->pledgedSrcSizePlusOne = pledgedSrcSize+1; | ||
cctx->consumedSrcSize = 0; | ||||
cctx->producedCSize = 0; | ||||
if (pledgedSrcSize == ZSTD_CONTENTSIZE_UNKNOWN) | ||||
cctx->appliedParams.fParams.contentSizeFlag = 0; | ||||
DEBUGLOG(4, "pledged content size : %u ; flag : %u", | ||||
(U32)pledgedSrcSize, cctx->appliedParams.fParams.contentSizeFlag); | ||||
Gregory Szorc
|
r30434 | cctx->stage = ZSTDcs_init; | ||
cctx->dictID = 0; | ||||
Gregory Szorc
|
r37513 | if (params.ldmParams.enableLdm) | ||
ZSTD_window_clear(&cctx->ldmState.window); | ||||
ZSTD_referenceExternalSequences(cctx, NULL, 0); | ||||
ZSTD_invalidateMatchState(&cctx->blockState.matchState); | ||||
ZSTD_reset_compressedBlockState(cctx->blockState.prevCBlock); | ||||
Gregory Szorc
|
r30434 | XXH64_reset(&cctx->xxhState, 0); | ||
return 0; | ||||
} | ||||
Gregory Szorc
|
r37513 | typedef enum { ZSTDcrp_continue, ZSTDcrp_noMemset } ZSTD_compResetPolicy_e; | ||
Gregory Szorc
|
r40157 | static void* | ||
ZSTD_reset_matchState(ZSTD_matchState_t* ms, | ||||
void* ptr, | ||||
const ZSTD_compressionParameters* cParams, | ||||
ZSTD_compResetPolicy_e const crp, U32 const forCCtx) | ||||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r37513 | size_t const chainSize = (cParams->strategy == ZSTD_fast) ? 0 : ((size_t)1 << cParams->chainLog); | ||
size_t const hSize = ((size_t)1) << cParams->hashLog; | ||||
U32 const hashLog3 = (forCCtx && cParams->searchLength==3) ? MIN(ZSTD_HASHLOG3_MAX, cParams->windowLog) : 0; | ||||
size_t const h3Size = ((size_t)1) << hashLog3; | ||||
size_t const tableSpace = (chainSize + hSize + h3Size) * sizeof(U32); | ||||
assert(((size_t)ptr & 3) == 0); | ||||
ms->hashLog3 = hashLog3; | ||||
memset(&ms->window, 0, sizeof(ms->window)); | ||||
Gregory Szorc
|
r40157 | ms->window.dictLimit = 1; /* start from 1, so that 1st position is valid */ | ||
ms->window.lowLimit = 1; /* it ensures first and later CCtx usages compress the same */ | ||||
ms->window.nextSrc = ms->window.base + 1; /* see issue #1241 */ | ||||
Gregory Szorc
|
r37513 | ZSTD_invalidateMatchState(ms); | ||
/* opt parser space */ | ||||
if (forCCtx && ((cParams->strategy == ZSTD_btopt) | (cParams->strategy == ZSTD_btultra))) { | ||||
DEBUGLOG(4, "reserving optimal parser space"); | ||||
ms->opt.litFreq = (U32*)ptr; | ||||
ms->opt.litLengthFreq = ms->opt.litFreq + (1<<Litbits); | ||||
ms->opt.matchLengthFreq = ms->opt.litLengthFreq + (MaxLL+1); | ||||
ms->opt.offCodeFreq = ms->opt.matchLengthFreq + (MaxML+1); | ||||
ptr = ms->opt.offCodeFreq + (MaxOff+1); | ||||
ms->opt.matchTable = (ZSTD_match_t*)ptr; | ||||
ptr = ms->opt.matchTable + ZSTD_OPT_NUM+1; | ||||
ms->opt.priceTable = (ZSTD_optimal_t*)ptr; | ||||
ptr = ms->opt.priceTable + ZSTD_OPT_NUM+1; | ||||
} | ||||
/* table Space */ | ||||
DEBUGLOG(4, "reset table : %u", crp!=ZSTDcrp_noMemset); | ||||
assert(((size_t)ptr & 3) == 0); /* ensure ptr is properly aligned */ | ||||
if (crp!=ZSTDcrp_noMemset) memset(ptr, 0, tableSpace); /* reset tables only */ | ||||
ms->hashTable = (U32*)(ptr); | ||||
ms->chainTable = ms->hashTable + hSize; | ||||
ms->hashTable3 = ms->chainTable + chainSize; | ||||
ptr = ms->hashTable3 + h3Size; | ||||
Gregory Szorc
|
r40157 | ms->cParams = *cParams; | ||
Gregory Szorc
|
r37513 | assert(((size_t)ptr & 3) == 0); | ||
return ptr; | ||||
} | ||||
Gregory Szorc
|
r40157 | #define ZSTD_WORKSPACETOOLARGE_FACTOR 3 /* define "workspace is too large" as this number of times larger than needed */ | ||
#define ZSTD_WORKSPACETOOLARGE_MAXDURATION 128 /* when workspace is continuously too large | ||||
* during at least this number of times, | ||||
* context's memory usage is considered wasteful, | ||||
* because it's sized to handle a worst case scenario which rarely happens. | ||||
* In which case, resize it down to free some memory */ | ||||
Gregory Szorc
|
r37513 | /*! ZSTD_resetCCtx_internal() : | ||
note : `params` are assumed fully validated at this stage */ | ||||
static size_t ZSTD_resetCCtx_internal(ZSTD_CCtx* zc, | ||||
Gregory Szorc
|
r40157 | ZSTD_CCtx_params params, | ||
U64 pledgedSrcSize, | ||||
Gregory Szorc
|
r37513 | ZSTD_compResetPolicy_e const crp, | ||
ZSTD_buffered_policy_e const zbuff) | ||||
{ | ||||
DEBUGLOG(4, "ZSTD_resetCCtx_internal: pledgedSrcSize=%u, wlog=%u", | ||||
(U32)pledgedSrcSize, params.cParams.windowLog); | ||||
assert(!ZSTD_isError(ZSTD_checkCParams(params.cParams))); | ||||
if (crp == ZSTDcrp_continue) { | ||||
if (ZSTD_equivalentParams(zc->appliedParams, params, | ||||
Gregory Szorc
|
r40157 | zc->inBuffSize, | ||
zc->seqStore.maxNbSeq, zc->seqStore.maxNbLit, | ||||
zbuff, pledgedSrcSize)) { | ||||
DEBUGLOG(4, "ZSTD_equivalentParams()==1 -> continue mode (wLog1=%u, blockSize1=%zu)", | ||||
zc->appliedParams.cParams.windowLog, zc->blockSize); | ||||
zc->workSpaceOversizedDuration += (zc->workSpaceOversizedDuration > 0); /* if it was too large, it still is */ | ||||
if (zc->workSpaceOversizedDuration <= ZSTD_WORKSPACETOOLARGE_MAXDURATION) | ||||
return ZSTD_continueCCtx(zc, params, pledgedSrcSize); | ||||
Gregory Szorc
|
r37513 | } } | ||
DEBUGLOG(4, "ZSTD_equivalentParams()==0 -> reset CCtx"); | ||||
if (params.ldmParams.enableLdm) { | ||||
/* Adjust long distance matching parameters */ | ||||
ZSTD_ldm_adjustParameters(¶ms.ldmParams, ¶ms.cParams); | ||||
assert(params.ldmParams.hashLog >= params.ldmParams.bucketSizeLog); | ||||
assert(params.ldmParams.hashEveryLog < 32); | ||||
Gregory Szorc
|
r40157 | zc->ldmState.hashPower = ZSTD_ldm_getHashPower(params.ldmParams.minMatchLength); | ||
Gregory Szorc
|
r37513 | } | ||
{ size_t const windowSize = MAX(1, (size_t)MIN(((U64)1 << params.cParams.windowLog), pledgedSrcSize)); | ||||
size_t const blockSize = MIN(ZSTD_BLOCKSIZE_MAX, windowSize); | ||||
Gregory Szorc
|
r30434 | U32 const divider = (params.cParams.searchLength==3) ? 3 : 4; | ||
size_t const maxNbSeq = blockSize / divider; | ||||
Gregory Szorc
|
r40157 | size_t const tokenSpace = WILDCOPY_OVERLENGTH + blockSize + 11*maxNbSeq; | ||
Gregory Szorc
|
r37513 | size_t const buffOutSize = (zbuff==ZSTDb_buffered) ? ZSTD_compressBound(blockSize)+1 : 0; | ||
size_t const buffInSize = (zbuff==ZSTDb_buffered) ? windowSize + blockSize : 0; | ||||
size_t const matchStateSize = ZSTD_sizeof_matchState(¶ms.cParams, /* forCCtx */ 1); | ||||
size_t const maxNbLdmSeq = ZSTD_ldm_getMaxNbSeq(params.ldmParams, blockSize); | ||||
Gregory Szorc
|
r40157 | void* ptr; /* used to partition workSpace */ | ||
Gregory Szorc
|
r30434 | |||
/* Check if workSpace is large enough, alloc a new one if needed */ | ||||
Gregory Szorc
|
r37513 | { size_t const entropySpace = HUF_WORKSPACE_SIZE; | ||
size_t const blockStateSpace = 2 * sizeof(ZSTD_compressedBlockState_t); | ||||
size_t const bufferSpace = buffInSize + buffOutSize; | ||||
size_t const ldmSpace = ZSTD_ldm_getTableSize(params.ldmParams); | ||||
size_t const ldmSeqSpace = maxNbLdmSeq * sizeof(rawSeq); | ||||
size_t const neededSpace = entropySpace + blockStateSpace + ldmSpace + | ||||
ldmSeqSpace + matchStateSize + tokenSpace + | ||||
bufferSpace; | ||||
Gregory Szorc
|
r40157 | |||
int const workSpaceTooSmall = zc->workSpaceSize < neededSpace; | ||||
int const workSpaceTooLarge = zc->workSpaceSize > ZSTD_WORKSPACETOOLARGE_FACTOR * neededSpace; | ||||
int const workSpaceWasteful = workSpaceTooLarge && (zc->workSpaceOversizedDuration > ZSTD_WORKSPACETOOLARGE_MAXDURATION); | ||||
zc->workSpaceOversizedDuration = workSpaceTooLarge ? zc->workSpaceOversizedDuration+1 : 0; | ||||
DEBUGLOG(4, "Need %zuKB workspace, including %zuKB for match state, and %zuKB for buffers", | ||||
neededSpace>>10, matchStateSize>>10, bufferSpace>>10); | ||||
DEBUGLOG(4, "windowSize: %zu - blockSize: %zu", windowSize, blockSize); | ||||
if (workSpaceTooSmall || workSpaceWasteful) { | ||||
DEBUGLOG(4, "Need to resize workSpaceSize from %zuKB to %zuKB", | ||||
zc->workSpaceSize >> 10, | ||||
neededSpace >> 10); | ||||
Gregory Szorc
|
r37513 | /* static cctx : no resize, error out */ | ||
if (zc->staticSize) return ERROR(memory_allocation); | ||||
zc->workSpaceSize = 0; | ||||
Gregory Szorc
|
r30434 | ZSTD_free(zc->workSpace, zc->customMem); | ||
zc->workSpace = ZSTD_malloc(neededSpace, zc->customMem); | ||||
if (zc->workSpace == NULL) return ERROR(memory_allocation); | ||||
zc->workSpaceSize = neededSpace; | ||||
Gregory Szorc
|
r40157 | zc->workSpaceOversizedDuration = 0; | ||
/* Statically sized space. | ||||
* entropyWorkspace never moves, | ||||
* though prev/next block swap places */ | ||||
Gregory Szorc
|
r37513 | assert(((size_t)zc->workSpace & 3) == 0); /* ensure correct alignment */ | ||
assert(zc->workSpaceSize >= 2 * sizeof(ZSTD_compressedBlockState_t)); | ||||
zc->blockState.prevCBlock = (ZSTD_compressedBlockState_t*)zc->workSpace; | ||||
zc->blockState.nextCBlock = zc->blockState.prevCBlock + 1; | ||||
ptr = zc->blockState.nextCBlock + 1; | ||||
zc->entropyWorkspace = (U32*)ptr; | ||||
Gregory Szorc
|
r30434 | } } | ||
Gregory Szorc
|
r37513 | /* init params */ | ||
zc->appliedParams = params; | ||||
Gregory Szorc
|
r40157 | zc->blockState.matchState.cParams = params.cParams; | ||
Gregory Szorc
|
r37513 | zc->pledgedSrcSizePlusOne = pledgedSrcSize+1; | ||
zc->consumedSrcSize = 0; | ||||
zc->producedCSize = 0; | ||||
if (pledgedSrcSize == ZSTD_CONTENTSIZE_UNKNOWN) | ||||
zc->appliedParams.fParams.contentSizeFlag = 0; | ||||
DEBUGLOG(4, "pledged content size : %u ; flag : %u", | ||||
(U32)pledgedSrcSize, zc->appliedParams.fParams.contentSizeFlag); | ||||
zc->blockSize = blockSize; | ||||
Gregory Szorc
|
r30434 | XXH64_reset(&zc->xxhState, 0); | ||
Gregory Szorc
|
r37513 | zc->stage = ZSTDcs_init; | ||
zc->dictID = 0; | ||||
ZSTD_reset_compressedBlockState(zc->blockState.prevCBlock); | ||||
ptr = zc->entropyWorkspace + HUF_WORKSPACE_SIZE_U32; | ||||
/* ldm hash table */ | ||||
/* initialize bucketOffsets table later for pointer alignment */ | ||||
if (params.ldmParams.enableLdm) { | ||||
size_t const ldmHSize = ((size_t)1) << params.ldmParams.hashLog; | ||||
memset(ptr, 0, ldmHSize * sizeof(ldmEntry_t)); | ||||
assert(((size_t)ptr & 3) == 0); /* ensure ptr is properly aligned */ | ||||
zc->ldmState.hashTable = (ldmEntry_t*)ptr; | ||||
ptr = zc->ldmState.hashTable + ldmHSize; | ||||
zc->ldmSequences = (rawSeq*)ptr; | ||||
ptr = zc->ldmSequences + maxNbLdmSeq; | ||||
zc->maxNbLdmSequences = maxNbLdmSeq; | ||||
memset(&zc->ldmState.window, 0, sizeof(zc->ldmState.window)); | ||||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r37513 | assert(((size_t)ptr & 3) == 0); /* ensure ptr is properly aligned */ | ||
ptr = ZSTD_reset_matchState(&zc->blockState.matchState, ptr, ¶ms.cParams, crp, /* forCCtx */ 1); | ||||
/* sequences storage */ | ||||
Gregory Szorc
|
r40157 | zc->seqStore.maxNbSeq = maxNbSeq; | ||
Gregory Szorc
|
r30434 | zc->seqStore.sequencesStart = (seqDef*)ptr; | ||
ptr = zc->seqStore.sequencesStart + maxNbSeq; | ||||
zc->seqStore.llCode = (BYTE*) ptr; | ||||
zc->seqStore.mlCode = zc->seqStore.llCode + maxNbSeq; | ||||
zc->seqStore.ofCode = zc->seqStore.mlCode + maxNbSeq; | ||||
zc->seqStore.litStart = zc->seqStore.ofCode + maxNbSeq; | ||||
Gregory Szorc
|
r40157 | /* ZSTD_wildcopy() is used to copy into the literals buffer, | ||
* so we have to oversize the buffer by WILDCOPY_OVERLENGTH bytes. | ||||
*/ | ||||
zc->seqStore.maxNbLit = blockSize; | ||||
ptr = zc->seqStore.litStart + blockSize + WILDCOPY_OVERLENGTH; | ||||
Gregory Szorc
|
r37513 | |||
/* ldm bucketOffsets table */ | ||||
if (params.ldmParams.enableLdm) { | ||||
size_t const ldmBucketSize = | ||||
((size_t)1) << (params.ldmParams.hashLog - | ||||
params.ldmParams.bucketSizeLog); | ||||
memset(ptr, 0, ldmBucketSize); | ||||
zc->ldmState.bucketOffsets = (BYTE*)ptr; | ||||
ptr = zc->ldmState.bucketOffsets + ldmBucketSize; | ||||
ZSTD_window_clear(&zc->ldmState.window); | ||||
} | ||||
ZSTD_referenceExternalSequences(zc, NULL, 0); | ||||
/* buffers */ | ||||
zc->inBuffSize = buffInSize; | ||||
zc->inBuff = (char*)ptr; | ||||
zc->outBuffSize = buffOutSize; | ||||
zc->outBuff = zc->inBuff + buffInSize; | ||||
Gregory Szorc
|
r30434 | |||
return 0; | ||||
} | ||||
} | ||||
Gregory Szorc
|
r30895 | /* ZSTD_invalidateRepCodes() : | ||
* ensures next compression will not use repcodes from previous block. | ||||
* Note : only works with regular variant; | ||||
* do not use with extDict variant ! */ | ||||
void ZSTD_invalidateRepCodes(ZSTD_CCtx* cctx) { | ||||
int i; | ||||
Gregory Szorc
|
r37513 | for (i=0; i<ZSTD_REP_NUM; i++) cctx->blockState.prevCBlock->rep[i] = 0; | ||
assert(!ZSTD_window_hasExtDict(cctx->blockState.matchState.window)); | ||||
Gregory Szorc
|
r30895 | } | ||
Gregory Szorc
|
r30434 | |||
Gregory Szorc
|
r40157 | /* These are the approximate sizes for each strategy past which copying the | ||
* dictionary tables into the working context is faster than using them | ||||
* in-place. | ||||
*/ | ||||
static const size_t attachDictSizeCutoffs[(unsigned)ZSTD_btultra+1] = { | ||||
8 KB, /* unused */ | ||||
8 KB, /* ZSTD_fast */ | ||||
16 KB, /* ZSTD_dfast */ | ||||
32 KB, /* ZSTD_greedy */ | ||||
32 KB, /* ZSTD_lazy */ | ||||
32 KB, /* ZSTD_lazy2 */ | ||||
32 KB, /* ZSTD_btlazy2 */ | ||||
32 KB, /* ZSTD_btopt */ | ||||
8 KB /* ZSTD_btultra */ | ||||
}; | ||||
static int ZSTD_shouldAttachDict(const ZSTD_CDict* cdict, | ||||
ZSTD_CCtx_params params, | ||||
U64 pledgedSrcSize) | ||||
{ | ||||
size_t cutoff = attachDictSizeCutoffs[cdict->matchState.cParams.strategy]; | ||||
return ( pledgedSrcSize <= cutoff | ||||
|| pledgedSrcSize == ZSTD_CONTENTSIZE_UNKNOWN | ||||
|| params.attachDictPref == ZSTD_dictForceAttach ) | ||||
&& params.attachDictPref != ZSTD_dictForceCopy | ||||
&& !params.forceWindow; /* dictMatchState isn't correctly | ||||
* handled in _enforceMaxDist */ | ||||
} | ||||
static size_t ZSTD_resetCCtx_byAttachingCDict( | ||||
ZSTD_CCtx* cctx, | ||||
const ZSTD_CDict* cdict, | ||||
ZSTD_CCtx_params params, | ||||
U64 pledgedSrcSize, | ||||
ZSTD_buffered_policy_e zbuff) | ||||
{ | ||||
{ | ||||
const ZSTD_compressionParameters *cdict_cParams = &cdict->matchState.cParams; | ||||
unsigned const windowLog = params.cParams.windowLog; | ||||
assert(windowLog != 0); | ||||
/* Resize working context table params for input only, since the dict | ||||
* has its own tables. */ | ||||
params.cParams = ZSTD_adjustCParams_internal(*cdict_cParams, pledgedSrcSize, 0); | ||||
params.cParams.windowLog = windowLog; | ||||
ZSTD_resetCCtx_internal(cctx, params, pledgedSrcSize, | ||||
ZSTDcrp_continue, zbuff); | ||||
assert(cctx->appliedParams.cParams.strategy == cdict_cParams->strategy); | ||||
} | ||||
{ | ||||
const U32 cdictEnd = (U32)( cdict->matchState.window.nextSrc | ||||
- cdict->matchState.window.base); | ||||
const U32 cdictLen = cdictEnd - cdict->matchState.window.dictLimit; | ||||
if (cdictLen == 0) { | ||||
/* don't even attach dictionaries with no contents */ | ||||
DEBUGLOG(4, "skipping attaching empty dictionary"); | ||||
} else { | ||||
DEBUGLOG(4, "attaching dictionary into context"); | ||||
cctx->blockState.matchState.dictMatchState = &cdict->matchState; | ||||
/* prep working match state so dict matches never have negative indices | ||||
* when they are translated to the working context's index space. */ | ||||
if (cctx->blockState.matchState.window.dictLimit < cdictEnd) { | ||||
cctx->blockState.matchState.window.nextSrc = | ||||
cctx->blockState.matchState.window.base + cdictEnd; | ||||
ZSTD_window_clear(&cctx->blockState.matchState.window); | ||||
} | ||||
cctx->blockState.matchState.loadedDictEnd = cctx->blockState.matchState.window.dictLimit; | ||||
} | ||||
} | ||||
cctx->dictID = cdict->dictID; | ||||
/* copy block state */ | ||||
memcpy(cctx->blockState.prevCBlock, &cdict->cBlockState, sizeof(cdict->cBlockState)); | ||||
return 0; | ||||
} | ||||
static size_t ZSTD_resetCCtx_byCopyingCDict(ZSTD_CCtx* cctx, | ||||
Gregory Szorc
|
r37513 | const ZSTD_CDict* cdict, | ||
Gregory Szorc
|
r40157 | ZSTD_CCtx_params params, | ||
Gregory Szorc
|
r37513 | U64 pledgedSrcSize, | ||
ZSTD_buffered_policy_e zbuff) | ||||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r40157 | const ZSTD_compressionParameters *cdict_cParams = &cdict->matchState.cParams; | ||
DEBUGLOG(4, "copying dictionary into context"); | ||||
{ unsigned const windowLog = params.cParams.windowLog; | ||||
assert(windowLog != 0); | ||||
Gregory Szorc
|
r37513 | /* Copy only compression parameters related to tables. */ | ||
Gregory Szorc
|
r40157 | params.cParams = *cdict_cParams; | ||
params.cParams.windowLog = windowLog; | ||||
Gregory Szorc
|
r37513 | ZSTD_resetCCtx_internal(cctx, params, pledgedSrcSize, | ||
ZSTDcrp_noMemset, zbuff); | ||||
Gregory Szorc
|
r40157 | assert(cctx->appliedParams.cParams.strategy == cdict_cParams->strategy); | ||
assert(cctx->appliedParams.cParams.hashLog == cdict_cParams->hashLog); | ||||
assert(cctx->appliedParams.cParams.chainLog == cdict_cParams->chainLog); | ||||
Gregory Szorc
|
r37513 | } | ||
Gregory Szorc
|
r30434 | |||
/* copy tables */ | ||||
Gregory Szorc
|
r40157 | { size_t const chainSize = (cdict_cParams->strategy == ZSTD_fast) ? 0 : ((size_t)1 << cdict_cParams->chainLog); | ||
size_t const hSize = (size_t)1 << cdict_cParams->hashLog; | ||||
Gregory Szorc
|
r37513 | size_t const tableSpace = (chainSize + hSize) * sizeof(U32); | ||
assert((U32*)cctx->blockState.matchState.chainTable == (U32*)cctx->blockState.matchState.hashTable + hSize); /* chainTable must follow hashTable */ | ||||
assert((U32*)cctx->blockState.matchState.hashTable3 == (U32*)cctx->blockState.matchState.chainTable + chainSize); | ||||
assert((U32*)cdict->matchState.chainTable == (U32*)cdict->matchState.hashTable + hSize); /* chainTable must follow hashTable */ | ||||
assert((U32*)cdict->matchState.hashTable3 == (U32*)cdict->matchState.chainTable + chainSize); | ||||
memcpy(cctx->blockState.matchState.hashTable, cdict->matchState.hashTable, tableSpace); /* presumes all tables follow each other */ | ||||
} | ||||
Gregory Szorc
|
r40157 | |||
Gregory Szorc
|
r37513 | /* Zero the hashTable3, since the cdict never fills it */ | ||
{ size_t const h3Size = (size_t)1 << cctx->blockState.matchState.hashLog3; | ||||
assert(cdict->matchState.hashLog3 == 0); | ||||
memset(cctx->blockState.matchState.hashTable3, 0, h3Size * sizeof(U32)); | ||||
Gregory Szorc
|
r30434 | } | ||
/* copy dictionary offsets */ | ||||
Gregory Szorc
|
r40157 | { ZSTD_matchState_t const* srcMatchState = &cdict->matchState; | ||
Gregory Szorc
|
r37513 | ZSTD_matchState_t* dstMatchState = &cctx->blockState.matchState; | ||
dstMatchState->window = srcMatchState->window; | ||||
dstMatchState->nextToUpdate = srcMatchState->nextToUpdate; | ||||
dstMatchState->nextToUpdate3= srcMatchState->nextToUpdate3; | ||||
dstMatchState->loadedDictEnd= srcMatchState->loadedDictEnd; | ||||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r40157 | |||
Gregory Szorc
|
r37513 | cctx->dictID = cdict->dictID; | ||
/* copy block state */ | ||||
memcpy(cctx->blockState.prevCBlock, &cdict->cBlockState, sizeof(cdict->cBlockState)); | ||||
Gregory Szorc
|
r30434 | |||
return 0; | ||||
} | ||||
Gregory Szorc
|
r40157 | /* We have a choice between copying the dictionary context into the working | ||
* context, or referencing the dictionary context from the working context | ||||
* in-place. We decide here which strategy to use. */ | ||||
static size_t ZSTD_resetCCtx_usingCDict(ZSTD_CCtx* cctx, | ||||
const ZSTD_CDict* cdict, | ||||
ZSTD_CCtx_params params, | ||||
U64 pledgedSrcSize, | ||||
ZSTD_buffered_policy_e zbuff) | ||||
{ | ||||
DEBUGLOG(4, "ZSTD_resetCCtx_usingCDict (pledgedSrcSize=%u)", (U32)pledgedSrcSize); | ||||
if (ZSTD_shouldAttachDict(cdict, params, pledgedSrcSize)) { | ||||
return ZSTD_resetCCtx_byAttachingCDict( | ||||
cctx, cdict, params, pledgedSrcSize, zbuff); | ||||
} else { | ||||
return ZSTD_resetCCtx_byCopyingCDict( | ||||
cctx, cdict, params, pledgedSrcSize, zbuff); | ||||
} | ||||
} | ||||
Gregory Szorc
|
r37513 | /*! ZSTD_copyCCtx_internal() : | ||
* Duplicate an existing context `srcCCtx` into another one `dstCCtx`. | ||||
* Only works during stage ZSTDcs_init (i.e. after creation, but before first call to ZSTD_compressContinue()). | ||||
* The "context", in this case, refers to the hash and chain tables, | ||||
* entropy tables, and dictionary references. | ||||
* `windowLog` value is enforced if != 0, otherwise value is copied from srcCCtx. | ||||
* @return : 0, or an error code */ | ||||
static size_t ZSTD_copyCCtx_internal(ZSTD_CCtx* dstCCtx, | ||||
const ZSTD_CCtx* srcCCtx, | ||||
ZSTD_frameParameters fParams, | ||||
U64 pledgedSrcSize, | ||||
ZSTD_buffered_policy_e zbuff) | ||||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r37513 | DEBUGLOG(5, "ZSTD_copyCCtx_internal"); | ||
if (srcCCtx->stage!=ZSTDcs_init) return ERROR(stage_wrong); | ||||
memcpy(&dstCCtx->customMem, &srcCCtx->customMem, sizeof(ZSTD_customMem)); | ||||
{ ZSTD_CCtx_params params = dstCCtx->requestedParams; | ||||
/* Copy only compression parameters related to tables. */ | ||||
params.cParams = srcCCtx->appliedParams.cParams; | ||||
params.fParams = fParams; | ||||
ZSTD_resetCCtx_internal(dstCCtx, params, pledgedSrcSize, | ||||
ZSTDcrp_noMemset, zbuff); | ||||
assert(dstCCtx->appliedParams.cParams.windowLog == srcCCtx->appliedParams.cParams.windowLog); | ||||
assert(dstCCtx->appliedParams.cParams.strategy == srcCCtx->appliedParams.cParams.strategy); | ||||
assert(dstCCtx->appliedParams.cParams.hashLog == srcCCtx->appliedParams.cParams.hashLog); | ||||
assert(dstCCtx->appliedParams.cParams.chainLog == srcCCtx->appliedParams.cParams.chainLog); | ||||
assert(dstCCtx->blockState.matchState.hashLog3 == srcCCtx->blockState.matchState.hashLog3); | ||||
} | ||||
/* copy tables */ | ||||
{ size_t const chainSize = (srcCCtx->appliedParams.cParams.strategy == ZSTD_fast) ? 0 : ((size_t)1 << srcCCtx->appliedParams.cParams.chainLog); | ||||
size_t const hSize = (size_t)1 << srcCCtx->appliedParams.cParams.hashLog; | ||||
size_t const h3Size = (size_t)1 << srcCCtx->blockState.matchState.hashLog3; | ||||
size_t const tableSpace = (chainSize + hSize + h3Size) * sizeof(U32); | ||||
assert((U32*)dstCCtx->blockState.matchState.chainTable == (U32*)dstCCtx->blockState.matchState.hashTable + hSize); /* chainTable must follow hashTable */ | ||||
assert((U32*)dstCCtx->blockState.matchState.hashTable3 == (U32*)dstCCtx->blockState.matchState.chainTable + chainSize); | ||||
memcpy(dstCCtx->blockState.matchState.hashTable, srcCCtx->blockState.matchState.hashTable, tableSpace); /* presumes all tables follow each other */ | ||||
} | ||||
/* copy dictionary offsets */ | ||||
{ | ||||
Gregory Szorc
|
r40157 | const ZSTD_matchState_t* srcMatchState = &srcCCtx->blockState.matchState; | ||
Gregory Szorc
|
r37513 | ZSTD_matchState_t* dstMatchState = &dstCCtx->blockState.matchState; | ||
dstMatchState->window = srcMatchState->window; | ||||
dstMatchState->nextToUpdate = srcMatchState->nextToUpdate; | ||||
dstMatchState->nextToUpdate3= srcMatchState->nextToUpdate3; | ||||
dstMatchState->loadedDictEnd= srcMatchState->loadedDictEnd; | ||||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r37513 | dstCCtx->dictID = srcCCtx->dictID; | ||
/* copy block state */ | ||||
memcpy(dstCCtx->blockState.prevCBlock, srcCCtx->blockState.prevCBlock, sizeof(*srcCCtx->blockState.prevCBlock)); | ||||
return 0; | ||||
} | ||||
/*! ZSTD_copyCCtx() : | ||||
* Duplicate an existing context `srcCCtx` into another one `dstCCtx`. | ||||
* Only works during stage ZSTDcs_init (i.e. after creation, but before first call to ZSTD_compressContinue()). | ||||
* pledgedSrcSize==0 means "unknown". | ||||
* @return : 0, or an error code */ | ||||
size_t ZSTD_copyCCtx(ZSTD_CCtx* dstCCtx, const ZSTD_CCtx* srcCCtx, unsigned long long pledgedSrcSize) | ||||
{ | ||||
ZSTD_frameParameters fParams = { 1 /*content*/, 0 /*checksum*/, 0 /*noDictID*/ }; | ||||
ZSTD_buffered_policy_e const zbuff = (ZSTD_buffered_policy_e)(srcCCtx->inBuffSize>0); | ||||
ZSTD_STATIC_ASSERT((U32)ZSTDb_buffered==1); | ||||
if (pledgedSrcSize==0) pledgedSrcSize = ZSTD_CONTENTSIZE_UNKNOWN; | ||||
fParams.contentSizeFlag = (pledgedSrcSize != ZSTD_CONTENTSIZE_UNKNOWN); | ||||
return ZSTD_copyCCtx_internal(dstCCtx, srcCCtx, | ||||
fParams, pledgedSrcSize, | ||||
zbuff); | ||||
} | ||||
#define ZSTD_ROWSIZE 16 | ||||
/*! ZSTD_reduceTable() : | ||||
* reduce table indexes by `reducerValue`, or squash to zero. | ||||
* PreserveMark preserves "unsorted mark" for btlazy2 strategy. | ||||
* It must be set to a clear 0/1 value, to remove branch during inlining. | ||||
* Presume table size is a multiple of ZSTD_ROWSIZE | ||||
* to help auto-vectorization */ | ||||
FORCE_INLINE_TEMPLATE void | ||||
ZSTD_reduceTable_internal (U32* const table, U32 const size, U32 const reducerValue, int const preserveMark) | ||||
{ | ||||
int const nbRows = (int)size / ZSTD_ROWSIZE; | ||||
int cellNb = 0; | ||||
int rowNb; | ||||
assert((size & (ZSTD_ROWSIZE-1)) == 0); /* multiple of ZSTD_ROWSIZE */ | ||||
assert(size < (1U<<31)); /* can be casted to int */ | ||||
for (rowNb=0 ; rowNb < nbRows ; rowNb++) { | ||||
int column; | ||||
for (column=0; column<ZSTD_ROWSIZE; column++) { | ||||
if (preserveMark) { | ||||
U32 const adder = (table[cellNb] == ZSTD_DUBT_UNSORTED_MARK) ? reducerValue : 0; | ||||
table[cellNb] += adder; | ||||
} | ||||
if (table[cellNb] < reducerValue) table[cellNb] = 0; | ||||
else table[cellNb] -= reducerValue; | ||||
cellNb++; | ||||
} } | ||||
} | ||||
static void ZSTD_reduceTable(U32* const table, U32 const size, U32 const reducerValue) | ||||
{ | ||||
ZSTD_reduceTable_internal(table, size, reducerValue, 0); | ||||
} | ||||
static void ZSTD_reduceTable_btlazy2(U32* const table, U32 const size, U32 const reducerValue) | ||||
{ | ||||
ZSTD_reduceTable_internal(table, size, reducerValue, 1); | ||||
Gregory Szorc
|
r30434 | } | ||
/*! ZSTD_reduceIndex() : | ||||
* rescale all indexes to avoid future overflow (indexes are U32) */ | ||||
static void ZSTD_reduceIndex (ZSTD_CCtx* zc, const U32 reducerValue) | ||||
{ | ||||
Gregory Szorc
|
r37513 | ZSTD_matchState_t* const ms = &zc->blockState.matchState; | ||
{ U32 const hSize = (U32)1 << zc->appliedParams.cParams.hashLog; | ||||
ZSTD_reduceTable(ms->hashTable, hSize, reducerValue); | ||||
} | ||||
if (zc->appliedParams.cParams.strategy != ZSTD_fast) { | ||||
U32 const chainSize = (U32)1 << zc->appliedParams.cParams.chainLog; | ||||
if (zc->appliedParams.cParams.strategy == ZSTD_btlazy2) | ||||
ZSTD_reduceTable_btlazy2(ms->chainTable, chainSize, reducerValue); | ||||
else | ||||
ZSTD_reduceTable(ms->chainTable, chainSize, reducerValue); | ||||
} | ||||
if (ms->hashLog3) { | ||||
U32 const h3Size = (U32)1 << ms->hashLog3; | ||||
ZSTD_reduceTable(ms->hashTable3, h3Size, reducerValue); | ||||
} | ||||
Gregory Szorc
|
r30434 | } | ||
/*-******************************************************* | ||||
* Block entropic compression | ||||
*********************************************************/ | ||||
/* See doc/zstd_compression_format.md for detailed format description */ | ||||
Gregory Szorc
|
r40157 | static size_t ZSTD_noCompressBlock (void* dst, size_t dstCapacity, const void* src, size_t srcSize, U32 lastBlock) | ||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r40157 | U32 const cBlockHeader24 = lastBlock + (((U32)bt_raw)<<1) + (U32)(srcSize << 3); | ||
Gregory Szorc
|
r30434 | if (srcSize + ZSTD_blockHeaderSize > dstCapacity) return ERROR(dstSize_tooSmall); | ||
Gregory Szorc
|
r40157 | MEM_writeLE24(dst, cBlockHeader24); | ||
Gregory Szorc
|
r30434 | memcpy((BYTE*)dst + ZSTD_blockHeaderSize, src, srcSize); | ||
Gregory Szorc
|
r40157 | return ZSTD_blockHeaderSize + srcSize; | ||
Gregory Szorc
|
r30434 | } | ||
static size_t ZSTD_noCompressLiterals (void* dst, size_t dstCapacity, const void* src, size_t srcSize) | ||||
{ | ||||
BYTE* const ostart = (BYTE* const)dst; | ||||
U32 const flSize = 1 + (srcSize>31) + (srcSize>4095); | ||||
if (srcSize + flSize > dstCapacity) return ERROR(dstSize_tooSmall); | ||||
switch(flSize) | ||||
{ | ||||
case 1: /* 2 - 1 - 5 */ | ||||
ostart[0] = (BYTE)((U32)set_basic + (srcSize<<3)); | ||||
break; | ||||
case 2: /* 2 - 2 - 12 */ | ||||
MEM_writeLE16(ostart, (U16)((U32)set_basic + (1<<2) + (srcSize<<4))); | ||||
break; | ||||
case 3: /* 2 - 2 - 20 */ | ||||
MEM_writeLE32(ostart, (U32)((U32)set_basic + (3<<2) + (srcSize<<4))); | ||||
break; | ||||
Gregory Szorc
|
r37513 | default: /* not necessary : flSize is {1,2,3} */ | ||
assert(0); | ||||
Gregory Szorc
|
r30434 | } | ||
memcpy(ostart + flSize, src, srcSize); | ||||
return srcSize + flSize; | ||||
} | ||||
static size_t ZSTD_compressRleLiteralsBlock (void* dst, size_t dstCapacity, const void* src, size_t srcSize) | ||||
{ | ||||
BYTE* const ostart = (BYTE* const)dst; | ||||
U32 const flSize = 1 + (srcSize>31) + (srcSize>4095); | ||||
(void)dstCapacity; /* dstCapacity already guaranteed to be >=4, hence large enough */ | ||||
switch(flSize) | ||||
{ | ||||
case 1: /* 2 - 1 - 5 */ | ||||
ostart[0] = (BYTE)((U32)set_rle + (srcSize<<3)); | ||||
break; | ||||
case 2: /* 2 - 2 - 12 */ | ||||
MEM_writeLE16(ostart, (U16)((U32)set_rle + (1<<2) + (srcSize<<4))); | ||||
break; | ||||
case 3: /* 2 - 2 - 20 */ | ||||
MEM_writeLE32(ostart, (U32)((U32)set_rle + (3<<2) + (srcSize<<4))); | ||||
break; | ||||
Gregory Szorc
|
r37513 | default: /* not necessary : flSize is {1,2,3} */ | ||
assert(0); | ||||
Gregory Szorc
|
r30434 | } | ||
ostart[flSize] = *(const BYTE*)src; | ||||
return flSize+1; | ||||
} | ||||
Gregory Szorc
|
r40157 | /* ZSTD_minGain() : | ||
* minimum compression required | ||||
* to generate a compress block or a compressed literals section. | ||||
* note : use same formula for both situations */ | ||||
static size_t ZSTD_minGain(size_t srcSize, ZSTD_strategy strat) | ||||
{ | ||||
U32 const minlog = (strat==ZSTD_btultra) ? 7 : 6; | ||||
return (srcSize >> minlog) + 2; | ||||
} | ||||
static size_t ZSTD_compressLiterals (ZSTD_hufCTables_t const* prevHuf, | ||||
ZSTD_hufCTables_t* nextHuf, | ||||
Gregory Szorc
|
r37513 | ZSTD_strategy strategy, int disableLiteralCompression, | ||
Gregory Szorc
|
r30434 | void* dst, size_t dstCapacity, | ||
Gregory Szorc
|
r37513 | const void* src, size_t srcSize, | ||
U32* workspace, const int bmi2) | ||||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r40157 | size_t const minGain = ZSTD_minGain(srcSize, strategy); | ||
Gregory Szorc
|
r30434 | size_t const lhSize = 3 + (srcSize >= 1 KB) + (srcSize >= 16 KB); | ||
BYTE* const ostart = (BYTE*)dst; | ||||
U32 singleStream = srcSize < 256; | ||||
symbolEncodingType_e hType = set_compressed; | ||||
size_t cLitSize; | ||||
Gregory Szorc
|
r37513 | DEBUGLOG(5,"ZSTD_compressLiterals (disableLiteralCompression=%i)", | ||
disableLiteralCompression); | ||||
/* Prepare nextEntropy assuming reusing the existing table */ | ||||
Gregory Szorc
|
r40157 | memcpy(nextHuf, prevHuf, sizeof(*prevHuf)); | ||
Gregory Szorc
|
r37513 | |||
if (disableLiteralCompression) | ||||
return ZSTD_noCompressLiterals(dst, dstCapacity, src, srcSize); | ||||
Gregory Szorc
|
r30434 | |||
/* small ? don't even attempt compression (speed opt) */ | ||||
Gregory Szorc
|
r37513 | # define COMPRESS_LITERALS_SIZE_MIN 63 | ||
Gregory Szorc
|
r40157 | { size_t const minLitSize = (prevHuf->repeatMode == HUF_repeat_valid) ? 6 : COMPRESS_LITERALS_SIZE_MIN; | ||
Gregory Szorc
|
r30434 | if (srcSize <= minLitSize) return ZSTD_noCompressLiterals(dst, dstCapacity, src, srcSize); | ||
} | ||||
if (dstCapacity < lhSize+1) return ERROR(dstSize_tooSmall); /* not enough space for compression */ | ||||
Gregory Szorc
|
r40157 | { HUF_repeat repeat = prevHuf->repeatMode; | ||
Gregory Szorc
|
r37513 | int const preferRepeat = strategy < ZSTD_lazy ? srcSize <= 1024 : 0; | ||
if (repeat == HUF_repeat_valid && lhSize == 3) singleStream = 1; | ||||
cLitSize = singleStream ? HUF_compress1X_repeat(ostart+lhSize, dstCapacity-lhSize, src, srcSize, 255, 11, | ||||
Gregory Szorc
|
r40157 | workspace, HUF_WORKSPACE_SIZE, (HUF_CElt*)nextHuf->CTable, &repeat, preferRepeat, bmi2) | ||
Gregory Szorc
|
r37513 | : HUF_compress4X_repeat(ostart+lhSize, dstCapacity-lhSize, src, srcSize, 255, 11, | ||
Gregory Szorc
|
r40157 | workspace, HUF_WORKSPACE_SIZE, (HUF_CElt*)nextHuf->CTable, &repeat, preferRepeat, bmi2); | ||
Gregory Szorc
|
r37513 | if (repeat != HUF_repeat_none) { | ||
/* reused the existing table */ | ||||
hType = set_repeat; | ||||
} | ||||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r37513 | if ((cLitSize==0) | (cLitSize >= srcSize - minGain) | ERR_isError(cLitSize)) { | ||
Gregory Szorc
|
r40157 | memcpy(nextHuf, prevHuf, sizeof(*prevHuf)); | ||
Gregory Szorc
|
r30434 | return ZSTD_noCompressLiterals(dst, dstCapacity, src, srcSize); | ||
Gregory Szorc
|
r37513 | } | ||
if (cLitSize==1) { | ||||
Gregory Szorc
|
r40157 | memcpy(nextHuf, prevHuf, sizeof(*prevHuf)); | ||
Gregory Szorc
|
r30434 | return ZSTD_compressRleLiteralsBlock(dst, dstCapacity, src, srcSize); | ||
Gregory Szorc
|
r37513 | } | ||
if (hType == set_compressed) { | ||||
/* using a newly constructed table */ | ||||
Gregory Szorc
|
r40157 | nextHuf->repeatMode = HUF_repeat_check; | ||
Gregory Szorc
|
r37513 | } | ||
Gregory Szorc
|
r30434 | |||
/* Build header */ | ||||
switch(lhSize) | ||||
{ | ||||
case 3: /* 2 - 2 - 10 - 10 */ | ||||
{ U32 const lhc = hType + ((!singleStream) << 2) + ((U32)srcSize<<4) + ((U32)cLitSize<<14); | ||||
MEM_writeLE24(ostart, lhc); | ||||
break; | ||||
} | ||||
case 4: /* 2 - 2 - 14 - 14 */ | ||||
{ U32 const lhc = hType + (2 << 2) + ((U32)srcSize<<4) + ((U32)cLitSize<<18); | ||||
MEM_writeLE32(ostart, lhc); | ||||
break; | ||||
} | ||||
case 5: /* 2 - 2 - 18 - 18 */ | ||||
{ U32 const lhc = hType + (3 << 2) + ((U32)srcSize<<4) + ((U32)cLitSize<<22); | ||||
MEM_writeLE32(ostart, lhc); | ||||
ostart[4] = (BYTE)(cLitSize >> 10); | ||||
break; | ||||
} | ||||
Gregory Szorc
|
r37513 | default: /* not possible : lhSize is {3,4,5} */ | ||
assert(0); | ||||
Gregory Szorc
|
r30434 | } | ||
return lhSize+cLitSize; | ||||
} | ||||
void ZSTD_seqToCodes(const seqStore_t* seqStorePtr) | ||||
{ | ||||
const seqDef* const sequences = seqStorePtr->sequencesStart; | ||||
BYTE* const llCodeTable = seqStorePtr->llCode; | ||||
BYTE* const ofCodeTable = seqStorePtr->ofCode; | ||||
BYTE* const mlCodeTable = seqStorePtr->mlCode; | ||||
U32 const nbSeq = (U32)(seqStorePtr->sequences - seqStorePtr->sequencesStart); | ||||
U32 u; | ||||
Gregory Szorc
|
r40157 | assert(nbSeq <= seqStorePtr->maxNbSeq); | ||
Gregory Szorc
|
r30434 | for (u=0; u<nbSeq; u++) { | ||
U32 const llv = sequences[u].litLength; | ||||
U32 const mlv = sequences[u].matchLength; | ||||
Gregory Szorc
|
r37513 | llCodeTable[u] = (BYTE)ZSTD_LLcode(llv); | ||
Gregory Szorc
|
r30434 | ofCodeTable[u] = (BYTE)ZSTD_highbit32(sequences[u].offset); | ||
Gregory Szorc
|
r37513 | mlCodeTable[u] = (BYTE)ZSTD_MLcode(mlv); | ||
Gregory Szorc
|
r30434 | } | ||
if (seqStorePtr->longLengthID==1) | ||||
llCodeTable[seqStorePtr->longLengthPos] = MaxLL; | ||||
if (seqStorePtr->longLengthID==2) | ||||
mlCodeTable[seqStorePtr->longLengthPos] = MaxML; | ||||
} | ||||
Gregory Szorc
|
r40157 | |||
/** | ||||
* -log2(x / 256) lookup table for x in [0, 256). | ||||
* If x == 0: Return 0 | ||||
* Else: Return floor(-log2(x / 256) * 256) | ||||
*/ | ||||
static unsigned const kInverseProbabiltyLog256[256] = { | ||||
0, 2048, 1792, 1642, 1536, 1453, 1386, 1329, 1280, 1236, 1197, 1162, | ||||
1130, 1100, 1073, 1047, 1024, 1001, 980, 960, 941, 923, 906, 889, | ||||
874, 859, 844, 830, 817, 804, 791, 779, 768, 756, 745, 734, | ||||
724, 714, 704, 694, 685, 676, 667, 658, 650, 642, 633, 626, | ||||
618, 610, 603, 595, 588, 581, 574, 567, 561, 554, 548, 542, | ||||
535, 529, 523, 517, 512, 506, 500, 495, 489, 484, 478, 473, | ||||
468, 463, 458, 453, 448, 443, 438, 434, 429, 424, 420, 415, | ||||
411, 407, 402, 398, 394, 390, 386, 382, 377, 373, 370, 366, | ||||
362, 358, 354, 350, 347, 343, 339, 336, 332, 329, 325, 322, | ||||
318, 315, 311, 308, 305, 302, 298, 295, 292, 289, 286, 282, | ||||
279, 276, 273, 270, 267, 264, 261, 258, 256, 253, 250, 247, | ||||
244, 241, 239, 236, 233, 230, 228, 225, 222, 220, 217, 215, | ||||
212, 209, 207, 204, 202, 199, 197, 194, 192, 190, 187, 185, | ||||
182, 180, 178, 175, 173, 171, 168, 166, 164, 162, 159, 157, | ||||
155, 153, 151, 149, 146, 144, 142, 140, 138, 136, 134, 132, | ||||
130, 128, 126, 123, 121, 119, 117, 115, 114, 112, 110, 108, | ||||
106, 104, 102, 100, 98, 96, 94, 93, 91, 89, 87, 85, | ||||
83, 82, 80, 78, 76, 74, 73, 71, 69, 67, 66, 64, | ||||
62, 61, 59, 57, 55, 54, 52, 50, 49, 47, 46, 44, | ||||
42, 41, 39, 37, 36, 34, 33, 31, 30, 28, 26, 25, | ||||
23, 22, 20, 19, 17, 16, 14, 13, 11, 10, 8, 7, | ||||
5, 4, 2, 1, | ||||
}; | ||||
/** | ||||
* Returns the cost in bits of encoding the distribution described by count | ||||
* using the entropy bound. | ||||
*/ | ||||
static size_t ZSTD_entropyCost(unsigned const* count, unsigned const max, size_t const total) | ||||
{ | ||||
unsigned cost = 0; | ||||
unsigned s; | ||||
for (s = 0; s <= max; ++s) { | ||||
unsigned norm = (unsigned)((256 * count[s]) / total); | ||||
if (count[s] != 0 && norm == 0) | ||||
norm = 1; | ||||
assert(count[s] < total); | ||||
cost += count[s] * kInverseProbabiltyLog256[norm]; | ||||
} | ||||
return cost >> 8; | ||||
} | ||||
/** | ||||
* Returns the cost in bits of encoding the distribution in count using the | ||||
* table described by norm. The max symbol support by norm is assumed >= max. | ||||
* norm must be valid for every symbol with non-zero probability in count. | ||||
*/ | ||||
static size_t ZSTD_crossEntropyCost(short const* norm, unsigned accuracyLog, | ||||
unsigned const* count, unsigned const max) | ||||
{ | ||||
unsigned const shift = 8 - accuracyLog; | ||||
size_t cost = 0; | ||||
unsigned s; | ||||
assert(accuracyLog <= 8); | ||||
for (s = 0; s <= max; ++s) { | ||||
unsigned const normAcc = norm[s] != -1 ? norm[s] : 1; | ||||
unsigned const norm256 = normAcc << shift; | ||||
assert(norm256 > 0); | ||||
assert(norm256 < 256); | ||||
cost += count[s] * kInverseProbabiltyLog256[norm256]; | ||||
} | ||||
return cost >> 8; | ||||
} | ||||
static unsigned ZSTD_getFSEMaxSymbolValue(FSE_CTable const* ctable) { | ||||
void const* ptr = ctable; | ||||
U16 const* u16ptr = (U16 const*)ptr; | ||||
U32 const maxSymbolValue = MEM_read16(u16ptr + 1); | ||||
return maxSymbolValue; | ||||
} | ||||
/** | ||||
* Returns the cost in bits of encoding the distribution in count using ctable. | ||||
* Returns an error if ctable cannot represent all the symbols in count. | ||||
*/ | ||||
static size_t ZSTD_fseBitCost( | ||||
FSE_CTable const* ctable, | ||||
unsigned const* count, | ||||
unsigned const max) | ||||
{ | ||||
unsigned const kAccuracyLog = 8; | ||||
size_t cost = 0; | ||||
unsigned s; | ||||
FSE_CState_t cstate; | ||||
FSE_initCState(&cstate, ctable); | ||||
if (ZSTD_getFSEMaxSymbolValue(ctable) < max) { | ||||
DEBUGLOG(5, "Repeat FSE_CTable has maxSymbolValue %u < %u", | ||||
ZSTD_getFSEMaxSymbolValue(ctable), max); | ||||
return ERROR(GENERIC); | ||||
} | ||||
for (s = 0; s <= max; ++s) { | ||||
unsigned const tableLog = cstate.stateLog; | ||||
unsigned const badCost = (tableLog + 1) << kAccuracyLog; | ||||
unsigned const bitCost = FSE_bitCost(cstate.symbolTT, tableLog, s, kAccuracyLog); | ||||
if (count[s] == 0) | ||||
continue; | ||||
if (bitCost >= badCost) { | ||||
DEBUGLOG(5, "Repeat FSE_CTable has Prob[%u] == 0", s); | ||||
return ERROR(GENERIC); | ||||
} | ||||
cost += count[s] * bitCost; | ||||
} | ||||
return cost >> kAccuracyLog; | ||||
} | ||||
/** | ||||
* Returns the cost in bytes of encoding the normalized count header. | ||||
* Returns an error if any of the helper functions return an error. | ||||
*/ | ||||
static size_t ZSTD_NCountCost(unsigned const* count, unsigned const max, | ||||
size_t const nbSeq, unsigned const FSELog) | ||||
{ | ||||
BYTE wksp[FSE_NCOUNTBOUND]; | ||||
S16 norm[MaxSeq + 1]; | ||||
const U32 tableLog = FSE_optimalTableLog(FSELog, nbSeq, max); | ||||
CHECK_F(FSE_normalizeCount(norm, tableLog, count, nbSeq, max)); | ||||
return FSE_writeNCount(wksp, sizeof(wksp), norm, max, tableLog); | ||||
} | ||||
Gregory Szorc
|
r37513 | typedef enum { | ||
ZSTD_defaultDisallowed = 0, | ||||
ZSTD_defaultAllowed = 1 | ||||
} ZSTD_defaultPolicy_e; | ||||
Gregory Szorc
|
r40157 | MEM_STATIC symbolEncodingType_e | ||
ZSTD_selectEncodingType( | ||||
FSE_repeat* repeatMode, unsigned const* count, unsigned const max, | ||||
size_t const mostFrequent, size_t nbSeq, unsigned const FSELog, | ||||
FSE_CTable const* prevCTable, | ||||
short const* defaultNorm, U32 defaultNormLog, | ||||
ZSTD_defaultPolicy_e const isDefaultAllowed, | ||||
ZSTD_strategy const strategy) | ||||
Gregory Szorc
|
r37513 | { | ||
ZSTD_STATIC_ASSERT(ZSTD_defaultDisallowed == 0 && ZSTD_defaultAllowed != 0); | ||||
Gregory Szorc
|
r40157 | if (mostFrequent == nbSeq) { | ||
*repeatMode = FSE_repeat_none; | ||||
if (isDefaultAllowed && nbSeq <= 2) { | ||||
/* Prefer set_basic over set_rle when there are 2 or less symbols, | ||||
* since RLE uses 1 byte, but set_basic uses 5-6 bits per symbol. | ||||
* If basic encoding isn't possible, always choose RLE. | ||||
*/ | ||||
DEBUGLOG(5, "Selected set_basic"); | ||||
return set_basic; | ||||
} | ||||
Gregory Szorc
|
r37513 | DEBUGLOG(5, "Selected set_rle"); | ||
return set_rle; | ||||
} | ||||
Gregory Szorc
|
r40157 | if (strategy < ZSTD_lazy) { | ||
if (isDefaultAllowed) { | ||||
size_t const staticFse_nbSeq_max = 1000; | ||||
size_t const mult = 10 - strategy; | ||||
size_t const baseLog = 3; | ||||
size_t const dynamicFse_nbSeq_min = (((size_t)1 << defaultNormLog) * mult) >> baseLog; /* 28-36 for offset, 56-72 for lengths */ | ||||
assert(defaultNormLog >= 5 && defaultNormLog <= 6); /* xx_DEFAULTNORMLOG */ | ||||
assert(mult <= 9 && mult >= 7); | ||||
if ( (*repeatMode == FSE_repeat_valid) | ||||
&& (nbSeq < staticFse_nbSeq_max) ) { | ||||
DEBUGLOG(5, "Selected set_repeat"); | ||||
return set_repeat; | ||||
} | ||||
if ( (nbSeq < dynamicFse_nbSeq_min) | ||||
|| (mostFrequent < (nbSeq >> (defaultNormLog-1))) ) { | ||||
DEBUGLOG(5, "Selected set_basic"); | ||||
/* The format allows default tables to be repeated, but it isn't useful. | ||||
* When using simple heuristics to select encoding type, we don't want | ||||
* to confuse these tables with dictionaries. When running more careful | ||||
* analysis, we don't need to waste time checking both repeating tables | ||||
* and default tables. | ||||
*/ | ||||
*repeatMode = FSE_repeat_none; | ||||
return set_basic; | ||||
} | ||||
} | ||||
} else { | ||||
size_t const basicCost = isDefaultAllowed ? ZSTD_crossEntropyCost(defaultNorm, defaultNormLog, count, max) : ERROR(GENERIC); | ||||
size_t const repeatCost = *repeatMode != FSE_repeat_none ? ZSTD_fseBitCost(prevCTable, count, max) : ERROR(GENERIC); | ||||
size_t const NCountCost = ZSTD_NCountCost(count, max, nbSeq, FSELog); | ||||
size_t const compressedCost = (NCountCost << 3) + ZSTD_entropyCost(count, max, nbSeq); | ||||
if (isDefaultAllowed) { | ||||
assert(!ZSTD_isError(basicCost)); | ||||
assert(!(*repeatMode == FSE_repeat_valid && ZSTD_isError(repeatCost))); | ||||
} | ||||
assert(!ZSTD_isError(NCountCost)); | ||||
assert(compressedCost < ERROR(maxCode)); | ||||
DEBUGLOG(5, "Estimated bit costs: basic=%u\trepeat=%u\tcompressed=%u", | ||||
(U32)basicCost, (U32)repeatCost, (U32)compressedCost); | ||||
if (basicCost <= repeatCost && basicCost <= compressedCost) { | ||||
DEBUGLOG(5, "Selected set_basic"); | ||||
assert(isDefaultAllowed); | ||||
*repeatMode = FSE_repeat_none; | ||||
return set_basic; | ||||
} | ||||
if (repeatCost <= compressedCost) { | ||||
DEBUGLOG(5, "Selected set_repeat"); | ||||
assert(!ZSTD_isError(repeatCost)); | ||||
return set_repeat; | ||||
} | ||||
assert(compressedCost < basicCost && compressedCost < repeatCost); | ||||
Gregory Szorc
|
r37513 | } | ||
DEBUGLOG(5, "Selected set_compressed"); | ||||
*repeatMode = FSE_repeat_check; | ||||
return set_compressed; | ||||
} | ||||
Gregory Szorc
|
r40157 | MEM_STATIC size_t | ||
ZSTD_buildCTable(void* dst, size_t dstCapacity, | ||||
FSE_CTable* nextCTable, U32 FSELog, symbolEncodingType_e type, | ||||
U32* count, U32 max, | ||||
const BYTE* codeTable, size_t nbSeq, | ||||
const S16* defaultNorm, U32 defaultNormLog, U32 defaultMax, | ||||
const FSE_CTable* prevCTable, size_t prevCTableSize, | ||||
void* workspace, size_t workspaceSize) | ||||
Gregory Szorc
|
r37513 | { | ||
BYTE* op = (BYTE*)dst; | ||||
Gregory Szorc
|
r40157 | const BYTE* const oend = op + dstCapacity; | ||
Gregory Szorc
|
r37513 | |||
switch (type) { | ||||
case set_rle: | ||||
*op = codeTable[0]; | ||||
CHECK_F(FSE_buildCTable_rle(nextCTable, (BYTE)max)); | ||||
return 1; | ||||
case set_repeat: | ||||
memcpy(nextCTable, prevCTable, prevCTableSize); | ||||
return 0; | ||||
case set_basic: | ||||
CHECK_F(FSE_buildCTable_wksp(nextCTable, defaultNorm, defaultMax, defaultNormLog, workspace, workspaceSize)); /* note : could be pre-calculated */ | ||||
return 0; | ||||
case set_compressed: { | ||||
S16 norm[MaxSeq + 1]; | ||||
size_t nbSeq_1 = nbSeq; | ||||
const U32 tableLog = FSE_optimalTableLog(FSELog, nbSeq, max); | ||||
if (count[codeTable[nbSeq-1]] > 1) { | ||||
count[codeTable[nbSeq-1]]--; | ||||
nbSeq_1--; | ||||
} | ||||
assert(nbSeq_1 > 1); | ||||
CHECK_F(FSE_normalizeCount(norm, tableLog, count, nbSeq_1, max)); | ||||
{ size_t const NCountSize = FSE_writeNCount(op, oend - op, norm, max, tableLog); /* overflow protected */ | ||||
if (FSE_isError(NCountSize)) return NCountSize; | ||||
CHECK_F(FSE_buildCTable_wksp(nextCTable, norm, max, tableLog, workspace, workspaceSize)); | ||||
return NCountSize; | ||||
} | ||||
} | ||||
default: return assert(0), ERROR(GENERIC); | ||||
} | ||||
} | ||||
FORCE_INLINE_TEMPLATE size_t | ||||
ZSTD_encodeSequences_body( | ||||
void* dst, size_t dstCapacity, | ||||
FSE_CTable const* CTable_MatchLength, BYTE const* mlCodeTable, | ||||
FSE_CTable const* CTable_OffsetBits, BYTE const* ofCodeTable, | ||||
FSE_CTable const* CTable_LitLength, BYTE const* llCodeTable, | ||||
seqDef const* sequences, size_t nbSeq, int longOffsets) | ||||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r37513 | BIT_CStream_t blockStream; | ||
FSE_CState_t stateMatchLength; | ||||
FSE_CState_t stateOffsetBits; | ||||
FSE_CState_t stateLitLength; | ||||
CHECK_E(BIT_initCStream(&blockStream, dst, dstCapacity), dstSize_tooSmall); /* not enough space remaining */ | ||||
/* first symbols */ | ||||
FSE_initCState2(&stateMatchLength, CTable_MatchLength, mlCodeTable[nbSeq-1]); | ||||
FSE_initCState2(&stateOffsetBits, CTable_OffsetBits, ofCodeTable[nbSeq-1]); | ||||
FSE_initCState2(&stateLitLength, CTable_LitLength, llCodeTable[nbSeq-1]); | ||||
BIT_addBits(&blockStream, sequences[nbSeq-1].litLength, LL_bits[llCodeTable[nbSeq-1]]); | ||||
if (MEM_32bits()) BIT_flushBits(&blockStream); | ||||
BIT_addBits(&blockStream, sequences[nbSeq-1].matchLength, ML_bits[mlCodeTable[nbSeq-1]]); | ||||
if (MEM_32bits()) BIT_flushBits(&blockStream); | ||||
if (longOffsets) { | ||||
U32 const ofBits = ofCodeTable[nbSeq-1]; | ||||
int const extraBits = ofBits - MIN(ofBits, STREAM_ACCUMULATOR_MIN-1); | ||||
if (extraBits) { | ||||
BIT_addBits(&blockStream, sequences[nbSeq-1].offset, extraBits); | ||||
BIT_flushBits(&blockStream); | ||||
} | ||||
BIT_addBits(&blockStream, sequences[nbSeq-1].offset >> extraBits, | ||||
ofBits - extraBits); | ||||
} else { | ||||
BIT_addBits(&blockStream, sequences[nbSeq-1].offset, ofCodeTable[nbSeq-1]); | ||||
} | ||||
BIT_flushBits(&blockStream); | ||||
{ size_t n; | ||||
for (n=nbSeq-2 ; n<nbSeq ; n--) { /* intentional underflow */ | ||||
BYTE const llCode = llCodeTable[n]; | ||||
BYTE const ofCode = ofCodeTable[n]; | ||||
BYTE const mlCode = mlCodeTable[n]; | ||||
U32 const llBits = LL_bits[llCode]; | ||||
U32 const ofBits = ofCode; | ||||
U32 const mlBits = ML_bits[mlCode]; | ||||
DEBUGLOG(6, "encoding: litlen:%2u - matchlen:%2u - offCode:%7u", | ||||
sequences[n].litLength, | ||||
sequences[n].matchLength + MINMATCH, | ||||
sequences[n].offset); | ||||
/* 32b*/ /* 64b*/ | ||||
/* (7)*/ /* (7)*/ | ||||
FSE_encodeSymbol(&blockStream, &stateOffsetBits, ofCode); /* 15 */ /* 15 */ | ||||
FSE_encodeSymbol(&blockStream, &stateMatchLength, mlCode); /* 24 */ /* 24 */ | ||||
if (MEM_32bits()) BIT_flushBits(&blockStream); /* (7)*/ | ||||
FSE_encodeSymbol(&blockStream, &stateLitLength, llCode); /* 16 */ /* 33 */ | ||||
if (MEM_32bits() || (ofBits+mlBits+llBits >= 64-7-(LLFSELog+MLFSELog+OffFSELog))) | ||||
BIT_flushBits(&blockStream); /* (7)*/ | ||||
BIT_addBits(&blockStream, sequences[n].litLength, llBits); | ||||
if (MEM_32bits() && ((llBits+mlBits)>24)) BIT_flushBits(&blockStream); | ||||
BIT_addBits(&blockStream, sequences[n].matchLength, mlBits); | ||||
if (MEM_32bits() || (ofBits+mlBits+llBits > 56)) BIT_flushBits(&blockStream); | ||||
if (longOffsets) { | ||||
int const extraBits = ofBits - MIN(ofBits, STREAM_ACCUMULATOR_MIN-1); | ||||
if (extraBits) { | ||||
BIT_addBits(&blockStream, sequences[n].offset, extraBits); | ||||
BIT_flushBits(&blockStream); /* (7)*/ | ||||
} | ||||
BIT_addBits(&blockStream, sequences[n].offset >> extraBits, | ||||
ofBits - extraBits); /* 31 */ | ||||
} else { | ||||
BIT_addBits(&blockStream, sequences[n].offset, ofBits); /* 31 */ | ||||
} | ||||
BIT_flushBits(&blockStream); /* (7)*/ | ||||
} } | ||||
DEBUGLOG(6, "ZSTD_encodeSequences: flushing ML state with %u bits", stateMatchLength.stateLog); | ||||
FSE_flushCState(&blockStream, &stateMatchLength); | ||||
DEBUGLOG(6, "ZSTD_encodeSequences: flushing Off state with %u bits", stateOffsetBits.stateLog); | ||||
FSE_flushCState(&blockStream, &stateOffsetBits); | ||||
DEBUGLOG(6, "ZSTD_encodeSequences: flushing LL state with %u bits", stateLitLength.stateLog); | ||||
FSE_flushCState(&blockStream, &stateLitLength); | ||||
{ size_t const streamSize = BIT_closeCStream(&blockStream); | ||||
if (streamSize==0) return ERROR(dstSize_tooSmall); /* not enough space */ | ||||
return streamSize; | ||||
} | ||||
} | ||||
static size_t | ||||
ZSTD_encodeSequences_default( | ||||
void* dst, size_t dstCapacity, | ||||
FSE_CTable const* CTable_MatchLength, BYTE const* mlCodeTable, | ||||
FSE_CTable const* CTable_OffsetBits, BYTE const* ofCodeTable, | ||||
FSE_CTable const* CTable_LitLength, BYTE const* llCodeTable, | ||||
seqDef const* sequences, size_t nbSeq, int longOffsets) | ||||
{ | ||||
return ZSTD_encodeSequences_body(dst, dstCapacity, | ||||
CTable_MatchLength, mlCodeTable, | ||||
CTable_OffsetBits, ofCodeTable, | ||||
CTable_LitLength, llCodeTable, | ||||
sequences, nbSeq, longOffsets); | ||||
} | ||||
#if DYNAMIC_BMI2 | ||||
static TARGET_ATTRIBUTE("bmi2") size_t | ||||
ZSTD_encodeSequences_bmi2( | ||||
void* dst, size_t dstCapacity, | ||||
FSE_CTable const* CTable_MatchLength, BYTE const* mlCodeTable, | ||||
FSE_CTable const* CTable_OffsetBits, BYTE const* ofCodeTable, | ||||
FSE_CTable const* CTable_LitLength, BYTE const* llCodeTable, | ||||
seqDef const* sequences, size_t nbSeq, int longOffsets) | ||||
{ | ||||
return ZSTD_encodeSequences_body(dst, dstCapacity, | ||||
CTable_MatchLength, mlCodeTable, | ||||
CTable_OffsetBits, ofCodeTable, | ||||
CTable_LitLength, llCodeTable, | ||||
sequences, nbSeq, longOffsets); | ||||
} | ||||
#endif | ||||
Gregory Szorc
|
r40157 | static size_t ZSTD_encodeSequences( | ||
Gregory Szorc
|
r37513 | void* dst, size_t dstCapacity, | ||
FSE_CTable const* CTable_MatchLength, BYTE const* mlCodeTable, | ||||
FSE_CTable const* CTable_OffsetBits, BYTE const* ofCodeTable, | ||||
FSE_CTable const* CTable_LitLength, BYTE const* llCodeTable, | ||||
seqDef const* sequences, size_t nbSeq, int longOffsets, int bmi2) | ||||
{ | ||||
#if DYNAMIC_BMI2 | ||||
if (bmi2) { | ||||
return ZSTD_encodeSequences_bmi2(dst, dstCapacity, | ||||
CTable_MatchLength, mlCodeTable, | ||||
CTable_OffsetBits, ofCodeTable, | ||||
CTable_LitLength, llCodeTable, | ||||
sequences, nbSeq, longOffsets); | ||||
} | ||||
#endif | ||||
(void)bmi2; | ||||
return ZSTD_encodeSequences_default(dst, dstCapacity, | ||||
CTable_MatchLength, mlCodeTable, | ||||
CTable_OffsetBits, ofCodeTable, | ||||
CTable_LitLength, llCodeTable, | ||||
sequences, nbSeq, longOffsets); | ||||
} | ||||
MEM_STATIC size_t ZSTD_compressSequences_internal(seqStore_t* seqStorePtr, | ||||
ZSTD_entropyCTables_t const* prevEntropy, | ||||
ZSTD_entropyCTables_t* nextEntropy, | ||||
ZSTD_CCtx_params const* cctxParams, | ||||
void* dst, size_t dstCapacity, U32* workspace, | ||||
const int bmi2) | ||||
{ | ||||
const int longOffsets = cctxParams->cParams.windowLog > STREAM_ACCUMULATOR_MIN; | ||||
Gregory Szorc
|
r40157 | ZSTD_strategy const strategy = cctxParams->cParams.strategy; | ||
Gregory Szorc
|
r30434 | U32 count[MaxSeq+1]; | ||
Gregory Szorc
|
r40157 | FSE_CTable* CTable_LitLength = nextEntropy->fse.litlengthCTable; | ||
FSE_CTable* CTable_OffsetBits = nextEntropy->fse.offcodeCTable; | ||||
FSE_CTable* CTable_MatchLength = nextEntropy->fse.matchlengthCTable; | ||||
Gregory Szorc
|
r30434 | U32 LLtype, Offtype, MLtype; /* compressed, raw or rle */ | ||
const seqDef* const sequences = seqStorePtr->sequencesStart; | ||||
const BYTE* const ofCodeTable = seqStorePtr->ofCode; | ||||
const BYTE* const llCodeTable = seqStorePtr->llCode; | ||||
const BYTE* const mlCodeTable = seqStorePtr->mlCode; | ||||
BYTE* const ostart = (BYTE*)dst; | ||||
BYTE* const oend = ostart + dstCapacity; | ||||
BYTE* op = ostart; | ||||
size_t const nbSeq = seqStorePtr->sequences - seqStorePtr->sequencesStart; | ||||
BYTE* seqHead; | ||||
Gregory Szorc
|
r40157 | BYTE* lastNCount = NULL; | ||
Gregory Szorc
|
r37513 | |||
ZSTD_STATIC_ASSERT(HUF_WORKSPACE_SIZE >= (1<<MAX(MLFSELog,LLFSELog))); | ||||
Gregory Szorc
|
r30434 | |||
/* Compress literals */ | ||||
{ const BYTE* const literals = seqStorePtr->litStart; | ||||
size_t const litSize = seqStorePtr->lit - literals; | ||||
Gregory Szorc
|
r40157 | int const disableLiteralCompression = (cctxParams->cParams.strategy == ZSTD_fast) && (cctxParams->cParams.targetLength > 0); | ||
Gregory Szorc
|
r37513 | size_t const cSize = ZSTD_compressLiterals( | ||
Gregory Szorc
|
r40157 | &prevEntropy->huf, &nextEntropy->huf, | ||
cctxParams->cParams.strategy, disableLiteralCompression, | ||||
Gregory Szorc
|
r37513 | op, dstCapacity, | ||
literals, litSize, | ||||
workspace, bmi2); | ||||
if (ZSTD_isError(cSize)) | ||||
return cSize; | ||||
assert(cSize <= dstCapacity); | ||||
Gregory Szorc
|
r30434 | op += cSize; | ||
} | ||||
/* Sequences Header */ | ||||
Gregory Szorc
|
r37513 | if ((oend-op) < 3 /*max nbSeq Size*/ + 1 /*seqHead*/) return ERROR(dstSize_tooSmall); | ||
if (nbSeq < 0x7F) | ||||
*op++ = (BYTE)nbSeq; | ||||
else if (nbSeq < LONGNBSEQ) | ||||
op[0] = (BYTE)((nbSeq>>8) + 0x80), op[1] = (BYTE)nbSeq, op+=2; | ||||
else | ||||
op[0]=0xFF, MEM_writeLE16(op+1, (U16)(nbSeq - LONGNBSEQ)), op+=3; | ||||
if (nbSeq==0) { | ||||
Gregory Szorc
|
r40157 | /* Copy the old tables over as if we repeated them */ | ||
memcpy(&nextEntropy->fse, &prevEntropy->fse, sizeof(prevEntropy->fse)); | ||||
return op - ostart; | ||||
Gregory Szorc
|
r37513 | } | ||
Gregory Szorc
|
r30434 | |||
/* seqHead : flags for FSE encoding type */ | ||||
seqHead = op++; | ||||
/* convert length/distances into codes */ | ||||
ZSTD_seqToCodes(seqStorePtr); | ||||
Gregory Szorc
|
r37513 | /* build CTable for Literal Lengths */ | ||
Gregory Szorc
|
r30434 | { U32 max = MaxLL; | ||
Gregory Szorc
|
r40157 | size_t const mostFrequent = HIST_countFast_wksp(count, &max, llCodeTable, nbSeq, workspace); /* can't fail */ | ||
Gregory Szorc
|
r37513 | DEBUGLOG(5, "Building LL table"); | ||
Gregory Szorc
|
r40157 | nextEntropy->fse.litlength_repeatMode = prevEntropy->fse.litlength_repeatMode; | ||
LLtype = ZSTD_selectEncodingType(&nextEntropy->fse.litlength_repeatMode, count, max, mostFrequent, nbSeq, LLFSELog, prevEntropy->fse.litlengthCTable, LL_defaultNorm, LL_defaultNormLog, ZSTD_defaultAllowed, strategy); | ||||
assert(set_basic < set_compressed && set_rle < set_compressed); | ||||
assert(!(LLtype < set_compressed && nextEntropy->fse.litlength_repeatMode != FSE_repeat_none)); /* We don't copy tables */ | ||||
Gregory Szorc
|
r37513 | { size_t const countSize = ZSTD_buildCTable(op, oend - op, CTable_LitLength, LLFSELog, (symbolEncodingType_e)LLtype, | ||
Gregory Szorc
|
r40157 | count, max, llCodeTable, nbSeq, LL_defaultNorm, LL_defaultNormLog, MaxLL, | ||
prevEntropy->fse.litlengthCTable, sizeof(prevEntropy->fse.litlengthCTable), | ||||
workspace, HUF_WORKSPACE_SIZE); | ||||
Gregory Szorc
|
r37513 | if (ZSTD_isError(countSize)) return countSize; | ||
Gregory Szorc
|
r40157 | if (LLtype == set_compressed) | ||
lastNCount = op; | ||||
Gregory Szorc
|
r37513 | op += countSize; | ||
Gregory Szorc
|
r30434 | } } | ||
Gregory Szorc
|
r37513 | /* build CTable for Offsets */ | ||
Gregory Szorc
|
r30434 | { U32 max = MaxOff; | ||
Gregory Szorc
|
r40157 | size_t const mostFrequent = HIST_countFast_wksp(count, &max, ofCodeTable, nbSeq, workspace); /* can't fail */ | ||
Gregory Szorc
|
r37513 | /* We can only use the basic table if max <= DefaultMaxOff, otherwise the offsets are too large */ | ||
ZSTD_defaultPolicy_e const defaultPolicy = (max <= DefaultMaxOff) ? ZSTD_defaultAllowed : ZSTD_defaultDisallowed; | ||||
DEBUGLOG(5, "Building OF table"); | ||||
Gregory Szorc
|
r40157 | nextEntropy->fse.offcode_repeatMode = prevEntropy->fse.offcode_repeatMode; | ||
Offtype = ZSTD_selectEncodingType(&nextEntropy->fse.offcode_repeatMode, count, max, mostFrequent, nbSeq, OffFSELog, prevEntropy->fse.offcodeCTable, OF_defaultNorm, OF_defaultNormLog, defaultPolicy, strategy); | ||||
assert(!(Offtype < set_compressed && nextEntropy->fse.offcode_repeatMode != FSE_repeat_none)); /* We don't copy tables */ | ||||
Gregory Szorc
|
r37513 | { size_t const countSize = ZSTD_buildCTable(op, oend - op, CTable_OffsetBits, OffFSELog, (symbolEncodingType_e)Offtype, | ||
Gregory Szorc
|
r40157 | count, max, ofCodeTable, nbSeq, OF_defaultNorm, OF_defaultNormLog, DefaultMaxOff, | ||
prevEntropy->fse.offcodeCTable, sizeof(prevEntropy->fse.offcodeCTable), | ||||
workspace, HUF_WORKSPACE_SIZE); | ||||
Gregory Szorc
|
r37513 | if (ZSTD_isError(countSize)) return countSize; | ||
Gregory Szorc
|
r40157 | if (Offtype == set_compressed) | ||
lastNCount = op; | ||||
Gregory Szorc
|
r37513 | op += countSize; | ||
Gregory Szorc
|
r30434 | } } | ||
Gregory Szorc
|
r37513 | /* build CTable for MatchLengths */ | ||
Gregory Szorc
|
r30434 | { U32 max = MaxML; | ||
Gregory Szorc
|
r40157 | size_t const mostFrequent = HIST_countFast_wksp(count, &max, mlCodeTable, nbSeq, workspace); /* can't fail */ | ||
Gregory Szorc
|
r37513 | DEBUGLOG(5, "Building ML table"); | ||
Gregory Szorc
|
r40157 | nextEntropy->fse.matchlength_repeatMode = prevEntropy->fse.matchlength_repeatMode; | ||
MLtype = ZSTD_selectEncodingType(&nextEntropy->fse.matchlength_repeatMode, count, max, mostFrequent, nbSeq, MLFSELog, prevEntropy->fse.matchlengthCTable, ML_defaultNorm, ML_defaultNormLog, ZSTD_defaultAllowed, strategy); | ||||
assert(!(MLtype < set_compressed && nextEntropy->fse.matchlength_repeatMode != FSE_repeat_none)); /* We don't copy tables */ | ||||
Gregory Szorc
|
r37513 | { size_t const countSize = ZSTD_buildCTable(op, oend - op, CTable_MatchLength, MLFSELog, (symbolEncodingType_e)MLtype, | ||
Gregory Szorc
|
r40157 | count, max, mlCodeTable, nbSeq, ML_defaultNorm, ML_defaultNormLog, MaxML, | ||
prevEntropy->fse.matchlengthCTable, sizeof(prevEntropy->fse.matchlengthCTable), | ||||
workspace, HUF_WORKSPACE_SIZE); | ||||
Gregory Szorc
|
r37513 | if (ZSTD_isError(countSize)) return countSize; | ||
Gregory Szorc
|
r40157 | if (MLtype == set_compressed) | ||
lastNCount = op; | ||||
Gregory Szorc
|
r37513 | op += countSize; | ||
Gregory Szorc
|
r30434 | } } | ||
*seqHead = (BYTE)((LLtype<<6) + (Offtype<<4) + (MLtype<<2)); | ||||
Gregory Szorc
|
r37513 | |||
{ size_t const bitstreamSize = ZSTD_encodeSequences( | ||||
op, oend - op, | ||||
CTable_MatchLength, mlCodeTable, | ||||
CTable_OffsetBits, ofCodeTable, | ||||
CTable_LitLength, llCodeTable, | ||||
sequences, nbSeq, | ||||
longOffsets, bmi2); | ||||
if (ZSTD_isError(bitstreamSize)) return bitstreamSize; | ||||
op += bitstreamSize; | ||||
Gregory Szorc
|
r40157 | /* zstd versions <= 1.3.4 mistakenly report corruption when | ||
* FSE_readNCount() recieves a buffer < 4 bytes. | ||||
* Fixed by https://github.com/facebook/zstd/pull/1146. | ||||
* This can happen when the last set_compressed table present is 2 | ||||
* bytes and the bitstream is only one byte. | ||||
* In this exceedingly rare case, we will simply emit an uncompressed | ||||
* block, since it isn't worth optimizing. | ||||
*/ | ||||
if (lastNCount && (op - lastNCount) < 4) { | ||||
/* NCountSize >= 2 && bitstreamSize > 0 ==> lastCountSize == 3 */ | ||||
assert(op - lastNCount == 3); | ||||
DEBUGLOG(5, "Avoiding bug in zstd decoder in versions <= 1.3.4 by " | ||||
"emitting an uncompressed block."); | ||||
return 0; | ||||
} | ||||
Gregory Szorc
|
r37513 | } | ||
Gregory Szorc
|
r30434 | |||
return op - ostart; | ||||
} | ||||
Gregory Szorc
|
r37513 | MEM_STATIC size_t ZSTD_compressSequences(seqStore_t* seqStorePtr, | ||
Gregory Szorc
|
r40157 | const ZSTD_entropyCTables_t* prevEntropy, | ||
Gregory Szorc
|
r37513 | ZSTD_entropyCTables_t* nextEntropy, | ||
Gregory Szorc
|
r40157 | const ZSTD_CCtx_params* cctxParams, | ||
Gregory Szorc
|
r37513 | void* dst, size_t dstCapacity, | ||
size_t srcSize, U32* workspace, int bmi2) | ||||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r37513 | size_t const cSize = ZSTD_compressSequences_internal( | ||
seqStorePtr, prevEntropy, nextEntropy, cctxParams, dst, dstCapacity, | ||||
workspace, bmi2); | ||||
Gregory Szorc
|
r40157 | if (cSize == 0) return 0; | ||
Gregory Szorc
|
r37513 | /* When srcSize <= dstCapacity, there is enough space to write a raw uncompressed block. | ||
* Since we ran out of space, block must be not compressible, so fall back to raw uncompressed block. | ||||
*/ | ||||
if ((cSize == ERROR(dstSize_tooSmall)) & (srcSize <= dstCapacity)) | ||||
return 0; /* block not compressed */ | ||||
if (ZSTD_isError(cSize)) return cSize; | ||||
/* Check compressibility */ | ||||
Gregory Szorc
|
r40157 | { size_t const maxCSize = srcSize - ZSTD_minGain(srcSize, cctxParams->cParams.strategy); | ||
Gregory Szorc
|
r37513 | if (cSize >= maxCSize) return 0; /* block not compressed */ | ||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r37513 | |||
return cSize; | ||||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r37513 | /* ZSTD_selectBlockCompressor() : | ||
* Not static, but internal use only (used by long distance matcher) | ||||
* assumption : strat is a valid strategy */ | ||||
Gregory Szorc
|
r40157 | ZSTD_blockCompressor ZSTD_selectBlockCompressor(ZSTD_strategy strat, ZSTD_dictMode_e dictMode) | ||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r40157 | static const ZSTD_blockCompressor blockCompressor[3][(unsigned)ZSTD_btultra+1] = { | ||
Gregory Szorc
|
r37513 | { ZSTD_compressBlock_fast /* default for 0 */, | ||
Gregory Szorc
|
r40157 | ZSTD_compressBlock_fast, | ||
ZSTD_compressBlock_doubleFast, | ||||
ZSTD_compressBlock_greedy, | ||||
ZSTD_compressBlock_lazy, | ||||
ZSTD_compressBlock_lazy2, | ||||
ZSTD_compressBlock_btlazy2, | ||||
ZSTD_compressBlock_btopt, | ||||
ZSTD_compressBlock_btultra }, | ||||
Gregory Szorc
|
r37513 | { ZSTD_compressBlock_fast_extDict /* default for 0 */, | ||
Gregory Szorc
|
r40157 | ZSTD_compressBlock_fast_extDict, | ||
ZSTD_compressBlock_doubleFast_extDict, | ||||
ZSTD_compressBlock_greedy_extDict, | ||||
ZSTD_compressBlock_lazy_extDict, | ||||
ZSTD_compressBlock_lazy2_extDict, | ||||
ZSTD_compressBlock_btlazy2_extDict, | ||||
ZSTD_compressBlock_btopt_extDict, | ||||
ZSTD_compressBlock_btultra_extDict }, | ||||
{ ZSTD_compressBlock_fast_dictMatchState /* default for 0 */, | ||||
ZSTD_compressBlock_fast_dictMatchState, | ||||
ZSTD_compressBlock_doubleFast_dictMatchState, | ||||
ZSTD_compressBlock_greedy_dictMatchState, | ||||
ZSTD_compressBlock_lazy_dictMatchState, | ||||
ZSTD_compressBlock_lazy2_dictMatchState, | ||||
ZSTD_compressBlock_btlazy2_dictMatchState, | ||||
ZSTD_compressBlock_btopt_dictMatchState, | ||||
ZSTD_compressBlock_btultra_dictMatchState } | ||||
Gregory Szorc
|
r37513 | }; | ||
Gregory Szorc
|
r40157 | ZSTD_blockCompressor selectedCompressor; | ||
Gregory Szorc
|
r37513 | ZSTD_STATIC_ASSERT((unsigned)ZSTD_fast == 1); | ||
assert((U32)strat >= (U32)ZSTD_fast); | ||||
assert((U32)strat <= (U32)ZSTD_btultra); | ||||
Gregory Szorc
|
r40157 | selectedCompressor = blockCompressor[(int)dictMode][(U32)strat]; | ||
assert(selectedCompressor != NULL); | ||||
return selectedCompressor; | ||||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r37513 | static void ZSTD_storeLastLiterals(seqStore_t* seqStorePtr, | ||
const BYTE* anchor, size_t lastLLSize) | ||||
{ | ||||
memcpy(seqStorePtr->lit, anchor, lastLLSize); | ||||
seqStorePtr->lit += lastLLSize; | ||||
} | ||||
Gregory Szorc
|
r40157 | void ZSTD_resetSeqStore(seqStore_t* ssPtr) | ||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r37513 | ssPtr->lit = ssPtr->litStart; | ||
ssPtr->sequences = ssPtr->sequencesStart; | ||||
ssPtr->longLengthID = 0; | ||||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r37513 | static size_t ZSTD_compressBlock_internal(ZSTD_CCtx* zc, | ||
void* dst, size_t dstCapacity, | ||||
const void* src, size_t srcSize) | ||||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r37513 | ZSTD_matchState_t* const ms = &zc->blockState.matchState; | ||
Gregory Szorc
|
r40157 | size_t cSize; | ||
DEBUGLOG(5, "ZSTD_compressBlock_internal (dstCapacity=%zu, dictLimit=%u, nextToUpdate=%u)", | ||||
dstCapacity, ms->window.dictLimit, ms->nextToUpdate); | ||||
assert(srcSize <= ZSTD_BLOCKSIZE_MAX); | ||||
/* Assert that we have correctly flushed the ctx params into the ms's copy */ | ||||
ZSTD_assertEqualCParams(zc->appliedParams.cParams, ms->cParams); | ||||
Gregory Szorc
|
r37513 | if (srcSize < MIN_CBLOCK_SIZE+ZSTD_blockHeaderSize+1) { | ||
ZSTD_ldm_skipSequences(&zc->externSeqStore, srcSize, zc->appliedParams.cParams.searchLength); | ||||
Gregory Szorc
|
r40157 | cSize = 0; | ||
goto out; /* don't even attempt compression below a certain srcSize */ | ||||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r37513 | ZSTD_resetSeqStore(&(zc->seqStore)); | ||
Gregory Szorc
|
r40157 | ms->opt.symbolCosts = &zc->blockState.prevCBlock->entropy; /* required for optimal parser to read stats from dictionary */ | ||
/* a gap between an attached dict and the current window is not safe, | ||||
* they must remain adjacent, and when that stops being the case, the dict | ||||
* must be unset */ | ||||
assert(ms->dictMatchState == NULL || ms->loadedDictEnd == ms->window.dictLimit); | ||||
Gregory Szorc
|
r37513 | |||
/* limited update after a very long match */ | ||||
{ const BYTE* const base = ms->window.base; | ||||
const BYTE* const istart = (const BYTE*)src; | ||||
const U32 current = (U32)(istart-base); | ||||
Gregory Szorc
|
r40157 | if (sizeof(ptrdiff_t)==8) assert(istart - base < (ptrdiff_t)(U32)(-1)); /* ensure no overflow */ | ||
Gregory Szorc
|
r37513 | if (current > ms->nextToUpdate + 384) | ||
ms->nextToUpdate = current - MIN(192, (U32)(current - ms->nextToUpdate - 384)); | ||||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r37513 | /* select and store sequences */ | ||
Gregory Szorc
|
r40157 | { ZSTD_dictMode_e const dictMode = ZSTD_matchState_dictMode(ms); | ||
Gregory Szorc
|
r37513 | size_t lastLLSize; | ||
{ int i; | ||||
for (i = 0; i < ZSTD_REP_NUM; ++i) | ||||
zc->blockState.nextCBlock->rep[i] = zc->blockState.prevCBlock->rep[i]; | ||||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r37513 | if (zc->externSeqStore.pos < zc->externSeqStore.size) { | ||
assert(!zc->appliedParams.ldmParams.enableLdm); | ||||
/* Updates ldmSeqStore.pos */ | ||||
lastLLSize = | ||||
ZSTD_ldm_blockCompress(&zc->externSeqStore, | ||||
ms, &zc->seqStore, | ||||
zc->blockState.nextCBlock->rep, | ||||
Gregory Szorc
|
r40157 | src, srcSize); | ||
Gregory Szorc
|
r37513 | assert(zc->externSeqStore.pos <= zc->externSeqStore.size); | ||
} else if (zc->appliedParams.ldmParams.enableLdm) { | ||||
rawSeqStore_t ldmSeqStore = {NULL, 0, 0, 0}; | ||||
ldmSeqStore.seq = zc->ldmSequences; | ||||
ldmSeqStore.capacity = zc->maxNbLdmSequences; | ||||
/* Updates ldmSeqStore.size */ | ||||
CHECK_F(ZSTD_ldm_generateSequences(&zc->ldmState, &ldmSeqStore, | ||||
&zc->appliedParams.ldmParams, | ||||
src, srcSize)); | ||||
/* Updates ldmSeqStore.pos */ | ||||
lastLLSize = | ||||
ZSTD_ldm_blockCompress(&ldmSeqStore, | ||||
ms, &zc->seqStore, | ||||
zc->blockState.nextCBlock->rep, | ||||
Gregory Szorc
|
r40157 | src, srcSize); | ||
Gregory Szorc
|
r37513 | assert(ldmSeqStore.pos == ldmSeqStore.size); | ||
} else { /* not long range mode */ | ||||
Gregory Szorc
|
r40157 | ZSTD_blockCompressor const blockCompressor = ZSTD_selectBlockCompressor(zc->appliedParams.cParams.strategy, dictMode); | ||
lastLLSize = blockCompressor(ms, &zc->seqStore, zc->blockState.nextCBlock->rep, src, srcSize); | ||||
Gregory Szorc
|
r37513 | } | ||
{ const BYTE* const lastLiterals = (const BYTE*)src + srcSize - lastLLSize; | ||||
ZSTD_storeLastLiterals(&zc->seqStore, lastLiterals, lastLLSize); | ||||
} } | ||||
/* encode sequences and literals */ | ||||
Gregory Szorc
|
r40157 | cSize = ZSTD_compressSequences(&zc->seqStore, | ||
&zc->blockState.prevCBlock->entropy, &zc->blockState.nextCBlock->entropy, | ||||
&zc->appliedParams, | ||||
dst, dstCapacity, | ||||
srcSize, zc->entropyWorkspace, zc->bmi2); | ||||
out: | ||||
if (!ZSTD_isError(cSize) && cSize != 0) { | ||||
/* confirm repcodes and entropy tables when emitting a compressed block */ | ||||
ZSTD_compressedBlockState_t* const tmp = zc->blockState.prevCBlock; | ||||
zc->blockState.prevCBlock = zc->blockState.nextCBlock; | ||||
zc->blockState.nextCBlock = tmp; | ||||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r40157 | /* We check that dictionaries have offset codes available for the first | ||
* block. After the first block, the offcode table might not have large | ||||
* enough codes to represent the offsets in the data. | ||||
*/ | ||||
if (zc->blockState.prevCBlock->entropy.fse.offcode_repeatMode == FSE_repeat_valid) | ||||
zc->blockState.prevCBlock->entropy.fse.offcode_repeatMode = FSE_repeat_check; | ||||
return cSize; | ||||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r37513 | /*! ZSTD_compress_frameChunk() : | ||
Gregory Szorc
|
r30434 | * Compress a chunk of data into one or multiple blocks. | ||
* All blocks will be terminated, all input will be consumed. | ||||
* Function will issue an error if there is not enough `dstCapacity` to hold the compressed content. | ||||
* Frame is supposed already started (header already produced) | ||||
* @return : compressed size, or an error code | ||||
*/ | ||||
Gregory Szorc
|
r37513 | static size_t ZSTD_compress_frameChunk (ZSTD_CCtx* cctx, | ||
Gregory Szorc
|
r30434 | void* dst, size_t dstCapacity, | ||
const void* src, size_t srcSize, | ||||
U32 lastFrameChunk) | ||||
{ | ||||
size_t blockSize = cctx->blockSize; | ||||
size_t remaining = srcSize; | ||||
const BYTE* ip = (const BYTE*)src; | ||||
BYTE* const ostart = (BYTE*)dst; | ||||
BYTE* op = ostart; | ||||
Gregory Szorc
|
r37513 | U32 const maxDist = (U32)1 << cctx->appliedParams.cParams.windowLog; | ||
assert(cctx->appliedParams.cParams.windowLog <= 31); | ||||
DEBUGLOG(5, "ZSTD_compress_frameChunk (blockSize=%u)", (U32)blockSize); | ||||
if (cctx->appliedParams.fParams.checksumFlag && srcSize) | ||||
Gregory Szorc
|
r30434 | XXH64_update(&cctx->xxhState, src, srcSize); | ||
while (remaining) { | ||||
Gregory Szorc
|
r37513 | ZSTD_matchState_t* const ms = &cctx->blockState.matchState; | ||
Gregory Szorc
|
r30434 | U32 const lastBlock = lastFrameChunk & (blockSize >= remaining); | ||
Gregory Szorc
|
r37513 | |||
if (dstCapacity < ZSTD_blockHeaderSize + MIN_CBLOCK_SIZE) | ||||
return ERROR(dstSize_tooSmall); /* not enough space to store compressed block */ | ||||
Gregory Szorc
|
r30434 | if (remaining < blockSize) blockSize = remaining; | ||
Gregory Szorc
|
r37513 | if (ZSTD_window_needOverflowCorrection(ms->window, ip + blockSize)) { | ||
U32 const cycleLog = ZSTD_cycleLog(cctx->appliedParams.cParams.chainLog, cctx->appliedParams.cParams.strategy); | ||||
U32 const correction = ZSTD_window_correctOverflow(&ms->window, cycleLog, maxDist, ip); | ||||
ZSTD_STATIC_ASSERT(ZSTD_CHAINLOG_MAX <= 30); | ||||
ZSTD_STATIC_ASSERT(ZSTD_WINDOWLOG_MAX_32 <= 30); | ||||
ZSTD_STATIC_ASSERT(ZSTD_WINDOWLOG_MAX <= 31); | ||||
Gregory Szorc
|
r30434 | ZSTD_reduceIndex(cctx, correction); | ||
Gregory Szorc
|
r37513 | if (ms->nextToUpdate < correction) ms->nextToUpdate = 0; | ||
else ms->nextToUpdate -= correction; | ||||
ms->loadedDictEnd = 0; | ||||
Gregory Szorc
|
r40157 | ms->dictMatchState = NULL; | ||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r40157 | ZSTD_window_enforceMaxDist(&ms->window, ip + blockSize, maxDist, &ms->loadedDictEnd, &ms->dictMatchState); | ||
Gregory Szorc
|
r37513 | if (ms->nextToUpdate < ms->window.lowLimit) ms->nextToUpdate = ms->window.lowLimit; | ||
{ size_t cSize = ZSTD_compressBlock_internal(cctx, | ||||
op+ZSTD_blockHeaderSize, dstCapacity-ZSTD_blockHeaderSize, | ||||
ip, blockSize); | ||||
if (ZSTD_isError(cSize)) return cSize; | ||||
if (cSize == 0) { /* block is not compressible */ | ||||
Gregory Szorc
|
r40157 | cSize = ZSTD_noCompressBlock(op, dstCapacity, ip, blockSize, lastBlock); | ||
if (ZSTD_isError(cSize)) return cSize; | ||||
Gregory Szorc
|
r37513 | } else { | ||
U32 const cBlockHeader24 = lastBlock + (((U32)bt_compressed)<<1) + (U32)(cSize << 3); | ||||
MEM_writeLE24(op, cBlockHeader24); | ||||
cSize += ZSTD_blockHeaderSize; | ||||
} | ||||
ip += blockSize; | ||||
assert(remaining >= blockSize); | ||||
remaining -= blockSize; | ||||
op += cSize; | ||||
assert(dstCapacity >= cSize); | ||||
dstCapacity -= cSize; | ||||
DEBUGLOG(5, "ZSTD_compress_frameChunk: adding a block of size %u", | ||||
(U32)cSize); | ||||
} } | ||||
Gregory Szorc
|
r30434 | |||
if (lastFrameChunk && (op>ostart)) cctx->stage = ZSTDcs_ending; | ||||
return op-ostart; | ||||
} | ||||
static size_t ZSTD_writeFrameHeader(void* dst, size_t dstCapacity, | ||||
Gregory Szorc
|
r37513 | ZSTD_CCtx_params params, U64 pledgedSrcSize, U32 dictID) | ||
Gregory Szorc
|
r30434 | { BYTE* const op = (BYTE*)dst; | ||
Gregory Szorc
|
r37513 | U32 const dictIDSizeCodeLength = (dictID>0) + (dictID>=256) + (dictID>=65536); /* 0-3 */ | ||
U32 const dictIDSizeCode = params.fParams.noDictIDFlag ? 0 : dictIDSizeCodeLength; /* 0-3 */ | ||||
Gregory Szorc
|
r30434 | U32 const checksumFlag = params.fParams.checksumFlag>0; | ||
Gregory Szorc
|
r37513 | U32 const windowSize = (U32)1 << params.cParams.windowLog; | ||
U32 const singleSegment = params.fParams.contentSizeFlag && (windowSize >= pledgedSrcSize); | ||||
Gregory Szorc
|
r30434 | BYTE const windowLogByte = (BYTE)((params.cParams.windowLog - ZSTD_WINDOWLOG_ABSOLUTEMIN) << 3); | ||
U32 const fcsCode = params.fParams.contentSizeFlag ? | ||||
Gregory Szorc
|
r37513 | (pledgedSrcSize>=256) + (pledgedSrcSize>=65536+256) + (pledgedSrcSize>=0xFFFFFFFFU) : 0; /* 0-3 */ | ||
Gregory Szorc
|
r30434 | BYTE const frameHeaderDecriptionByte = (BYTE)(dictIDSizeCode + (checksumFlag<<2) + (singleSegment<<5) + (fcsCode<<6) ); | ||
Gregory Szorc
|
r37513 | size_t pos=0; | ||
Gregory Szorc
|
r30434 | |||
Gregory Szorc
|
r40157 | assert(!(params.fParams.contentSizeFlag && pledgedSrcSize == ZSTD_CONTENTSIZE_UNKNOWN)); | ||
Gregory Szorc
|
r30434 | if (dstCapacity < ZSTD_frameHeaderSize_max) return ERROR(dstSize_tooSmall); | ||
Gregory Szorc
|
r37513 | DEBUGLOG(4, "ZSTD_writeFrameHeader : dictIDFlag : %u ; dictID : %u ; dictIDSizeCode : %u", | ||
!params.fParams.noDictIDFlag, dictID, dictIDSizeCode); | ||||
if (params.format == ZSTD_f_zstd1) { | ||||
MEM_writeLE32(dst, ZSTD_MAGICNUMBER); | ||||
pos = 4; | ||||
} | ||||
op[pos++] = frameHeaderDecriptionByte; | ||||
Gregory Szorc
|
r30434 | if (!singleSegment) op[pos++] = windowLogByte; | ||
switch(dictIDSizeCode) | ||||
{ | ||||
Gregory Szorc
|
r37513 | default: assert(0); /* impossible */ | ||
Gregory Szorc
|
r30434 | case 0 : break; | ||
case 1 : op[pos] = (BYTE)(dictID); pos++; break; | ||||
case 2 : MEM_writeLE16(op+pos, (U16)dictID); pos+=2; break; | ||||
case 3 : MEM_writeLE32(op+pos, dictID); pos+=4; break; | ||||
} | ||||
switch(fcsCode) | ||||
{ | ||||
Gregory Szorc
|
r37513 | default: assert(0); /* impossible */ | ||
Gregory Szorc
|
r30434 | case 0 : if (singleSegment) op[pos++] = (BYTE)(pledgedSrcSize); break; | ||
case 1 : MEM_writeLE16(op+pos, (U16)(pledgedSrcSize-256)); pos+=2; break; | ||||
case 2 : MEM_writeLE32(op+pos, (U32)(pledgedSrcSize)); pos+=4; break; | ||||
case 3 : MEM_writeLE64(op+pos, (U64)(pledgedSrcSize)); pos+=8; break; | ||||
} | ||||
return pos; | ||||
} | ||||
Gregory Szorc
|
r37513 | /* ZSTD_writeLastEmptyBlock() : | ||
* output an empty Block with end-of-frame mark to complete a frame | ||||
* @return : size of data written into `dst` (== ZSTD_blockHeaderSize (defined in zstd_internal.h)) | ||||
* or an error code if `dstCapcity` is too small (<ZSTD_blockHeaderSize) | ||||
*/ | ||||
size_t ZSTD_writeLastEmptyBlock(void* dst, size_t dstCapacity) | ||||
{ | ||||
if (dstCapacity < ZSTD_blockHeaderSize) return ERROR(dstSize_tooSmall); | ||||
{ U32 const cBlockHeader24 = 1 /*lastBlock*/ + (((U32)bt_raw)<<1); /* 0 size */ | ||||
MEM_writeLE24(dst, cBlockHeader24); | ||||
return ZSTD_blockHeaderSize; | ||||
} | ||||
} | ||||
size_t ZSTD_referenceExternalSequences(ZSTD_CCtx* cctx, rawSeq* seq, size_t nbSeq) | ||||
{ | ||||
if (cctx->stage != ZSTDcs_init) | ||||
return ERROR(stage_wrong); | ||||
if (cctx->appliedParams.ldmParams.enableLdm) | ||||
return ERROR(parameter_unsupported); | ||||
cctx->externSeqStore.seq = seq; | ||||
cctx->externSeqStore.size = nbSeq; | ||||
cctx->externSeqStore.capacity = nbSeq; | ||||
cctx->externSeqStore.pos = 0; | ||||
return 0; | ||||
} | ||||
Gregory Szorc
|
r30434 | |||
static size_t ZSTD_compressContinue_internal (ZSTD_CCtx* cctx, | ||||
void* dst, size_t dstCapacity, | ||||
const void* src, size_t srcSize, | ||||
U32 frame, U32 lastFrameChunk) | ||||
{ | ||||
Gregory Szorc
|
r40157 | ZSTD_matchState_t* const ms = &cctx->blockState.matchState; | ||
Gregory Szorc
|
r30434 | size_t fhSize = 0; | ||
Gregory Szorc
|
r37513 | DEBUGLOG(5, "ZSTD_compressContinue_internal, stage: %u, srcSize: %u", | ||
cctx->stage, (U32)srcSize); | ||||
Gregory Szorc
|
r30434 | if (cctx->stage==ZSTDcs_created) return ERROR(stage_wrong); /* missing init (ZSTD_compressBegin) */ | ||
if (frame && (cctx->stage==ZSTDcs_init)) { | ||||
Gregory Szorc
|
r37513 | fhSize = ZSTD_writeFrameHeader(dst, dstCapacity, cctx->appliedParams, | ||
cctx->pledgedSrcSizePlusOne-1, cctx->dictID); | ||||
Gregory Szorc
|
r30434 | if (ZSTD_isError(fhSize)) return fhSize; | ||
dstCapacity -= fhSize; | ||||
dst = (char*)dst + fhSize; | ||||
cctx->stage = ZSTDcs_ongoing; | ||||
} | ||||
Gregory Szorc
|
r37513 | if (!srcSize) return fhSize; /* do not generate an empty block if no input */ | ||
if (!ZSTD_window_update(&ms->window, src, srcSize)) { | ||||
ms->nextToUpdate = ms->window.dictLimit; | ||||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r40157 | if (cctx->appliedParams.ldmParams.enableLdm) { | ||
Gregory Szorc
|
r37513 | ZSTD_window_update(&cctx->ldmState.window, src, srcSize); | ||
Gregory Szorc
|
r40157 | } | ||
if (!frame) { | ||||
/* overflow check and correction for block mode */ | ||||
if (ZSTD_window_needOverflowCorrection(ms->window, (const char*)src + srcSize)) { | ||||
U32 const cycleLog = ZSTD_cycleLog(cctx->appliedParams.cParams.chainLog, cctx->appliedParams.cParams.strategy); | ||||
U32 const correction = ZSTD_window_correctOverflow(&ms->window, cycleLog, 1 << cctx->appliedParams.cParams.windowLog, src); | ||||
ZSTD_STATIC_ASSERT(ZSTD_CHAINLOG_MAX <= 30); | ||||
ZSTD_STATIC_ASSERT(ZSTD_WINDOWLOG_MAX_32 <= 30); | ||||
ZSTD_STATIC_ASSERT(ZSTD_WINDOWLOG_MAX <= 31); | ||||
ZSTD_reduceIndex(cctx, correction); | ||||
if (ms->nextToUpdate < correction) ms->nextToUpdate = 0; | ||||
else ms->nextToUpdate -= correction; | ||||
ms->loadedDictEnd = 0; | ||||
ms->dictMatchState = NULL; | ||||
} | ||||
} | ||||
Gregory Szorc
|
r37513 | |||
DEBUGLOG(5, "ZSTD_compressContinue_internal (blockSize=%u)", (U32)cctx->blockSize); | ||||
{ size_t const cSize = frame ? | ||||
ZSTD_compress_frameChunk (cctx, dst, dstCapacity, src, srcSize, lastFrameChunk) : | ||||
Gregory Szorc
|
r30434 | ZSTD_compressBlock_internal (cctx, dst, dstCapacity, src, srcSize); | ||
if (ZSTD_isError(cSize)) return cSize; | ||||
Gregory Szorc
|
r37513 | cctx->consumedSrcSize += srcSize; | ||
cctx->producedCSize += (cSize + fhSize); | ||||
Gregory Szorc
|
r40157 | assert(!(cctx->appliedParams.fParams.contentSizeFlag && cctx->pledgedSrcSizePlusOne == 0)); | ||
if (cctx->pledgedSrcSizePlusOne != 0) { /* control src size */ | ||||
ZSTD_STATIC_ASSERT(ZSTD_CONTENTSIZE_UNKNOWN == (unsigned long long)-1); | ||||
Gregory Szorc
|
r37513 | if (cctx->consumedSrcSize+1 > cctx->pledgedSrcSizePlusOne) { | ||
DEBUGLOG(4, "error : pledgedSrcSize = %u, while realSrcSize >= %u", | ||||
(U32)cctx->pledgedSrcSizePlusOne-1, (U32)cctx->consumedSrcSize); | ||||
return ERROR(srcSize_wrong); | ||||
} | ||||
} | ||||
Gregory Szorc
|
r30434 | return cSize + fhSize; | ||
Gregory Szorc
|
r37513 | } | ||
Gregory Szorc
|
r30434 | } | ||
size_t ZSTD_compressContinue (ZSTD_CCtx* cctx, | ||||
void* dst, size_t dstCapacity, | ||||
const void* src, size_t srcSize) | ||||
{ | ||||
Gregory Szorc
|
r37513 | DEBUGLOG(5, "ZSTD_compressContinue (srcSize=%u)", (U32)srcSize); | ||
return ZSTD_compressContinue_internal(cctx, dst, dstCapacity, src, srcSize, 1 /* frame mode */, 0 /* last chunk */); | ||||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r37513 | size_t ZSTD_getBlockSize(const ZSTD_CCtx* cctx) | ||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r37513 | ZSTD_compressionParameters const cParams = cctx->appliedParams.cParams; | ||
assert(!ZSTD_checkCParams(cParams)); | ||||
return MIN (ZSTD_BLOCKSIZE_MAX, (U32)1 << cParams.windowLog); | ||||
Gregory Szorc
|
r30434 | } | ||
size_t ZSTD_compressBlock(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize) | ||||
{ | ||||
Gregory Szorc
|
r37513 | size_t const blockSizeMax = ZSTD_getBlockSize(cctx); | ||
Gregory Szorc
|
r30434 | if (srcSize > blockSizeMax) return ERROR(srcSize_wrong); | ||
Gregory Szorc
|
r40157 | |||
Gregory Szorc
|
r37513 | return ZSTD_compressContinue_internal(cctx, dst, dstCapacity, src, srcSize, 0 /* frame mode */, 0 /* last chunk */); | ||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r37513 | /*! ZSTD_loadDictionaryContent() : | ||
* @return : 0, or an error code | ||||
*/ | ||||
Gregory Szorc
|
r40157 | static size_t ZSTD_loadDictionaryContent(ZSTD_matchState_t* ms, | ||
ZSTD_CCtx_params const* params, | ||||
const void* src, size_t srcSize, | ||||
ZSTD_dictTableLoadMethod_e dtlm) | ||||
Gregory Szorc
|
r30434 | { | ||
const BYTE* const ip = (const BYTE*) src; | ||||
const BYTE* const iend = ip + srcSize; | ||||
Gregory Szorc
|
r37513 | |||
ZSTD_window_update(&ms->window, src, srcSize); | ||||
ms->loadedDictEnd = params->forceWindow ? 0 : (U32)(iend - ms->window.base); | ||||
Gregory Szorc
|
r40157 | /* Assert that we the ms params match the params we're being given */ | ||
ZSTD_assertEqualCParams(params->cParams, ms->cParams); | ||||
Gregory Szorc
|
r30434 | if (srcSize <= HASH_READ_SIZE) return 0; | ||
Gregory Szorc
|
r37513 | switch(params->cParams.strategy) | ||
Gregory Szorc
|
r30434 | { | ||
case ZSTD_fast: | ||||
Gregory Szorc
|
r40157 | ZSTD_fillHashTable(ms, iend, dtlm); | ||
Gregory Szorc
|
r30434 | break; | ||
case ZSTD_dfast: | ||||
Gregory Szorc
|
r40157 | ZSTD_fillDoubleHashTable(ms, iend, dtlm); | ||
Gregory Szorc
|
r30434 | break; | ||
case ZSTD_greedy: | ||||
case ZSTD_lazy: | ||||
case ZSTD_lazy2: | ||||
Gregory Szorc
|
r37513 | if (srcSize >= HASH_READ_SIZE) | ||
Gregory Szorc
|
r40157 | ZSTD_insertAndFindFirstIndex(ms, iend-HASH_READ_SIZE); | ||
Gregory Szorc
|
r30434 | break; | ||
Gregory Szorc
|
r37513 | case ZSTD_btlazy2: /* we want the dictionary table fully sorted */ | ||
Gregory Szorc
|
r30434 | case ZSTD_btopt: | ||
Gregory Szorc
|
r37513 | case ZSTD_btultra: | ||
if (srcSize >= HASH_READ_SIZE) | ||||
Gregory Szorc
|
r40157 | ZSTD_updateTree(ms, iend-HASH_READ_SIZE, iend); | ||
Gregory Szorc
|
r30434 | break; | ||
default: | ||||
Gregory Szorc
|
r37513 | assert(0); /* not possible : not a valid strategy id */ | ||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r37513 | ms->nextToUpdate = (U32)(iend - ms->window.base); | ||
Gregory Szorc
|
r30434 | return 0; | ||
} | ||||
/* Dictionaries that assign zero probability to symbols that show up causes problems | ||||
when FSE encoding. Refuse dictionaries that assign zero probability to symbols | ||||
that we may encounter during compression. | ||||
NOTE: This behavior is not standard and could be improved in the future. */ | ||||
static size_t ZSTD_checkDictNCount(short* normalizedCounter, unsigned dictMaxSymbolValue, unsigned maxSymbolValue) { | ||||
U32 s; | ||||
if (dictMaxSymbolValue < maxSymbolValue) return ERROR(dictionary_corrupted); | ||||
for (s = 0; s <= maxSymbolValue; ++s) { | ||||
if (normalizedCounter[s] == 0) return ERROR(dictionary_corrupted); | ||||
} | ||||
return 0; | ||||
} | ||||
/* Dictionary format : | ||||
Gregory Szorc
|
r37513 | * See : | ||
* https://github.com/facebook/zstd/blob/master/doc/zstd_compression_format.md#dictionary-format | ||||
*/ | ||||
/*! ZSTD_loadZstdDictionary() : | ||||
* @return : dictID, or an error code | ||||
* assumptions : magic number supposed already checked | ||||
* dictSize supposed > 8 | ||||
*/ | ||||
Gregory Szorc
|
r40157 | static size_t ZSTD_loadZstdDictionary(ZSTD_compressedBlockState_t* bs, | ||
ZSTD_matchState_t* ms, | ||||
ZSTD_CCtx_params const* params, | ||||
const void* dict, size_t dictSize, | ||||
ZSTD_dictTableLoadMethod_e dtlm, | ||||
void* workspace) | ||||
Gregory Szorc
|
r30434 | { | ||
const BYTE* dictPtr = (const BYTE*)dict; | ||||
const BYTE* const dictEnd = dictPtr + dictSize; | ||||
short offcodeNCount[MaxOff+1]; | ||||
unsigned offcodeMaxValue = MaxOff; | ||||
Gregory Szorc
|
r37513 | size_t dictID; | ||
ZSTD_STATIC_ASSERT(HUF_WORKSPACE_SIZE >= (1<<MAX(MLFSELog,LLFSELog))); | ||||
Gregory Szorc
|
r40157 | assert(dictSize > 8); | ||
assert(MEM_readLE32(dictPtr) == ZSTD_MAGIC_DICTIONARY); | ||||
Gregory Szorc
|
r37513 | |||
dictPtr += 4; /* skip magic number */ | ||||
dictID = params->fParams.noDictIDFlag ? 0 : MEM_readLE32(dictPtr); | ||||
dictPtr += 4; | ||||
{ unsigned maxSymbolValue = 255; | ||||
Gregory Szorc
|
r40157 | size_t const hufHeaderSize = HUF_readCTable((HUF_CElt*)bs->entropy.huf.CTable, &maxSymbolValue, dictPtr, dictEnd-dictPtr); | ||
Gregory Szorc
|
r30434 | if (HUF_isError(hufHeaderSize)) return ERROR(dictionary_corrupted); | ||
Gregory Szorc
|
r37513 | if (maxSymbolValue < 255) return ERROR(dictionary_corrupted); | ||
Gregory Szorc
|
r30434 | dictPtr += hufHeaderSize; | ||
} | ||||
{ unsigned offcodeLog; | ||||
size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, dictEnd-dictPtr); | ||||
if (FSE_isError(offcodeHeaderSize)) return ERROR(dictionary_corrupted); | ||||
if (offcodeLog > OffFSELog) return ERROR(dictionary_corrupted); | ||||
/* Defer checking offcodeMaxValue because we need to know the size of the dictionary content */ | ||||
Gregory Szorc
|
r40157 | /* fill all offset symbols to avoid garbage at end of table */ | ||
CHECK_E( FSE_buildCTable_wksp(bs->entropy.fse.offcodeCTable, offcodeNCount, MaxOff, offcodeLog, workspace, HUF_WORKSPACE_SIZE), | ||||
Gregory Szorc
|
r37513 | dictionary_corrupted); | ||
Gregory Szorc
|
r30434 | dictPtr += offcodeHeaderSize; | ||
} | ||||
{ short matchlengthNCount[MaxML+1]; | ||||
unsigned matchlengthMaxValue = MaxML, matchlengthLog; | ||||
size_t const matchlengthHeaderSize = FSE_readNCount(matchlengthNCount, &matchlengthMaxValue, &matchlengthLog, dictPtr, dictEnd-dictPtr); | ||||
if (FSE_isError(matchlengthHeaderSize)) return ERROR(dictionary_corrupted); | ||||
if (matchlengthLog > MLFSELog) return ERROR(dictionary_corrupted); | ||||
/* Every match length code must have non-zero probability */ | ||||
Gregory Szorc
|
r37513 | CHECK_F( ZSTD_checkDictNCount(matchlengthNCount, matchlengthMaxValue, MaxML)); | ||
Gregory Szorc
|
r40157 | CHECK_E( FSE_buildCTable_wksp(bs->entropy.fse.matchlengthCTable, matchlengthNCount, matchlengthMaxValue, matchlengthLog, workspace, HUF_WORKSPACE_SIZE), | ||
Gregory Szorc
|
r37513 | dictionary_corrupted); | ||
Gregory Szorc
|
r30434 | dictPtr += matchlengthHeaderSize; | ||
} | ||||
{ short litlengthNCount[MaxLL+1]; | ||||
unsigned litlengthMaxValue = MaxLL, litlengthLog; | ||||
size_t const litlengthHeaderSize = FSE_readNCount(litlengthNCount, &litlengthMaxValue, &litlengthLog, dictPtr, dictEnd-dictPtr); | ||||
if (FSE_isError(litlengthHeaderSize)) return ERROR(dictionary_corrupted); | ||||
if (litlengthLog > LLFSELog) return ERROR(dictionary_corrupted); | ||||
/* Every literal length code must have non-zero probability */ | ||||
Gregory Szorc
|
r37513 | CHECK_F( ZSTD_checkDictNCount(litlengthNCount, litlengthMaxValue, MaxLL)); | ||
Gregory Szorc
|
r40157 | CHECK_E( FSE_buildCTable_wksp(bs->entropy.fse.litlengthCTable, litlengthNCount, litlengthMaxValue, litlengthLog, workspace, HUF_WORKSPACE_SIZE), | ||
Gregory Szorc
|
r37513 | dictionary_corrupted); | ||
Gregory Szorc
|
r30434 | dictPtr += litlengthHeaderSize; | ||
} | ||||
if (dictPtr+12 > dictEnd) return ERROR(dictionary_corrupted); | ||||
Gregory Szorc
|
r37513 | bs->rep[0] = MEM_readLE32(dictPtr+0); | ||
bs->rep[1] = MEM_readLE32(dictPtr+4); | ||||
bs->rep[2] = MEM_readLE32(dictPtr+8); | ||||
Gregory Szorc
|
r30434 | dictPtr += 12; | ||
Gregory Szorc
|
r37513 | { size_t const dictContentSize = (size_t)(dictEnd - dictPtr); | ||
U32 offcodeMax = MaxOff; | ||||
if (dictContentSize <= ((U32)-1) - 128 KB) { | ||||
U32 const maxOffset = (U32)dictContentSize + 128 KB; /* The maximum offset that must be supported */ | ||||
offcodeMax = ZSTD_highbit32(maxOffset); /* Calculate minimum offset code required to represent maxOffset */ | ||||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r37513 | /* All offset values <= dictContentSize + 128 KB must be representable */ | ||
Gregory Szorc
|
r30434 | CHECK_F (ZSTD_checkDictNCount(offcodeNCount, offcodeMaxValue, MIN(offcodeMax, MaxOff))); | ||
Gregory Szorc
|
r37513 | /* All repCodes must be <= dictContentSize and != 0*/ | ||
{ U32 u; | ||||
for (u=0; u<3; u++) { | ||||
if (bs->rep[u] == 0) return ERROR(dictionary_corrupted); | ||||
if (bs->rep[u] > dictContentSize) return ERROR(dictionary_corrupted); | ||||
} } | ||||
Gregory Szorc
|
r40157 | bs->entropy.huf.repeatMode = HUF_repeat_valid; | ||
bs->entropy.fse.offcode_repeatMode = FSE_repeat_valid; | ||||
bs->entropy.fse.matchlength_repeatMode = FSE_repeat_valid; | ||||
bs->entropy.fse.litlength_repeatMode = FSE_repeat_valid; | ||||
CHECK_F(ZSTD_loadDictionaryContent(ms, params, dictPtr, dictContentSize, dtlm)); | ||||
Gregory Szorc
|
r37513 | return dictID; | ||
Gregory Szorc
|
r30434 | } | ||
} | ||||
/** ZSTD_compress_insertDictionary() : | ||||
Gregory Szorc
|
r37513 | * @return : dictID, or an error code */ | ||
Gregory Szorc
|
r40157 | static size_t | ||
ZSTD_compress_insertDictionary(ZSTD_compressedBlockState_t* bs, | ||||
ZSTD_matchState_t* ms, | ||||
const ZSTD_CCtx_params* params, | ||||
const void* dict, size_t dictSize, | ||||
ZSTD_dictContentType_e dictContentType, | ||||
ZSTD_dictTableLoadMethod_e dtlm, | ||||
void* workspace) | ||||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r37513 | DEBUGLOG(4, "ZSTD_compress_insertDictionary (dictSize=%u)", (U32)dictSize); | ||
Gregory Szorc
|
r30434 | if ((dict==NULL) || (dictSize<=8)) return 0; | ||
Gregory Szorc
|
r37513 | ZSTD_reset_compressedBlockState(bs); | ||
/* dict restricted modes */ | ||||
if (dictContentType == ZSTD_dct_rawContent) | ||||
Gregory Szorc
|
r40157 | return ZSTD_loadDictionaryContent(ms, params, dict, dictSize, dtlm); | ||
Gregory Szorc
|
r37513 | |||
if (MEM_readLE32(dict) != ZSTD_MAGIC_DICTIONARY) { | ||||
if (dictContentType == ZSTD_dct_auto) { | ||||
DEBUGLOG(4, "raw content dictionary detected"); | ||||
Gregory Szorc
|
r40157 | return ZSTD_loadDictionaryContent(ms, params, dict, dictSize, dtlm); | ||
Gregory Szorc
|
r37513 | } | ||
if (dictContentType == ZSTD_dct_fullDict) | ||||
return ERROR(dictionary_wrong); | ||||
assert(0); /* impossible */ | ||||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r37513 | |||
/* dict as full zstd dictionary */ | ||||
Gregory Szorc
|
r40157 | return ZSTD_loadZstdDictionary(bs, ms, params, dict, dictSize, dtlm, workspace); | ||
Gregory Szorc
|
r30434 | } | ||
/*! ZSTD_compressBegin_internal() : | ||||
Gregory Szorc
|
r37513 | * @return : 0, or an error code */ | ||
Gregory Szorc
|
r40157 | static size_t ZSTD_compressBegin_internal(ZSTD_CCtx* cctx, | ||
const void* dict, size_t dictSize, | ||||
ZSTD_dictContentType_e dictContentType, | ||||
ZSTD_dictTableLoadMethod_e dtlm, | ||||
const ZSTD_CDict* cdict, | ||||
ZSTD_CCtx_params params, U64 pledgedSrcSize, | ||||
ZSTD_buffered_policy_e zbuff) | ||||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r37513 | DEBUGLOG(4, "ZSTD_compressBegin_internal: wlog=%u", params.cParams.windowLog); | ||
/* params are supposed to be fully validated at this point */ | ||||
assert(!ZSTD_isError(ZSTD_checkCParams(params.cParams))); | ||||
assert(!((dict) && (cdict))); /* either dict or cdict, not both */ | ||||
if (cdict && cdict->dictContentSize>0) { | ||||
Gregory Szorc
|
r40157 | return ZSTD_resetCCtx_usingCDict(cctx, cdict, params, pledgedSrcSize, zbuff); | ||
Gregory Szorc
|
r37513 | } | ||
CHECK_F( ZSTD_resetCCtx_internal(cctx, params, pledgedSrcSize, | ||||
ZSTDcrp_continue, zbuff) ); | ||||
{ | ||||
size_t const dictID = ZSTD_compress_insertDictionary( | ||||
cctx->blockState.prevCBlock, &cctx->blockState.matchState, | ||||
Gregory Szorc
|
r40157 | ¶ms, dict, dictSize, dictContentType, dtlm, cctx->entropyWorkspace); | ||
Gregory Szorc
|
r37513 | if (ZSTD_isError(dictID)) return dictID; | ||
assert(dictID <= (size_t)(U32)-1); | ||||
cctx->dictID = (U32)dictID; | ||||
} | ||||
return 0; | ||||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r37513 | size_t ZSTD_compressBegin_advanced_internal(ZSTD_CCtx* cctx, | ||
const void* dict, size_t dictSize, | ||||
ZSTD_dictContentType_e dictContentType, | ||||
Gregory Szorc
|
r40157 | ZSTD_dictTableLoadMethod_e dtlm, | ||
Gregory Szorc
|
r37513 | const ZSTD_CDict* cdict, | ||
ZSTD_CCtx_params params, | ||||
unsigned long long pledgedSrcSize) | ||||
{ | ||||
DEBUGLOG(4, "ZSTD_compressBegin_advanced_internal: wlog=%u", params.cParams.windowLog); | ||||
/* compression parameters verification and optimization */ | ||||
CHECK_F( ZSTD_checkCParams(params.cParams) ); | ||||
return ZSTD_compressBegin_internal(cctx, | ||||
Gregory Szorc
|
r40157 | dict, dictSize, dictContentType, dtlm, | ||
Gregory Szorc
|
r37513 | cdict, | ||
params, pledgedSrcSize, | ||||
ZSTDb_not_buffered); | ||||
} | ||||
Gregory Szorc
|
r30434 | |||
/*! ZSTD_compressBegin_advanced() : | ||||
* @return : 0, or an error code */ | ||||
size_t ZSTD_compressBegin_advanced(ZSTD_CCtx* cctx, | ||||
const void* dict, size_t dictSize, | ||||
ZSTD_parameters params, unsigned long long pledgedSrcSize) | ||||
{ | ||||
Gregory Szorc
|
r37513 | ZSTD_CCtx_params const cctxParams = | ||
ZSTD_assignParamsToCCtxParams(cctx->requestedParams, params); | ||||
return ZSTD_compressBegin_advanced_internal(cctx, | ||||
Gregory Szorc
|
r40157 | dict, dictSize, ZSTD_dct_auto, ZSTD_dtlm_fast, | ||
Gregory Szorc
|
r37513 | NULL /*cdict*/, | ||
cctxParams, pledgedSrcSize); | ||||
Gregory Szorc
|
r30434 | } | ||
size_t ZSTD_compressBegin_usingDict(ZSTD_CCtx* cctx, const void* dict, size_t dictSize, int compressionLevel) | ||||
{ | ||||
Gregory Szorc
|
r37513 | ZSTD_parameters const params = ZSTD_getParams(compressionLevel, ZSTD_CONTENTSIZE_UNKNOWN, dictSize); | ||
ZSTD_CCtx_params const cctxParams = | ||||
ZSTD_assignParamsToCCtxParams(cctx->requestedParams, params); | ||||
DEBUGLOG(4, "ZSTD_compressBegin_usingDict (dictSize=%u)", (U32)dictSize); | ||||
Gregory Szorc
|
r40157 | return ZSTD_compressBegin_internal(cctx, dict, dictSize, ZSTD_dct_auto, ZSTD_dtlm_fast, NULL, | ||
Gregory Szorc
|
r37513 | cctxParams, ZSTD_CONTENTSIZE_UNKNOWN, ZSTDb_not_buffered); | ||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r30895 | size_t ZSTD_compressBegin(ZSTD_CCtx* cctx, int compressionLevel) | ||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r30895 | return ZSTD_compressBegin_usingDict(cctx, NULL, 0, compressionLevel); | ||
Gregory Szorc
|
r30434 | } | ||
/*! ZSTD_writeEpilogue() : | ||||
* Ends a frame. | ||||
* @return : nb of bytes written into dst (or an error code) */ | ||||
static size_t ZSTD_writeEpilogue(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity) | ||||
{ | ||||
BYTE* const ostart = (BYTE*)dst; | ||||
BYTE* op = ostart; | ||||
size_t fhSize = 0; | ||||
Gregory Szorc
|
r37513 | DEBUGLOG(4, "ZSTD_writeEpilogue"); | ||
Gregory Szorc
|
r30434 | if (cctx->stage == ZSTDcs_created) return ERROR(stage_wrong); /* init missing */ | ||
/* special case : empty frame */ | ||||
if (cctx->stage == ZSTDcs_init) { | ||||
Gregory Szorc
|
r37513 | fhSize = ZSTD_writeFrameHeader(dst, dstCapacity, cctx->appliedParams, 0, 0); | ||
Gregory Szorc
|
r30434 | if (ZSTD_isError(fhSize)) return fhSize; | ||
dstCapacity -= fhSize; | ||||
op += fhSize; | ||||
cctx->stage = ZSTDcs_ongoing; | ||||
} | ||||
if (cctx->stage != ZSTDcs_ending) { | ||||
/* write one last empty block, make it the "last" block */ | ||||
U32 const cBlockHeader24 = 1 /* last block */ + (((U32)bt_raw)<<1) + 0; | ||||
if (dstCapacity<4) return ERROR(dstSize_tooSmall); | ||||
MEM_writeLE32(op, cBlockHeader24); | ||||
op += ZSTD_blockHeaderSize; | ||||
dstCapacity -= ZSTD_blockHeaderSize; | ||||
} | ||||
Gregory Szorc
|
r37513 | if (cctx->appliedParams.fParams.checksumFlag) { | ||
Gregory Szorc
|
r30434 | U32 const checksum = (U32) XXH64_digest(&cctx->xxhState); | ||
if (dstCapacity<4) return ERROR(dstSize_tooSmall); | ||||
Gregory Szorc
|
r37513 | DEBUGLOG(4, "ZSTD_writeEpilogue: write checksum : %08X", checksum); | ||
Gregory Szorc
|
r30434 | MEM_writeLE32(op, checksum); | ||
op += 4; | ||||
} | ||||
cctx->stage = ZSTDcs_created; /* return to "created but no init" status */ | ||||
return op-ostart; | ||||
} | ||||
size_t ZSTD_compressEnd (ZSTD_CCtx* cctx, | ||||
void* dst, size_t dstCapacity, | ||||
const void* src, size_t srcSize) | ||||
{ | ||||
size_t endResult; | ||||
Gregory Szorc
|
r37513 | size_t const cSize = ZSTD_compressContinue_internal(cctx, | ||
dst, dstCapacity, src, srcSize, | ||||
1 /* frame mode */, 1 /* last chunk */); | ||||
Gregory Szorc
|
r30434 | if (ZSTD_isError(cSize)) return cSize; | ||
endResult = ZSTD_writeEpilogue(cctx, (char*)dst + cSize, dstCapacity-cSize); | ||||
if (ZSTD_isError(endResult)) return endResult; | ||||
Gregory Szorc
|
r40157 | assert(!(cctx->appliedParams.fParams.contentSizeFlag && cctx->pledgedSrcSizePlusOne == 0)); | ||
if (cctx->pledgedSrcSizePlusOne != 0) { /* control src size */ | ||||
ZSTD_STATIC_ASSERT(ZSTD_CONTENTSIZE_UNKNOWN == (unsigned long long)-1); | ||||
Gregory Szorc
|
r37513 | DEBUGLOG(4, "end of frame : controlling src size"); | ||
if (cctx->pledgedSrcSizePlusOne != cctx->consumedSrcSize+1) { | ||||
DEBUGLOG(4, "error : pledgedSrcSize = %u, while realSrcSize = %u", | ||||
(U32)cctx->pledgedSrcSizePlusOne-1, (U32)cctx->consumedSrcSize); | ||||
return ERROR(srcSize_wrong); | ||||
} } | ||||
Gregory Szorc
|
r30434 | return cSize + endResult; | ||
} | ||||
static size_t ZSTD_compress_internal (ZSTD_CCtx* cctx, | ||||
Gregory Szorc
|
r40157 | void* dst, size_t dstCapacity, | ||
const void* src, size_t srcSize, | ||||
const void* dict,size_t dictSize, | ||||
ZSTD_parameters params) | ||||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r37513 | ZSTD_CCtx_params const cctxParams = | ||
ZSTD_assignParamsToCCtxParams(cctx->requestedParams, params); | ||||
DEBUGLOG(4, "ZSTD_compress_internal"); | ||||
return ZSTD_compress_advanced_internal(cctx, | ||||
Gregory Szorc
|
r40157 | dst, dstCapacity, | ||
src, srcSize, | ||||
dict, dictSize, | ||||
cctxParams); | ||||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r40157 | size_t ZSTD_compress_advanced (ZSTD_CCtx* cctx, | ||
Gregory Szorc
|
r30434 | void* dst, size_t dstCapacity, | ||
const void* src, size_t srcSize, | ||||
const void* dict,size_t dictSize, | ||||
ZSTD_parameters params) | ||||
{ | ||||
Gregory Szorc
|
r37513 | DEBUGLOG(4, "ZSTD_compress_advanced"); | ||
Gregory Szorc
|
r30434 | CHECK_F(ZSTD_checkCParams(params.cParams)); | ||
Gregory Szorc
|
r40157 | return ZSTD_compress_internal(cctx, | ||
dst, dstCapacity, | ||||
src, srcSize, | ||||
dict, dictSize, | ||||
params); | ||||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r37513 | /* Internal */ | ||
size_t ZSTD_compress_advanced_internal( | ||||
ZSTD_CCtx* cctx, | ||||
void* dst, size_t dstCapacity, | ||||
const void* src, size_t srcSize, | ||||
const void* dict,size_t dictSize, | ||||
ZSTD_CCtx_params params) | ||||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r40157 | DEBUGLOG(4, "ZSTD_compress_advanced_internal (srcSize:%u)", (U32)srcSize); | ||
CHECK_F( ZSTD_compressBegin_internal(cctx, | ||||
dict, dictSize, ZSTD_dct_auto, ZSTD_dtlm_fast, NULL, | ||||
params, srcSize, ZSTDb_not_buffered) ); | ||||
Gregory Szorc
|
r37513 | return ZSTD_compressEnd(cctx, dst, dstCapacity, src, srcSize); | ||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r40157 | size_t ZSTD_compress_usingDict(ZSTD_CCtx* cctx, | ||
void* dst, size_t dstCapacity, | ||||
const void* src, size_t srcSize, | ||||
const void* dict, size_t dictSize, | ||||
int compressionLevel) | ||||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r40157 | ZSTD_parameters const params = ZSTD_getParams(compressionLevel, srcSize + (!srcSize), dict ? dictSize : 0); | ||
Gregory Szorc
|
r37513 | ZSTD_CCtx_params cctxParams = ZSTD_assignParamsToCCtxParams(cctx->requestedParams, params); | ||
assert(params.fParams.contentSizeFlag == 1); | ||||
return ZSTD_compress_advanced_internal(cctx, dst, dstCapacity, src, srcSize, dict, dictSize, cctxParams); | ||||
} | ||||
Gregory Szorc
|
r40157 | size_t ZSTD_compressCCtx(ZSTD_CCtx* cctx, | ||
void* dst, size_t dstCapacity, | ||||
const void* src, size_t srcSize, | ||||
int compressionLevel) | ||||
Gregory Szorc
|
r37513 | { | ||
DEBUGLOG(4, "ZSTD_compressCCtx (srcSize=%u)", (U32)srcSize); | ||||
Gregory Szorc
|
r40157 | assert(cctx != NULL); | ||
Gregory Szorc
|
r37513 | return ZSTD_compress_usingDict(cctx, dst, dstCapacity, src, srcSize, NULL, 0, compressionLevel); | ||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r40157 | size_t ZSTD_compress(void* dst, size_t dstCapacity, | ||
const void* src, size_t srcSize, | ||||
int compressionLevel) | ||||
Gregory Szorc
|
r30434 | { | ||
size_t result; | ||||
ZSTD_CCtx ctxBody; | ||||
Gregory Szorc
|
r40157 | ZSTD_initCCtx(&ctxBody, ZSTD_defaultCMem); | ||
Gregory Szorc
|
r30434 | result = ZSTD_compressCCtx(&ctxBody, dst, dstCapacity, src, srcSize, compressionLevel); | ||
Gregory Szorc
|
r40157 | ZSTD_freeCCtxContent(&ctxBody); /* can't free ctxBody itself, as it's on stack; free only heap content */ | ||
Gregory Szorc
|
r30434 | return result; | ||
} | ||||
/* ===== Dictionary API ===== */ | ||||
Gregory Szorc
|
r37513 | /*! ZSTD_estimateCDictSize_advanced() : | ||
* Estimate amount of memory that will be needed to create a dictionary with following arguments */ | ||||
size_t ZSTD_estimateCDictSize_advanced( | ||||
size_t dictSize, ZSTD_compressionParameters cParams, | ||||
ZSTD_dictLoadMethod_e dictLoadMethod) | ||||
{ | ||||
DEBUGLOG(5, "sizeof(ZSTD_CDict) : %u", (U32)sizeof(ZSTD_CDict)); | ||||
return sizeof(ZSTD_CDict) + HUF_WORKSPACE_SIZE + ZSTD_sizeof_matchState(&cParams, /* forCCtx */ 0) | ||||
+ (dictLoadMethod == ZSTD_dlm_byRef ? 0 : dictSize); | ||||
} | ||||
size_t ZSTD_estimateCDictSize(size_t dictSize, int compressionLevel) | ||||
{ | ||||
ZSTD_compressionParameters const cParams = ZSTD_getCParams(compressionLevel, 0, dictSize); | ||||
return ZSTD_estimateCDictSize_advanced(dictSize, cParams, ZSTD_dlm_byCopy); | ||||
} | ||||
Gregory Szorc
|
r30434 | |||
size_t ZSTD_sizeof_CDict(const ZSTD_CDict* cdict) | ||||
{ | ||||
if (cdict==NULL) return 0; /* support sizeof on NULL */ | ||||
Gregory Szorc
|
r37513 | DEBUGLOG(5, "sizeof(*cdict) : %u", (U32)sizeof(*cdict)); | ||
return cdict->workspaceSize + (cdict->dictBuffer ? cdict->dictContentSize : 0) + sizeof(*cdict); | ||||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r37513 | static size_t ZSTD_initCDict_internal( | ||
ZSTD_CDict* cdict, | ||||
const void* dictBuffer, size_t dictSize, | ||||
ZSTD_dictLoadMethod_e dictLoadMethod, | ||||
ZSTD_dictContentType_e dictContentType, | ||||
ZSTD_compressionParameters cParams) | ||||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r40157 | DEBUGLOG(3, "ZSTD_initCDict_internal (dictContentType:%u)", (U32)dictContentType); | ||
Gregory Szorc
|
r37513 | assert(!ZSTD_checkCParams(cParams)); | ||
Gregory Szorc
|
r40157 | cdict->matchState.cParams = cParams; | ||
Gregory Szorc
|
r37513 | if ((dictLoadMethod == ZSTD_dlm_byRef) || (!dictBuffer) || (!dictSize)) { | ||
cdict->dictBuffer = NULL; | ||||
cdict->dictContent = dictBuffer; | ||||
} else { | ||||
void* const internalBuffer = ZSTD_malloc(dictSize, cdict->customMem); | ||||
cdict->dictBuffer = internalBuffer; | ||||
cdict->dictContent = internalBuffer; | ||||
if (!internalBuffer) return ERROR(memory_allocation); | ||||
memcpy(internalBuffer, dictBuffer, dictSize); | ||||
} | ||||
cdict->dictContentSize = dictSize; | ||||
/* Reset the state to no dictionary */ | ||||
ZSTD_reset_compressedBlockState(&cdict->cBlockState); | ||||
{ void* const end = ZSTD_reset_matchState( | ||||
&cdict->matchState, | ||||
(U32*)cdict->workspace + HUF_WORKSPACE_SIZE_U32, | ||||
&cParams, ZSTDcrp_continue, /* forCCtx */ 0); | ||||
assert(end == (char*)cdict->workspace + cdict->workspaceSize); | ||||
(void)end; | ||||
} | ||||
/* (Maybe) load the dictionary | ||||
* Skips loading the dictionary if it is <= 8 bytes. | ||||
*/ | ||||
{ ZSTD_CCtx_params params; | ||||
memset(¶ms, 0, sizeof(params)); | ||||
params.compressionLevel = ZSTD_CLEVEL_DEFAULT; | ||||
params.fParams.contentSizeFlag = 1; | ||||
params.cParams = cParams; | ||||
{ size_t const dictID = ZSTD_compress_insertDictionary( | ||||
&cdict->cBlockState, &cdict->matchState, ¶ms, | ||||
cdict->dictContent, cdict->dictContentSize, | ||||
Gregory Szorc
|
r40157 | dictContentType, ZSTD_dtlm_full, cdict->workspace); | ||
Gregory Szorc
|
r37513 | if (ZSTD_isError(dictID)) return dictID; | ||
assert(dictID <= (size_t)(U32)-1); | ||||
cdict->dictID = (U32)dictID; | ||||
} | ||||
} | ||||
return 0; | ||||
} | ||||
ZSTD_CDict* ZSTD_createCDict_advanced(const void* dictBuffer, size_t dictSize, | ||||
ZSTD_dictLoadMethod_e dictLoadMethod, | ||||
ZSTD_dictContentType_e dictContentType, | ||||
ZSTD_compressionParameters cParams, ZSTD_customMem customMem) | ||||
{ | ||||
DEBUGLOG(3, "ZSTD_createCDict_advanced, mode %u", (U32)dictContentType); | ||||
if (!customMem.customAlloc ^ !customMem.customFree) return NULL; | ||||
{ ZSTD_CDict* const cdict = (ZSTD_CDict*)ZSTD_malloc(sizeof(ZSTD_CDict), customMem); | ||||
size_t const workspaceSize = HUF_WORKSPACE_SIZE + ZSTD_sizeof_matchState(&cParams, /* forCCtx */ 0); | ||||
void* const workspace = ZSTD_malloc(workspaceSize, customMem); | ||||
if (!cdict || !workspace) { | ||||
Gregory Szorc
|
r30434 | ZSTD_free(cdict, customMem); | ||
Gregory Szorc
|
r37513 | ZSTD_free(workspace, customMem); | ||
Gregory Szorc
|
r30434 | return NULL; | ||
} | ||||
Gregory Szorc
|
r37513 | cdict->customMem = customMem; | ||
cdict->workspace = workspace; | ||||
cdict->workspaceSize = workspaceSize; | ||||
if (ZSTD_isError( ZSTD_initCDict_internal(cdict, | ||||
dictBuffer, dictSize, | ||||
dictLoadMethod, dictContentType, | ||||
cParams) )) { | ||||
ZSTD_freeCDict(cdict); | ||||
return NULL; | ||||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r30895 | |||
Gregory Szorc
|
r30434 | return cdict; | ||
} | ||||
} | ||||
ZSTD_CDict* ZSTD_createCDict(const void* dict, size_t dictSize, int compressionLevel) | ||||
{ | ||||
Gregory Szorc
|
r37513 | ZSTD_compressionParameters cParams = ZSTD_getCParams(compressionLevel, 0, dictSize); | ||
return ZSTD_createCDict_advanced(dict, dictSize, | ||||
ZSTD_dlm_byCopy, ZSTD_dct_auto, | ||||
cParams, ZSTD_defaultCMem); | ||||
Gregory Szorc
|
r30895 | } | ||
ZSTD_CDict* ZSTD_createCDict_byReference(const void* dict, size_t dictSize, int compressionLevel) | ||||
{ | ||||
Gregory Szorc
|
r37513 | ZSTD_compressionParameters cParams = ZSTD_getCParams(compressionLevel, 0, dictSize); | ||
return ZSTD_createCDict_advanced(dict, dictSize, | ||||
ZSTD_dlm_byRef, ZSTD_dct_auto, | ||||
cParams, ZSTD_defaultCMem); | ||||
Gregory Szorc
|
r30434 | } | ||
size_t ZSTD_freeCDict(ZSTD_CDict* cdict) | ||||
{ | ||||
if (cdict==NULL) return 0; /* support free on NULL */ | ||||
Gregory Szorc
|
r37513 | { ZSTD_customMem const cMem = cdict->customMem; | ||
ZSTD_free(cdict->workspace, cMem); | ||||
Gregory Szorc
|
r30895 | ZSTD_free(cdict->dictBuffer, cMem); | ||
Gregory Szorc
|
r30434 | ZSTD_free(cdict, cMem); | ||
return 0; | ||||
} | ||||
} | ||||
Gregory Szorc
|
r37513 | /*! ZSTD_initStaticCDict_advanced() : | ||
* Generate a digested dictionary in provided memory area. | ||||
* workspace: The memory area to emplace the dictionary into. | ||||
* Provided pointer must 8-bytes aligned. | ||||
* It must outlive dictionary usage. | ||||
* workspaceSize: Use ZSTD_estimateCDictSize() | ||||
* to determine how large workspace must be. | ||||
* cParams : use ZSTD_getCParams() to transform a compression level | ||||
* into its relevants cParams. | ||||
* @return : pointer to ZSTD_CDict*, or NULL if error (size too small) | ||||
* Note : there is no corresponding "free" function. | ||||
* Since workspace was allocated externally, it must be freed externally. | ||||
*/ | ||||
const ZSTD_CDict* ZSTD_initStaticCDict( | ||||
void* workspace, size_t workspaceSize, | ||||
const void* dict, size_t dictSize, | ||||
ZSTD_dictLoadMethod_e dictLoadMethod, | ||||
ZSTD_dictContentType_e dictContentType, | ||||
ZSTD_compressionParameters cParams) | ||||
{ | ||||
size_t const matchStateSize = ZSTD_sizeof_matchState(&cParams, /* forCCtx */ 0); | ||||
size_t const neededSize = sizeof(ZSTD_CDict) + (dictLoadMethod == ZSTD_dlm_byRef ? 0 : dictSize) | ||||
+ HUF_WORKSPACE_SIZE + matchStateSize; | ||||
ZSTD_CDict* const cdict = (ZSTD_CDict*) workspace; | ||||
void* ptr; | ||||
if ((size_t)workspace & 7) return NULL; /* 8-aligned */ | ||||
DEBUGLOG(4, "(workspaceSize < neededSize) : (%u < %u) => %u", | ||||
(U32)workspaceSize, (U32)neededSize, (U32)(workspaceSize < neededSize)); | ||||
if (workspaceSize < neededSize) return NULL; | ||||
if (dictLoadMethod == ZSTD_dlm_byCopy) { | ||||
memcpy(cdict+1, dict, dictSize); | ||||
dict = cdict+1; | ||||
ptr = (char*)workspace + sizeof(ZSTD_CDict) + dictSize; | ||||
} else { | ||||
ptr = cdict+1; | ||||
} | ||||
cdict->workspace = ptr; | ||||
cdict->workspaceSize = HUF_WORKSPACE_SIZE + matchStateSize; | ||||
if (ZSTD_isError( ZSTD_initCDict_internal(cdict, | ||||
dict, dictSize, | ||||
ZSTD_dlm_byRef, dictContentType, | ||||
cParams) )) | ||||
return NULL; | ||||
return cdict; | ||||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r37513 | ZSTD_compressionParameters ZSTD_getCParamsFromCDict(const ZSTD_CDict* cdict) | ||
{ | ||||
assert(cdict != NULL); | ||||
Gregory Szorc
|
r40157 | return cdict->matchState.cParams; | ||
Gregory Szorc
|
r37513 | } | ||
/* ZSTD_compressBegin_usingCDict_advanced() : | ||||
* cdict must be != NULL */ | ||||
size_t ZSTD_compressBegin_usingCDict_advanced( | ||||
ZSTD_CCtx* const cctx, const ZSTD_CDict* const cdict, | ||||
ZSTD_frameParameters const fParams, unsigned long long const pledgedSrcSize) | ||||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r37513 | DEBUGLOG(4, "ZSTD_compressBegin_usingCDict_advanced"); | ||
if (cdict==NULL) return ERROR(dictionary_wrong); | ||||
{ ZSTD_CCtx_params params = cctx->requestedParams; | ||||
params.cParams = ZSTD_getCParamsFromCDict(cdict); | ||||
/* Increase window log to fit the entire dictionary and source if the | ||||
* source size is known. Limit the increase to 19, which is the | ||||
* window log for compression level 1 with the largest source size. | ||||
*/ | ||||
if (pledgedSrcSize != ZSTD_CONTENTSIZE_UNKNOWN) { | ||||
U32 const limitedSrcSize = (U32)MIN(pledgedSrcSize, 1U << 19); | ||||
U32 const limitedSrcLog = limitedSrcSize > 1 ? ZSTD_highbit32(limitedSrcSize - 1) + 1 : 1; | ||||
params.cParams.windowLog = MAX(params.cParams.windowLog, limitedSrcLog); | ||||
} | ||||
params.fParams = fParams; | ||||
return ZSTD_compressBegin_internal(cctx, | ||||
Gregory Szorc
|
r40157 | NULL, 0, ZSTD_dct_auto, ZSTD_dtlm_fast, | ||
Gregory Szorc
|
r37513 | cdict, | ||
params, pledgedSrcSize, | ||||
ZSTDb_not_buffered); | ||||
} | ||||
} | ||||
/* ZSTD_compressBegin_usingCDict() : | ||||
* pledgedSrcSize=0 means "unknown" | ||||
* if pledgedSrcSize>0, it will enable contentSizeFlag */ | ||||
size_t ZSTD_compressBegin_usingCDict(ZSTD_CCtx* cctx, const ZSTD_CDict* cdict) | ||||
{ | ||||
ZSTD_frameParameters const fParams = { 0 /*content*/, 0 /*checksum*/, 0 /*noDictID*/ }; | ||||
DEBUGLOG(4, "ZSTD_compressBegin_usingCDict : dictIDFlag == %u", !fParams.noDictIDFlag); | ||||
Gregory Szorc
|
r40157 | return ZSTD_compressBegin_usingCDict_advanced(cctx, cdict, fParams, ZSTD_CONTENTSIZE_UNKNOWN); | ||
Gregory Szorc
|
r37513 | } | ||
size_t ZSTD_compress_usingCDict_advanced(ZSTD_CCtx* cctx, | ||||
void* dst, size_t dstCapacity, | ||||
const void* src, size_t srcSize, | ||||
const ZSTD_CDict* cdict, ZSTD_frameParameters fParams) | ||||
{ | ||||
CHECK_F (ZSTD_compressBegin_usingCDict_advanced(cctx, cdict, fParams, srcSize)); /* will check if cdict != NULL */ | ||||
return ZSTD_compressEnd(cctx, dst, dstCapacity, src, srcSize); | ||||
Gregory Szorc
|
r30434 | } | ||
/*! ZSTD_compress_usingCDict() : | ||||
Gregory Szorc
|
r37513 | * Compression using a digested Dictionary. | ||
* Faster startup than ZSTD_compress_usingDict(), recommended when same dictionary is used multiple times. | ||||
* Note that compression parameters are decided at CDict creation time | ||||
* while frame parameters are hardcoded */ | ||||
Gregory Szorc
|
r30434 | size_t ZSTD_compress_usingCDict(ZSTD_CCtx* cctx, | ||
void* dst, size_t dstCapacity, | ||||
const void* src, size_t srcSize, | ||||
const ZSTD_CDict* cdict) | ||||
{ | ||||
Gregory Szorc
|
r37513 | ZSTD_frameParameters const fParams = { 1 /*content*/, 0 /*checksum*/, 0 /*noDictID*/ }; | ||
return ZSTD_compress_usingCDict_advanced(cctx, dst, dstCapacity, src, srcSize, cdict, fParams); | ||||
Gregory Szorc
|
r30434 | } | ||
/* ****************************************************************** | ||||
* Streaming | ||||
********************************************************************/ | ||||
ZSTD_CStream* ZSTD_createCStream(void) | ||||
{ | ||||
Gregory Szorc
|
r37513 | DEBUGLOG(3, "ZSTD_createCStream"); | ||
return ZSTD_createCStream_advanced(ZSTD_defaultCMem); | ||||
} | ||||
ZSTD_CStream* ZSTD_initStaticCStream(void *workspace, size_t workspaceSize) | ||||
{ | ||||
return ZSTD_initStaticCCtx(workspace, workspaceSize); | ||||
Gregory Szorc
|
r30434 | } | ||
ZSTD_CStream* ZSTD_createCStream_advanced(ZSTD_customMem customMem) | ||||
Gregory Szorc
|
r37513 | { /* CStream and CCtx are now same object */ | ||
return ZSTD_createCCtx_advanced(customMem); | ||||
Gregory Szorc
|
r30434 | } | ||
size_t ZSTD_freeCStream(ZSTD_CStream* zcs) | ||||
{ | ||||
Gregory Szorc
|
r37513 | return ZSTD_freeCCtx(zcs); /* same object */ | ||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r37513 | |||
Gregory Szorc
|
r30434 | /*====== Initialization ======*/ | ||
Gregory Szorc
|
r37513 | size_t ZSTD_CStreamInSize(void) { return ZSTD_BLOCKSIZE_MAX; } | ||
size_t ZSTD_CStreamOutSize(void) | ||||
{ | ||||
return ZSTD_compressBound(ZSTD_BLOCKSIZE_MAX) + ZSTD_blockHeaderSize + 4 /* 32-bits hash */ ; | ||||
} | ||||
static size_t ZSTD_resetCStream_internal(ZSTD_CStream* cctx, | ||||
const void* const dict, size_t const dictSize, ZSTD_dictContentType_e const dictContentType, | ||||
const ZSTD_CDict* const cdict, | ||||
Gregory Szorc
|
r40157 | ZSTD_CCtx_params params, unsigned long long const pledgedSrcSize) | ||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r40157 | DEBUGLOG(4, "ZSTD_resetCStream_internal"); | ||
/* Finalize the compression parameters */ | ||||
params.cParams = ZSTD_getCParamsFromCCtxParams(¶ms, pledgedSrcSize, dictSize); | ||||
Gregory Szorc
|
r37513 | /* params are supposed to be fully validated at this point */ | ||
assert(!ZSTD_isError(ZSTD_checkCParams(params.cParams))); | ||||
assert(!((dict) && (cdict))); /* either dict or cdict, not both */ | ||||
CHECK_F( ZSTD_compressBegin_internal(cctx, | ||||
Gregory Szorc
|
r40157 | dict, dictSize, dictContentType, ZSTD_dtlm_fast, | ||
Gregory Szorc
|
r37513 | cdict, | ||
params, pledgedSrcSize, | ||||
ZSTDb_buffered) ); | ||||
cctx->inToCompress = 0; | ||||
cctx->inBuffPos = 0; | ||||
cctx->inBuffTarget = cctx->blockSize | ||||
+ (cctx->blockSize == pledgedSrcSize); /* for small input: avoid automatic flush on reaching end of block, since it would require to add a 3-bytes null block to end frame */ | ||||
cctx->outBuffContentSize = cctx->outBuffFlushedSize = 0; | ||||
cctx->streamStage = zcss_load; | ||||
cctx->frameEnded = 0; | ||||
Gregory Szorc
|
r30434 | return 0; /* ready to go */ | ||
} | ||||
Gregory Szorc
|
r37513 | /* ZSTD_resetCStream(): | ||
* pledgedSrcSize == 0 means "unknown" */ | ||||
size_t ZSTD_resetCStream(ZSTD_CStream* zcs, unsigned long long pledgedSrcSize) | ||||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r37513 | ZSTD_CCtx_params params = zcs->requestedParams; | ||
DEBUGLOG(4, "ZSTD_resetCStream: pledgedSrcSize = %u", (U32)pledgedSrcSize); | ||||
if (pledgedSrcSize==0) pledgedSrcSize = ZSTD_CONTENTSIZE_UNKNOWN; | ||||
params.fParams.contentSizeFlag = 1; | ||||
return ZSTD_resetCStream_internal(zcs, NULL, 0, ZSTD_dct_auto, zcs->cdict, params, pledgedSrcSize); | ||||
} | ||||
/*! ZSTD_initCStream_internal() : | ||||
* Note : for lib/compress only. Used by zstdmt_compress.c. | ||||
* Assumption 1 : params are valid | ||||
* Assumption 2 : either dict, or cdict, is defined, not both */ | ||||
size_t ZSTD_initCStream_internal(ZSTD_CStream* zcs, | ||||
const void* dict, size_t dictSize, const ZSTD_CDict* cdict, | ||||
ZSTD_CCtx_params params, unsigned long long pledgedSrcSize) | ||||
{ | ||||
DEBUGLOG(4, "ZSTD_initCStream_internal"); | ||||
Gregory Szorc
|
r40157 | params.cParams = ZSTD_getCParamsFromCCtxParams(¶ms, pledgedSrcSize, dictSize); | ||
Gregory Szorc
|
r37513 | assert(!ZSTD_isError(ZSTD_checkCParams(params.cParams))); | ||
assert(!((dict) && (cdict))); /* either dict or cdict, not both */ | ||||
Gregory Szorc
|
r30434 | |||
Gregory Szorc
|
r30895 | if (dict && dictSize >= 8) { | ||
Gregory Szorc
|
r37513 | DEBUGLOG(4, "loading dictionary of size %u", (U32)dictSize); | ||
if (zcs->staticSize) { /* static CCtx : never uses malloc */ | ||||
/* incompatible with internal cdict creation */ | ||||
return ERROR(memory_allocation); | ||||
} | ||||
Gregory Szorc
|
r30434 | ZSTD_freeCDict(zcs->cdictLocal); | ||
Gregory Szorc
|
r37513 | zcs->cdictLocal = ZSTD_createCDict_advanced(dict, dictSize, | ||
ZSTD_dlm_byCopy, ZSTD_dct_auto, | ||||
params.cParams, zcs->customMem); | ||||
Gregory Szorc
|
r30434 | zcs->cdict = zcs->cdictLocal; | ||
Gregory Szorc
|
r37513 | if (zcs->cdictLocal == NULL) return ERROR(memory_allocation); | ||
} else { | ||||
if (cdict) { | ||||
params.cParams = ZSTD_getCParamsFromCDict(cdict); /* cParams are enforced from cdict; it includes windowLog */ | ||||
} | ||||
ZSTD_freeCDict(zcs->cdictLocal); | ||||
zcs->cdictLocal = NULL; | ||||
zcs->cdict = cdict; | ||||
} | ||||
return ZSTD_resetCStream_internal(zcs, NULL, 0, ZSTD_dct_auto, zcs->cdict, params, pledgedSrcSize); | ||||
} | ||||
/* ZSTD_initCStream_usingCDict_advanced() : | ||||
* same as ZSTD_initCStream_usingCDict(), with control over frame parameters */ | ||||
size_t ZSTD_initCStream_usingCDict_advanced(ZSTD_CStream* zcs, | ||||
const ZSTD_CDict* cdict, | ||||
ZSTD_frameParameters fParams, | ||||
unsigned long long pledgedSrcSize) | ||||
{ | ||||
DEBUGLOG(4, "ZSTD_initCStream_usingCDict_advanced"); | ||||
if (!cdict) return ERROR(dictionary_wrong); /* cannot handle NULL cdict (does not know what to do) */ | ||||
{ ZSTD_CCtx_params params = zcs->requestedParams; | ||||
params.cParams = ZSTD_getCParamsFromCDict(cdict); | ||||
params.fParams = fParams; | ||||
return ZSTD_initCStream_internal(zcs, | ||||
NULL, 0, cdict, | ||||
params, pledgedSrcSize); | ||||
} | ||||
Gregory Szorc
|
r30434 | } | ||
/* note : cdict must outlive compression session */ | ||||
size_t ZSTD_initCStream_usingCDict(ZSTD_CStream* zcs, const ZSTD_CDict* cdict) | ||||
{ | ||||
Gregory Szorc
|
r37513 | ZSTD_frameParameters const fParams = { 0 /* contentSizeFlag */, 0 /* checksum */, 0 /* hideDictID */ }; | ||
DEBUGLOG(4, "ZSTD_initCStream_usingCDict"); | ||||
return ZSTD_initCStream_usingCDict_advanced(zcs, cdict, fParams, ZSTD_CONTENTSIZE_UNKNOWN); /* note : will check that cdict != NULL */ | ||||
} | ||||
/* ZSTD_initCStream_advanced() : | ||||
* pledgedSrcSize must be exact. | ||||
* if srcSize is not known at init time, use value ZSTD_CONTENTSIZE_UNKNOWN. | ||||
* dict is loaded with default parameters ZSTD_dm_auto and ZSTD_dlm_byCopy. */ | ||||
size_t ZSTD_initCStream_advanced(ZSTD_CStream* zcs, | ||||
const void* dict, size_t dictSize, | ||||
ZSTD_parameters params, unsigned long long pledgedSrcSize) | ||||
{ | ||||
DEBUGLOG(4, "ZSTD_initCStream_advanced: pledgedSrcSize=%u, flag=%u", | ||||
(U32)pledgedSrcSize, params.fParams.contentSizeFlag); | ||||
CHECK_F( ZSTD_checkCParams(params.cParams) ); | ||||
if ((pledgedSrcSize==0) && (params.fParams.contentSizeFlag==0)) pledgedSrcSize = ZSTD_CONTENTSIZE_UNKNOWN; /* for compatibility with older programs relying on this behavior. Users should now specify ZSTD_CONTENTSIZE_UNKNOWN. This line will be removed in the future. */ | ||||
Gregory Szorc
|
r40157 | zcs->requestedParams = ZSTD_assignParamsToCCtxParams(zcs->requestedParams, params); | ||
return ZSTD_initCStream_internal(zcs, dict, dictSize, NULL /*cdict*/, zcs->requestedParams, pledgedSrcSize); | ||||
Gregory Szorc
|
r30434 | } | ||
size_t ZSTD_initCStream_usingDict(ZSTD_CStream* zcs, const void* dict, size_t dictSize, int compressionLevel) | ||||
{ | ||||
Gregory Szorc
|
r40157 | ZSTD_CCtxParams_init(&zcs->requestedParams, compressionLevel); | ||
return ZSTD_initCStream_internal(zcs, dict, dictSize, NULL, zcs->requestedParams, ZSTD_CONTENTSIZE_UNKNOWN); | ||||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r37513 | size_t ZSTD_initCStream_srcSize(ZSTD_CStream* zcs, int compressionLevel, unsigned long long pss) | ||
Gregory Szorc
|
r30822 | { | ||
Gregory Szorc
|
r37513 | U64 const pledgedSrcSize = (pss==0) ? ZSTD_CONTENTSIZE_UNKNOWN : pss; /* temporary : 0 interpreted as "unknown" during transition period. Users willing to specify "unknown" **must** use ZSTD_CONTENTSIZE_UNKNOWN. `0` will be interpreted as "empty" in the future */ | ||
Gregory Szorc
|
r40157 | ZSTD_CCtxParams_init(&zcs->requestedParams, compressionLevel); | ||
return ZSTD_initCStream_internal(zcs, NULL, 0, NULL, zcs->requestedParams, pledgedSrcSize); | ||||
Gregory Szorc
|
r30822 | } | ||
Gregory Szorc
|
r30434 | size_t ZSTD_initCStream(ZSTD_CStream* zcs, int compressionLevel) | ||
{ | ||||
Gregory Szorc
|
r37513 | DEBUGLOG(4, "ZSTD_initCStream"); | ||
return ZSTD_initCStream_srcSize(zcs, compressionLevel, ZSTD_CONTENTSIZE_UNKNOWN); | ||||
Gregory Szorc
|
r30434 | } | ||
/*====== Compression ======*/ | ||||
Gregory Szorc
|
r37513 | MEM_STATIC size_t ZSTD_limitCopy(void* dst, size_t dstCapacity, | ||
const void* src, size_t srcSize) | ||||
Gregory Szorc
|
r30434 | { | ||
size_t const length = MIN(dstCapacity, srcSize); | ||||
Gregory Szorc
|
r37513 | if (length) memcpy(dst, src, length); | ||
Gregory Szorc
|
r30434 | return length; | ||
} | ||||
Gregory Szorc
|
r37513 | /** ZSTD_compressStream_generic(): | ||
* internal function for all *compressStream*() variants and *compress_generic() | ||||
* non-static, because can be called from zstdmt_compress.c | ||||
* @return : hint size for next input */ | ||||
size_t ZSTD_compressStream_generic(ZSTD_CStream* zcs, | ||||
ZSTD_outBuffer* output, | ||||
ZSTD_inBuffer* input, | ||||
ZSTD_EndDirective const flushMode) | ||||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r37513 | const char* const istart = (const char*)input->src; | ||
const char* const iend = istart + input->size; | ||||
const char* ip = istart + input->pos; | ||||
char* const ostart = (char*)output->dst; | ||||
char* const oend = ostart + output->size; | ||||
char* op = ostart + output->pos; | ||||
Gregory Szorc
|
r30434 | U32 someMoreWork = 1; | ||
Gregory Szorc
|
r37513 | |||
/* check expectations */ | ||||
DEBUGLOG(5, "ZSTD_compressStream_generic, flush=%u", (U32)flushMode); | ||||
assert(zcs->inBuff != NULL); | ||||
assert(zcs->inBuffSize > 0); | ||||
assert(zcs->outBuff != NULL); | ||||
assert(zcs->outBuffSize > 0); | ||||
assert(output->pos <= output->size); | ||||
assert(input->pos <= input->size); | ||||
Gregory Szorc
|
r30434 | |||
while (someMoreWork) { | ||||
Gregory Szorc
|
r37513 | switch(zcs->streamStage) | ||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r37513 | case zcss_init: | ||
/* call ZSTD_initCStream() first ! */ | ||||
return ERROR(init_missing); | ||||
Gregory Szorc
|
r30434 | |||
case zcss_load: | ||||
Gregory Szorc
|
r37513 | if ( (flushMode == ZSTD_e_end) | ||
&& ((size_t)(oend-op) >= ZSTD_compressBound(iend-ip)) /* enough dstCapacity */ | ||||
&& (zcs->inBuffPos == 0) ) { | ||||
/* shortcut to compression pass directly into output buffer */ | ||||
size_t const cSize = ZSTD_compressEnd(zcs, | ||||
op, oend-op, ip, iend-ip); | ||||
DEBUGLOG(4, "ZSTD_compressEnd : %u", (U32)cSize); | ||||
if (ZSTD_isError(cSize)) return cSize; | ||||
ip = iend; | ||||
op += cSize; | ||||
zcs->frameEnded = 1; | ||||
Gregory Szorc
|
r40157 | ZSTD_CCtx_reset(zcs); | ||
Gregory Szorc
|
r37513 | someMoreWork = 0; break; | ||
} | ||||
/* complete loading into inBuffer */ | ||||
Gregory Szorc
|
r30434 | { size_t const toLoad = zcs->inBuffTarget - zcs->inBuffPos; | ||
Gregory Szorc
|
r37513 | size_t const loaded = ZSTD_limitCopy( | ||
zcs->inBuff + zcs->inBuffPos, toLoad, | ||||
ip, iend-ip); | ||||
Gregory Szorc
|
r30434 | zcs->inBuffPos += loaded; | ||
ip += loaded; | ||||
Gregory Szorc
|
r37513 | if ( (flushMode == ZSTD_e_continue) | ||
&& (zcs->inBuffPos < zcs->inBuffTarget) ) { | ||||
/* not enough input to fill full block : stop here */ | ||||
someMoreWork = 0; break; | ||||
} | ||||
if ( (flushMode == ZSTD_e_flush) | ||||
&& (zcs->inBuffPos == zcs->inToCompress) ) { | ||||
/* empty */ | ||||
someMoreWork = 0; break; | ||||
} | ||||
} | ||||
Gregory Szorc
|
r30434 | /* compress current block (note : this stage cannot be stopped in the middle) */ | ||
Gregory Szorc
|
r37513 | DEBUGLOG(5, "stream compression stage (flushMode==%u)", flushMode); | ||
Gregory Szorc
|
r30434 | { void* cDst; | ||
size_t cSize; | ||||
size_t const iSize = zcs->inBuffPos - zcs->inToCompress; | ||||
size_t oSize = oend-op; | ||||
Gregory Szorc
|
r37513 | unsigned const lastBlock = (flushMode == ZSTD_e_end) && (ip==iend); | ||
Gregory Szorc
|
r30434 | if (oSize >= ZSTD_compressBound(iSize)) | ||
Gregory Szorc
|
r37513 | cDst = op; /* compress into output buffer, to skip flush stage */ | ||
Gregory Szorc
|
r30434 | else | ||
cDst = zcs->outBuff, oSize = zcs->outBuffSize; | ||||
Gregory Szorc
|
r37513 | cSize = lastBlock ? | ||
ZSTD_compressEnd(zcs, cDst, oSize, | ||||
zcs->inBuff + zcs->inToCompress, iSize) : | ||||
ZSTD_compressContinue(zcs, cDst, oSize, | ||||
zcs->inBuff + zcs->inToCompress, iSize); | ||||
Gregory Szorc
|
r30434 | if (ZSTD_isError(cSize)) return cSize; | ||
Gregory Szorc
|
r37513 | zcs->frameEnded = lastBlock; | ||
Gregory Szorc
|
r30434 | /* prepare next block */ | ||
zcs->inBuffTarget = zcs->inBuffPos + zcs->blockSize; | ||||
if (zcs->inBuffTarget > zcs->inBuffSize) | ||||
Gregory Szorc
|
r37513 | zcs->inBuffPos = 0, zcs->inBuffTarget = zcs->blockSize; | ||
DEBUGLOG(5, "inBuffTarget:%u / inBuffSize:%u", | ||||
(U32)zcs->inBuffTarget, (U32)zcs->inBuffSize); | ||||
if (!lastBlock) | ||||
assert(zcs->inBuffTarget <= zcs->inBuffSize); | ||||
Gregory Szorc
|
r30434 | zcs->inToCompress = zcs->inBuffPos; | ||
Gregory Szorc
|
r37513 | if (cDst == op) { /* no need to flush */ | ||
op += cSize; | ||||
if (zcs->frameEnded) { | ||||
DEBUGLOG(5, "Frame completed directly in outBuffer"); | ||||
someMoreWork = 0; | ||||
Gregory Szorc
|
r40157 | ZSTD_CCtx_reset(zcs); | ||
Gregory Szorc
|
r37513 | } | ||
break; | ||||
} | ||||
Gregory Szorc
|
r30434 | zcs->outBuffContentSize = cSize; | ||
zcs->outBuffFlushedSize = 0; | ||||
Gregory Szorc
|
r37513 | zcs->streamStage = zcss_flush; /* pass-through to flush stage */ | ||
Gregory Szorc
|
r30434 | } | ||
Gregory Szorc
|
r37513 | /* fall-through */ | ||
Gregory Szorc
|
r30434 | case zcss_flush: | ||
Gregory Szorc
|
r37513 | DEBUGLOG(5, "flush stage"); | ||
Gregory Szorc
|
r30434 | { size_t const toFlush = zcs->outBuffContentSize - zcs->outBuffFlushedSize; | ||
Gregory Szorc
|
r37513 | size_t const flushed = ZSTD_limitCopy(op, oend-op, | ||
zcs->outBuff + zcs->outBuffFlushedSize, toFlush); | ||||
DEBUGLOG(5, "toFlush: %u into %u ==> flushed: %u", | ||||
(U32)toFlush, (U32)(oend-op), (U32)flushed); | ||||
Gregory Szorc
|
r30434 | op += flushed; | ||
zcs->outBuffFlushedSize += flushed; | ||||
Gregory Szorc
|
r37513 | if (toFlush!=flushed) { | ||
/* flush not fully completed, presumably because dst is too small */ | ||||
assert(op==oend); | ||||
someMoreWork = 0; | ||||
break; | ||||
} | ||||
Gregory Szorc
|
r30434 | zcs->outBuffContentSize = zcs->outBuffFlushedSize = 0; | ||
Gregory Szorc
|
r37513 | if (zcs->frameEnded) { | ||
DEBUGLOG(5, "Frame completed on flush"); | ||||
someMoreWork = 0; | ||||
Gregory Szorc
|
r40157 | ZSTD_CCtx_reset(zcs); | ||
Gregory Szorc
|
r37513 | break; | ||
} | ||||
zcs->streamStage = zcss_load; | ||||
Gregory Szorc
|
r30434 | break; | ||
} | ||||
Gregory Szorc
|
r37513 | default: /* impossible */ | ||
assert(0); | ||||
Gregory Szorc
|
r30434 | } | ||
} | ||||
Gregory Szorc
|
r37513 | input->pos = ip - istart; | ||
output->pos = op - ostart; | ||||
Gregory Szorc
|
r30434 | if (zcs->frameEnded) return 0; | ||
{ size_t hintInSize = zcs->inBuffTarget - zcs->inBuffPos; | ||||
if (hintInSize==0) hintInSize = zcs->blockSize; | ||||
return hintInSize; | ||||
} | ||||
} | ||||
size_t ZSTD_compressStream(ZSTD_CStream* zcs, ZSTD_outBuffer* output, ZSTD_inBuffer* input) | ||||
{ | ||||
Gregory Szorc
|
r37513 | /* check conditions */ | ||
if (output->pos > output->size) return ERROR(GENERIC); | ||||
if (input->pos > input->size) return ERROR(GENERIC); | ||||
return ZSTD_compressStream_generic(zcs, output, input, ZSTD_e_continue); | ||||
} | ||||
size_t ZSTD_compress_generic (ZSTD_CCtx* cctx, | ||||
ZSTD_outBuffer* output, | ||||
ZSTD_inBuffer* input, | ||||
ZSTD_EndDirective endOp) | ||||
{ | ||||
DEBUGLOG(5, "ZSTD_compress_generic, endOp=%u ", (U32)endOp); | ||||
/* check conditions */ | ||||
if (output->pos > output->size) return ERROR(GENERIC); | ||||
if (input->pos > input->size) return ERROR(GENERIC); | ||||
assert(cctx!=NULL); | ||||
/* transparent initialization stage */ | ||||
if (cctx->streamStage == zcss_init) { | ||||
ZSTD_CCtx_params params = cctx->requestedParams; | ||||
ZSTD_prefixDict const prefixDict = cctx->prefixDict; | ||||
memset(&cctx->prefixDict, 0, sizeof(cctx->prefixDict)); /* single usage */ | ||||
assert(prefixDict.dict==NULL || cctx->cdict==NULL); /* only one can be set */ | ||||
DEBUGLOG(4, "ZSTD_compress_generic : transparent init stage"); | ||||
if (endOp == ZSTD_e_end) cctx->pledgedSrcSizePlusOne = input->size + 1; /* auto-fix pledgedSrcSize */ | ||||
params.cParams = ZSTD_getCParamsFromCCtxParams( | ||||
&cctx->requestedParams, cctx->pledgedSrcSizePlusOne-1, 0 /*dictSize*/); | ||||
Gregory Szorc
|
r40157 | |||
Gregory Szorc
|
r37513 | #ifdef ZSTD_MULTITHREAD | ||
if ((cctx->pledgedSrcSizePlusOne-1) <= ZSTDMT_JOBSIZE_MIN) { | ||||
params.nbWorkers = 0; /* do not invoke multi-threading when src size is too small */ | ||||
} | ||||
if (params.nbWorkers > 0) { | ||||
/* mt context creation */ | ||||
Gregory Szorc
|
r40157 | if (cctx->mtctx == NULL) { | ||
Gregory Szorc
|
r37513 | DEBUGLOG(4, "ZSTD_compress_generic: creating new mtctx for nbWorkers=%u", | ||
params.nbWorkers); | ||||
cctx->mtctx = ZSTDMT_createCCtx_advanced(params.nbWorkers, cctx->customMem); | ||||
if (cctx->mtctx == NULL) return ERROR(memory_allocation); | ||||
} | ||||
/* mt compression */ | ||||
DEBUGLOG(4, "call ZSTDMT_initCStream_internal as nbWorkers=%u", params.nbWorkers); | ||||
CHECK_F( ZSTDMT_initCStream_internal( | ||||
cctx->mtctx, | ||||
prefixDict.dict, prefixDict.dictSize, ZSTD_dct_rawContent, | ||||
cctx->cdict, params, cctx->pledgedSrcSizePlusOne-1) ); | ||||
cctx->streamStage = zcss_load; | ||||
cctx->appliedParams.nbWorkers = params.nbWorkers; | ||||
} else | ||||
#endif | ||||
{ CHECK_F( ZSTD_resetCStream_internal(cctx, | ||||
prefixDict.dict, prefixDict.dictSize, prefixDict.dictContentType, | ||||
cctx->cdict, | ||||
params, cctx->pledgedSrcSizePlusOne-1) ); | ||||
assert(cctx->streamStage == zcss_load); | ||||
assert(cctx->appliedParams.nbWorkers == 0); | ||||
} } | ||||
/* compression stage */ | ||||
#ifdef ZSTD_MULTITHREAD | ||||
if (cctx->appliedParams.nbWorkers > 0) { | ||||
if (cctx->cParamsChanged) { | ||||
ZSTDMT_updateCParams_whileCompressing(cctx->mtctx, &cctx->requestedParams); | ||||
cctx->cParamsChanged = 0; | ||||
} | ||||
{ size_t const flushMin = ZSTDMT_compressStream_generic(cctx->mtctx, output, input, endOp); | ||||
if ( ZSTD_isError(flushMin) | ||||
|| (endOp == ZSTD_e_end && flushMin == 0) ) { /* compression completed */ | ||||
Gregory Szorc
|
r40157 | ZSTD_CCtx_reset(cctx); | ||
Gregory Szorc
|
r37513 | } | ||
Gregory Szorc
|
r40157 | DEBUGLOG(5, "completed ZSTD_compress_generic delegating to ZSTDMT_compressStream_generic"); | ||
Gregory Szorc
|
r37513 | return flushMin; | ||
} } | ||||
#endif | ||||
CHECK_F( ZSTD_compressStream_generic(cctx, output, input, endOp) ); | ||||
DEBUGLOG(5, "completed ZSTD_compress_generic"); | ||||
return cctx->outBuffContentSize - cctx->outBuffFlushedSize; /* remaining to flush */ | ||||
} | ||||
size_t ZSTD_compress_generic_simpleArgs ( | ||||
ZSTD_CCtx* cctx, | ||||
void* dst, size_t dstCapacity, size_t* dstPos, | ||||
const void* src, size_t srcSize, size_t* srcPos, | ||||
ZSTD_EndDirective endOp) | ||||
{ | ||||
ZSTD_outBuffer output = { dst, dstCapacity, *dstPos }; | ||||
ZSTD_inBuffer input = { src, srcSize, *srcPos }; | ||||
/* ZSTD_compress_generic() will check validity of dstPos and srcPos */ | ||||
size_t const cErr = ZSTD_compress_generic(cctx, &output, &input, endOp); | ||||
*dstPos = output.pos; | ||||
*srcPos = input.pos; | ||||
return cErr; | ||||
Gregory Szorc
|
r30434 | } | ||
/*====== Finalize ======*/ | ||||
/*! ZSTD_flushStream() : | ||||
Gregory Szorc
|
r37513 | * @return : amount of data remaining to flush */ | ||
Gregory Szorc
|
r30434 | size_t ZSTD_flushStream(ZSTD_CStream* zcs, ZSTD_outBuffer* output) | ||
{ | ||||
Gregory Szorc
|
r37513 | ZSTD_inBuffer input = { NULL, 0, 0 }; | ||
if (output->pos > output->size) return ERROR(GENERIC); | ||||
CHECK_F( ZSTD_compressStream_generic(zcs, output, &input, ZSTD_e_flush) ); | ||||
return zcs->outBuffContentSize - zcs->outBuffFlushedSize; /* remaining to flush */ | ||||
Gregory Szorc
|
r30434 | } | ||
size_t ZSTD_endStream(ZSTD_CStream* zcs, ZSTD_outBuffer* output) | ||||
{ | ||||
Gregory Szorc
|
r37513 | ZSTD_inBuffer input = { NULL, 0, 0 }; | ||
if (output->pos > output->size) return ERROR(GENERIC); | ||||
CHECK_F( ZSTD_compressStream_generic(zcs, output, &input, ZSTD_e_end) ); | ||||
{ size_t const lastBlockSize = zcs->frameEnded ? 0 : ZSTD_BLOCKHEADERSIZE; | ||||
size_t const checksumSize = zcs->frameEnded ? 0 : zcs->appliedParams.fParams.checksumFlag * 4; | ||||
size_t const toFlush = zcs->outBuffContentSize - zcs->outBuffFlushedSize + lastBlockSize + checksumSize; | ||||
DEBUGLOG(4, "ZSTD_endStream : remaining to flush : %u", (U32)toFlush); | ||||
return toFlush; | ||||
Gregory Szorc
|
r30434 | } | ||
} | ||||
/*-===== Pre-defined compression levels =====-*/ | ||||
#define ZSTD_MAX_CLEVEL 22 | ||||
int ZSTD_maxCLevel(void) { return ZSTD_MAX_CLEVEL; } | ||||
Gregory Szorc
|
r40157 | int ZSTD_minCLevel(void) { return (int)-ZSTD_TARGETLENGTH_MAX; } | ||
Gregory Szorc
|
r30434 | |||
static const ZSTD_compressionParameters ZSTD_defaultCParameters[4][ZSTD_MAX_CLEVEL+1] = { | ||||
Gregory Szorc
|
r37513 | { /* "default" - guarantees a monotonically increasing memory budget */ | ||
Gregory Szorc
|
r30434 | /* W, C, H, S, L, TL, strat */ | ||
Gregory Szorc
|
r37513 | { 19, 12, 13, 1, 6, 1, ZSTD_fast }, /* base for negative levels */ | ||
Gregory Szorc
|
r40157 | { 19, 13, 14, 1, 7, 0, ZSTD_fast }, /* level 1 */ | ||
{ 19, 15, 16, 1, 6, 0, ZSTD_fast }, /* level 2 */ | ||||
{ 20, 16, 17, 1, 5, 1, ZSTD_dfast }, /* level 3 */ | ||||
{ 20, 18, 18, 1, 5, 1, ZSTD_dfast }, /* level 4 */ | ||||
{ 20, 18, 18, 2, 5, 2, ZSTD_greedy }, /* level 5 */ | ||||
{ 21, 18, 19, 2, 5, 4, ZSTD_lazy }, /* level 6 */ | ||||
{ 21, 18, 19, 3, 5, 8, ZSTD_lazy2 }, /* level 7 */ | ||||
{ 21, 19, 19, 3, 5, 16, ZSTD_lazy2 }, /* level 8 */ | ||||
{ 21, 19, 20, 4, 5, 16, ZSTD_lazy2 }, /* level 9 */ | ||||
{ 21, 20, 21, 4, 5, 16, ZSTD_lazy2 }, /* level 10 */ | ||||
{ 21, 21, 22, 4, 5, 16, ZSTD_lazy2 }, /* level 11 */ | ||||
Gregory Szorc
|
r30434 | { 22, 20, 22, 5, 5, 16, ZSTD_lazy2 }, /* level 12 */ | ||
Gregory Szorc
|
r37513 | { 22, 21, 22, 4, 5, 32, ZSTD_btlazy2 }, /* level 13 */ | ||
{ 22, 21, 22, 5, 5, 32, ZSTD_btlazy2 }, /* level 14 */ | ||||
{ 22, 22, 22, 6, 5, 32, ZSTD_btlazy2 }, /* level 15 */ | ||||
{ 22, 21, 22, 4, 5, 48, ZSTD_btopt }, /* level 16 */ | ||||
Gregory Szorc
|
r40157 | { 23, 22, 22, 4, 4, 64, ZSTD_btopt }, /* level 17 */ | ||
{ 23, 23, 22, 6, 3,256, ZSTD_btopt }, /* level 18 */ | ||||
{ 23, 24, 22, 7, 3,256, ZSTD_btultra }, /* level 19 */ | ||||
{ 25, 25, 23, 7, 3,256, ZSTD_btultra }, /* level 20 */ | ||||
{ 26, 26, 24, 7, 3,512, ZSTD_btultra }, /* level 21 */ | ||||
{ 27, 27, 25, 9, 3,999, ZSTD_btultra }, /* level 22 */ | ||||
Gregory Szorc
|
r30434 | }, | ||
{ /* for srcSize <= 256 KB */ | ||||
/* W, C, H, S, L, T, strat */ | ||||
Gregory Szorc
|
r37513 | { 18, 12, 13, 1, 5, 1, ZSTD_fast }, /* base for negative levels */ | ||
Gregory Szorc
|
r40157 | { 18, 13, 14, 1, 6, 0, ZSTD_fast }, /* level 1 */ | ||
{ 18, 14, 14, 1, 5, 1, ZSTD_dfast }, /* level 2 */ | ||||
{ 18, 16, 16, 1, 4, 1, ZSTD_dfast }, /* level 3 */ | ||||
{ 18, 16, 17, 2, 5, 2, ZSTD_greedy }, /* level 4.*/ | ||||
{ 18, 18, 18, 3, 5, 2, ZSTD_greedy }, /* level 5.*/ | ||||
{ 18, 18, 19, 3, 5, 4, ZSTD_lazy }, /* level 6.*/ | ||||
{ 18, 18, 19, 4, 4, 4, ZSTD_lazy }, /* level 7 */ | ||||
{ 18, 18, 19, 4, 4, 8, ZSTD_lazy2 }, /* level 8 */ | ||||
{ 18, 18, 19, 5, 4, 8, ZSTD_lazy2 }, /* level 9 */ | ||||
{ 18, 18, 19, 6, 4, 8, ZSTD_lazy2 }, /* level 10 */ | ||||
{ 18, 18, 19, 5, 4, 16, ZSTD_btlazy2 }, /* level 11.*/ | ||||
{ 18, 19, 19, 6, 4, 16, ZSTD_btlazy2 }, /* level 12.*/ | ||||
{ 18, 19, 19, 8, 4, 16, ZSTD_btlazy2 }, /* level 13 */ | ||||
{ 18, 18, 19, 4, 4, 24, ZSTD_btopt }, /* level 14.*/ | ||||
{ 18, 18, 19, 4, 3, 24, ZSTD_btopt }, /* level 15.*/ | ||||
{ 18, 19, 19, 6, 3, 64, ZSTD_btopt }, /* level 16.*/ | ||||
{ 18, 19, 19, 8, 3,128, ZSTD_btopt }, /* level 17.*/ | ||||
{ 18, 19, 19, 10, 3,256, ZSTD_btopt }, /* level 18.*/ | ||||
{ 18, 19, 19, 10, 3,256, ZSTD_btultra }, /* level 19.*/ | ||||
{ 18, 19, 19, 11, 3,512, ZSTD_btultra }, /* level 20.*/ | ||||
{ 18, 19, 19, 12, 3,512, ZSTD_btultra }, /* level 21.*/ | ||||
{ 18, 19, 19, 13, 3,999, ZSTD_btultra }, /* level 22.*/ | ||||
Gregory Szorc
|
r30434 | }, | ||
{ /* for srcSize <= 128 KB */ | ||||
/* W, C, H, S, L, T, strat */ | ||||
Gregory Szorc
|
r40157 | { 17, 12, 12, 1, 5, 1, ZSTD_fast }, /* base for negative levels */ | ||
{ 17, 12, 13, 1, 6, 0, ZSTD_fast }, /* level 1 */ | ||||
{ 17, 13, 15, 1, 5, 0, ZSTD_fast }, /* level 2 */ | ||||
{ 17, 15, 16, 2, 5, 1, ZSTD_dfast }, /* level 3 */ | ||||
{ 17, 17, 17, 2, 4, 1, ZSTD_dfast }, /* level 4 */ | ||||
{ 17, 16, 17, 3, 4, 2, ZSTD_greedy }, /* level 5 */ | ||||
{ 17, 17, 17, 3, 4, 4, ZSTD_lazy }, /* level 6 */ | ||||
{ 17, 17, 17, 3, 4, 8, ZSTD_lazy2 }, /* level 7 */ | ||||
Gregory Szorc
|
r30434 | { 17, 17, 17, 4, 4, 8, ZSTD_lazy2 }, /* level 8 */ | ||
{ 17, 17, 17, 5, 4, 8, ZSTD_lazy2 }, /* level 9 */ | ||||
{ 17, 17, 17, 6, 4, 8, ZSTD_lazy2 }, /* level 10 */ | ||||
{ 17, 17, 17, 7, 4, 8, ZSTD_lazy2 }, /* level 11 */ | ||||
Gregory Szorc
|
r40157 | { 17, 18, 17, 6, 4, 16, ZSTD_btlazy2 }, /* level 12 */ | ||
{ 17, 18, 17, 8, 4, 16, ZSTD_btlazy2 }, /* level 13.*/ | ||||
{ 17, 18, 17, 4, 4, 32, ZSTD_btopt }, /* level 14.*/ | ||||
{ 17, 18, 17, 6, 3, 64, ZSTD_btopt }, /* level 15.*/ | ||||
{ 17, 18, 17, 7, 3,128, ZSTD_btopt }, /* level 16.*/ | ||||
{ 17, 18, 17, 7, 3,256, ZSTD_btopt }, /* level 17.*/ | ||||
{ 17, 18, 17, 8, 3,256, ZSTD_btopt }, /* level 18.*/ | ||||
{ 17, 18, 17, 8, 3,256, ZSTD_btultra }, /* level 19.*/ | ||||
Gregory Szorc
|
r37513 | { 17, 18, 17, 9, 3,256, ZSTD_btultra }, /* level 20.*/ | ||
{ 17, 18, 17, 10, 3,256, ZSTD_btultra }, /* level 21.*/ | ||||
{ 17, 18, 17, 11, 3,512, ZSTD_btultra }, /* level 22.*/ | ||||
Gregory Szorc
|
r30434 | }, | ||
{ /* for srcSize <= 16 KB */ | ||||
/* W, C, H, S, L, T, strat */ | ||||
Gregory Szorc
|
r37513 | { 14, 12, 13, 1, 5, 1, ZSTD_fast }, /* base for negative levels */ | ||
Gregory Szorc
|
r40157 | { 14, 14, 15, 1, 5, 0, ZSTD_fast }, /* level 1 */ | ||
{ 14, 14, 15, 1, 4, 0, ZSTD_fast }, /* level 2 */ | ||||
{ 14, 14, 14, 2, 4, 1, ZSTD_dfast }, /* level 3.*/ | ||||
{ 14, 14, 14, 4, 4, 2, ZSTD_greedy }, /* level 4.*/ | ||||
{ 14, 14, 14, 3, 4, 4, ZSTD_lazy }, /* level 5.*/ | ||||
{ 14, 14, 14, 4, 4, 8, ZSTD_lazy2 }, /* level 6 */ | ||||
{ 14, 14, 14, 6, 4, 8, ZSTD_lazy2 }, /* level 7 */ | ||||
{ 14, 14, 14, 8, 4, 8, ZSTD_lazy2 }, /* level 8.*/ | ||||
{ 14, 15, 14, 5, 4, 8, ZSTD_btlazy2 }, /* level 9.*/ | ||||
{ 14, 15, 14, 9, 4, 8, ZSTD_btlazy2 }, /* level 10.*/ | ||||
{ 14, 15, 14, 3, 4, 12, ZSTD_btopt }, /* level 11.*/ | ||||
Gregory Szorc
|
r30434 | { 14, 15, 14, 6, 3, 16, ZSTD_btopt }, /* level 12.*/ | ||
{ 14, 15, 14, 6, 3, 24, ZSTD_btopt }, /* level 13.*/ | ||||
{ 14, 15, 15, 6, 3, 48, ZSTD_btopt }, /* level 14.*/ | ||||
{ 14, 15, 15, 6, 3, 64, ZSTD_btopt }, /* level 15.*/ | ||||
{ 14, 15, 15, 6, 3, 96, ZSTD_btopt }, /* level 16.*/ | ||||
{ 14, 15, 15, 6, 3,128, ZSTD_btopt }, /* level 17.*/ | ||||
Gregory Szorc
|
r40157 | { 14, 15, 15, 8, 3,256, ZSTD_btopt }, /* level 18.*/ | ||
{ 14, 15, 15, 6, 3,256, ZSTD_btultra }, /* level 19.*/ | ||||
Gregory Szorc
|
r37513 | { 14, 15, 15, 8, 3,256, ZSTD_btultra }, /* level 20.*/ | ||
{ 14, 15, 15, 9, 3,256, ZSTD_btultra }, /* level 21.*/ | ||||
Gregory Szorc
|
r40157 | { 14, 15, 15, 10, 3,512, ZSTD_btultra }, /* level 22.*/ | ||
Gregory Szorc
|
r30434 | }, | ||
}; | ||||
/*! ZSTD_getCParams() : | ||||
Gregory Szorc
|
r37513 | * @return ZSTD_compressionParameters structure for a selected compression level, srcSize and dictSize. | ||
Gregory Szorc
|
r30434 | * Size values are optional, provide 0 if not known or unused */ | ||
Gregory Szorc
|
r37513 | ZSTD_compressionParameters ZSTD_getCParams(int compressionLevel, unsigned long long srcSizeHint, size_t dictSize) | ||
Gregory Szorc
|
r30434 | { | ||
Gregory Szorc
|
r37513 | size_t const addedSize = srcSizeHint ? 0 : 500; | ||
U64 const rSize = srcSizeHint+dictSize ? srcSizeHint+dictSize+addedSize : (U64)-1; | ||||
Gregory Szorc
|
r30434 | U32 const tableID = (rSize <= 256 KB) + (rSize <= 128 KB) + (rSize <= 16 KB); /* intentional underflow for srcSizeHint == 0 */ | ||
Gregory Szorc
|
r37513 | int row = compressionLevel; | ||
DEBUGLOG(5, "ZSTD_getCParams (cLevel=%i)", compressionLevel); | ||||
if (compressionLevel == 0) row = ZSTD_CLEVEL_DEFAULT; /* 0 == default */ | ||||
if (compressionLevel < 0) row = 0; /* entry 0 is baseline for fast mode */ | ||||
if (compressionLevel > ZSTD_MAX_CLEVEL) row = ZSTD_MAX_CLEVEL; | ||||
{ ZSTD_compressionParameters cp = ZSTD_defaultCParameters[tableID][row]; | ||||
if (compressionLevel < 0) cp.targetLength = (unsigned)(-compressionLevel); /* acceleration factor */ | ||||
return ZSTD_adjustCParams_internal(cp, srcSizeHint, dictSize); } | ||||
Gregory Szorc
|
r30434 | } | ||
/*! ZSTD_getParams() : | ||||
* same as ZSTD_getCParams(), but @return a `ZSTD_parameters` object (instead of `ZSTD_compressionParameters`). | ||||
* All fields of `ZSTD_frameParameters` are set to default (0) */ | ||||
Gregory Szorc
|
r37513 | ZSTD_parameters ZSTD_getParams(int compressionLevel, unsigned long long srcSizeHint, size_t dictSize) { | ||
Gregory Szorc
|
r30434 | ZSTD_parameters params; | ||
Gregory Szorc
|
r37513 | ZSTD_compressionParameters const cParams = ZSTD_getCParams(compressionLevel, srcSizeHint, dictSize); | ||
DEBUGLOG(5, "ZSTD_getParams (cLevel=%i)", compressionLevel); | ||||
Gregory Szorc
|
r30434 | memset(¶ms, 0, sizeof(params)); | ||
params.cParams = cParams; | ||||
Gregory Szorc
|
r37513 | params.fParams.contentSizeFlag = 1; | ||
Gregory Szorc
|
r30434 | return params; | ||
} | ||||