2015-10-22 14:31:46 +00:00
|
|
|
/*
|
|
|
|
ZSTD HC - High Compression Mode of Zstandard
|
|
|
|
Copyright (C) 2015, Yann Collet.
|
|
|
|
|
|
|
|
BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are
|
|
|
|
met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above
|
|
|
|
copyright notice, this list of conditions and the following disclaimer
|
|
|
|
in the documentation and/or other materials provided with the
|
|
|
|
distribution.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
You can contact the author at :
|
|
|
|
- Zstd source repository : https://www.zstd.net
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2015-10-30 14:49:48 +00:00
|
|
|
/* *******************************************************
|
|
|
|
* Compiler specifics
|
|
|
|
*********************************************************/
|
|
|
|
#ifdef _MSC_VER /* Visual Studio */
|
|
|
|
# define FORCE_INLINE static __forceinline
|
|
|
|
# include <intrin.h> /* For Visual 2005 */
|
|
|
|
# pragma warning(disable : 4127) /* disable: C4127: conditional expression is constant */
|
|
|
|
# pragma warning(disable : 4324) /* disable: C4324: padded structure */
|
|
|
|
#else
|
|
|
|
# define GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__)
|
|
|
|
# ifdef __GNUC__
|
|
|
|
# define FORCE_INLINE static inline __attribute__((always_inline))
|
|
|
|
# else
|
|
|
|
# define FORCE_INLINE static inline
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2015-10-22 14:31:46 +00:00
|
|
|
/* *************************************
|
|
|
|
* Includes
|
|
|
|
***************************************/
|
|
|
|
#include <stdlib.h> /* malloc */
|
|
|
|
#include <string.h> /* memset */
|
|
|
|
#include "zstd_static.h"
|
2015-10-29 16:15:14 +00:00
|
|
|
#include "zstd_internal.h"
|
2015-10-22 14:31:46 +00:00
|
|
|
#include "mem.h"
|
|
|
|
|
|
|
|
|
|
|
|
/* *************************************
|
|
|
|
* Local Constants
|
|
|
|
***************************************/
|
|
|
|
#define MINMATCH 4
|
2015-10-24 12:48:37 +00:00
|
|
|
#define MAXD_LOG 26
|
2015-10-22 14:31:46 +00:00
|
|
|
|
|
|
|
#define KB *1024
|
|
|
|
#define MB *1024*1024
|
|
|
|
#define GB *(1ULL << 30)
|
|
|
|
|
|
|
|
/* *************************************
|
|
|
|
* Local Types
|
|
|
|
***************************************/
|
|
|
|
#define BLOCKSIZE (128 KB) /* define, for static allocation */
|
|
|
|
#define WORKPLACESIZE (BLOCKSIZE*3)
|
|
|
|
|
2015-11-11 12:43:58 +00:00
|
|
|
struct ZSTD_CCtx_s
|
2015-10-22 14:31:46 +00:00
|
|
|
{
|
|
|
|
const BYTE* end; /* next block here to continue on current prefix */
|
2015-10-22 15:55:40 +00:00
|
|
|
const BYTE* base; /* All regular indexes relative to this position */
|
|
|
|
const BYTE* dictBase; /* extDict indexes relative to this position */
|
2015-10-22 14:31:46 +00:00
|
|
|
U32 dictLimit; /* below that point, need extDict */
|
2015-10-22 15:55:40 +00:00
|
|
|
U32 lowLimit; /* below that point, no more data */
|
2015-10-22 14:31:46 +00:00
|
|
|
U32 nextToUpdate; /* index from which to continue dictionary update */
|
2015-11-11 12:43:58 +00:00
|
|
|
ZSTD_parameters params;
|
2015-10-29 17:41:45 +00:00
|
|
|
void* workSpace;
|
|
|
|
size_t workSpaceSize;
|
|
|
|
|
|
|
|
seqStore_t seqStore; /* sequences storage ptrs */
|
2015-10-25 13:06:35 +00:00
|
|
|
U32* hashTable;
|
2015-11-05 16:32:18 +00:00
|
|
|
U32* contentTable;
|
2015-10-22 14:31:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-11-11 12:43:58 +00:00
|
|
|
ZSTD_CCtx* ZSTD_createCCtx(void)
|
2015-10-22 14:31:46 +00:00
|
|
|
{
|
2015-11-11 12:43:58 +00:00
|
|
|
return (ZSTD_CCtx*) calloc(1, sizeof(ZSTD_CCtx));
|
2015-10-22 14:31:46 +00:00
|
|
|
}
|
|
|
|
|
2015-11-11 12:43:58 +00:00
|
|
|
size_t ZSTD_freeCCtx(ZSTD_CCtx* cctx)
|
2015-10-25 13:06:35 +00:00
|
|
|
{
|
2015-10-29 17:41:45 +00:00
|
|
|
free(cctx->workSpace);
|
2015-10-25 13:06:35 +00:00
|
|
|
free(cctx);
|
|
|
|
return 0;
|
|
|
|
}
|
2015-10-22 14:31:46 +00:00
|
|
|
|
2015-11-04 11:05:27 +00:00
|
|
|
|
2015-11-11 12:43:58 +00:00
|
|
|
/** ZSTD_validateParams
|
2015-11-04 11:05:27 +00:00
|
|
|
correct params value to remain within authorized range
|
|
|
|
optimize for srcSize if srcSize > 0 */
|
2015-11-11 12:43:58 +00:00
|
|
|
void ZSTD_validateParams(ZSTD_parameters* params, U64 srcSizeHint)
|
2015-11-04 11:05:27 +00:00
|
|
|
{
|
2015-11-11 12:43:58 +00:00
|
|
|
const U32 btPlus = (params->strategy == ZSTD_btlazy2);
|
2015-11-04 11:05:27 +00:00
|
|
|
|
|
|
|
/* validate params */
|
2015-11-11 12:43:58 +00:00
|
|
|
if (params->windowLog > ZSTD_WINDOWLOG_MAX) params->windowLog = ZSTD_WINDOWLOG_MAX;
|
|
|
|
if (params->windowLog < ZSTD_WINDOWLOG_MIN) params->windowLog = ZSTD_WINDOWLOG_MIN;
|
2015-11-04 11:05:27 +00:00
|
|
|
|
|
|
|
/* correct params, to use less memory */
|
2015-11-11 12:43:58 +00:00
|
|
|
if ((srcSizeHint > 0) && (srcSizeHint < (1<<ZSTD_WINDOWLOG_MAX)))
|
2015-11-04 11:05:27 +00:00
|
|
|
{
|
2015-11-09 16:42:17 +00:00
|
|
|
U32 srcLog = ZSTD_highbit((U32)srcSizeHint-1) + 1;
|
2015-11-04 11:05:27 +00:00
|
|
|
if (params->windowLog > srcLog) params->windowLog = srcLog;
|
|
|
|
}
|
|
|
|
|
2015-11-11 12:43:58 +00:00
|
|
|
if (params->contentLog > params->windowLog+btPlus) params->contentLog = params->windowLog+btPlus; /* <= ZSTD_CONTENTLOG_MAX */
|
|
|
|
if (params->contentLog < ZSTD_CONTENTLOG_MIN) params->contentLog = ZSTD_CONTENTLOG_MIN;
|
|
|
|
if (params->hashLog > ZSTD_HASHLOG_MAX) params->hashLog = ZSTD_HASHLOG_MAX;
|
|
|
|
if (params->hashLog < ZSTD_HASHLOG_MIN) params->hashLog = ZSTD_HASHLOG_MIN;
|
|
|
|
if (params->searchLog > ZSTD_SEARCHLOG_MAX) params->searchLog = ZSTD_SEARCHLOG_MAX;
|
|
|
|
if (params->searchLog < ZSTD_SEARCHLOG_MIN) params->searchLog = ZSTD_SEARCHLOG_MIN;
|
|
|
|
if (params->searchLength> ZSTD_SEARCHLENGTH_MAX) params->searchLength = ZSTD_SEARCHLENGTH_MAX;
|
|
|
|
if (params->searchLength< ZSTD_SEARCHLENGTH_MIN) params->searchLength = ZSTD_SEARCHLENGTH_MIN;
|
|
|
|
if ((U32)params->strategy>(U32)ZSTD_btlazy2) params->strategy = ZSTD_btlazy2;
|
2015-11-04 11:05:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-11 12:43:58 +00:00
|
|
|
static size_t ZSTD_resetCCtx_advanced (ZSTD_CCtx* zc,
|
|
|
|
ZSTD_parameters params,
|
2015-11-09 16:42:17 +00:00
|
|
|
U64 srcSizeHint)
|
2015-10-22 14:31:46 +00:00
|
|
|
{
|
2015-11-11 12:43:58 +00:00
|
|
|
ZSTD_validateParams(¶ms, srcSizeHint);
|
2015-10-29 15:49:43 +00:00
|
|
|
|
|
|
|
/* reserve table memory */
|
2015-10-25 13:06:35 +00:00
|
|
|
{
|
2015-11-11 12:43:58 +00:00
|
|
|
const U32 contentLog = params.strategy == ZSTD_fast ? 1 : params.contentLog;
|
2015-11-05 16:32:18 +00:00
|
|
|
const size_t tableSpace = ((1 << contentLog) + (1 << params.hashLog)) * sizeof(U32);
|
2015-10-29 17:41:45 +00:00
|
|
|
const size_t neededSpace = tableSpace + WORKPLACESIZE;
|
|
|
|
if (zc->workSpaceSize < neededSpace)
|
2015-10-29 15:49:43 +00:00
|
|
|
{
|
2015-10-29 17:41:45 +00:00
|
|
|
free(zc->workSpace);
|
|
|
|
zc->workSpaceSize = neededSpace;
|
|
|
|
zc->workSpace = malloc(neededSpace);
|
2015-10-30 05:40:22 +00:00
|
|
|
if (zc->workSpace == NULL) return ERROR(memory_allocation);
|
2015-10-29 15:49:43 +00:00
|
|
|
}
|
2015-11-06 09:52:17 +00:00
|
|
|
memset(zc->workSpace, 0, tableSpace );
|
|
|
|
zc->hashTable = (U32*)(zc->workSpace);
|
2015-11-05 16:32:18 +00:00
|
|
|
zc->contentTable = zc->hashTable + ((size_t)1 << params.hashLog);
|
|
|
|
zc->seqStore.buffer = (void*) (zc->contentTable + ((size_t)1 << contentLog));
|
2015-10-25 13:06:35 +00:00
|
|
|
}
|
|
|
|
|
2015-11-07 00:13:31 +00:00
|
|
|
zc->nextToUpdate = 1;
|
2015-10-29 15:49:43 +00:00
|
|
|
zc->end = NULL;
|
|
|
|
zc->base = NULL;
|
|
|
|
zc->dictBase = NULL;
|
|
|
|
zc->dictLimit = 0;
|
|
|
|
zc->lowLimit = 0;
|
2015-10-25 13:06:35 +00:00
|
|
|
zc->params = params;
|
2015-10-22 14:31:46 +00:00
|
|
|
zc->seqStore.offsetStart = (U32*) (zc->seqStore.buffer);
|
|
|
|
zc->seqStore.offCodeStart = (BYTE*) (zc->seqStore.offsetStart + (BLOCKSIZE>>2));
|
|
|
|
zc->seqStore.litStart = zc->seqStore.offCodeStart + (BLOCKSIZE>>2);
|
|
|
|
zc->seqStore.litLengthStart = zc->seqStore.litStart + BLOCKSIZE;
|
|
|
|
zc->seqStore.matchLengthStart = zc->seqStore.litLengthStart + (BLOCKSIZE>>2);
|
|
|
|
zc->seqStore.dumpsStart = zc->seqStore.matchLengthStart + (BLOCKSIZE>>2);
|
2015-10-29 15:49:43 +00:00
|
|
|
|
2015-10-30 05:40:22 +00:00
|
|
|
return 0;
|
2015-10-22 14:31:46 +00:00
|
|
|
}
|
|
|
|
|
2015-10-25 13:06:35 +00:00
|
|
|
|
2015-10-22 14:31:46 +00:00
|
|
|
/* *************************************
|
2015-10-30 14:49:48 +00:00
|
|
|
* Inline functions and Macros
|
2015-10-22 14:31:46 +00:00
|
|
|
***************************************/
|
2015-10-29 15:49:43 +00:00
|
|
|
|
2015-10-30 14:49:48 +00:00
|
|
|
static const U32 prime4bytes = 2654435761U;
|
2015-11-11 12:43:58 +00:00
|
|
|
static U32 ZSTD_hash4(U32 u, U32 h) { return (u * prime4bytes) >> (32-h) ; }
|
|
|
|
static size_t ZSTD_hash4Ptr(const void* ptr, U32 h) { return ZSTD_hash4(MEM_read32(ptr), h); }
|
2015-10-29 15:49:43 +00:00
|
|
|
|
2015-10-30 14:49:48 +00:00
|
|
|
static const U64 prime5bytes = 889523592379ULL;
|
2015-11-11 12:43:58 +00:00
|
|
|
static size_t ZSTD_hash5(U64 u, U32 h) { return (size_t)((u * prime5bytes) << (64-40) >> (64-h)) ; }
|
|
|
|
static size_t ZSTD_hash5Ptr(const void* p, U32 h) { return ZSTD_hash5(MEM_read64(p), h); }
|
2015-10-29 15:49:43 +00:00
|
|
|
|
2015-10-30 14:49:48 +00:00
|
|
|
static const U64 prime6bytes = 227718039650203ULL;
|
2015-11-11 12:43:58 +00:00
|
|
|
static size_t ZSTD_hash6(U64 u, U32 h) { return (size_t)((u * prime6bytes) << (64-48) >> (64-h)) ; }
|
|
|
|
static size_t ZSTD_hash6Ptr(const void* p, U32 h) { return ZSTD_hash6(MEM_read64(p), h); }
|
2015-10-22 14:31:46 +00:00
|
|
|
|
2015-11-05 16:32:18 +00:00
|
|
|
static const U64 prime7bytes = 58295818150454627ULL;
|
2015-11-11 12:43:58 +00:00
|
|
|
static size_t ZSTD_hash7(U64 u, U32 h) { return (size_t)((u * prime7bytes) << (64-56) >> (64-h)) ; }
|
|
|
|
static size_t ZSTD_hash7Ptr(const void* p, U32 h) { return ZSTD_hash7(MEM_read64(p), h); }
|
2015-11-05 16:32:18 +00:00
|
|
|
|
2015-11-11 12:43:58 +00:00
|
|
|
static size_t ZSTD_hashPtr(const void* p, U32 hBits, U32 mls)
|
2015-10-30 14:49:48 +00:00
|
|
|
{
|
|
|
|
switch(mls)
|
|
|
|
{
|
|
|
|
default:
|
2015-11-11 12:43:58 +00:00
|
|
|
case 4: return ZSTD_hash4Ptr(p, hBits);
|
|
|
|
case 5: return ZSTD_hash5Ptr(p, hBits);
|
|
|
|
case 6: return ZSTD_hash6Ptr(p, hBits);
|
|
|
|
case 7: return ZSTD_hash7Ptr(p, hBits);
|
2015-10-30 14:49:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-05 16:32:18 +00:00
|
|
|
/* *************************************
|
|
|
|
* Fast Scan
|
|
|
|
***************************************/
|
|
|
|
|
|
|
|
FORCE_INLINE
|
2015-11-11 12:43:58 +00:00
|
|
|
size_t ZSTD_compressBlock_fast_generic(ZSTD_CCtx* ctx,
|
2015-11-05 16:32:18 +00:00
|
|
|
void* dst, size_t maxDstSize,
|
|
|
|
const void* src, size_t srcSize,
|
|
|
|
const U32 mls)
|
|
|
|
{
|
|
|
|
U32* hashTable = ctx->hashTable;
|
|
|
|
const U32 hBits = ctx->params.hashLog;
|
|
|
|
seqStore_t* seqStorePtr = &(ctx->seqStore);
|
|
|
|
const BYTE* const base = ctx->base;
|
2015-11-05 17:16:59 +00:00
|
|
|
const size_t maxDist = ((size_t)1 << ctx->params.windowLog);
|
2015-11-05 16:32:18 +00:00
|
|
|
|
|
|
|
const BYTE* const istart = (const BYTE*)src;
|
2015-11-06 09:52:17 +00:00
|
|
|
const BYTE* ip = istart;
|
2015-11-05 16:32:18 +00:00
|
|
|
const BYTE* anchor = istart;
|
2015-11-05 17:16:59 +00:00
|
|
|
const BYTE* const lowest = (size_t)(istart-base) > maxDist ? istart-maxDist : base;
|
2015-11-05 16:32:18 +00:00
|
|
|
const BYTE* const iend = istart + srcSize;
|
|
|
|
const BYTE* const ilimit = iend - 8;
|
|
|
|
|
|
|
|
size_t offset_2=4, offset_1=4;
|
|
|
|
|
|
|
|
|
|
|
|
/* init */
|
|
|
|
if (ip == base)
|
|
|
|
{
|
2015-11-11 12:43:58 +00:00
|
|
|
hashTable[ZSTD_hashPtr(base+1, hBits, mls)] = 1;
|
|
|
|
hashTable[ZSTD_hashPtr(base+2, hBits, mls)] = 2;
|
|
|
|
hashTable[ZSTD_hashPtr(base+3, hBits, mls)] = 3;
|
2015-11-05 16:32:18 +00:00
|
|
|
ip = base+4;
|
|
|
|
}
|
|
|
|
ZSTD_resetSeqStore(seqStorePtr);
|
|
|
|
|
|
|
|
/* Main Search Loop */
|
|
|
|
while (ip < ilimit) /* < instead of <=, because unconditionnal ZSTD_addPtr(ip+1) */
|
|
|
|
{
|
2015-11-11 12:43:58 +00:00
|
|
|
const size_t h = ZSTD_hashPtr(ip, hBits, mls);
|
2015-11-05 16:32:18 +00:00
|
|
|
const BYTE* match = base + hashTable[h];
|
|
|
|
hashTable[h] = (U32)(ip-base);
|
|
|
|
|
|
|
|
if (MEM_read32(ip-offset_2) == MEM_read32(ip)) match = ip-offset_2;
|
2015-11-05 17:16:59 +00:00
|
|
|
if ( (match < lowest) ||
|
|
|
|
(MEM_read32(match) != MEM_read32(ip)) )
|
|
|
|
{ ip += ((ip-anchor) >> g_searchStrength) + 1; offset_2 = offset_1; continue; }
|
2015-11-05 16:32:18 +00:00
|
|
|
while ((ip>anchor) && (match>base) && (ip[-1] == match[-1])) { ip--; match--; } /* catch up */
|
|
|
|
|
|
|
|
{
|
|
|
|
size_t litLength = ip-anchor;
|
|
|
|
size_t matchLength = ZSTD_count(ip+MINMATCH, match+MINMATCH, iend);
|
|
|
|
size_t offsetCode = ip-match;
|
|
|
|
if (offsetCode == offset_2) offsetCode = 0;
|
|
|
|
offset_2 = offset_1;
|
|
|
|
offset_1 = ip-match;
|
|
|
|
ZSTD_storeSeq(seqStorePtr, litLength, anchor, offsetCode, matchLength);
|
|
|
|
|
|
|
|
/* Fill Table */
|
2015-11-11 12:43:58 +00:00
|
|
|
hashTable[ZSTD_hashPtr(ip+1, hBits, mls)] = (U32)(ip+1-base);
|
2015-11-05 16:32:18 +00:00
|
|
|
ip += matchLength + MINMATCH;
|
|
|
|
anchor = ip;
|
|
|
|
if (ip < ilimit) /* same test as loop, for speed */
|
2015-11-11 12:43:58 +00:00
|
|
|
hashTable[ZSTD_hashPtr(ip-2, hBits, mls)] = (U32)(ip-2-base);
|
2015-11-05 16:32:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Last Literals */
|
|
|
|
{
|
|
|
|
size_t lastLLSize = iend - anchor;
|
|
|
|
memcpy(seqStorePtr->lit, anchor, lastLLSize);
|
|
|
|
seqStorePtr->lit += lastLLSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Finale compression stage */
|
|
|
|
return ZSTD_compressSequences((BYTE*)dst, maxDstSize,
|
|
|
|
seqStorePtr, srcSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-11 12:43:58 +00:00
|
|
|
size_t ZSTD_compressBlock_fast(ZSTD_CCtx* ctx,
|
2015-11-05 16:32:18 +00:00
|
|
|
void* dst, size_t maxDstSize,
|
|
|
|
const void* src, size_t srcSize)
|
|
|
|
{
|
|
|
|
const U32 mls = ctx->params.searchLength;
|
|
|
|
switch(mls)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case 4 :
|
2015-11-11 12:43:58 +00:00
|
|
|
return ZSTD_compressBlock_fast_generic(ctx, dst, maxDstSize, src, srcSize, 4);
|
2015-11-05 16:32:18 +00:00
|
|
|
case 5 :
|
2015-11-11 12:43:58 +00:00
|
|
|
return ZSTD_compressBlock_fast_generic(ctx, dst, maxDstSize, src, srcSize, 5);
|
2015-11-05 16:32:18 +00:00
|
|
|
case 6 :
|
2015-11-11 12:43:58 +00:00
|
|
|
return ZSTD_compressBlock_fast_generic(ctx, dst, maxDstSize, src, srcSize, 6);
|
2015-11-05 16:32:18 +00:00
|
|
|
case 7 :
|
2015-11-11 12:43:58 +00:00
|
|
|
return ZSTD_compressBlock_fast_generic(ctx, dst, maxDstSize, src, srcSize, 7);
|
2015-11-05 16:32:18 +00:00
|
|
|
}
|
|
|
|
}
|
2015-10-22 14:31:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* *************************************
|
2015-11-04 02:52:54 +00:00
|
|
|
* Binary Tree search
|
2015-10-22 14:31:46 +00:00
|
|
|
***************************************/
|
2015-11-11 12:43:58 +00:00
|
|
|
/** ZSTD_insertBt1 : add one ptr to tree
|
2015-11-04 02:52:54 +00:00
|
|
|
@ip : assumed <= iend-8 */
|
2015-11-11 12:43:58 +00:00
|
|
|
static U32 ZSTD_insertBt1(ZSTD_CCtx* zc, const BYTE* const ip, const U32 mls, const BYTE* const iend, U32 nbCompares)
|
2015-11-04 02:52:54 +00:00
|
|
|
{
|
|
|
|
U32* const hashTable = zc->hashTable;
|
|
|
|
const U32 hashLog = zc->params.hashLog;
|
2015-11-11 12:43:58 +00:00
|
|
|
const size_t h = ZSTD_hashPtr(ip, hashLog, mls);
|
2015-11-05 16:32:18 +00:00
|
|
|
U32* const bt = zc->contentTable;
|
|
|
|
const U32 btLog = zc->params.contentLog - 1;
|
2015-11-04 02:52:54 +00:00
|
|
|
const U32 btMask= (1 << btLog) - 1;
|
|
|
|
U32 matchIndex = hashTable[h];
|
|
|
|
size_t commonLengthSmaller=0, commonLengthLarger=0;
|
|
|
|
const BYTE* const base = zc->base;
|
2015-11-07 00:13:31 +00:00
|
|
|
const BYTE* match = base + matchIndex;
|
|
|
|
U32 current = (U32)(ip-base);
|
2015-11-08 14:08:03 +00:00
|
|
|
const U32 btLow = btMask >= current ? 0 : current - btMask;
|
2015-11-04 02:52:54 +00:00
|
|
|
U32* smallerPtr = bt + 2*(current&btMask);
|
|
|
|
U32* largerPtr = bt + 2*(current&btMask) + 1;
|
2015-11-04 11:05:27 +00:00
|
|
|
U32 dummy32; /* to be nullified at the end */
|
2015-11-04 02:52:54 +00:00
|
|
|
const U32 windowSize = 1 << zc->params.windowLog;
|
|
|
|
const U32 windowLow = windowSize >= current ? 0 : current - windowSize;
|
|
|
|
|
2015-11-08 14:08:03 +00:00
|
|
|
if ((current-matchIndex == 1) /* RLE */
|
2015-11-08 14:49:20 +00:00
|
|
|
&& MEM_read64(match) == MEM_read64(ip))
|
2015-11-07 00:13:31 +00:00
|
|
|
{
|
2015-11-08 14:08:03 +00:00
|
|
|
size_t rleLength = ZSTD_count(ip+sizeof(size_t), match+sizeof(size_t), iend) + sizeof(size_t);
|
|
|
|
return (U32)(rleLength - mls);
|
2015-11-07 00:13:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
hashTable[h] = (U32)(ip - base); /* Update Hash Table */
|
2015-11-04 02:52:54 +00:00
|
|
|
|
|
|
|
while (nbCompares-- && (matchIndex > windowLow))
|
|
|
|
{
|
|
|
|
U32* nextPtr = bt + 2*(matchIndex & btMask);
|
|
|
|
size_t matchLength = MIN(commonLengthSmaller, commonLengthLarger); /* guaranteed minimum nb of common bytes */
|
|
|
|
|
2015-11-07 00:13:31 +00:00
|
|
|
match = base + matchIndex;
|
2015-11-04 02:52:54 +00:00
|
|
|
matchLength += ZSTD_count(ip+matchLength, match+matchLength, iend);
|
|
|
|
|
2015-11-04 11:05:27 +00:00
|
|
|
if (ip+matchLength == iend) /* equal : no way to know if inf or sup */
|
2015-11-07 00:13:31 +00:00
|
|
|
break; /* just drop , to guarantee consistency (miss a bit of compression; if someone knows better, please tell) */
|
2015-11-04 02:52:54 +00:00
|
|
|
|
|
|
|
if (match[matchLength] < ip[matchLength])
|
2015-11-04 11:05:27 +00:00
|
|
|
{
|
2015-11-04 02:52:54 +00:00
|
|
|
/* match is smaller than current */
|
|
|
|
*smallerPtr = matchIndex; /* update smaller idx */
|
|
|
|
commonLengthSmaller = matchLength; /* all smaller will now have at least this guaranteed common length */
|
2015-11-07 00:13:31 +00:00
|
|
|
if (matchIndex <= btLow) { smallerPtr=&dummy32; break; } /* beyond tree size, stop the search */
|
2015-11-04 02:52:54 +00:00
|
|
|
smallerPtr = nextPtr+1; /* new "smaller" => larger of match */
|
2015-11-07 00:13:31 +00:00
|
|
|
matchIndex = nextPtr[1]; /* new matchIndex larger than previous (closer to current) */
|
2015-11-04 11:05:27 +00:00
|
|
|
}
|
2015-11-04 02:52:54 +00:00
|
|
|
else
|
2015-11-04 11:05:27 +00:00
|
|
|
{
|
2015-11-04 02:52:54 +00:00
|
|
|
/* match is larger than current */
|
|
|
|
*largerPtr = matchIndex;
|
|
|
|
commonLengthLarger = matchLength;
|
2015-11-07 00:13:31 +00:00
|
|
|
if (matchIndex <= btLow) { largerPtr=&dummy32; break; } /* beyond tree size, stop the search */
|
2015-11-04 02:52:54 +00:00
|
|
|
largerPtr = nextPtr;
|
2015-11-07 00:13:31 +00:00
|
|
|
matchIndex = nextPtr[0];
|
2015-11-04 11:05:27 +00:00
|
|
|
}
|
2015-11-04 02:52:54 +00:00
|
|
|
}
|
|
|
|
|
2015-11-04 11:05:27 +00:00
|
|
|
*smallerPtr = *largerPtr = 0;
|
2015-11-08 14:08:03 +00:00
|
|
|
return 1;
|
2015-11-04 02:52:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
FORCE_INLINE /* inlining is important to hardwire a hot branch (template emulation) */
|
2015-11-11 12:43:58 +00:00
|
|
|
size_t ZSTD_insertBtAndFindBestMatch (
|
|
|
|
ZSTD_CCtx* zc,
|
2015-11-04 02:52:54 +00:00
|
|
|
const BYTE* const ip, const BYTE* const iend,
|
|
|
|
size_t* offsetPtr,
|
|
|
|
U32 nbCompares, const U32 mls)
|
|
|
|
{
|
|
|
|
U32* const hashTable = zc->hashTable;
|
|
|
|
const U32 hashLog = zc->params.hashLog;
|
2015-11-11 12:43:58 +00:00
|
|
|
const size_t h = ZSTD_hashPtr(ip, hashLog, mls);
|
2015-11-05 16:32:18 +00:00
|
|
|
U32* const bt = zc->contentTable;
|
|
|
|
const U32 btLog = zc->params.contentLog - 1;
|
2015-11-04 02:52:54 +00:00
|
|
|
const U32 btMask= (1 << btLog) - 1;
|
|
|
|
U32 matchIndex = hashTable[h];
|
|
|
|
size_t commonLengthSmaller=0, commonLengthLarger=0;
|
|
|
|
const BYTE* const base = zc->base;
|
|
|
|
const U32 current = (U32)(ip-base);
|
|
|
|
const U32 btLow = btMask >= current ? 0 : current - btMask;
|
|
|
|
const U32 windowSize = 1 << zc->params.windowLog;
|
|
|
|
const U32 windowLow = windowSize >= current ? 0 : current - windowSize;
|
|
|
|
U32* smallerPtr = bt + 2*(current&btMask);
|
|
|
|
U32* largerPtr = bt + 2*(current&btMask) + 1;
|
2015-11-04 12:57:24 +00:00
|
|
|
size_t bestLength = 0;
|
2015-11-04 11:05:27 +00:00
|
|
|
U32 dummy32; /* to be nullified at the end */
|
2015-11-04 02:52:54 +00:00
|
|
|
|
2015-11-04 11:05:27 +00:00
|
|
|
hashTable[h] = (U32)(ip-base); /* Update Hash Table */
|
2015-11-04 02:52:54 +00:00
|
|
|
|
|
|
|
while (nbCompares-- && (matchIndex > windowLow))
|
|
|
|
{
|
|
|
|
U32* nextPtr = bt + 2*(matchIndex & btMask);
|
|
|
|
const BYTE* match = base + matchIndex;
|
|
|
|
size_t matchLength = MIN(commonLengthSmaller, commonLengthLarger); /* guaranteed minimum nb of common bytes */
|
|
|
|
|
|
|
|
matchLength += ZSTD_count(ip+matchLength, match+matchLength, iend);
|
|
|
|
|
|
|
|
if (matchLength > bestLength)
|
|
|
|
{
|
2015-11-04 16:41:20 +00:00
|
|
|
if ( (4*(int)(matchLength-bestLength)) > (int)(ZSTD_highbit(current-matchIndex+1) - ZSTD_highbit((U32)offsetPtr[0]+1)) )
|
2015-11-04 12:57:24 +00:00
|
|
|
bestLength = matchLength, *offsetPtr = current - matchIndex;
|
2015-11-04 11:05:27 +00:00
|
|
|
if (ip+matchLength == iend) /* equal : no way to know if inf or sup */
|
2015-11-06 18:03:59 +00:00
|
|
|
break; /* just drop, to guarantee consistency (miss a little bit of compression) */
|
2015-11-04 02:52:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (match[matchLength] < ip[matchLength])
|
2015-11-04 11:05:27 +00:00
|
|
|
{
|
2015-11-04 02:52:54 +00:00
|
|
|
/* match is smaller than current */
|
|
|
|
*smallerPtr = matchIndex; /* update smaller idx */
|
|
|
|
commonLengthSmaller = matchLength; /* all smaller will now have at least this guaranteed common length */
|
2015-11-04 11:05:27 +00:00
|
|
|
smallerPtr = nextPtr+1; /* new "smaller" => larger of match */
|
2015-11-06 18:03:59 +00:00
|
|
|
if (matchIndex <= btLow) smallerPtr=&dummy32; /* beyond tree size, stop the search */
|
|
|
|
matchIndex = (matchIndex <= btLow) ? windowLow : nextPtr[1];
|
2015-11-04 11:05:27 +00:00
|
|
|
}
|
2015-11-04 02:52:54 +00:00
|
|
|
else
|
2015-11-04 11:05:27 +00:00
|
|
|
{
|
2015-11-04 02:52:54 +00:00
|
|
|
/* match is larger than current */
|
|
|
|
*largerPtr = matchIndex;
|
|
|
|
commonLengthLarger = matchLength;
|
|
|
|
largerPtr = nextPtr;
|
2015-11-06 18:03:59 +00:00
|
|
|
if (matchIndex <= btLow) largerPtr=&dummy32; /* beyond tree size, stop the search */
|
|
|
|
matchIndex = (matchIndex <= btLow) ? windowLow : nextPtr[0];
|
2015-11-04 11:05:27 +00:00
|
|
|
}
|
2015-11-04 02:52:54 +00:00
|
|
|
}
|
|
|
|
|
2015-11-04 11:05:27 +00:00
|
|
|
*smallerPtr = *largerPtr = 0;
|
2015-11-04 02:52:54 +00:00
|
|
|
|
|
|
|
zc->nextToUpdate = current+1; /* current has been inserted */
|
|
|
|
return bestLength;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-11 12:43:58 +00:00
|
|
|
static const BYTE* ZSTD_updateTree(ZSTD_CCtx* zc, const BYTE* const ip, const BYTE* const iend, const U32 nbCompares, const U32 mls)
|
2015-11-04 02:52:54 +00:00
|
|
|
{
|
|
|
|
const BYTE* const base = zc->base;
|
|
|
|
const U32 target = (U32)(ip - base);
|
|
|
|
U32 idx = zc->nextToUpdate;
|
2015-11-04 11:05:27 +00:00
|
|
|
//size_t dummy;
|
2015-11-04 02:52:54 +00:00
|
|
|
|
2015-11-07 00:13:31 +00:00
|
|
|
for( ; idx < target ; )
|
2015-11-11 12:43:58 +00:00
|
|
|
idx += ZSTD_insertBt1(zc, base+idx, mls, iend, nbCompares);
|
|
|
|
//ZSTD_insertBtAndFindBestMatch(zc, base+idx, iend, &dummy, nbCompares, mls);
|
2015-11-04 02:52:54 +00:00
|
|
|
|
2015-11-07 00:13:31 +00:00
|
|
|
zc->nextToUpdate = idx;
|
|
|
|
return base + idx;
|
2015-11-04 02:52:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** Tree updater, providing best match */
|
|
|
|
FORCE_INLINE /* inlining is important to hardwire a hot branch (template emulation) */
|
2015-11-11 12:43:58 +00:00
|
|
|
size_t ZSTD_BtFindBestMatch (
|
|
|
|
ZSTD_CCtx* zc,
|
2015-11-04 02:52:54 +00:00
|
|
|
const BYTE* const ip, const BYTE* const iLimit,
|
|
|
|
size_t* offsetPtr,
|
|
|
|
const U32 maxNbAttempts, const U32 mls)
|
|
|
|
{
|
2015-11-11 12:43:58 +00:00
|
|
|
const BYTE* nextToUpdate = ZSTD_updateTree(zc, ip, iLimit, maxNbAttempts, mls);
|
2015-11-07 00:13:31 +00:00
|
|
|
if (nextToUpdate > ip)
|
|
|
|
{
|
|
|
|
/* RLE data */
|
|
|
|
*offsetPtr = 1;
|
|
|
|
return ZSTD_count(ip, ip-1, iLimit);
|
|
|
|
}
|
2015-11-11 12:43:58 +00:00
|
|
|
return ZSTD_insertBtAndFindBestMatch(zc, ip, iLimit, offsetPtr, maxNbAttempts, mls);
|
2015-11-04 02:52:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-11 12:43:58 +00:00
|
|
|
FORCE_INLINE size_t ZSTD_BtFindBestMatch_selectMLS (
|
|
|
|
ZSTD_CCtx* zc, /* Index table will be updated */
|
2015-11-04 02:52:54 +00:00
|
|
|
const BYTE* ip, const BYTE* const iLimit,
|
|
|
|
size_t* offsetPtr,
|
|
|
|
const U32 maxNbAttempts, const U32 matchLengthSearch)
|
|
|
|
{
|
|
|
|
switch(matchLengthSearch)
|
|
|
|
{
|
|
|
|
default :
|
2015-11-11 12:43:58 +00:00
|
|
|
case 4 : return ZSTD_BtFindBestMatch(zc, ip, iLimit, offsetPtr, maxNbAttempts, 4);
|
|
|
|
case 5 : return ZSTD_BtFindBestMatch(zc, ip, iLimit, offsetPtr, maxNbAttempts, 5);
|
|
|
|
case 6 : return ZSTD_BtFindBestMatch(zc, ip, iLimit, offsetPtr, maxNbAttempts, 6);
|
2015-11-04 02:52:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-05 14:00:24 +00:00
|
|
|
/* ***********************
|
|
|
|
* Hash Chain
|
|
|
|
*************************/
|
|
|
|
|
2015-11-05 16:32:18 +00:00
|
|
|
#define NEXT_IN_CHAIN(d, mask) chainTable[(d) & mask]
|
|
|
|
|
2015-11-05 14:00:24 +00:00
|
|
|
/* Update chains up to ip (excluded) */
|
2015-11-11 12:43:58 +00:00
|
|
|
static U32 ZSTD_insertAndFindFirstIndex (ZSTD_CCtx* zc, const BYTE* ip, U32 mls)
|
2015-11-05 14:00:24 +00:00
|
|
|
{
|
|
|
|
U32* const hashTable = zc->hashTable;
|
|
|
|
const U32 hashLog = zc->params.hashLog;
|
2015-11-05 16:32:18 +00:00
|
|
|
U32* const chainTable = zc->contentTable;
|
|
|
|
const U32 chainMask = (1 << zc->params.contentLog) - 1;
|
2015-11-05 14:00:24 +00:00
|
|
|
const BYTE* const base = zc->base;
|
|
|
|
const U32 target = (U32)(ip - base);
|
|
|
|
U32 idx = zc->nextToUpdate;
|
|
|
|
|
|
|
|
while(idx < target)
|
|
|
|
{
|
2015-11-11 12:43:58 +00:00
|
|
|
size_t h = ZSTD_hashPtr(base+idx, hashLog, mls);
|
2015-11-05 14:00:24 +00:00
|
|
|
NEXT_IN_CHAIN(idx, chainMask) = hashTable[h];
|
|
|
|
hashTable[h] = idx;
|
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
|
|
|
|
zc->nextToUpdate = target;
|
2015-11-11 12:43:58 +00:00
|
|
|
return hashTable[ZSTD_hashPtr(ip, hashLog, mls)];
|
2015-11-05 14:00:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
FORCE_INLINE /* inlining is important to hardwire a hot branch (template emulation) */
|
2015-11-11 12:43:58 +00:00
|
|
|
size_t ZSTD_HcFindBestMatch (
|
|
|
|
ZSTD_CCtx* zc, /* Index table will be updated */
|
2015-11-05 14:00:24 +00:00
|
|
|
const BYTE* const ip, const BYTE* const iLimit,
|
|
|
|
size_t* offsetPtr,
|
|
|
|
const U32 maxNbAttempts, const U32 matchLengthSearch)
|
|
|
|
{
|
2015-11-05 16:32:18 +00:00
|
|
|
U32* const chainTable = zc->contentTable;
|
|
|
|
const U32 chainSize = (1 << zc->params.contentLog);
|
2015-11-05 14:00:24 +00:00
|
|
|
const U32 chainMask = chainSize-1;
|
|
|
|
const BYTE* const base = zc->base;
|
|
|
|
const BYTE* const dictBase = zc->dictBase;
|
|
|
|
const U32 dictLimit = zc->dictLimit;
|
|
|
|
const U32 maxDistance = (1 << zc->params.windowLog);
|
|
|
|
const U32 lowLimit = (zc->lowLimit + maxDistance > (U32)(ip-base)) ? zc->lowLimit : (U32)(ip - base) - (maxDistance - 1);
|
|
|
|
U32 matchIndex;
|
|
|
|
const BYTE* match;
|
|
|
|
int nbAttempts=maxNbAttempts;
|
|
|
|
size_t ml=0;
|
|
|
|
|
|
|
|
/* HC4 match finder */
|
2015-11-11 12:43:58 +00:00
|
|
|
matchIndex = ZSTD_insertAndFindFirstIndex (zc, ip, matchLengthSearch);
|
2015-11-05 14:00:24 +00:00
|
|
|
|
|
|
|
while ((matchIndex>lowLimit) && (nbAttempts))
|
|
|
|
{
|
|
|
|
nbAttempts--;
|
|
|
|
if (matchIndex >= dictLimit)
|
|
|
|
{
|
|
|
|
match = base + matchIndex;
|
2015-11-09 02:19:33 +00:00
|
|
|
if (match[ml] == ip[ml]) /* potentially better */
|
2015-11-05 14:00:24 +00:00
|
|
|
{
|
2015-11-09 02:19:33 +00:00
|
|
|
const size_t mlt = ZSTD_count(ip, match, iLimit);
|
2015-11-05 14:00:24 +00:00
|
|
|
if (mlt > ml)
|
|
|
|
//if (((int)(4*mlt) - (int)ZSTD_highbit((U32)(ip-match)+1)) > ((int)(4*ml) - (int)ZSTD_highbit((U32)((*offsetPtr)+1))))
|
|
|
|
{
|
|
|
|
ml = mlt; *offsetPtr = ip-match;
|
2015-11-09 02:19:33 +00:00
|
|
|
if (ip+mlt >= iLimit) break;
|
2015-11-05 14:00:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
match = dictBase + matchIndex;
|
2015-11-09 02:19:33 +00:00
|
|
|
if (MEM_read32(match) == MEM_read32(ip)) /* beware of end of dict */
|
2015-11-05 14:00:24 +00:00
|
|
|
{
|
|
|
|
size_t mlt;
|
|
|
|
const BYTE* vLimit = ip + (dictLimit - matchIndex);
|
|
|
|
if (vLimit > iLimit) vLimit = iLimit;
|
|
|
|
mlt = ZSTD_count(ip+MINMATCH, match+MINMATCH, vLimit) + MINMATCH;
|
|
|
|
if ((ip+mlt == vLimit) && (vLimit < iLimit))
|
|
|
|
mlt += ZSTD_count(ip+mlt, base+dictLimit, iLimit);
|
|
|
|
if (mlt > ml) { ml = mlt; *offsetPtr = (ip-base) - matchIndex; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (base + matchIndex <= ip - chainSize) break;
|
|
|
|
matchIndex = NEXT_IN_CHAIN(matchIndex, chainMask);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ml;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-11 12:43:58 +00:00
|
|
|
FORCE_INLINE size_t ZSTD_HcFindBestMatch_selectMLS (
|
|
|
|
ZSTD_CCtx* zc, /* Index table will be updated */
|
2015-11-05 14:00:24 +00:00
|
|
|
const BYTE* ip, const BYTE* const iLimit,
|
|
|
|
size_t* offsetPtr,
|
|
|
|
const U32 maxNbAttempts, const U32 matchLengthSearch)
|
|
|
|
{
|
|
|
|
switch(matchLengthSearch)
|
|
|
|
{
|
|
|
|
default :
|
2015-11-11 12:43:58 +00:00
|
|
|
case 4 : return ZSTD_HcFindBestMatch(zc, ip, iLimit, offsetPtr, maxNbAttempts, 4);
|
|
|
|
case 5 : return ZSTD_HcFindBestMatch(zc, ip, iLimit, offsetPtr, maxNbAttempts, 5);
|
|
|
|
case 6 : return ZSTD_HcFindBestMatch(zc, ip, iLimit, offsetPtr, maxNbAttempts, 6);
|
2015-11-05 14:00:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-05 14:03:12 +00:00
|
|
|
/* common lazy function, to be inlined */
|
2015-11-05 14:00:24 +00:00
|
|
|
FORCE_INLINE
|
2015-11-11 12:43:58 +00:00
|
|
|
size_t ZSTD_compressBlock_lazy_generic(ZSTD_CCtx* ctx,
|
2015-11-05 14:00:24 +00:00
|
|
|
void* dst, size_t maxDstSize, const void* src, size_t srcSize,
|
|
|
|
const U32 searchMethod, const U32 deep) /* 0 : hc; 1 : bt */
|
2015-11-04 02:52:54 +00:00
|
|
|
{
|
|
|
|
seqStore_t* seqStorePtr = &(ctx->seqStore);
|
|
|
|
const BYTE* const istart = (const BYTE*)src;
|
|
|
|
const BYTE* ip = istart;
|
|
|
|
const BYTE* anchor = istart;
|
|
|
|
const BYTE* const iend = istart + srcSize;
|
|
|
|
const BYTE* const ilimit = iend - 8;
|
|
|
|
|
|
|
|
size_t offset_2=REPCODE_STARTVALUE, offset_1=REPCODE_STARTVALUE;
|
|
|
|
const U32 maxSearches = 1 << ctx->params.searchLog;
|
|
|
|
const U32 mls = ctx->params.searchLength;
|
|
|
|
|
2015-11-11 12:43:58 +00:00
|
|
|
typedef size_t (*searchMax_f)(ZSTD_CCtx* zc, const BYTE* ip, const BYTE* iLimit,
|
2015-11-05 14:00:24 +00:00
|
|
|
size_t* offsetPtr,
|
|
|
|
U32 maxNbAttempts, U32 matchLengthSearch);
|
2015-11-11 12:43:58 +00:00
|
|
|
searchMax_f searchMax = searchMethod ? ZSTD_BtFindBestMatch_selectMLS : ZSTD_HcFindBestMatch_selectMLS;
|
2015-11-05 14:00:24 +00:00
|
|
|
|
2015-11-04 02:52:54 +00:00
|
|
|
/* init */
|
|
|
|
ZSTD_resetSeqStore(seqStorePtr);
|
|
|
|
if (((ip-ctx->base) - ctx->dictLimit) < REPCODE_STARTVALUE) ip += REPCODE_STARTVALUE;
|
|
|
|
|
|
|
|
/* Match Loop */
|
|
|
|
while (ip <= ilimit)
|
|
|
|
{
|
|
|
|
size_t matchLength;
|
|
|
|
size_t offset=999999;
|
|
|
|
const BYTE* start;
|
|
|
|
|
|
|
|
/* try to find a first match */
|
|
|
|
if (MEM_read32(ip) == MEM_read32(ip - offset_2))
|
|
|
|
{
|
|
|
|
/* repcode : we take it*/
|
|
|
|
size_t offtmp = offset_2;
|
|
|
|
size_t litLength = ip - anchor;
|
|
|
|
matchLength = ZSTD_count(ip+MINMATCH, ip+MINMATCH-offset_2, iend);
|
|
|
|
offset_2 = offset_1;
|
|
|
|
offset_1 = offtmp;
|
|
|
|
ZSTD_storeSeq(seqStorePtr, litLength, anchor, 0, matchLength);
|
|
|
|
ip += matchLength+MINMATCH;
|
|
|
|
anchor = ip;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
offset_2 = offset_1;
|
2015-11-05 14:00:24 +00:00
|
|
|
matchLength = searchMax(ctx, ip, iend, &offset, maxSearches, mls);
|
2015-11-09 02:19:33 +00:00
|
|
|
if (matchLength < MINMATCH)
|
2015-11-06 14:40:14 +00:00
|
|
|
{
|
|
|
|
ip += ((ip-anchor) >> g_searchStrength) + 1; /* jump faster over incompressible sections */
|
|
|
|
continue;
|
|
|
|
}
|
2015-11-04 02:52:54 +00:00
|
|
|
|
|
|
|
/* let's try to find a better solution */
|
|
|
|
start = ip;
|
|
|
|
|
|
|
|
while (ip<ilimit)
|
|
|
|
{
|
|
|
|
ip ++;
|
|
|
|
if (MEM_read32(ip) == MEM_read32(ip - offset_1))
|
|
|
|
{
|
|
|
|
size_t ml2 = ZSTD_count(ip+MINMATCH, ip+MINMATCH-offset_1, iend) + MINMATCH;
|
|
|
|
int gain2 = (int)(ml2 * 3);
|
|
|
|
int gain1 = (int)(matchLength*3 - ZSTD_highbit((U32)offset+1) + 1);
|
2015-11-09 02:19:33 +00:00
|
|
|
if ((ml2 >= MINMATCH) && (gain2 > gain1))
|
2015-11-04 02:52:54 +00:00
|
|
|
matchLength = ml2, offset = 0, start = ip;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
size_t offset2=999999;
|
2015-11-05 14:00:24 +00:00
|
|
|
size_t ml2 = searchMax(ctx, ip, iend, &offset2, maxSearches, mls);
|
2015-11-06 17:44:54 +00:00
|
|
|
int gain2 = (int)(ml2*(3+deep) - ZSTD_highbit((U32)offset2+1)); /* raw approx */
|
|
|
|
int gain1 = (int)(matchLength*(3+deep) - ZSTD_highbit((U32)offset+1) + (3+deep));
|
2015-11-09 02:19:33 +00:00
|
|
|
if ((ml2 >= MINMATCH) && (gain2 > gain1))
|
2015-11-04 02:52:54 +00:00
|
|
|
{
|
2015-11-06 17:44:54 +00:00
|
|
|
matchLength = ml2, offset = offset2, start = ip;
|
2015-11-04 02:52:54 +00:00
|
|
|
continue; /* search a better one */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* let's find an even better one */
|
2015-11-05 14:00:24 +00:00
|
|
|
if (deep && (ip<ilimit))
|
2015-11-04 02:52:54 +00:00
|
|
|
{
|
|
|
|
ip ++;
|
|
|
|
if (MEM_read32(ip) == MEM_read32(ip - offset_1))
|
|
|
|
{
|
|
|
|
size_t ml2 = ZSTD_count(ip+MINMATCH, ip+MINMATCH-offset_1, iend) + MINMATCH;
|
|
|
|
int gain2 = (int)(ml2 * 4);
|
|
|
|
int gain1 = (int)(matchLength*4 - ZSTD_highbit((U32)offset+1) + 1);
|
2015-11-09 02:19:33 +00:00
|
|
|
if ((ml2 >= MINMATCH) && (gain2 > gain1))
|
2015-11-04 02:52:54 +00:00
|
|
|
matchLength = ml2, offset = 0, start = ip;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
size_t offset2=999999;
|
2015-11-05 14:00:24 +00:00
|
|
|
size_t ml2 = searchMax(ctx, ip, iend, &offset2, maxSearches, mls);
|
2015-11-06 17:44:54 +00:00
|
|
|
int gain2 = (int)(ml2*4 - ZSTD_highbit((U32)offset2+1)); /* raw approx */
|
|
|
|
int gain1 = (int)(matchLength*4 - ZSTD_highbit((U32)offset+1) + 7);
|
2015-11-09 02:19:33 +00:00
|
|
|
if ((ml2 >= MINMATCH) && (gain2 > gain1))
|
2015-11-04 02:52:54 +00:00
|
|
|
{
|
2015-11-06 17:44:54 +00:00
|
|
|
matchLength = ml2, offset = offset2, start = ip;
|
|
|
|
continue;
|
2015-11-04 02:52:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break; /* nothing found : store previous solution */
|
|
|
|
}
|
|
|
|
|
2015-11-09 02:19:33 +00:00
|
|
|
/* catch up */
|
2015-11-06 17:44:54 +00:00
|
|
|
if (offset)
|
2015-11-09 02:19:33 +00:00
|
|
|
{
|
|
|
|
while ((start>anchor) && (start>ctx->base+offset) && (start[-1] == start[-1-offset]))
|
|
|
|
{ start--; matchLength++; }
|
|
|
|
}
|
|
|
|
|
|
|
|
/* store sequence */
|
2015-11-04 02:52:54 +00:00
|
|
|
{
|
|
|
|
size_t litLength = start - anchor;
|
|
|
|
if (offset) offset_1 = offset;
|
|
|
|
ZSTD_storeSeq(seqStorePtr, litLength, anchor, offset, matchLength-MINMATCH);
|
2015-11-09 02:19:33 +00:00
|
|
|
anchor = ip = start + matchLength;
|
2015-11-04 02:52:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Last Literals */
|
|
|
|
{
|
|
|
|
size_t lastLLSize = iend - anchor;
|
|
|
|
memcpy(seqStorePtr->lit, anchor, lastLLSize);
|
|
|
|
seqStorePtr->lit += lastLLSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Final compression stage */
|
|
|
|
return ZSTD_compressSequences((BYTE*)dst, maxDstSize,
|
|
|
|
seqStorePtr, srcSize);
|
|
|
|
}
|
|
|
|
|
2015-11-11 12:43:58 +00:00
|
|
|
size_t ZSTD_compressBlock_btlazy2(ZSTD_CCtx* ctx, void* dst, size_t maxDstSize, const void* src, size_t srcSize)
|
2015-10-22 14:31:46 +00:00
|
|
|
{
|
2015-11-11 12:43:58 +00:00
|
|
|
return ZSTD_compressBlock_lazy_generic(ctx, dst, maxDstSize, src, srcSize, 1, 1);
|
2015-11-05 14:00:24 +00:00
|
|
|
}
|
2015-10-22 14:31:46 +00:00
|
|
|
|
2015-11-11 12:43:58 +00:00
|
|
|
size_t ZSTD_compressBlock_lazy2(ZSTD_CCtx* ctx, void* dst, size_t maxDstSize, const void* src, size_t srcSize)
|
2015-11-05 14:00:24 +00:00
|
|
|
{
|
2015-11-11 12:43:58 +00:00
|
|
|
return ZSTD_compressBlock_lazy_generic(ctx, dst, maxDstSize, src, srcSize, 0, 1);
|
2015-11-05 14:00:24 +00:00
|
|
|
}
|
2015-10-22 14:31:46 +00:00
|
|
|
|
2015-11-11 12:43:58 +00:00
|
|
|
size_t ZSTD_compressBlock_lazy(ZSTD_CCtx* ctx, void* dst, size_t maxDstSize, const void* src, size_t srcSize)
|
2015-11-05 14:00:24 +00:00
|
|
|
{
|
2015-11-11 12:43:58 +00:00
|
|
|
return ZSTD_compressBlock_lazy_generic(ctx, dst, maxDstSize, src, srcSize, 0, 0);
|
2015-10-22 14:31:46 +00:00
|
|
|
}
|
|
|
|
|
2015-11-05 14:00:24 +00:00
|
|
|
|
2015-11-11 12:43:58 +00:00
|
|
|
size_t ZSTD_compressBlock_greedy(ZSTD_CCtx* ctx, void* dst, size_t maxDstSize, const void* src, size_t srcSize)
|
2015-10-31 11:57:14 +00:00
|
|
|
{
|
|
|
|
seqStore_t* seqStorePtr = &(ctx->seqStore);
|
|
|
|
const BYTE* const istart = (const BYTE*)src;
|
|
|
|
const BYTE* ip = istart;
|
|
|
|
const BYTE* anchor = istart;
|
|
|
|
const BYTE* const iend = istart + srcSize;
|
|
|
|
const BYTE* const ilimit = iend - 8;
|
|
|
|
|
|
|
|
size_t offset_2=REPCODE_STARTVALUE, offset_1=REPCODE_STARTVALUE;
|
|
|
|
const U32 maxSearches = 1 << ctx->params.searchLog;
|
|
|
|
const U32 mls = ctx->params.searchLength;
|
|
|
|
|
|
|
|
/* init */
|
|
|
|
ZSTD_resetSeqStore(seqStorePtr);
|
|
|
|
if (((ip-ctx->base) - ctx->dictLimit) < REPCODE_STARTVALUE) ip += REPCODE_STARTVALUE;
|
|
|
|
|
|
|
|
/* Match Loop */
|
2015-11-01 11:40:22 +00:00
|
|
|
while (ip < ilimit)
|
2015-10-31 11:57:14 +00:00
|
|
|
{
|
2015-11-01 11:40:22 +00:00
|
|
|
/* repcode */
|
2015-10-31 11:57:14 +00:00
|
|
|
if (MEM_read32(ip) == MEM_read32(ip - offset_2))
|
|
|
|
{
|
2015-11-01 11:40:22 +00:00
|
|
|
/* store sequence */
|
|
|
|
size_t matchLength = ZSTD_count(ip+MINMATCH, ip+MINMATCH-offset_2, iend);
|
|
|
|
size_t litLength = ip-anchor;
|
|
|
|
size_t offset = offset_2;
|
2015-10-31 11:57:14 +00:00
|
|
|
offset_2 = offset_1;
|
2015-11-01 11:40:22 +00:00
|
|
|
offset_1 = offset;
|
2015-10-31 11:57:14 +00:00
|
|
|
ZSTD_storeSeq(seqStorePtr, litLength, anchor, 0, matchLength);
|
|
|
|
ip += matchLength+MINMATCH;
|
|
|
|
anchor = ip;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2015-11-01 11:40:22 +00:00
|
|
|
offset_2 = offset_1; /* failed once : necessarily offset_1 now */
|
2015-10-31 11:57:14 +00:00
|
|
|
|
2015-11-01 11:40:22 +00:00
|
|
|
/* repcode at ip+1 */
|
|
|
|
if (MEM_read32(ip+1) == MEM_read32(ip+1 - offset_1))
|
2015-10-31 11:57:14 +00:00
|
|
|
{
|
2015-11-01 11:40:22 +00:00
|
|
|
size_t matchLength = ZSTD_count(ip+1+MINMATCH, ip+1+MINMATCH-offset_1, iend);
|
|
|
|
size_t litLength = ip+1-anchor;
|
|
|
|
ZSTD_storeSeq(seqStorePtr, litLength, anchor, 0, matchLength);
|
|
|
|
ip += 1+matchLength+MINMATCH;
|
|
|
|
anchor = ip;
|
|
|
|
continue;
|
2015-10-31 11:57:14 +00:00
|
|
|
}
|
|
|
|
|
2015-11-01 11:40:22 +00:00
|
|
|
/* search */
|
2015-10-31 11:57:14 +00:00
|
|
|
{
|
2015-11-03 08:49:30 +00:00
|
|
|
size_t offset=999999;
|
2015-11-11 12:43:58 +00:00
|
|
|
size_t matchLength = ZSTD_HcFindBestMatch_selectMLS(ctx, ip, iend, &offset, maxSearches, mls);
|
2015-11-09 02:19:33 +00:00
|
|
|
if (matchLength < MINMATCH)
|
2015-11-06 14:40:14 +00:00
|
|
|
{
|
|
|
|
ip += ((ip-anchor) >> g_searchStrength) + 1; /* jump faster over incompressible sections */
|
|
|
|
continue;
|
|
|
|
}
|
2015-11-06 15:33:11 +00:00
|
|
|
while ((ip>anchor) && (ip-offset>ctx->base) && (ip[-1] == ip[-1-offset])) { ip--; matchLength++; } /* catch up */
|
2015-11-01 11:40:22 +00:00
|
|
|
/* store sequence */
|
|
|
|
{
|
|
|
|
size_t litLength = ip-anchor;
|
2015-11-03 08:49:30 +00:00
|
|
|
offset_1 = offset;
|
2015-11-01 11:40:22 +00:00
|
|
|
ZSTD_storeSeq(seqStorePtr, litLength, anchor, offset_1, matchLength-MINMATCH);
|
|
|
|
ip += matchLength;
|
|
|
|
anchor = ip;
|
|
|
|
}
|
2015-10-31 11:57:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Last Literals */
|
|
|
|
{
|
|
|
|
size_t lastLLSize = iend - anchor;
|
|
|
|
memcpy(seqStorePtr->lit, anchor, lastLLSize);
|
|
|
|
seqStorePtr->lit += lastLLSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Final compression stage */
|
|
|
|
return ZSTD_compressSequences((BYTE*)dst, maxDstSize,
|
2015-11-01 11:40:22 +00:00
|
|
|
|
2015-10-31 11:57:14 +00:00
|
|
|
seqStorePtr, srcSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-11 12:43:58 +00:00
|
|
|
typedef size_t (*ZSTD_blockCompressor) (ZSTD_CCtx* ctx, void* dst, size_t maxDstSize, const void* src, size_t srcSize);
|
2015-11-04 11:05:27 +00:00
|
|
|
|
2015-11-11 12:43:58 +00:00
|
|
|
static ZSTD_blockCompressor ZSTD_selectBlockCompressor(ZSTD_strategy strat)
|
2015-10-31 11:57:14 +00:00
|
|
|
{
|
2015-11-04 11:05:27 +00:00
|
|
|
switch(strat)
|
2015-11-03 08:49:30 +00:00
|
|
|
{
|
2015-11-04 11:05:27 +00:00
|
|
|
default :
|
2015-11-11 12:43:58 +00:00
|
|
|
case ZSTD_fast:
|
|
|
|
return ZSTD_compressBlock_fast;
|
|
|
|
case ZSTD_greedy:
|
|
|
|
return ZSTD_compressBlock_greedy;
|
|
|
|
case ZSTD_lazy:
|
|
|
|
return ZSTD_compressBlock_lazy;
|
|
|
|
case ZSTD_lazy2:
|
|
|
|
return ZSTD_compressBlock_lazy2;
|
|
|
|
case ZSTD_btlazy2:
|
|
|
|
return ZSTD_compressBlock_btlazy2;
|
2015-11-03 08:49:30 +00:00
|
|
|
}
|
2015-10-31 11:57:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-11 12:43:58 +00:00
|
|
|
size_t ZSTD_compressBlock(ZSTD_CCtx* ctx, void* dst, size_t maxDstSize, const void* src, size_t srcSize)
|
2015-11-04 11:05:27 +00:00
|
|
|
{
|
2015-11-11 12:43:58 +00:00
|
|
|
ZSTD_blockCompressor blockCompressor = ZSTD_selectBlockCompressor(ctx->params.strategy);
|
2015-11-04 11:05:27 +00:00
|
|
|
return blockCompressor(ctx, dst, maxDstSize, src, srcSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-11 12:43:58 +00:00
|
|
|
static size_t ZSTD_compress_generic (ZSTD_CCtx* ctxPtr,
|
2015-10-22 14:31:46 +00:00
|
|
|
void* dst, size_t maxDstSize,
|
|
|
|
const void* src, size_t srcSize)
|
|
|
|
{
|
2015-11-04 17:19:39 +00:00
|
|
|
size_t blockSize = BLOCKSIZE;
|
2015-10-22 14:31:46 +00:00
|
|
|
size_t remaining = srcSize;
|
|
|
|
const BYTE* ip = (const BYTE*)src;
|
|
|
|
BYTE* const ostart = (BYTE*)dst;
|
|
|
|
BYTE* op = ostart;
|
2015-11-11 12:43:58 +00:00
|
|
|
const ZSTD_blockCompressor blockCompressor = ZSTD_selectBlockCompressor(ctxPtr->params.strategy);
|
2015-11-01 11:40:22 +00:00
|
|
|
|
2015-11-04 17:19:39 +00:00
|
|
|
while (remaining)
|
2015-10-22 14:31:46 +00:00
|
|
|
{
|
2015-11-04 17:19:39 +00:00
|
|
|
size_t cSize;
|
2015-10-22 14:31:46 +00:00
|
|
|
|
2015-11-04 22:36:36 +00:00
|
|
|
if (maxDstSize < 3 + MIN_CBLOCK_SIZE) return ERROR(dstSize_tooSmall); /* not enough space to store compressed block */
|
2015-10-22 14:31:46 +00:00
|
|
|
|
2015-11-04 17:19:39 +00:00
|
|
|
if (remaining < blockSize) blockSize = remaining;
|
|
|
|
cSize = blockCompressor(ctxPtr, op+3, maxDstSize-3, ip, blockSize);
|
2015-10-22 14:31:46 +00:00
|
|
|
if (ZSTD_isError(cSize)) return cSize;
|
|
|
|
|
|
|
|
if (cSize == 0)
|
|
|
|
{
|
2015-11-04 17:19:39 +00:00
|
|
|
cSize = ZSTD_noCompressBlock(op, maxDstSize, ip, blockSize); /* block is not compressible */
|
2015-10-22 14:31:46 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
op[0] = (BYTE)(cSize>>16);
|
|
|
|
op[1] = (BYTE)(cSize>>8);
|
|
|
|
op[2] = (BYTE)cSize;
|
|
|
|
op[0] += (BYTE)(bt_compressed << 6); /* is a compressed block */
|
|
|
|
cSize += 3;
|
|
|
|
}
|
|
|
|
|
2015-11-04 17:19:39 +00:00
|
|
|
remaining -= blockSize;
|
|
|
|
maxDstSize -= cSize;
|
|
|
|
ip += blockSize;
|
2015-10-22 14:31:46 +00:00
|
|
|
op += cSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
return op-ostart;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-11 12:43:58 +00:00
|
|
|
size_t ZSTD_compressContinue (ZSTD_CCtx* ctxPtr,
|
2015-10-29 15:49:43 +00:00
|
|
|
void* dst, size_t dstSize,
|
|
|
|
const void* src, size_t srcSize)
|
2015-10-22 14:31:46 +00:00
|
|
|
{
|
2015-10-29 15:49:43 +00:00
|
|
|
const BYTE* const ip = (const BYTE*) src;
|
2015-10-22 14:31:46 +00:00
|
|
|
|
|
|
|
/* Check if blocks follow each other */
|
2015-10-29 15:49:43 +00:00
|
|
|
if (ip != ctxPtr->end)
|
2015-10-22 14:31:46 +00:00
|
|
|
{
|
2015-10-29 15:49:43 +00:00
|
|
|
if (ctxPtr->end != NULL)
|
2015-11-11 12:43:58 +00:00
|
|
|
ZSTD_resetCCtx_advanced(ctxPtr, ctxPtr->params, srcSize);
|
2015-10-29 15:49:43 +00:00
|
|
|
ctxPtr->base = ip;
|
2015-10-22 14:31:46 +00:00
|
|
|
}
|
|
|
|
|
2015-10-29 15:49:43 +00:00
|
|
|
ctxPtr->end = ip + srcSize;
|
2015-11-11 12:43:58 +00:00
|
|
|
return ZSTD_compress_generic (ctxPtr, dst, dstSize, src, srcSize);
|
2015-10-22 14:31:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-11 12:43:58 +00:00
|
|
|
size_t ZSTD_compressBegin_advanced(ZSTD_CCtx* ctx,
|
2015-10-25 13:06:35 +00:00
|
|
|
void* dst, size_t maxDstSize,
|
2015-11-11 12:43:58 +00:00
|
|
|
const ZSTD_parameters params,
|
2015-11-09 16:42:17 +00:00
|
|
|
U64 srcSizeHint)
|
2015-10-22 14:31:46 +00:00
|
|
|
{
|
2015-10-30 05:40:22 +00:00
|
|
|
size_t errorCode;
|
2015-10-22 14:31:46 +00:00
|
|
|
if (maxDstSize < 4) return ERROR(dstSize_tooSmall);
|
2015-11-11 12:43:58 +00:00
|
|
|
errorCode = ZSTD_resetCCtx_advanced(ctx, params, srcSizeHint);
|
2015-10-30 05:40:22 +00:00
|
|
|
if (ZSTD_isError(errorCode)) return errorCode;
|
2015-10-29 15:49:43 +00:00
|
|
|
MEM_writeLE32(dst, ZSTD_magicNumber); /* Write Header */
|
2015-10-22 14:31:46 +00:00
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
|
2015-10-25 13:06:35 +00:00
|
|
|
|
2015-11-11 12:43:58 +00:00
|
|
|
size_t ZSTD_compressBegin(ZSTD_CCtx* ctx, void* dst, size_t maxDstSize, int compressionLevel, U64 srcSizeHint)
|
2015-10-25 13:06:35 +00:00
|
|
|
{
|
2015-11-09 16:42:17 +00:00
|
|
|
int tableID = ((srcSizeHint-1) > 128 KB); /* intentional underflow for 0 */
|
2015-10-29 15:49:43 +00:00
|
|
|
if (compressionLevel<=0) compressionLevel = 1;
|
2015-11-11 12:43:58 +00:00
|
|
|
if (compressionLevel > ZSTD_MAX_CLEVEL) compressionLevel = ZSTD_MAX_CLEVEL;
|
|
|
|
return ZSTD_compressBegin_advanced(ctx, dst, maxDstSize, ZSTD_defaultParameters[tableID][compressionLevel], srcSizeHint);
|
2015-10-25 13:06:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-11 12:43:58 +00:00
|
|
|
size_t ZSTD_compressEnd(ZSTD_CCtx* ctx, void* dst, size_t maxDstSize)
|
2015-10-29 15:49:43 +00:00
|
|
|
{
|
|
|
|
BYTE* op = (BYTE*)dst;
|
|
|
|
|
|
|
|
/* Sanity check */
|
|
|
|
(void)ctx;
|
|
|
|
if (maxDstSize < 3) return ERROR(dstSize_tooSmall);
|
|
|
|
|
|
|
|
/* End of frame */
|
|
|
|
op[0] = (BYTE)(bt_end << 6);
|
|
|
|
op[1] = 0;
|
|
|
|
op[2] = 0;
|
|
|
|
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
|
2015-11-11 12:43:58 +00:00
|
|
|
size_t ZSTD_compress_advanced (ZSTD_CCtx* ctx,
|
2015-10-25 13:06:35 +00:00
|
|
|
void* dst, size_t maxDstSize,
|
|
|
|
const void* src, size_t srcSize,
|
2015-11-11 12:43:58 +00:00
|
|
|
ZSTD_parameters params)
|
2015-10-22 14:31:46 +00:00
|
|
|
{
|
|
|
|
BYTE* const ostart = (BYTE*)dst;
|
|
|
|
BYTE* op = ostart;
|
2015-10-30 05:40:22 +00:00
|
|
|
size_t oSize;
|
2015-10-22 14:31:46 +00:00
|
|
|
|
2015-10-29 16:08:03 +00:00
|
|
|
/* correct params, to use less memory */
|
2015-11-05 16:32:18 +00:00
|
|
|
{
|
|
|
|
U32 srcLog = ZSTD_highbit((U32)srcSize-1) + 1;
|
2015-11-11 12:43:58 +00:00
|
|
|
U32 contentBtPlus = (ctx->params.strategy == ZSTD_btlazy2);
|
2015-11-05 16:32:18 +00:00
|
|
|
if (params.windowLog > srcLog) params.windowLog = srcLog;
|
|
|
|
if (params.contentLog > srcLog+contentBtPlus) params.contentLog = srcLog+contentBtPlus;
|
|
|
|
}
|
2015-10-29 16:08:03 +00:00
|
|
|
|
2015-10-22 14:31:46 +00:00
|
|
|
/* Header */
|
2015-11-11 12:43:58 +00:00
|
|
|
oSize = ZSTD_compressBegin_advanced(ctx, dst, maxDstSize, params, srcSize);
|
2015-10-22 14:31:46 +00:00
|
|
|
if(ZSTD_isError(oSize)) return oSize;
|
|
|
|
op += oSize;
|
|
|
|
maxDstSize -= oSize;
|
|
|
|
|
|
|
|
/* body (compression) */
|
2015-10-29 16:15:14 +00:00
|
|
|
ctx->base = (const BYTE*)src;
|
2015-11-11 12:43:58 +00:00
|
|
|
oSize = ZSTD_compress_generic (ctx, op, maxDstSize, src, srcSize);
|
2015-10-22 14:31:46 +00:00
|
|
|
if(ZSTD_isError(oSize)) return oSize;
|
|
|
|
op += oSize;
|
|
|
|
maxDstSize -= oSize;
|
|
|
|
|
|
|
|
/* Close frame */
|
2015-11-11 12:43:58 +00:00
|
|
|
oSize = ZSTD_compressEnd(ctx, op, maxDstSize);
|
2015-10-22 14:31:46 +00:00
|
|
|
if(ZSTD_isError(oSize)) return oSize;
|
|
|
|
op += oSize;
|
|
|
|
|
|
|
|
return (op - ostart);
|
|
|
|
}
|
|
|
|
|
2015-11-11 12:43:58 +00:00
|
|
|
size_t ZSTD_compressCCtx (ZSTD_CCtx* ctx, void* dst, size_t maxDstSize, const void* src, size_t srcSize, int compressionLevel)
|
2015-10-25 13:06:35 +00:00
|
|
|
{
|
2015-11-09 15:38:17 +00:00
|
|
|
const int tableID = (srcSize > 128 KB);
|
2015-11-11 12:43:58 +00:00
|
|
|
//if (compressionLevel<=1) return ZSTD_compress(dst, maxDstSize, src, srcSize); /* fast mode */
|
|
|
|
if (compressionLevel < 1) compressionLevel = 1;
|
|
|
|
if (compressionLevel > ZSTD_MAX_CLEVEL) compressionLevel = ZSTD_MAX_CLEVEL;
|
|
|
|
return ZSTD_compress_advanced(ctx, dst, maxDstSize, src, srcSize, ZSTD_defaultParameters[tableID][compressionLevel]);
|
2015-10-25 13:06:35 +00:00
|
|
|
}
|
|
|
|
|
2015-11-11 12:43:58 +00:00
|
|
|
size_t ZSTD_compress(void* dst, size_t maxDstSize, const void* src, size_t srcSize, int compressionLevel)
|
2015-10-22 14:31:46 +00:00
|
|
|
{
|
2015-10-29 21:02:40 +00:00
|
|
|
size_t result;
|
2015-11-11 12:43:58 +00:00
|
|
|
ZSTD_CCtx ctxBody;
|
2015-10-29 17:41:45 +00:00
|
|
|
memset(&ctxBody, 0, sizeof(ctxBody));
|
2015-11-11 12:43:58 +00:00
|
|
|
result = ZSTD_compressCCtx(&ctxBody, dst, maxDstSize, src, srcSize, compressionLevel);
|
2015-10-29 21:02:40 +00:00
|
|
|
free(ctxBody.workSpace);
|
|
|
|
return result;
|
2015-10-22 14:31:46 +00:00
|
|
|
}
|