2017-08-18 16:52:05 -07:00
|
|
|
/*
|
2021-03-29 14:23:36 -07:00
|
|
|
* Copyright (c) Yann Collet, Facebook, Inc.
|
2016-08-30 10:04:33 -07:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
2017-08-18 16:52:05 -07:00
|
|
|
* 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).
|
2017-09-08 00:09:23 -07:00
|
|
|
* You may select, at your option, one of the above-listed licenses.
|
2016-08-30 10:04:33 -07:00
|
|
|
*/
|
2015-11-25 05:42:45 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* *************************************
|
2016-02-02 17:46:46 -08:00
|
|
|
* Dependencies
|
2015-11-25 05:42:45 -08:00
|
|
|
***************************************/
|
2016-06-04 10:12:48 -07:00
|
|
|
#define ZBUFF_STATIC_LINKING_ONLY
|
|
|
|
#include "zbuff.h"
|
2015-11-25 05:42:45 -08:00
|
|
|
|
|
|
|
|
|
|
|
ZBUFF_DCtx* ZBUFF_createDCtx(void)
|
|
|
|
{
|
2016-12-06 08:16:41 -08:00
|
|
|
return ZSTD_createDStream();
|
2016-05-23 08:04:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
ZBUFF_DCtx* ZBUFF_createDCtx_advanced(ZSTD_customMem customMem)
|
|
|
|
{
|
2016-12-06 08:16:41 -08:00
|
|
|
return ZSTD_createDStream_advanced(customMem);
|
2015-11-25 05:42:45 -08:00
|
|
|
}
|
|
|
|
|
2016-04-07 10:35:23 -07:00
|
|
|
size_t ZBUFF_freeDCtx(ZBUFF_DCtx* zbd)
|
2015-11-25 05:42:45 -08:00
|
|
|
{
|
2016-12-06 08:16:41 -08:00
|
|
|
return ZSTD_freeDStream(zbd);
|
2015-11-25 05:42:45 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* *** Initialization *** */
|
|
|
|
|
2016-04-07 10:35:23 -07:00
|
|
|
size_t ZBUFF_decompressInitDictionary(ZBUFF_DCtx* zbd, const void* dict, size_t dictSize)
|
2015-11-25 05:42:45 -08:00
|
|
|
{
|
2016-12-06 08:16:41 -08:00
|
|
|
return ZSTD_initDStream_usingDict(zbd, dict, dictSize);
|
2015-11-25 05:42:45 -08:00
|
|
|
}
|
|
|
|
|
2016-04-07 10:35:23 -07:00
|
|
|
size_t ZBUFF_decompressInit(ZBUFF_DCtx* zbd)
|
2015-12-12 02:17:42 -08:00
|
|
|
{
|
2016-12-06 08:16:41 -08:00
|
|
|
return ZSTD_initDStream(zbd);
|
2016-06-04 10:16:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-25 05:42:45 -08:00
|
|
|
/* *** Decompression *** */
|
|
|
|
|
2016-04-07 10:35:23 -07:00
|
|
|
size_t ZBUFF_decompressContinue(ZBUFF_DCtx* zbd,
|
2016-03-11 12:58:04 -08:00
|
|
|
void* dst, size_t* dstCapacityPtr,
|
|
|
|
const void* src, size_t* srcSizePtr)
|
2015-11-25 05:42:45 -08:00
|
|
|
{
|
2016-12-06 08:16:41 -08:00
|
|
|
ZSTD_outBuffer outBuff;
|
|
|
|
ZSTD_inBuffer inBuff;
|
|
|
|
size_t result;
|
|
|
|
outBuff.dst = dst;
|
|
|
|
outBuff.pos = 0;
|
|
|
|
outBuff.size = *dstCapacityPtr;
|
|
|
|
inBuff.src = src;
|
|
|
|
inBuff.pos = 0;
|
|
|
|
inBuff.size = *srcSizePtr;
|
|
|
|
result = ZSTD_decompressStream(zbd, &outBuff, &inBuff);
|
|
|
|
*dstCapacityPtr = outBuff.pos;
|
|
|
|
*srcSizePtr = inBuff.pos;
|
|
|
|
return result;
|
2015-11-25 05:42:45 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* *************************************
|
|
|
|
* Tool functions
|
|
|
|
***************************************/
|
2016-12-06 08:16:41 -08:00
|
|
|
size_t ZBUFF_recommendedDInSize(void) { return ZSTD_DStreamInSize(); }
|
|
|
|
size_t ZBUFF_recommendedDOutSize(void) { return ZSTD_DStreamOutSize(); }
|