Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
35132477c0 | ||
|
|
3bae910a09 | ||
|
|
2a70f54e48 | ||
|
|
08951e9d54 | ||
|
|
357c34b90b | ||
|
|
d97262a3a2 | ||
|
|
5337364bd8 | ||
|
|
e281abdb29 | ||
|
|
988bcf360a | ||
|
|
8e0084796a | ||
|
|
cadd7cd54f | ||
|
|
6cacd34d44 | ||
|
|
b21e9cbe8a | ||
|
|
f6ff53cd4e | ||
|
|
98c8884999 | ||
|
|
d3d2db587e | ||
|
|
961b6a0e34 | ||
|
|
227cc39e15 | ||
|
|
00bbb6bfef | ||
|
|
ea2ecdc315 | ||
|
|
e9ed5cdc94 | ||
|
|
e20d5cf117 | ||
|
|
b23e1ce319 | ||
|
|
17508f1a16 | ||
|
|
8847238cac | ||
|
|
69c2cdb45c | ||
|
|
44f684ded3 | ||
|
|
5e80dd3261 | ||
|
|
f0bc673b26 | ||
|
|
3c174f4da9 | ||
|
|
158e7703bb | ||
|
|
2b1a3638e6 | ||
|
|
3c242e79d3 | ||
|
|
2cac5b30b9 | ||
|
|
fbc69f8649 | ||
|
|
696c4d7ef5 | ||
|
|
650a8778c1 | ||
|
|
eed2081e55 | ||
|
|
a43a854cdb | ||
|
|
bdf554b481 | ||
|
|
73d74a05b9 | ||
|
|
fc0eafbe84 | ||
|
|
45dc35628c | ||
|
|
d158c35e9f | ||
|
|
8e0ee681b8 | ||
|
|
3ae543ce75 | ||
|
|
677ed26aa7 | ||
|
|
25c506601c | ||
|
|
e66708daf7 | ||
|
|
0809a8863d | ||
|
|
3b6ae77e15 |
@@ -0,0 +1,5 @@
|
|||||||
|
configurationVersion: 1
|
||||||
|
|
||||||
|
filters:
|
||||||
|
# third-party embedded
|
||||||
|
- filePath: lib/dictBuilder/divsufsort.c
|
||||||
@@ -37,3 +37,6 @@ _zstdbench/
|
|||||||
|
|
||||||
# CMake
|
# CMake
|
||||||
projects/cmake/
|
projects/cmake/
|
||||||
|
|
||||||
|
# Test artefacts
|
||||||
|
tmp*
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ else
|
|||||||
VOID = /dev/null
|
VOID = /dev/null
|
||||||
endif
|
endif
|
||||||
|
|
||||||
.PHONY: default all zlibwrapper zstdprogram clean install uninstall travis-install test clangtest gpptest armtest usan asan uasan
|
.PHONY: default all zlibwrapper zstdprogram zstd clean install uninstall travis-install test clangtest gpptest armtest usan asan uasan
|
||||||
|
|
||||||
default: zstdprogram
|
default: zstdprogram
|
||||||
|
|
||||||
@@ -53,6 +53,8 @@ zstdprogram:
|
|||||||
$(MAKE) -C $(PRGDIR)
|
$(MAKE) -C $(PRGDIR)
|
||||||
cp $(PRGDIR)/zstd .
|
cp $(PRGDIR)/zstd .
|
||||||
|
|
||||||
|
zstd: zstdprogram
|
||||||
|
|
||||||
zlibwrapper:
|
zlibwrapper:
|
||||||
$(MAKE) -C $(ZSTDDIR) all
|
$(MAKE) -C $(ZSTDDIR) all
|
||||||
$(MAKE) -C $(ZWRAPDIR) all
|
$(MAKE) -C $(ZWRAPDIR) all
|
||||||
|
|||||||
@@ -1,3 +1,9 @@
|
|||||||
|
v0.7.4
|
||||||
|
Added : new examples
|
||||||
|
Fixed : segfault when using small dictionaries, reported by Felix Handte
|
||||||
|
Modified : default compression level for CLI is 3
|
||||||
|
|
||||||
|
|
||||||
v0.7.3
|
v0.7.3
|
||||||
New : compression format specification
|
New : compression format specification
|
||||||
New : `--` separator, stating that all following arguments are file names. Suggested by Chip Turner.
|
New : `--` separator, stating that all following arguments are file names. Suggested by Chip Turner.
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
**Zstd**, short for Zstandard, is a fast lossless compression algorithm, targeting real-time compression scenarios at zlib-level and better compression ratios.
|
**Zstd**, short for Zstandard, is a fast lossless compression algorithm,
|
||||||
|
targeting real-time compression scenarios at zlib-level and better compression ratios.
|
||||||
|
|
||||||
It is provided as a BSD-license package, hosted on Github.
|
It is provided as an open-source BSD-licensed **C** library.
|
||||||
|
For other programming languages,
|
||||||
|
you can consult a list of known ports on [Zstandard homepage](http://www.zstd.net/#other-languages).
|
||||||
|
|
||||||
|Branch |Status |
|
|Branch |Status |
|
||||||
|------------|---------|
|
|------------|---------|
|
||||||
|
|||||||
+4
-1
@@ -27,7 +27,8 @@ install:
|
|||||||
SET "CLANG_PARAMS=-C programs zstd fullbench fuzzer zbufftest paramgrill datagen CC=clang MOREFLAGS="--target=x86_64-w64-mingw32 -Werror -Wconversion -Wno-sign-conversion"" &&
|
SET "CLANG_PARAMS=-C programs zstd fullbench fuzzer zbufftest paramgrill datagen CC=clang MOREFLAGS="--target=x86_64-w64-mingw32 -Werror -Wconversion -Wno-sign-conversion"" &&
|
||||||
SET "PATH_MINGW32=c:\MinGW\bin;c:\MinGW\usr\bin" &&
|
SET "PATH_MINGW32=c:\MinGW\bin;c:\MinGW\usr\bin" &&
|
||||||
SET "PATH_MINGW64=c:\msys64\mingw64\bin;c:\msys64\usr\bin" &&
|
SET "PATH_MINGW64=c:\msys64\mingw64\bin;c:\msys64\usr\bin" &&
|
||||||
COPY C:\MinGW\bin\mingw32-make.exe C:\MinGW\bin\make.exe
|
COPY C:\MinGW\bin\mingw32-make.exe C:\MinGW\bin\make.exe &&
|
||||||
|
COPY C:\MinGW\bin\gcc.exe C:\MinGW\bin\cc.exe
|
||||||
) else (
|
) else (
|
||||||
IF [%PLATFORM%]==[x64] (SET ADDITIONALPARAM=/p:LibraryPath="C:\Program Files\Microsoft SDKs\Windows\v7.1\lib\x64;c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\lib\amd64;C:\Program Files (x86)\Microsoft Visual Studio 10.0\;C:\Program Files (x86)\Microsoft Visual Studio 10.0\lib\amd64;")
|
IF [%PLATFORM%]==[x64] (SET ADDITIONALPARAM=/p:LibraryPath="C:\Program Files\Microsoft SDKs\Windows\v7.1\lib\x64;c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\lib\amd64;C:\Program Files (x86)\Microsoft Visual Studio 10.0\;C:\Program Files (x86)\Microsoft Visual Studio 10.0\lib\amd64;")
|
||||||
)
|
)
|
||||||
@@ -50,6 +51,8 @@ build_script:
|
|||||||
ECHO *** &&
|
ECHO *** &&
|
||||||
ECHO *** Building %PLATFORM% &&
|
ECHO *** Building %PLATFORM% &&
|
||||||
ECHO *** &&
|
ECHO *** &&
|
||||||
|
make -v &&
|
||||||
|
cc -v &&
|
||||||
ECHO make %MAKE_PARAMS% &&
|
ECHO make %MAKE_PARAMS% &&
|
||||||
make %MAKE_PARAMS% &&
|
make %MAKE_PARAMS% &&
|
||||||
make clean
|
make clean
|
||||||
|
|||||||
@@ -0,0 +1,10 @@
|
|||||||
|
#build
|
||||||
|
simple_compression
|
||||||
|
simple_decompression
|
||||||
|
dictionary_compression
|
||||||
|
dictionary_decompression
|
||||||
|
|
||||||
|
#test artefact
|
||||||
|
tmp*
|
||||||
|
test*
|
||||||
|
*.zst
|
||||||
@@ -0,0 +1,59 @@
|
|||||||
|
# ##########################################################################
|
||||||
|
# ZSTD educational examples - Makefile
|
||||||
|
# Copyright (C) Yann Collet 2016
|
||||||
|
#
|
||||||
|
# GPL v2 License
|
||||||
|
#
|
||||||
|
# This program is free software; you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation; either version 2 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License along
|
||||||
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
#
|
||||||
|
# You can contact the author at :
|
||||||
|
# - zstd homepage : http://www.zstd.net/
|
||||||
|
# ##########################################################################
|
||||||
|
|
||||||
|
# This Makefile presumes libzstd is installed, using `sudo make install`
|
||||||
|
|
||||||
|
LDFLAGS+= -lzstd
|
||||||
|
|
||||||
|
.PHONY: default all clean test
|
||||||
|
|
||||||
|
default: all
|
||||||
|
|
||||||
|
all: simple_compression simple_decompression \
|
||||||
|
dictionary_compression dictionary_decompression
|
||||||
|
|
||||||
|
simple_compression : simple_compression.c
|
||||||
|
$(CC) $(CPPFLAGS) $(CFLAGS) $^ $(LDFLAGS) -o $@
|
||||||
|
|
||||||
|
simple_decompression : simple_decompression.c
|
||||||
|
$(CC) $(CPPFLAGS) $(CFLAGS) $^ $(LDFLAGS) -o $@
|
||||||
|
|
||||||
|
dictionary_compression : dictionary_compression.c
|
||||||
|
$(CC) $(CPPFLAGS) $(CFLAGS) $^ $(LDFLAGS) -o $@
|
||||||
|
|
||||||
|
dictionary_decompression : dictionary_decompression.c
|
||||||
|
$(CC) $(CPPFLAGS) $(CFLAGS) $^ $(LDFLAGS) -o $@
|
||||||
|
|
||||||
|
clean:
|
||||||
|
@rm -f core *.o tmp* result* *.zst \
|
||||||
|
simple_compression simple_decompression \
|
||||||
|
dictionary_compression dictionary_decompression
|
||||||
|
@echo Cleaning completed
|
||||||
|
|
||||||
|
test: all
|
||||||
|
cp README.md tmp
|
||||||
|
./simple_compression tmp
|
||||||
|
@echo starting simple_decompression
|
||||||
|
./simple_decompression tmp.zst
|
||||||
|
@echo tests completed
|
||||||
+12
-1
@@ -1,7 +1,18 @@
|
|||||||
Zstandard library : usage examples
|
Zstandard library : usage examples
|
||||||
==================================
|
==================================
|
||||||
|
|
||||||
|
- [Simple compression](simple_compression.c)
|
||||||
|
Compress a single file.
|
||||||
|
Introduces usage of : `ZSTD_compress()`
|
||||||
|
|
||||||
|
- [Simple decompression](simple_decompression.c)
|
||||||
|
Decompress a single file compressed by zstd.
|
||||||
|
Introduces usage of : `ZSTD_decompress()`
|
||||||
|
|
||||||
|
- [Dictionary compression](dictionary_compression.c)
|
||||||
|
Compress multiple files using the same dictionary.
|
||||||
|
Introduces usage of : `ZSTD_createCDict()` and `ZSTD_compress_usingCDict()`
|
||||||
|
|
||||||
- [Dictionary decompression](dictionary_decompression.c)
|
- [Dictionary decompression](dictionary_decompression.c)
|
||||||
Decompress multiple files using the same dictionary.
|
Decompress multiple files using the same dictionary.
|
||||||
Compatible with Legacy modes.
|
|
||||||
Introduces usage of : `ZSTD_createDDict()` and `ZSTD_decompress_usingDDict()`
|
Introduces usage of : `ZSTD_createDDict()` and `ZSTD_decompress_usingDDict()`
|
||||||
|
|||||||
@@ -0,0 +1,163 @@
|
|||||||
|
/*
|
||||||
|
Dictionary decompression
|
||||||
|
Educational program using zstd library
|
||||||
|
Copyright (C) Yann Collet 2016
|
||||||
|
|
||||||
|
GPL v2 License
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License along
|
||||||
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
|
||||||
|
You can contact the author at :
|
||||||
|
- zstd homepage : http://www.zstd.net/
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <stdlib.h> // malloc, exit
|
||||||
|
#include <stdio.h> // printf
|
||||||
|
#include <string.h> // strerror
|
||||||
|
#include <errno.h> // errno
|
||||||
|
#include <sys/stat.h> // stat
|
||||||
|
#include <zstd.h> // presumes zstd library is installed
|
||||||
|
|
||||||
|
|
||||||
|
static off_t fsize_X(const char *filename)
|
||||||
|
{
|
||||||
|
struct stat st;
|
||||||
|
if (stat(filename, &st) == 0) return st.st_size;
|
||||||
|
/* error */
|
||||||
|
perror(filename);
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
static FILE* fopen_X(const char *filename, const char *instruction)
|
||||||
|
{
|
||||||
|
FILE* const inFile = fopen(filename, instruction);
|
||||||
|
if (inFile) return inFile;
|
||||||
|
/* error */
|
||||||
|
perror(filename);
|
||||||
|
exit(2);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void* malloc_X(size_t size)
|
||||||
|
{
|
||||||
|
void* const buff = malloc(size);
|
||||||
|
if (buff) return buff;
|
||||||
|
/* error */
|
||||||
|
perror(NULL);
|
||||||
|
exit(3);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void* loadFile_X(const char* fileName, size_t* size)
|
||||||
|
{
|
||||||
|
off_t const buffSize = fsize_X(fileName);
|
||||||
|
FILE* const inFile = fopen_X(fileName, "rb");
|
||||||
|
void* const buffer = malloc_X(buffSize);
|
||||||
|
size_t const readSize = fread(buffer, 1, buffSize, inFile);
|
||||||
|
if (readSize != (size_t)buffSize) {
|
||||||
|
fprintf(stderr, "fread: %s : %s \n", fileName, strerror(errno));
|
||||||
|
exit(4);
|
||||||
|
}
|
||||||
|
fclose(inFile);
|
||||||
|
*size = buffSize;
|
||||||
|
return buffer;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void saveFile_X(const char* fileName, const void* buff, size_t buffSize)
|
||||||
|
{
|
||||||
|
FILE* const oFile = fopen_X(fileName, "wb");
|
||||||
|
size_t const wSize = fwrite(buff, 1, buffSize, oFile);
|
||||||
|
if (wSize != (size_t)buffSize) {
|
||||||
|
fprintf(stderr, "fwrite: %s : %s \n", fileName, strerror(errno));
|
||||||
|
exit(5);
|
||||||
|
}
|
||||||
|
if (fclose(oFile)) {
|
||||||
|
perror(fileName);
|
||||||
|
exit(6);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* createDict() :
|
||||||
|
`dictFileName` is supposed to have been created using `zstd --train` */
|
||||||
|
static const ZSTD_CDict* createDict(const char* dictFileName)
|
||||||
|
{
|
||||||
|
size_t dictSize;
|
||||||
|
printf("loading dictionary %s \n", dictFileName);
|
||||||
|
void* const dictBuffer = loadFile_X(dictFileName, &dictSize);
|
||||||
|
const ZSTD_CDict* const ddict = ZSTD_createCDict(dictBuffer, dictSize, 3);
|
||||||
|
free(dictBuffer);
|
||||||
|
return ddict;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static void compress(const char* fname, const char* oname, const ZSTD_CDict* cdict)
|
||||||
|
{
|
||||||
|
size_t fSize;
|
||||||
|
void* const fBuff = loadFile_X(fname, &fSize);
|
||||||
|
size_t const cBuffSize = ZSTD_compressBound(fSize);
|
||||||
|
void* const cBuff = malloc_X(cBuffSize);
|
||||||
|
|
||||||
|
ZSTD_CCtx* const cctx = ZSTD_createCCtx();
|
||||||
|
size_t const cSize = ZSTD_compress_usingCDict(cctx, cBuff, cBuffSize, fBuff, fSize, cdict);
|
||||||
|
if (ZSTD_isError(cSize)) {
|
||||||
|
fprintf(stderr, "error compressing %s : %s \n", fname, ZSTD_getErrorName(cSize));
|
||||||
|
exit(7);
|
||||||
|
}
|
||||||
|
|
||||||
|
saveFile_X(oname, cBuff, cSize);
|
||||||
|
|
||||||
|
/* success */
|
||||||
|
printf("%25s : %6u -> %7u - %s \n", fname, (unsigned)fSize, (unsigned)cSize, oname);
|
||||||
|
|
||||||
|
ZSTD_freeCCtx(cctx);
|
||||||
|
free(fBuff);
|
||||||
|
free(cBuff);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static char* createOutFilename(const char* filename)
|
||||||
|
{
|
||||||
|
size_t const inL = strlen(filename);
|
||||||
|
size_t const outL = inL + 5;
|
||||||
|
void* outSpace = malloc_X(outL);
|
||||||
|
memset(outSpace, 0, outL);
|
||||||
|
strcat(outSpace, filename);
|
||||||
|
strcat(outSpace, ".zst");
|
||||||
|
return (char*)outSpace;
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(int argc, const char** argv)
|
||||||
|
{
|
||||||
|
const char* const exeName = argv[0];
|
||||||
|
|
||||||
|
if (argc<3) {
|
||||||
|
fprintf(stderr, "wrong arguments\n");
|
||||||
|
fprintf(stderr, "usage:\n");
|
||||||
|
fprintf(stderr, "%s [FILES] dictionary\n", exeName);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* load dictionary only once */
|
||||||
|
const char* const dictName = argv[argc-1];
|
||||||
|
const ZSTD_CDict* const dictPtr = createDict(dictName);
|
||||||
|
|
||||||
|
int u;
|
||||||
|
for (u=1; u<argc-1; u++) {
|
||||||
|
const char* inFilename = argv[u];
|
||||||
|
char* const outFilename = createOutFilename(inFilename);
|
||||||
|
compress(inFilename, outFilename, dictPtr);
|
||||||
|
free(outFilename);
|
||||||
|
}
|
||||||
|
|
||||||
|
printf("All %u files compressed. \n", argc-2);
|
||||||
|
}
|
||||||
@@ -1,12 +1,37 @@
|
|||||||
#include <stdlib.h> // exit
|
/*
|
||||||
|
Dictionary decompression
|
||||||
|
Educational program using zstd library
|
||||||
|
Copyright (C) Yann Collet 2016
|
||||||
|
|
||||||
|
GPL v2 License
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License along
|
||||||
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
|
||||||
|
You can contact the author at :
|
||||||
|
- zstd homepage : http://www.zstd.net/
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <stdlib.h> // malloc, exit
|
||||||
#include <stdio.h> // printf
|
#include <stdio.h> // printf
|
||||||
#include <string.h> // strerror
|
#include <string.h> // strerror
|
||||||
#include <errno.h> // errno
|
#include <errno.h> // errno
|
||||||
#include <sys/stat.h> // stat
|
#include <sys/stat.h> // stat
|
||||||
#include <zstd.h>
|
#include <zstd.h> // presumes zstd library is installed
|
||||||
|
|
||||||
|
|
||||||
static off_t fsizeX(const char *filename)
|
static off_t fsize_X(const char *filename)
|
||||||
{
|
{
|
||||||
struct stat st;
|
struct stat st;
|
||||||
if (stat(filename, &st) == 0) return st.st_size;
|
if (stat(filename, &st) == 0) return st.st_size;
|
||||||
@@ -15,7 +40,7 @@ static off_t fsizeX(const char *filename)
|
|||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
static FILE* fopenX(const char *filename, const char *instruction)
|
static FILE* fopen_X(const char *filename, const char *instruction)
|
||||||
{
|
{
|
||||||
FILE* const inFile = fopen(filename, instruction);
|
FILE* const inFile = fopen(filename, instruction);
|
||||||
if (inFile) return inFile;
|
if (inFile) return inFile;
|
||||||
@@ -24,7 +49,7 @@ static FILE* fopenX(const char *filename, const char *instruction)
|
|||||||
exit(2);
|
exit(2);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void* mallocX(size_t size)
|
static void* malloc_X(size_t size)
|
||||||
{
|
{
|
||||||
void* const buff = malloc(size);
|
void* const buff = malloc(size);
|
||||||
if (buff) return buff;
|
if (buff) return buff;
|
||||||
@@ -33,11 +58,11 @@ static void* mallocX(size_t size)
|
|||||||
exit(3);
|
exit(3);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void* loadFileX(const char* fileName, size_t* size)
|
static void* loadFile_X(const char* fileName, size_t* size)
|
||||||
{
|
{
|
||||||
off_t const buffSize = fsizeX(fileName);
|
off_t const buffSize = fsize_X(fileName);
|
||||||
FILE* const inFile = fopenX(fileName, "rb");
|
FILE* const inFile = fopen_X(fileName, "rb");
|
||||||
void* const buffer = mallocX(buffSize);
|
void* const buffer = malloc_X(buffSize);
|
||||||
size_t const readSize = fread(buffer, 1, buffSize, inFile);
|
size_t const readSize = fread(buffer, 1, buffSize, inFile);
|
||||||
if (readSize != (size_t)buffSize) {
|
if (readSize != (size_t)buffSize) {
|
||||||
printf("fread: %s : %s \n", fileName, strerror(errno));
|
printf("fread: %s : %s \n", fileName, strerror(errno));
|
||||||
@@ -48,30 +73,29 @@ static void* loadFileX(const char* fileName, size_t* size)
|
|||||||
return buffer;
|
return buffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* createDict() :
|
||||||
|
`dictFileName` is supposed to have been created using `zstd --train` */
|
||||||
static const ZSTD_DDict* createDict(const char* dictFileName)
|
static const ZSTD_DDict* createDict(const char* dictFileName)
|
||||||
{
|
{
|
||||||
size_t dictSize;
|
size_t dictSize;
|
||||||
void* const dictBuffer = loadFileX(dictFileName, &dictSize);
|
printf("loading dictionary %s \n", dictFileName);
|
||||||
|
void* const dictBuffer = loadFile_X(dictFileName, &dictSize);
|
||||||
const ZSTD_DDict* const ddict = ZSTD_createDDict(dictBuffer, dictSize);
|
const ZSTD_DDict* const ddict = ZSTD_createDDict(dictBuffer, dictSize);
|
||||||
free(dictBuffer);
|
free(dictBuffer);
|
||||||
return ddict;
|
return ddict;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* prototype declared here, as it currently is part of experimental section */
|
|
||||||
unsigned long long ZSTD_getDecompressedSize(const void* src, size_t srcSize);
|
|
||||||
|
|
||||||
static void decompress(const char* fname, const ZSTD_DDict* ddict)
|
static void decompress(const char* fname, const ZSTD_DDict* ddict)
|
||||||
{
|
{
|
||||||
size_t cSize;
|
size_t cSize;
|
||||||
void* const cBuff = loadFileX(fname, &cSize);
|
void* const cBuff = loadFile_X(fname, &cSize);
|
||||||
unsigned long long const rSize = ZSTD_getDecompressedSize(cBuff, cSize);
|
unsigned long long const rSize = ZSTD_getDecompressedSize(cBuff, cSize);
|
||||||
if (rSize==0) {
|
if (rSize==0) {
|
||||||
printf("%s : original size unknown \n", fname);
|
printf("%s : original size unknown \n", fname);
|
||||||
exit(5);
|
exit(5);
|
||||||
}
|
}
|
||||||
void* const rBuff = mallocX(rSize);
|
void* const rBuff = malloc_X(rSize);
|
||||||
|
|
||||||
ZSTD_DCtx* const dctx = ZSTD_createDCtx();
|
ZSTD_DCtx* const dctx = ZSTD_createDCtx();
|
||||||
size_t const dSize = ZSTD_decompress_usingDDict(dctx, rBuff, rSize, cBuff, cSize, ddict);
|
size_t const dSize = ZSTD_decompress_usingDDict(dctx, rBuff, rSize, cBuff, cSize, ddict);
|
||||||
@@ -108,5 +132,5 @@ int main(int argc, const char** argv)
|
|||||||
int u;
|
int u;
|
||||||
for (u=1; u<argc-1; u++) decompress(argv[u], dictPtr);
|
for (u=1; u<argc-1; u++) decompress(argv[u], dictPtr);
|
||||||
|
|
||||||
printf("All %u files decoded. \n", argc-2);
|
printf("All %u files correctly decoded (in memory) \n", argc-2);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,142 @@
|
|||||||
|
/*
|
||||||
|
Simple compression
|
||||||
|
Educational program using zstd library
|
||||||
|
Copyright (C) Yann Collet 2016
|
||||||
|
|
||||||
|
GPL v2 License
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License along
|
||||||
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
|
||||||
|
You can contact the author at :
|
||||||
|
- zstd homepage : http://www.zstd.net/
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <stdlib.h> // malloc, exit
|
||||||
|
#include <stdio.h> // fprintf, perror
|
||||||
|
#include <string.h> // strerror
|
||||||
|
#include <errno.h> // errno
|
||||||
|
#include <sys/stat.h> // stat
|
||||||
|
#include <zstd.h> // presumes zstd library is installed
|
||||||
|
|
||||||
|
|
||||||
|
static off_t fsize_X(const char *filename)
|
||||||
|
{
|
||||||
|
struct stat st;
|
||||||
|
if (stat(filename, &st) == 0) return st.st_size;
|
||||||
|
/* error */
|
||||||
|
perror(filename);
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
static FILE* fopen_X(const char *filename, const char *instruction)
|
||||||
|
{
|
||||||
|
FILE* const inFile = fopen(filename, instruction);
|
||||||
|
if (inFile) return inFile;
|
||||||
|
/* error */
|
||||||
|
perror(filename);
|
||||||
|
exit(2);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void* malloc_X(size_t size)
|
||||||
|
{
|
||||||
|
void* const buff = malloc(size);
|
||||||
|
if (buff) return buff;
|
||||||
|
/* error */
|
||||||
|
perror(NULL);
|
||||||
|
exit(3);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void* loadFile_X(const char* fileName, size_t* size)
|
||||||
|
{
|
||||||
|
off_t const buffSize = fsize_X(fileName);
|
||||||
|
FILE* const inFile = fopen_X(fileName, "rb");
|
||||||
|
void* const buffer = malloc_X(buffSize);
|
||||||
|
size_t const readSize = fread(buffer, 1, buffSize, inFile);
|
||||||
|
if (readSize != (size_t)buffSize) {
|
||||||
|
fprintf(stderr, "fread: %s : %s \n", fileName, strerror(errno));
|
||||||
|
exit(4);
|
||||||
|
}
|
||||||
|
fclose(inFile);
|
||||||
|
*size = buffSize;
|
||||||
|
return buffer;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static void saveFile_X(const char* fileName, const void* buff, size_t buffSize)
|
||||||
|
{
|
||||||
|
FILE* const oFile = fopen_X(fileName, "wb");
|
||||||
|
size_t const wSize = fwrite(buff, 1, buffSize, oFile);
|
||||||
|
if (wSize != (size_t)buffSize) {
|
||||||
|
fprintf(stderr, "fwrite: %s : %s \n", fileName, strerror(errno));
|
||||||
|
exit(5);
|
||||||
|
}
|
||||||
|
if (fclose(oFile)) {
|
||||||
|
perror(fileName);
|
||||||
|
exit(6);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static void compress(const char* fname, const char* oname)
|
||||||
|
{
|
||||||
|
size_t fSize;
|
||||||
|
void* const fBuff = loadFile_X(fname, &fSize);
|
||||||
|
size_t const cBuffSize = ZSTD_compressBound(fSize);
|
||||||
|
void* const cBuff = malloc_X(cBuffSize);
|
||||||
|
|
||||||
|
size_t const cSize = ZSTD_compress(cBuff, cBuffSize, fBuff, fSize, 1);
|
||||||
|
if (ZSTD_isError(cSize)) {
|
||||||
|
fprintf(stderr, "error compressing %s : %s \n", fname, ZSTD_getErrorName(cSize));
|
||||||
|
exit(7);
|
||||||
|
}
|
||||||
|
|
||||||
|
saveFile_X(oname, cBuff, cSize);
|
||||||
|
|
||||||
|
/* success */
|
||||||
|
printf("%25s : %6u -> %7u - %s \n", fname, (unsigned)fSize, (unsigned)cSize, oname);
|
||||||
|
|
||||||
|
free(fBuff);
|
||||||
|
free(cBuff);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static const char* createOutFilename(const char* filename)
|
||||||
|
{
|
||||||
|
size_t const inL = strlen(filename);
|
||||||
|
size_t const outL = inL + 5;
|
||||||
|
void* outSpace = malloc_X(outL);
|
||||||
|
memset(outSpace, 0, outL);
|
||||||
|
strcat(outSpace, filename);
|
||||||
|
strcat(outSpace, ".zst");
|
||||||
|
return (const char*)outSpace;
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(int argc, const char** argv)
|
||||||
|
{
|
||||||
|
const char* const exeName = argv[0];
|
||||||
|
const char* const inFilename = argv[1];
|
||||||
|
|
||||||
|
if (argc!=2) {
|
||||||
|
printf("wrong arguments\n");
|
||||||
|
printf("usage:\n");
|
||||||
|
printf("%s FILE\n", exeName);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
const char* const outFilename = createOutFilename(inFilename);
|
||||||
|
compress(inFilename, outFilename);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
@@ -0,0 +1,119 @@
|
|||||||
|
/*
|
||||||
|
Simple decompression
|
||||||
|
Educational program using zstd library
|
||||||
|
Copyright (C) Yann Collet 2016
|
||||||
|
|
||||||
|
GPL v2 License
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License along
|
||||||
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
|
||||||
|
You can contact the author at :
|
||||||
|
- zstd homepage : http://www.zstd.net/
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <stdlib.h> // malloc, exit
|
||||||
|
#include <stdio.h> // printf
|
||||||
|
#include <string.h> // strerror
|
||||||
|
#include <errno.h> // errno
|
||||||
|
#include <sys/stat.h> // stat
|
||||||
|
#include <zstd.h> // presumes zstd library is installed
|
||||||
|
|
||||||
|
|
||||||
|
static off_t fsize_X(const char *filename)
|
||||||
|
{
|
||||||
|
struct stat st;
|
||||||
|
if (stat(filename, &st) == 0) return st.st_size;
|
||||||
|
/* error */
|
||||||
|
printf("stat: %s : %s \n", filename, strerror(errno));
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
static FILE* fopen_X(const char *filename, const char *instruction)
|
||||||
|
{
|
||||||
|
FILE* const inFile = fopen(filename, instruction);
|
||||||
|
if (inFile) return inFile;
|
||||||
|
/* error */
|
||||||
|
printf("fopen: %s : %s \n", filename, strerror(errno));
|
||||||
|
exit(2);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void* malloc_X(size_t size)
|
||||||
|
{
|
||||||
|
void* const buff = malloc(size);
|
||||||
|
if (buff) return buff;
|
||||||
|
/* error */
|
||||||
|
printf("malloc: %s \n", strerror(errno));
|
||||||
|
exit(3);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void* loadFile_X(const char* fileName, size_t* size)
|
||||||
|
{
|
||||||
|
off_t const buffSize = fsize_X(fileName);
|
||||||
|
FILE* const inFile = fopen_X(fileName, "rb");
|
||||||
|
void* const buffer = malloc_X(buffSize);
|
||||||
|
size_t const readSize = fread(buffer, 1, buffSize, inFile);
|
||||||
|
if (readSize != (size_t)buffSize) {
|
||||||
|
printf("fread: %s : %s \n", fileName, strerror(errno));
|
||||||
|
exit(4);
|
||||||
|
}
|
||||||
|
fclose(inFile);
|
||||||
|
*size = buffSize;
|
||||||
|
return buffer;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static void decompress(const char* fname)
|
||||||
|
{
|
||||||
|
size_t cSize;
|
||||||
|
void* const cBuff = loadFile_X(fname, &cSize);
|
||||||
|
unsigned long long const rSize = ZSTD_getDecompressedSize(cBuff, cSize);
|
||||||
|
if (rSize==0) {
|
||||||
|
printf("%s : original size unknown \n", fname);
|
||||||
|
exit(5);
|
||||||
|
}
|
||||||
|
void* const rBuff = malloc_X(rSize);
|
||||||
|
|
||||||
|
size_t const dSize = ZSTD_decompress(rBuff, rSize, cBuff, cSize);
|
||||||
|
|
||||||
|
if (dSize != rSize) {
|
||||||
|
printf("error decoding %s : %s \n", fname, ZSTD_getErrorName(dSize));
|
||||||
|
exit(7);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* success */
|
||||||
|
printf("%25s : %6u -> %7u \n", fname, (unsigned)cSize, (unsigned)rSize);
|
||||||
|
|
||||||
|
free(rBuff);
|
||||||
|
free(cBuff);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int main(int argc, const char** argv)
|
||||||
|
{
|
||||||
|
const char* const exeName = argv[0];
|
||||||
|
|
||||||
|
if (argc!=2) {
|
||||||
|
printf("wrong arguments\n");
|
||||||
|
printf("usage:\n");
|
||||||
|
printf("%s FILE\n", exeName);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
decompress(argv[1]);
|
||||||
|
|
||||||
|
printf("%s correctly decoded (in memory). \n", argv[1]);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
+40
-19
@@ -61,7 +61,7 @@ extern "C" {
|
|||||||
***************************************/
|
***************************************/
|
||||||
#define ZSTD_VERSION_MAJOR 0
|
#define ZSTD_VERSION_MAJOR 0
|
||||||
#define ZSTD_VERSION_MINOR 7
|
#define ZSTD_VERSION_MINOR 7
|
||||||
#define ZSTD_VERSION_RELEASE 3
|
#define ZSTD_VERSION_RELEASE 5
|
||||||
|
|
||||||
#define ZSTD_LIB_VERSION ZSTD_VERSION_MAJOR.ZSTD_VERSION_MINOR.ZSTD_VERSION_RELEASE
|
#define ZSTD_LIB_VERSION ZSTD_VERSION_MAJOR.ZSTD_VERSION_MINOR.ZSTD_VERSION_RELEASE
|
||||||
#define ZSTD_QUOTE(str) #str
|
#define ZSTD_QUOTE(str) #str
|
||||||
@@ -85,9 +85,14 @@ ZSTDLIB_API size_t ZSTD_compress( void* dst, size_t dstCapacity,
|
|||||||
const void* src, size_t srcSize,
|
const void* src, size_t srcSize,
|
||||||
int compressionLevel);
|
int compressionLevel);
|
||||||
|
|
||||||
|
/** ZSTD_getDecompressedSize() :
|
||||||
|
* @return : decompressed size if known, 0 otherwise.
|
||||||
|
note : to know precise reason why result is `0`, follow up with ZSTD_getFrameParams() */
|
||||||
|
unsigned long long ZSTD_getDecompressedSize(const void* src, size_t srcSize);
|
||||||
|
|
||||||
/*! ZSTD_decompress() :
|
/*! ZSTD_decompress() :
|
||||||
`compressedSize` : is the _exact_ size of the compressed blob, otherwise decompression will fail.
|
`compressedSize` : is the _exact_ size of compressed input, otherwise decompression will fail.
|
||||||
`dstCapacity` must be large enough, equal or larger than originalSize.
|
`dstCapacity` must be equal or larger than originalSize.
|
||||||
@return : the number of bytes decompressed into `dst` (<= `dstCapacity`),
|
@return : the number of bytes decompressed into `dst` (<= `dstCapacity`),
|
||||||
or an errorCode if it fails (which can be tested using ZSTD_isError()) */
|
or an errorCode if it fails (which can be tested using ZSTD_isError()) */
|
||||||
ZSTDLIB_API size_t ZSTD_decompress( void* dst, size_t dstCapacity,
|
ZSTDLIB_API size_t ZSTD_decompress( void* dst, size_t dstCapacity,
|
||||||
@@ -210,7 +215,7 @@ ZSTDLIB_API size_t ZSTD_decompress_usingDDict(ZSTD_DCtx* dctx,
|
|||||||
#define ZSTD_HASHLOG_MAX ZSTD_WINDOWLOG_MAX
|
#define ZSTD_HASHLOG_MAX ZSTD_WINDOWLOG_MAX
|
||||||
#define ZSTD_HASHLOG_MIN 12
|
#define ZSTD_HASHLOG_MIN 12
|
||||||
#define ZSTD_HASHLOG3_MAX 17
|
#define ZSTD_HASHLOG3_MAX 17
|
||||||
#define ZSTD_HASHLOG3_MIN 15
|
//#define ZSTD_HASHLOG3_MIN 15
|
||||||
#define ZSTD_SEARCHLOG_MAX (ZSTD_WINDOWLOG_MAX-1)
|
#define ZSTD_SEARCHLOG_MAX (ZSTD_WINDOWLOG_MAX-1)
|
||||||
#define ZSTD_SEARCHLOG_MIN 1
|
#define ZSTD_SEARCHLOG_MIN 1
|
||||||
#define ZSTD_SEARCHLENGTH_MAX 7
|
#define ZSTD_SEARCHLENGTH_MAX 7
|
||||||
@@ -225,7 +230,7 @@ static const size_t ZSTD_skippableHeaderSize = 8; /* magic number + skippable f
|
|||||||
|
|
||||||
|
|
||||||
/*--- Types ---*/
|
/*--- Types ---*/
|
||||||
typedef enum { ZSTD_fast, ZSTD_greedy, ZSTD_lazy, ZSTD_lazy2, ZSTD_btlazy2, ZSTD_btopt } ZSTD_strategy; /*< from faster to stronger */
|
typedef enum { ZSTD_fast, ZSTD_dfast, ZSTD_greedy, ZSTD_lazy, ZSTD_lazy2, ZSTD_btlazy2, ZSTD_btopt } ZSTD_strategy; /*< from faster to stronger */
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
unsigned windowLog; /*< largest match distance : larger == more compression, more memory needed during decompression */
|
unsigned windowLog; /*< largest match distance : larger == more compression, more memory needed during decompression */
|
||||||
@@ -257,6 +262,11 @@ typedef struct { ZSTD_allocFunction customAlloc; ZSTD_freeFunction customFree; v
|
|||||||
/*-*************************************
|
/*-*************************************
|
||||||
* Advanced compression functions
|
* Advanced compression functions
|
||||||
***************************************/
|
***************************************/
|
||||||
|
/*! ZSTD_estimateCCtxSize() :
|
||||||
|
* Gives the amount of memory allocated for a ZSTD_CCtx given a set of compression parameters.
|
||||||
|
* `frameContentSize` is an optional parameter, provide `0` if unknown */
|
||||||
|
ZSTDLIB_API size_t ZSTD_estimateCCtxSize(ZSTD_compressionParameters cParams);
|
||||||
|
|
||||||
/*! ZSTD_createCCtx_advanced() :
|
/*! ZSTD_createCCtx_advanced() :
|
||||||
* Create a ZSTD compression context using external alloc and free functions */
|
* Create a ZSTD compression context using external alloc and free functions */
|
||||||
ZSTDLIB_API ZSTD_CCtx* ZSTD_createCCtx_advanced(ZSTD_customMem customMem);
|
ZSTDLIB_API ZSTD_CCtx* ZSTD_createCCtx_advanced(ZSTD_customMem customMem);
|
||||||
@@ -266,6 +276,10 @@ ZSTDLIB_API ZSTD_CCtx* ZSTD_createCCtx_advanced(ZSTD_customMem customMem);
|
|||||||
ZSTDLIB_API ZSTD_CDict* ZSTD_createCDict_advanced(const void* dict, size_t dictSize,
|
ZSTDLIB_API ZSTD_CDict* ZSTD_createCDict_advanced(const void* dict, size_t dictSize,
|
||||||
ZSTD_parameters params, ZSTD_customMem customMem);
|
ZSTD_parameters params, ZSTD_customMem customMem);
|
||||||
|
|
||||||
|
/*! ZSTD_sizeofCCtx() :
|
||||||
|
* Gives the amount of memory used by a given ZSTD_CCtx */
|
||||||
|
ZSTDLIB_API size_t ZSTD_sizeofCCtx(const ZSTD_CCtx* cctx);
|
||||||
|
|
||||||
ZSTDLIB_API unsigned ZSTD_maxCLevel (void);
|
ZSTDLIB_API unsigned ZSTD_maxCLevel (void);
|
||||||
|
|
||||||
/*! ZSTD_getParams() :
|
/*! ZSTD_getParams() :
|
||||||
@@ -298,23 +312,22 @@ ZSTDLIB_API size_t ZSTD_compress_advanced (ZSTD_CCtx* ctx,
|
|||||||
|
|
||||||
/*--- Advanced Decompression functions ---*/
|
/*--- Advanced Decompression functions ---*/
|
||||||
|
|
||||||
/** ZSTD_getDecompressedSize() :
|
/*! ZSTD_estimateDCtxSize() :
|
||||||
* compatible with legacy mode
|
* Gives the potential amount of memory allocated to create a ZSTD_DCtx */
|
||||||
* @return : decompressed size if known, 0 otherwise
|
ZSTDLIB_API size_t ZSTD_estimateDCtxSize(void);
|
||||||
note : 0 can mean any of the following :
|
|
||||||
- decompressed size is not provided within frame header
|
|
||||||
- frame header unknown / not supported
|
|
||||||
- frame header not completely provided (`srcSize` too small) */
|
|
||||||
unsigned long long ZSTD_getDecompressedSize(const void* src, size_t srcSize);
|
|
||||||
|
|
||||||
/*! ZSTD_createDCtx_advanced() :
|
/*! ZSTD_createDCtx_advanced() :
|
||||||
* Create a ZSTD decompression context using external alloc and free functions */
|
* Create a ZSTD decompression context using external alloc and free functions */
|
||||||
ZSTDLIB_API ZSTD_DCtx* ZSTD_createDCtx_advanced(ZSTD_customMem customMem);
|
ZSTDLIB_API ZSTD_DCtx* ZSTD_createDCtx_advanced(ZSTD_customMem customMem);
|
||||||
|
|
||||||
|
/*! ZSTD_sizeofDCtx() :
|
||||||
|
* Gives the amount of memory used by a given ZSTD_DCtx */
|
||||||
|
ZSTDLIB_API size_t ZSTD_sizeofDCtx(const ZSTD_DCtx* dctx);
|
||||||
|
|
||||||
/* ****************************************************************
|
|
||||||
|
/* ******************************************************************
|
||||||
* Streaming functions (direct mode - synchronous and buffer-less)
|
* Streaming functions (direct mode - synchronous and buffer-less)
|
||||||
******************************************************************/
|
********************************************************************/
|
||||||
ZSTDLIB_API size_t ZSTD_compressBegin(ZSTD_CCtx* cctx, int compressionLevel);
|
ZSTDLIB_API size_t ZSTD_compressBegin(ZSTD_CCtx* cctx, int compressionLevel);
|
||||||
ZSTDLIB_API size_t ZSTD_compressBegin_usingDict(ZSTD_CCtx* cctx, const void* dict, size_t dictSize, int compressionLevel);
|
ZSTDLIB_API size_t ZSTD_compressBegin_usingDict(ZSTD_CCtx* cctx, const void* dict, size_t dictSize, int compressionLevel);
|
||||||
ZSTDLIB_API size_t ZSTD_compressBegin_advanced(ZSTD_CCtx* cctx, const void* dict, size_t dictSize, ZSTD_parameters params, unsigned long long pledgedSrcSize);
|
ZSTDLIB_API size_t ZSTD_compressBegin_advanced(ZSTD_CCtx* cctx, const void* dict, size_t dictSize, ZSTD_parameters params, unsigned long long pledgedSrcSize);
|
||||||
@@ -336,7 +349,7 @@ ZSTDLIB_API size_t ZSTD_compressEnd(ZSTD_CCtx* cctx, void* dst, size_t dstCapaci
|
|||||||
Then, consume your input using ZSTD_compressContinue().
|
Then, consume your input using ZSTD_compressContinue().
|
||||||
There are some important considerations to keep in mind when using this advanced function :
|
There are some important considerations to keep in mind when using this advanced function :
|
||||||
- ZSTD_compressContinue() has no internal buffer. It uses externally provided buffer only.
|
- ZSTD_compressContinue() has no internal buffer. It uses externally provided buffer only.
|
||||||
- Interface is synchronous : input will be entirely consumed and produce 1+ compressed blocks.
|
- Interface is synchronous : input is consumed entirely and produce 1 (or more) compressed blocks.
|
||||||
- Caller must ensure there is enough space in `dst` to store compressed data under worst case scenario.
|
- Caller must ensure there is enough space in `dst` to store compressed data under worst case scenario.
|
||||||
Worst case evaluation is provided by ZSTD_compressBound().
|
Worst case evaluation is provided by ZSTD_compressBound().
|
||||||
ZSTD_compressContinue() doesn't guarantee recover after a failed compression.
|
ZSTD_compressContinue() doesn't guarantee recover after a failed compression.
|
||||||
@@ -392,15 +405,23 @@ ZSTDLIB_API size_t ZSTD_decompressContinue(ZSTD_DCtx* dctx, void* dst, size_t ds
|
|||||||
Then use ZSTD_nextSrcSizeToDecompress() and ZSTD_decompressContinue() alternatively.
|
Then use ZSTD_nextSrcSizeToDecompress() and ZSTD_decompressContinue() alternatively.
|
||||||
ZSTD_nextSrcSizeToDecompress() tells how much bytes to provide as 'srcSize' to ZSTD_decompressContinue().
|
ZSTD_nextSrcSizeToDecompress() tells how much bytes to provide as 'srcSize' to ZSTD_decompressContinue().
|
||||||
ZSTD_decompressContinue() requires this exact amount of bytes, or it will fail.
|
ZSTD_decompressContinue() requires this exact amount of bytes, or it will fail.
|
||||||
ZSTD_decompressContinue() needs previous data blocks during decompression, up to `windowSize`.
|
|
||||||
They should preferably be located contiguously, prior to current block. Alternatively, a round buffer is also possible.
|
|
||||||
|
|
||||||
@result of ZSTD_decompressContinue() is the number of bytes regenerated within 'dst' (necessarily <= dstCapacity).
|
@result of ZSTD_decompressContinue() is the number of bytes regenerated within 'dst' (necessarily <= dstCapacity).
|
||||||
It can be zero, which is not an error; it just means ZSTD_decompressContinue() has decoded some header.
|
It can be zero, which is not an error; it just means ZSTD_decompressContinue() has decoded some header.
|
||||||
|
|
||||||
|
ZSTD_decompressContinue() needs previous data blocks during decompression, up to `windowSize`.
|
||||||
|
They should preferably be located contiguously, prior to current block.
|
||||||
|
Alternatively, a round buffer of sufficient size is also possible. Sufficient size is determined by frame parameters.
|
||||||
|
ZSTD_decompressContinue() is very sensitive to contiguity,
|
||||||
|
if 2 blocks don't follow each other, make sure that either the compressor breaks contiguity at the same place,
|
||||||
|
or that previous contiguous segment is large enough to properly handle maximum back-reference.
|
||||||
|
|
||||||
A frame is fully decoded when ZSTD_nextSrcSizeToDecompress() returns zero.
|
A frame is fully decoded when ZSTD_nextSrcSizeToDecompress() returns zero.
|
||||||
Context can then be reset to start a new decompression.
|
Context can then be reset to start a new decompression.
|
||||||
|
|
||||||
|
|
||||||
|
== Special case : skippable frames ==
|
||||||
|
|
||||||
Skippable frames allow the integration of user-defined data into a flow of concatenated frames.
|
Skippable frames allow the integration of user-defined data into a flow of concatenated frames.
|
||||||
Skippable frames will be ignored (skipped) by a decompressor. The format of skippable frame is following:
|
Skippable frames will be ignored (skipped) by a decompressor. The format of skippable frame is following:
|
||||||
a) Skippable frame ID - 4 Bytes, Little endian format, any value from 0x184D2A50 to 0x184D2A5F
|
a) Skippable frame ID - 4 Bytes, Little endian format, any value from 0x184D2A50 to 0x184D2A5F
|
||||||
@@ -420,7 +441,7 @@ ZSTDLIB_API size_t ZSTD_decompressContinue(ZSTD_DCtx* dctx, void* dst, size_t ds
|
|||||||
User will have to take in charge required information to regenerate data, such as compressed and content sizes.
|
User will have to take in charge required information to regenerate data, such as compressed and content sizes.
|
||||||
|
|
||||||
A few rules to respect :
|
A few rules to respect :
|
||||||
- Uncompressed block size must be <= ZSTD_BLOCKSIZE_MAX (128 KB)
|
- Uncompressed block size must be <= MIN (128 KB, 1 << windowLog)
|
||||||
+ If you need to compress more, cut data into multiple blocks
|
+ If you need to compress more, cut data into multiple blocks
|
||||||
+ Consider using the regular ZSTD_compress() instead, as frame metadata costs become negligible when source size is large.
|
+ Consider using the regular ZSTD_compress() instead, as frame metadata costs become negligible when source size is large.
|
||||||
- Compressing and decompressing require a context structure
|
- Compressing and decompressing require a context structure
|
||||||
|
|||||||
@@ -239,7 +239,7 @@ static U32 HUF_setMaxHeight(nodeElt* huffNode, U32 lastNonNull, U32 maxNbBits)
|
|||||||
|
|
||||||
/* repay normalized cost */
|
/* repay normalized cost */
|
||||||
{ U32 const noSymbol = 0xF0F0F0F0;
|
{ U32 const noSymbol = 0xF0F0F0F0;
|
||||||
U32 rankLast[HUF_TABLELOG_MAX+1];
|
U32 rankLast[HUF_TABLELOG_MAX+2];
|
||||||
int pos;
|
int pos;
|
||||||
|
|
||||||
/* Get pos of last (smallest) symbol per rank */
|
/* Get pos of last (smallest) symbol per rank */
|
||||||
@@ -535,6 +535,7 @@ static size_t HUF_compress_internal (
|
|||||||
{ size_t const hSize = HUF_writeCTable (op, dstSize, CTable, maxSymbolValue, huffLog);
|
{ size_t const hSize = HUF_writeCTable (op, dstSize, CTable, maxSymbolValue, huffLog);
|
||||||
if (HUF_isError(hSize)) return hSize;
|
if (HUF_isError(hSize)) return hSize;
|
||||||
if (hSize + 12 >= srcSize) return 0; /* not useful to try compression */
|
if (hSize + 12 >= srcSize) return 0; /* not useful to try compression */
|
||||||
|
//static U64 totalHSize = 0; static U32 nbHSize = 0; totalHSize += hSize; nbHSize++; if ((nbHSize & 63) == 1) printf("average : %6.3f \n", (double)totalHSize / nbHSize);
|
||||||
op += hSize;
|
op += hSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+362
-62
@@ -152,7 +152,7 @@ ZSTD_CCtx* ZSTD_createCCtx(void)
|
|||||||
|
|
||||||
ZSTD_CCtx* ZSTD_createCCtx_advanced(ZSTD_customMem customMem)
|
ZSTD_CCtx* ZSTD_createCCtx_advanced(ZSTD_customMem customMem)
|
||||||
{
|
{
|
||||||
ZSTD_CCtx* ctx;
|
ZSTD_CCtx* cctx;
|
||||||
|
|
||||||
if (!customMem.customAlloc && !customMem.customFree)
|
if (!customMem.customAlloc && !customMem.customFree)
|
||||||
customMem = defaultCustomMem;
|
customMem = defaultCustomMem;
|
||||||
@@ -160,11 +160,11 @@ ZSTD_CCtx* ZSTD_createCCtx_advanced(ZSTD_customMem customMem)
|
|||||||
if (!customMem.customAlloc || !customMem.customFree)
|
if (!customMem.customAlloc || !customMem.customFree)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
ctx = (ZSTD_CCtx*) customMem.customAlloc(customMem.opaque, sizeof(ZSTD_CCtx));
|
cctx = (ZSTD_CCtx*) customMem.customAlloc(customMem.opaque, sizeof(ZSTD_CCtx));
|
||||||
if (!ctx) return NULL;
|
if (!cctx) return NULL;
|
||||||
memset(ctx, 0, sizeof(ZSTD_CCtx));
|
memset(cctx, 0, sizeof(ZSTD_CCtx));
|
||||||
memcpy(&ctx->customMem, &customMem, sizeof(ZSTD_customMem));
|
memcpy(&(cctx->customMem), &customMem, sizeof(ZSTD_customMem));
|
||||||
return ctx;
|
return cctx;
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t ZSTD_freeCCtx(ZSTD_CCtx* cctx)
|
size_t ZSTD_freeCCtx(ZSTD_CCtx* cctx)
|
||||||
@@ -175,6 +175,11 @@ size_t ZSTD_freeCCtx(ZSTD_CCtx* cctx)
|
|||||||
return 0; /* reserved as a potential error code in the future */
|
return 0; /* reserved as a potential error code in the future */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
size_t ZSTD_sizeofCCtx(const ZSTD_CCtx* cctx)
|
||||||
|
{
|
||||||
|
return sizeof(*cctx) + cctx->workSpaceSize;
|
||||||
|
}
|
||||||
|
|
||||||
const seqStore_t* ZSTD_getSeqStore(const ZSTD_CCtx* ctx) /* hidden interface */
|
const seqStore_t* ZSTD_getSeqStore(const ZSTD_CCtx* ctx) /* hidden interface */
|
||||||
{
|
{
|
||||||
return &(ctx->seqStore);
|
return &(ctx->seqStore);
|
||||||
@@ -244,23 +249,32 @@ ZSTD_compressionParameters ZSTD_adjustCParams(ZSTD_compressionParameters cPar, u
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
size_t ZSTD_sizeofCCtx(ZSTD_compressionParameters cParams) /* hidden interface, for paramagrill */
|
size_t ZSTD_estimateCCtxSize(ZSTD_compressionParameters cParams)
|
||||||
{
|
{
|
||||||
ZSTD_CCtx* const zc = ZSTD_createCCtx();
|
const size_t blockSize = MIN(ZSTD_BLOCKSIZE_MAX, (size_t)1 << cParams.windowLog);
|
||||||
ZSTD_parameters params;
|
const U32 divider = (cParams.searchLength==3) ? 3 : 4;
|
||||||
memset(¶ms, 0, sizeof(params));
|
const size_t maxNbSeq = blockSize / divider;
|
||||||
params.cParams = cParams;
|
const size_t tokenSpace = blockSize + 11*maxNbSeq;
|
||||||
params.fParams.contentSizeFlag = 1;
|
|
||||||
ZSTD_compressBegin_advanced(zc, NULL, 0, params, 0);
|
const size_t chainSize = (cParams.strategy == ZSTD_fast) ? 0 : (1 << cParams.chainLog);
|
||||||
{ size_t const ccsize = sizeof(*zc) + zc->workSpaceSize;
|
const size_t hSize = ((size_t)1) << cParams.hashLog;
|
||||||
ZSTD_freeCCtx(zc);
|
const U32 hashLog3 = (cParams.searchLength>3) ? 0 : MIN(ZSTD_HASHLOG3_MAX, cParams.windowLog);
|
||||||
return ccsize; }
|
const size_t h3Size = ((size_t)1) << hashLog3;
|
||||||
|
const size_t tableSpace = (chainSize + hSize + h3Size) * sizeof(U32);
|
||||||
|
|
||||||
|
size_t const optSpace = ((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 neededSpace = tableSpace + (256*sizeof(U32)) /* huffTable */ + tokenSpace
|
||||||
|
+ ((cParams.strategy == ZSTD_btopt) ? optSpace : 0);
|
||||||
|
|
||||||
|
return sizeof(ZSTD_CCtx) + neededSpace;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*! ZSTD_resetCCtx_advanced() :
|
/*! ZSTD_resetCCtx_advanced() :
|
||||||
note : 'params' is expected to be validated */
|
note : 'params' is expected to be validated */
|
||||||
static size_t ZSTD_resetCCtx_advanced (ZSTD_CCtx* zc,
|
static size_t ZSTD_resetCCtx_advanced (ZSTD_CCtx* zc,
|
||||||
ZSTD_parameters params, U64 frameContentSize, U32 reset)
|
ZSTD_parameters params, U64 frameContentSize,
|
||||||
|
U32 reset)
|
||||||
{ /* note : params considered validated here */
|
{ /* note : params considered validated here */
|
||||||
const size_t blockSize = MIN(ZSTD_BLOCKSIZE_MAX, (size_t)1 << params.cParams.windowLog);
|
const size_t blockSize = MIN(ZSTD_BLOCKSIZE_MAX, (size_t)1 << params.cParams.windowLog);
|
||||||
const U32 divider = (params.cParams.searchLength==3) ? 3 : 4;
|
const U32 divider = (params.cParams.searchLength==3) ? 3 : 4;
|
||||||
@@ -268,9 +282,7 @@ static size_t ZSTD_resetCCtx_advanced (ZSTD_CCtx* zc,
|
|||||||
const size_t tokenSpace = blockSize + 11*maxNbSeq;
|
const size_t tokenSpace = blockSize + 11*maxNbSeq;
|
||||||
const size_t chainSize = (params.cParams.strategy == ZSTD_fast) ? 0 : (1 << params.cParams.chainLog);
|
const size_t chainSize = (params.cParams.strategy == ZSTD_fast) ? 0 : (1 << params.cParams.chainLog);
|
||||||
const size_t hSize = ((size_t)1) << params.cParams.hashLog;
|
const size_t hSize = ((size_t)1) << params.cParams.hashLog;
|
||||||
const U32 hashLog3 = (params.cParams.searchLength>3) ? 0 :
|
const U32 hashLog3 = (params.cParams.searchLength>3) ? 0 : MIN(ZSTD_HASHLOG3_MAX, params.cParams.windowLog);
|
||||||
( (!frameContentSize || frameContentSize >= 8192) ? ZSTD_HASHLOG3_MAX :
|
|
||||||
((frameContentSize >= 2048) ? ZSTD_HASHLOG3_MIN + 1 : ZSTD_HASHLOG3_MIN) );
|
|
||||||
const size_t h3Size = ((size_t)1) << hashLog3;
|
const size_t h3Size = ((size_t)1) << hashLog3;
|
||||||
const size_t tableSpace = (chainSize + hSize + h3Size) * sizeof(U32);
|
const size_t tableSpace = (chainSize + hSize + h3Size) * sizeof(U32);
|
||||||
|
|
||||||
@@ -641,11 +653,11 @@ static size_t ZSTD_compressLiterals (ZSTD_CCtx* zc,
|
|||||||
singleStream = 1;
|
singleStream = 1;
|
||||||
cLitSize = HUF_compress1X_usingCTable(ostart+lhSize, dstCapacity-lhSize, src, srcSize, zc->hufTable);
|
cLitSize = HUF_compress1X_usingCTable(ostart+lhSize, dstCapacity-lhSize, src, srcSize, zc->hufTable);
|
||||||
} else {
|
} else {
|
||||||
cLitSize = singleStream ? HUF_compress1X(ostart+lhSize, dstCapacity-lhSize, src, srcSize, 255, 12)
|
cLitSize = singleStream ? HUF_compress1X(ostart+lhSize, dstCapacity-lhSize, src, srcSize, 255, 11)
|
||||||
: HUF_compress2 (ostart+lhSize, dstCapacity-lhSize, src, srcSize, 255, 12);
|
: HUF_compress2 (ostart+lhSize, dstCapacity-lhSize, src, srcSize, 255, 11);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((cLitSize==0) || (cLitSize >= srcSize - minGain))
|
if ((cLitSize==0) | (cLitSize >= srcSize - minGain))
|
||||||
return ZSTD_noCompressLiterals(dst, dstCapacity, src, srcSize);
|
return ZSTD_noCompressLiterals(dst, dstCapacity, src, srcSize);
|
||||||
if (cLitSize==1)
|
if (cLitSize==1)
|
||||||
return ZSTD_compressRleLiteralsBlock(dst, dstCapacity, src, srcSize);
|
return ZSTD_compressRleLiteralsBlock(dst, dstCapacity, src, srcSize);
|
||||||
@@ -1068,6 +1080,11 @@ static const U64 prime7bytes = 58295818150454627ULL;
|
|||||||
static size_t ZSTD_hash7(U64 u, U32 h) { return (size_t)(((u << (64-56)) * prime7bytes) >> (64-h)) ; }
|
static size_t ZSTD_hash7(U64 u, U32 h) { return (size_t)(((u << (64-56)) * prime7bytes) >> (64-h)) ; }
|
||||||
static size_t ZSTD_hash7Ptr(const void* p, U32 h) { return ZSTD_hash7(MEM_readLE64(p), h); }
|
static size_t ZSTD_hash7Ptr(const void* p, U32 h) { return ZSTD_hash7(MEM_readLE64(p), h); }
|
||||||
|
|
||||||
|
//static const U64 prime8bytes = 58295818150454627ULL;
|
||||||
|
static const U64 prime8bytes = 0xCF1BBCDCB7A56463ULL;
|
||||||
|
static size_t ZSTD_hash8(U64 u, U32 h) { return (size_t)(((u) * prime8bytes) >> (64-h)) ; }
|
||||||
|
static size_t ZSTD_hash8Ptr(const void* p, U32 h) { return ZSTD_hash8(MEM_readLE64(p), h); }
|
||||||
|
|
||||||
static size_t ZSTD_hashPtr(const void* p, U32 hBits, U32 mls)
|
static size_t ZSTD_hashPtr(const void* p, U32 hBits, U32 mls)
|
||||||
{
|
{
|
||||||
switch(mls)
|
switch(mls)
|
||||||
@@ -1077,6 +1094,7 @@ static size_t ZSTD_hashPtr(const void* p, U32 hBits, U32 mls)
|
|||||||
case 5: return ZSTD_hash5Ptr(p, hBits);
|
case 5: return ZSTD_hash5Ptr(p, hBits);
|
||||||
case 6: return ZSTD_hash6Ptr(p, hBits);
|
case 6: return ZSTD_hash6Ptr(p, hBits);
|
||||||
case 7: return ZSTD_hash7Ptr(p, hBits);
|
case 7: return ZSTD_hash7Ptr(p, hBits);
|
||||||
|
case 8: return ZSTD_hash8Ptr(p, hBits);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1136,7 +1154,7 @@ void ZSTD_compressBlock_fast_generic(ZSTD_CCtx* cctx,
|
|||||||
hashTable[h] = current; /* update hash table */
|
hashTable[h] = current; /* update hash table */
|
||||||
|
|
||||||
if ((offset_1 > 0) & (MEM_read32(ip+1-offset_1) == MEM_read32(ip+1))) { /* note : by construction, offset_1 <= current */
|
if ((offset_1 > 0) & (MEM_read32(ip+1-offset_1) == MEM_read32(ip+1))) { /* note : by construction, offset_1 <= current */
|
||||||
mLength = ZSTD_count(ip+1+EQUAL_READ32, ip+1+EQUAL_READ32-offset_1, iend) + EQUAL_READ32;
|
mLength = ZSTD_count(ip+1+4, ip+1+4-offset_1, iend) + 4;
|
||||||
ip++;
|
ip++;
|
||||||
ZSTD_storeSeq(seqStorePtr, ip-anchor, anchor, 0, mLength-MINMATCH);
|
ZSTD_storeSeq(seqStorePtr, ip-anchor, anchor, 0, mLength-MINMATCH);
|
||||||
} else {
|
} else {
|
||||||
@@ -1145,7 +1163,7 @@ void ZSTD_compressBlock_fast_generic(ZSTD_CCtx* cctx,
|
|||||||
ip += ((ip-anchor) >> g_searchStrength) + 1;
|
ip += ((ip-anchor) >> g_searchStrength) + 1;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
mLength = ZSTD_count(ip+EQUAL_READ32, match+EQUAL_READ32, iend) + EQUAL_READ32;
|
mLength = ZSTD_count(ip+4, match+4, iend) + 4;
|
||||||
offset = (U32)(ip-match);
|
offset = (U32)(ip-match);
|
||||||
while (((ip>anchor) & (match>lowest)) && (ip[-1] == match[-1])) { ip--; match--; mLength++; } /* catch up */
|
while (((ip>anchor) & (match>lowest)) && (ip[-1] == match[-1])) { ip--; match--; mLength++; } /* catch up */
|
||||||
offset_2 = offset_1;
|
offset_2 = offset_1;
|
||||||
@@ -1167,7 +1185,7 @@ void ZSTD_compressBlock_fast_generic(ZSTD_CCtx* cctx,
|
|||||||
&& ( (offset_2>0)
|
&& ( (offset_2>0)
|
||||||
& (MEM_read32(ip) == MEM_read32(ip - offset_2)) )) {
|
& (MEM_read32(ip) == MEM_read32(ip - offset_2)) )) {
|
||||||
/* store sequence */
|
/* store sequence */
|
||||||
size_t const rLength = ZSTD_count(ip+EQUAL_READ32, ip+EQUAL_READ32-offset_2, iend) + EQUAL_READ32;
|
size_t const rLength = ZSTD_count(ip+4, ip+4-offset_2, iend) + 4;
|
||||||
{ U32 const tmpOff = offset_2; offset_2 = offset_1; offset_1 = tmpOff; } /* swap offset_2 <=> offset_1 */
|
{ U32 const tmpOff = offset_2; offset_2 = offset_1; offset_1 = tmpOff; } /* swap offset_2 <=> offset_1 */
|
||||||
hashTable[ZSTD_hashPtr(ip, hBits, mls)] = (U32)(ip-base);
|
hashTable[ZSTD_hashPtr(ip, hBits, mls)] = (U32)(ip-base);
|
||||||
ZSTD_storeSeq(seqStorePtr, 0, anchor, 0, rLength-MINMATCH);
|
ZSTD_storeSeq(seqStorePtr, 0, anchor, 0, rLength-MINMATCH);
|
||||||
@@ -1321,6 +1339,283 @@ static void ZSTD_compressBlock_fast_extDict(ZSTD_CCtx* ctx,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*-*************************************
|
||||||
|
* Double Fast
|
||||||
|
***************************************/
|
||||||
|
static void ZSTD_fillDoubleHashTable (ZSTD_CCtx* cctx, const void* end, const U32 mls)
|
||||||
|
{
|
||||||
|
U32* const hashLarge = cctx->hashTable;
|
||||||
|
const U32 hBitsL = cctx->params.cParams.hashLog;
|
||||||
|
U32* const hashSmall = cctx->chainTable;
|
||||||
|
const U32 hBitsS = cctx->params.cParams.chainLog;
|
||||||
|
const BYTE* const base = cctx->base;
|
||||||
|
const BYTE* ip = base + cctx->nextToUpdate;
|
||||||
|
const BYTE* const iend = ((const BYTE*)end) - 8;
|
||||||
|
const size_t fastHashFillStep = 3;
|
||||||
|
|
||||||
|
while(ip <= iend) {
|
||||||
|
hashSmall[ZSTD_hashPtr(ip, hBitsS, mls)] = (U32)(ip - base);
|
||||||
|
hashLarge[ZSTD_hashPtr(ip, hBitsL, 8)] = (U32)(ip - base);
|
||||||
|
ip += fastHashFillStep;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
FORCE_INLINE
|
||||||
|
void ZSTD_compressBlock_doubleFast_generic(ZSTD_CCtx* cctx,
|
||||||
|
const void* src, size_t srcSize,
|
||||||
|
const U32 mls)
|
||||||
|
{
|
||||||
|
U32* const hashLong = cctx->hashTable;
|
||||||
|
const U32 hBitsL = cctx->params.cParams.hashLog;
|
||||||
|
U32* const hashSmall = cctx->chainTable;
|
||||||
|
const U32 hBitsS = cctx->params.cParams.chainLog;
|
||||||
|
seqStore_t* seqStorePtr = &(cctx->seqStore);
|
||||||
|
const BYTE* const base = cctx->base;
|
||||||
|
const BYTE* const istart = (const BYTE*)src;
|
||||||
|
const BYTE* ip = istart;
|
||||||
|
const BYTE* anchor = istart;
|
||||||
|
const U32 lowestIndex = cctx->dictLimit;
|
||||||
|
const BYTE* const lowest = base + lowestIndex;
|
||||||
|
const BYTE* const iend = istart + srcSize;
|
||||||
|
const BYTE* const ilimit = iend - 8;
|
||||||
|
U32 offset_1=cctx->rep[0], offset_2=cctx->rep[1];
|
||||||
|
U32 offsetSaved = 0;
|
||||||
|
|
||||||
|
/* init */
|
||||||
|
ip += (ip==lowest);
|
||||||
|
{ U32 const maxRep = (U32)(ip-lowest);
|
||||||
|
if (offset_2 > maxRep) offsetSaved = offset_2, offset_2 = 0;
|
||||||
|
if (offset_1 > maxRep) offsetSaved = offset_1, offset_1 = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Main Search Loop */
|
||||||
|
while (ip < ilimit) { /* < instead of <=, because repcode check at (ip+1) */
|
||||||
|
size_t mLength;
|
||||||
|
size_t const h2 = ZSTD_hashPtr(ip, hBitsL, 8);
|
||||||
|
size_t const h = ZSTD_hashPtr(ip, hBitsS, mls);
|
||||||
|
U32 const current = (U32)(ip-base);
|
||||||
|
U32 const matchIndexL = hashLong[h2];
|
||||||
|
U32 const matchIndexS = hashSmall[h];
|
||||||
|
const BYTE* matchLong = base + matchIndexL;
|
||||||
|
const BYTE* match = base + matchIndexS;
|
||||||
|
hashLong[h2] = hashSmall[h] = current; /* update hash tables */
|
||||||
|
|
||||||
|
if ((offset_1 > 0) & (MEM_read32(ip+1-offset_1) == MEM_read32(ip+1))) { /* note : by construction, offset_1 <= current */
|
||||||
|
mLength = ZSTD_count(ip+1+4, ip+1+4-offset_1, iend) + 4;
|
||||||
|
ip++;
|
||||||
|
ZSTD_storeSeq(seqStorePtr, ip-anchor, anchor, 0, mLength-MINMATCH);
|
||||||
|
} else {
|
||||||
|
U32 offset;
|
||||||
|
if ( (matchIndexL > lowestIndex) && (MEM_read64(matchLong) == MEM_read64(ip)) ) {
|
||||||
|
mLength = ZSTD_count(ip+8, matchLong+8, iend) + 8;
|
||||||
|
offset = (U32)(ip-matchLong);
|
||||||
|
while (((ip>anchor) & (matchLong>lowest)) && (ip[-1] == matchLong[-1])) { ip--; matchLong--; mLength++; } /* catch up */
|
||||||
|
} else if ( (matchIndexS > lowestIndex) && (MEM_read32(match) == MEM_read32(ip)) ) {
|
||||||
|
mLength = ZSTD_count(ip+4, match+4, iend) + 4;
|
||||||
|
offset = (U32)(ip-match);
|
||||||
|
while (((ip>anchor) & (match>lowest)) && (ip[-1] == match[-1])) { ip--; match--; mLength++; } /* catch up */
|
||||||
|
} else {
|
||||||
|
ip += ((ip-anchor) >> g_searchStrength) + 1;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
offset_2 = offset_1;
|
||||||
|
offset_1 = offset;
|
||||||
|
|
||||||
|
ZSTD_storeSeq(seqStorePtr, ip-anchor, anchor, offset + ZSTD_REP_MOVE, mLength-MINMATCH);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* match found */
|
||||||
|
ip += mLength;
|
||||||
|
anchor = ip;
|
||||||
|
|
||||||
|
if (ip <= ilimit) {
|
||||||
|
/* Fill Table */
|
||||||
|
hashLong[ZSTD_hashPtr(base+current+2, hBitsL, 8)] =
|
||||||
|
hashSmall[ZSTD_hashPtr(base+current+2, hBitsS, mls)] = current+2; /* here because current+2 could be > iend-8 */
|
||||||
|
hashLong[ZSTD_hashPtr(ip-2, hBitsL, 8)] =
|
||||||
|
hashSmall[ZSTD_hashPtr(ip-2, hBitsS, mls)] = (U32)(ip-2-base);
|
||||||
|
|
||||||
|
/* check immediate repcode */
|
||||||
|
while ( (ip <= ilimit)
|
||||||
|
&& ( (offset_2>0)
|
||||||
|
& (MEM_read32(ip) == MEM_read32(ip - offset_2)) )) {
|
||||||
|
/* store sequence */
|
||||||
|
size_t const rLength = ZSTD_count(ip+4, ip+4-offset_2, iend) + 4;
|
||||||
|
{ U32 const tmpOff = offset_2; offset_2 = offset_1; offset_1 = tmpOff; } /* swap offset_2 <=> offset_1 */
|
||||||
|
hashSmall[ZSTD_hashPtr(ip, hBitsS, mls)] = (U32)(ip-base);
|
||||||
|
hashLong[ZSTD_hashPtr(ip, hBitsL, 8)] = (U32)(ip-base);
|
||||||
|
ZSTD_storeSeq(seqStorePtr, 0, anchor, 0, rLength-MINMATCH);
|
||||||
|
ip += rLength;
|
||||||
|
anchor = ip;
|
||||||
|
continue; /* faster when present ... (?) */
|
||||||
|
} } }
|
||||||
|
|
||||||
|
/* save reps for next block */
|
||||||
|
cctx->savedRep[0] = offset_1 ? offset_1 : offsetSaved;
|
||||||
|
cctx->savedRep[1] = offset_2 ? offset_2 : offsetSaved;
|
||||||
|
|
||||||
|
/* Last Literals */
|
||||||
|
{ size_t const lastLLSize = iend - anchor;
|
||||||
|
memcpy(seqStorePtr->lit, anchor, lastLLSize);
|
||||||
|
seqStorePtr->lit += lastLLSize;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static void ZSTD_compressBlock_doubleFast(ZSTD_CCtx* ctx, const void* src, size_t srcSize)
|
||||||
|
{
|
||||||
|
const U32 mls = ctx->params.cParams.searchLength;
|
||||||
|
switch(mls)
|
||||||
|
{
|
||||||
|
default:
|
||||||
|
case 4 :
|
||||||
|
ZSTD_compressBlock_doubleFast_generic(ctx, src, srcSize, 4); return;
|
||||||
|
case 5 :
|
||||||
|
ZSTD_compressBlock_doubleFast_generic(ctx, src, srcSize, 5); return;
|
||||||
|
case 6 :
|
||||||
|
ZSTD_compressBlock_doubleFast_generic(ctx, src, srcSize, 6); return;
|
||||||
|
case 7 :
|
||||||
|
ZSTD_compressBlock_doubleFast_generic(ctx, src, srcSize, 7); return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static void ZSTD_compressBlock_doubleFast_extDict_generic(ZSTD_CCtx* ctx,
|
||||||
|
const void* src, size_t srcSize,
|
||||||
|
const U32 mls)
|
||||||
|
{
|
||||||
|
U32* const hashLong = ctx->hashTable;
|
||||||
|
const U32 hBitsL = ctx->params.cParams.hashLog;
|
||||||
|
U32* const hashSmall = ctx->chainTable;
|
||||||
|
const U32 hBitsS = ctx->params.cParams.chainLog;
|
||||||
|
seqStore_t* seqStorePtr = &(ctx->seqStore);
|
||||||
|
const BYTE* const base = ctx->base;
|
||||||
|
const BYTE* const dictBase = ctx->dictBase;
|
||||||
|
const BYTE* const istart = (const BYTE*)src;
|
||||||
|
const BYTE* ip = istart;
|
||||||
|
const BYTE* anchor = istart;
|
||||||
|
const U32 lowestIndex = ctx->lowLimit;
|
||||||
|
const BYTE* const dictStart = dictBase + lowestIndex;
|
||||||
|
const U32 dictLimit = ctx->dictLimit;
|
||||||
|
const BYTE* const lowPrefixPtr = base + dictLimit;
|
||||||
|
const BYTE* const dictEnd = dictBase + dictLimit;
|
||||||
|
const BYTE* const iend = istart + srcSize;
|
||||||
|
const BYTE* const ilimit = iend - 8;
|
||||||
|
U32 offset_1=ctx->rep[0], offset_2=ctx->rep[1];
|
||||||
|
|
||||||
|
/* Search Loop */
|
||||||
|
while (ip < ilimit) { /* < instead of <=, because (ip+1) */
|
||||||
|
const size_t hSmall = ZSTD_hashPtr(ip, hBitsS, mls);
|
||||||
|
const U32 matchIndex = hashSmall[hSmall];
|
||||||
|
const BYTE* matchBase = matchIndex < dictLimit ? dictBase : base;
|
||||||
|
const BYTE* match = matchBase + matchIndex;
|
||||||
|
|
||||||
|
const size_t hLong = ZSTD_hashPtr(ip, hBitsL, 8);
|
||||||
|
const U32 matchLongIndex = hashLong[hLong];
|
||||||
|
const BYTE* matchLongBase = matchLongIndex < dictLimit ? dictBase : base;
|
||||||
|
const BYTE* matchLong = matchLongBase + matchLongIndex;
|
||||||
|
|
||||||
|
const U32 current = (U32)(ip-base);
|
||||||
|
const U32 repIndex = current + 1 - offset_1; /* offset_1 expected <= current +1 */
|
||||||
|
const BYTE* repBase = repIndex < dictLimit ? dictBase : base;
|
||||||
|
const BYTE* repMatch = repBase + repIndex;
|
||||||
|
size_t mLength;
|
||||||
|
hashSmall[hSmall] = hashLong[hLong] = current; /* update hash table */
|
||||||
|
|
||||||
|
if ( (((U32)((dictLimit-1) - repIndex) >= 3) /* intentional underflow */ & (repIndex > lowestIndex))
|
||||||
|
&& (MEM_read32(repMatch) == MEM_read32(ip+1)) ) {
|
||||||
|
const BYTE* repMatchEnd = repIndex < dictLimit ? dictEnd : iend;
|
||||||
|
mLength = ZSTD_count_2segments(ip+1+4, repMatch+4, iend, repMatchEnd, lowPrefixPtr) + 4;
|
||||||
|
ip++;
|
||||||
|
ZSTD_storeSeq(seqStorePtr, ip-anchor, anchor, 0, mLength-MINMATCH);
|
||||||
|
} else {
|
||||||
|
if ((matchLongIndex > lowestIndex) && (MEM_read64(matchLong) == MEM_read64(ip))) {
|
||||||
|
const BYTE* matchEnd = matchLongIndex < dictLimit ? dictEnd : iend;
|
||||||
|
const BYTE* lowMatchPtr = matchLongIndex < dictLimit ? dictStart : lowPrefixPtr;
|
||||||
|
U32 offset;
|
||||||
|
mLength = ZSTD_count_2segments(ip+8, matchLong+8, iend, matchEnd, lowPrefixPtr) + 8;
|
||||||
|
offset = current - matchLongIndex;
|
||||||
|
while (((ip>anchor) & (matchLong>lowMatchPtr)) && (ip[-1] == matchLong[-1])) { ip--; matchLong--; mLength++; } /* catch up */
|
||||||
|
offset_2 = offset_1;
|
||||||
|
offset_1 = offset;
|
||||||
|
ZSTD_storeSeq(seqStorePtr, ip-anchor, anchor, offset + ZSTD_REP_MOVE, mLength-MINMATCH);
|
||||||
|
} else if ((matchIndex > lowestIndex) && (MEM_read32(match) == MEM_read32(ip))) {
|
||||||
|
const BYTE* matchEnd = matchIndex < dictLimit ? dictEnd : iend;
|
||||||
|
const BYTE* lowMatchPtr = matchIndex < dictLimit ? dictStart : lowPrefixPtr;
|
||||||
|
U32 offset;
|
||||||
|
mLength = ZSTD_count_2segments(ip+4, match+4, iend, matchEnd, lowPrefixPtr) + 4;
|
||||||
|
while (((ip>anchor) & (match>lowMatchPtr)) && (ip[-1] == match[-1])) { ip--; match--; mLength++; } /* catch up */
|
||||||
|
offset = current - matchIndex;
|
||||||
|
offset_2 = offset_1;
|
||||||
|
offset_1 = offset;
|
||||||
|
ZSTD_storeSeq(seqStorePtr, ip-anchor, anchor, offset + ZSTD_REP_MOVE, mLength-MINMATCH);
|
||||||
|
} else {
|
||||||
|
ip += ((ip-anchor) >> g_searchStrength) + 1;
|
||||||
|
continue;
|
||||||
|
} }
|
||||||
|
|
||||||
|
/* found a match : store it */
|
||||||
|
ip += mLength;
|
||||||
|
anchor = ip;
|
||||||
|
|
||||||
|
if (ip <= ilimit) {
|
||||||
|
/* Fill Table */
|
||||||
|
hashSmall[ZSTD_hashPtr(base+current+2, hBitsS, mls)] = current+2;
|
||||||
|
hashLong[ZSTD_hashPtr(base+current+2, hBitsL, 8)] = current+2;
|
||||||
|
hashSmall[ZSTD_hashPtr(ip-2, hBitsS, mls)] = (U32)(ip-2-base);
|
||||||
|
hashLong[ZSTD_hashPtr(ip-2, hBitsL, 8)] = (U32)(ip-2-base);
|
||||||
|
/* check immediate repcode */
|
||||||
|
while (ip <= ilimit) {
|
||||||
|
U32 const current2 = (U32)(ip-base);
|
||||||
|
U32 const repIndex2 = current2 - offset_2;
|
||||||
|
const BYTE* repMatch2 = repIndex2 < dictLimit ? dictBase + repIndex2 : base + repIndex2;
|
||||||
|
if ( (((U32)((dictLimit-1) - repIndex2) >= 3) & (repIndex2 > lowestIndex)) /* intentional overflow */
|
||||||
|
&& (MEM_read32(repMatch2) == MEM_read32(ip)) ) {
|
||||||
|
const BYTE* const repEnd2 = repIndex2 < dictLimit ? dictEnd : iend;
|
||||||
|
size_t const repLength2 = ZSTD_count_2segments(ip+EQUAL_READ32, repMatch2+EQUAL_READ32, iend, repEnd2, lowPrefixPtr) + EQUAL_READ32;
|
||||||
|
U32 tmpOffset = offset_2; offset_2 = offset_1; offset_1 = tmpOffset; /* swap offset_2 <=> offset_1 */
|
||||||
|
ZSTD_storeSeq(seqStorePtr, 0, anchor, 0, repLength2-MINMATCH);
|
||||||
|
hashSmall[ZSTD_hashPtr(ip, hBitsS, mls)] = current2;
|
||||||
|
hashLong[ZSTD_hashPtr(ip, hBitsL, 8)] = current2;
|
||||||
|
ip += repLength2;
|
||||||
|
anchor = ip;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
} } }
|
||||||
|
|
||||||
|
/* save reps for next block */
|
||||||
|
ctx->savedRep[0] = offset_1; ctx->savedRep[1] = offset_2;
|
||||||
|
|
||||||
|
/* Last Literals */
|
||||||
|
{ size_t const lastLLSize = iend - anchor;
|
||||||
|
memcpy(seqStorePtr->lit, anchor, lastLLSize);
|
||||||
|
seqStorePtr->lit += lastLLSize;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static void ZSTD_compressBlock_doubleFast_extDict(ZSTD_CCtx* ctx,
|
||||||
|
const void* src, size_t srcSize)
|
||||||
|
{
|
||||||
|
const U32 mls = ctx->params.cParams.searchLength;
|
||||||
|
switch(mls)
|
||||||
|
{
|
||||||
|
default:
|
||||||
|
case 4 :
|
||||||
|
ZSTD_compressBlock_doubleFast_extDict_generic(ctx, src, srcSize, 4); return;
|
||||||
|
case 5 :
|
||||||
|
ZSTD_compressBlock_doubleFast_extDict_generic(ctx, src, srcSize, 5); return;
|
||||||
|
case 6 :
|
||||||
|
ZSTD_compressBlock_doubleFast_extDict_generic(ctx, src, srcSize, 6); return;
|
||||||
|
case 7 :
|
||||||
|
ZSTD_compressBlock_doubleFast_extDict_generic(ctx, src, srcSize, 7); return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/*-*************************************
|
/*-*************************************
|
||||||
* Binary Tree search
|
* Binary Tree search
|
||||||
***************************************/
|
***************************************/
|
||||||
@@ -2080,9 +2375,9 @@ typedef void (*ZSTD_blockCompressor) (ZSTD_CCtx* ctx, const void* src, size_t sr
|
|||||||
|
|
||||||
static ZSTD_blockCompressor ZSTD_selectBlockCompressor(ZSTD_strategy strat, int extDict)
|
static ZSTD_blockCompressor ZSTD_selectBlockCompressor(ZSTD_strategy strat, int extDict)
|
||||||
{
|
{
|
||||||
static const ZSTD_blockCompressor blockCompressor[2][6] = {
|
static const ZSTD_blockCompressor blockCompressor[2][7] = {
|
||||||
{ ZSTD_compressBlock_fast, ZSTD_compressBlock_greedy, ZSTD_compressBlock_lazy, ZSTD_compressBlock_lazy2, ZSTD_compressBlock_btlazy2, ZSTD_compressBlock_btopt },
|
{ ZSTD_compressBlock_fast, ZSTD_compressBlock_doubleFast, ZSTD_compressBlock_greedy, ZSTD_compressBlock_lazy, ZSTD_compressBlock_lazy2, ZSTD_compressBlock_btlazy2, ZSTD_compressBlock_btopt },
|
||||||
{ ZSTD_compressBlock_fast_extDict, ZSTD_compressBlock_greedy_extDict, ZSTD_compressBlock_lazy_extDict,ZSTD_compressBlock_lazy2_extDict, ZSTD_compressBlock_btlazy2_extDict, ZSTD_compressBlock_btopt_extDict }
|
{ 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 }
|
||||||
};
|
};
|
||||||
|
|
||||||
return blockCompressor[extDict][(U32)strat];
|
return blockCompressor[extDict][(U32)strat];
|
||||||
@@ -2112,7 +2407,7 @@ static size_t ZSTD_compress_generic (ZSTD_CCtx* cctx,
|
|||||||
BYTE* op = ostart;
|
BYTE* op = ostart;
|
||||||
const U32 maxDist = 1 << cctx->params.cParams.windowLog;
|
const U32 maxDist = 1 << cctx->params.cParams.windowLog;
|
||||||
ZSTD_stats_t* stats = &cctx->seqStore.stats;
|
ZSTD_stats_t* stats = &cctx->seqStore.stats;
|
||||||
ZSTD_statsInit(stats);
|
ZSTD_statsInit(stats); /* debug only */
|
||||||
|
|
||||||
if (cctx->params.fParams.checksumFlag)
|
if (cctx->params.fParams.checksumFlag)
|
||||||
XXH64_update(&cctx->xxhState, src, srcSize);
|
XXH64_update(&cctx->xxhState, src, srcSize);
|
||||||
@@ -2265,7 +2560,8 @@ size_t ZSTD_compressContinue (ZSTD_CCtx* zc,
|
|||||||
|
|
||||||
size_t ZSTD_compressBlock(ZSTD_CCtx* zc, void* dst, size_t dstCapacity, const void* src, size_t srcSize)
|
size_t ZSTD_compressBlock(ZSTD_CCtx* zc, void* dst, size_t dstCapacity, const void* src, size_t srcSize)
|
||||||
{
|
{
|
||||||
if (srcSize > ZSTD_BLOCKSIZE_MAX) return ERROR(srcSize_wrong);
|
size_t const blockSizeMax = MIN (ZSTD_BLOCKSIZE_MAX, 1 << zc->params.cParams.windowLog);
|
||||||
|
if (srcSize > blockSizeMax) return ERROR(srcSize_wrong);
|
||||||
ZSTD_LOG_BLOCK("%p: ZSTD_compressBlock searchLength=%d\n", zc->base, zc->params.cParams.searchLength);
|
ZSTD_LOG_BLOCK("%p: ZSTD_compressBlock searchLength=%d\n", zc->base, zc->params.cParams.searchLength);
|
||||||
return ZSTD_compressContinue_internal(zc, dst, dstCapacity, src, srcSize, 0);
|
return ZSTD_compressContinue_internal(zc, dst, dstCapacity, src, srcSize, 0);
|
||||||
}
|
}
|
||||||
@@ -2293,6 +2589,10 @@ static size_t ZSTD_loadDictionaryContent(ZSTD_CCtx* zc, const void* src, size_t
|
|||||||
ZSTD_fillHashTable (zc, iend, zc->params.cParams.searchLength);
|
ZSTD_fillHashTable (zc, iend, zc->params.cParams.searchLength);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case ZSTD_dfast:
|
||||||
|
ZSTD_fillDoubleHashTable (zc, iend, zc->params.cParams.searchLength);
|
||||||
|
break;
|
||||||
|
|
||||||
case ZSTD_greedy:
|
case ZSTD_greedy:
|
||||||
case ZSTD_lazy:
|
case ZSTD_lazy:
|
||||||
case ZSTD_lazy2:
|
case ZSTD_lazy2:
|
||||||
@@ -2637,24 +2937,24 @@ unsigned ZSTD_maxCLevel(void) { return ZSTD_MAX_CLEVEL; }
|
|||||||
static const ZSTD_compressionParameters ZSTD_defaultCParameters[4][ZSTD_MAX_CLEVEL+1] = {
|
static const ZSTD_compressionParameters ZSTD_defaultCParameters[4][ZSTD_MAX_CLEVEL+1] = {
|
||||||
{ /* "default" */
|
{ /* "default" */
|
||||||
/* W, C, H, S, L, TL, strat */
|
/* W, C, H, S, L, TL, strat */
|
||||||
{ 0, 0, 0, 0, 0, 0, ZSTD_fast }, /* level 0 - never used */
|
{ 18, 12, 12, 1, 7, 16, ZSTD_fast }, /* level 0 - not used */
|
||||||
{ 19, 13, 14, 1, 7, 4, ZSTD_fast }, /* level 1 */
|
{ 19, 13, 14, 1, 7, 16, ZSTD_fast }, /* level 1 */
|
||||||
{ 19, 15, 16, 1, 6, 4, ZSTD_fast }, /* level 2 */
|
{ 19, 15, 16, 1, 6, 16, ZSTD_fast }, /* level 2 */
|
||||||
{ 20, 18, 20, 1, 6, 4, ZSTD_fast }, /* level 3 */
|
{ 20, 16, 18, 1, 5, 16, ZSTD_dfast }, /* level 3 */
|
||||||
{ 20, 13, 17, 2, 5, 4, ZSTD_greedy }, /* level 4.*/
|
{ 20, 13, 17, 2, 5, 16, ZSTD_greedy }, /* level 4.*/
|
||||||
{ 20, 15, 18, 3, 5, 4, ZSTD_greedy }, /* level 5 */
|
{ 20, 15, 18, 3, 5, 16, ZSTD_greedy }, /* level 5 */
|
||||||
{ 21, 16, 19, 2, 5, 4, ZSTD_lazy }, /* level 6 */
|
{ 21, 16, 19, 2, 5, 16, ZSTD_lazy }, /* level 6 */
|
||||||
{ 21, 17, 20, 3, 5, 4, ZSTD_lazy }, /* level 7 */
|
{ 21, 17, 20, 3, 5, 16, ZSTD_lazy }, /* level 7 */
|
||||||
{ 21, 18, 20, 3, 5, 4, ZSTD_lazy2 }, /* level 8.*/
|
{ 21, 18, 20, 3, 5, 16, ZSTD_lazy2 }, /* level 8.*/
|
||||||
{ 21, 20, 20, 3, 5, 4, ZSTD_lazy2 }, /* level 9 */
|
{ 21, 20, 20, 3, 5, 16, ZSTD_lazy2 }, /* level 9 */
|
||||||
{ 21, 19, 21, 4, 5, 4, ZSTD_lazy2 }, /* level 10 */
|
{ 21, 19, 21, 4, 5, 16, ZSTD_lazy2 }, /* level 10 */
|
||||||
{ 22, 20, 22, 4, 5, 4, ZSTD_lazy2 }, /* level 11 */
|
{ 22, 20, 22, 4, 5, 16, ZSTD_lazy2 }, /* level 11 */
|
||||||
{ 22, 20, 22, 5, 5, 4, ZSTD_lazy2 }, /* level 12 */
|
{ 22, 20, 22, 5, 5, 16, ZSTD_lazy2 }, /* level 12 */
|
||||||
{ 22, 21, 22, 5, 5, 4, ZSTD_lazy2 }, /* level 13 */
|
{ 22, 21, 22, 5, 5, 16, ZSTD_lazy2 }, /* level 13 */
|
||||||
{ 22, 21, 22, 6, 5, 4, ZSTD_lazy2 }, /* level 14 */
|
{ 22, 21, 22, 6, 5, 16, ZSTD_lazy2 }, /* level 14 */
|
||||||
{ 22, 21, 21, 5, 5, 4, ZSTD_btlazy2 }, /* level 15 */
|
{ 22, 21, 21, 5, 5, 16, ZSTD_btlazy2 }, /* level 15 */
|
||||||
{ 23, 22, 22, 5, 5, 4, ZSTD_btlazy2 }, /* level 16 */
|
{ 23, 22, 22, 5, 5, 16, ZSTD_btlazy2 }, /* level 16 */
|
||||||
{ 23, 23, 22, 5, 5, 4, ZSTD_btlazy2 }, /* level 17.*/
|
{ 23, 23, 22, 5, 5, 16, ZSTD_btlazy2 }, /* level 17.*/
|
||||||
{ 23, 23, 22, 6, 5, 24, ZSTD_btopt }, /* level 18.*/
|
{ 23, 23, 22, 6, 5, 24, ZSTD_btopt }, /* level 18.*/
|
||||||
{ 23, 23, 22, 6, 3, 48, ZSTD_btopt }, /* level 19.*/
|
{ 23, 23, 22, 6, 3, 48, ZSTD_btopt }, /* level 19.*/
|
||||||
{ 25, 26, 23, 7, 3, 64, ZSTD_btopt }, /* level 20.*/
|
{ 25, 26, 23, 7, 3, 64, ZSTD_btopt }, /* level 20.*/
|
||||||
@@ -2663,7 +2963,7 @@ static const ZSTD_compressionParameters ZSTD_defaultCParameters[4][ZSTD_MAX_CLEV
|
|||||||
},
|
},
|
||||||
{ /* for srcSize <= 256 KB */
|
{ /* for srcSize <= 256 KB */
|
||||||
/* W, C, H, S, L, T, strat */
|
/* W, C, H, S, L, T, strat */
|
||||||
{ 0, 0, 0, 0, 0, 0, ZSTD_fast }, /* level 0 */
|
{ 18, 12, 12, 1, 7, 4, ZSTD_fast }, /* level 0 - not used */
|
||||||
{ 18, 13, 14, 1, 6, 4, ZSTD_fast }, /* level 1 */
|
{ 18, 13, 14, 1, 6, 4, ZSTD_fast }, /* level 1 */
|
||||||
{ 18, 15, 17, 1, 5, 4, ZSTD_fast }, /* level 2 */
|
{ 18, 15, 17, 1, 5, 4, ZSTD_fast }, /* level 2 */
|
||||||
{ 18, 13, 15, 1, 5, 4, ZSTD_greedy }, /* level 3.*/
|
{ 18, 13, 15, 1, 5, 4, ZSTD_greedy }, /* level 3.*/
|
||||||
@@ -2689,7 +2989,7 @@ static const ZSTD_compressionParameters ZSTD_defaultCParameters[4][ZSTD_MAX_CLEV
|
|||||||
},
|
},
|
||||||
{ /* for srcSize <= 128 KB */
|
{ /* for srcSize <= 128 KB */
|
||||||
/* W, C, H, S, L, T, strat */
|
/* W, C, H, S, L, T, strat */
|
||||||
{ 0, 0, 0, 0, 0, 0, ZSTD_fast }, /* level 0 - never used */
|
{ 17, 12, 12, 1, 7, 4, ZSTD_fast }, /* level 0 - not used */
|
||||||
{ 17, 12, 13, 1, 6, 4, ZSTD_fast }, /* level 1 */
|
{ 17, 12, 13, 1, 6, 4, ZSTD_fast }, /* level 1 */
|
||||||
{ 17, 13, 16, 1, 5, 4, ZSTD_fast }, /* level 2 */
|
{ 17, 13, 16, 1, 5, 4, ZSTD_fast }, /* level 2 */
|
||||||
{ 17, 13, 14, 2, 5, 4, ZSTD_greedy }, /* level 3 */
|
{ 17, 13, 14, 2, 5, 4, ZSTD_greedy }, /* level 3 */
|
||||||
@@ -2715,16 +3015,16 @@ static const ZSTD_compressionParameters ZSTD_defaultCParameters[4][ZSTD_MAX_CLEV
|
|||||||
},
|
},
|
||||||
{ /* for srcSize <= 16 KB */
|
{ /* for srcSize <= 16 KB */
|
||||||
/* W, C, H, S, L, T, strat */
|
/* W, C, H, S, L, T, strat */
|
||||||
{ 0, 0, 0, 0, 0, 0, ZSTD_fast }, /* level 0 -- never used */
|
{ 14, 12, 12, 1, 7, 6, ZSTD_fast }, /* level 0 - not used */
|
||||||
{ 14, 14, 14, 1, 4, 4, ZSTD_fast }, /* level 1 */
|
{ 14, 14, 14, 1, 7, 6, ZSTD_fast }, /* level 1 */
|
||||||
{ 14, 14, 15, 1, 4, 4, ZSTD_fast }, /* level 2 */
|
{ 14, 14, 14, 1, 4, 6, ZSTD_fast }, /* level 2 */
|
||||||
{ 14, 14, 14, 4, 4, 4, ZSTD_greedy }, /* level 3.*/
|
{ 14, 14, 14, 1, 4, 6, ZSTD_dfast }, /* level 3.*/
|
||||||
{ 14, 14, 14, 3, 4, 4, ZSTD_lazy }, /* level 4.*/
|
{ 14, 14, 14, 4, 4, 6, ZSTD_greedy }, /* level 4.*/
|
||||||
{ 14, 14, 14, 4, 4, 4, ZSTD_lazy2 }, /* level 5 */
|
{ 14, 14, 14, 3, 4, 6, ZSTD_lazy }, /* level 5.*/
|
||||||
{ 14, 14, 14, 5, 4, 4, ZSTD_lazy2 }, /* level 6 */
|
{ 14, 14, 14, 4, 4, 6, ZSTD_lazy2 }, /* level 6 */
|
||||||
{ 14, 14, 14, 6, 4, 4, ZSTD_lazy2 }, /* level 7.*/
|
{ 14, 14, 14, 5, 4, 6, ZSTD_lazy2 }, /* level 7 */
|
||||||
{ 14, 14, 14, 7, 4, 4, ZSTD_lazy2 }, /* level 8.*/
|
{ 14, 14, 14, 6, 4, 6, ZSTD_lazy2 }, /* level 8.*/
|
||||||
{ 14, 15, 14, 6, 4, 4, ZSTD_btlazy2 }, /* level 9.*/
|
{ 14, 15, 14, 6, 4, 6, ZSTD_btlazy2 }, /* level 9.*/
|
||||||
{ 14, 15, 14, 3, 3, 6, ZSTD_btopt }, /* level 10.*/
|
{ 14, 15, 14, 3, 3, 6, ZSTD_btopt }, /* level 10.*/
|
||||||
{ 14, 15, 14, 6, 3, 8, ZSTD_btopt }, /* level 11.*/
|
{ 14, 15, 14, 6, 3, 8, ZSTD_btopt }, /* level 11.*/
|
||||||
{ 14, 15, 14, 6, 3, 16, ZSTD_btopt }, /* level 12.*/
|
{ 14, 15, 14, 6, 3, 16, ZSTD_btopt }, /* level 12.*/
|
||||||
@@ -2763,7 +3063,7 @@ ZSTD_compressionParameters ZSTD_getCParams(int compressionLevel, unsigned long l
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*! ZSTD_getParams() :
|
/*! ZSTD_getParams() :
|
||||||
* same as ZSTD_getCParams(), but @return a `ZSTD_parameters` object instead of a `ZSTD_compressionParameters`.
|
* same as ZSTD_getCParams(), but @return a `ZSTD_parameters` object (instead of `ZSTD_compressionParameters`).
|
||||||
* All fields of `ZSTD_frameParameters` are set to default (0) */
|
* All fields of `ZSTD_frameParameters` are set to default (0) */
|
||||||
ZSTD_parameters ZSTD_getParams(int compressionLevel, unsigned long long srcSize, size_t dictSize) {
|
ZSTD_parameters ZSTD_getParams(int compressionLevel, unsigned long long srcSize, size_t dictSize) {
|
||||||
ZSTD_parameters params;
|
ZSTD_parameters params;
|
||||||
|
|||||||
@@ -780,7 +780,8 @@ void ZSTD_compressBlock_opt_extDict_generic(ZSTD_CCtx* ctx,
|
|||||||
const U32 repIndex = (U32)(current - rep[i]);
|
const U32 repIndex = (U32)(current - rep[i]);
|
||||||
const BYTE* const repBase = repIndex < dictLimit ? dictBase : base;
|
const BYTE* const repBase = repIndex < dictLimit ? dictBase : base;
|
||||||
const BYTE* const repMatch = repBase + repIndex;
|
const BYTE* const repMatch = repBase + repIndex;
|
||||||
if ( (((U32)((dictLimit-1) - repIndex) >= 3) & (repIndex>lowestIndex)) /* intentional overflow */
|
if ( (rep[i] <= current)
|
||||||
|
&& (((U32)((dictLimit-1) - repIndex) >= 3) & (repIndex>lowestIndex)) /* intentional overflow */
|
||||||
&& (MEM_readMINMATCH(ip, minMatch) == MEM_readMINMATCH(repMatch, minMatch)) ) {
|
&& (MEM_readMINMATCH(ip, minMatch) == MEM_readMINMATCH(repMatch, minMatch)) ) {
|
||||||
/* repcode detected we should take it */
|
/* repcode detected we should take it */
|
||||||
const BYTE* const repEnd = repIndex < dictLimit ? dictEnd : iend;
|
const BYTE* const repEnd = repIndex < dictLimit ? dictEnd : iend;
|
||||||
@@ -882,7 +883,8 @@ void ZSTD_compressBlock_opt_extDict_generic(ZSTD_CCtx* ctx,
|
|||||||
const U32 repIndex = (U32)(current+cur - opt[cur].rep[i]);
|
const U32 repIndex = (U32)(current+cur - opt[cur].rep[i]);
|
||||||
const BYTE* const repBase = repIndex < dictLimit ? dictBase : base;
|
const BYTE* const repBase = repIndex < dictLimit ? dictBase : base;
|
||||||
const BYTE* const repMatch = repBase + repIndex;
|
const BYTE* const repMatch = repBase + repIndex;
|
||||||
if ( (((U32)((dictLimit-1) - repIndex) >= 3) & (repIndex>lowestIndex)) /* intentional overflow */
|
if ( (opt[cur].rep[i] <= current+cur)
|
||||||
|
&& (((U32)((dictLimit-1) - repIndex) >= 3) & (repIndex>lowestIndex)) /* intentional overflow */
|
||||||
&& (MEM_readMINMATCH(inr, minMatch) == MEM_readMINMATCH(repMatch, minMatch)) ) {
|
&& (MEM_readMINMATCH(inr, minMatch) == MEM_readMINMATCH(repMatch, minMatch)) ) {
|
||||||
/* repcode detected */
|
/* repcode detected */
|
||||||
const BYTE* const repEnd = repIndex < dictLimit ? dictEnd : iend;
|
const BYTE* const repEnd = repIndex < dictLimit ? dictEnd : iend;
|
||||||
|
|||||||
@@ -135,7 +135,9 @@ struct ZSTD_DCtx_s
|
|||||||
BYTE headerBuffer[ZSTD_FRAMEHEADERSIZE_MAX];
|
BYTE headerBuffer[ZSTD_FRAMEHEADERSIZE_MAX];
|
||||||
}; /* typedef'd to ZSTD_DCtx within "zstd_static.h" */
|
}; /* typedef'd to ZSTD_DCtx within "zstd_static.h" */
|
||||||
|
|
||||||
size_t ZSTD_sizeofDCtx (void) { return sizeof(ZSTD_DCtx); } /* non published interface */
|
size_t ZSTD_sizeofDCtx (const ZSTD_DCtx* dctx) { return sizeof(*dctx); }
|
||||||
|
|
||||||
|
size_t ZSTD_estimateDCtxSize(void) { return sizeof(ZSTD_DCtx); }
|
||||||
|
|
||||||
size_t ZSTD_decompressBegin(ZSTD_DCtx* dctx)
|
size_t ZSTD_decompressBegin(ZSTD_DCtx* dctx)
|
||||||
{
|
{
|
||||||
@@ -949,7 +951,7 @@ ZSTDLIB_API size_t ZSTD_insertBlock(ZSTD_DCtx* dctx, const void* blockStart, siz
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
size_t ZSTD_generateNxByte(void* dst, size_t dstCapacity, BYTE byte, size_t length)
|
size_t ZSTD_generateNxBytes(void* dst, size_t dstCapacity, BYTE byte, size_t length)
|
||||||
{
|
{
|
||||||
if (length > dstCapacity) return ERROR(dstSize_tooSmall);
|
if (length > dstCapacity) return ERROR(dstSize_tooSmall);
|
||||||
memset(dst, byte, length);
|
memset(dst, byte, length);
|
||||||
@@ -1001,7 +1003,7 @@ static size_t ZSTD_decompressFrame(ZSTD_DCtx* dctx,
|
|||||||
decodedSize = ZSTD_copyRawBlock(op, oend-op, ip, cBlockSize);
|
decodedSize = ZSTD_copyRawBlock(op, oend-op, ip, cBlockSize);
|
||||||
break;
|
break;
|
||||||
case bt_rle :
|
case bt_rle :
|
||||||
decodedSize = ZSTD_generateNxByte(op, oend-op, *ip, blockProperties.origSize);
|
decodedSize = ZSTD_generateNxBytes(op, oend-op, *ip, blockProperties.origSize);
|
||||||
break;
|
break;
|
||||||
case bt_end :
|
case bt_end :
|
||||||
/* end of frame */
|
/* end of frame */
|
||||||
|
|||||||
+15
-12
@@ -284,7 +284,7 @@ static dictItem ZDICT_analyzePos(
|
|||||||
U32 refinedEnd = end;
|
U32 refinedEnd = end;
|
||||||
|
|
||||||
DISPLAYLEVEL(4, "\n");
|
DISPLAYLEVEL(4, "\n");
|
||||||
DISPLAYLEVEL(4, "found %3u matches of length >= %u at pos %7u ", (U32)(end-start), MINMATCHLENGTH, (U32)pos);
|
DISPLAYLEVEL(4, "found %3u matches of length >= %i at pos %7u ", (U32)(end-start), MINMATCHLENGTH, (U32)pos);
|
||||||
DISPLAYLEVEL(4, "\n");
|
DISPLAYLEVEL(4, "\n");
|
||||||
|
|
||||||
for (searchLength = MINMATCHLENGTH ; ; searchLength++) {
|
for (searchLength = MINMATCHLENGTH ; ; searchLength++) {
|
||||||
@@ -514,8 +514,9 @@ static size_t ZDICT_trainBuffer(dictItem* dictList, U32 dictListSize,
|
|||||||
|
|
||||||
/* sort */
|
/* sort */
|
||||||
DISPLAYLEVEL(2, "sorting %u files of total size %u MB ...\n", nbFiles, (U32)(bufferSize>>20));
|
DISPLAYLEVEL(2, "sorting %u files of total size %u MB ...\n", nbFiles, (U32)(bufferSize>>20));
|
||||||
{ int const divSuftSortResult = divsufsort((const unsigned char*)buffer, suffix, (int)bufferSize, 0);
|
{ int const divSuftSortResult = divsufsort((const unsigned char*)buffer, suffix, (int)bufferSize, 0);
|
||||||
if (divSuftSortResult != 0) { result = ERROR(GENERIC); goto _cleanup; } }
|
if (divSuftSortResult != 0) { result = ERROR(GENERIC); goto _cleanup; }
|
||||||
|
}
|
||||||
suffix[bufferSize] = (int)bufferSize; /* leads into noise */
|
suffix[bufferSize] = (int)bufferSize; /* leads into noise */
|
||||||
suffix0[0] = (int)bufferSize; /* leads into noise */
|
suffix0[0] = (int)bufferSize; /* leads into noise */
|
||||||
/* build reverse suffix sort */
|
/* build reverse suffix sort */
|
||||||
@@ -580,13 +581,14 @@ typedef struct
|
|||||||
|
|
||||||
#define MAXREPOFFSET 1024
|
#define MAXREPOFFSET 1024
|
||||||
|
|
||||||
static void ZDICT_countEStats(EStats_ress_t esr,
|
static void ZDICT_countEStats(EStats_ress_t esr, ZSTD_parameters params,
|
||||||
U32* countLit, U32* offsetcodeCount, U32* matchlengthCount, U32* litlengthCount, U32* repOffsets,
|
U32* countLit, U32* offsetcodeCount, U32* matchlengthCount, U32* litlengthCount, U32* repOffsets,
|
||||||
const void* src, size_t srcSize)
|
const void* src, size_t srcSize)
|
||||||
{
|
{
|
||||||
|
size_t const blockSizeMax = MIN (ZSTD_BLOCKSIZE_MAX, 1 << params.cParams.windowLog);
|
||||||
size_t cSize;
|
size_t cSize;
|
||||||
|
|
||||||
if (srcSize > ZSTD_BLOCKSIZE_MAX) srcSize = ZSTD_BLOCKSIZE_MAX; /* protection vs large samples */
|
if (srcSize > blockSizeMax) srcSize = blockSizeMax; /* protection vs large samples */
|
||||||
{ size_t const errorCode = ZSTD_copyCCtx(esr.zc, esr.ref);
|
{ size_t const errorCode = ZSTD_copyCCtx(esr.zc, esr.ref);
|
||||||
if (ZSTD_isError(errorCode)) { DISPLAYLEVEL(1, "warning : ZSTD_copyCCtx failed \n"); return; }
|
if (ZSTD_isError(errorCode)) { DISPLAYLEVEL(1, "warning : ZSTD_copyCCtx failed \n"); return; }
|
||||||
}
|
}
|
||||||
@@ -710,8 +712,7 @@ static size_t ZDICT_analyzeEntropy(void* dstBuffer, size_t maxDstSize,
|
|||||||
goto _cleanup;
|
goto _cleanup;
|
||||||
}
|
}
|
||||||
if (compressionLevel==0) compressionLevel=g_compressionLevel_default;
|
if (compressionLevel==0) compressionLevel=g_compressionLevel_default;
|
||||||
params.cParams = ZSTD_getCParams(compressionLevel, averageSampleSize, dictBufferSize);
|
params = ZSTD_getParams(compressionLevel, averageSampleSize, dictBufferSize);
|
||||||
params.fParams.contentSizeFlag = 0;
|
|
||||||
{ size_t const beginResult = ZSTD_compressBegin_advanced(esr.ref, dictBuffer, dictBufferSize, params, 0);
|
{ size_t const beginResult = ZSTD_compressBegin_advanced(esr.ref, dictBuffer, dictBufferSize, params, 0);
|
||||||
if (ZSTD_isError(beginResult)) {
|
if (ZSTD_isError(beginResult)) {
|
||||||
eSize = ERROR(GENERIC);
|
eSize = ERROR(GENERIC);
|
||||||
@@ -721,7 +722,7 @@ static size_t ZDICT_analyzeEntropy(void* dstBuffer, size_t maxDstSize,
|
|||||||
|
|
||||||
/* collect stats on all files */
|
/* collect stats on all files */
|
||||||
for (u=0; u<nbFiles; u++) {
|
for (u=0; u<nbFiles; u++) {
|
||||||
ZDICT_countEStats(esr,
|
ZDICT_countEStats(esr, params,
|
||||||
countLit, offcodeCount, matchLengthCount, litLengthCount, repOffset,
|
countLit, offcodeCount, matchLengthCount, litLengthCount, repOffset,
|
||||||
(const char*)srcBuffer + pos, fileSizes[u]);
|
(const char*)srcBuffer + pos, fileSizes[u]);
|
||||||
pos += fileSizes[u];
|
pos += fileSizes[u];
|
||||||
@@ -893,7 +894,8 @@ size_t ZDICT_addEntropyTablesFromBuffer_advanced(void* dictBuffer, size_t dictCo
|
|||||||
/* dictionary header */
|
/* dictionary header */
|
||||||
MEM_writeLE32(dictBuffer, ZSTD_DICT_MAGIC);
|
MEM_writeLE32(dictBuffer, ZSTD_DICT_MAGIC);
|
||||||
{ U64 const randomID = XXH64((char*)dictBuffer + dictBufferCapacity - dictContentSize, dictContentSize, 0);
|
{ U64 const randomID = XXH64((char*)dictBuffer + dictBufferCapacity - dictContentSize, dictContentSize, 0);
|
||||||
U32 const dictID = params.dictID ? params.dictID : (U32)(randomID>>11);
|
U32 const compliantID = (randomID % ((1U<<31)-32768)) + 32768;
|
||||||
|
U32 const dictID = params.dictID ? params.dictID : compliantID;
|
||||||
MEM_writeLE32((char*)dictBuffer+4, dictID);
|
MEM_writeLE32((char*)dictBuffer+4, dictID);
|
||||||
}
|
}
|
||||||
hSize = 8;
|
hSize = 8;
|
||||||
@@ -911,6 +913,7 @@ size_t ZDICT_addEntropyTablesFromBuffer_advanced(void* dictBuffer, size_t dictCo
|
|||||||
return MIN(dictBufferCapacity, hSize+dictContentSize);
|
return MIN(dictBufferCapacity, hSize+dictContentSize);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#define DIB_MINSAMPLESSIZE (DIB_FASTSEGMENTSIZE*3)
|
#define DIB_MINSAMPLESSIZE (DIB_FASTSEGMENTSIZE*3)
|
||||||
/*! ZDICT_trainFromBuffer_unsafe() :
|
/*! ZDICT_trainFromBuffer_unsafe() :
|
||||||
* `samplesBuffer` must be followed by noisy guard band.
|
* `samplesBuffer` must be followed by noisy guard band.
|
||||||
@@ -929,12 +932,12 @@ size_t ZDICT_trainFromBuffer_unsafe(
|
|||||||
size_t dictSize = 0;
|
size_t dictSize = 0;
|
||||||
|
|
||||||
/* checks */
|
/* checks */
|
||||||
if (maxDictSize <= g_provision_entropySize + g_min_fast_dictContent) return ERROR(dstSize_tooSmall);
|
|
||||||
if (!dictList) return ERROR(memory_allocation);
|
if (!dictList) return ERROR(memory_allocation);
|
||||||
|
if (maxDictSize <= g_provision_entropySize + g_min_fast_dictContent) { free(dictList); return ERROR(dstSize_tooSmall); }
|
||||||
|
|
||||||
/* init */
|
/* init */
|
||||||
{ unsigned u; for (u=0, sBuffSize=0; u<nbSamples; u++) sBuffSize += samplesSizes[u]; }
|
{ unsigned u; for (u=0, sBuffSize=0; u<nbSamples; u++) sBuffSize += samplesSizes[u]; }
|
||||||
if (sBuffSize < DIB_MINSAMPLESSIZE) return 0; /* not enough source to create dictionary */
|
if (sBuffSize < DIB_MINSAMPLESSIZE) { free(dictList); return 0; } /* not enough source to create dictionary */
|
||||||
ZDICT_initDictItem(dictList);
|
ZDICT_initDictItem(dictList);
|
||||||
g_displayLevel = params.notificationLevel;
|
g_displayLevel = params.notificationLevel;
|
||||||
if (selectivity==0) selectivity = g_selectivity_default;
|
if (selectivity==0) selectivity = g_selectivity_default;
|
||||||
@@ -972,7 +975,7 @@ size_t ZDICT_trainFromBuffer_unsafe(
|
|||||||
for (u=1; u<dictList->pos; u++) {
|
for (u=1; u<dictList->pos; u++) {
|
||||||
U32 l = dictList[u].length;
|
U32 l = dictList[u].length;
|
||||||
ptr -= l;
|
ptr -= l;
|
||||||
if (ptr<(BYTE*)dictBuffer) return ERROR(GENERIC); /* should not happen */
|
if (ptr<(BYTE*)dictBuffer) { free(dictList); return ERROR(GENERIC); } /* should not happen */
|
||||||
memcpy(ptr, (const char*)samplesBuffer+dictList[u].pos, l);
|
memcpy(ptr, (const char*)samplesBuffer+dictList[u].pos, l);
|
||||||
} }
|
} }
|
||||||
|
|
||||||
|
|||||||
@@ -84,10 +84,6 @@ const char* ZDICT_getErrorName(size_t errorCode);
|
|||||||
* Use them only in association with static linking.
|
* Use them only in association with static linking.
|
||||||
* ==================================================================================== */
|
* ==================================================================================== */
|
||||||
|
|
||||||
|
|
||||||
/*-*************************************
|
|
||||||
* Public type
|
|
||||||
***************************************/
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
unsigned selectivityLevel; /* 0 means default; larger => bigger selection => larger dictionary */
|
unsigned selectivityLevel; /* 0 means default; larger => bigger selection => larger dictionary */
|
||||||
unsigned compressionLevel; /* 0 means default; target a specific zstd compression level */
|
unsigned compressionLevel; /* 0 means default; target a specific zstd compression level */
|
||||||
@@ -97,9 +93,6 @@ typedef struct {
|
|||||||
} ZDICT_params_t;
|
} ZDICT_params_t;
|
||||||
|
|
||||||
|
|
||||||
/*-*************************************
|
|
||||||
* Public functions
|
|
||||||
***************************************/
|
|
||||||
/*! ZDICT_trainFromBuffer_advanced() :
|
/*! ZDICT_trainFromBuffer_advanced() :
|
||||||
Same as ZDICT_trainFromBuffer() with control over more parameters.
|
Same as ZDICT_trainFromBuffer() with control over more parameters.
|
||||||
`parameters` is optional and can be provided with values set to 0 to mean "default".
|
`parameters` is optional and can be provided with values set to 0 to mean "default".
|
||||||
@@ -117,4 +110,4 @@ size_t ZDICT_trainFromBuffer_advanced(void* dictBuffer, size_t dictBufferCapacit
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif /* DICTBUILDER_H_001 */
|
||||||
|
|||||||
@@ -48,6 +48,7 @@ extern "C" {
|
|||||||
#include "zstd_v04.h"
|
#include "zstd_v04.h"
|
||||||
#include "zstd_v05.h"
|
#include "zstd_v05.h"
|
||||||
#include "zstd_v06.h"
|
#include "zstd_v06.h"
|
||||||
|
#include "zstd_v08.h"
|
||||||
|
|
||||||
|
|
||||||
/** ZSTD_isLegacy() :
|
/** ZSTD_isLegacy() :
|
||||||
@@ -67,6 +68,7 @@ MEM_STATIC unsigned ZSTD_isLegacy(const void* src, size_t srcSize)
|
|||||||
case ZSTDv04_magicNumber : return 4;
|
case ZSTDv04_magicNumber : return 4;
|
||||||
case ZSTDv05_MAGICNUMBER : return 5;
|
case ZSTDv05_MAGICNUMBER : return 5;
|
||||||
case ZSTDv06_MAGICNUMBER : return 6;
|
case ZSTDv06_MAGICNUMBER : return 6;
|
||||||
|
case ZSTDv08_MAGICNUMBER : return 8;
|
||||||
default : return 0;
|
default : return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -90,6 +92,12 @@ MEM_STATIC unsigned long long ZSTD_getDecompressedSize_legacy(const void* src, s
|
|||||||
if (frResult != 0) return 0;
|
if (frResult != 0) return 0;
|
||||||
return fParams.frameContentSize;
|
return fParams.frameContentSize;
|
||||||
}
|
}
|
||||||
|
if (version==8) {
|
||||||
|
ZSTDv08_frameParams fParams;
|
||||||
|
size_t const frResult = ZSTDv08_getFrameParams(&fParams, src, srcSize);
|
||||||
|
if (frResult != 0) return 0;
|
||||||
|
return fParams.frameContentSize;
|
||||||
|
}
|
||||||
return 0; /* should not be possible */
|
return 0; /* should not be possible */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -126,6 +134,14 @@ MEM_STATIC size_t ZSTD_decompressLegacy(
|
|||||||
ZSTDv06_freeDCtx(zd);
|
ZSTDv06_freeDCtx(zd);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
case 8 :
|
||||||
|
{ size_t result;
|
||||||
|
ZSTDv08_DCtx* const zd = ZSTDv08_createDCtx();
|
||||||
|
if (zd==NULL) return ERROR(memory_allocation);
|
||||||
|
result = ZSTDv08_decompress_usingDict(zd, dst, dstCapacity, src, compressedSize, dict, dictSize);
|
||||||
|
ZSTDv08_freeDCtx(zd);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
default :
|
default :
|
||||||
return ERROR(prefix_unknown);
|
return ERROR(prefix_unknown);
|
||||||
}
|
}
|
||||||
|
|||||||
+19
-32
@@ -3620,36 +3620,26 @@ static size_t ZSTD_decompressContinue(ZSTD_DCtx* ctx, void* dst, size_t maxDstSi
|
|||||||
switch (ctx->stage)
|
switch (ctx->stage)
|
||||||
{
|
{
|
||||||
case ZSTDds_getFrameHeaderSize :
|
case ZSTDds_getFrameHeaderSize :
|
||||||
{
|
/* get frame header size */
|
||||||
/* get frame header size */
|
if (srcSize != ZSTD_frameHeaderSize_min) return ERROR(srcSize_wrong); /* impossible */
|
||||||
if (srcSize != ZSTD_frameHeaderSize_min) return ERROR(srcSize_wrong); /* impossible */
|
ctx->headerSize = ZSTD_decodeFrameHeader_Part1(ctx, src, ZSTD_frameHeaderSize_min);
|
||||||
ctx->headerSize = ZSTD_decodeFrameHeader_Part1(ctx, src, ZSTD_frameHeaderSize_min);
|
if (ZSTD_isError(ctx->headerSize)) return ctx->headerSize;
|
||||||
if (ZSTD_isError(ctx->headerSize)) return ctx->headerSize;
|
memcpy(ctx->headerBuffer, src, ZSTD_frameHeaderSize_min);
|
||||||
memcpy(ctx->headerBuffer, src, ZSTD_frameHeaderSize_min);
|
if (ctx->headerSize > ZSTD_frameHeaderSize_min) return ERROR(GENERIC); /* impossible */
|
||||||
if (ctx->headerSize > ZSTD_frameHeaderSize_min)
|
ctx->expected = 0; /* not necessary to copy more */
|
||||||
{
|
/* fallthrough */
|
||||||
ctx->expected = ctx->headerSize - ZSTD_frameHeaderSize_min;
|
|
||||||
ctx->stage = ZSTDds_decodeFrameHeader;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
ctx->expected = 0; /* not necessary to copy more */
|
|
||||||
}
|
|
||||||
case ZSTDds_decodeFrameHeader:
|
case ZSTDds_decodeFrameHeader:
|
||||||
{
|
/* get frame header */
|
||||||
/* get frame header */
|
{ size_t const result = ZSTD_decodeFrameHeader_Part2(ctx, ctx->headerBuffer, ctx->headerSize);
|
||||||
size_t result;
|
|
||||||
memcpy(ctx->headerBuffer + ZSTD_frameHeaderSize_min, src, ctx->expected);
|
|
||||||
result = ZSTD_decodeFrameHeader_Part2(ctx, ctx->headerBuffer, ctx->headerSize);
|
|
||||||
if (ZSTD_isError(result)) return result;
|
if (ZSTD_isError(result)) return result;
|
||||||
ctx->expected = ZSTD_blockHeaderSize;
|
ctx->expected = ZSTD_blockHeaderSize;
|
||||||
ctx->stage = ZSTDds_decodeBlockHeader;
|
ctx->stage = ZSTDds_decodeBlockHeader;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
case ZSTDds_decodeBlockHeader:
|
case ZSTDds_decodeBlockHeader:
|
||||||
{
|
/* Decode block header */
|
||||||
/* Decode block header */
|
{ blockProperties_t bp;
|
||||||
blockProperties_t bp;
|
size_t const blockSize = ZSTD_getcBlockSize(src, ZSTD_blockHeaderSize, &bp);
|
||||||
size_t blockSize = ZSTD_getcBlockSize(src, ZSTD_blockHeaderSize, &bp);
|
|
||||||
if (ZSTD_isError(blockSize)) return blockSize;
|
if (ZSTD_isError(blockSize)) return blockSize;
|
||||||
if (bp.blockType == bt_end)
|
if (bp.blockType == bt_end)
|
||||||
{
|
{
|
||||||
@@ -3864,11 +3854,9 @@ static size_t ZBUFF_decompressContinue(ZBUFF_DCtx* zbc, void* dst, size_t* maxDs
|
|||||||
|
|
||||||
case ZBUFFds_readHeader :
|
case ZBUFFds_readHeader :
|
||||||
/* read header from src */
|
/* read header from src */
|
||||||
{
|
{ size_t const headerSize = ZSTD_getFrameParams(&(zbc->params), src, *srcSizePtr);
|
||||||
size_t headerSize = ZSTD_getFrameParams(&(zbc->params), src, *srcSizePtr);
|
|
||||||
if (ZSTD_isError(headerSize)) return headerSize;
|
if (ZSTD_isError(headerSize)) return headerSize;
|
||||||
if (headerSize)
|
if (headerSize) {
|
||||||
{
|
|
||||||
/* not enough input to decode header : tell how many bytes would be necessary */
|
/* not enough input to decode header : tell how many bytes would be necessary */
|
||||||
memcpy(zbc->headerBuffer+zbc->hPos, src, *srcSizePtr);
|
memcpy(zbc->headerBuffer+zbc->hPos, src, *srcSizePtr);
|
||||||
zbc->hPos += *srcSizePtr;
|
zbc->hPos += *srcSizePtr;
|
||||||
@@ -3882,8 +3870,7 @@ static size_t ZBUFF_decompressContinue(ZBUFF_DCtx* zbc, void* dst, size_t* maxDs
|
|||||||
|
|
||||||
case ZBUFFds_loadHeader:
|
case ZBUFFds_loadHeader:
|
||||||
/* complete header from src */
|
/* complete header from src */
|
||||||
{
|
{ size_t headerSize = ZBUFF_limitCopy(
|
||||||
size_t headerSize = ZBUFF_limitCopy(
|
|
||||||
zbc->headerBuffer + zbc->hPos, ZSTD_frameHeaderSize_max - zbc->hPos,
|
zbc->headerBuffer + zbc->hPos, ZSTD_frameHeaderSize_max - zbc->hPos,
|
||||||
src, *srcSizePtr);
|
src, *srcSizePtr);
|
||||||
zbc->hPos += headerSize;
|
zbc->hPos += headerSize;
|
||||||
@@ -3895,12 +3882,12 @@ static size_t ZBUFF_decompressContinue(ZBUFF_DCtx* zbc, void* dst, size_t* maxDs
|
|||||||
*maxDstSizePtr = 0;
|
*maxDstSizePtr = 0;
|
||||||
return headerSize - zbc->hPos;
|
return headerSize - zbc->hPos;
|
||||||
} }
|
} }
|
||||||
|
/* intentional fallthrough */
|
||||||
|
|
||||||
case ZBUFFds_decodeHeader:
|
case ZBUFFds_decodeHeader:
|
||||||
/* apply header to create / resize buffers */
|
/* apply header to create / resize buffers */
|
||||||
{
|
{ size_t const neededOutSize = (size_t)1 << zbc->params.windowLog;
|
||||||
size_t neededOutSize = (size_t)1 << zbc->params.windowLog;
|
size_t const neededInSize = BLOCKSIZE; /* a block is never > BLOCKSIZE */
|
||||||
size_t neededInSize = BLOCKSIZE; /* a block is never > BLOCKSIZE */
|
|
||||||
if (zbc->inBuffSize < neededInSize) {
|
if (zbc->inBuffSize < neededInSize) {
|
||||||
free(zbc->inBuff);
|
free(zbc->inBuff);
|
||||||
zbc->inBuffSize = neededInSize;
|
zbc->inBuffSize = neededInSize;
|
||||||
|
|||||||
+10
-18
@@ -3872,25 +3872,17 @@ size_t ZSTDv05_decompressContinue(ZSTDv05_DCtx* dctx, void* dst, size_t maxDstSi
|
|||||||
switch (dctx->stage)
|
switch (dctx->stage)
|
||||||
{
|
{
|
||||||
case ZSTDv05ds_getFrameHeaderSize :
|
case ZSTDv05ds_getFrameHeaderSize :
|
||||||
{
|
/* get frame header size */
|
||||||
/* get frame header size */
|
if (srcSize != ZSTDv05_frameHeaderSize_min) return ERROR(srcSize_wrong); /* impossible */
|
||||||
if (srcSize != ZSTDv05_frameHeaderSize_min) return ERROR(srcSize_wrong); /* impossible */
|
dctx->headerSize = ZSTDv05_decodeFrameHeader_Part1(dctx, src, ZSTDv05_frameHeaderSize_min);
|
||||||
dctx->headerSize = ZSTDv05_decodeFrameHeader_Part1(dctx, src, ZSTDv05_frameHeaderSize_min);
|
if (ZSTDv05_isError(dctx->headerSize)) return dctx->headerSize;
|
||||||
if (ZSTDv05_isError(dctx->headerSize)) return dctx->headerSize;
|
memcpy(dctx->headerBuffer, src, ZSTDv05_frameHeaderSize_min);
|
||||||
memcpy(dctx->headerBuffer, src, ZSTDv05_frameHeaderSize_min);
|
if (dctx->headerSize > ZSTDv05_frameHeaderSize_min) return ERROR(GENERIC); /* should never happen */
|
||||||
if (dctx->headerSize > ZSTDv05_frameHeaderSize_min) {
|
dctx->expected = 0; /* not necessary to copy more */
|
||||||
dctx->expected = dctx->headerSize - ZSTDv05_frameHeaderSize_min;
|
/* fallthrough */
|
||||||
dctx->stage = ZSTDv05ds_decodeFrameHeader;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
dctx->expected = 0; /* not necessary to copy more */
|
|
||||||
}
|
|
||||||
case ZSTDv05ds_decodeFrameHeader:
|
case ZSTDv05ds_decodeFrameHeader:
|
||||||
{
|
/* get frame header */
|
||||||
/* get frame header */
|
{ size_t const result = ZSTDv05_decodeFrameHeader_Part2(dctx, dctx->headerBuffer, dctx->headerSize);
|
||||||
size_t result;
|
|
||||||
memcpy(dctx->headerBuffer + ZSTDv05_frameHeaderSize_min, src, dctx->expected);
|
|
||||||
result = ZSTDv05_decodeFrameHeader_Part2(dctx, dctx->headerBuffer, dctx->headerSize);
|
|
||||||
if (ZSTDv05_isError(result)) return result;
|
if (ZSTDv05_isError(result)) return result;
|
||||||
dctx->expected = ZSTDv05_blockHeaderSize;
|
dctx->expected = ZSTDv05_blockHeaderSize;
|
||||||
dctx->stage = ZSTDv05ds_decodeBlockHeader;
|
dctx->stage = ZSTDv05ds_decodeBlockHeader;
|
||||||
|
|||||||
@@ -0,0 +1,4920 @@
|
|||||||
|
/* ******************************************************************
|
||||||
|
zstd_v08.c
|
||||||
|
Decompression module for ZSTD v0.8 legacy format
|
||||||
|
Copyright (C) 2016, 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 :
|
||||||
|
- Homepage : http://www.zstd.net/
|
||||||
|
****************************************************************** */
|
||||||
|
|
||||||
|
/*- Dependencies -*/
|
||||||
|
#include <stddef.h> /* size_t, ptrdiff_t */
|
||||||
|
#include <string.h> /* memcpy */
|
||||||
|
#include <stdlib.h> /* malloc, free, qsort */
|
||||||
|
|
||||||
|
#define XXH_STATIC_LINKING_ONLY /* XXH64_state_t */
|
||||||
|
#include "xxhash.h" /* XXH64_* */
|
||||||
|
#include "zstd_v08.h"
|
||||||
|
|
||||||
|
#define FSEv08_STATIC_LINKING_ONLY /* FSEv08_MIN_TABLELOG */
|
||||||
|
#define HUFv08_STATIC_LINKING_ONLY /* HUFv08_TABLELOG_ABSOLUTEMAX */
|
||||||
|
#define ZSTDv08_STATIC_LINKING_ONLY
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef ZSTDv08_STATIC_LINKING_ONLY
|
||||||
|
|
||||||
|
/* ====================================================================================
|
||||||
|
* The definitions in this section are considered experimental.
|
||||||
|
* They should never be used with a dynamic library, as they may change in the future.
|
||||||
|
* They are provided for advanced usages.
|
||||||
|
* Use them only in association with static linking.
|
||||||
|
* ==================================================================================== */
|
||||||
|
|
||||||
|
/*--- Constants ---*/
|
||||||
|
#define ZSTDv08_MAGIC_SKIPPABLE_START 0x184D2A50U
|
||||||
|
|
||||||
|
#define ZSTDv08_WINDOWLOG_MAX_32 25
|
||||||
|
#define ZSTDv08_WINDOWLOG_MAX_64 27
|
||||||
|
#define ZSTDv08_WINDOWLOG_MAX ((U32)(MEM_32bits() ? ZSTDv08_WINDOWLOG_MAX_32 : ZSTDv08_WINDOWLOG_MAX_64))
|
||||||
|
#define ZSTDv08_WINDOWLOG_MIN 18
|
||||||
|
#define ZSTDv08_CHAINLOG_MAX (ZSTDv08_WINDOWLOG_MAX+1)
|
||||||
|
#define ZSTDv08_CHAINLOG_MIN 4
|
||||||
|
#define ZSTDv08_HASHLOG_MAX ZSTDv08_WINDOWLOG_MAX
|
||||||
|
#define ZSTDv08_HASHLOG_MIN 12
|
||||||
|
#define ZSTDv08_HASHLOG3_MAX 17
|
||||||
|
#define ZSTDv08_SEARCHLOG_MAX (ZSTDv08_WINDOWLOG_MAX-1)
|
||||||
|
#define ZSTDv08_SEARCHLOG_MIN 1
|
||||||
|
#define ZSTDv08_SEARCHLENGTH_MAX 7
|
||||||
|
#define ZSTDv08_SEARCHLENGTH_MIN 3
|
||||||
|
#define ZSTDv08_TARGETLENGTH_MIN 4
|
||||||
|
#define ZSTDv08_TARGETLENGTH_MAX 999
|
||||||
|
|
||||||
|
#define ZSTDv08_FRAMEHEADERSIZE_MAX 18 /* for static allocation */
|
||||||
|
static const size_t ZSTDv08_frameHeaderSize_min = 5;
|
||||||
|
static const size_t ZSTDv08_frameHeaderSize_max = ZSTDv08_FRAMEHEADERSIZE_MAX;
|
||||||
|
static const size_t ZSTDv08_skippableHeaderSize = 8; /* magic number + skippable frame length */
|
||||||
|
|
||||||
|
|
||||||
|
/* custom memory allocation functions */
|
||||||
|
typedef void* (*ZSTDv08_allocFunction) (void* opaque, size_t size);
|
||||||
|
typedef void (*ZSTDv08_freeFunction) (void* opaque, void* address);
|
||||||
|
typedef struct { ZSTDv08_allocFunction customAlloc; ZSTDv08_freeFunction customFree; void* opaque; } ZSTDv08_customMem;
|
||||||
|
|
||||||
|
|
||||||
|
/*--- Advanced Decompression functions ---*/
|
||||||
|
|
||||||
|
/*! ZSTDv08_estimateDCtxSize() :
|
||||||
|
* Gives the potential amount of memory allocated to create a ZSTDv08_DCtx */
|
||||||
|
ZSTDLIB_API size_t ZSTDv08_estimateDCtxSize(void);
|
||||||
|
|
||||||
|
/*! ZSTDv08_createDCtx_advanced() :
|
||||||
|
* Create a ZSTD decompression context using external alloc and free functions */
|
||||||
|
ZSTDLIB_API ZSTDv08_DCtx* ZSTDv08_createDCtx_advanced(ZSTDv08_customMem customMem);
|
||||||
|
|
||||||
|
/*! ZSTDv08_sizeofDCtx() :
|
||||||
|
* Gives the amount of memory used by a given ZSTDv08_DCtx */
|
||||||
|
ZSTDLIB_API size_t ZSTDv08_sizeofDCtx(const ZSTDv08_DCtx* dctx);
|
||||||
|
|
||||||
|
|
||||||
|
/* ******************************************************************
|
||||||
|
* Buffer-less streaming functions (synchronous mode)
|
||||||
|
********************************************************************/
|
||||||
|
/* This is an advanced API, giving full control over buffer management, for users which need direct control over memory.
|
||||||
|
* But it's also a complex one, with a lot of restrictions (documented below).
|
||||||
|
* For an easier streaming API, look into common/zbuff.h
|
||||||
|
* which removes all restrictions by allocating and managing its own internal buffer */
|
||||||
|
|
||||||
|
ZSTDLIB_API size_t ZSTDv08_decompressBegin(ZSTDv08_DCtx* dctx);
|
||||||
|
ZSTDLIB_API size_t ZSTDv08_decompressBegin_usingDict(ZSTDv08_DCtx* dctx, const void* dict, size_t dictSize);
|
||||||
|
ZSTDLIB_API void ZSTDv08_copyDCtx(ZSTDv08_DCtx* dctx, const ZSTDv08_DCtx* preparedDCtx);
|
||||||
|
|
||||||
|
ZSTDLIB_API size_t ZSTDv08_nextSrcSizeToDecompress(ZSTDv08_DCtx* dctx);
|
||||||
|
ZSTDLIB_API size_t ZSTDv08_decompressContinue(ZSTDv08_DCtx* dctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize);
|
||||||
|
|
||||||
|
typedef enum { ZSTDnit_frameHeader, ZSTDnit_blockHeader, ZSTDnit_block, ZSTDnit_lastBlock, ZSTDnit_checksum, ZSTDnit_skippableFrame } ZSTDv08_nextInputType_e;
|
||||||
|
ZSTDLIB_API ZSTDv08_nextInputType_e ZSTDv08_nextInputType(ZSTDv08_DCtx* dctx);
|
||||||
|
|
||||||
|
/*
|
||||||
|
Buffer-less streaming decompression (synchronous mode)
|
||||||
|
|
||||||
|
A ZSTDv08_DCtx object is required to track streaming operations.
|
||||||
|
Use ZSTDv08_createDCtx() / ZSTDv08_freeDCtx() to manage it.
|
||||||
|
A ZSTDv08_DCtx object can be re-used multiple times.
|
||||||
|
|
||||||
|
First typical operation is to retrieve frame parameters, using ZSTDv08_getFrameParams().
|
||||||
|
It fills a ZSTDv08_frameParams structure which provide important information to correctly decode the frame,
|
||||||
|
such as the minimum rolling buffer size to allocate to decompress data (`windowSize`),
|
||||||
|
and the dictionary ID used.
|
||||||
|
(Note : content size is optional, it may not be present. 0 means : content size unknown).
|
||||||
|
Note that these values could be wrong, either because of data malformation, or because an attacker is spoofing deliberate false information.
|
||||||
|
As a consequence, check that values remain within valid application range, especially `windowSize`, before allocation.
|
||||||
|
Each application can set its own limit, depending on local restrictions. For extended interoperability, it is recommended to support at least 8 MB.
|
||||||
|
Frame parameters are extracted from the beginning of the compressed frame.
|
||||||
|
Data fragment must be large enough to ensure successful decoding, typically `ZSTDv08_frameHeaderSize_max` bytes.
|
||||||
|
@result : 0 : successful decoding, the `ZSTDv08_frameParams` structure is correctly filled.
|
||||||
|
>0 : `srcSize` is too small, please provide at least @result bytes on next attempt.
|
||||||
|
errorCode, which can be tested using ZSTDv08_isError().
|
||||||
|
|
||||||
|
Start decompression, with ZSTDv08_decompressBegin() or ZSTDv08_decompressBegin_usingDict().
|
||||||
|
Alternatively, you can copy a prepared context, using ZSTDv08_copyDCtx().
|
||||||
|
|
||||||
|
Then use ZSTDv08_nextSrcSizeToDecompress() and ZSTDv08_decompressContinue() alternatively.
|
||||||
|
ZSTDv08_nextSrcSizeToDecompress() tells how many bytes to provide as 'srcSize' to ZSTDv08_decompressContinue().
|
||||||
|
ZSTDv08_decompressContinue() requires this _exact_ amount of bytes, or it will fail.
|
||||||
|
|
||||||
|
@result of ZSTDv08_decompressContinue() is the number of bytes regenerated within 'dst' (necessarily <= dstCapacity).
|
||||||
|
It can be zero, which is not an error; it just means ZSTDv08_decompressContinue() has decoded some metadata item.
|
||||||
|
It can also be an error code, which can be tested with ZSTDv08_isError().
|
||||||
|
|
||||||
|
ZSTDv08_decompressContinue() needs previous data blocks during decompression, up to `windowSize`.
|
||||||
|
They should preferably be located contiguously, prior to current block.
|
||||||
|
Alternatively, a round buffer of sufficient size is also possible. Sufficient size is determined by frame parameters.
|
||||||
|
ZSTDv08_decompressContinue() is very sensitive to contiguity,
|
||||||
|
if 2 blocks don't follow each other, make sure that either the compressor breaks contiguity at the same place,
|
||||||
|
or that previous contiguous segment is large enough to properly handle maximum back-reference.
|
||||||
|
|
||||||
|
A frame is fully decoded when ZSTDv08_nextSrcSizeToDecompress() returns zero.
|
||||||
|
Context can then be reset to start a new decompression.
|
||||||
|
|
||||||
|
Note : it's possible to know if next input to present is a header or a block, using ZSTDv08_nextInputType().
|
||||||
|
This information is not required to properly decode a frame.
|
||||||
|
|
||||||
|
== Special case : skippable frames ==
|
||||||
|
|
||||||
|
Skippable frames allow integration of user-defined data into a flow of concatenated frames.
|
||||||
|
Skippable frames will be ignored (skipped) by a decompressor. The format of skippable frames is as follows :
|
||||||
|
a) Skippable frame ID - 4 Bytes, Little endian format, any value from 0x184D2A50 to 0x184D2A5F
|
||||||
|
b) Frame Size - 4 Bytes, Little endian format, unsigned 32-bits
|
||||||
|
c) Frame Content - any content (User Data) of length equal to Frame Size
|
||||||
|
For skippable frames ZSTDv08_decompressContinue() always returns 0.
|
||||||
|
For skippable frames ZSTDv08_getFrameParams() returns fparamsPtr->windowLog==0 what means that a frame is skippable.
|
||||||
|
It also returns Frame Size as fparamsPtr->frameContentSize.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/* **************************************
|
||||||
|
* Block functions
|
||||||
|
****************************************/
|
||||||
|
/*! Block functions produce and decode raw zstd blocks, without frame metadata.
|
||||||
|
Frame metadata cost is typically ~18 bytes, which can be non-negligible for very small blocks (< 100 bytes).
|
||||||
|
User will have to take in charge required information to regenerate data, such as compressed and content sizes.
|
||||||
|
|
||||||
|
A few rules to respect :
|
||||||
|
- Compressing and decompressing require a context structure
|
||||||
|
+ Use ZSTDv08_createCCtx() and ZSTDv08_createDCtx()
|
||||||
|
- It is necessary to init context before starting
|
||||||
|
+ compression : ZSTDv08_compressBegin()
|
||||||
|
+ decompression : ZSTDv08_decompressBegin()
|
||||||
|
+ variants _usingDict() are also allowed
|
||||||
|
+ copyCCtx() and copyDCtx() work too
|
||||||
|
- Block size is limited, it must be <= ZSTDv08_getBlockSizeMax()
|
||||||
|
+ If you need to compress more, cut data into multiple blocks
|
||||||
|
+ Consider using the regular ZSTDv08_compress() instead, as frame metadata costs become negligible when source size is large.
|
||||||
|
- When a block is considered not compressible enough, ZSTDv08_compressBlock() result will be zero.
|
||||||
|
In which case, nothing is produced into `dst`.
|
||||||
|
+ User must test for such outcome and deal directly with uncompressed data
|
||||||
|
+ ZSTDv08_decompressBlock() doesn't accept uncompressed data as input !!!
|
||||||
|
+ In case of multiple successive blocks, decoder must be informed of uncompressed block existence to follow proper history.
|
||||||
|
Use ZSTDv08_insertBlock() in such a case.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define ZSTDv08_BLOCKSIZE_ABSOLUTEMAX (128 * 1024) /* define, for static allocation */
|
||||||
|
ZSTDLIB_API size_t ZSTDv08_decompressBlock(ZSTDv08_DCtx* dctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize);
|
||||||
|
ZSTDLIB_API size_t ZSTDv08_insertBlock(ZSTDv08_DCtx* dctx, const void* blockStart, size_t blockSize); /**< insert block into `dctx` history. Useful for uncompressed blocks */
|
||||||
|
|
||||||
|
|
||||||
|
#endif /* ZSTDv08_STATIC_LINKING_ONLY */
|
||||||
|
|
||||||
|
|
||||||
|
/* ====================================================================================
|
||||||
|
* The definitions in this section are considered experimental.
|
||||||
|
* They should never be used in association with a dynamic library, as they may change in the future.
|
||||||
|
* They are provided for advanced usages.
|
||||||
|
* Use them only in association with static linking.
|
||||||
|
* ==================================================================================== */
|
||||||
|
|
||||||
|
/*! ZBUFFv08_createDCtx_advanced() :
|
||||||
|
* Create a ZBUFF decompression context using external alloc and free functions */
|
||||||
|
ZSTDLIB_API ZBUFFv08_DCtx* ZBUFFv08_createDCtx_advanced(ZSTDv08_customMem customMem);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* ******************************************************************
|
||||||
|
mem.h
|
||||||
|
low-level memory access routines
|
||||||
|
Copyright (C) 2013-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 :
|
||||||
|
- FSE source repository : https://github.com/Cyan4973/FiniteStateEntropy
|
||||||
|
- Public forum : https://groups.google.com/forum/#!forum/lz4c
|
||||||
|
****************************************************************** */
|
||||||
|
#ifndef MEM_H_MODULE
|
||||||
|
#define MEM_H_MODULE
|
||||||
|
|
||||||
|
#if defined (__cplusplus)
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*-****************************************
|
||||||
|
* Compiler specifics
|
||||||
|
******************************************/
|
||||||
|
#if defined(_MSC_VER) /* Visual Studio */
|
||||||
|
# include <stdlib.h> /* _byteswap_ulong */
|
||||||
|
# include <intrin.h> /* _byteswap_* */
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
# define MEM_STATIC static __inline __attribute__((unused))
|
||||||
|
#elif defined (__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */)
|
||||||
|
# define MEM_STATIC static inline
|
||||||
|
#elif defined(_MSC_VER)
|
||||||
|
# define MEM_STATIC static __inline
|
||||||
|
#else
|
||||||
|
# define MEM_STATIC static /* this version may generate warnings for unused static functions; disable the relevant warning */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* code only tested on 32 and 64 bits systems */
|
||||||
|
#define MEM_STATIC_ASSERT(c) { enum { XXH_static_assert = 1/(int)(!!(c)) }; }
|
||||||
|
MEM_STATIC void MEM_check(void) { MEM_STATIC_ASSERT((sizeof(size_t)==4) || (sizeof(size_t)==8)); }
|
||||||
|
|
||||||
|
|
||||||
|
/*-**************************************************************
|
||||||
|
* Basic Types
|
||||||
|
*****************************************************************/
|
||||||
|
#if !defined (__VMS) && (defined (__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */) )
|
||||||
|
# include <stdint.h>
|
||||||
|
typedef uint8_t BYTE;
|
||||||
|
typedef uint16_t U16;
|
||||||
|
typedef int16_t S16;
|
||||||
|
typedef uint32_t U32;
|
||||||
|
typedef int32_t S32;
|
||||||
|
typedef uint64_t U64;
|
||||||
|
typedef int64_t S64;
|
||||||
|
#else
|
||||||
|
typedef unsigned char BYTE;
|
||||||
|
typedef unsigned short U16;
|
||||||
|
typedef signed short S16;
|
||||||
|
typedef unsigned int U32;
|
||||||
|
typedef signed int S32;
|
||||||
|
typedef unsigned long long U64;
|
||||||
|
typedef signed long long S64;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/*-**************************************************************
|
||||||
|
* Memory I/O
|
||||||
|
*****************************************************************/
|
||||||
|
/* MEM_FORCE_MEMORY_ACCESS :
|
||||||
|
* By default, access to unaligned memory is controlled by `memcpy()`, which is safe and portable.
|
||||||
|
* Unfortunately, on some target/compiler combinations, the generated assembly is sub-optimal.
|
||||||
|
* The below switch allow to select different access method for improved performance.
|
||||||
|
* Method 0 (default) : use `memcpy()`. Safe and portable.
|
||||||
|
* Method 1 : `__packed` statement. It depends on compiler extension (ie, not portable).
|
||||||
|
* This method is safe if your compiler supports it, and *generally* as fast or faster than `memcpy`.
|
||||||
|
* Method 2 : direct access. This method is portable but violate C standard.
|
||||||
|
* It can generate buggy code on targets depending on alignment.
|
||||||
|
* In some circumstances, it's the only known way to get the most performance (ie GCC + ARMv6)
|
||||||
|
* See http://fastcompression.blogspot.fr/2015/08/accessing-unaligned-memory.html for details.
|
||||||
|
* Prefer these methods in priority order (0 > 1 > 2)
|
||||||
|
*/
|
||||||
|
#ifndef MEM_FORCE_MEMORY_ACCESS /* can be defined externally, on command line for example */
|
||||||
|
# if defined(__GNUC__) && ( defined(__ARM_ARCH_6__) || defined(__ARM_ARCH_6J__) || defined(__ARM_ARCH_6K__) || defined(__ARM_ARCH_6Z__) || defined(__ARM_ARCH_6ZK__) || defined(__ARM_ARCH_6T2__) )
|
||||||
|
# define MEM_FORCE_MEMORY_ACCESS 2
|
||||||
|
# elif defined(__INTEL_COMPILER) || \
|
||||||
|
(defined(__GNUC__) && ( defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__) || defined(__ARM_ARCH_7R__) || defined(__ARM_ARCH_7M__) || defined(__ARM_ARCH_7S__) ))
|
||||||
|
# define MEM_FORCE_MEMORY_ACCESS 1
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
MEM_STATIC unsigned MEM_32bits(void) { return sizeof(size_t)==4; }
|
||||||
|
MEM_STATIC unsigned MEM_64bits(void) { return sizeof(size_t)==8; }
|
||||||
|
|
||||||
|
MEM_STATIC unsigned MEM_isLittleEndian(void)
|
||||||
|
{
|
||||||
|
const union { U32 u; BYTE c[4]; } one = { 1 }; /* don't use static : performance detrimental */
|
||||||
|
return one.c[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
#if defined(MEM_FORCE_MEMORY_ACCESS) && (MEM_FORCE_MEMORY_ACCESS==2)
|
||||||
|
|
||||||
|
/* violates C standard, by lying on structure alignment.
|
||||||
|
Only use if no other choice to achieve best performance on target platform */
|
||||||
|
MEM_STATIC U16 MEM_read16(const void* memPtr) { return *(const U16*) memPtr; }
|
||||||
|
MEM_STATIC U32 MEM_read32(const void* memPtr) { return *(const U32*) memPtr; }
|
||||||
|
MEM_STATIC U64 MEM_read64(const void* memPtr) { return *(const U64*) memPtr; }
|
||||||
|
MEM_STATIC U64 MEM_readST(const void* memPtr) { return *(const size_t*) memPtr; }
|
||||||
|
|
||||||
|
MEM_STATIC void MEM_write16(void* memPtr, U16 value) { *(U16*)memPtr = value; }
|
||||||
|
MEM_STATIC void MEM_write32(void* memPtr, U32 value) { *(U32*)memPtr = value; }
|
||||||
|
MEM_STATIC void MEM_write64(void* memPtr, U64 value) { *(U64*)memPtr = value; }
|
||||||
|
|
||||||
|
#elif defined(MEM_FORCE_MEMORY_ACCESS) && (MEM_FORCE_MEMORY_ACCESS==1)
|
||||||
|
|
||||||
|
/* __pack instructions are safer, but compiler specific, hence potentially problematic for some compilers */
|
||||||
|
/* currently only defined for gcc and icc */
|
||||||
|
typedef union { U16 u16; U32 u32; U64 u64; size_t st; } __attribute__((packed)) unalign;
|
||||||
|
|
||||||
|
MEM_STATIC U16 MEM_read16(const void* ptr) { return ((const unalign*)ptr)->u16; }
|
||||||
|
MEM_STATIC U32 MEM_read32(const void* ptr) { return ((const unalign*)ptr)->u32; }
|
||||||
|
MEM_STATIC U64 MEM_read64(const void* ptr) { return ((const unalign*)ptr)->u64; }
|
||||||
|
MEM_STATIC U64 MEM_readST(const void* ptr) { return ((const unalign*)ptr)->st; }
|
||||||
|
|
||||||
|
MEM_STATIC void MEM_write16(void* memPtr, U16 value) { ((unalign*)memPtr)->u16 = value; }
|
||||||
|
MEM_STATIC void MEM_write32(void* memPtr, U32 value) { ((unalign*)memPtr)->u32 = value; }
|
||||||
|
MEM_STATIC void MEM_write64(void* memPtr, U64 value) { ((unalign*)memPtr)->u64 = value; }
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
|
/* default method, safe and standard.
|
||||||
|
can sometimes prove slower */
|
||||||
|
|
||||||
|
MEM_STATIC U16 MEM_read16(const void* memPtr)
|
||||||
|
{
|
||||||
|
U16 val; memcpy(&val, memPtr, sizeof(val)); return val;
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC U32 MEM_read32(const void* memPtr)
|
||||||
|
{
|
||||||
|
U32 val; memcpy(&val, memPtr, sizeof(val)); return val;
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC U64 MEM_read64(const void* memPtr)
|
||||||
|
{
|
||||||
|
U64 val; memcpy(&val, memPtr, sizeof(val)); return val;
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC size_t MEM_readST(const void* memPtr)
|
||||||
|
{
|
||||||
|
size_t val; memcpy(&val, memPtr, sizeof(val)); return val;
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC void MEM_write16(void* memPtr, U16 value)
|
||||||
|
{
|
||||||
|
memcpy(memPtr, &value, sizeof(value));
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC void MEM_write32(void* memPtr, U32 value)
|
||||||
|
{
|
||||||
|
memcpy(memPtr, &value, sizeof(value));
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC void MEM_write64(void* memPtr, U64 value)
|
||||||
|
{
|
||||||
|
memcpy(memPtr, &value, sizeof(value));
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif /* MEM_FORCE_MEMORY_ACCESS */
|
||||||
|
|
||||||
|
MEM_STATIC U32 MEM_swap32(U32 in)
|
||||||
|
{
|
||||||
|
#if defined(_MSC_VER) /* Visual Studio */
|
||||||
|
return _byteswap_ulong(in);
|
||||||
|
#elif defined (__GNUC__)
|
||||||
|
return __builtin_bswap32(in);
|
||||||
|
#else
|
||||||
|
return ((in << 24) & 0xff000000 ) |
|
||||||
|
((in << 8) & 0x00ff0000 ) |
|
||||||
|
((in >> 8) & 0x0000ff00 ) |
|
||||||
|
((in >> 24) & 0x000000ff );
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC U64 MEM_swap64(U64 in)
|
||||||
|
{
|
||||||
|
#if defined(_MSC_VER) /* Visual Studio */
|
||||||
|
return _byteswap_uint64(in);
|
||||||
|
#elif defined (__GNUC__)
|
||||||
|
return __builtin_bswap64(in);
|
||||||
|
#else
|
||||||
|
return ((in << 56) & 0xff00000000000000ULL) |
|
||||||
|
((in << 40) & 0x00ff000000000000ULL) |
|
||||||
|
((in << 24) & 0x0000ff0000000000ULL) |
|
||||||
|
((in << 8) & 0x000000ff00000000ULL) |
|
||||||
|
((in >> 8) & 0x00000000ff000000ULL) |
|
||||||
|
((in >> 24) & 0x0000000000ff0000ULL) |
|
||||||
|
((in >> 40) & 0x000000000000ff00ULL) |
|
||||||
|
((in >> 56) & 0x00000000000000ffULL);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC size_t MEM_swapST(size_t in)
|
||||||
|
{
|
||||||
|
if (MEM_32bits())
|
||||||
|
return (size_t)MEM_swap32((U32)in);
|
||||||
|
else
|
||||||
|
return (size_t)MEM_swap64((U64)in);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*=== Little endian r/w ===*/
|
||||||
|
|
||||||
|
MEM_STATIC U16 MEM_readLE16(const void* memPtr)
|
||||||
|
{
|
||||||
|
if (MEM_isLittleEndian())
|
||||||
|
return MEM_read16(memPtr);
|
||||||
|
else {
|
||||||
|
const BYTE* p = (const BYTE*)memPtr;
|
||||||
|
return (U16)(p[0] + (p[1]<<8));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC void MEM_writeLE16(void* memPtr, U16 val)
|
||||||
|
{
|
||||||
|
if (MEM_isLittleEndian()) {
|
||||||
|
MEM_write16(memPtr, val);
|
||||||
|
} else {
|
||||||
|
BYTE* p = (BYTE*)memPtr;
|
||||||
|
p[0] = (BYTE)val;
|
||||||
|
p[1] = (BYTE)(val>>8);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC U32 MEM_readLE24(const void* memPtr)
|
||||||
|
{
|
||||||
|
return MEM_readLE16(memPtr) + (((const BYTE*)memPtr)[2] << 16);
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC void MEM_writeLE24(void* memPtr, U32 val)
|
||||||
|
{
|
||||||
|
MEM_writeLE16(memPtr, (U16)val);
|
||||||
|
((BYTE*)memPtr)[2] = (BYTE)(val>>16);
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC U32 MEM_readLE32(const void* memPtr)
|
||||||
|
{
|
||||||
|
if (MEM_isLittleEndian())
|
||||||
|
return MEM_read32(memPtr);
|
||||||
|
else
|
||||||
|
return MEM_swap32(MEM_read32(memPtr));
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC void MEM_writeLE32(void* memPtr, U32 val32)
|
||||||
|
{
|
||||||
|
if (MEM_isLittleEndian())
|
||||||
|
MEM_write32(memPtr, val32);
|
||||||
|
else
|
||||||
|
MEM_write32(memPtr, MEM_swap32(val32));
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC U64 MEM_readLE64(const void* memPtr)
|
||||||
|
{
|
||||||
|
if (MEM_isLittleEndian())
|
||||||
|
return MEM_read64(memPtr);
|
||||||
|
else
|
||||||
|
return MEM_swap64(MEM_read64(memPtr));
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC void MEM_writeLE64(void* memPtr, U64 val64)
|
||||||
|
{
|
||||||
|
if (MEM_isLittleEndian())
|
||||||
|
MEM_write64(memPtr, val64);
|
||||||
|
else
|
||||||
|
MEM_write64(memPtr, MEM_swap64(val64));
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC size_t MEM_readLEST(const void* memPtr)
|
||||||
|
{
|
||||||
|
if (MEM_32bits())
|
||||||
|
return (size_t)MEM_readLE32(memPtr);
|
||||||
|
else
|
||||||
|
return (size_t)MEM_readLE64(memPtr);
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC void MEM_writeLEST(void* memPtr, size_t val)
|
||||||
|
{
|
||||||
|
if (MEM_32bits())
|
||||||
|
MEM_writeLE32(memPtr, (U32)val);
|
||||||
|
else
|
||||||
|
MEM_writeLE64(memPtr, (U64)val);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*=== Big endian r/w ===*/
|
||||||
|
|
||||||
|
MEM_STATIC U32 MEM_readBE32(const void* memPtr)
|
||||||
|
{
|
||||||
|
if (MEM_isLittleEndian())
|
||||||
|
return MEM_swap32(MEM_read32(memPtr));
|
||||||
|
else
|
||||||
|
return MEM_read32(memPtr);
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC void MEM_writeBE32(void* memPtr, U32 val32)
|
||||||
|
{
|
||||||
|
if (MEM_isLittleEndian())
|
||||||
|
MEM_write32(memPtr, MEM_swap32(val32));
|
||||||
|
else
|
||||||
|
MEM_write32(memPtr, val32);
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC U64 MEM_readBE64(const void* memPtr)
|
||||||
|
{
|
||||||
|
if (MEM_isLittleEndian())
|
||||||
|
return MEM_swap64(MEM_read64(memPtr));
|
||||||
|
else
|
||||||
|
return MEM_read64(memPtr);
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC void MEM_writeBE64(void* memPtr, U64 val64)
|
||||||
|
{
|
||||||
|
if (MEM_isLittleEndian())
|
||||||
|
MEM_write64(memPtr, MEM_swap64(val64));
|
||||||
|
else
|
||||||
|
MEM_write64(memPtr, val64);
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC size_t MEM_readBEST(const void* memPtr)
|
||||||
|
{
|
||||||
|
if (MEM_32bits())
|
||||||
|
return (size_t)MEM_readBE32(memPtr);
|
||||||
|
else
|
||||||
|
return (size_t)MEM_readBE64(memPtr);
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC void MEM_writeBEST(void* memPtr, size_t val)
|
||||||
|
{
|
||||||
|
if (MEM_32bits())
|
||||||
|
MEM_writeBE32(memPtr, (U32)val);
|
||||||
|
else
|
||||||
|
MEM_writeBE64(memPtr, (U64)val);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* function safe only for comparisons */
|
||||||
|
MEM_STATIC U32 MEM_readMINMATCH(const void* memPtr, U32 length)
|
||||||
|
{
|
||||||
|
switch (length)
|
||||||
|
{
|
||||||
|
default :
|
||||||
|
case 4 : return MEM_read32(memPtr);
|
||||||
|
case 3 : if (MEM_isLittleEndian())
|
||||||
|
return MEM_read32(memPtr)<<8;
|
||||||
|
else
|
||||||
|
return MEM_read32(memPtr)>>8;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#if defined (__cplusplus)
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* MEM_H_MODULE */
|
||||||
|
/* ******************************************************************
|
||||||
|
Error codes list
|
||||||
|
Copyright (C) 2016, 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 :
|
||||||
|
- Homepage : http://www.zstd.net
|
||||||
|
****************************************************************** */
|
||||||
|
#ifndef ERROR_PUBLIC_H_MODULE
|
||||||
|
#define ERROR_PUBLIC_H_MODULE
|
||||||
|
|
||||||
|
#if defined (__cplusplus)
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* ****************************************
|
||||||
|
* error codes list
|
||||||
|
******************************************/
|
||||||
|
typedef enum {
|
||||||
|
ZSTDv08_error_no_error,
|
||||||
|
ZSTDv08_error_GENERIC,
|
||||||
|
ZSTDv08_error_prefix_unknown,
|
||||||
|
ZSTDv08_error_frameParameter_unsupported,
|
||||||
|
ZSTDv08_error_frameParameter_unsupportedBy32bits,
|
||||||
|
ZSTDv08_error_compressionParameter_unsupported,
|
||||||
|
ZSTDv08_error_init_missing,
|
||||||
|
ZSTDv08_error_memory_allocation,
|
||||||
|
ZSTDv08_error_stage_wrong,
|
||||||
|
ZSTDv08_error_dstSize_tooSmall,
|
||||||
|
ZSTDv08_error_srcSize_wrong,
|
||||||
|
ZSTDv08_error_corruption_detected,
|
||||||
|
ZSTDv08_error_checksum_wrong,
|
||||||
|
ZSTDv08_error_tableLog_tooLarge,
|
||||||
|
ZSTDv08_error_maxSymbolValue_tooLarge,
|
||||||
|
ZSTDv08_error_maxSymbolValue_tooSmall,
|
||||||
|
ZSTDv08_error_dictionary_corrupted,
|
||||||
|
ZSTDv08_error_dictionary_wrong,
|
||||||
|
ZSTDv08_error_maxCode
|
||||||
|
} ZSTDv08_ErrorCode;
|
||||||
|
|
||||||
|
/*! ZSTDv08_getErrorCode() :
|
||||||
|
convert a `size_t` function result into a `ZSTDv08_ErrorCode` enum type,
|
||||||
|
which can be used to compare directly with enum list published into "error_public.h" */
|
||||||
|
ZSTDv08_ErrorCode ZSTDv08_getErrorCode(size_t functionResult);
|
||||||
|
const char* ZSTDv08_getErrorString(ZSTDv08_ErrorCode code);
|
||||||
|
|
||||||
|
|
||||||
|
#if defined (__cplusplus)
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* ERROR_PUBLIC_H_MODULE */
|
||||||
|
/* ******************************************************************
|
||||||
|
Error codes and messages
|
||||||
|
Copyright (C) 2013-2016, 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 :
|
||||||
|
- Homepage : http://www.zstd.net
|
||||||
|
****************************************************************** */
|
||||||
|
/* Note : this module is expected to remain private, do not expose it */
|
||||||
|
|
||||||
|
#ifndef ERROR_H_MODULE
|
||||||
|
#define ERROR_H_MODULE
|
||||||
|
|
||||||
|
#if defined (__cplusplus)
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* ****************************************
|
||||||
|
* Compiler-specific
|
||||||
|
******************************************/
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
# define ERR_STATIC static __attribute__((unused))
|
||||||
|
#elif defined (__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */)
|
||||||
|
# define ERR_STATIC static inline
|
||||||
|
#elif defined(_MSC_VER)
|
||||||
|
# define ERR_STATIC static __inline
|
||||||
|
#else
|
||||||
|
# define ERR_STATIC static /* this version may generate warnings for unused static functions; disable the relevant warning */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/*-****************************************
|
||||||
|
* Customization (error_public.h)
|
||||||
|
******************************************/
|
||||||
|
typedef ZSTDv08_ErrorCode ERR_enum;
|
||||||
|
#define PREFIX(name) ZSTDv08_error_##name
|
||||||
|
|
||||||
|
|
||||||
|
/*-****************************************
|
||||||
|
* Error codes handling
|
||||||
|
******************************************/
|
||||||
|
#ifdef ERROR
|
||||||
|
# undef ERROR /* reported already defined on VS 2015 (Rich Geldreich) */
|
||||||
|
#endif
|
||||||
|
#define ERROR(name) ((size_t)-PREFIX(name))
|
||||||
|
|
||||||
|
ERR_STATIC unsigned ERR_isError(size_t code) { return (code > ERROR(maxCode)); }
|
||||||
|
|
||||||
|
ERR_STATIC ERR_enum ERR_getErrorCode(size_t code) { if (!ERR_isError(code)) return (ERR_enum)0; return (ERR_enum) (0-code); }
|
||||||
|
|
||||||
|
|
||||||
|
/*-****************************************
|
||||||
|
* Error Strings
|
||||||
|
******************************************/
|
||||||
|
|
||||||
|
ERR_STATIC const char* ERR_getErrorString(ERR_enum code)
|
||||||
|
{
|
||||||
|
static const char* notErrorCode = "Unspecified error code";
|
||||||
|
switch( code )
|
||||||
|
{
|
||||||
|
case PREFIX(no_error): return "No error detected";
|
||||||
|
case PREFIX(GENERIC): return "Error (generic)";
|
||||||
|
case PREFIX(prefix_unknown): return "Unknown frame descriptor";
|
||||||
|
case PREFIX(frameParameter_unsupported): return "Unsupported frame parameter";
|
||||||
|
case PREFIX(frameParameter_unsupportedBy32bits): return "Frame parameter unsupported in 32-bits mode";
|
||||||
|
case PREFIX(compressionParameter_unsupported): return "Compression parameter is out of bound";
|
||||||
|
case PREFIX(init_missing): return "Context should be init first";
|
||||||
|
case PREFIX(memory_allocation): return "Allocation error : not enough memory";
|
||||||
|
case PREFIX(stage_wrong): return "Operation not authorized at current processing stage";
|
||||||
|
case PREFIX(dstSize_tooSmall): return "Destination buffer is too small";
|
||||||
|
case PREFIX(srcSize_wrong): return "Src size incorrect";
|
||||||
|
case PREFIX(corruption_detected): return "Corrupted block detected";
|
||||||
|
case PREFIX(checksum_wrong): return "Restored data doesn't match checksum";
|
||||||
|
case PREFIX(tableLog_tooLarge): return "tableLog requires too much memory : unsupported";
|
||||||
|
case PREFIX(maxSymbolValue_tooLarge): return "Unsupported max Symbol Value : too large";
|
||||||
|
case PREFIX(maxSymbolValue_tooSmall): return "Specified maxSymbolValue is too small";
|
||||||
|
case PREFIX(dictionary_corrupted): return "Dictionary is corrupted";
|
||||||
|
case PREFIX(dictionary_wrong): return "Dictionary mismatch";
|
||||||
|
case PREFIX(maxCode):
|
||||||
|
default: return notErrorCode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ERR_STATIC const char* ERR_getErrorName(size_t code)
|
||||||
|
{
|
||||||
|
return ERR_getErrorString(ERR_getErrorCode(code));
|
||||||
|
}
|
||||||
|
|
||||||
|
#if defined (__cplusplus)
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* ERROR_H_MODULE */
|
||||||
|
/* ******************************************************************
|
||||||
|
bitstream
|
||||||
|
Part of FSE library
|
||||||
|
header file (to include)
|
||||||
|
Copyright (C) 2013-2016, 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 :
|
||||||
|
- Source repository : https://github.com/Cyan4973/FiniteStateEntropy
|
||||||
|
****************************************************************** */
|
||||||
|
#ifndef BITSTREAM_H_MODULE
|
||||||
|
#define BITSTREAM_H_MODULE
|
||||||
|
|
||||||
|
#if defined (__cplusplus)
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This API consists of small unitary functions, which must be inlined for best performance.
|
||||||
|
* Since link-time-optimization is not available for all compilers,
|
||||||
|
* these functions are defined into a .h to be included.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/*=========================================
|
||||||
|
* Target specific
|
||||||
|
=========================================*/
|
||||||
|
#if defined(__BMI__) && defined(__GNUC__)
|
||||||
|
# include <immintrin.h> /* support for bextr (experimental) */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/*-********************************************
|
||||||
|
* bitStream decoding API (read backward)
|
||||||
|
**********************************************/
|
||||||
|
typedef struct
|
||||||
|
{
|
||||||
|
size_t bitContainer;
|
||||||
|
unsigned bitsConsumed;
|
||||||
|
const char* ptr;
|
||||||
|
const char* start;
|
||||||
|
} BIT_DStream_t;
|
||||||
|
|
||||||
|
typedef enum { BIT_DStream_unfinished = 0,
|
||||||
|
BIT_DStream_endOfBuffer = 1,
|
||||||
|
BIT_DStream_completed = 2,
|
||||||
|
BIT_DStream_overflow = 3 } BIT_DStream_status; /* result of BIT_reloadDStream() */
|
||||||
|
/* 1,2,4,8 would be better for bitmap combinations, but slows down performance a bit ... :( */
|
||||||
|
|
||||||
|
MEM_STATIC size_t BIT_initDStream(BIT_DStream_t* bitD, const void* srcBuffer, size_t srcSize);
|
||||||
|
MEM_STATIC size_t BIT_readBits(BIT_DStream_t* bitD, unsigned nbBits);
|
||||||
|
MEM_STATIC BIT_DStream_status BIT_reloadDStream(BIT_DStream_t* bitD);
|
||||||
|
MEM_STATIC unsigned BIT_endOfDStream(const BIT_DStream_t* bitD);
|
||||||
|
|
||||||
|
|
||||||
|
/* Start by invoking BIT_initDStream().
|
||||||
|
* A chunk of the bitStream is then stored into a local register.
|
||||||
|
* Local register size is 64-bits on 64-bits systems, 32-bits on 32-bits systems (size_t).
|
||||||
|
* You can then retrieve bitFields stored into the local register, **in reverse order**.
|
||||||
|
* Local register is explicitly reloaded from memory by the BIT_reloadDStream() method.
|
||||||
|
* A reload guarantee a minimum of ((8*sizeof(bitD->bitContainer))-7) bits when its result is BIT_DStream_unfinished.
|
||||||
|
* Otherwise, it can be less than that, so proceed accordingly.
|
||||||
|
* Checking if DStream has reached its end can be performed with BIT_endOfDStream().
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/*-****************************************
|
||||||
|
* unsafe API
|
||||||
|
******************************************/
|
||||||
|
MEM_STATIC size_t BIT_readBitsFast(BIT_DStream_t* bitD, unsigned nbBits);
|
||||||
|
/* faster, but works only if nbBits >= 1 */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*-**************************************************************
|
||||||
|
* Internal functions
|
||||||
|
****************************************************************/
|
||||||
|
MEM_STATIC unsigned BIT_highbit32 (register U32 val)
|
||||||
|
{
|
||||||
|
# if defined(_MSC_VER) /* Visual */
|
||||||
|
unsigned long r=0;
|
||||||
|
_BitScanReverse ( &r, val );
|
||||||
|
return (unsigned) r;
|
||||||
|
# elif defined(__GNUC__) && (__GNUC__ >= 3) /* Use GCC Intrinsic */
|
||||||
|
return 31 - __builtin_clz (val);
|
||||||
|
# else /* Software version */
|
||||||
|
static const unsigned DeBruijnClz[32] = { 0, 9, 1, 10, 13, 21, 2, 29, 11, 14, 16, 18, 22, 25, 3, 30, 8, 12, 20, 28, 15, 17, 24, 7, 19, 27, 23, 6, 26, 5, 4, 31 };
|
||||||
|
U32 v = val;
|
||||||
|
v |= v >> 1;
|
||||||
|
v |= v >> 2;
|
||||||
|
v |= v >> 4;
|
||||||
|
v |= v >> 8;
|
||||||
|
v |= v >> 16;
|
||||||
|
return DeBruijnClz[ (U32) (v * 0x07C4ACDDU) >> 27];
|
||||||
|
# endif
|
||||||
|
}
|
||||||
|
|
||||||
|
/*===== Local Constants =====*/
|
||||||
|
static const unsigned BIT_mask[] = { 0, 1, 3, 7, 0xF, 0x1F, 0x3F, 0x7F, 0xFF, 0x1FF, 0x3FF, 0x7FF, 0xFFF, 0x1FFF, 0x3FFF, 0x7FFF, 0xFFFF, 0x1FFFF, 0x3FFFF, 0x7FFFF, 0xFFFFF, 0x1FFFFF, 0x3FFFFF, 0x7FFFFF, 0xFFFFFF, 0x1FFFFFF, 0x3FFFFFF }; /* up to 26 bits */
|
||||||
|
|
||||||
|
|
||||||
|
/*-********************************************************
|
||||||
|
* bitStream decoding
|
||||||
|
**********************************************************/
|
||||||
|
/*! BIT_initDStream() :
|
||||||
|
* Initialize a BIT_DStream_t.
|
||||||
|
* `bitD` : a pointer to an already allocated BIT_DStream_t structure.
|
||||||
|
* `srcSize` must be the *exact* size of the bitStream, in bytes.
|
||||||
|
* @return : size of stream (== srcSize) or an errorCode if a problem is detected
|
||||||
|
*/
|
||||||
|
MEM_STATIC size_t BIT_initDStream(BIT_DStream_t* bitD, const void* srcBuffer, size_t srcSize)
|
||||||
|
{
|
||||||
|
if (srcSize < 1) { memset(bitD, 0, sizeof(*bitD)); return ERROR(srcSize_wrong); }
|
||||||
|
|
||||||
|
if (srcSize >= sizeof(bitD->bitContainer)) { /* normal case */
|
||||||
|
bitD->start = (const char*)srcBuffer;
|
||||||
|
bitD->ptr = (const char*)srcBuffer + srcSize - sizeof(bitD->bitContainer);
|
||||||
|
bitD->bitContainer = MEM_readLEST(bitD->ptr);
|
||||||
|
{ BYTE const lastByte = ((const BYTE*)srcBuffer)[srcSize-1];
|
||||||
|
bitD->bitsConsumed = lastByte ? 8 - BIT_highbit32(lastByte) : 0;
|
||||||
|
if (lastByte == 0) return ERROR(GENERIC); /* endMark not present */ }
|
||||||
|
} else {
|
||||||
|
bitD->start = (const char*)srcBuffer;
|
||||||
|
bitD->ptr = bitD->start;
|
||||||
|
bitD->bitContainer = *(const BYTE*)(bitD->start);
|
||||||
|
switch(srcSize)
|
||||||
|
{
|
||||||
|
case 7: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[6]) << (sizeof(bitD->bitContainer)*8 - 16);
|
||||||
|
case 6: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[5]) << (sizeof(bitD->bitContainer)*8 - 24);
|
||||||
|
case 5: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[4]) << (sizeof(bitD->bitContainer)*8 - 32);
|
||||||
|
case 4: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[3]) << 24;
|
||||||
|
case 3: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[2]) << 16;
|
||||||
|
case 2: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[1]) << 8;
|
||||||
|
default:;
|
||||||
|
}
|
||||||
|
{ BYTE const lastByte = ((const BYTE*)srcBuffer)[srcSize-1];
|
||||||
|
bitD->bitsConsumed = lastByte ? 8 - BIT_highbit32(lastByte) : 0;
|
||||||
|
if (lastByte == 0) return ERROR(GENERIC); /* endMark not present */ }
|
||||||
|
bitD->bitsConsumed += (U32)(sizeof(bitD->bitContainer) - srcSize)*8;
|
||||||
|
}
|
||||||
|
|
||||||
|
return srcSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC size_t BIT_getUpperBits(size_t bitContainer, U32 const start)
|
||||||
|
{
|
||||||
|
return bitContainer >> start;
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC size_t BIT_getMiddleBits(size_t bitContainer, U32 const start, U32 const nbBits)
|
||||||
|
{
|
||||||
|
#if defined(__BMI__) && defined(__GNUC__) /* experimental */
|
||||||
|
# if defined(__x86_64__)
|
||||||
|
if (sizeof(bitContainer)==8)
|
||||||
|
return _bextr_u64(bitContainer, start, nbBits);
|
||||||
|
else
|
||||||
|
# endif
|
||||||
|
return _bextr_u32(bitContainer, start, nbBits);
|
||||||
|
#else
|
||||||
|
return (bitContainer >> start) & BIT_mask[nbBits];
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC size_t BIT_getLowerBits(size_t bitContainer, U32 const nbBits)
|
||||||
|
{
|
||||||
|
return bitContainer & BIT_mask[nbBits];
|
||||||
|
}
|
||||||
|
|
||||||
|
/*! BIT_lookBits() :
|
||||||
|
* Provides next n bits from local register.
|
||||||
|
* local register is not modified.
|
||||||
|
* On 32-bits, maxNbBits==24.
|
||||||
|
* On 64-bits, maxNbBits==56.
|
||||||
|
* @return : value extracted
|
||||||
|
*/
|
||||||
|
MEM_STATIC size_t BIT_lookBits(const BIT_DStream_t* bitD, U32 nbBits)
|
||||||
|
{
|
||||||
|
#if defined(__BMI__) && defined(__GNUC__) /* experimental; fails if bitD->bitsConsumed + nbBits > sizeof(bitD->bitContainer)*8 */
|
||||||
|
return BIT_getMiddleBits(bitD->bitContainer, (sizeof(bitD->bitContainer)*8) - bitD->bitsConsumed - nbBits, nbBits);
|
||||||
|
#else
|
||||||
|
U32 const bitMask = sizeof(bitD->bitContainer)*8 - 1;
|
||||||
|
return ((bitD->bitContainer << (bitD->bitsConsumed & bitMask)) >> 1) >> ((bitMask-nbBits) & bitMask);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
/*! BIT_lookBitsFast() :
|
||||||
|
* unsafe version; only works only if nbBits >= 1 */
|
||||||
|
MEM_STATIC size_t BIT_lookBitsFast(const BIT_DStream_t* bitD, U32 nbBits)
|
||||||
|
{
|
||||||
|
U32 const bitMask = sizeof(bitD->bitContainer)*8 - 1;
|
||||||
|
return (bitD->bitContainer << (bitD->bitsConsumed & bitMask)) >> (((bitMask+1)-nbBits) & bitMask);
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC void BIT_skipBits(BIT_DStream_t* bitD, U32 nbBits)
|
||||||
|
{
|
||||||
|
bitD->bitsConsumed += nbBits;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*! BIT_readBits() :
|
||||||
|
* Read (consume) next n bits from local register and update.
|
||||||
|
* Pay attention to not read more than nbBits contained into local register.
|
||||||
|
* @return : extracted value.
|
||||||
|
*/
|
||||||
|
MEM_STATIC size_t BIT_readBits(BIT_DStream_t* bitD, U32 nbBits)
|
||||||
|
{
|
||||||
|
size_t const value = BIT_lookBits(bitD, nbBits);
|
||||||
|
BIT_skipBits(bitD, nbBits);
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*! BIT_readBitsFast() :
|
||||||
|
* unsafe version; only works only if nbBits >= 1 */
|
||||||
|
MEM_STATIC size_t BIT_readBitsFast(BIT_DStream_t* bitD, U32 nbBits)
|
||||||
|
{
|
||||||
|
size_t const value = BIT_lookBitsFast(bitD, nbBits);
|
||||||
|
BIT_skipBits(bitD, nbBits);
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*! BIT_reloadDStream() :
|
||||||
|
* Refill `BIT_DStream_t` from src buffer previously defined (see BIT_initDStream() ).
|
||||||
|
* This function is safe, it guarantees it will not read beyond src buffer.
|
||||||
|
* @return : status of `BIT_DStream_t` internal register.
|
||||||
|
if status == unfinished, internal register is filled with >= (sizeof(bitD->bitContainer)*8 - 7) bits */
|
||||||
|
MEM_STATIC BIT_DStream_status BIT_reloadDStream(BIT_DStream_t* bitD)
|
||||||
|
{
|
||||||
|
if (bitD->bitsConsumed > (sizeof(bitD->bitContainer)*8)) /* should not happen => corruption detected */
|
||||||
|
return BIT_DStream_overflow;
|
||||||
|
|
||||||
|
if (bitD->ptr >= bitD->start + sizeof(bitD->bitContainer)) {
|
||||||
|
bitD->ptr -= bitD->bitsConsumed >> 3;
|
||||||
|
bitD->bitsConsumed &= 7;
|
||||||
|
bitD->bitContainer = MEM_readLEST(bitD->ptr);
|
||||||
|
return BIT_DStream_unfinished;
|
||||||
|
}
|
||||||
|
if (bitD->ptr == bitD->start) {
|
||||||
|
if (bitD->bitsConsumed < sizeof(bitD->bitContainer)*8) return BIT_DStream_endOfBuffer;
|
||||||
|
return BIT_DStream_completed;
|
||||||
|
}
|
||||||
|
{ U32 nbBytes = bitD->bitsConsumed >> 3;
|
||||||
|
BIT_DStream_status result = BIT_DStream_unfinished;
|
||||||
|
if (bitD->ptr - nbBytes < bitD->start) {
|
||||||
|
nbBytes = (U32)(bitD->ptr - bitD->start); /* ptr > start */
|
||||||
|
result = BIT_DStream_endOfBuffer;
|
||||||
|
}
|
||||||
|
bitD->ptr -= nbBytes;
|
||||||
|
bitD->bitsConsumed -= nbBytes*8;
|
||||||
|
bitD->bitContainer = MEM_readLEST(bitD->ptr); /* reminder : srcSize > sizeof(bitD) */
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*! BIT_endOfDStream() :
|
||||||
|
* @return Tells if DStream has exactly reached its end (all bits consumed).
|
||||||
|
*/
|
||||||
|
MEM_STATIC unsigned BIT_endOfDStream(const BIT_DStream_t* DStream)
|
||||||
|
{
|
||||||
|
return ((DStream->ptr == DStream->start) && (DStream->bitsConsumed == sizeof(DStream->bitContainer)*8));
|
||||||
|
}
|
||||||
|
|
||||||
|
#if defined (__cplusplus)
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* BITSTREAM_H_MODULE */
|
||||||
|
/* ******************************************************************
|
||||||
|
FSE : Finite State Entropy codec
|
||||||
|
Public Prototypes declaration
|
||||||
|
Copyright (C) 2013-2016, 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 :
|
||||||
|
- Source repository : https://github.com/Cyan4973/FiniteStateEntropy
|
||||||
|
****************************************************************** */
|
||||||
|
#ifndef FSEv08_H
|
||||||
|
#define FSEv08_H
|
||||||
|
|
||||||
|
#if defined (__cplusplus)
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*-****************************************
|
||||||
|
* FSE simple functions
|
||||||
|
******************************************/
|
||||||
|
/*! FSEv08_decompress():
|
||||||
|
Decompress FSE data from buffer 'cSrc', of size 'cSrcSize',
|
||||||
|
into already allocated destination buffer 'dst', of size 'dstCapacity'.
|
||||||
|
@return : size of regenerated data (<= maxDstSize),
|
||||||
|
or an error code, which can be tested using FSEv08_isError() .
|
||||||
|
|
||||||
|
** Important ** : FSEv08_decompress() does not decompress non-compressible nor RLE data !!!
|
||||||
|
Why ? : making this distinction requires a header.
|
||||||
|
Header management is intentionally delegated to the user layer, which can better manage special cases.
|
||||||
|
*/
|
||||||
|
size_t FSEv08_decompress(void* dst, size_t dstCapacity,
|
||||||
|
const void* cSrc, size_t cSrcSize);
|
||||||
|
|
||||||
|
|
||||||
|
/*-*****************************************
|
||||||
|
* Tool functions
|
||||||
|
******************************************/
|
||||||
|
/* Error Management */
|
||||||
|
unsigned FSEv08_isError(size_t code); /* tells if a return value is an error code */
|
||||||
|
const char* FSEv08_getErrorName(size_t code); /* provides error code string (useful for debugging) */
|
||||||
|
|
||||||
|
|
||||||
|
/*-*****************************************
|
||||||
|
* FSE detailed API
|
||||||
|
******************************************/
|
||||||
|
/*!
|
||||||
|
FSEv08_decompress() does the following:
|
||||||
|
1. read normalized counters with readNCount()
|
||||||
|
2. build decoding table 'DTable' from normalized counters
|
||||||
|
3. decode the data stream using decoding table 'DTable'
|
||||||
|
|
||||||
|
The following API allows targeting specific sub-functions for advanced tasks.
|
||||||
|
For example, it's possible to compress several blocks using the same 'CTable',
|
||||||
|
or to save and provide normalized distribution using external method.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/* *** DECOMPRESSION *** */
|
||||||
|
|
||||||
|
/*! FSEv08_readNCount():
|
||||||
|
Read compactly saved 'normalizedCounter' from 'rBuffer'.
|
||||||
|
@return : size read from 'rBuffer',
|
||||||
|
or an errorCode, which can be tested using FSEv08_isError().
|
||||||
|
maxSymbolValuePtr[0] and tableLogPtr[0] will also be updated with their respective values */
|
||||||
|
size_t FSEv08_readNCount (short* normalizedCounter, unsigned* maxSymbolValuePtr, unsigned* tableLogPtr, const void* rBuffer, size_t rBuffSize);
|
||||||
|
|
||||||
|
/*! Constructor and Destructor of FSEv08_DTable.
|
||||||
|
Note that its size depends on 'tableLog' */
|
||||||
|
typedef unsigned FSEv08_DTable; /* don't allocate that. It's just a way to be more restrictive than void* */
|
||||||
|
FSEv08_DTable* FSEv08_createDTable(unsigned tableLog);
|
||||||
|
void FSEv08_freeDTable(FSEv08_DTable* dt);
|
||||||
|
|
||||||
|
/*! FSEv08_buildDTable():
|
||||||
|
Builds 'dt', which must be already allocated, using FSEv08_createDTable().
|
||||||
|
return : 0, or an errorCode, which can be tested using FSEv08_isError() */
|
||||||
|
size_t FSEv08_buildDTable (FSEv08_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog);
|
||||||
|
|
||||||
|
/*! FSEv08_decompress_usingDTable():
|
||||||
|
Decompress compressed source `cSrc` of size `cSrcSize` using `dt`
|
||||||
|
into `dst` which must be already allocated.
|
||||||
|
@return : size of regenerated data (necessarily <= `dstCapacity`),
|
||||||
|
or an errorCode, which can be tested using FSEv08_isError() */
|
||||||
|
size_t FSEv08_decompress_usingDTable(void* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize, const FSEv08_DTable* dt);
|
||||||
|
|
||||||
|
/*!
|
||||||
|
Tutorial :
|
||||||
|
----------
|
||||||
|
(Note : these functions only decompress FSE-compressed blocks.
|
||||||
|
If block is uncompressed, use memcpy() instead
|
||||||
|
If block is a single repeated byte, use memset() instead )
|
||||||
|
|
||||||
|
The first step is to obtain the normalized frequencies of symbols.
|
||||||
|
This can be performed by FSEv08_readNCount() if it was saved using FSEv08_writeNCount().
|
||||||
|
'normalizedCounter' must be already allocated, and have at least 'maxSymbolValuePtr[0]+1' cells of signed short.
|
||||||
|
In practice, that means it's necessary to know 'maxSymbolValue' beforehand,
|
||||||
|
or size the table to handle worst case situations (typically 256).
|
||||||
|
FSEv08_readNCount() will provide 'tableLog' and 'maxSymbolValue'.
|
||||||
|
The result of FSEv08_readNCount() is the number of bytes read from 'rBuffer'.
|
||||||
|
Note that 'rBufferSize' must be at least 4 bytes, even if useful information is less than that.
|
||||||
|
If there is an error, the function will return an error code, which can be tested using FSEv08_isError().
|
||||||
|
|
||||||
|
The next step is to build the decompression tables 'FSEv08_DTable' from 'normalizedCounter'.
|
||||||
|
This is performed by the function FSEv08_buildDTable().
|
||||||
|
The space required by 'FSEv08_DTable' must be already allocated using FSEv08_createDTable().
|
||||||
|
If there is an error, the function will return an error code, which can be tested using FSEv08_isError().
|
||||||
|
|
||||||
|
`FSEv08_DTable` can then be used to decompress `cSrc`, with FSEv08_decompress_usingDTable().
|
||||||
|
`cSrcSize` must be strictly correct, otherwise decompression will fail.
|
||||||
|
FSEv08_decompress_usingDTable() result will tell how many bytes were regenerated (<=`dstCapacity`).
|
||||||
|
If there is an error, the function will return an error code, which can be tested using FSEv08_isError(). (ex: dst buffer too small)
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef FSEv08_STATIC_LINKING_ONLY
|
||||||
|
|
||||||
|
|
||||||
|
/* *****************************************
|
||||||
|
* Static allocation
|
||||||
|
*******************************************/
|
||||||
|
/* FSE buffer bounds */
|
||||||
|
#define FSEv08_NCOUNTBOUND 512
|
||||||
|
#define FSEv08_BLOCKBOUND(size) (size + (size>>7))
|
||||||
|
|
||||||
|
/* It is possible to statically allocate FSE CTable/DTable as a table of unsigned using below macros */
|
||||||
|
#define FSEv08_DTABLE_SIZE_U32(maxTableLog) (1 + (1<<maxTableLog))
|
||||||
|
|
||||||
|
|
||||||
|
/* *****************************************
|
||||||
|
* FSE advanced API
|
||||||
|
*******************************************/
|
||||||
|
size_t FSEv08_countFast(unsigned* count, unsigned* maxSymbolValuePtr, const void* src, size_t srcSize);
|
||||||
|
/**< same as FSEv08_count(), but blindly trusts that all byte values within src are <= *maxSymbolValuePtr */
|
||||||
|
|
||||||
|
unsigned FSEv08_optimalTableLog_internal(unsigned maxTableLog, size_t srcSize, unsigned maxSymbolValue, unsigned minus);
|
||||||
|
/**< same as FSEv08_optimalTableLog(), which used `minus==2` */
|
||||||
|
|
||||||
|
size_t FSEv08_buildDTable_raw (FSEv08_DTable* dt, unsigned nbBits);
|
||||||
|
/**< build a fake FSEv08_DTable, designed to read an uncompressed bitstream where each symbol uses nbBits */
|
||||||
|
|
||||||
|
size_t FSEv08_buildDTable_rle (FSEv08_DTable* dt, unsigned char symbolValue);
|
||||||
|
/**< build a fake FSEv08_DTable, designed to always generate the same symbolValue */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* *****************************************
|
||||||
|
* FSE symbol decompression API
|
||||||
|
*******************************************/
|
||||||
|
typedef struct
|
||||||
|
{
|
||||||
|
size_t state;
|
||||||
|
const void* table; /* precise table may vary, depending on U16 */
|
||||||
|
} FSEv08_DState_t;
|
||||||
|
|
||||||
|
|
||||||
|
static void FSEv08_initDState(FSEv08_DState_t* DStatePtr, BIT_DStream_t* bitD, const FSEv08_DTable* dt);
|
||||||
|
|
||||||
|
static unsigned char FSEv08_decodeSymbol(FSEv08_DState_t* DStatePtr, BIT_DStream_t* bitD);
|
||||||
|
|
||||||
|
static unsigned FSEv08_endOfDState(const FSEv08_DState_t* DStatePtr);
|
||||||
|
|
||||||
|
/**<
|
||||||
|
Let's now decompose FSEv08_decompress_usingDTable() into its unitary components.
|
||||||
|
You will decode FSE-encoded symbols from the bitStream,
|
||||||
|
and also any other bitFields you put in, **in reverse order**.
|
||||||
|
|
||||||
|
You will need a few variables to track your bitStream. They are :
|
||||||
|
|
||||||
|
BIT_DStream_t DStream; // Stream context
|
||||||
|
FSEv08_DState_t DState; // State context. Multiple ones are possible
|
||||||
|
FSEv08_DTable* DTablePtr; // Decoding table, provided by FSEv08_buildDTable()
|
||||||
|
|
||||||
|
The first thing to do is to init the bitStream.
|
||||||
|
errorCode = BIT_initDStream(&DStream, srcBuffer, srcSize);
|
||||||
|
|
||||||
|
You should then retrieve your initial state(s)
|
||||||
|
(in reverse flushing order if you have several ones) :
|
||||||
|
errorCode = FSEv08_initDState(&DState, &DStream, DTablePtr);
|
||||||
|
|
||||||
|
You can then decode your data, symbol after symbol.
|
||||||
|
For information the maximum number of bits read by FSEv08_decodeSymbol() is 'tableLog'.
|
||||||
|
Keep in mind that symbols are decoded in reverse order, like a LIFO stack (last in, first out).
|
||||||
|
unsigned char symbol = FSEv08_decodeSymbol(&DState, &DStream);
|
||||||
|
|
||||||
|
You can retrieve any bitfield you eventually stored into the bitStream (in reverse order)
|
||||||
|
Note : maximum allowed nbBits is 25, for 32-bits compatibility
|
||||||
|
size_t bitField = BIT_readBits(&DStream, nbBits);
|
||||||
|
|
||||||
|
All above operations only read from local register (which size depends on size_t).
|
||||||
|
Refueling the register from memory is manually performed by the reload method.
|
||||||
|
endSignal = FSEv08_reloadDStream(&DStream);
|
||||||
|
|
||||||
|
BIT_reloadDStream() result tells if there is still some more data to read from DStream.
|
||||||
|
BIT_DStream_unfinished : there is still some data left into the DStream.
|
||||||
|
BIT_DStream_endOfBuffer : Dstream reached end of buffer. Its container may no longer be completely filled.
|
||||||
|
BIT_DStream_completed : Dstream reached its exact end, corresponding in general to decompression completed.
|
||||||
|
BIT_DStream_tooFar : Dstream went too far. Decompression result is corrupted.
|
||||||
|
|
||||||
|
When reaching end of buffer (BIT_DStream_endOfBuffer), progress slowly, notably if you decode multiple symbols per loop,
|
||||||
|
to properly detect the exact end of stream.
|
||||||
|
After each decoded symbol, check if DStream is fully consumed using this simple test :
|
||||||
|
BIT_reloadDStream(&DStream) >= BIT_DStream_completed
|
||||||
|
|
||||||
|
When it's done, verify decompression is fully completed, by checking both DStream and the relevant states.
|
||||||
|
Checking if DStream has reached its end is performed by :
|
||||||
|
BIT_endOfDStream(&DStream);
|
||||||
|
Check also the states. There might be some symbols left there, if some high probability ones (>50%) are possible.
|
||||||
|
FSEv08_endOfDState(&DState);
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/* *****************************************
|
||||||
|
* FSE unsafe API
|
||||||
|
*******************************************/
|
||||||
|
static unsigned char FSEv08_decodeSymbolFast(FSEv08_DState_t* DStatePtr, BIT_DStream_t* bitD);
|
||||||
|
/* faster, but works only if nbBits is always >= 1 (otherwise, result will be corrupted) */
|
||||||
|
|
||||||
|
|
||||||
|
/* *****************************************
|
||||||
|
* Implementation of inlined functions
|
||||||
|
*******************************************/
|
||||||
|
/*<===== Decompression =====>*/
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
U16 tableLog;
|
||||||
|
U16 fastMode;
|
||||||
|
} FSEv08_DTableHeader; /* sizeof U32 */
|
||||||
|
|
||||||
|
typedef struct
|
||||||
|
{
|
||||||
|
unsigned short newState;
|
||||||
|
unsigned char symbol;
|
||||||
|
unsigned char nbBits;
|
||||||
|
} FSEv08_decode_t; /* size == U32 */
|
||||||
|
|
||||||
|
MEM_STATIC void FSEv08_initDState(FSEv08_DState_t* DStatePtr, BIT_DStream_t* bitD, const FSEv08_DTable* dt)
|
||||||
|
{
|
||||||
|
const void* ptr = dt;
|
||||||
|
const FSEv08_DTableHeader* const DTableH = (const FSEv08_DTableHeader*)ptr;
|
||||||
|
DStatePtr->state = BIT_readBits(bitD, DTableH->tableLog);
|
||||||
|
BIT_reloadDStream(bitD);
|
||||||
|
DStatePtr->table = dt + 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC BYTE FSEv08_peekSymbol(const FSEv08_DState_t* DStatePtr)
|
||||||
|
{
|
||||||
|
FSEv08_decode_t const DInfo = ((const FSEv08_decode_t*)(DStatePtr->table))[DStatePtr->state];
|
||||||
|
return DInfo.symbol;
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC void FSEv08_updateState(FSEv08_DState_t* DStatePtr, BIT_DStream_t* bitD)
|
||||||
|
{
|
||||||
|
FSEv08_decode_t const DInfo = ((const FSEv08_decode_t*)(DStatePtr->table))[DStatePtr->state];
|
||||||
|
U32 const nbBits = DInfo.nbBits;
|
||||||
|
size_t const lowBits = BIT_readBits(bitD, nbBits);
|
||||||
|
DStatePtr->state = DInfo.newState + lowBits;
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC BYTE FSEv08_decodeSymbol(FSEv08_DState_t* DStatePtr, BIT_DStream_t* bitD)
|
||||||
|
{
|
||||||
|
FSEv08_decode_t const DInfo = ((const FSEv08_decode_t*)(DStatePtr->table))[DStatePtr->state];
|
||||||
|
U32 const nbBits = DInfo.nbBits;
|
||||||
|
BYTE const symbol = DInfo.symbol;
|
||||||
|
size_t const lowBits = BIT_readBits(bitD, nbBits);
|
||||||
|
|
||||||
|
DStatePtr->state = DInfo.newState + lowBits;
|
||||||
|
return symbol;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*! FSEv08_decodeSymbolFast() :
|
||||||
|
unsafe, only works if no symbol has a probability > 50% */
|
||||||
|
MEM_STATIC BYTE FSEv08_decodeSymbolFast(FSEv08_DState_t* DStatePtr, BIT_DStream_t* bitD)
|
||||||
|
{
|
||||||
|
FSEv08_decode_t const DInfo = ((const FSEv08_decode_t*)(DStatePtr->table))[DStatePtr->state];
|
||||||
|
U32 const nbBits = DInfo.nbBits;
|
||||||
|
BYTE const symbol = DInfo.symbol;
|
||||||
|
size_t const lowBits = BIT_readBitsFast(bitD, nbBits);
|
||||||
|
|
||||||
|
DStatePtr->state = DInfo.newState + lowBits;
|
||||||
|
return symbol;
|
||||||
|
}
|
||||||
|
|
||||||
|
MEM_STATIC unsigned FSEv08_endOfDState(const FSEv08_DState_t* DStatePtr)
|
||||||
|
{
|
||||||
|
return DStatePtr->state == 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef FSEv08_COMMONDEFS_ONLY
|
||||||
|
|
||||||
|
/* **************************************************************
|
||||||
|
* Tuning parameters
|
||||||
|
****************************************************************/
|
||||||
|
/*!MEMORY_USAGE :
|
||||||
|
* Memory usage formula : N->2^N Bytes (examples : 10 -> 1KB; 12 -> 4KB ; 16 -> 64KB; 20 -> 1MB; etc.)
|
||||||
|
* Increasing memory usage improves compression ratio
|
||||||
|
* Reduced memory usage can improve speed, due to cache effect
|
||||||
|
* Recommended max value is 14, for 16KB, which nicely fits into Intel x86 L1 cache */
|
||||||
|
#define FSEv08_MAX_MEMORY_USAGE 14
|
||||||
|
#define FSEv08_DEFAULT_MEMORY_USAGE 13
|
||||||
|
|
||||||
|
/*!FSEv08_MAX_SYMBOL_VALUE :
|
||||||
|
* Maximum symbol value authorized.
|
||||||
|
* Required for proper stack allocation */
|
||||||
|
#define FSEv08_MAX_SYMBOL_VALUE 255
|
||||||
|
|
||||||
|
|
||||||
|
/* **************************************************************
|
||||||
|
* template functions type & suffix
|
||||||
|
****************************************************************/
|
||||||
|
#define FSEv08_FUNCTION_TYPE BYTE
|
||||||
|
#define FSEv08_FUNCTION_EXTENSION
|
||||||
|
#define FSEv08_DECODE_TYPE FSEv08_decode_t
|
||||||
|
|
||||||
|
|
||||||
|
#endif /* !FSEv08_COMMONDEFS_ONLY */
|
||||||
|
|
||||||
|
|
||||||
|
/* ***************************************************************
|
||||||
|
* Constants
|
||||||
|
*****************************************************************/
|
||||||
|
#define FSEv08_MAX_TABLELOG (FSEv08_MAX_MEMORY_USAGE-2)
|
||||||
|
#define FSEv08_MAX_TABLESIZE (1U<<FSEv08_MAX_TABLELOG)
|
||||||
|
#define FSEv08_MAXTABLESIZE_MASK (FSEv08_MAX_TABLESIZE-1)
|
||||||
|
#define FSEv08_DEFAULT_TABLELOG (FSEv08_DEFAULT_MEMORY_USAGE-2)
|
||||||
|
#define FSEv08_MIN_TABLELOG 5
|
||||||
|
|
||||||
|
#define FSEv08_TABLELOG_ABSOLUTE_MAX 15
|
||||||
|
#if FSEv08_MAX_TABLELOG > FSEv08_TABLELOG_ABSOLUTE_MAX
|
||||||
|
# error "FSEv08_MAX_TABLELOG > FSEv08_TABLELOG_ABSOLUTE_MAX is not supported"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define FSEv08_TABLESTEP(tableSize) ((tableSize>>1) + (tableSize>>3) + 3)
|
||||||
|
|
||||||
|
|
||||||
|
#endif /* FSEv08_STATIC_LINKING_ONLY */
|
||||||
|
|
||||||
|
|
||||||
|
#if defined (__cplusplus)
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* FSEv08_H */
|
||||||
|
/* ******************************************************************
|
||||||
|
Huffman coder, part of New Generation Entropy library
|
||||||
|
header file
|
||||||
|
Copyright (C) 2013-2016, 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 :
|
||||||
|
- Source repository : https://github.com/Cyan4973/FiniteStateEntropy
|
||||||
|
****************************************************************** */
|
||||||
|
#ifndef HUFv08_H_298734234
|
||||||
|
#define HUFv08_H_298734234
|
||||||
|
|
||||||
|
#if defined (__cplusplus)
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* *** simple functions *** */
|
||||||
|
/**
|
||||||
|
HUFv08_decompress() :
|
||||||
|
Decompress HUF data from buffer 'cSrc', of size 'cSrcSize',
|
||||||
|
into already allocated buffer 'dst', of minimum size 'dstSize'.
|
||||||
|
`dstSize` : **must** be the ***exact*** size of original (uncompressed) data.
|
||||||
|
Note : in contrast with FSE, HUFv08_decompress can regenerate
|
||||||
|
RLE (cSrcSize==1) and uncompressed (cSrcSize==dstSize) data,
|
||||||
|
because it knows size to regenerate.
|
||||||
|
@return : size of regenerated data (== dstSize),
|
||||||
|
or an error code, which can be tested using HUFv08_isError()
|
||||||
|
*/
|
||||||
|
size_t HUFv08_decompress(void* dst, size_t dstSize,
|
||||||
|
const void* cSrc, size_t cSrcSize);
|
||||||
|
|
||||||
|
|
||||||
|
/* ****************************************
|
||||||
|
* Tool functions
|
||||||
|
******************************************/
|
||||||
|
#define HUFv08_BLOCKSIZE_MAX (128 * 1024)
|
||||||
|
|
||||||
|
/* Error Management */
|
||||||
|
unsigned HUFv08_isError(size_t code); /**< tells if a return value is an error code */
|
||||||
|
const char* HUFv08_getErrorName(size_t code); /**< provides error code string (useful for debugging) */
|
||||||
|
|
||||||
|
|
||||||
|
/* *** Advanced function *** */
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef HUFv08_STATIC_LINKING_ONLY
|
||||||
|
|
||||||
|
|
||||||
|
/* *** Constants *** */
|
||||||
|
#define HUFv08_TABLELOG_ABSOLUTEMAX 16 /* absolute limit of HUFv08_MAX_TABLELOG. Beyond that value, code does not work */
|
||||||
|
#define HUFv08_TABLELOG_MAX 12 /* max configured tableLog (for static allocation); can be modified up to HUFv08_ABSOLUTEMAX_TABLELOG */
|
||||||
|
#define HUFv08_TABLELOG_DEFAULT 11 /* tableLog by default, when not specified */
|
||||||
|
#define HUFv08_SYMBOLVALUE_MAX 255
|
||||||
|
#if (HUFv08_TABLELOG_MAX > HUFv08_TABLELOG_ABSOLUTEMAX)
|
||||||
|
# error "HUFv08_TABLELOG_MAX is too large !"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* ****************************************
|
||||||
|
* Static allocation
|
||||||
|
******************************************/
|
||||||
|
/* HUF buffer bounds */
|
||||||
|
#define HUFv08_BLOCKBOUND(size) (size + (size>>8) + 8) /* only true if incompressible pre-filtered with fast heuristic */
|
||||||
|
|
||||||
|
/* static allocation of HUF's DTable */
|
||||||
|
typedef U32 HUFv08_DTable;
|
||||||
|
#define HUFv08_DTABLE_SIZE(maxTableLog) (1 + (1<<(maxTableLog)))
|
||||||
|
#define HUFv08_CREATE_STATIC_DTABLEX2(DTable, maxTableLog) \
|
||||||
|
HUFv08_DTable DTable[HUFv08_DTABLE_SIZE((maxTableLog)-1)] = { ((U32)((maxTableLog)-1)*0x1000001) }
|
||||||
|
#define HUFv08_CREATE_STATIC_DTABLEX4(DTable, maxTableLog) \
|
||||||
|
HUFv08_DTable DTable[HUFv08_DTABLE_SIZE(maxTableLog)] = { ((U32)(maxTableLog)*0x1000001) }
|
||||||
|
|
||||||
|
|
||||||
|
/* ****************************************
|
||||||
|
* Advanced decompression functions
|
||||||
|
******************************************/
|
||||||
|
size_t HUFv08_decompress4X2 (void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize); /**< single-symbol decoder */
|
||||||
|
size_t HUFv08_decompress4X4 (void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize); /**< double-symbols decoder */
|
||||||
|
|
||||||
|
size_t HUFv08_decompress4X_DCtx (HUFv08_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize); /**< decodes RLE and uncompressed */
|
||||||
|
size_t HUFv08_decompress4X_hufOnly(HUFv08_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize); /**< considers RLE and uncompressed as errors */
|
||||||
|
size_t HUFv08_decompress4X2_DCtx(HUFv08_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize); /**< single-symbol decoder */
|
||||||
|
size_t HUFv08_decompress4X4_DCtx(HUFv08_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize); /**< double-symbols decoder */
|
||||||
|
|
||||||
|
size_t HUFv08_decompress1X_DCtx (HUFv08_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize);
|
||||||
|
size_t HUFv08_decompress1X2_DCtx(HUFv08_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize); /**< single-symbol decoder */
|
||||||
|
size_t HUFv08_decompress1X4_DCtx(HUFv08_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize); /**< double-symbols decoder */
|
||||||
|
|
||||||
|
|
||||||
|
/* ****************************************
|
||||||
|
* HUF detailed API
|
||||||
|
******************************************/
|
||||||
|
/*
|
||||||
|
HUFv08_decompress() does the following:
|
||||||
|
1. select the decompression algorithm (X2, X4) based on pre-computed heuristics
|
||||||
|
2. build Huffman table from save, using HUFv08_readDTableXn()
|
||||||
|
3. decode 1 or 4 segments in parallel using HUFv08_decompressSXn_usingDTable
|
||||||
|
*/
|
||||||
|
|
||||||
|
/** HUFv08_selectDecoder() :
|
||||||
|
* Tells which decoder is likely to decode faster,
|
||||||
|
* based on a set of pre-determined metrics.
|
||||||
|
* @return : 0==HUFv08_decompress4X2, 1==HUFv08_decompress4X4 .
|
||||||
|
* Assumption : 0 < cSrcSize < dstSize <= 128 KB */
|
||||||
|
U32 HUFv08_selectDecoder (size_t dstSize, size_t cSrcSize);
|
||||||
|
|
||||||
|
size_t HUFv08_readDTableX2 (HUFv08_DTable* DTable, const void* src, size_t srcSize);
|
||||||
|
size_t HUFv08_readDTableX4 (HUFv08_DTable* DTable, const void* src, size_t srcSize);
|
||||||
|
|
||||||
|
size_t HUFv08_decompress4X_usingDTable(void* dst, size_t maxDstSize, const void* cSrc, size_t cSrcSize, const HUFv08_DTable* DTable);
|
||||||
|
size_t HUFv08_decompress4X2_usingDTable(void* dst, size_t maxDstSize, const void* cSrc, size_t cSrcSize, const HUFv08_DTable* DTable);
|
||||||
|
size_t HUFv08_decompress4X4_usingDTable(void* dst, size_t maxDstSize, const void* cSrc, size_t cSrcSize, const HUFv08_DTable* DTable);
|
||||||
|
|
||||||
|
|
||||||
|
/* single stream variants */
|
||||||
|
|
||||||
|
size_t HUFv08_decompress1X2 (void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize); /* single-symbol decoder */
|
||||||
|
size_t HUFv08_decompress1X4 (void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize); /* double-symbol decoder */
|
||||||
|
|
||||||
|
size_t HUFv08_decompress1X_usingDTable(void* dst, size_t maxDstSize, const void* cSrc, size_t cSrcSize, const HUFv08_DTable* DTable);
|
||||||
|
size_t HUFv08_decompress1X2_usingDTable(void* dst, size_t maxDstSize, const void* cSrc, size_t cSrcSize, const HUFv08_DTable* DTable);
|
||||||
|
size_t HUFv08_decompress1X4_usingDTable(void* dst, size_t maxDstSize, const void* cSrc, size_t cSrcSize, const HUFv08_DTable* DTable);
|
||||||
|
|
||||||
|
|
||||||
|
#endif /* HUFv08_STATIC_LINKING_ONLY */
|
||||||
|
|
||||||
|
|
||||||
|
#if defined (__cplusplus)
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* HUFv08_H_298734234 */
|
||||||
|
/*
|
||||||
|
Common functions of New Generation Entropy library
|
||||||
|
Copyright (C) 2016, 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 :
|
||||||
|
- FSE+HUF source repository : https://github.com/Cyan4973/FiniteStateEntropy
|
||||||
|
- Public forum : https://groups.google.com/forum/#!forum/lz4c
|
||||||
|
*************************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
/*-****************************************
|
||||||
|
* FSE Error Management
|
||||||
|
******************************************/
|
||||||
|
unsigned FSEv08_isError(size_t code) { return ERR_isError(code); }
|
||||||
|
|
||||||
|
const char* FSEv08_getErrorName(size_t code) { return ERR_getErrorName(code); }
|
||||||
|
|
||||||
|
|
||||||
|
/* **************************************************************
|
||||||
|
* HUF Error Management
|
||||||
|
****************************************************************/
|
||||||
|
unsigned HUFv08_isError(size_t code) { return ERR_isError(code); }
|
||||||
|
|
||||||
|
const char* HUFv08_getErrorName(size_t code) { return ERR_getErrorName(code); }
|
||||||
|
|
||||||
|
|
||||||
|
/*-**************************************************************
|
||||||
|
* FSE NCount encoding-decoding
|
||||||
|
****************************************************************/
|
||||||
|
static short FSEv08_abs(short a) { return (short)(a<0 ? -a : a); }
|
||||||
|
|
||||||
|
size_t FSEv08_readNCount (short* normalizedCounter, unsigned* maxSVPtr, unsigned* tableLogPtr,
|
||||||
|
const void* headerBuffer, size_t hbSize)
|
||||||
|
{
|
||||||
|
const BYTE* const istart = (const BYTE*) headerBuffer;
|
||||||
|
const BYTE* const iend = istart + hbSize;
|
||||||
|
const BYTE* ip = istart;
|
||||||
|
int nbBits;
|
||||||
|
int remaining;
|
||||||
|
int threshold;
|
||||||
|
U32 bitStream;
|
||||||
|
int bitCount;
|
||||||
|
unsigned charnum = 0;
|
||||||
|
int previous0 = 0;
|
||||||
|
|
||||||
|
if (hbSize < 4) return ERROR(srcSize_wrong);
|
||||||
|
bitStream = MEM_readLE32(ip);
|
||||||
|
nbBits = (bitStream & 0xF) + FSEv08_MIN_TABLELOG; /* extract tableLog */
|
||||||
|
if (nbBits > FSEv08_TABLELOG_ABSOLUTE_MAX) return ERROR(tableLog_tooLarge);
|
||||||
|
bitStream >>= 4;
|
||||||
|
bitCount = 4;
|
||||||
|
*tableLogPtr = nbBits;
|
||||||
|
remaining = (1<<nbBits)+1;
|
||||||
|
threshold = 1<<nbBits;
|
||||||
|
nbBits++;
|
||||||
|
|
||||||
|
while ((remaining>1) & (charnum<=*maxSVPtr)) {
|
||||||
|
if (previous0) {
|
||||||
|
unsigned n0 = charnum;
|
||||||
|
while ((bitStream & 0xFFFF) == 0xFFFF) {
|
||||||
|
n0 += 24;
|
||||||
|
if (ip < iend-5) {
|
||||||
|
ip += 2;
|
||||||
|
bitStream = MEM_readLE32(ip) >> bitCount;
|
||||||
|
} else {
|
||||||
|
bitStream >>= 16;
|
||||||
|
bitCount += 16;
|
||||||
|
} }
|
||||||
|
while ((bitStream & 3) == 3) {
|
||||||
|
n0 += 3;
|
||||||
|
bitStream >>= 2;
|
||||||
|
bitCount += 2;
|
||||||
|
}
|
||||||
|
n0 += bitStream & 3;
|
||||||
|
bitCount += 2;
|
||||||
|
if (n0 > *maxSVPtr) return ERROR(maxSymbolValue_tooSmall);
|
||||||
|
while (charnum < n0) normalizedCounter[charnum++] = 0;
|
||||||
|
if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) {
|
||||||
|
ip += bitCount>>3;
|
||||||
|
bitCount &= 7;
|
||||||
|
bitStream = MEM_readLE32(ip) >> bitCount;
|
||||||
|
} else {
|
||||||
|
bitStream >>= 2;
|
||||||
|
} }
|
||||||
|
{ short const max = (short)((2*threshold-1)-remaining);
|
||||||
|
short count;
|
||||||
|
|
||||||
|
if ((bitStream & (threshold-1)) < (U32)max) {
|
||||||
|
count = (short)(bitStream & (threshold-1));
|
||||||
|
bitCount += nbBits-1;
|
||||||
|
} else {
|
||||||
|
count = (short)(bitStream & (2*threshold-1));
|
||||||
|
if (count >= threshold) count -= max;
|
||||||
|
bitCount += nbBits;
|
||||||
|
}
|
||||||
|
|
||||||
|
count--; /* extra accuracy */
|
||||||
|
remaining -= FSEv08_abs(count);
|
||||||
|
normalizedCounter[charnum++] = count;
|
||||||
|
previous0 = !count;
|
||||||
|
while (remaining < threshold) {
|
||||||
|
nbBits--;
|
||||||
|
threshold >>= 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) {
|
||||||
|
ip += bitCount>>3;
|
||||||
|
bitCount &= 7;
|
||||||
|
} else {
|
||||||
|
bitCount -= (int)(8 * (iend - 4 - ip));
|
||||||
|
ip = iend - 4;
|
||||||
|
}
|
||||||
|
bitStream = MEM_readLE32(ip) >> (bitCount & 31);
|
||||||
|
} } /* while ((remaining>1) & (charnum<=*maxSVPtr)) */
|
||||||
|
if (remaining != 1) return ERROR(corruption_detected);
|
||||||
|
if (bitCount > 32) return ERROR(corruption_detected);
|
||||||
|
*maxSVPtr = charnum-1;
|
||||||
|
|
||||||
|
ip += (bitCount+7)>>3;
|
||||||
|
return ip-istart;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*! HUFv08_readStats() :
|
||||||
|
Read compact Huffman tree, saved by HUFv08_writeCTable().
|
||||||
|
`huffWeight` is destination buffer.
|
||||||
|
@return : size read from `src` , or an error Code .
|
||||||
|
Note : Needed by HUFv08_readCTable() and HUFv08_readDTableX?() .
|
||||||
|
*/
|
||||||
|
size_t HUFv08_readStats(BYTE* huffWeight, size_t hwSize, U32* rankStats,
|
||||||
|
U32* nbSymbolsPtr, U32* tableLogPtr,
|
||||||
|
const void* src, size_t srcSize)
|
||||||
|
{
|
||||||
|
U32 weightTotal;
|
||||||
|
const BYTE* ip = (const BYTE*) src;
|
||||||
|
size_t iSize = ip[0];
|
||||||
|
size_t oSize;
|
||||||
|
|
||||||
|
/* memset(huffWeight, 0, hwSize); *//* is not necessary, even though some analyzer complain ... */
|
||||||
|
|
||||||
|
if (iSize >= 128) { /* special header */
|
||||||
|
oSize = iSize - 127;
|
||||||
|
iSize = ((oSize+1)/2);
|
||||||
|
if (iSize+1 > srcSize) return ERROR(srcSize_wrong);
|
||||||
|
if (oSize >= hwSize) return ERROR(corruption_detected);
|
||||||
|
ip += 1;
|
||||||
|
{ U32 n;
|
||||||
|
for (n=0; n<oSize; n+=2) {
|
||||||
|
huffWeight[n] = ip[n/2] >> 4;
|
||||||
|
huffWeight[n+1] = ip[n/2] & 15;
|
||||||
|
} } }
|
||||||
|
else { /* header compressed with FSE (normal case) */
|
||||||
|
if (iSize+1 > srcSize) return ERROR(srcSize_wrong);
|
||||||
|
oSize = FSEv08_decompress(huffWeight, hwSize-1, ip+1, iSize); /* max (hwSize-1) values decoded, as last one is implied */
|
||||||
|
if (FSEv08_isError(oSize)) return oSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* collect weight stats */
|
||||||
|
memset(rankStats, 0, (HUFv08_TABLELOG_ABSOLUTEMAX + 1) * sizeof(U32));
|
||||||
|
weightTotal = 0;
|
||||||
|
{ U32 n; for (n=0; n<oSize; n++) {
|
||||||
|
if (huffWeight[n] >= HUFv08_TABLELOG_ABSOLUTEMAX) return ERROR(corruption_detected);
|
||||||
|
rankStats[huffWeight[n]]++;
|
||||||
|
weightTotal += (1 << huffWeight[n]) >> 1;
|
||||||
|
} }
|
||||||
|
|
||||||
|
/* get last non-null symbol weight (implied, total must be 2^n) */
|
||||||
|
{ U32 const tableLog = BIT_highbit32(weightTotal) + 1;
|
||||||
|
if (tableLog > HUFv08_TABLELOG_ABSOLUTEMAX) return ERROR(corruption_detected);
|
||||||
|
*tableLogPtr = tableLog;
|
||||||
|
/* determine last weight */
|
||||||
|
{ U32 const total = 1 << tableLog;
|
||||||
|
U32 const rest = total - weightTotal;
|
||||||
|
U32 const verif = 1 << BIT_highbit32(rest);
|
||||||
|
U32 const lastWeight = BIT_highbit32(rest) + 1;
|
||||||
|
if (verif != rest) return ERROR(corruption_detected); /* last value must be a clean power of 2 */
|
||||||
|
huffWeight[oSize] = (BYTE)lastWeight;
|
||||||
|
rankStats[lastWeight]++;
|
||||||
|
} }
|
||||||
|
|
||||||
|
/* check tree construction validity */
|
||||||
|
if ((rankStats[1] < 2) || (rankStats[1] & 1)) return ERROR(corruption_detected); /* by construction : at least 2 elts of rank 1, must be even */
|
||||||
|
|
||||||
|
/* results */
|
||||||
|
*nbSymbolsPtr = (U32)(oSize+1);
|
||||||
|
return iSize+1;
|
||||||
|
}
|
||||||
|
/* ******************************************************************
|
||||||
|
FSE : Finite State Entropy decoder
|
||||||
|
Copyright (C) 2013-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 :
|
||||||
|
- FSE source repository : https://github.com/Cyan4973/FiniteStateEntropy
|
||||||
|
- Public forum : https://groups.google.com/forum/#!forum/lz4c
|
||||||
|
****************************************************************** */
|
||||||
|
|
||||||
|
|
||||||
|
/* **************************************************************
|
||||||
|
* 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 : 4214) /* disable: C4214: non-int bitfields */
|
||||||
|
#else
|
||||||
|
# ifdef __GNUC__
|
||||||
|
# define GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__)
|
||||||
|
# define FORCE_INLINE static inline __attribute__((always_inline))
|
||||||
|
# else
|
||||||
|
# define FORCE_INLINE static inline
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* **************************************************************
|
||||||
|
* Error Management
|
||||||
|
****************************************************************/
|
||||||
|
#define FSEv08_isError ERR_isError
|
||||||
|
#define FSEv08_STATIC_ASSERT(c) { enum { FSEv08_static_assert = 1/(int)(!!(c)) }; } /* use only *after* variable declarations */
|
||||||
|
|
||||||
|
|
||||||
|
/* **************************************************************
|
||||||
|
* Complex types
|
||||||
|
****************************************************************/
|
||||||
|
typedef U32 DTable_max_t[FSEv08_DTABLE_SIZE_U32(FSEv08_MAX_TABLELOG)];
|
||||||
|
|
||||||
|
|
||||||
|
/* **************************************************************
|
||||||
|
* Templates
|
||||||
|
****************************************************************/
|
||||||
|
/*
|
||||||
|
designed to be included
|
||||||
|
for type-specific functions (template emulation in C)
|
||||||
|
Objective is to write these functions only once, for improved maintenance
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* safety checks */
|
||||||
|
#ifndef FSEv08_FUNCTION_EXTENSION
|
||||||
|
# error "FSEv08_FUNCTION_EXTENSION must be defined"
|
||||||
|
#endif
|
||||||
|
#ifndef FSEv08_FUNCTION_TYPE
|
||||||
|
# error "FSEv08_FUNCTION_TYPE must be defined"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Function names */
|
||||||
|
#define FSEv08_CAT(X,Y) X##Y
|
||||||
|
#define FSEv08_FUNCTION_NAME(X,Y) FSEv08_CAT(X,Y)
|
||||||
|
#define FSEv08_TYPE_NAME(X,Y) FSEv08_CAT(X,Y)
|
||||||
|
|
||||||
|
|
||||||
|
/* Function templates */
|
||||||
|
FSEv08_DTable* FSEv08_createDTable (unsigned tableLog)
|
||||||
|
{
|
||||||
|
if (tableLog > FSEv08_TABLELOG_ABSOLUTE_MAX) tableLog = FSEv08_TABLELOG_ABSOLUTE_MAX;
|
||||||
|
return (FSEv08_DTable*)malloc( FSEv08_DTABLE_SIZE_U32(tableLog) * sizeof (U32) );
|
||||||
|
}
|
||||||
|
|
||||||
|
void FSEv08_freeDTable (FSEv08_DTable* dt)
|
||||||
|
{
|
||||||
|
free(dt);
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t FSEv08_buildDTable(FSEv08_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog)
|
||||||
|
{
|
||||||
|
void* const tdPtr = dt+1; /* because *dt is unsigned, 32-bits aligned on 32-bits */
|
||||||
|
FSEv08_DECODE_TYPE* const tableDecode = (FSEv08_DECODE_TYPE*) (tdPtr);
|
||||||
|
U16 symbolNext[FSEv08_MAX_SYMBOL_VALUE+1];
|
||||||
|
|
||||||
|
U32 const maxSV1 = maxSymbolValue + 1;
|
||||||
|
U32 const tableSize = 1 << tableLog;
|
||||||
|
U32 highThreshold = tableSize-1;
|
||||||
|
|
||||||
|
/* Sanity Checks */
|
||||||
|
if (maxSymbolValue > FSEv08_MAX_SYMBOL_VALUE) return ERROR(maxSymbolValue_tooLarge);
|
||||||
|
if (tableLog > FSEv08_MAX_TABLELOG) return ERROR(tableLog_tooLarge);
|
||||||
|
|
||||||
|
/* Init, lay down lowprob symbols */
|
||||||
|
{ FSEv08_DTableHeader DTableH;
|
||||||
|
DTableH.tableLog = (U16)tableLog;
|
||||||
|
DTableH.fastMode = 1;
|
||||||
|
{ S16 const largeLimit= (S16)(1 << (tableLog-1));
|
||||||
|
U32 s;
|
||||||
|
for (s=0; s<maxSV1; s++) {
|
||||||
|
if (normalizedCounter[s]==-1) {
|
||||||
|
tableDecode[highThreshold--].symbol = (FSEv08_FUNCTION_TYPE)s;
|
||||||
|
symbolNext[s] = 1;
|
||||||
|
} else {
|
||||||
|
if (normalizedCounter[s] >= largeLimit) DTableH.fastMode=0;
|
||||||
|
symbolNext[s] = normalizedCounter[s];
|
||||||
|
} } }
|
||||||
|
memcpy(dt, &DTableH, sizeof(DTableH));
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Spread symbols */
|
||||||
|
{ U32 const tableMask = tableSize-1;
|
||||||
|
U32 const step = FSEv08_TABLESTEP(tableSize);
|
||||||
|
U32 s, position = 0;
|
||||||
|
for (s=0; s<maxSV1; s++) {
|
||||||
|
int i;
|
||||||
|
for (i=0; i<normalizedCounter[s]; i++) {
|
||||||
|
tableDecode[position].symbol = (FSEv08_FUNCTION_TYPE)s;
|
||||||
|
position = (position + step) & tableMask;
|
||||||
|
while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */
|
||||||
|
} }
|
||||||
|
|
||||||
|
if (position!=0) return ERROR(GENERIC); /* position must reach all cells once, otherwise normalizedCounter is incorrect */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Build Decoding table */
|
||||||
|
{ U32 u;
|
||||||
|
for (u=0; u<tableSize; u++) {
|
||||||
|
FSEv08_FUNCTION_TYPE const symbol = (FSEv08_FUNCTION_TYPE)(tableDecode[u].symbol);
|
||||||
|
U16 nextState = symbolNext[symbol]++;
|
||||||
|
tableDecode[u].nbBits = (BYTE) (tableLog - BIT_highbit32 ((U32)nextState) );
|
||||||
|
tableDecode[u].newState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize);
|
||||||
|
} }
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef FSEv08_COMMONDEFS_ONLY
|
||||||
|
|
||||||
|
/*-*******************************************************
|
||||||
|
* Decompression (Byte symbols)
|
||||||
|
*********************************************************/
|
||||||
|
size_t FSEv08_buildDTable_rle (FSEv08_DTable* dt, BYTE symbolValue)
|
||||||
|
{
|
||||||
|
void* ptr = dt;
|
||||||
|
FSEv08_DTableHeader* const DTableH = (FSEv08_DTableHeader*)ptr;
|
||||||
|
void* dPtr = dt + 1;
|
||||||
|
FSEv08_decode_t* const cell = (FSEv08_decode_t*)dPtr;
|
||||||
|
|
||||||
|
DTableH->tableLog = 0;
|
||||||
|
DTableH->fastMode = 0;
|
||||||
|
|
||||||
|
cell->newState = 0;
|
||||||
|
cell->symbol = symbolValue;
|
||||||
|
cell->nbBits = 0;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
size_t FSEv08_buildDTable_raw (FSEv08_DTable* dt, unsigned nbBits)
|
||||||
|
{
|
||||||
|
void* ptr = dt;
|
||||||
|
FSEv08_DTableHeader* const DTableH = (FSEv08_DTableHeader*)ptr;
|
||||||
|
void* dPtr = dt + 1;
|
||||||
|
FSEv08_decode_t* const dinfo = (FSEv08_decode_t*)dPtr;
|
||||||
|
const unsigned tableSize = 1 << nbBits;
|
||||||
|
const unsigned tableMask = tableSize - 1;
|
||||||
|
const unsigned maxSV1 = tableMask+1;
|
||||||
|
unsigned s;
|
||||||
|
|
||||||
|
/* Sanity checks */
|
||||||
|
if (nbBits < 1) return ERROR(GENERIC); /* min size */
|
||||||
|
|
||||||
|
/* Build Decoding Table */
|
||||||
|
DTableH->tableLog = (U16)nbBits;
|
||||||
|
DTableH->fastMode = 1;
|
||||||
|
for (s=0; s<maxSV1; s++) {
|
||||||
|
dinfo[s].newState = 0;
|
||||||
|
dinfo[s].symbol = (BYTE)s;
|
||||||
|
dinfo[s].nbBits = (BYTE)nbBits;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
FORCE_INLINE size_t FSEv08_decompress_usingDTable_generic(
|
||||||
|
void* dst, size_t maxDstSize,
|
||||||
|
const void* cSrc, size_t cSrcSize,
|
||||||
|
const FSEv08_DTable* dt, const unsigned fast)
|
||||||
|
{
|
||||||
|
BYTE* const ostart = (BYTE*) dst;
|
||||||
|
BYTE* op = ostart;
|
||||||
|
BYTE* const omax = op + maxDstSize;
|
||||||
|
BYTE* const olimit = omax-3;
|
||||||
|
|
||||||
|
BIT_DStream_t bitD;
|
||||||
|
FSEv08_DState_t state1;
|
||||||
|
FSEv08_DState_t state2;
|
||||||
|
|
||||||
|
/* Init */
|
||||||
|
{ size_t const errorCode = BIT_initDStream(&bitD, cSrc, cSrcSize); /* replaced last arg by maxCompressed Size */
|
||||||
|
if (FSEv08_isError(errorCode)) return errorCode; }
|
||||||
|
|
||||||
|
FSEv08_initDState(&state1, &bitD, dt);
|
||||||
|
FSEv08_initDState(&state2, &bitD, dt);
|
||||||
|
|
||||||
|
#define FSEv08_GETSYMBOL(statePtr) fast ? FSEv08_decodeSymbolFast(statePtr, &bitD) : FSEv08_decodeSymbol(statePtr, &bitD)
|
||||||
|
|
||||||
|
/* 4 symbols per loop */
|
||||||
|
for ( ; (BIT_reloadDStream(&bitD)==BIT_DStream_unfinished) && (op<olimit) ; op+=4) {
|
||||||
|
op[0] = FSEv08_GETSYMBOL(&state1);
|
||||||
|
|
||||||
|
if (FSEv08_MAX_TABLELOG*2+7 > sizeof(bitD.bitContainer)*8) /* This test must be static */
|
||||||
|
BIT_reloadDStream(&bitD);
|
||||||
|
|
||||||
|
op[1] = FSEv08_GETSYMBOL(&state2);
|
||||||
|
|
||||||
|
if (FSEv08_MAX_TABLELOG*4+7 > sizeof(bitD.bitContainer)*8) /* This test must be static */
|
||||||
|
{ if (BIT_reloadDStream(&bitD) > BIT_DStream_unfinished) { op+=2; break; } }
|
||||||
|
|
||||||
|
op[2] = FSEv08_GETSYMBOL(&state1);
|
||||||
|
|
||||||
|
if (FSEv08_MAX_TABLELOG*2+7 > sizeof(bitD.bitContainer)*8) /* This test must be static */
|
||||||
|
BIT_reloadDStream(&bitD);
|
||||||
|
|
||||||
|
op[3] = FSEv08_GETSYMBOL(&state2);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* tail */
|
||||||
|
/* note : BIT_reloadDStream(&bitD) >= FSEv08_DStream_partiallyFilled; Ends at exactly BIT_DStream_completed */
|
||||||
|
while (1) {
|
||||||
|
if (op>(omax-2)) return ERROR(dstSize_tooSmall);
|
||||||
|
|
||||||
|
*op++ = FSEv08_GETSYMBOL(&state1);
|
||||||
|
|
||||||
|
if (BIT_reloadDStream(&bitD)==BIT_DStream_overflow) {
|
||||||
|
*op++ = FSEv08_GETSYMBOL(&state2);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (op>(omax-2)) return ERROR(dstSize_tooSmall);
|
||||||
|
|
||||||
|
*op++ = FSEv08_GETSYMBOL(&state2);
|
||||||
|
|
||||||
|
if (BIT_reloadDStream(&bitD)==BIT_DStream_overflow) {
|
||||||
|
*op++ = FSEv08_GETSYMBOL(&state1);
|
||||||
|
break;
|
||||||
|
} }
|
||||||
|
|
||||||
|
return op-ostart;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
size_t FSEv08_decompress_usingDTable(void* dst, size_t originalSize,
|
||||||
|
const void* cSrc, size_t cSrcSize,
|
||||||
|
const FSEv08_DTable* dt)
|
||||||
|
{
|
||||||
|
const void* ptr = dt;
|
||||||
|
const FSEv08_DTableHeader* DTableH = (const FSEv08_DTableHeader*)ptr;
|
||||||
|
const U32 fastMode = DTableH->fastMode;
|
||||||
|
|
||||||
|
/* select fast mode (static) */
|
||||||
|
if (fastMode) return FSEv08_decompress_usingDTable_generic(dst, originalSize, cSrc, cSrcSize, dt, 1);
|
||||||
|
return FSEv08_decompress_usingDTable_generic(dst, originalSize, cSrc, cSrcSize, dt, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
size_t FSEv08_decompress(void* dst, size_t maxDstSize, const void* cSrc, size_t cSrcSize)
|
||||||
|
{
|
||||||
|
const BYTE* const istart = (const BYTE*)cSrc;
|
||||||
|
const BYTE* ip = istart;
|
||||||
|
short counting[FSEv08_MAX_SYMBOL_VALUE+1];
|
||||||
|
DTable_max_t dt; /* Static analyzer seems unable to understand this table will be properly initialized later */
|
||||||
|
unsigned tableLog;
|
||||||
|
unsigned maxSymbolValue = FSEv08_MAX_SYMBOL_VALUE;
|
||||||
|
|
||||||
|
if (cSrcSize<2) return ERROR(srcSize_wrong); /* too small input size */
|
||||||
|
|
||||||
|
/* normal FSE decoding mode */
|
||||||
|
{ size_t const NCountLength = FSEv08_readNCount (counting, &maxSymbolValue, &tableLog, istart, cSrcSize);
|
||||||
|
if (FSEv08_isError(NCountLength)) return NCountLength;
|
||||||
|
if (NCountLength >= cSrcSize) return ERROR(srcSize_wrong); /* too small input size */
|
||||||
|
ip += NCountLength;
|
||||||
|
cSrcSize -= NCountLength;
|
||||||
|
}
|
||||||
|
|
||||||
|
{ size_t const errorCode = FSEv08_buildDTable (dt, counting, maxSymbolValue, tableLog);
|
||||||
|
if (FSEv08_isError(errorCode)) return errorCode; }
|
||||||
|
|
||||||
|
return FSEv08_decompress_usingDTable (dst, maxDstSize, ip, cSrcSize, dt); /* always return, even if it is an error code */
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#endif /* FSEv08_COMMONDEFS_ONLY */
|
||||||
|
/*
|
||||||
|
Common functions of Zstd compression library
|
||||||
|
Copyright (C) 2015-2016, 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 homepage : http://www.zstd.net/
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*-****************************************
|
||||||
|
* ZSTD Error Management
|
||||||
|
******************************************/
|
||||||
|
/*! ZSTDv08_isError() :
|
||||||
|
* tells if a return value is an error code */
|
||||||
|
unsigned ZSTDv08_isError(size_t code) { return ERR_isError(code); }
|
||||||
|
|
||||||
|
/*! ZSTDv08_getErrorName() :
|
||||||
|
* provides error code string from function result (useful for debugging) */
|
||||||
|
const char* ZSTDv08_getErrorName(size_t code) { return ERR_getErrorName(code); }
|
||||||
|
|
||||||
|
/*! ZSTDv08_getError() :
|
||||||
|
* convert a `size_t` function result into a proper ZSTDv08_errorCode enum */
|
||||||
|
ZSTDv08_ErrorCode ZSTDv08_getErrorCode(size_t code) { return ERR_getErrorCode(code); }
|
||||||
|
|
||||||
|
/*! ZSTDv08_getErrorString() :
|
||||||
|
* provides error code string from enum */
|
||||||
|
const char* ZSTDv08_getErrorString(ZSTDv08_ErrorCode code) { return ERR_getErrorName(code); }
|
||||||
|
|
||||||
|
|
||||||
|
/* **************************************************************
|
||||||
|
* ZBUFF Error Management
|
||||||
|
****************************************************************/
|
||||||
|
unsigned ZBUFFv08_isError(size_t errorCode) { return ERR_isError(errorCode); }
|
||||||
|
|
||||||
|
const char* ZBUFFv08_getErrorName(size_t errorCode) { return ERR_getErrorName(errorCode); }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
void* ZSTDv08_defaultAllocFunction(void* opaque, size_t size)
|
||||||
|
{
|
||||||
|
void* address = malloc(size);
|
||||||
|
(void)opaque;
|
||||||
|
/* printf("alloc %p, %d opaque=%p \n", address, (int)size, opaque); */
|
||||||
|
return address;
|
||||||
|
}
|
||||||
|
|
||||||
|
void ZSTDv08_defaultFreeFunction(void* opaque, void* address)
|
||||||
|
{
|
||||||
|
(void)opaque;
|
||||||
|
/* if (address) printf("free %p opaque=%p \n", address, opaque); */
|
||||||
|
free(address);
|
||||||
|
}
|
||||||
|
/* ******************************************************************
|
||||||
|
Huffman decoder, part of New Generation Entropy library
|
||||||
|
Copyright (C) 2013-2016, 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 :
|
||||||
|
- FSE+HUF source repository : https://github.com/Cyan4973/FiniteStateEntropy
|
||||||
|
- Public forum : https://groups.google.com/forum/#!forum/lz4c
|
||||||
|
****************************************************************** */
|
||||||
|
|
||||||
|
/* **************************************************************
|
||||||
|
* Compiler specifics
|
||||||
|
****************************************************************/
|
||||||
|
#if defined (__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */)
|
||||||
|
/* inline is defined */
|
||||||
|
#elif defined(_MSC_VER)
|
||||||
|
# define inline __inline
|
||||||
|
#else
|
||||||
|
# define inline /* disable inline */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef _MSC_VER /* Visual Studio */
|
||||||
|
# define FORCE_INLINE static __forceinline
|
||||||
|
# pragma warning(disable : 4127) /* disable: C4127: conditional expression is constant */
|
||||||
|
#else
|
||||||
|
# ifdef __GNUC__
|
||||||
|
# define FORCE_INLINE static inline __attribute__((always_inline))
|
||||||
|
# else
|
||||||
|
# define FORCE_INLINE static inline
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* **************************************************************
|
||||||
|
* Error Management
|
||||||
|
****************************************************************/
|
||||||
|
#define HUFv08_STATIC_ASSERT(c) { enum { HUFv08_static_assert = 1/(int)(!!(c)) }; } /* use only *after* variable declarations */
|
||||||
|
|
||||||
|
|
||||||
|
/*-***************************/
|
||||||
|
/* generic DTableDesc */
|
||||||
|
/*-***************************/
|
||||||
|
|
||||||
|
typedef struct { BYTE maxTableLog; BYTE tableType; BYTE tableLog; BYTE reserved; } DTableDesc;
|
||||||
|
|
||||||
|
static DTableDesc HUFv08_getDTableDesc(const HUFv08_DTable* table)
|
||||||
|
{
|
||||||
|
DTableDesc dtd;
|
||||||
|
memcpy(&dtd, table, sizeof(dtd));
|
||||||
|
return dtd;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*-***************************/
|
||||||
|
/* single-symbol decoding */
|
||||||
|
/*-***************************/
|
||||||
|
|
||||||
|
typedef struct { BYTE byte; BYTE nbBits; } HUFv08_DEltX2; /* single-symbol decoding */
|
||||||
|
|
||||||
|
size_t HUFv08_readDTableX2 (HUFv08_DTable* DTable, const void* src, size_t srcSize)
|
||||||
|
{
|
||||||
|
BYTE huffWeight[HUFv08_SYMBOLVALUE_MAX + 1];
|
||||||
|
U32 rankVal[HUFv08_TABLELOG_ABSOLUTEMAX + 1]; /* large enough for values from 0 to 16 */
|
||||||
|
U32 tableLog = 0;
|
||||||
|
U32 nbSymbols = 0;
|
||||||
|
size_t iSize;
|
||||||
|
void* const dtPtr = DTable + 1;
|
||||||
|
HUFv08_DEltX2* const dt = (HUFv08_DEltX2*)dtPtr;
|
||||||
|
|
||||||
|
HUFv08_STATIC_ASSERT(sizeof(DTableDesc) == sizeof(HUFv08_DTable));
|
||||||
|
//memset(huffWeight, 0, sizeof(huffWeight)); /* is not necessary, even though some analyzer complain ... */
|
||||||
|
|
||||||
|
iSize = HUFv08_readStats(huffWeight, HUFv08_SYMBOLVALUE_MAX + 1, rankVal, &nbSymbols, &tableLog, src, srcSize);
|
||||||
|
if (HUFv08_isError(iSize)) return iSize;
|
||||||
|
|
||||||
|
/* Table header */
|
||||||
|
{ DTableDesc dtd = HUFv08_getDTableDesc(DTable);
|
||||||
|
if (tableLog > (U32)(dtd.maxTableLog+1)) return ERROR(tableLog_tooLarge); /* DTable too small, huffman tree cannot fit in */
|
||||||
|
dtd.tableType = 0;
|
||||||
|
dtd.tableLog = (BYTE)tableLog;
|
||||||
|
memcpy(DTable, &dtd, sizeof(dtd));
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Prepare ranks */
|
||||||
|
{ U32 n, nextRankStart = 0;
|
||||||
|
for (n=1; n<tableLog+1; n++) {
|
||||||
|
U32 current = nextRankStart;
|
||||||
|
nextRankStart += (rankVal[n] << (n-1));
|
||||||
|
rankVal[n] = current;
|
||||||
|
} }
|
||||||
|
|
||||||
|
/* fill DTable */
|
||||||
|
{ U32 n;
|
||||||
|
for (n=0; n<nbSymbols; n++) {
|
||||||
|
U32 const w = huffWeight[n];
|
||||||
|
U32 const length = (1 << w) >> 1;
|
||||||
|
U32 i;
|
||||||
|
HUFv08_DEltX2 D;
|
||||||
|
D.byte = (BYTE)n; D.nbBits = (BYTE)(tableLog + 1 - w);
|
||||||
|
for (i = rankVal[w]; i < rankVal[w] + length; i++)
|
||||||
|
dt[i] = D;
|
||||||
|
rankVal[w] += length;
|
||||||
|
} }
|
||||||
|
|
||||||
|
return iSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static BYTE HUFv08_decodeSymbolX2(BIT_DStream_t* Dstream, const HUFv08_DEltX2* dt, const U32 dtLog)
|
||||||
|
{
|
||||||
|
size_t const val = BIT_lookBitsFast(Dstream, dtLog); /* note : dtLog >= 1 */
|
||||||
|
BYTE const c = dt[val].byte;
|
||||||
|
BIT_skipBits(Dstream, dt[val].nbBits);
|
||||||
|
return c;
|
||||||
|
}
|
||||||
|
|
||||||
|
#define HUFv08_DECODE_SYMBOLX2_0(ptr, DStreamPtr) \
|
||||||
|
*ptr++ = HUFv08_decodeSymbolX2(DStreamPtr, dt, dtLog)
|
||||||
|
|
||||||
|
#define HUFv08_DECODE_SYMBOLX2_1(ptr, DStreamPtr) \
|
||||||
|
if (MEM_64bits() || (HUFv08_TABLELOG_MAX<=12)) \
|
||||||
|
HUFv08_DECODE_SYMBOLX2_0(ptr, DStreamPtr)
|
||||||
|
|
||||||
|
#define HUFv08_DECODE_SYMBOLX2_2(ptr, DStreamPtr) \
|
||||||
|
if (MEM_64bits()) \
|
||||||
|
HUFv08_DECODE_SYMBOLX2_0(ptr, DStreamPtr)
|
||||||
|
|
||||||
|
static inline size_t HUFv08_decodeStreamX2(BYTE* p, BIT_DStream_t* const bitDPtr, BYTE* const pEnd, const HUFv08_DEltX2* const dt, const U32 dtLog)
|
||||||
|
{
|
||||||
|
BYTE* const pStart = p;
|
||||||
|
|
||||||
|
/* up to 4 symbols at a time */
|
||||||
|
while ((BIT_reloadDStream(bitDPtr) == BIT_DStream_unfinished) && (p <= pEnd-4)) {
|
||||||
|
HUFv08_DECODE_SYMBOLX2_2(p, bitDPtr);
|
||||||
|
HUFv08_DECODE_SYMBOLX2_1(p, bitDPtr);
|
||||||
|
HUFv08_DECODE_SYMBOLX2_2(p, bitDPtr);
|
||||||
|
HUFv08_DECODE_SYMBOLX2_0(p, bitDPtr);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* closer to the end */
|
||||||
|
while ((BIT_reloadDStream(bitDPtr) == BIT_DStream_unfinished) && (p < pEnd))
|
||||||
|
HUFv08_DECODE_SYMBOLX2_0(p, bitDPtr);
|
||||||
|
|
||||||
|
/* no more data to retrieve from bitstream, hence no need to reload */
|
||||||
|
while (p < pEnd)
|
||||||
|
HUFv08_DECODE_SYMBOLX2_0(p, bitDPtr);
|
||||||
|
|
||||||
|
return pEnd-pStart;
|
||||||
|
}
|
||||||
|
|
||||||
|
static size_t HUFv08_decompress1X2_usingDTable_internal(
|
||||||
|
void* dst, size_t dstSize,
|
||||||
|
const void* cSrc, size_t cSrcSize,
|
||||||
|
const HUFv08_DTable* DTable)
|
||||||
|
{
|
||||||
|
BYTE* op = (BYTE*)dst;
|
||||||
|
BYTE* const oend = op + dstSize;
|
||||||
|
const void* dtPtr = DTable + 1;
|
||||||
|
const HUFv08_DEltX2* const dt = (const HUFv08_DEltX2*)dtPtr;
|
||||||
|
BIT_DStream_t bitD;
|
||||||
|
DTableDesc const dtd = HUFv08_getDTableDesc(DTable);
|
||||||
|
U32 const dtLog = dtd.tableLog;
|
||||||
|
|
||||||
|
{ size_t const errorCode = BIT_initDStream(&bitD, cSrc, cSrcSize);
|
||||||
|
if (HUFv08_isError(errorCode)) return errorCode; }
|
||||||
|
|
||||||
|
HUFv08_decodeStreamX2(op, &bitD, oend, dt, dtLog);
|
||||||
|
|
||||||
|
/* check */
|
||||||
|
if (!BIT_endOfDStream(&bitD)) return ERROR(corruption_detected);
|
||||||
|
|
||||||
|
return dstSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t HUFv08_decompress1X2_usingDTable(
|
||||||
|
void* dst, size_t dstSize,
|
||||||
|
const void* cSrc, size_t cSrcSize,
|
||||||
|
const HUFv08_DTable* DTable)
|
||||||
|
{
|
||||||
|
DTableDesc dtd = HUFv08_getDTableDesc(DTable);
|
||||||
|
if (dtd.tableType != 0) return ERROR(GENERIC);
|
||||||
|
return HUFv08_decompress1X2_usingDTable_internal(dst, dstSize, cSrc, cSrcSize, DTable);
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t HUFv08_decompress1X2_DCtx (HUFv08_DTable* DCtx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize)
|
||||||
|
{
|
||||||
|
const BYTE* ip = (const BYTE*) cSrc;
|
||||||
|
|
||||||
|
size_t const hSize = HUFv08_readDTableX2 (DCtx, cSrc, cSrcSize);
|
||||||
|
if (HUFv08_isError(hSize)) return hSize;
|
||||||
|
if (hSize >= cSrcSize) return ERROR(srcSize_wrong);
|
||||||
|
ip += hSize; cSrcSize -= hSize;
|
||||||
|
|
||||||
|
return HUFv08_decompress1X2_usingDTable_internal (dst, dstSize, ip, cSrcSize, DCtx);
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t HUFv08_decompress1X2 (void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize)
|
||||||
|
{
|
||||||
|
HUFv08_CREATE_STATIC_DTABLEX2(DTable, HUFv08_TABLELOG_MAX);
|
||||||
|
return HUFv08_decompress1X2_DCtx (DTable, dst, dstSize, cSrc, cSrcSize);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static size_t HUFv08_decompress4X2_usingDTable_internal(
|
||||||
|
void* dst, size_t dstSize,
|
||||||
|
const void* cSrc, size_t cSrcSize,
|
||||||
|
const HUFv08_DTable* DTable)
|
||||||
|
{
|
||||||
|
/* Check */
|
||||||
|
if (cSrcSize < 10) return ERROR(corruption_detected); /* strict minimum : jump table + 1 byte per stream */
|
||||||
|
|
||||||
|
{ const BYTE* const istart = (const BYTE*) cSrc;
|
||||||
|
BYTE* const ostart = (BYTE*) dst;
|
||||||
|
BYTE* const oend = ostart + dstSize;
|
||||||
|
const void* const dtPtr = DTable + 1;
|
||||||
|
const HUFv08_DEltX2* const dt = (const HUFv08_DEltX2*)dtPtr;
|
||||||
|
|
||||||
|
/* Init */
|
||||||
|
BIT_DStream_t bitD1;
|
||||||
|
BIT_DStream_t bitD2;
|
||||||
|
BIT_DStream_t bitD3;
|
||||||
|
BIT_DStream_t bitD4;
|
||||||
|
size_t const length1 = MEM_readLE16(istart);
|
||||||
|
size_t const length2 = MEM_readLE16(istart+2);
|
||||||
|
size_t const length3 = MEM_readLE16(istart+4);
|
||||||
|
size_t const length4 = cSrcSize - (length1 + length2 + length3 + 6);
|
||||||
|
const BYTE* const istart1 = istart + 6; /* jumpTable */
|
||||||
|
const BYTE* const istart2 = istart1 + length1;
|
||||||
|
const BYTE* const istart3 = istart2 + length2;
|
||||||
|
const BYTE* const istart4 = istart3 + length3;
|
||||||
|
const size_t segmentSize = (dstSize+3) / 4;
|
||||||
|
BYTE* const opStart2 = ostart + segmentSize;
|
||||||
|
BYTE* const opStart3 = opStart2 + segmentSize;
|
||||||
|
BYTE* const opStart4 = opStart3 + segmentSize;
|
||||||
|
BYTE* op1 = ostart;
|
||||||
|
BYTE* op2 = opStart2;
|
||||||
|
BYTE* op3 = opStart3;
|
||||||
|
BYTE* op4 = opStart4;
|
||||||
|
U32 endSignal;
|
||||||
|
DTableDesc const dtd = HUFv08_getDTableDesc(DTable);
|
||||||
|
U32 const dtLog = dtd.tableLog;
|
||||||
|
|
||||||
|
if (length4 > cSrcSize) return ERROR(corruption_detected); /* overflow */
|
||||||
|
{ size_t const errorCode = BIT_initDStream(&bitD1, istart1, length1);
|
||||||
|
if (HUFv08_isError(errorCode)) return errorCode; }
|
||||||
|
{ size_t const errorCode = BIT_initDStream(&bitD2, istart2, length2);
|
||||||
|
if (HUFv08_isError(errorCode)) return errorCode; }
|
||||||
|
{ size_t const errorCode = BIT_initDStream(&bitD3, istart3, length3);
|
||||||
|
if (HUFv08_isError(errorCode)) return errorCode; }
|
||||||
|
{ size_t const errorCode = BIT_initDStream(&bitD4, istart4, length4);
|
||||||
|
if (HUFv08_isError(errorCode)) return errorCode; }
|
||||||
|
|
||||||
|
/* 16-32 symbols per loop (4-8 symbols per stream) */
|
||||||
|
endSignal = BIT_reloadDStream(&bitD1) | BIT_reloadDStream(&bitD2) | BIT_reloadDStream(&bitD3) | BIT_reloadDStream(&bitD4);
|
||||||
|
for ( ; (endSignal==BIT_DStream_unfinished) && (op4<(oend-7)) ; ) {
|
||||||
|
HUFv08_DECODE_SYMBOLX2_2(op1, &bitD1);
|
||||||
|
HUFv08_DECODE_SYMBOLX2_2(op2, &bitD2);
|
||||||
|
HUFv08_DECODE_SYMBOLX2_2(op3, &bitD3);
|
||||||
|
HUFv08_DECODE_SYMBOLX2_2(op4, &bitD4);
|
||||||
|
HUFv08_DECODE_SYMBOLX2_1(op1, &bitD1);
|
||||||
|
HUFv08_DECODE_SYMBOLX2_1(op2, &bitD2);
|
||||||
|
HUFv08_DECODE_SYMBOLX2_1(op3, &bitD3);
|
||||||
|
HUFv08_DECODE_SYMBOLX2_1(op4, &bitD4);
|
||||||
|
HUFv08_DECODE_SYMBOLX2_2(op1, &bitD1);
|
||||||
|
HUFv08_DECODE_SYMBOLX2_2(op2, &bitD2);
|
||||||
|
HUFv08_DECODE_SYMBOLX2_2(op3, &bitD3);
|
||||||
|
HUFv08_DECODE_SYMBOLX2_2(op4, &bitD4);
|
||||||
|
HUFv08_DECODE_SYMBOLX2_0(op1, &bitD1);
|
||||||
|
HUFv08_DECODE_SYMBOLX2_0(op2, &bitD2);
|
||||||
|
HUFv08_DECODE_SYMBOLX2_0(op3, &bitD3);
|
||||||
|
HUFv08_DECODE_SYMBOLX2_0(op4, &bitD4);
|
||||||
|
endSignal = BIT_reloadDStream(&bitD1) | BIT_reloadDStream(&bitD2) | BIT_reloadDStream(&bitD3) | BIT_reloadDStream(&bitD4);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* check corruption */
|
||||||
|
if (op1 > opStart2) return ERROR(corruption_detected);
|
||||||
|
if (op2 > opStart3) return ERROR(corruption_detected);
|
||||||
|
if (op3 > opStart4) return ERROR(corruption_detected);
|
||||||
|
/* note : op4 supposed already verified within main loop */
|
||||||
|
|
||||||
|
/* finish bitStreams one by one */
|
||||||
|
HUFv08_decodeStreamX2(op1, &bitD1, opStart2, dt, dtLog);
|
||||||
|
HUFv08_decodeStreamX2(op2, &bitD2, opStart3, dt, dtLog);
|
||||||
|
HUFv08_decodeStreamX2(op3, &bitD3, opStart4, dt, dtLog);
|
||||||
|
HUFv08_decodeStreamX2(op4, &bitD4, oend, dt, dtLog);
|
||||||
|
|
||||||
|
/* check */
|
||||||
|
endSignal = BIT_endOfDStream(&bitD1) & BIT_endOfDStream(&bitD2) & BIT_endOfDStream(&bitD3) & BIT_endOfDStream(&bitD4);
|
||||||
|
if (!endSignal) return ERROR(corruption_detected);
|
||||||
|
|
||||||
|
/* decoded size */
|
||||||
|
return dstSize;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
size_t HUFv08_decompress4X2_usingDTable(
|
||||||
|
void* dst, size_t dstSize,
|
||||||
|
const void* cSrc, size_t cSrcSize,
|
||||||
|
const HUFv08_DTable* DTable)
|
||||||
|
{
|
||||||
|
DTableDesc dtd = HUFv08_getDTableDesc(DTable);
|
||||||
|
if (dtd.tableType != 0) return ERROR(GENERIC);
|
||||||
|
return HUFv08_decompress4X2_usingDTable_internal(dst, dstSize, cSrc, cSrcSize, DTable);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
size_t HUFv08_decompress4X2_DCtx (HUFv08_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize)
|
||||||
|
{
|
||||||
|
const BYTE* ip = (const BYTE*) cSrc;
|
||||||
|
|
||||||
|
size_t const hSize = HUFv08_readDTableX2 (dctx, cSrc, cSrcSize);
|
||||||
|
if (HUFv08_isError(hSize)) return hSize;
|
||||||
|
if (hSize >= cSrcSize) return ERROR(srcSize_wrong);
|
||||||
|
ip += hSize; cSrcSize -= hSize;
|
||||||
|
|
||||||
|
return HUFv08_decompress4X2_usingDTable_internal (dst, dstSize, ip, cSrcSize, dctx);
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t HUFv08_decompress4X2 (void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize)
|
||||||
|
{
|
||||||
|
HUFv08_CREATE_STATIC_DTABLEX2(DTable, HUFv08_TABLELOG_MAX);
|
||||||
|
return HUFv08_decompress4X2_DCtx(DTable, dst, dstSize, cSrc, cSrcSize);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* *************************/
|
||||||
|
/* double-symbols decoding */
|
||||||
|
/* *************************/
|
||||||
|
typedef struct { U16 sequence; BYTE nbBits; BYTE length; } HUFv08_DEltX4; /* double-symbols decoding */
|
||||||
|
|
||||||
|
typedef struct { BYTE symbol; BYTE weight; } sortedSymbol_t;
|
||||||
|
|
||||||
|
static void HUFv08_fillDTableX4Level2(HUFv08_DEltX4* DTable, U32 sizeLog, const U32 consumed,
|
||||||
|
const U32* rankValOrigin, const int minWeight,
|
||||||
|
const sortedSymbol_t* sortedSymbols, const U32 sortedListSize,
|
||||||
|
U32 nbBitsBaseline, U16 baseSeq)
|
||||||
|
{
|
||||||
|
HUFv08_DEltX4 DElt;
|
||||||
|
U32 rankVal[HUFv08_TABLELOG_ABSOLUTEMAX + 1];
|
||||||
|
|
||||||
|
/* get pre-calculated rankVal */
|
||||||
|
memcpy(rankVal, rankValOrigin, sizeof(rankVal));
|
||||||
|
|
||||||
|
/* fill skipped values */
|
||||||
|
if (minWeight>1) {
|
||||||
|
U32 i, skipSize = rankVal[minWeight];
|
||||||
|
MEM_writeLE16(&(DElt.sequence), baseSeq);
|
||||||
|
DElt.nbBits = (BYTE)(consumed);
|
||||||
|
DElt.length = 1;
|
||||||
|
for (i = 0; i < skipSize; i++)
|
||||||
|
DTable[i] = DElt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* fill DTable */
|
||||||
|
{ U32 s; for (s=0; s<sortedListSize; s++) { /* note : sortedSymbols already skipped */
|
||||||
|
const U32 symbol = sortedSymbols[s].symbol;
|
||||||
|
const U32 weight = sortedSymbols[s].weight;
|
||||||
|
const U32 nbBits = nbBitsBaseline - weight;
|
||||||
|
const U32 length = 1 << (sizeLog-nbBits);
|
||||||
|
const U32 start = rankVal[weight];
|
||||||
|
U32 i = start;
|
||||||
|
const U32 end = start + length;
|
||||||
|
|
||||||
|
MEM_writeLE16(&(DElt.sequence), (U16)(baseSeq + (symbol << 8)));
|
||||||
|
DElt.nbBits = (BYTE)(nbBits + consumed);
|
||||||
|
DElt.length = 2;
|
||||||
|
do { DTable[i++] = DElt; } while (i<end); /* since length >= 1 */
|
||||||
|
|
||||||
|
rankVal[weight] += length;
|
||||||
|
}}
|
||||||
|
}
|
||||||
|
|
||||||
|
typedef U32 rankVal_t[HUFv08_TABLELOG_ABSOLUTEMAX][HUFv08_TABLELOG_ABSOLUTEMAX + 1];
|
||||||
|
|
||||||
|
static void HUFv08_fillDTableX4(HUFv08_DEltX4* DTable, const U32 targetLog,
|
||||||
|
const sortedSymbol_t* sortedList, const U32 sortedListSize,
|
||||||
|
const U32* rankStart, rankVal_t rankValOrigin, const U32 maxWeight,
|
||||||
|
const U32 nbBitsBaseline)
|
||||||
|
{
|
||||||
|
U32 rankVal[HUFv08_TABLELOG_ABSOLUTEMAX + 1];
|
||||||
|
const int scaleLog = nbBitsBaseline - targetLog; /* note : targetLog >= srcLog, hence scaleLog <= 1 */
|
||||||
|
const U32 minBits = nbBitsBaseline - maxWeight;
|
||||||
|
U32 s;
|
||||||
|
|
||||||
|
memcpy(rankVal, rankValOrigin, sizeof(rankVal));
|
||||||
|
|
||||||
|
/* fill DTable */
|
||||||
|
for (s=0; s<sortedListSize; s++) {
|
||||||
|
const U16 symbol = sortedList[s].symbol;
|
||||||
|
const U32 weight = sortedList[s].weight;
|
||||||
|
const U32 nbBits = nbBitsBaseline - weight;
|
||||||
|
const U32 start = rankVal[weight];
|
||||||
|
const U32 length = 1 << (targetLog-nbBits);
|
||||||
|
|
||||||
|
if (targetLog-nbBits >= minBits) { /* enough room for a second symbol */
|
||||||
|
U32 sortedRank;
|
||||||
|
int minWeight = nbBits + scaleLog;
|
||||||
|
if (minWeight < 1) minWeight = 1;
|
||||||
|
sortedRank = rankStart[minWeight];
|
||||||
|
HUFv08_fillDTableX4Level2(DTable+start, targetLog-nbBits, nbBits,
|
||||||
|
rankValOrigin[nbBits], minWeight,
|
||||||
|
sortedList+sortedRank, sortedListSize-sortedRank,
|
||||||
|
nbBitsBaseline, symbol);
|
||||||
|
} else {
|
||||||
|
HUFv08_DEltX4 DElt;
|
||||||
|
MEM_writeLE16(&(DElt.sequence), symbol);
|
||||||
|
DElt.nbBits = (BYTE)(nbBits);
|
||||||
|
DElt.length = 1;
|
||||||
|
{ U32 u;
|
||||||
|
const U32 end = start + length;
|
||||||
|
for (u = start; u < end; u++) DTable[u] = DElt;
|
||||||
|
} }
|
||||||
|
rankVal[weight] += length;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t HUFv08_readDTableX4 (HUFv08_DTable* DTable, const void* src, size_t srcSize)
|
||||||
|
{
|
||||||
|
BYTE weightList[HUFv08_SYMBOLVALUE_MAX + 1];
|
||||||
|
sortedSymbol_t sortedSymbol[HUFv08_SYMBOLVALUE_MAX + 1];
|
||||||
|
U32 rankStats[HUFv08_TABLELOG_ABSOLUTEMAX + 1] = { 0 };
|
||||||
|
U32 rankStart0[HUFv08_TABLELOG_ABSOLUTEMAX + 2] = { 0 };
|
||||||
|
U32* const rankStart = rankStart0+1;
|
||||||
|
rankVal_t rankVal;
|
||||||
|
U32 tableLog, maxW, sizeOfSort, nbSymbols;
|
||||||
|
DTableDesc dtd = HUFv08_getDTableDesc(DTable);
|
||||||
|
U32 const maxTableLog = dtd.maxTableLog;
|
||||||
|
size_t iSize;
|
||||||
|
void* dtPtr = DTable+1; /* force compiler to avoid strict-aliasing */
|
||||||
|
HUFv08_DEltX4* const dt = (HUFv08_DEltX4*)dtPtr;
|
||||||
|
|
||||||
|
HUFv08_STATIC_ASSERT(sizeof(HUFv08_DEltX4) == sizeof(HUFv08_DTable)); /* if compilation fails here, assertion is false */
|
||||||
|
if (maxTableLog > HUFv08_TABLELOG_ABSOLUTEMAX) return ERROR(tableLog_tooLarge);
|
||||||
|
//memset(weightList, 0, sizeof(weightList)); /* is not necessary, even though some analyzer complain ... */
|
||||||
|
|
||||||
|
iSize = HUFv08_readStats(weightList, HUFv08_SYMBOLVALUE_MAX + 1, rankStats, &nbSymbols, &tableLog, src, srcSize);
|
||||||
|
if (HUFv08_isError(iSize)) return iSize;
|
||||||
|
|
||||||
|
/* check result */
|
||||||
|
if (tableLog > maxTableLog) return ERROR(tableLog_tooLarge); /* DTable can't fit code depth */
|
||||||
|
|
||||||
|
/* find maxWeight */
|
||||||
|
for (maxW = tableLog; rankStats[maxW]==0; maxW--) {} /* necessarily finds a solution before 0 */
|
||||||
|
|
||||||
|
/* Get start index of each weight */
|
||||||
|
{ U32 w, nextRankStart = 0;
|
||||||
|
for (w=1; w<maxW+1; w++) {
|
||||||
|
U32 current = nextRankStart;
|
||||||
|
nextRankStart += rankStats[w];
|
||||||
|
rankStart[w] = current;
|
||||||
|
}
|
||||||
|
rankStart[0] = nextRankStart; /* put all 0w symbols at the end of sorted list*/
|
||||||
|
sizeOfSort = nextRankStart;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* sort symbols by weight */
|
||||||
|
{ U32 s;
|
||||||
|
for (s=0; s<nbSymbols; s++) {
|
||||||
|
U32 const w = weightList[s];
|
||||||
|
U32 const r = rankStart[w]++;
|
||||||
|
sortedSymbol[r].symbol = (BYTE)s;
|
||||||
|
sortedSymbol[r].weight = (BYTE)w;
|
||||||
|
}
|
||||||
|
rankStart[0] = 0; /* forget 0w symbols; this is beginning of weight(1) */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Build rankVal */
|
||||||
|
{ U32* const rankVal0 = rankVal[0];
|
||||||
|
{ int const rescale = (maxTableLog-tableLog) - 1; /* tableLog <= maxTableLog */
|
||||||
|
U32 nextRankVal = 0;
|
||||||
|
U32 w;
|
||||||
|
for (w=1; w<maxW+1; w++) {
|
||||||
|
U32 current = nextRankVal;
|
||||||
|
nextRankVal += rankStats[w] << (w+rescale);
|
||||||
|
rankVal0[w] = current;
|
||||||
|
} }
|
||||||
|
{ U32 const minBits = tableLog+1 - maxW;
|
||||||
|
U32 consumed;
|
||||||
|
for (consumed = minBits; consumed < maxTableLog - minBits + 1; consumed++) {
|
||||||
|
U32* const rankValPtr = rankVal[consumed];
|
||||||
|
U32 w;
|
||||||
|
for (w = 1; w < maxW+1; w++) {
|
||||||
|
rankValPtr[w] = rankVal0[w] >> consumed;
|
||||||
|
} } } }
|
||||||
|
|
||||||
|
HUFv08_fillDTableX4(dt, maxTableLog,
|
||||||
|
sortedSymbol, sizeOfSort,
|
||||||
|
rankStart0, rankVal, maxW,
|
||||||
|
tableLog+1);
|
||||||
|
|
||||||
|
dtd.tableLog = (BYTE)maxTableLog;
|
||||||
|
dtd.tableType = 1;
|
||||||
|
memcpy(DTable, &dtd, sizeof(dtd));
|
||||||
|
return iSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static U32 HUFv08_decodeSymbolX4(void* op, BIT_DStream_t* DStream, const HUFv08_DEltX4* dt, const U32 dtLog)
|
||||||
|
{
|
||||||
|
const size_t val = BIT_lookBitsFast(DStream, dtLog); /* note : dtLog >= 1 */
|
||||||
|
memcpy(op, dt+val, 2);
|
||||||
|
BIT_skipBits(DStream, dt[val].nbBits);
|
||||||
|
return dt[val].length;
|
||||||
|
}
|
||||||
|
|
||||||
|
static U32 HUFv08_decodeLastSymbolX4(void* op, BIT_DStream_t* DStream, const HUFv08_DEltX4* dt, const U32 dtLog)
|
||||||
|
{
|
||||||
|
const size_t val = BIT_lookBitsFast(DStream, dtLog); /* note : dtLog >= 1 */
|
||||||
|
memcpy(op, dt+val, 1);
|
||||||
|
if (dt[val].length==1) BIT_skipBits(DStream, dt[val].nbBits);
|
||||||
|
else {
|
||||||
|
if (DStream->bitsConsumed < (sizeof(DStream->bitContainer)*8)) {
|
||||||
|
BIT_skipBits(DStream, dt[val].nbBits);
|
||||||
|
if (DStream->bitsConsumed > (sizeof(DStream->bitContainer)*8))
|
||||||
|
DStream->bitsConsumed = (sizeof(DStream->bitContainer)*8); /* ugly hack; works only because it's the last symbol. Note : can't easily extract nbBits from just this symbol */
|
||||||
|
} }
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#define HUFv08_DECODE_SYMBOLX4_0(ptr, DStreamPtr) \
|
||||||
|
ptr += HUFv08_decodeSymbolX4(ptr, DStreamPtr, dt, dtLog)
|
||||||
|
|
||||||
|
#define HUFv08_DECODE_SYMBOLX4_1(ptr, DStreamPtr) \
|
||||||
|
if (MEM_64bits() || (HUFv08_TABLELOG_MAX<=12)) \
|
||||||
|
ptr += HUFv08_decodeSymbolX4(ptr, DStreamPtr, dt, dtLog)
|
||||||
|
|
||||||
|
#define HUFv08_DECODE_SYMBOLX4_2(ptr, DStreamPtr) \
|
||||||
|
if (MEM_64bits()) \
|
||||||
|
ptr += HUFv08_decodeSymbolX4(ptr, DStreamPtr, dt, dtLog)
|
||||||
|
|
||||||
|
static inline size_t HUFv08_decodeStreamX4(BYTE* p, BIT_DStream_t* bitDPtr, BYTE* const pEnd, const HUFv08_DEltX4* const dt, const U32 dtLog)
|
||||||
|
{
|
||||||
|
BYTE* const pStart = p;
|
||||||
|
|
||||||
|
/* up to 8 symbols at a time */
|
||||||
|
while ((BIT_reloadDStream(bitDPtr) == BIT_DStream_unfinished) && (p < pEnd-7)) {
|
||||||
|
HUFv08_DECODE_SYMBOLX4_2(p, bitDPtr);
|
||||||
|
HUFv08_DECODE_SYMBOLX4_1(p, bitDPtr);
|
||||||
|
HUFv08_DECODE_SYMBOLX4_2(p, bitDPtr);
|
||||||
|
HUFv08_DECODE_SYMBOLX4_0(p, bitDPtr);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* closer to end : up to 2 symbols at a time */
|
||||||
|
while ((BIT_reloadDStream(bitDPtr) == BIT_DStream_unfinished) && (p <= pEnd-2))
|
||||||
|
HUFv08_DECODE_SYMBOLX4_0(p, bitDPtr);
|
||||||
|
|
||||||
|
while (p <= pEnd-2)
|
||||||
|
HUFv08_DECODE_SYMBOLX4_0(p, bitDPtr); /* no need to reload : reached the end of DStream */
|
||||||
|
|
||||||
|
if (p < pEnd)
|
||||||
|
p += HUFv08_decodeLastSymbolX4(p, bitDPtr, dt, dtLog);
|
||||||
|
|
||||||
|
return p-pStart;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static size_t HUFv08_decompress1X4_usingDTable_internal(
|
||||||
|
void* dst, size_t dstSize,
|
||||||
|
const void* cSrc, size_t cSrcSize,
|
||||||
|
const HUFv08_DTable* DTable)
|
||||||
|
{
|
||||||
|
BIT_DStream_t bitD;
|
||||||
|
|
||||||
|
/* Init */
|
||||||
|
{ size_t const errorCode = BIT_initDStream(&bitD, cSrc, cSrcSize);
|
||||||
|
if (HUFv08_isError(errorCode)) return errorCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* decode */
|
||||||
|
{ BYTE* const ostart = (BYTE*) dst;
|
||||||
|
BYTE* const oend = ostart + dstSize;
|
||||||
|
const void* const dtPtr = DTable+1; /* force compiler to not use strict-aliasing */
|
||||||
|
const HUFv08_DEltX4* const dt = (const HUFv08_DEltX4*)dtPtr;
|
||||||
|
DTableDesc const dtd = HUFv08_getDTableDesc(DTable);
|
||||||
|
HUFv08_decodeStreamX4(ostart, &bitD, oend, dt, dtd.tableLog);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* check */
|
||||||
|
if (!BIT_endOfDStream(&bitD)) return ERROR(corruption_detected);
|
||||||
|
|
||||||
|
/* decoded size */
|
||||||
|
return dstSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t HUFv08_decompress1X4_usingDTable(
|
||||||
|
void* dst, size_t dstSize,
|
||||||
|
const void* cSrc, size_t cSrcSize,
|
||||||
|
const HUFv08_DTable* DTable)
|
||||||
|
{
|
||||||
|
DTableDesc dtd = HUFv08_getDTableDesc(DTable);
|
||||||
|
if (dtd.tableType != 1) return ERROR(GENERIC);
|
||||||
|
return HUFv08_decompress1X4_usingDTable_internal(dst, dstSize, cSrc, cSrcSize, DTable);
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t HUFv08_decompress1X4_DCtx (HUFv08_DTable* DCtx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize)
|
||||||
|
{
|
||||||
|
const BYTE* ip = (const BYTE*) cSrc;
|
||||||
|
|
||||||
|
size_t const hSize = HUFv08_readDTableX4 (DCtx, cSrc, cSrcSize);
|
||||||
|
if (HUFv08_isError(hSize)) return hSize;
|
||||||
|
if (hSize >= cSrcSize) return ERROR(srcSize_wrong);
|
||||||
|
ip += hSize; cSrcSize -= hSize;
|
||||||
|
|
||||||
|
return HUFv08_decompress1X4_usingDTable_internal (dst, dstSize, ip, cSrcSize, DCtx);
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t HUFv08_decompress1X4 (void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize)
|
||||||
|
{
|
||||||
|
HUFv08_CREATE_STATIC_DTABLEX4(DTable, HUFv08_TABLELOG_MAX);
|
||||||
|
return HUFv08_decompress1X4_DCtx(DTable, dst, dstSize, cSrc, cSrcSize);
|
||||||
|
}
|
||||||
|
|
||||||
|
static size_t HUFv08_decompress4X4_usingDTable_internal(
|
||||||
|
void* dst, size_t dstSize,
|
||||||
|
const void* cSrc, size_t cSrcSize,
|
||||||
|
const HUFv08_DTable* DTable)
|
||||||
|
{
|
||||||
|
if (cSrcSize < 10) return ERROR(corruption_detected); /* strict minimum : jump table + 1 byte per stream */
|
||||||
|
|
||||||
|
{ const BYTE* const istart = (const BYTE*) cSrc;
|
||||||
|
BYTE* const ostart = (BYTE*) dst;
|
||||||
|
BYTE* const oend = ostart + dstSize;
|
||||||
|
const void* const dtPtr = DTable+1;
|
||||||
|
const HUFv08_DEltX4* const dt = (const HUFv08_DEltX4*)dtPtr;
|
||||||
|
|
||||||
|
/* Init */
|
||||||
|
BIT_DStream_t bitD1;
|
||||||
|
BIT_DStream_t bitD2;
|
||||||
|
BIT_DStream_t bitD3;
|
||||||
|
BIT_DStream_t bitD4;
|
||||||
|
size_t const length1 = MEM_readLE16(istart);
|
||||||
|
size_t const length2 = MEM_readLE16(istart+2);
|
||||||
|
size_t const length3 = MEM_readLE16(istart+4);
|
||||||
|
size_t const length4 = cSrcSize - (length1 + length2 + length3 + 6);
|
||||||
|
const BYTE* const istart1 = istart + 6; /* jumpTable */
|
||||||
|
const BYTE* const istart2 = istart1 + length1;
|
||||||
|
const BYTE* const istart3 = istart2 + length2;
|
||||||
|
const BYTE* const istart4 = istart3 + length3;
|
||||||
|
size_t const segmentSize = (dstSize+3) / 4;
|
||||||
|
BYTE* const opStart2 = ostart + segmentSize;
|
||||||
|
BYTE* const opStart3 = opStart2 + segmentSize;
|
||||||
|
BYTE* const opStart4 = opStart3 + segmentSize;
|
||||||
|
BYTE* op1 = ostart;
|
||||||
|
BYTE* op2 = opStart2;
|
||||||
|
BYTE* op3 = opStart3;
|
||||||
|
BYTE* op4 = opStart4;
|
||||||
|
U32 endSignal;
|
||||||
|
DTableDesc const dtd = HUFv08_getDTableDesc(DTable);
|
||||||
|
U32 const dtLog = dtd.tableLog;
|
||||||
|
|
||||||
|
if (length4 > cSrcSize) return ERROR(corruption_detected); /* overflow */
|
||||||
|
{ size_t const errorCode = BIT_initDStream(&bitD1, istart1, length1);
|
||||||
|
if (HUFv08_isError(errorCode)) return errorCode; }
|
||||||
|
{ size_t const errorCode = BIT_initDStream(&bitD2, istart2, length2);
|
||||||
|
if (HUFv08_isError(errorCode)) return errorCode; }
|
||||||
|
{ size_t const errorCode = BIT_initDStream(&bitD3, istart3, length3);
|
||||||
|
if (HUFv08_isError(errorCode)) return errorCode; }
|
||||||
|
{ size_t const errorCode = BIT_initDStream(&bitD4, istart4, length4);
|
||||||
|
if (HUFv08_isError(errorCode)) return errorCode; }
|
||||||
|
|
||||||
|
/* 16-32 symbols per loop (4-8 symbols per stream) */
|
||||||
|
endSignal = BIT_reloadDStream(&bitD1) | BIT_reloadDStream(&bitD2) | BIT_reloadDStream(&bitD3) | BIT_reloadDStream(&bitD4);
|
||||||
|
for ( ; (endSignal==BIT_DStream_unfinished) && (op4<(oend-7)) ; ) {
|
||||||
|
HUFv08_DECODE_SYMBOLX4_2(op1, &bitD1);
|
||||||
|
HUFv08_DECODE_SYMBOLX4_2(op2, &bitD2);
|
||||||
|
HUFv08_DECODE_SYMBOLX4_2(op3, &bitD3);
|
||||||
|
HUFv08_DECODE_SYMBOLX4_2(op4, &bitD4);
|
||||||
|
HUFv08_DECODE_SYMBOLX4_1(op1, &bitD1);
|
||||||
|
HUFv08_DECODE_SYMBOLX4_1(op2, &bitD2);
|
||||||
|
HUFv08_DECODE_SYMBOLX4_1(op3, &bitD3);
|
||||||
|
HUFv08_DECODE_SYMBOLX4_1(op4, &bitD4);
|
||||||
|
HUFv08_DECODE_SYMBOLX4_2(op1, &bitD1);
|
||||||
|
HUFv08_DECODE_SYMBOLX4_2(op2, &bitD2);
|
||||||
|
HUFv08_DECODE_SYMBOLX4_2(op3, &bitD3);
|
||||||
|
HUFv08_DECODE_SYMBOLX4_2(op4, &bitD4);
|
||||||
|
HUFv08_DECODE_SYMBOLX4_0(op1, &bitD1);
|
||||||
|
HUFv08_DECODE_SYMBOLX4_0(op2, &bitD2);
|
||||||
|
HUFv08_DECODE_SYMBOLX4_0(op3, &bitD3);
|
||||||
|
HUFv08_DECODE_SYMBOLX4_0(op4, &bitD4);
|
||||||
|
|
||||||
|
endSignal = BIT_reloadDStream(&bitD1) | BIT_reloadDStream(&bitD2) | BIT_reloadDStream(&bitD3) | BIT_reloadDStream(&bitD4);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* check corruption */
|
||||||
|
if (op1 > opStart2) return ERROR(corruption_detected);
|
||||||
|
if (op2 > opStart3) return ERROR(corruption_detected);
|
||||||
|
if (op3 > opStart4) return ERROR(corruption_detected);
|
||||||
|
/* note : op4 supposed already verified within main loop */
|
||||||
|
|
||||||
|
/* finish bitStreams one by one */
|
||||||
|
HUFv08_decodeStreamX4(op1, &bitD1, opStart2, dt, dtLog);
|
||||||
|
HUFv08_decodeStreamX4(op2, &bitD2, opStart3, dt, dtLog);
|
||||||
|
HUFv08_decodeStreamX4(op3, &bitD3, opStart4, dt, dtLog);
|
||||||
|
HUFv08_decodeStreamX4(op4, &bitD4, oend, dt, dtLog);
|
||||||
|
|
||||||
|
/* check */
|
||||||
|
{ U32 const endCheck = BIT_endOfDStream(&bitD1) & BIT_endOfDStream(&bitD2) & BIT_endOfDStream(&bitD3) & BIT_endOfDStream(&bitD4);
|
||||||
|
if (!endCheck) return ERROR(corruption_detected); }
|
||||||
|
|
||||||
|
/* decoded size */
|
||||||
|
return dstSize;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
size_t HUFv08_decompress4X4_usingDTable(
|
||||||
|
void* dst, size_t dstSize,
|
||||||
|
const void* cSrc, size_t cSrcSize,
|
||||||
|
const HUFv08_DTable* DTable)
|
||||||
|
{
|
||||||
|
DTableDesc dtd = HUFv08_getDTableDesc(DTable);
|
||||||
|
if (dtd.tableType != 1) return ERROR(GENERIC);
|
||||||
|
return HUFv08_decompress4X4_usingDTable_internal(dst, dstSize, cSrc, cSrcSize, DTable);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
size_t HUFv08_decompress4X4_DCtx (HUFv08_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize)
|
||||||
|
{
|
||||||
|
const BYTE* ip = (const BYTE*) cSrc;
|
||||||
|
|
||||||
|
size_t hSize = HUFv08_readDTableX4 (dctx, cSrc, cSrcSize);
|
||||||
|
if (HUFv08_isError(hSize)) return hSize;
|
||||||
|
if (hSize >= cSrcSize) return ERROR(srcSize_wrong);
|
||||||
|
ip += hSize; cSrcSize -= hSize;
|
||||||
|
|
||||||
|
return HUFv08_decompress4X4_usingDTable_internal(dst, dstSize, ip, cSrcSize, dctx);
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t HUFv08_decompress4X4 (void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize)
|
||||||
|
{
|
||||||
|
HUFv08_CREATE_STATIC_DTABLEX4(DTable, HUFv08_TABLELOG_MAX);
|
||||||
|
return HUFv08_decompress4X4_DCtx(DTable, dst, dstSize, cSrc, cSrcSize);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* ********************************/
|
||||||
|
/* Generic decompression selector */
|
||||||
|
/* ********************************/
|
||||||
|
|
||||||
|
size_t HUFv08_decompress1X_usingDTable(void* dst, size_t maxDstSize,
|
||||||
|
const void* cSrc, size_t cSrcSize,
|
||||||
|
const HUFv08_DTable* DTable)
|
||||||
|
{
|
||||||
|
DTableDesc const dtd = HUFv08_getDTableDesc(DTable);
|
||||||
|
return dtd.tableType ? HUFv08_decompress1X4_usingDTable_internal(dst, maxDstSize, cSrc, cSrcSize, DTable) :
|
||||||
|
HUFv08_decompress1X2_usingDTable_internal(dst, maxDstSize, cSrc, cSrcSize, DTable);
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t HUFv08_decompress4X_usingDTable(void* dst, size_t maxDstSize,
|
||||||
|
const void* cSrc, size_t cSrcSize,
|
||||||
|
const HUFv08_DTable* DTable)
|
||||||
|
{
|
||||||
|
DTableDesc const dtd = HUFv08_getDTableDesc(DTable);
|
||||||
|
return dtd.tableType ? HUFv08_decompress4X4_usingDTable_internal(dst, maxDstSize, cSrc, cSrcSize, DTable) :
|
||||||
|
HUFv08_decompress4X2_usingDTable_internal(dst, maxDstSize, cSrc, cSrcSize, DTable);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
typedef struct { U32 tableTime; U32 decode256Time; } algo_time_t;
|
||||||
|
static const algo_time_t algoTime[16 /* Quantization */][3 /* single, double, quad */] =
|
||||||
|
{
|
||||||
|
/* single, double, quad */
|
||||||
|
{{0,0}, {1,1}, {2,2}}, /* Q==0 : impossible */
|
||||||
|
{{0,0}, {1,1}, {2,2}}, /* Q==1 : impossible */
|
||||||
|
{{ 38,130}, {1313, 74}, {2151, 38}}, /* Q == 2 : 12-18% */
|
||||||
|
{{ 448,128}, {1353, 74}, {2238, 41}}, /* Q == 3 : 18-25% */
|
||||||
|
{{ 556,128}, {1353, 74}, {2238, 47}}, /* Q == 4 : 25-32% */
|
||||||
|
{{ 714,128}, {1418, 74}, {2436, 53}}, /* Q == 5 : 32-38% */
|
||||||
|
{{ 883,128}, {1437, 74}, {2464, 61}}, /* Q == 6 : 38-44% */
|
||||||
|
{{ 897,128}, {1515, 75}, {2622, 68}}, /* Q == 7 : 44-50% */
|
||||||
|
{{ 926,128}, {1613, 75}, {2730, 75}}, /* Q == 8 : 50-56% */
|
||||||
|
{{ 947,128}, {1729, 77}, {3359, 77}}, /* Q == 9 : 56-62% */
|
||||||
|
{{1107,128}, {2083, 81}, {4006, 84}}, /* Q ==10 : 62-69% */
|
||||||
|
{{1177,128}, {2379, 87}, {4785, 88}}, /* Q ==11 : 69-75% */
|
||||||
|
{{1242,128}, {2415, 93}, {5155, 84}}, /* Q ==12 : 75-81% */
|
||||||
|
{{1349,128}, {2644,106}, {5260,106}}, /* Q ==13 : 81-87% */
|
||||||
|
{{1455,128}, {2422,124}, {4174,124}}, /* Q ==14 : 87-93% */
|
||||||
|
{{ 722,128}, {1891,145}, {1936,146}}, /* Q ==15 : 93-99% */
|
||||||
|
};
|
||||||
|
|
||||||
|
/** HUFv08_selectDecoder() :
|
||||||
|
* Tells which decoder is likely to decode faster,
|
||||||
|
* based on a set of pre-determined metrics.
|
||||||
|
* @return : 0==HUFv08_decompress4X2, 1==HUFv08_decompress4X4 .
|
||||||
|
* Assumption : 0 < cSrcSize < dstSize <= 128 KB */
|
||||||
|
U32 HUFv08_selectDecoder (size_t dstSize, size_t cSrcSize)
|
||||||
|
{
|
||||||
|
/* decoder timing evaluation */
|
||||||
|
U32 const Q = (U32)(cSrcSize * 16 / dstSize); /* Q < 16 since dstSize > cSrcSize */
|
||||||
|
U32 const D256 = (U32)(dstSize >> 8);
|
||||||
|
U32 const DTime0 = algoTime[Q][0].tableTime + (algoTime[Q][0].decode256Time * D256);
|
||||||
|
U32 DTime1 = algoTime[Q][1].tableTime + (algoTime[Q][1].decode256Time * D256);
|
||||||
|
DTime1 += DTime1 >> 3; /* advantage to algorithm using less memory, for cache eviction */
|
||||||
|
|
||||||
|
return DTime1 < DTime0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
typedef size_t (*decompressionAlgo)(void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize);
|
||||||
|
|
||||||
|
size_t HUFv08_decompress (void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize)
|
||||||
|
{
|
||||||
|
static const decompressionAlgo decompress[2] = { HUFv08_decompress4X2, HUFv08_decompress4X4 };
|
||||||
|
|
||||||
|
/* validation checks */
|
||||||
|
if (dstSize == 0) return ERROR(dstSize_tooSmall);
|
||||||
|
if (cSrcSize > dstSize) return ERROR(corruption_detected); /* invalid */
|
||||||
|
if (cSrcSize == dstSize) { memcpy(dst, cSrc, dstSize); return dstSize; } /* not compressed */
|
||||||
|
if (cSrcSize == 1) { memset(dst, *(const BYTE*)cSrc, dstSize); return dstSize; } /* RLE */
|
||||||
|
|
||||||
|
{ U32 const algoNb = HUFv08_selectDecoder(dstSize, cSrcSize);
|
||||||
|
return decompress[algoNb](dst, dstSize, cSrc, cSrcSize);
|
||||||
|
}
|
||||||
|
|
||||||
|
//return HUFv08_decompress4X2(dst, dstSize, cSrc, cSrcSize); /* multi-streams single-symbol decoding */
|
||||||
|
//return HUFv08_decompress4X4(dst, dstSize, cSrc, cSrcSize); /* multi-streams double-symbols decoding */
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t HUFv08_decompress4X_DCtx (HUFv08_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize)
|
||||||
|
{
|
||||||
|
/* validation checks */
|
||||||
|
if (dstSize == 0) return ERROR(dstSize_tooSmall);
|
||||||
|
if (cSrcSize > dstSize) return ERROR(corruption_detected); /* invalid */
|
||||||
|
if (cSrcSize == dstSize) { memcpy(dst, cSrc, dstSize); return dstSize; } /* not compressed */
|
||||||
|
if (cSrcSize == 1) { memset(dst, *(const BYTE*)cSrc, dstSize); return dstSize; } /* RLE */
|
||||||
|
|
||||||
|
{ U32 const algoNb = HUFv08_selectDecoder(dstSize, cSrcSize);
|
||||||
|
return algoNb ? HUFv08_decompress4X4_DCtx(dctx, dst, dstSize, cSrc, cSrcSize) :
|
||||||
|
HUFv08_decompress4X2_DCtx(dctx, dst, dstSize, cSrc, cSrcSize) ;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t HUFv08_decompress4X_hufOnly (HUFv08_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize)
|
||||||
|
{
|
||||||
|
/* validation checks */
|
||||||
|
if (dstSize == 0) return ERROR(dstSize_tooSmall);
|
||||||
|
if ((cSrcSize >= dstSize) || (cSrcSize <= 1)) return ERROR(corruption_detected); /* invalid */
|
||||||
|
|
||||||
|
{ U32 const algoNb = HUFv08_selectDecoder(dstSize, cSrcSize);
|
||||||
|
return algoNb ? HUFv08_decompress4X4_DCtx(dctx, dst, dstSize, cSrc, cSrcSize) :
|
||||||
|
HUFv08_decompress4X2_DCtx(dctx, dst, dstSize, cSrc, cSrcSize) ;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t HUFv08_decompress1X_DCtx (HUFv08_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize)
|
||||||
|
{
|
||||||
|
/* validation checks */
|
||||||
|
if (dstSize == 0) return ERROR(dstSize_tooSmall);
|
||||||
|
if (cSrcSize > dstSize) return ERROR(corruption_detected); /* invalid */
|
||||||
|
if (cSrcSize == dstSize) { memcpy(dst, cSrc, dstSize); return dstSize; } /* not compressed */
|
||||||
|
if (cSrcSize == 1) { memset(dst, *(const BYTE*)cSrc, dstSize); return dstSize; } /* RLE */
|
||||||
|
|
||||||
|
{ U32 const algoNb = HUFv08_selectDecoder(dstSize, cSrcSize);
|
||||||
|
return algoNb ? HUFv08_decompress1X4_DCtx(dctx, dst, dstSize, cSrc, cSrcSize) :
|
||||||
|
HUFv08_decompress1X2_DCtx(dctx, dst, dstSize, cSrc, cSrcSize) ;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
zstd_internal - common functions to include
|
||||||
|
Header File for include
|
||||||
|
Copyright (C) 2014-2016, 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 homepage : https://www.zstd.net
|
||||||
|
*/
|
||||||
|
#ifndef ZSTDv08_CCOMMON_H_MODULE
|
||||||
|
#define ZSTDv08_CCOMMON_H_MODULE
|
||||||
|
|
||||||
|
|
||||||
|
/*-*************************************
|
||||||
|
* Common macros
|
||||||
|
***************************************/
|
||||||
|
#define MIN(a,b) ((a)<(b) ? (a) : (b))
|
||||||
|
#define MAX(a,b) ((a)>(b) ? (a) : (b))
|
||||||
|
|
||||||
|
|
||||||
|
/*-*************************************
|
||||||
|
* Common constants
|
||||||
|
***************************************/
|
||||||
|
#define ZSTDv08_OPT_DEBUG 0 /* 3 = compression stats; 5 = check encoded sequences; 9 = full logs */
|
||||||
|
#if defined(ZSTDv08_OPT_DEBUG) && ZSTDv08_OPT_DEBUG>=9
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#define ZSTDv08_LOG_PARSER(...) printf(__VA_ARGS__)
|
||||||
|
#define ZSTDv08_LOG_ENCODE(...) printf(__VA_ARGS__)
|
||||||
|
#define ZSTDv08_LOG_BLOCK(...) printf(__VA_ARGS__)
|
||||||
|
#else
|
||||||
|
#define ZSTDv08_LOG_PARSER(...)
|
||||||
|
#define ZSTDv08_LOG_ENCODE(...)
|
||||||
|
#define ZSTDv08_LOG_BLOCK(...)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define ZSTDv08_OPT_NUM (1<<12)
|
||||||
|
#define ZSTDv08_DICT_MAGIC 0xEC30A437 /* v0.7+ */
|
||||||
|
|
||||||
|
#define ZSTDv08_REP_NUM 3 /* number of repcodes */
|
||||||
|
#define ZSTDv08_REP_CHECK (ZSTDv08_REP_NUM-0) /* number of repcodes to check by the optimal parser */
|
||||||
|
#define ZSTDv08_REP_MOVE (ZSTDv08_REP_NUM-1)
|
||||||
|
static const U32 repStartValue[ZSTDv08_REP_NUM] = { 1, 4, 8 };
|
||||||
|
|
||||||
|
#define KB *(1 <<10)
|
||||||
|
#define MB *(1 <<20)
|
||||||
|
#define GB *(1U<<30)
|
||||||
|
|
||||||
|
#define BIT7 128
|
||||||
|
#define BIT6 64
|
||||||
|
#define BIT5 32
|
||||||
|
#define BIT4 16
|
||||||
|
#define BIT1 2
|
||||||
|
#define BIT0 1
|
||||||
|
|
||||||
|
#define ZSTDv08_WINDOWLOG_ABSOLUTEMIN 10
|
||||||
|
static const size_t ZSTDv08_fcs_fieldSize[4] = { 0, 2, 4, 8 };
|
||||||
|
static const size_t ZSTDv08_did_fieldSize[4] = { 0, 1, 2, 4 };
|
||||||
|
|
||||||
|
#define ZSTDv08_BLOCKHEADERSIZE 3 /* C standard doesn't allow `static const` variable to be init using another `static const` variable */
|
||||||
|
static const size_t ZSTDv08_blockHeaderSize = ZSTDv08_BLOCKHEADERSIZE;
|
||||||
|
typedef enum { bt_raw, bt_rle, bt_compressed, bt_reserved } blockType_e;
|
||||||
|
|
||||||
|
#define MIN_SEQUENCES_SIZE 1 /* nbSeq==0 */
|
||||||
|
#define MIN_CBLOCK_SIZE (1 /*litCSize*/ + 1 /* RLE or RAW */ + MIN_SEQUENCES_SIZE /* nbSeq==0 */) /* for a non-null block */
|
||||||
|
|
||||||
|
#define HufLog 12
|
||||||
|
typedef enum { set_basic, set_rle, set_compressed, set_repeat } symbolEncodingType_e;
|
||||||
|
|
||||||
|
#define LONGNBSEQ 0x7F00
|
||||||
|
|
||||||
|
#define MINMATCH 3
|
||||||
|
#define EQUAL_READ32 4
|
||||||
|
|
||||||
|
#define Litbits 8
|
||||||
|
#define MaxLit ((1<<Litbits) - 1)
|
||||||
|
#define MaxML 52
|
||||||
|
#define MaxLL 35
|
||||||
|
#define MaxOff 28
|
||||||
|
#define MaxSeq MAX(MaxLL, MaxML) /* Assumption : MaxOff < MaxLL,MaxML */
|
||||||
|
#define MLFSELog 9
|
||||||
|
#define LLFSELog 9
|
||||||
|
#define OffFSELog 8
|
||||||
|
|
||||||
|
static const U32 LL_bits[MaxLL+1] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
|
1, 1, 1, 1, 2, 2, 3, 3, 4, 6, 7, 8, 9,10,11,12,
|
||||||
|
13,14,15,16 };
|
||||||
|
static const S16 LL_defaultNorm[MaxLL+1] = { 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1,
|
||||||
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 1, 1, 1, 1, 1,
|
||||||
|
-1,-1,-1,-1 };
|
||||||
|
static const U32 LL_defaultNormLog = 6;
|
||||||
|
|
||||||
|
static const U32 ML_bits[MaxML+1] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
|
1, 1, 1, 1, 2, 2, 3, 3, 4, 4, 5, 7, 8, 9,10,11,
|
||||||
|
12,13,14,15,16 };
|
||||||
|
static const S16 ML_defaultNorm[MaxML+1] = { 1, 4, 3, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1,
|
||||||
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||||||
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,-1,-1,
|
||||||
|
-1,-1,-1,-1,-1 };
|
||||||
|
static const U32 ML_defaultNormLog = 6;
|
||||||
|
|
||||||
|
static const S16 OF_defaultNorm[MaxOff+1] = { 1, 1, 1, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1,
|
||||||
|
1, 1, 1, 1, 1, 1, 1, 1,-1,-1,-1,-1,-1 };
|
||||||
|
static const U32 OF_defaultNormLog = 5;
|
||||||
|
|
||||||
|
|
||||||
|
/*-*******************************************
|
||||||
|
* Shared functions to include for inlining
|
||||||
|
*********************************************/
|
||||||
|
static void ZSTDv08_copy8(void* dst, const void* src) { memcpy(dst, src, 8); }
|
||||||
|
#define COPY8(d,s) { ZSTDv08_copy8(d,s); d+=8; s+=8; }
|
||||||
|
|
||||||
|
/*! ZSTDv08_wildcopy() :
|
||||||
|
* custom version of memcpy(), can copy up to 7 bytes too many (8 bytes if length==0) */
|
||||||
|
#define WILDCOPY_OVERLENGTH 8
|
||||||
|
MEM_STATIC void ZSTDv08_wildcopy(void* dst, const void* src, size_t length)
|
||||||
|
{
|
||||||
|
const BYTE* ip = (const BYTE*)src;
|
||||||
|
BYTE* op = (BYTE*)dst;
|
||||||
|
BYTE* const oend = op + length;
|
||||||
|
do
|
||||||
|
COPY8(op, ip)
|
||||||
|
while (op < oend);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*-*******************************************
|
||||||
|
* Private interfaces
|
||||||
|
*********************************************/
|
||||||
|
typedef struct ZSTDv08_stats_s ZSTDv08_stats_t;
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
U32 off;
|
||||||
|
U32 len;
|
||||||
|
} ZSTDv08_match_t;
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
U32 price;
|
||||||
|
U32 off;
|
||||||
|
U32 mlen;
|
||||||
|
U32 litlen;
|
||||||
|
U32 rep[ZSTDv08_REP_NUM];
|
||||||
|
} ZSTDv08_optimal_t;
|
||||||
|
|
||||||
|
#if ZSTDv08_OPT_DEBUG == 3
|
||||||
|
#include ".debug/zstd_stats.h"
|
||||||
|
#else
|
||||||
|
struct ZSTDv08_stats_s { U32 unused; };
|
||||||
|
MEM_STATIC void ZSTDv08_statsPrint(ZSTDv08_stats_t* stats, U32 searchLength) { (void)stats; (void)searchLength; }
|
||||||
|
MEM_STATIC void ZSTDv08_statsInit(ZSTDv08_stats_t* stats) { (void)stats; }
|
||||||
|
MEM_STATIC void ZSTDv08_statsResetFreqs(ZSTDv08_stats_t* stats) { (void)stats; }
|
||||||
|
MEM_STATIC void ZSTDv08_statsUpdatePrices(ZSTDv08_stats_t* stats, size_t litLength, const BYTE* literals, size_t offset, size_t matchLength) { (void)stats; (void)litLength; (void)literals; (void)offset; (void)matchLength; }
|
||||||
|
#endif /* #if ZSTDv08_OPT_DEBUG == 3 */
|
||||||
|
|
||||||
|
|
||||||
|
typedef struct seqDef_s {
|
||||||
|
U32 offset;
|
||||||
|
U16 litLength;
|
||||||
|
U16 matchLength;
|
||||||
|
} seqDef;
|
||||||
|
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
seqDef* sequencesStart;
|
||||||
|
seqDef* sequences;
|
||||||
|
BYTE* litStart;
|
||||||
|
BYTE* lit;
|
||||||
|
BYTE* llCode;
|
||||||
|
BYTE* mlCode;
|
||||||
|
BYTE* ofCode;
|
||||||
|
U32 longLengthID; /* 0 == no longLength; 1 == Lit.longLength; 2 == Match.longLength; */
|
||||||
|
U32 longLengthPos;
|
||||||
|
/* opt */
|
||||||
|
ZSTDv08_optimal_t* priceTable;
|
||||||
|
ZSTDv08_match_t* matchTable;
|
||||||
|
U32* matchLengthFreq;
|
||||||
|
U32* litLengthFreq;
|
||||||
|
U32* litFreq;
|
||||||
|
U32* offCodeFreq;
|
||||||
|
U32 matchLengthSum;
|
||||||
|
U32 matchSum;
|
||||||
|
U32 litLengthSum;
|
||||||
|
U32 litSum;
|
||||||
|
U32 offCodeSum;
|
||||||
|
U32 log2matchLengthSum;
|
||||||
|
U32 log2matchSum;
|
||||||
|
U32 log2litLengthSum;
|
||||||
|
U32 log2litSum;
|
||||||
|
U32 log2offCodeSum;
|
||||||
|
U32 factor;
|
||||||
|
U32 cachedPrice;
|
||||||
|
U32 cachedLitLength;
|
||||||
|
const BYTE* cachedLiterals;
|
||||||
|
ZSTDv08_stats_t stats;
|
||||||
|
} seqStore_t;
|
||||||
|
|
||||||
|
void ZSTDv08_seqToCodes(const seqStore_t* seqStorePtr);
|
||||||
|
int ZSTDv08_isSkipFrame(ZSTDv08_DCtx* dctx);
|
||||||
|
|
||||||
|
/* custom memory allocation functions */
|
||||||
|
void* ZSTDv08_defaultAllocFunction(void* opaque, size_t size);
|
||||||
|
void ZSTDv08_defaultFreeFunction(void* opaque, void* address);
|
||||||
|
static const ZSTDv08_customMem defaultCustomMem = { ZSTDv08_defaultAllocFunction, ZSTDv08_defaultFreeFunction, NULL };
|
||||||
|
|
||||||
|
/*====== common function ======*/
|
||||||
|
|
||||||
|
MEM_STATIC U32 ZSTDv08_highbit32(U32 val)
|
||||||
|
{
|
||||||
|
# if defined(_MSC_VER) /* Visual */
|
||||||
|
unsigned long r=0;
|
||||||
|
_BitScanReverse(&r, val);
|
||||||
|
return (unsigned)r;
|
||||||
|
# elif defined(__GNUC__) && (__GNUC__ >= 3) /* GCC Intrinsic */
|
||||||
|
return 31 - __builtin_clz(val);
|
||||||
|
# else /* Software version */
|
||||||
|
static const int DeBruijnClz[32] = { 0, 9, 1, 10, 13, 21, 2, 29, 11, 14, 16, 18, 22, 25, 3, 30, 8, 12, 20, 28, 15, 17, 24, 7, 19, 27, 23, 6, 26, 5, 4, 31 };
|
||||||
|
U32 v = val;
|
||||||
|
int r;
|
||||||
|
v |= v >> 1;
|
||||||
|
v |= v >> 2;
|
||||||
|
v |= v >> 4;
|
||||||
|
v |= v >> 8;
|
||||||
|
v |= v >> 16;
|
||||||
|
r = DeBruijnClz[(U32)(v * 0x07C4ACDDU) >> 27];
|
||||||
|
return r;
|
||||||
|
# endif
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#endif /* ZSTDv08_CCOMMON_H_MODULE */
|
||||||
|
/*
|
||||||
|
zstd - standard compression library
|
||||||
|
Copyright (C) 2014-2016, 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 homepage : http://www.zstd.net
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* ***************************************************************
|
||||||
|
* Tuning parameters
|
||||||
|
*****************************************************************/
|
||||||
|
/*!
|
||||||
|
* HEAPMODE :
|
||||||
|
* Select how default decompression function ZSTDv08_decompress() will allocate memory,
|
||||||
|
* in memory stack (0), or in memory heap (1, requires malloc())
|
||||||
|
*/
|
||||||
|
#ifndef ZSTDv08_HEAPMODE
|
||||||
|
# define ZSTDv08_HEAPMODE 1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*-*******************************************************
|
||||||
|
* 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
|
||||||
|
# ifdef __GNUC__
|
||||||
|
# define FORCE_INLINE static inline __attribute__((always_inline))
|
||||||
|
# else
|
||||||
|
# define FORCE_INLINE static inline
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/*-*************************************
|
||||||
|
* Macros
|
||||||
|
***************************************/
|
||||||
|
#define ZSTDv08_isError ERR_isError /* for inlining */
|
||||||
|
#define FSEv08_isError ERR_isError
|
||||||
|
#define HUFv08_isError ERR_isError
|
||||||
|
|
||||||
|
|
||||||
|
/*_*******************************************************
|
||||||
|
* Memory operations
|
||||||
|
**********************************************************/
|
||||||
|
static void ZSTDv08_copy4(void* dst, const void* src) { memcpy(dst, src, 4); }
|
||||||
|
|
||||||
|
|
||||||
|
/*-*************************************************************
|
||||||
|
* Context management
|
||||||
|
***************************************************************/
|
||||||
|
typedef enum { ZSTDds_getFrameHeaderSize, ZSTDds_decodeFrameHeader,
|
||||||
|
ZSTDds_decodeBlockHeader, ZSTDds_decompressBlock,
|
||||||
|
ZSTDds_decompressLastBlock, ZSTDds_checkChecksum,
|
||||||
|
ZSTDds_decodeSkippableHeader, ZSTDds_skipFrame } ZSTDv08_dStage;
|
||||||
|
|
||||||
|
struct ZSTDv08_DCtx_s
|
||||||
|
{
|
||||||
|
FSEv08_DTable LLTable[FSEv08_DTABLE_SIZE_U32(LLFSELog)];
|
||||||
|
FSEv08_DTable OffTable[FSEv08_DTABLE_SIZE_U32(OffFSELog)];
|
||||||
|
FSEv08_DTable MLTable[FSEv08_DTABLE_SIZE_U32(MLFSELog)];
|
||||||
|
HUFv08_DTable hufTable[HUFv08_DTABLE_SIZE(HufLog)]; /* can accommodate HUFv08_decompress4X */
|
||||||
|
const void* previousDstEnd;
|
||||||
|
const void* base;
|
||||||
|
const void* vBase;
|
||||||
|
const void* dictEnd;
|
||||||
|
size_t expected;
|
||||||
|
U32 rep[ZSTDv08_REP_NUM];
|
||||||
|
ZSTDv08_frameParams fParams;
|
||||||
|
blockType_e bType; /* used in ZSTDv08_decompressContinue(), to transfer blockType between header decoding and block decoding stages */
|
||||||
|
ZSTDv08_dStage stage;
|
||||||
|
U32 litEntropy;
|
||||||
|
U32 fseEntropy;
|
||||||
|
XXH64_state_t xxhState;
|
||||||
|
size_t headerSize;
|
||||||
|
U32 dictID;
|
||||||
|
const BYTE* litPtr;
|
||||||
|
ZSTDv08_customMem customMem;
|
||||||
|
size_t litBufSize;
|
||||||
|
size_t litSize;
|
||||||
|
size_t rleSize;
|
||||||
|
BYTE litBuffer[ZSTDv08_BLOCKSIZE_ABSOLUTEMAX + WILDCOPY_OVERLENGTH];
|
||||||
|
BYTE headerBuffer[ZSTDv08_FRAMEHEADERSIZE_MAX];
|
||||||
|
}; /* typedef'd to ZSTDv08_DCtx within "zstd_static.h" */
|
||||||
|
|
||||||
|
size_t ZSTDv08_sizeofDCtx (const ZSTDv08_DCtx* dctx) { return sizeof(*dctx); }
|
||||||
|
|
||||||
|
size_t ZSTDv08_estimateDCtxSize(void) { return sizeof(ZSTDv08_DCtx); }
|
||||||
|
|
||||||
|
size_t ZSTDv08_decompressBegin(ZSTDv08_DCtx* dctx)
|
||||||
|
{
|
||||||
|
dctx->expected = ZSTDv08_frameHeaderSize_min;
|
||||||
|
dctx->stage = ZSTDds_getFrameHeaderSize;
|
||||||
|
dctx->previousDstEnd = NULL;
|
||||||
|
dctx->base = NULL;
|
||||||
|
dctx->vBase = NULL;
|
||||||
|
dctx->dictEnd = NULL;
|
||||||
|
dctx->hufTable[0] = (HUFv08_DTable)((HufLog)*0x1000001);
|
||||||
|
dctx->litEntropy = dctx->fseEntropy = 0;
|
||||||
|
dctx->dictID = 0;
|
||||||
|
{ int i; for (i=0; i<ZSTDv08_REP_NUM; i++) dctx->rep[i] = repStartValue[i]; }
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
ZSTDv08_DCtx* ZSTDv08_createDCtx_advanced(ZSTDv08_customMem customMem)
|
||||||
|
{
|
||||||
|
ZSTDv08_DCtx* dctx;
|
||||||
|
|
||||||
|
if (!customMem.customAlloc && !customMem.customFree)
|
||||||
|
customMem = defaultCustomMem;
|
||||||
|
|
||||||
|
if (!customMem.customAlloc || !customMem.customFree)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
dctx = (ZSTDv08_DCtx*) customMem.customAlloc(customMem.opaque, sizeof(ZSTDv08_DCtx));
|
||||||
|
if (!dctx) return NULL;
|
||||||
|
memcpy(&dctx->customMem, &customMem, sizeof(ZSTDv08_customMem));
|
||||||
|
ZSTDv08_decompressBegin(dctx);
|
||||||
|
return dctx;
|
||||||
|
}
|
||||||
|
|
||||||
|
ZSTDv08_DCtx* ZSTDv08_createDCtx(void)
|
||||||
|
{
|
||||||
|
return ZSTDv08_createDCtx_advanced(defaultCustomMem);
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t ZSTDv08_freeDCtx(ZSTDv08_DCtx* dctx)
|
||||||
|
{
|
||||||
|
if (dctx==NULL) return 0; /* support free on NULL */
|
||||||
|
dctx->customMem.customFree(dctx->customMem.opaque, dctx);
|
||||||
|
return 0; /* reserved as a potential error code in the future */
|
||||||
|
}
|
||||||
|
|
||||||
|
void ZSTDv08_copyDCtx(ZSTDv08_DCtx* dstDCtx, const ZSTDv08_DCtx* srcDCtx)
|
||||||
|
{
|
||||||
|
memcpy(dstDCtx, srcDCtx,
|
||||||
|
sizeof(ZSTDv08_DCtx) - (ZSTDv08_BLOCKSIZE_ABSOLUTEMAX+WILDCOPY_OVERLENGTH + ZSTDv08_frameHeaderSize_max)); /* no need to copy workspace */
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*-*************************************************************
|
||||||
|
* Decompression section
|
||||||
|
***************************************************************/
|
||||||
|
|
||||||
|
/* See compression format details in : zstd_compression_format.md */
|
||||||
|
|
||||||
|
/** ZSTDv08_frameHeaderSize() :
|
||||||
|
* srcSize must be >= ZSTDv08_frameHeaderSize_min.
|
||||||
|
* @return : size of the Frame Header */
|
||||||
|
static size_t ZSTDv08_frameHeaderSize(const void* src, size_t srcSize)
|
||||||
|
{
|
||||||
|
if (srcSize < ZSTDv08_frameHeaderSize_min) return ERROR(srcSize_wrong);
|
||||||
|
{ BYTE const fhd = ((const BYTE*)src)[4];
|
||||||
|
U32 const dictID= fhd & 3;
|
||||||
|
U32 const singleSegment = (fhd >> 5) & 1;
|
||||||
|
U32 const fcsId = fhd >> 6;
|
||||||
|
return ZSTDv08_frameHeaderSize_min + !singleSegment + ZSTDv08_did_fieldSize[dictID] + ZSTDv08_fcs_fieldSize[fcsId]
|
||||||
|
+ (singleSegment && !ZSTDv08_fcs_fieldSize[fcsId]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/** ZSTDv08_getFrameParams() :
|
||||||
|
* decode Frame Header, or require larger `srcSize`.
|
||||||
|
* @return : 0, `fparamsPtr` is correctly filled,
|
||||||
|
* >0, `srcSize` is too small, result is expected `srcSize`,
|
||||||
|
* or an error code, which can be tested using ZSTDv08_isError() */
|
||||||
|
size_t ZSTDv08_getFrameParams(ZSTDv08_frameParams* fparamsPtr, const void* src, size_t srcSize)
|
||||||
|
{
|
||||||
|
const BYTE* ip = (const BYTE*)src;
|
||||||
|
|
||||||
|
if (srcSize < ZSTDv08_frameHeaderSize_min) return ZSTDv08_frameHeaderSize_min;
|
||||||
|
if (MEM_readLE32(src) != ZSTDv08_MAGICNUMBER) {
|
||||||
|
if ((MEM_readLE32(src) & 0xFFFFFFF0U) == ZSTDv08_MAGIC_SKIPPABLE_START) {
|
||||||
|
if (srcSize < ZSTDv08_skippableHeaderSize) return ZSTDv08_skippableHeaderSize; /* magic number + skippable frame length */
|
||||||
|
memset(fparamsPtr, 0, sizeof(*fparamsPtr));
|
||||||
|
fparamsPtr->frameContentSize = MEM_readLE32((const char *)src + 4);
|
||||||
|
fparamsPtr->windowSize = 0; /* windowSize==0 means a frame is skippable */
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
return ERROR(prefix_unknown);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ensure there is enough `srcSize` to fully read/decode frame header */
|
||||||
|
{ size_t const fhsize = ZSTDv08_frameHeaderSize(src, srcSize);
|
||||||
|
if (srcSize < fhsize) return fhsize; }
|
||||||
|
|
||||||
|
{ BYTE const fhdByte = ip[4];
|
||||||
|
size_t pos = 5;
|
||||||
|
U32 const dictIDSizeCode = fhdByte&3;
|
||||||
|
U32 const checksumFlag = (fhdByte>>2)&1;
|
||||||
|
U32 const singleSegment = (fhdByte>>5)&1;
|
||||||
|
U32 const fcsID = fhdByte>>6;
|
||||||
|
U32 const windowSizeMax = 1U << ZSTDv08_WINDOWLOG_MAX;
|
||||||
|
U32 windowSize = 0;
|
||||||
|
U32 dictID = 0;
|
||||||
|
U64 frameContentSize = 0;
|
||||||
|
if ((fhdByte & 0x08) != 0) return ERROR(frameParameter_unsupported); /* reserved bits, which must be zero */
|
||||||
|
if (!singleSegment) {
|
||||||
|
BYTE const wlByte = ip[pos++];
|
||||||
|
U32 const windowLog = (wlByte >> 3) + ZSTDv08_WINDOWLOG_ABSOLUTEMIN;
|
||||||
|
if (windowLog > ZSTDv08_WINDOWLOG_MAX) return ERROR(frameParameter_unsupported);
|
||||||
|
windowSize = (1U << windowLog);
|
||||||
|
windowSize += (windowSize >> 3) * (wlByte&7);
|
||||||
|
}
|
||||||
|
|
||||||
|
switch(dictIDSizeCode)
|
||||||
|
{
|
||||||
|
default: /* impossible */
|
||||||
|
case 0 : break;
|
||||||
|
case 1 : dictID = ip[pos]; pos++; break;
|
||||||
|
case 2 : dictID = MEM_readLE16(ip+pos); pos+=2; break;
|
||||||
|
case 3 : dictID = MEM_readLE32(ip+pos); pos+=4; break;
|
||||||
|
}
|
||||||
|
switch(fcsID)
|
||||||
|
{
|
||||||
|
default: /* impossible */
|
||||||
|
case 0 : if (singleSegment) frameContentSize = ip[pos]; break;
|
||||||
|
case 1 : frameContentSize = MEM_readLE16(ip+pos)+256; break;
|
||||||
|
case 2 : frameContentSize = MEM_readLE32(ip+pos); break;
|
||||||
|
case 3 : frameContentSize = MEM_readLE64(ip+pos); break;
|
||||||
|
}
|
||||||
|
if (!windowSize) windowSize = (U32)frameContentSize;
|
||||||
|
if (windowSize > windowSizeMax) return ERROR(frameParameter_unsupported);
|
||||||
|
fparamsPtr->frameContentSize = frameContentSize;
|
||||||
|
fparamsPtr->windowSize = windowSize;
|
||||||
|
fparamsPtr->dictID = dictID;
|
||||||
|
fparamsPtr->checksumFlag = checksumFlag;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/** ZSTDv08_getDecompressedSize() :
|
||||||
|
* compatible with legacy mode
|
||||||
|
* @return : decompressed size if known, 0 otherwise
|
||||||
|
note : 0 can mean any of the following :
|
||||||
|
- decompressed size is not present within frame header
|
||||||
|
- frame header unknown / not supported
|
||||||
|
- frame header not complete (`srcSize` too small) */
|
||||||
|
unsigned long long ZSTDv08_getDecompressedSize(const void* src, size_t srcSize)
|
||||||
|
{
|
||||||
|
{ ZSTDv08_frameParams fparams;
|
||||||
|
size_t const frResult = ZSTDv08_getFrameParams(&fparams, src, srcSize);
|
||||||
|
if (frResult!=0) return 0;
|
||||||
|
return fparams.frameContentSize;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/** ZSTDv08_decodeFrameHeader() :
|
||||||
|
* `srcSize` must be the size provided by ZSTDv08_frameHeaderSize().
|
||||||
|
* @return : 0 if success, or an error code, which can be tested using ZSTDv08_isError() */
|
||||||
|
static size_t ZSTDv08_decodeFrameHeader(ZSTDv08_DCtx* dctx, const void* src, size_t srcSize)
|
||||||
|
{
|
||||||
|
size_t const result = ZSTDv08_getFrameParams(&(dctx->fParams), src, srcSize);
|
||||||
|
if (dctx->fParams.dictID && (dctx->dictID != dctx->fParams.dictID)) return ERROR(dictionary_wrong);
|
||||||
|
if (dctx->fParams.checksumFlag) XXH64_reset(&dctx->xxhState, 0);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
typedef struct
|
||||||
|
{
|
||||||
|
blockType_e blockType;
|
||||||
|
U32 lastBlock;
|
||||||
|
U32 origSize;
|
||||||
|
} blockProperties_t;
|
||||||
|
|
||||||
|
/*! ZSTDv08_getcBlockSize() :
|
||||||
|
* Provides the size of compressed block from block header `src` */
|
||||||
|
size_t ZSTDv08_getcBlockSize(const void* src, size_t srcSize, blockProperties_t* bpPtr)
|
||||||
|
{
|
||||||
|
if (srcSize < ZSTDv08_blockHeaderSize) return ERROR(srcSize_wrong);
|
||||||
|
{ U32 const cBlockHeader = MEM_readLE24(src);
|
||||||
|
U32 const cSize = cBlockHeader >> 3;
|
||||||
|
bpPtr->lastBlock = cBlockHeader & 1;
|
||||||
|
bpPtr->blockType = (blockType_e)((cBlockHeader >> 1) & 3);
|
||||||
|
bpPtr->origSize = cSize; /* only useful for RLE */
|
||||||
|
if (bpPtr->blockType == bt_rle) return 1;
|
||||||
|
if (bpPtr->blockType == bt_reserved) return ERROR(corruption_detected);
|
||||||
|
return cSize;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static size_t ZSTDv08_copyRawBlock(void* dst, size_t dstCapacity, const void* src, size_t srcSize)
|
||||||
|
{
|
||||||
|
if (srcSize > dstCapacity) return ERROR(dstSize_tooSmall);
|
||||||
|
memcpy(dst, src, srcSize);
|
||||||
|
return srcSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static size_t ZSTDv08_setRleBlock(void* dst, size_t dstCapacity, const void* src, size_t srcSize, size_t regenSize)
|
||||||
|
{
|
||||||
|
if (srcSize != 1) return ERROR(srcSize_wrong);
|
||||||
|
if (regenSize > dstCapacity) return ERROR(dstSize_tooSmall);
|
||||||
|
memset(dst, *(const BYTE*)src, regenSize);
|
||||||
|
return regenSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*! ZSTDv08_decodeLiteralsBlock() :
|
||||||
|
@return : nb of bytes read from src (< srcSize ) */
|
||||||
|
size_t ZSTDv08_decodeLiteralsBlock(ZSTDv08_DCtx* dctx,
|
||||||
|
const void* src, size_t srcSize) /* note : srcSize < BLOCKSIZE */
|
||||||
|
{
|
||||||
|
if (srcSize < MIN_CBLOCK_SIZE) return ERROR(corruption_detected);
|
||||||
|
|
||||||
|
{ const BYTE* const istart = (const BYTE*) src;
|
||||||
|
symbolEncodingType_e const litEncType = (symbolEncodingType_e)(istart[0] & 3);
|
||||||
|
|
||||||
|
switch(litEncType)
|
||||||
|
{
|
||||||
|
case set_repeat:
|
||||||
|
if (dctx->litEntropy==0) return ERROR(dictionary_corrupted);
|
||||||
|
/* fall-through */
|
||||||
|
case set_compressed:
|
||||||
|
if (srcSize < 5) return ERROR(corruption_detected); /* srcSize >= MIN_CBLOCK_SIZE == 3; here we need up to 5 for case 3 */
|
||||||
|
{ size_t lhSize, litSize, litCSize;
|
||||||
|
U32 singleStream=0;
|
||||||
|
U32 const lhlCode = (istart[0] >> 2) & 3;
|
||||||
|
U32 const lhc = MEM_readLE32(istart);
|
||||||
|
switch(lhlCode)
|
||||||
|
{
|
||||||
|
case 0: case 1: default: /* note : default is impossible, since lhlCode into [0..3] */
|
||||||
|
/* 2 - 2 - 10 - 10 */
|
||||||
|
{ singleStream = !lhlCode;
|
||||||
|
lhSize = 3;
|
||||||
|
litSize = (lhc >> 4) & 0x3FF;
|
||||||
|
litCSize = (lhc >> 14) & 0x3FF;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 2:
|
||||||
|
/* 2 - 2 - 14 - 14 */
|
||||||
|
{ lhSize = 4;
|
||||||
|
litSize = (lhc >> 4) & 0x3FFF;
|
||||||
|
litCSize = lhc >> 18;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 3:
|
||||||
|
/* 2 - 2 - 18 - 18 */
|
||||||
|
{ lhSize = 5;
|
||||||
|
litSize = (lhc >> 4) & 0x3FFFF;
|
||||||
|
litCSize = (lhc >> 22) + (istart[4] << 10);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (litSize > ZSTDv08_BLOCKSIZE_ABSOLUTEMAX) return ERROR(corruption_detected);
|
||||||
|
if (litCSize + lhSize > srcSize) return ERROR(corruption_detected);
|
||||||
|
|
||||||
|
if (HUFv08_isError((litEncType==set_repeat) ?
|
||||||
|
( singleStream ?
|
||||||
|
HUFv08_decompress1X_usingDTable(dctx->litBuffer, litSize, istart+lhSize, litCSize, dctx->hufTable) :
|
||||||
|
HUFv08_decompress4X_usingDTable(dctx->litBuffer, litSize, istart+lhSize, litCSize, dctx->hufTable) ) :
|
||||||
|
( singleStream ?
|
||||||
|
HUFv08_decompress1X2_DCtx(dctx->hufTable, dctx->litBuffer, litSize, istart+lhSize, litCSize) :
|
||||||
|
HUFv08_decompress4X_hufOnly (dctx->hufTable, dctx->litBuffer, litSize, istart+lhSize, litCSize)) ))
|
||||||
|
return ERROR(corruption_detected);
|
||||||
|
|
||||||
|
dctx->litPtr = dctx->litBuffer;
|
||||||
|
dctx->litBufSize = ZSTDv08_BLOCKSIZE_ABSOLUTEMAX+WILDCOPY_OVERLENGTH;
|
||||||
|
dctx->litSize = litSize;
|
||||||
|
dctx->litEntropy = 1;
|
||||||
|
return litCSize + lhSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
case set_basic:
|
||||||
|
{ size_t litSize, lhSize;
|
||||||
|
U32 const lhlCode = ((istart[0]) >> 2) & 3;
|
||||||
|
switch(lhlCode)
|
||||||
|
{
|
||||||
|
case 0: case 2: default: /* note : default is impossible, since lhlCode into [0..3] */
|
||||||
|
lhSize = 1;
|
||||||
|
litSize = istart[0] >> 3;
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
lhSize = 2;
|
||||||
|
litSize = MEM_readLE16(istart) >> 4;
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
lhSize = 3;
|
||||||
|
litSize = MEM_readLE24(istart) >> 4;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (lhSize+litSize+WILDCOPY_OVERLENGTH > srcSize) { /* risk reading beyond src buffer with wildcopy */
|
||||||
|
if (litSize+lhSize > srcSize) return ERROR(corruption_detected);
|
||||||
|
memcpy(dctx->litBuffer, istart+lhSize, litSize);
|
||||||
|
dctx->litPtr = dctx->litBuffer;
|
||||||
|
dctx->litBufSize = ZSTDv08_BLOCKSIZE_ABSOLUTEMAX+8;
|
||||||
|
dctx->litSize = litSize;
|
||||||
|
return lhSize+litSize;
|
||||||
|
}
|
||||||
|
/* direct reference into compressed stream */
|
||||||
|
dctx->litPtr = istart+lhSize;
|
||||||
|
dctx->litBufSize = srcSize-lhSize;
|
||||||
|
dctx->litSize = litSize;
|
||||||
|
return lhSize+litSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
case set_rle:
|
||||||
|
{ U32 const lhlCode = ((istart[0]) >> 2) & 3;
|
||||||
|
size_t litSize, lhSize;
|
||||||
|
switch(lhlCode)
|
||||||
|
{
|
||||||
|
case 0: case 2: default: /* note : default is impossible, since lhlCode into [0..3] */
|
||||||
|
lhSize = 1;
|
||||||
|
litSize = istart[0] >> 3;
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
lhSize = 2;
|
||||||
|
litSize = MEM_readLE16(istart) >> 4;
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
lhSize = 3;
|
||||||
|
litSize = MEM_readLE24(istart) >> 4;
|
||||||
|
if (srcSize<4) return ERROR(corruption_detected); /* srcSize >= MIN_CBLOCK_SIZE == 3; here we need lhSize+1 = 4 */
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (litSize > ZSTDv08_BLOCKSIZE_ABSOLUTEMAX) return ERROR(corruption_detected);
|
||||||
|
memset(dctx->litBuffer, istart[lhSize], litSize);
|
||||||
|
dctx->litPtr = dctx->litBuffer;
|
||||||
|
dctx->litBufSize = ZSTDv08_BLOCKSIZE_ABSOLUTEMAX+WILDCOPY_OVERLENGTH;
|
||||||
|
dctx->litSize = litSize;
|
||||||
|
return lhSize+1;
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
return ERROR(corruption_detected); /* impossible */
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*! ZSTDv08_buildSeqTable() :
|
||||||
|
@return : nb bytes read from src,
|
||||||
|
or an error code if it fails, testable with ZSTDv08_isError()
|
||||||
|
*/
|
||||||
|
size_t ZSTDv08_buildSeqTable(FSEv08_DTable* DTable, symbolEncodingType_e type, U32 max, U32 maxLog,
|
||||||
|
const void* src, size_t srcSize,
|
||||||
|
const S16* defaultNorm, U32 defaultLog, U32 flagRepeatTable)
|
||||||
|
{
|
||||||
|
switch(type)
|
||||||
|
{
|
||||||
|
case set_rle :
|
||||||
|
if (!srcSize) return ERROR(srcSize_wrong);
|
||||||
|
if ( (*(const BYTE*)src) > max) return ERROR(corruption_detected);
|
||||||
|
FSEv08_buildDTable_rle(DTable, *(const BYTE*)src); /* if *src > max, data is corrupted */
|
||||||
|
return 1;
|
||||||
|
case set_basic :
|
||||||
|
FSEv08_buildDTable(DTable, defaultNorm, max, defaultLog);
|
||||||
|
return 0;
|
||||||
|
case set_repeat:
|
||||||
|
if (!flagRepeatTable) return ERROR(corruption_detected);
|
||||||
|
return 0;
|
||||||
|
default : /* impossible */
|
||||||
|
case set_compressed :
|
||||||
|
{ U32 tableLog;
|
||||||
|
S16 norm[MaxSeq+1];
|
||||||
|
size_t const headerSize = FSEv08_readNCount(norm, &max, &tableLog, src, srcSize);
|
||||||
|
if (FSEv08_isError(headerSize)) return ERROR(corruption_detected);
|
||||||
|
if (tableLog > maxLog) return ERROR(corruption_detected);
|
||||||
|
FSEv08_buildDTable(DTable, norm, max, tableLog);
|
||||||
|
return headerSize;
|
||||||
|
} }
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
size_t ZSTDv08_decodeSeqHeaders(int* nbSeqPtr,
|
||||||
|
FSEv08_DTable* DTableLL, FSEv08_DTable* DTableML, FSEv08_DTable* DTableOffb, U32 flagRepeatTable,
|
||||||
|
const void* src, size_t srcSize)
|
||||||
|
{
|
||||||
|
const BYTE* const istart = (const BYTE* const)src;
|
||||||
|
const BYTE* const iend = istart + srcSize;
|
||||||
|
const BYTE* ip = istart;
|
||||||
|
|
||||||
|
/* check */
|
||||||
|
if (srcSize < MIN_SEQUENCES_SIZE) return ERROR(srcSize_wrong);
|
||||||
|
|
||||||
|
/* SeqHead */
|
||||||
|
{ int nbSeq = *ip++;
|
||||||
|
if (!nbSeq) { *nbSeqPtr=0; return 1; }
|
||||||
|
if (nbSeq > 0x7F) {
|
||||||
|
if (nbSeq == 0xFF)
|
||||||
|
nbSeq = MEM_readLE16(ip) + LONGNBSEQ, ip+=2;
|
||||||
|
else
|
||||||
|
nbSeq = ((nbSeq-0x80)<<8) + *ip++;
|
||||||
|
}
|
||||||
|
*nbSeqPtr = nbSeq;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* FSE table descriptors */
|
||||||
|
if (ip+4 > iend) return ERROR(srcSize_wrong); /* minimum possible size */
|
||||||
|
{ symbolEncodingType_e const LLtype = (symbolEncodingType_e)(*ip >> 6);
|
||||||
|
symbolEncodingType_e const OFtype = (symbolEncodingType_e)((*ip >> 4) & 3);
|
||||||
|
symbolEncodingType_e const MLtype = (symbolEncodingType_e)((*ip >> 2) & 3);
|
||||||
|
ip++;
|
||||||
|
|
||||||
|
/* Build DTables */
|
||||||
|
{ size_t const llhSize = ZSTDv08_buildSeqTable(DTableLL, LLtype, MaxLL, LLFSELog, ip, iend-ip, LL_defaultNorm, LL_defaultNormLog, flagRepeatTable);
|
||||||
|
if (ZSTDv08_isError(llhSize)) return ERROR(corruption_detected);
|
||||||
|
ip += llhSize;
|
||||||
|
}
|
||||||
|
{ size_t const ofhSize = ZSTDv08_buildSeqTable(DTableOffb, OFtype, MaxOff, OffFSELog, ip, iend-ip, OF_defaultNorm, OF_defaultNormLog, flagRepeatTable);
|
||||||
|
if (ZSTDv08_isError(ofhSize)) return ERROR(corruption_detected);
|
||||||
|
ip += ofhSize;
|
||||||
|
}
|
||||||
|
{ size_t const mlhSize = ZSTDv08_buildSeqTable(DTableML, MLtype, MaxML, MLFSELog, ip, iend-ip, ML_defaultNorm, ML_defaultNormLog, flagRepeatTable);
|
||||||
|
if (ZSTDv08_isError(mlhSize)) return ERROR(corruption_detected);
|
||||||
|
ip += mlhSize;
|
||||||
|
} }
|
||||||
|
|
||||||
|
return ip-istart;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
size_t litLength;
|
||||||
|
size_t matchLength;
|
||||||
|
size_t offset;
|
||||||
|
} seq_t;
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
BIT_DStream_t DStream;
|
||||||
|
FSEv08_DState_t stateLL;
|
||||||
|
FSEv08_DState_t stateOffb;
|
||||||
|
FSEv08_DState_t stateML;
|
||||||
|
size_t prevOffset[ZSTDv08_REP_NUM];
|
||||||
|
} seqState_t;
|
||||||
|
|
||||||
|
|
||||||
|
static seq_t ZSTDv08_decodeSequence(seqState_t* seqState)
|
||||||
|
{
|
||||||
|
seq_t seq;
|
||||||
|
|
||||||
|
U32 const llCode = FSEv08_peekSymbol(&(seqState->stateLL));
|
||||||
|
U32 const mlCode = FSEv08_peekSymbol(&(seqState->stateML));
|
||||||
|
U32 const ofCode = FSEv08_peekSymbol(&(seqState->stateOffb)); /* <= maxOff, by table construction */
|
||||||
|
|
||||||
|
U32 const llBits = LL_bits[llCode];
|
||||||
|
U32 const mlBits = ML_bits[mlCode];
|
||||||
|
U32 const ofBits = ofCode;
|
||||||
|
U32 const totalBits = llBits+mlBits+ofBits;
|
||||||
|
|
||||||
|
static const U32 LL_base[MaxLL+1] = {
|
||||||
|
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
|
||||||
|
16, 18, 20, 22, 24, 28, 32, 40, 48, 64, 0x80, 0x100, 0x200, 0x400, 0x800, 0x1000,
|
||||||
|
0x2000, 0x4000, 0x8000, 0x10000 };
|
||||||
|
|
||||||
|
static const U32 ML_base[MaxML+1] = {
|
||||||
|
3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
|
||||||
|
19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
|
||||||
|
35, 37, 39, 41, 43, 47, 51, 59, 67, 83, 99, 0x83, 0x103, 0x203, 0x403, 0x803,
|
||||||
|
0x1003, 0x2003, 0x4003, 0x8003, 0x10003 };
|
||||||
|
|
||||||
|
static const U32 OF_base[MaxOff+1] = {
|
||||||
|
0, 1, 1, 5, 0xD, 0x1D, 0x3D, 0x7D,
|
||||||
|
0xFD, 0x1FD, 0x3FD, 0x7FD, 0xFFD, 0x1FFD, 0x3FFD, 0x7FFD,
|
||||||
|
0xFFFD, 0x1FFFD, 0x3FFFD, 0x7FFFD, 0xFFFFD, 0x1FFFFD, 0x3FFFFD, 0x7FFFFD,
|
||||||
|
0xFFFFFD, 0x1FFFFFD, 0x3FFFFFD, 0x7FFFFFD, 0xFFFFFFD };
|
||||||
|
|
||||||
|
/* sequence */
|
||||||
|
{ size_t offset;
|
||||||
|
if (!ofCode)
|
||||||
|
offset = 0;
|
||||||
|
else {
|
||||||
|
offset = OF_base[ofCode] + BIT_readBits(&(seqState->DStream), ofBits); /* <= (ZSTDv08_WINDOWLOG_MAX-1) bits */
|
||||||
|
if (MEM_32bits()) BIT_reloadDStream(&(seqState->DStream));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ofCode <= 1) {
|
||||||
|
offset += (llCode==0);
|
||||||
|
if (offset) {
|
||||||
|
size_t const temp = (offset==3) ? seqState->prevOffset[0] - 1 : seqState->prevOffset[offset];
|
||||||
|
if (offset != 1) seqState->prevOffset[2] = seqState->prevOffset[1];
|
||||||
|
seqState->prevOffset[1] = seqState->prevOffset[0];
|
||||||
|
seqState->prevOffset[0] = offset = temp;
|
||||||
|
} else {
|
||||||
|
offset = seqState->prevOffset[0];
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
seqState->prevOffset[2] = seqState->prevOffset[1];
|
||||||
|
seqState->prevOffset[1] = seqState->prevOffset[0];
|
||||||
|
seqState->prevOffset[0] = offset;
|
||||||
|
}
|
||||||
|
seq.offset = offset;
|
||||||
|
}
|
||||||
|
|
||||||
|
seq.matchLength = ML_base[mlCode] + ((mlCode>31) ? BIT_readBits(&(seqState->DStream), mlBits) : 0); /* <= 16 bits */
|
||||||
|
if (MEM_32bits() && (mlBits+llBits>24)) BIT_reloadDStream(&(seqState->DStream));
|
||||||
|
|
||||||
|
seq.litLength = LL_base[llCode] + ((llCode>15) ? BIT_readBits(&(seqState->DStream), llBits) : 0); /* <= 16 bits */
|
||||||
|
if (MEM_32bits() ||
|
||||||
|
(totalBits > 64 - 7 - (LLFSELog+MLFSELog+OffFSELog)) ) BIT_reloadDStream(&(seqState->DStream));
|
||||||
|
|
||||||
|
/* ANS state update */
|
||||||
|
FSEv08_updateState(&(seqState->stateLL), &(seqState->DStream)); /* <= 9 bits */
|
||||||
|
FSEv08_updateState(&(seqState->stateML), &(seqState->DStream)); /* <= 9 bits */
|
||||||
|
if (MEM_32bits()) BIT_reloadDStream(&(seqState->DStream)); /* <= 18 bits */
|
||||||
|
FSEv08_updateState(&(seqState->stateOffb), &(seqState->DStream)); /* <= 8 bits */
|
||||||
|
|
||||||
|
return seq;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
size_t ZSTDv08_execSequence(BYTE* op,
|
||||||
|
BYTE* const oend, seq_t sequence,
|
||||||
|
const BYTE** litPtr, const BYTE* const litLimit_w,
|
||||||
|
const BYTE* const base, const BYTE* const vBase, const BYTE* const dictEnd)
|
||||||
|
{
|
||||||
|
BYTE* const oLitEnd = op + sequence.litLength;
|
||||||
|
size_t const sequenceLength = sequence.litLength + sequence.matchLength;
|
||||||
|
BYTE* const oMatchEnd = op + sequenceLength; /* risk : address space overflow (32-bits) */
|
||||||
|
BYTE* const oend_w = oend - WILDCOPY_OVERLENGTH;
|
||||||
|
const BYTE* const iLitEnd = *litPtr + sequence.litLength;
|
||||||
|
const BYTE* match = oLitEnd - sequence.offset;
|
||||||
|
|
||||||
|
/* check */
|
||||||
|
if ((oLitEnd>oend_w) | (oMatchEnd>oend)) return ERROR(dstSize_tooSmall); /* last match must start at a minimum distance of WILDCOPY_OVERLENGTH from oend */
|
||||||
|
if (iLitEnd > litLimit_w) return ERROR(corruption_detected); /* over-read beyond lit buffer */
|
||||||
|
|
||||||
|
/* copy Literals */
|
||||||
|
ZSTDv08_wildcopy(op, *litPtr, sequence.litLength); /* note : since oLitEnd <= oend-WILDCOPY_OVERLENGTH, no risk of overwrite beyond oend */
|
||||||
|
op = oLitEnd;
|
||||||
|
*litPtr = iLitEnd; /* update for next sequence */
|
||||||
|
|
||||||
|
/* copy Match */
|
||||||
|
if (sequence.offset > (size_t)(oLitEnd - base)) {
|
||||||
|
/* offset beyond prefix */
|
||||||
|
if (sequence.offset > (size_t)(oLitEnd - vBase)) return ERROR(corruption_detected);
|
||||||
|
match = dictEnd - (base-match);
|
||||||
|
if (match + sequence.matchLength <= dictEnd) {
|
||||||
|
memmove(oLitEnd, match, sequence.matchLength);
|
||||||
|
return sequenceLength;
|
||||||
|
}
|
||||||
|
/* span extDict & currentPrefixSegment */
|
||||||
|
{ size_t const length1 = dictEnd - match;
|
||||||
|
memmove(oLitEnd, match, length1);
|
||||||
|
op = oLitEnd + length1;
|
||||||
|
sequence.matchLength -= length1;
|
||||||
|
match = base;
|
||||||
|
} }
|
||||||
|
|
||||||
|
/* match within prefix */
|
||||||
|
if (sequence.offset < 8) {
|
||||||
|
/* close range match, overlap */
|
||||||
|
static const U32 dec32table[] = { 0, 1, 2, 1, 4, 4, 4, 4 }; /* added */
|
||||||
|
static const int dec64table[] = { 8, 8, 8, 7, 8, 9,10,11 }; /* substracted */
|
||||||
|
int const sub2 = dec64table[sequence.offset];
|
||||||
|
op[0] = match[0];
|
||||||
|
op[1] = match[1];
|
||||||
|
op[2] = match[2];
|
||||||
|
op[3] = match[3];
|
||||||
|
match += dec32table[sequence.offset];
|
||||||
|
ZSTDv08_copy4(op+4, match);
|
||||||
|
match -= sub2;
|
||||||
|
} else {
|
||||||
|
ZSTDv08_copy8(op, match);
|
||||||
|
}
|
||||||
|
op += 8; match += 8;
|
||||||
|
|
||||||
|
if (oMatchEnd > oend-(16-MINMATCH)) {
|
||||||
|
if (op < oend_w) {
|
||||||
|
ZSTDv08_wildcopy(op, match, oend_w - op);
|
||||||
|
match += oend_w - op;
|
||||||
|
op = oend_w;
|
||||||
|
}
|
||||||
|
while (op < oMatchEnd) *op++ = *match++;
|
||||||
|
} else {
|
||||||
|
ZSTDv08_wildcopy(op, match, sequence.matchLength-8); /* works even if matchLength < 8 */
|
||||||
|
}
|
||||||
|
return sequenceLength;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static size_t ZSTDv08_decompressSequences(
|
||||||
|
ZSTDv08_DCtx* dctx,
|
||||||
|
void* dst, size_t maxDstSize,
|
||||||
|
const void* seqStart, size_t seqSize)
|
||||||
|
{
|
||||||
|
const BYTE* ip = (const BYTE*)seqStart;
|
||||||
|
const BYTE* const iend = ip + seqSize;
|
||||||
|
BYTE* const ostart = (BYTE* const)dst;
|
||||||
|
BYTE* const oend = ostart + maxDstSize;
|
||||||
|
BYTE* op = ostart;
|
||||||
|
const BYTE* litPtr = dctx->litPtr;
|
||||||
|
const BYTE* const litLimit_w = litPtr + dctx->litBufSize - WILDCOPY_OVERLENGTH;
|
||||||
|
const BYTE* const litEnd = litPtr + dctx->litSize;
|
||||||
|
FSEv08_DTable* DTableLL = dctx->LLTable;
|
||||||
|
FSEv08_DTable* DTableML = dctx->MLTable;
|
||||||
|
FSEv08_DTable* DTableOffb = dctx->OffTable;
|
||||||
|
const BYTE* const base = (const BYTE*) (dctx->base);
|
||||||
|
const BYTE* const vBase = (const BYTE*) (dctx->vBase);
|
||||||
|
const BYTE* const dictEnd = (const BYTE*) (dctx->dictEnd);
|
||||||
|
int nbSeq;
|
||||||
|
|
||||||
|
/* Build Decoding Tables */
|
||||||
|
{ size_t const seqHSize = ZSTDv08_decodeSeqHeaders(&nbSeq, DTableLL, DTableML, DTableOffb, dctx->fseEntropy, ip, seqSize);
|
||||||
|
if (ZSTDv08_isError(seqHSize)) return seqHSize;
|
||||||
|
ip += seqHSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Regen sequences */
|
||||||
|
if (nbSeq) {
|
||||||
|
seqState_t seqState;
|
||||||
|
dctx->fseEntropy = 1;
|
||||||
|
{ U32 i; for (i=0; i<ZSTDv08_REP_NUM; i++) seqState.prevOffset[i] = dctx->rep[i]; }
|
||||||
|
{ size_t const errorCode = BIT_initDStream(&(seqState.DStream), ip, iend-ip);
|
||||||
|
if (ERR_isError(errorCode)) return ERROR(corruption_detected); }
|
||||||
|
FSEv08_initDState(&(seqState.stateLL), &(seqState.DStream), DTableLL);
|
||||||
|
FSEv08_initDState(&(seqState.stateOffb), &(seqState.DStream), DTableOffb);
|
||||||
|
FSEv08_initDState(&(seqState.stateML), &(seqState.DStream), DTableML);
|
||||||
|
|
||||||
|
for ( ; (BIT_reloadDStream(&(seqState.DStream)) <= BIT_DStream_completed) && nbSeq ; ) {
|
||||||
|
nbSeq--;
|
||||||
|
{ seq_t const sequence = ZSTDv08_decodeSequence(&seqState);
|
||||||
|
size_t const oneSeqSize = ZSTDv08_execSequence(op, oend, sequence, &litPtr, litLimit_w, base, vBase, dictEnd);
|
||||||
|
if (ZSTDv08_isError(oneSeqSize)) return oneSeqSize;
|
||||||
|
op += oneSeqSize;
|
||||||
|
} }
|
||||||
|
|
||||||
|
/* check if reached exact end */
|
||||||
|
if (nbSeq) return ERROR(corruption_detected);
|
||||||
|
/* save reps for next block */
|
||||||
|
{ U32 i; for (i=0; i<ZSTDv08_REP_NUM; i++) dctx->rep[i] = (U32)(seqState.prevOffset[i]); }
|
||||||
|
}
|
||||||
|
|
||||||
|
/* last literal segment */
|
||||||
|
{ size_t const lastLLSize = litEnd - litPtr;
|
||||||
|
if (lastLLSize > (size_t)(oend-op)) return ERROR(dstSize_tooSmall);
|
||||||
|
memcpy(op, litPtr, lastLLSize);
|
||||||
|
op += lastLLSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
return op-ostart;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static void ZSTDv08_checkContinuity(ZSTDv08_DCtx* dctx, const void* dst)
|
||||||
|
{
|
||||||
|
if (dst != dctx->previousDstEnd) { /* not contiguous */
|
||||||
|
dctx->dictEnd = dctx->previousDstEnd;
|
||||||
|
dctx->vBase = (const char*)dst - ((const char*)(dctx->previousDstEnd) - (const char*)(dctx->base));
|
||||||
|
dctx->base = dst;
|
||||||
|
dctx->previousDstEnd = dst;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static size_t ZSTDv08_decompressBlock_internal(ZSTDv08_DCtx* dctx,
|
||||||
|
void* dst, size_t dstCapacity,
|
||||||
|
const void* src, size_t srcSize)
|
||||||
|
{ /* blockType == blockCompressed */
|
||||||
|
const BYTE* ip = (const BYTE*)src;
|
||||||
|
|
||||||
|
if (srcSize >= ZSTDv08_BLOCKSIZE_ABSOLUTEMAX) return ERROR(srcSize_wrong);
|
||||||
|
|
||||||
|
/* Decode literals sub-block */
|
||||||
|
{ size_t const litCSize = ZSTDv08_decodeLiteralsBlock(dctx, src, srcSize);
|
||||||
|
if (ZSTDv08_isError(litCSize)) return litCSize;
|
||||||
|
ip += litCSize;
|
||||||
|
srcSize -= litCSize;
|
||||||
|
}
|
||||||
|
return ZSTDv08_decompressSequences(dctx, dst, dstCapacity, ip, srcSize);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
size_t ZSTDv08_decompressBlock(ZSTDv08_DCtx* dctx,
|
||||||
|
void* dst, size_t dstCapacity,
|
||||||
|
const void* src, size_t srcSize)
|
||||||
|
{
|
||||||
|
size_t dSize;
|
||||||
|
ZSTDv08_checkContinuity(dctx, dst);
|
||||||
|
dSize = ZSTDv08_decompressBlock_internal(dctx, dst, dstCapacity, src, srcSize);
|
||||||
|
dctx->previousDstEnd = (char*)dst + dSize;
|
||||||
|
return dSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/** ZSTDv08_insertBlock() :
|
||||||
|
insert `src` block into `dctx` history. Useful to track uncompressed blocks. */
|
||||||
|
ZSTDLIB_API size_t ZSTDv08_insertBlock(ZSTDv08_DCtx* dctx, const void* blockStart, size_t blockSize)
|
||||||
|
{
|
||||||
|
ZSTDv08_checkContinuity(dctx, blockStart);
|
||||||
|
dctx->previousDstEnd = (const char*)blockStart + blockSize;
|
||||||
|
return blockSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
size_t ZSTDv08_generateNxBytes(void* dst, size_t dstCapacity, BYTE byte, size_t length)
|
||||||
|
{
|
||||||
|
if (length > dstCapacity) return ERROR(dstSize_tooSmall);
|
||||||
|
memset(dst, byte, length);
|
||||||
|
return length;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*! ZSTDv08_decompressFrame() :
|
||||||
|
* `dctx` must be properly initialized */
|
||||||
|
static size_t ZSTDv08_decompressFrame(ZSTDv08_DCtx* dctx,
|
||||||
|
void* dst, size_t dstCapacity,
|
||||||
|
const void* src, size_t srcSize)
|
||||||
|
{
|
||||||
|
const BYTE* ip = (const BYTE*)src;
|
||||||
|
BYTE* const ostart = (BYTE* const)dst;
|
||||||
|
BYTE* const oend = ostart + dstCapacity;
|
||||||
|
BYTE* op = ostart;
|
||||||
|
size_t remainingSize = srcSize;
|
||||||
|
|
||||||
|
/* check */
|
||||||
|
if (srcSize < ZSTDv08_frameHeaderSize_min+ZSTDv08_blockHeaderSize) return ERROR(srcSize_wrong);
|
||||||
|
|
||||||
|
/* Frame Header */
|
||||||
|
{ size_t const frameHeaderSize = ZSTDv08_frameHeaderSize(src, ZSTDv08_frameHeaderSize_min);
|
||||||
|
size_t result;
|
||||||
|
if (ZSTDv08_isError(frameHeaderSize)) return frameHeaderSize;
|
||||||
|
if (srcSize < frameHeaderSize+ZSTDv08_blockHeaderSize) return ERROR(srcSize_wrong);
|
||||||
|
result = ZSTDv08_decodeFrameHeader(dctx, src, frameHeaderSize);
|
||||||
|
if (ZSTDv08_isError(result)) return result;
|
||||||
|
ip += frameHeaderSize; remainingSize -= frameHeaderSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Loop on each block */
|
||||||
|
while (1) {
|
||||||
|
size_t decodedSize;
|
||||||
|
blockProperties_t blockProperties;
|
||||||
|
size_t const cBlockSize = ZSTDv08_getcBlockSize(ip, remainingSize, &blockProperties);
|
||||||
|
if (ZSTDv08_isError(cBlockSize)) return cBlockSize;
|
||||||
|
|
||||||
|
ip += ZSTDv08_blockHeaderSize;
|
||||||
|
remainingSize -= ZSTDv08_blockHeaderSize;
|
||||||
|
if (cBlockSize > remainingSize) return ERROR(srcSize_wrong);
|
||||||
|
|
||||||
|
switch(blockProperties.blockType)
|
||||||
|
{
|
||||||
|
case bt_compressed:
|
||||||
|
decodedSize = ZSTDv08_decompressBlock_internal(dctx, op, oend-op, ip, cBlockSize);
|
||||||
|
break;
|
||||||
|
case bt_raw :
|
||||||
|
decodedSize = ZSTDv08_copyRawBlock(op, oend-op, ip, cBlockSize);
|
||||||
|
break;
|
||||||
|
case bt_rle :
|
||||||
|
decodedSize = ZSTDv08_generateNxBytes(op, oend-op, *ip, blockProperties.origSize);
|
||||||
|
break;
|
||||||
|
case bt_reserved :
|
||||||
|
default:
|
||||||
|
return ERROR(corruption_detected);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ZSTDv08_isError(decodedSize)) return decodedSize;
|
||||||
|
if (dctx->fParams.checksumFlag) XXH64_update(&dctx->xxhState, op, decodedSize);
|
||||||
|
op += decodedSize;
|
||||||
|
ip += cBlockSize;
|
||||||
|
remainingSize -= cBlockSize;
|
||||||
|
if (blockProperties.lastBlock) break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (dctx->fParams.checksumFlag) { /* Frame content checksum verification */
|
||||||
|
U32 const checkCalc = (U32)XXH64_digest(&dctx->xxhState);
|
||||||
|
U32 checkRead;
|
||||||
|
if (remainingSize<4) return ERROR(checksum_wrong);
|
||||||
|
checkRead = MEM_readLE32(ip);
|
||||||
|
if (checkRead != checkCalc) return ERROR(checksum_wrong);
|
||||||
|
remainingSize -= 4;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (remainingSize) return ERROR(srcSize_wrong);
|
||||||
|
return op-ostart;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*! ZSTDv08_decompress_usingPreparedDCtx() :
|
||||||
|
* Same as ZSTDv08_decompress_usingDict, but using a reference context `preparedDCtx`, where dictionary has been loaded.
|
||||||
|
* It avoids reloading the dictionary each time.
|
||||||
|
* `preparedDCtx` must have been properly initialized using ZSTDv08_decompressBegin_usingDict().
|
||||||
|
* Requires 2 contexts : 1 for reference (preparedDCtx), which will not be modified, and 1 to run the decompression operation (dctx) */
|
||||||
|
size_t ZSTDv08_decompress_usingPreparedDCtx(ZSTDv08_DCtx* dctx, const ZSTDv08_DCtx* refDCtx,
|
||||||
|
void* dst, size_t dstCapacity,
|
||||||
|
const void* src, size_t srcSize)
|
||||||
|
{
|
||||||
|
ZSTDv08_copyDCtx(dctx, refDCtx);
|
||||||
|
ZSTDv08_checkContinuity(dctx, dst);
|
||||||
|
return ZSTDv08_decompressFrame(dctx, dst, dstCapacity, src, srcSize);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
size_t ZSTDv08_decompress_usingDict(ZSTDv08_DCtx* dctx,
|
||||||
|
void* dst, size_t dstCapacity,
|
||||||
|
const void* src, size_t srcSize,
|
||||||
|
const void* dict, size_t dictSize)
|
||||||
|
{
|
||||||
|
ZSTDv08_decompressBegin_usingDict(dctx, dict, dictSize);
|
||||||
|
ZSTDv08_checkContinuity(dctx, dst);
|
||||||
|
return ZSTDv08_decompressFrame(dctx, dst, dstCapacity, src, srcSize);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
size_t ZSTDv08_decompressDCtx(ZSTDv08_DCtx* dctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize)
|
||||||
|
{
|
||||||
|
return ZSTDv08_decompress_usingDict(dctx, dst, dstCapacity, src, srcSize, NULL, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
size_t ZSTDv08_decompress(void* dst, size_t dstCapacity, const void* src, size_t srcSize)
|
||||||
|
{
|
||||||
|
#if defined(ZSTDv08_HEAPMODE) && (ZSTDv08_HEAPMODE==1)
|
||||||
|
size_t regenSize;
|
||||||
|
ZSTDv08_DCtx* const dctx = ZSTDv08_createDCtx();
|
||||||
|
if (dctx==NULL) return ERROR(memory_allocation);
|
||||||
|
regenSize = ZSTDv08_decompressDCtx(dctx, dst, dstCapacity, src, srcSize);
|
||||||
|
ZSTDv08_freeDCtx(dctx);
|
||||||
|
return regenSize;
|
||||||
|
#else /* stack mode */
|
||||||
|
ZSTDv08_DCtx dctx;
|
||||||
|
return ZSTDv08_decompressDCtx(&dctx, dst, dstCapacity, src, srcSize);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*-**********************************
|
||||||
|
* Streaming Decompression API
|
||||||
|
************************************/
|
||||||
|
size_t ZSTDv08_nextSrcSizeToDecompress(ZSTDv08_DCtx* dctx) { return dctx->expected; }
|
||||||
|
|
||||||
|
ZSTDv08_nextInputType_e ZSTDv08_nextInputType(ZSTDv08_DCtx* dctx) {
|
||||||
|
switch(dctx->stage)
|
||||||
|
{
|
||||||
|
default: /* should not happen */
|
||||||
|
case ZSTDds_getFrameHeaderSize:
|
||||||
|
case ZSTDds_decodeFrameHeader:
|
||||||
|
return ZSTDnit_frameHeader;
|
||||||
|
case ZSTDds_decodeBlockHeader:
|
||||||
|
return ZSTDnit_blockHeader;
|
||||||
|
case ZSTDds_decompressBlock:
|
||||||
|
return ZSTDnit_block;
|
||||||
|
case ZSTDds_decompressLastBlock:
|
||||||
|
return ZSTDnit_lastBlock;
|
||||||
|
case ZSTDds_checkChecksum:
|
||||||
|
return ZSTDnit_checksum;
|
||||||
|
case ZSTDds_decodeSkippableHeader:
|
||||||
|
case ZSTDds_skipFrame:
|
||||||
|
return ZSTDnit_skippableFrame;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int ZSTDv08_isSkipFrame(ZSTDv08_DCtx* dctx) { return dctx->stage == ZSTDds_skipFrame; } /* for zbuff */
|
||||||
|
|
||||||
|
/** ZSTDv08_decompressContinue() :
|
||||||
|
* @return : nb of bytes generated into `dst` (necessarily <= `dstCapacity)
|
||||||
|
* or an error code, which can be tested using ZSTDv08_isError() */
|
||||||
|
size_t ZSTDv08_decompressContinue(ZSTDv08_DCtx* dctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize)
|
||||||
|
{
|
||||||
|
/* Sanity check */
|
||||||
|
if (srcSize != dctx->expected) return ERROR(srcSize_wrong);
|
||||||
|
if (dstCapacity) ZSTDv08_checkContinuity(dctx, dst);
|
||||||
|
|
||||||
|
switch (dctx->stage)
|
||||||
|
{
|
||||||
|
case ZSTDds_getFrameHeaderSize :
|
||||||
|
if (srcSize != ZSTDv08_frameHeaderSize_min) return ERROR(srcSize_wrong); /* impossible */
|
||||||
|
if ((MEM_readLE32(src) & 0xFFFFFFF0U) == ZSTDv08_MAGIC_SKIPPABLE_START) {
|
||||||
|
memcpy(dctx->headerBuffer, src, ZSTDv08_frameHeaderSize_min);
|
||||||
|
dctx->expected = ZSTDv08_skippableHeaderSize - ZSTDv08_frameHeaderSize_min; /* magic number + skippable frame length */
|
||||||
|
dctx->stage = ZSTDds_decodeSkippableHeader;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
dctx->headerSize = ZSTDv08_frameHeaderSize(src, ZSTDv08_frameHeaderSize_min);
|
||||||
|
if (ZSTDv08_isError(dctx->headerSize)) return dctx->headerSize;
|
||||||
|
memcpy(dctx->headerBuffer, src, ZSTDv08_frameHeaderSize_min);
|
||||||
|
if (dctx->headerSize > ZSTDv08_frameHeaderSize_min) {
|
||||||
|
dctx->expected = dctx->headerSize - ZSTDv08_frameHeaderSize_min;
|
||||||
|
dctx->stage = ZSTDds_decodeFrameHeader;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
dctx->expected = 0; /* not necessary to copy more */
|
||||||
|
|
||||||
|
case ZSTDds_decodeFrameHeader:
|
||||||
|
{ size_t result;
|
||||||
|
memcpy(dctx->headerBuffer + ZSTDv08_frameHeaderSize_min, src, dctx->expected);
|
||||||
|
result = ZSTDv08_decodeFrameHeader(dctx, dctx->headerBuffer, dctx->headerSize);
|
||||||
|
if (ZSTDv08_isError(result)) return result;
|
||||||
|
dctx->expected = ZSTDv08_blockHeaderSize;
|
||||||
|
dctx->stage = ZSTDds_decodeBlockHeader;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case ZSTDds_decodeBlockHeader:
|
||||||
|
{ blockProperties_t bp;
|
||||||
|
size_t const cBlockSize = ZSTDv08_getcBlockSize(src, ZSTDv08_blockHeaderSize, &bp);
|
||||||
|
if (ZSTDv08_isError(cBlockSize)) return cBlockSize;
|
||||||
|
dctx->expected = cBlockSize;
|
||||||
|
dctx->bType = bp.blockType;
|
||||||
|
dctx->rleSize = bp.origSize;
|
||||||
|
if (cBlockSize) {
|
||||||
|
dctx->stage = bp.lastBlock ? ZSTDds_decompressLastBlock : ZSTDds_decompressBlock;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
/* empty block */
|
||||||
|
if (bp.lastBlock) {
|
||||||
|
if (dctx->fParams.checksumFlag) {
|
||||||
|
dctx->expected = 4;
|
||||||
|
dctx->stage = ZSTDds_checkChecksum;
|
||||||
|
} else {
|
||||||
|
dctx->expected = 0; /* end of frame */
|
||||||
|
dctx->stage = ZSTDds_getFrameHeaderSize;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
dctx->expected = 3; /* go directly to next header */
|
||||||
|
dctx->stage = ZSTDds_decodeBlockHeader;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case ZSTDds_decompressLastBlock:
|
||||||
|
case ZSTDds_decompressBlock:
|
||||||
|
{ size_t rSize;
|
||||||
|
switch(dctx->bType)
|
||||||
|
{
|
||||||
|
case bt_compressed:
|
||||||
|
rSize = ZSTDv08_decompressBlock_internal(dctx, dst, dstCapacity, src, srcSize);
|
||||||
|
break;
|
||||||
|
case bt_raw :
|
||||||
|
rSize = ZSTDv08_copyRawBlock(dst, dstCapacity, src, srcSize);
|
||||||
|
break;
|
||||||
|
case bt_rle :
|
||||||
|
rSize = ZSTDv08_setRleBlock(dst, dstCapacity, src, srcSize, dctx->rleSize);
|
||||||
|
break;
|
||||||
|
case bt_reserved : /* should never happen */
|
||||||
|
default:
|
||||||
|
return ERROR(corruption_detected);
|
||||||
|
}
|
||||||
|
if (ZSTDv08_isError(rSize)) return rSize;
|
||||||
|
if (dctx->fParams.checksumFlag) XXH64_update(&dctx->xxhState, dst, rSize);
|
||||||
|
|
||||||
|
if (dctx->stage == ZSTDds_decompressLastBlock) { /* end of frame */
|
||||||
|
if (dctx->fParams.checksumFlag) { /* another round for frame checksum */
|
||||||
|
dctx->expected = 4;
|
||||||
|
dctx->stage = ZSTDds_checkChecksum;
|
||||||
|
} else {
|
||||||
|
dctx->expected = 0; /* ends here */
|
||||||
|
dctx->stage = ZSTDds_getFrameHeaderSize;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
dctx->stage = ZSTDds_decodeBlockHeader;
|
||||||
|
dctx->expected = ZSTDv08_blockHeaderSize;
|
||||||
|
dctx->previousDstEnd = (char*)dst + rSize;
|
||||||
|
}
|
||||||
|
return rSize;
|
||||||
|
}
|
||||||
|
case ZSTDds_checkChecksum:
|
||||||
|
{ U32 const h32 = (U32)XXH64_digest(&dctx->xxhState);
|
||||||
|
U32 const check32 = MEM_readLE32(src); /* srcSize == 4, guaranteed by dctx->expected */
|
||||||
|
if (check32 != h32) return ERROR(checksum_wrong);
|
||||||
|
dctx->expected = 0;
|
||||||
|
dctx->stage = ZSTDds_getFrameHeaderSize;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case ZSTDds_decodeSkippableHeader:
|
||||||
|
{ memcpy(dctx->headerBuffer + ZSTDv08_frameHeaderSize_min, src, dctx->expected);
|
||||||
|
dctx->expected = MEM_readLE32(dctx->headerBuffer + 4);
|
||||||
|
dctx->stage = ZSTDds_skipFrame;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case ZSTDds_skipFrame:
|
||||||
|
{ dctx->expected = 0;
|
||||||
|
dctx->stage = ZSTDds_getFrameHeaderSize;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
return ERROR(GENERIC); /* impossible */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static size_t ZSTDv08_refDictContent(ZSTDv08_DCtx* dctx, const void* dict, size_t dictSize)
|
||||||
|
{
|
||||||
|
dctx->dictEnd = dctx->previousDstEnd;
|
||||||
|
dctx->vBase = (const char*)dict - ((const char*)(dctx->previousDstEnd) - (const char*)(dctx->base));
|
||||||
|
dctx->base = dict;
|
||||||
|
dctx->previousDstEnd = (const char*)dict + dictSize;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static size_t ZSTDv08_loadEntropy(ZSTDv08_DCtx* dctx, const void* const dict, size_t const dictSize)
|
||||||
|
{
|
||||||
|
const BYTE* dictPtr = (const BYTE*)dict;
|
||||||
|
const BYTE* const dictEnd = dictPtr + dictSize;
|
||||||
|
|
||||||
|
{ size_t const hSize = HUFv08_readDTableX4(dctx->hufTable, dict, dictSize);
|
||||||
|
if (HUFv08_isError(hSize)) return ERROR(dictionary_corrupted);
|
||||||
|
dictPtr += hSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
{ short offcodeNCount[MaxOff+1];
|
||||||
|
U32 offcodeMaxValue=MaxOff, offcodeLog=OffFSELog;
|
||||||
|
size_t const offcodeHeaderSize = FSEv08_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, dictEnd-dictPtr);
|
||||||
|
if (FSEv08_isError(offcodeHeaderSize)) return ERROR(dictionary_corrupted);
|
||||||
|
{ size_t const errorCode = FSEv08_buildDTable(dctx->OffTable, offcodeNCount, offcodeMaxValue, offcodeLog);
|
||||||
|
if (FSEv08_isError(errorCode)) return ERROR(dictionary_corrupted); }
|
||||||
|
dictPtr += offcodeHeaderSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
{ short matchlengthNCount[MaxML+1];
|
||||||
|
unsigned matchlengthMaxValue = MaxML, matchlengthLog = MLFSELog;
|
||||||
|
size_t const matchlengthHeaderSize = FSEv08_readNCount(matchlengthNCount, &matchlengthMaxValue, &matchlengthLog, dictPtr, dictEnd-dictPtr);
|
||||||
|
if (FSEv08_isError(matchlengthHeaderSize)) return ERROR(dictionary_corrupted);
|
||||||
|
{ size_t const errorCode = FSEv08_buildDTable(dctx->MLTable, matchlengthNCount, matchlengthMaxValue, matchlengthLog);
|
||||||
|
if (FSEv08_isError(errorCode)) return ERROR(dictionary_corrupted); }
|
||||||
|
dictPtr += matchlengthHeaderSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
{ short litlengthNCount[MaxLL+1];
|
||||||
|
unsigned litlengthMaxValue = MaxLL, litlengthLog = LLFSELog;
|
||||||
|
size_t const litlengthHeaderSize = FSEv08_readNCount(litlengthNCount, &litlengthMaxValue, &litlengthLog, dictPtr, dictEnd-dictPtr);
|
||||||
|
if (FSEv08_isError(litlengthHeaderSize)) return ERROR(dictionary_corrupted);
|
||||||
|
{ size_t const errorCode = FSEv08_buildDTable(dctx->LLTable, litlengthNCount, litlengthMaxValue, litlengthLog);
|
||||||
|
if (FSEv08_isError(errorCode)) return ERROR(dictionary_corrupted); }
|
||||||
|
dictPtr += litlengthHeaderSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (dictPtr+12 > dictEnd) return ERROR(dictionary_corrupted);
|
||||||
|
dctx->rep[0] = MEM_readLE32(dictPtr+0); if (dctx->rep[0] >= dictSize) return ERROR(dictionary_corrupted);
|
||||||
|
dctx->rep[1] = MEM_readLE32(dictPtr+4); if (dctx->rep[1] >= dictSize) return ERROR(dictionary_corrupted);
|
||||||
|
dctx->rep[2] = MEM_readLE32(dictPtr+8); if (dctx->rep[2] >= dictSize) return ERROR(dictionary_corrupted);
|
||||||
|
dictPtr += 12;
|
||||||
|
|
||||||
|
dctx->litEntropy = dctx->fseEntropy = 1;
|
||||||
|
return dictPtr - (const BYTE*)dict;
|
||||||
|
}
|
||||||
|
|
||||||
|
static size_t ZSTDv08_decompress_insertDictionary(ZSTDv08_DCtx* dctx, const void* dict, size_t dictSize)
|
||||||
|
{
|
||||||
|
if (dictSize < 8) return ZSTDv08_refDictContent(dctx, dict, dictSize);
|
||||||
|
{ U32 const magic = MEM_readLE32(dict);
|
||||||
|
if (magic != ZSTDv08_DICT_MAGIC) {
|
||||||
|
return ZSTDv08_refDictContent(dctx, dict, dictSize); /* pure content mode */
|
||||||
|
} }
|
||||||
|
dctx->dictID = MEM_readLE32((const char*)dict + 4);
|
||||||
|
|
||||||
|
/* load entropy tables */
|
||||||
|
dict = (const char*)dict + 8;
|
||||||
|
dictSize -= 8;
|
||||||
|
{ size_t const eSize = ZSTDv08_loadEntropy(dctx, dict, dictSize);
|
||||||
|
if (ZSTDv08_isError(eSize)) return ERROR(dictionary_corrupted);
|
||||||
|
dict = (const char*)dict + eSize;
|
||||||
|
dictSize -= eSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* reference dictionary content */
|
||||||
|
return ZSTDv08_refDictContent(dctx, dict, dictSize);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
size_t ZSTDv08_decompressBegin_usingDict(ZSTDv08_DCtx* dctx, const void* dict, size_t dictSize)
|
||||||
|
{
|
||||||
|
{ size_t const errorCode = ZSTDv08_decompressBegin(dctx);
|
||||||
|
if (ZSTDv08_isError(errorCode)) return errorCode; }
|
||||||
|
|
||||||
|
if (dict && dictSize) {
|
||||||
|
size_t const errorCode = ZSTDv08_decompress_insertDictionary(dctx, dict, dictSize);
|
||||||
|
if (ZSTDv08_isError(errorCode)) return ERROR(dictionary_corrupted);
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
struct ZSTDv08_DDict_s {
|
||||||
|
void* dict;
|
||||||
|
size_t dictSize;
|
||||||
|
ZSTDv08_DCtx* refContext;
|
||||||
|
}; /* typedef'd tp ZSTDv08_CDict within zstd.h */
|
||||||
|
|
||||||
|
ZSTDv08_DDict* ZSTDv08_createDDict_advanced(const void* dict, size_t dictSize, ZSTDv08_customMem customMem)
|
||||||
|
{
|
||||||
|
if (!customMem.customAlloc && !customMem.customFree)
|
||||||
|
customMem = defaultCustomMem;
|
||||||
|
|
||||||
|
if (!customMem.customAlloc || !customMem.customFree)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
{ ZSTDv08_DDict* const ddict = (ZSTDv08_DDict*) customMem.customAlloc(customMem.opaque, sizeof(*ddict));
|
||||||
|
void* const dictContent = customMem.customAlloc(customMem.opaque, dictSize);
|
||||||
|
ZSTDv08_DCtx* const dctx = ZSTDv08_createDCtx_advanced(customMem);
|
||||||
|
|
||||||
|
if (!dictContent || !ddict || !dctx) {
|
||||||
|
customMem.customFree(customMem.opaque, dictContent);
|
||||||
|
customMem.customFree(customMem.opaque, ddict);
|
||||||
|
customMem.customFree(customMem.opaque, dctx);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
memcpy(dictContent, dict, dictSize);
|
||||||
|
{ size_t const errorCode = ZSTDv08_decompressBegin_usingDict(dctx, dictContent, dictSize);
|
||||||
|
if (ZSTDv08_isError(errorCode)) {
|
||||||
|
customMem.customFree(customMem.opaque, dictContent);
|
||||||
|
customMem.customFree(customMem.opaque, ddict);
|
||||||
|
customMem.customFree(customMem.opaque, dctx);
|
||||||
|
return NULL;
|
||||||
|
} }
|
||||||
|
|
||||||
|
ddict->dict = dictContent;
|
||||||
|
ddict->dictSize = dictSize;
|
||||||
|
ddict->refContext = dctx;
|
||||||
|
return ddict;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*! ZSTDv08_createDDict() :
|
||||||
|
* Create a digested dictionary, ready to start decompression without startup delay.
|
||||||
|
* `dict` can be released after `ZSTDv08_DDict` creation */
|
||||||
|
ZSTDv08_DDict* ZSTDv08_createDDict(const void* dict, size_t dictSize)
|
||||||
|
{
|
||||||
|
ZSTDv08_customMem const allocator = { NULL, NULL, NULL };
|
||||||
|
return ZSTDv08_createDDict_advanced(dict, dictSize, allocator);
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t ZSTDv08_freeDDict(ZSTDv08_DDict* ddict)
|
||||||
|
{
|
||||||
|
ZSTDv08_freeFunction const cFree = ddict->refContext->customMem.customFree;
|
||||||
|
void* const opaque = ddict->refContext->customMem.opaque;
|
||||||
|
ZSTDv08_freeDCtx(ddict->refContext);
|
||||||
|
cFree(opaque, ddict->dict);
|
||||||
|
cFree(opaque, ddict);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*! ZSTDv08_decompress_usingDDict() :
|
||||||
|
* Decompression using a pre-digested Dictionary
|
||||||
|
* Use dictionary without significant overhead. */
|
||||||
|
ZSTDLIB_API size_t ZSTDv08_decompress_usingDDict(ZSTDv08_DCtx* dctx,
|
||||||
|
void* dst, size_t dstCapacity,
|
||||||
|
const void* src, size_t srcSize,
|
||||||
|
const ZSTDv08_DDict* ddict)
|
||||||
|
{
|
||||||
|
return ZSTDv08_decompress_usingPreparedDCtx(dctx, ddict->refContext,
|
||||||
|
dst, dstCapacity,
|
||||||
|
src, srcSize);
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
Buffered version of Zstd compression library
|
||||||
|
Copyright (C) 2015-2016, 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 homepage : http://www.zstd.net/
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/*-***************************************************************************
|
||||||
|
* Streaming decompression howto
|
||||||
|
*
|
||||||
|
* A ZBUFFv08_DCtx object is required to track streaming operations.
|
||||||
|
* Use ZBUFFv08_createDCtx() and ZBUFFv08_freeDCtx() to create/release resources.
|
||||||
|
* Use ZBUFFv08_decompressInit() to start a new decompression operation,
|
||||||
|
* or ZBUFFv08_decompressInitDictionary() if decompression requires a dictionary.
|
||||||
|
* Note that ZBUFFv08_DCtx objects can be re-init multiple times.
|
||||||
|
*
|
||||||
|
* Use ZBUFFv08_decompressContinue() repetitively to consume your input.
|
||||||
|
* *srcSizePtr and *dstCapacityPtr can be any size.
|
||||||
|
* The function will report how many bytes were read or written by modifying *srcSizePtr and *dstCapacityPtr.
|
||||||
|
* Note that it may not consume the entire input, in which case it's up to the caller to present remaining input again.
|
||||||
|
* The content of @dst will be overwritten (up to *dstCapacityPtr) at each function call, so save its content if it matters, or change @dst.
|
||||||
|
* @return : a hint to preferred nb of bytes to use as input for next function call (it's only a hint, to help latency),
|
||||||
|
* or 0 when a frame is completely decoded,
|
||||||
|
* or an error code, which can be tested using ZBUFFv08_isError().
|
||||||
|
*
|
||||||
|
* Hint : recommended buffer sizes (not compulsory) : ZBUFFv08_recommendedDInSize() and ZBUFFv08_recommendedDOutSize()
|
||||||
|
* output : ZBUFFv08_recommendedDOutSize==128 KB block size is the internal unit, it ensures it's always possible to write a full block when decoded.
|
||||||
|
* input : ZBUFFv08_recommendedDInSize == 128KB + 3;
|
||||||
|
* just follow indications from ZBUFFv08_decompressContinue() to minimize latency. It should always be <= 128 KB + 3 .
|
||||||
|
* *******************************************************************************/
|
||||||
|
|
||||||
|
typedef enum { ZBUFFds_init, ZBUFFds_loadHeader,
|
||||||
|
ZBUFFds_read, ZBUFFds_load, ZBUFFds_flush } ZBUFFv08_dStage;
|
||||||
|
|
||||||
|
/* *** Resource management *** */
|
||||||
|
struct ZBUFFv08_DCtx_s {
|
||||||
|
ZSTDv08_DCtx* zd;
|
||||||
|
ZSTDv08_frameParams fParams;
|
||||||
|
ZBUFFv08_dStage stage;
|
||||||
|
char* inBuff;
|
||||||
|
size_t inBuffSize;
|
||||||
|
size_t inPos;
|
||||||
|
char* outBuff;
|
||||||
|
size_t outBuffSize;
|
||||||
|
size_t outStart;
|
||||||
|
size_t outEnd;
|
||||||
|
size_t blockSize;
|
||||||
|
BYTE headerBuffer[ZSTDv08_FRAMEHEADERSIZE_MAX];
|
||||||
|
size_t lhSize;
|
||||||
|
ZSTDv08_customMem customMem;
|
||||||
|
}; /* typedef'd to ZBUFFv08_DCtx within "zstd_buffered.h" */
|
||||||
|
|
||||||
|
|
||||||
|
ZBUFFv08_DCtx* ZBUFFv08_createDCtx(void)
|
||||||
|
{
|
||||||
|
return ZBUFFv08_createDCtx_advanced(defaultCustomMem);
|
||||||
|
}
|
||||||
|
|
||||||
|
ZBUFFv08_DCtx* ZBUFFv08_createDCtx_advanced(ZSTDv08_customMem customMem)
|
||||||
|
{
|
||||||
|
ZBUFFv08_DCtx* zbd;
|
||||||
|
|
||||||
|
if (!customMem.customAlloc && !customMem.customFree)
|
||||||
|
customMem = defaultCustomMem;
|
||||||
|
|
||||||
|
if (!customMem.customAlloc || !customMem.customFree)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
zbd = (ZBUFFv08_DCtx*)customMem.customAlloc(customMem.opaque, sizeof(ZBUFFv08_DCtx));
|
||||||
|
if (zbd==NULL) return NULL;
|
||||||
|
memset(zbd, 0, sizeof(ZBUFFv08_DCtx));
|
||||||
|
memcpy(&zbd->customMem, &customMem, sizeof(ZSTDv08_customMem));
|
||||||
|
zbd->zd = ZSTDv08_createDCtx_advanced(customMem);
|
||||||
|
if (zbd->zd == NULL) { ZBUFFv08_freeDCtx(zbd); return NULL; }
|
||||||
|
zbd->stage = ZBUFFds_init;
|
||||||
|
return zbd;
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t ZBUFFv08_freeDCtx(ZBUFFv08_DCtx* zbd)
|
||||||
|
{
|
||||||
|
if (zbd==NULL) return 0; /* support free on null */
|
||||||
|
ZSTDv08_freeDCtx(zbd->zd);
|
||||||
|
if (zbd->inBuff) zbd->customMem.customFree(zbd->customMem.opaque, zbd->inBuff);
|
||||||
|
if (zbd->outBuff) zbd->customMem.customFree(zbd->customMem.opaque, zbd->outBuff);
|
||||||
|
zbd->customMem.customFree(zbd->customMem.opaque, zbd);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* *** Initialization *** */
|
||||||
|
|
||||||
|
size_t ZBUFFv08_decompressInitDictionary(ZBUFFv08_DCtx* zbd, const void* dict, size_t dictSize)
|
||||||
|
{
|
||||||
|
zbd->stage = ZBUFFds_loadHeader;
|
||||||
|
zbd->lhSize = zbd->inPos = zbd->outStart = zbd->outEnd = 0;
|
||||||
|
return ZSTDv08_decompressBegin_usingDict(zbd->zd, dict, dictSize);
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t ZBUFFv08_decompressInit(ZBUFFv08_DCtx* zbd)
|
||||||
|
{
|
||||||
|
return ZBUFFv08_decompressInitDictionary(zbd, NULL, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* internal util function */
|
||||||
|
MEM_STATIC size_t ZBUFFv08_limitCopy(void* dst, size_t dstCapacity, const void* src, size_t srcSize)
|
||||||
|
{
|
||||||
|
size_t const length = MIN(dstCapacity, srcSize);
|
||||||
|
memcpy(dst, src, length);
|
||||||
|
return length;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* *** Decompression *** */
|
||||||
|
|
||||||
|
size_t ZBUFFv08_decompressContinue(ZBUFFv08_DCtx* zbd,
|
||||||
|
void* dst, size_t* dstCapacityPtr,
|
||||||
|
const void* src, size_t* srcSizePtr)
|
||||||
|
{
|
||||||
|
const char* const istart = (const char*)src;
|
||||||
|
const char* const iend = istart + *srcSizePtr;
|
||||||
|
const char* ip = istart;
|
||||||
|
char* const ostart = (char*)dst;
|
||||||
|
char* const oend = ostart + *dstCapacityPtr;
|
||||||
|
char* op = ostart;
|
||||||
|
U32 someMoreWork = 1;
|
||||||
|
|
||||||
|
while (someMoreWork) {
|
||||||
|
switch(zbd->stage)
|
||||||
|
{
|
||||||
|
case ZBUFFds_init :
|
||||||
|
return ERROR(init_missing);
|
||||||
|
|
||||||
|
case ZBUFFds_loadHeader :
|
||||||
|
{ size_t const hSize = ZSTDv08_getFrameParams(&(zbd->fParams), zbd->headerBuffer, zbd->lhSize);
|
||||||
|
if (ZSTDv08_isError(hSize)) return hSize;
|
||||||
|
if (hSize != 0) { /* need more input */
|
||||||
|
size_t const toLoad = hSize - zbd->lhSize; /* if hSize!=0, hSize > zbd->lhSize */
|
||||||
|
if (toLoad > (size_t)(iend-ip)) { /* not enough input to load full header */
|
||||||
|
memcpy(zbd->headerBuffer + zbd->lhSize, ip, iend-ip);
|
||||||
|
zbd->lhSize += iend-ip;
|
||||||
|
*dstCapacityPtr = 0;
|
||||||
|
return (hSize - zbd->lhSize) + ZSTDv08_blockHeaderSize; /* remaining header bytes + next block header */
|
||||||
|
}
|
||||||
|
memcpy(zbd->headerBuffer + zbd->lhSize, ip, toLoad); zbd->lhSize = hSize; ip += toLoad;
|
||||||
|
break;
|
||||||
|
} }
|
||||||
|
|
||||||
|
/* Consume header */
|
||||||
|
{ size_t const h1Size = ZSTDv08_nextSrcSizeToDecompress(zbd->zd); /* == ZSTDv08_frameHeaderSize_min */
|
||||||
|
size_t const h1Result = ZSTDv08_decompressContinue(zbd->zd, NULL, 0, zbd->headerBuffer, h1Size);
|
||||||
|
if (ZSTDv08_isError(h1Result)) return h1Result; /* should not happen : already checked */
|
||||||
|
if (h1Size < zbd->lhSize) { /* long header */
|
||||||
|
size_t const h2Size = ZSTDv08_nextSrcSizeToDecompress(zbd->zd);
|
||||||
|
size_t const h2Result = ZSTDv08_decompressContinue(zbd->zd, NULL, 0, zbd->headerBuffer+h1Size, h2Size);
|
||||||
|
if (ZSTDv08_isError(h2Result)) return h2Result;
|
||||||
|
} }
|
||||||
|
|
||||||
|
zbd->fParams.windowSize = MAX(zbd->fParams.windowSize, 1U << ZSTDv08_WINDOWLOG_ABSOLUTEMIN);
|
||||||
|
|
||||||
|
/* Frame header instruct buffer sizes */
|
||||||
|
{ size_t const blockSize = MIN(zbd->fParams.windowSize, ZSTDv08_BLOCKSIZE_ABSOLUTEMAX);
|
||||||
|
size_t const neededOutSize = zbd->fParams.windowSize + blockSize;
|
||||||
|
zbd->blockSize = blockSize;
|
||||||
|
if (zbd->inBuffSize < blockSize) {
|
||||||
|
zbd->customMem.customFree(zbd->customMem.opaque, zbd->inBuff);
|
||||||
|
zbd->inBuffSize = blockSize;
|
||||||
|
zbd->inBuff = (char*)zbd->customMem.customAlloc(zbd->customMem.opaque, blockSize);
|
||||||
|
if (zbd->inBuff == NULL) return ERROR(memory_allocation);
|
||||||
|
}
|
||||||
|
if (zbd->outBuffSize < neededOutSize) {
|
||||||
|
zbd->customMem.customFree(zbd->customMem.opaque, zbd->outBuff);
|
||||||
|
zbd->outBuffSize = neededOutSize;
|
||||||
|
zbd->outBuff = (char*)zbd->customMem.customAlloc(zbd->customMem.opaque, neededOutSize);
|
||||||
|
if (zbd->outBuff == NULL) return ERROR(memory_allocation);
|
||||||
|
} }
|
||||||
|
zbd->stage = ZBUFFds_read;
|
||||||
|
/* pass-through */
|
||||||
|
|
||||||
|
case ZBUFFds_read:
|
||||||
|
{ size_t const neededInSize = ZSTDv08_nextSrcSizeToDecompress(zbd->zd);
|
||||||
|
if (neededInSize==0) { /* end of frame */
|
||||||
|
zbd->stage = ZBUFFds_init;
|
||||||
|
someMoreWork = 0;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if ((size_t)(iend-ip) >= neededInSize) { /* decode directly from src */
|
||||||
|
const int isSkipFrame = ZSTDv08_isSkipFrame(zbd->zd);
|
||||||
|
size_t const decodedSize = ZSTDv08_decompressContinue(zbd->zd,
|
||||||
|
zbd->outBuff + zbd->outStart, (isSkipFrame ? 0 : zbd->outBuffSize - zbd->outStart),
|
||||||
|
ip, neededInSize);
|
||||||
|
if (ZSTDv08_isError(decodedSize)) return decodedSize;
|
||||||
|
ip += neededInSize;
|
||||||
|
if (!decodedSize && !isSkipFrame) break; /* this was just a header */
|
||||||
|
zbd->outEnd = zbd->outStart + decodedSize;
|
||||||
|
zbd->stage = ZBUFFds_flush;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (ip==iend) { someMoreWork = 0; break; } /* no more input */
|
||||||
|
zbd->stage = ZBUFFds_load;
|
||||||
|
/* pass-through */
|
||||||
|
}
|
||||||
|
|
||||||
|
case ZBUFFds_load:
|
||||||
|
{ size_t const neededInSize = ZSTDv08_nextSrcSizeToDecompress(zbd->zd);
|
||||||
|
size_t const toLoad = neededInSize - zbd->inPos; /* should always be <= remaining space within inBuff */
|
||||||
|
size_t loadedSize;
|
||||||
|
if (toLoad > zbd->inBuffSize - zbd->inPos) return ERROR(corruption_detected); /* should never happen */
|
||||||
|
loadedSize = ZBUFFv08_limitCopy(zbd->inBuff + zbd->inPos, toLoad, ip, iend-ip);
|
||||||
|
ip += loadedSize;
|
||||||
|
zbd->inPos += loadedSize;
|
||||||
|
if (loadedSize < toLoad) { someMoreWork = 0; break; } /* not enough input, wait for more */
|
||||||
|
|
||||||
|
/* decode loaded input */
|
||||||
|
{ const int isSkipFrame = ZSTDv08_isSkipFrame(zbd->zd);
|
||||||
|
size_t const decodedSize = ZSTDv08_decompressContinue(zbd->zd,
|
||||||
|
zbd->outBuff + zbd->outStart, zbd->outBuffSize - zbd->outStart,
|
||||||
|
zbd->inBuff, neededInSize);
|
||||||
|
if (ZSTDv08_isError(decodedSize)) return decodedSize;
|
||||||
|
zbd->inPos = 0; /* input is consumed */
|
||||||
|
if (!decodedSize && !isSkipFrame) { zbd->stage = ZBUFFds_read; break; } /* this was just a header */
|
||||||
|
zbd->outEnd = zbd->outStart + decodedSize;
|
||||||
|
zbd->stage = ZBUFFds_flush;
|
||||||
|
/* pass-through */
|
||||||
|
} }
|
||||||
|
|
||||||
|
case ZBUFFds_flush:
|
||||||
|
{ size_t const toFlushSize = zbd->outEnd - zbd->outStart;
|
||||||
|
size_t const flushedSize = ZBUFFv08_limitCopy(op, oend-op, zbd->outBuff + zbd->outStart, toFlushSize);
|
||||||
|
op += flushedSize;
|
||||||
|
zbd->outStart += flushedSize;
|
||||||
|
if (flushedSize == toFlushSize) { /* flush completed */
|
||||||
|
zbd->stage = ZBUFFds_read;
|
||||||
|
if (zbd->outStart + zbd->blockSize > zbd->outBuffSize)
|
||||||
|
zbd->outStart = zbd->outEnd = 0;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
/* cannot flush everything */
|
||||||
|
someMoreWork = 0;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
default: return ERROR(GENERIC); /* impossible */
|
||||||
|
} }
|
||||||
|
|
||||||
|
/* result */
|
||||||
|
*srcSizePtr = ip-istart;
|
||||||
|
*dstCapacityPtr = op-ostart;
|
||||||
|
{ size_t nextSrcSizeHint = ZSTDv08_nextSrcSizeToDecompress(zbd->zd);
|
||||||
|
if (!nextSrcSizeHint) return (zbd->outEnd != zbd->outStart); /* return 0 only if fully flushed too */
|
||||||
|
nextSrcSizeHint += ZSTDv08_blockHeaderSize * (ZSTDv08_nextInputType(zbd->zd) == ZSTDnit_block);
|
||||||
|
if (zbd->inPos > nextSrcSizeHint) return ERROR(GENERIC); /* should never happen */
|
||||||
|
nextSrcSizeHint -= zbd->inPos; /* already loaded*/
|
||||||
|
return nextSrcSizeHint;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* *************************************
|
||||||
|
* Tool functions
|
||||||
|
***************************************/
|
||||||
|
size_t ZBUFFv08_recommendedDInSize(void) { return ZSTDv08_BLOCKSIZE_ABSOLUTEMAX + ZSTDv08_blockHeaderSize /* block header size*/ ; }
|
||||||
|
size_t ZBUFFv08_recommendedDOutSize(void) { return ZSTDv08_BLOCKSIZE_ABSOLUTEMAX; }
|
||||||
@@ -0,0 +1,225 @@
|
|||||||
|
/*
|
||||||
|
zstd_v08 - decoder for 0.8 format
|
||||||
|
Header File
|
||||||
|
Copyright (C) 2014-2016, 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://github.com/Cyan4973/zstd
|
||||||
|
*/
|
||||||
|
#ifndef ZSTDv08_H_235446
|
||||||
|
#define ZSTDv08_H_235446
|
||||||
|
|
||||||
|
#if defined (__cplusplus)
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*====== Dependency ======*/
|
||||||
|
#include <stddef.h> /* size_t */
|
||||||
|
|
||||||
|
|
||||||
|
/*====== Export for Windows ======*/
|
||||||
|
/*!
|
||||||
|
* ZSTDv08_DLL_EXPORT :
|
||||||
|
* Enable exporting of functions when building a Windows DLL
|
||||||
|
*/
|
||||||
|
#if defined(_WIN32) && defined(ZSTDv08_DLL_EXPORT) && (ZSTDv08_DLL_EXPORT==1)
|
||||||
|
# define ZSTDLIB_API __declspec(dllexport)
|
||||||
|
#else
|
||||||
|
# define ZSTDLIB_API
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* *************************************
|
||||||
|
* Simple API
|
||||||
|
***************************************/
|
||||||
|
/*! ZSTDv08_getDecompressedSize() :
|
||||||
|
* @return : decompressed size as a 64-bits value _if known_, 0 otherwise.
|
||||||
|
* note 1 : decompressed size can be very large (64-bits value),
|
||||||
|
* potentially larger than what local system can handle as a single memory segment.
|
||||||
|
* In which case, it's necessary to use streaming mode to decompress data.
|
||||||
|
* note 2 : decompressed size is an optional field, that may not be present.
|
||||||
|
* When `return==0`, consider data to decompress could have any size.
|
||||||
|
* In which case, it's necessary to use streaming mode to decompress data,
|
||||||
|
* or rely on application's implied limits.
|
||||||
|
* (For example, it may know that its own data is necessarily cut into blocks <= 16 KB).
|
||||||
|
* note 3 : decompressed size could be wrong or intentionally modified !
|
||||||
|
* Always ensure result fits within application's authorized limits !
|
||||||
|
* Each application can have its own set of conditions.
|
||||||
|
* If the intention is to decompress public data compressed by zstd command line utility,
|
||||||
|
* it is recommended to support at least 8 MB for extended compatibility.
|
||||||
|
* note 4 : when `return==0`, if precise failure cause is needed, use ZSTDv08_getFrameParams() to know more. */
|
||||||
|
unsigned long long ZSTDv08_getDecompressedSize(const void* src, size_t srcSize);
|
||||||
|
|
||||||
|
/*! ZSTDv08_decompress() :
|
||||||
|
`compressedSize` : must be the _exact_ size of compressed input, otherwise decompression will fail.
|
||||||
|
`dstCapacity` must be equal or larger than originalSize (see ZSTDv08_getDecompressedSize() ).
|
||||||
|
If originalSize is unknown, and if there is no implied application-specific limitations,
|
||||||
|
it's necessary to use streaming mode to decompress data.
|
||||||
|
@return : the number of bytes decompressed into `dst` (<= `dstCapacity`),
|
||||||
|
or an errorCode if it fails (which can be tested using ZSTDv08_isError()) */
|
||||||
|
ZSTDLIB_API size_t ZSTDv08_decompress( void* dst, size_t dstCapacity,
|
||||||
|
const void* src, size_t compressedSize);
|
||||||
|
|
||||||
|
|
||||||
|
/*====== Helper functions ======*/
|
||||||
|
ZSTDLIB_API unsigned ZSTDv08_isError(size_t code); /*!< tells if a `size_t` function result is an error code */
|
||||||
|
ZSTDLIB_API const char* ZSTDv08_getErrorName(size_t code); /*!< provides readable string from an error code */
|
||||||
|
|
||||||
|
|
||||||
|
/*-*************************************
|
||||||
|
* Explicit memory management
|
||||||
|
***************************************/
|
||||||
|
/** Decompression context */
|
||||||
|
typedef struct ZSTDv08_DCtx_s ZSTDv08_DCtx; /*< incomplete type */
|
||||||
|
ZSTDLIB_API ZSTDv08_DCtx* ZSTDv08_createDCtx(void);
|
||||||
|
ZSTDLIB_API size_t ZSTDv08_freeDCtx(ZSTDv08_DCtx* dctx);
|
||||||
|
|
||||||
|
/** ZSTDv08_decompressDCtx() :
|
||||||
|
* Same as ZSTDv08_decompress(), requires an allocated ZSTDv08_DCtx (see ZSTDv08_createDCtx()) */
|
||||||
|
ZSTDLIB_API size_t ZSTDv08_decompressDCtx(ZSTDv08_DCtx* ctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize);
|
||||||
|
|
||||||
|
|
||||||
|
/*-************************
|
||||||
|
* Simple dictionary API
|
||||||
|
***************************/
|
||||||
|
/*! ZSTDv08_decompress_usingDict() :
|
||||||
|
* Decompression using a predefined Dictionary (see dictBuilder/zdict.h).
|
||||||
|
* Dictionary must be identical to the one used during compression.
|
||||||
|
* Note : This function load the dictionary, resulting in a significant startup time */
|
||||||
|
ZSTDLIB_API size_t ZSTDv08_decompress_usingDict(ZSTDv08_DCtx* dctx,
|
||||||
|
void* dst, size_t dstCapacity,
|
||||||
|
const void* src, size_t srcSize,
|
||||||
|
const void* dict,size_t dictSize);
|
||||||
|
|
||||||
|
|
||||||
|
/*-**************************
|
||||||
|
* Fast Dictionary API
|
||||||
|
****************************/
|
||||||
|
/*! ZSTDv08_createDDict() :
|
||||||
|
* Create a digested dictionary, ready to start decompression operation without startup delay.
|
||||||
|
* `dict` can be released after creation */
|
||||||
|
typedef struct ZSTDv08_DDict_s ZSTDv08_DDict;
|
||||||
|
ZSTDLIB_API ZSTDv08_DDict* ZSTDv08_createDDict(const void* dict, size_t dictSize);
|
||||||
|
ZSTDLIB_API size_t ZSTDv08_freeDDict(ZSTDv08_DDict* ddict);
|
||||||
|
|
||||||
|
/*! ZSTDv08_decompress_usingDDict() :
|
||||||
|
* Decompression using a digested Dictionary
|
||||||
|
* Faster startup than ZSTDv08_decompress_usingDict(), recommended when same dictionary is used multiple times. */
|
||||||
|
ZSTDLIB_API size_t ZSTDv08_decompress_usingDDict(ZSTDv08_DCtx* dctx,
|
||||||
|
void* dst, size_t dstCapacity,
|
||||||
|
const void* src, size_t srcSize,
|
||||||
|
const ZSTDv08_DDict* ddict);
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
unsigned long long frameContentSize;
|
||||||
|
unsigned windowSize;
|
||||||
|
unsigned dictID;
|
||||||
|
unsigned checksumFlag;
|
||||||
|
} ZSTDv08_frameParams;
|
||||||
|
|
||||||
|
ZSTDLIB_API size_t ZSTDv08_getFrameParams(ZSTDv08_frameParams* fparamsPtr, const void* src, size_t srcSize); /**< doesn't consume input, see details below */
|
||||||
|
|
||||||
|
|
||||||
|
/* ***************************************************************
|
||||||
|
* Compiler specifics
|
||||||
|
*****************************************************************/
|
||||||
|
/* ZSTDv08_DLL_EXPORT :
|
||||||
|
* Enable exporting of functions when building a Windows DLL */
|
||||||
|
#if defined(_WIN32) && defined(ZSTDv08_DLL_EXPORT) && (ZSTDv08_DLL_EXPORT==1)
|
||||||
|
# define ZSTDLIB_API __declspec(dllexport)
|
||||||
|
#else
|
||||||
|
# define ZSTDLIB_API
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* *************************************
|
||||||
|
* Streaming functions
|
||||||
|
***************************************/
|
||||||
|
/* This is the easier "buffered" streaming API,
|
||||||
|
* using an internal buffer to lift all restrictions on user-provided buffers
|
||||||
|
* which can be any size, any place, for both input and output.
|
||||||
|
* ZBUFF and ZSTD are 100% interoperable,
|
||||||
|
* frames created by one can be decoded by the other one */
|
||||||
|
|
||||||
|
typedef struct ZBUFFv08_DCtx_s ZBUFFv08_DCtx;
|
||||||
|
ZSTDLIB_API ZBUFFv08_DCtx* ZBUFFv08_createDCtx(void);
|
||||||
|
ZSTDLIB_API size_t ZBUFFv08_freeDCtx(ZBUFFv08_DCtx* dctx);
|
||||||
|
|
||||||
|
ZSTDLIB_API size_t ZBUFFv08_decompressInit(ZBUFFv08_DCtx* dctx);
|
||||||
|
ZSTDLIB_API size_t ZBUFFv08_decompressInitDictionary(ZBUFFv08_DCtx* dctx, const void* dict, size_t dictSize);
|
||||||
|
|
||||||
|
ZSTDLIB_API size_t ZBUFFv08_decompressContinue(ZBUFFv08_DCtx* dctx,
|
||||||
|
void* dst, size_t* dstCapacityPtr,
|
||||||
|
const void* src, size_t* srcSizePtr);
|
||||||
|
|
||||||
|
/*-***************************************************************************
|
||||||
|
* Streaming decompression howto
|
||||||
|
*
|
||||||
|
* A ZBUFFv08_DCtx object is required to track streaming operations.
|
||||||
|
* Use ZBUFFv08_createDCtx() and ZBUFFv08_freeDCtx() to create/release resources.
|
||||||
|
* Use ZBUFFv08_decompressInit() to start a new decompression operation,
|
||||||
|
* or ZBUFFv08_decompressInitDictionary() if decompression requires a dictionary.
|
||||||
|
* Note that ZBUFFv08_DCtx objects can be re-init multiple times.
|
||||||
|
*
|
||||||
|
* Use ZBUFFv08_decompressContinue() repetitively to consume your input.
|
||||||
|
* *srcSizePtr and *dstCapacityPtr can be any size.
|
||||||
|
* The function will report how many bytes were read or written by modifying *srcSizePtr and *dstCapacityPtr.
|
||||||
|
* Note that it may not consume the entire input, in which case it's up to the caller to present remaining input again.
|
||||||
|
* The content of `dst` will be overwritten (up to *dstCapacityPtr) at each function call, so save its content if it matters, or change `dst`.
|
||||||
|
* @return : 0 when a frame is completely decoded and fully flushed,
|
||||||
|
* 1 when there is still some data left within internal buffer to flush,
|
||||||
|
* >1 when more data is expected, with value being a suggested next input size (it's just a hint, which helps latency),
|
||||||
|
* or an error code, which can be tested using ZBUFFv08_isError().
|
||||||
|
*
|
||||||
|
* Hint : recommended buffer sizes (not compulsory) : ZBUFFv08_recommendedDInSize() and ZBUFFv08_recommendedDOutSize()
|
||||||
|
* output : ZBUFFv08_recommendedDOutSize== 128 KB block size is the internal unit, it ensures it's always possible to write a full block when decoded.
|
||||||
|
* input : ZBUFFv08_recommendedDInSize == 128KB + 3;
|
||||||
|
* just follow indications from ZBUFFv08_decompressContinue() to minimize latency. It should always be <= 128 KB + 3 .
|
||||||
|
* *******************************************************************************/
|
||||||
|
|
||||||
|
|
||||||
|
/* *************************************
|
||||||
|
* Tool functions
|
||||||
|
***************************************/
|
||||||
|
ZSTDLIB_API unsigned ZBUFFv08_isError(size_t errorCode);
|
||||||
|
ZSTDLIB_API const char* ZBUFFv08_getErrorName(size_t errorCode);
|
||||||
|
|
||||||
|
/** Functions below provide recommended buffer sizes for Compression or Decompression operations.
|
||||||
|
* These sizes are just hints, they tend to offer better latency */
|
||||||
|
ZSTDLIB_API size_t ZBUFFv08_recommendedDInSize(void);
|
||||||
|
ZSTDLIB_API size_t ZBUFFv08_recommendedDOutSize(void);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#define ZSTDv08_MAGICNUMBER 0xFD2FB528 /* v0.8 */
|
||||||
|
|
||||||
|
|
||||||
|
#if defined (__cplusplus)
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* ZSTDv08_H_235446 */
|
||||||
|
|
||||||
+7
-6
@@ -142,14 +142,14 @@ static int BMK_benchMem(const void* srcBuffer, size_t srcSize,
|
|||||||
const size_t* fileSizes, U32 nbFiles,
|
const size_t* fileSizes, U32 nbFiles,
|
||||||
const void* dictBuffer, size_t dictBufferSize, benchResult_t *result)
|
const void* dictBuffer, size_t dictBufferSize, benchResult_t *result)
|
||||||
{
|
{
|
||||||
size_t const blockSize = (g_blockSize>=32 ? g_blockSize : srcSize) + (!srcSize); /* avoid div by 0 */
|
size_t const blockSize = (g_blockSize>=32 ? g_blockSize : srcSize) + (!srcSize) /* avoid div by 0 */ ;
|
||||||
U32 const maxNbBlocks = (U32) ((srcSize + (blockSize-1)) / blockSize) + nbFiles;
|
U32 const maxNbBlocks = (U32) ((srcSize + (blockSize-1)) / blockSize) + nbFiles;
|
||||||
blockParam_t* const blockTable = (blockParam_t*) malloc(maxNbBlocks * sizeof(blockParam_t));
|
blockParam_t* const blockTable = (blockParam_t*) malloc(maxNbBlocks * sizeof(blockParam_t));
|
||||||
size_t const maxCompressedSize = ZSTD_compressBound(srcSize) + (maxNbBlocks * 1024); /* add some room for safety */
|
size_t const maxCompressedSize = ZSTD_compressBound(srcSize) + (maxNbBlocks * 1024); /* add some room for safety */
|
||||||
void* const compressedBuffer = malloc(maxCompressedSize);
|
void* const compressedBuffer = malloc(maxCompressedSize);
|
||||||
void* const resultBuffer = malloc(srcSize);
|
void* const resultBuffer = malloc(srcSize);
|
||||||
ZSTD_CCtx* ctx = ZSTD_createCCtx();
|
ZSTD_CCtx* const ctx = ZSTD_createCCtx();
|
||||||
ZSTD_DCtx* dctx = ZSTD_createDCtx();
|
ZSTD_DCtx* const dctx = ZSTD_createDCtx();
|
||||||
U32 nbBlocks;
|
U32 nbBlocks;
|
||||||
UTIL_time_t ticksPerSecond;
|
UTIL_time_t ticksPerSecond;
|
||||||
|
|
||||||
@@ -215,12 +215,13 @@ static int BMK_benchMem(const void* srcBuffer, size_t srcSize,
|
|||||||
UTIL_waitForNextTick(ticksPerSecond);
|
UTIL_waitForNextTick(ticksPerSecond);
|
||||||
UTIL_getTime(&clockStart);
|
UTIL_getTime(&clockStart);
|
||||||
|
|
||||||
{ size_t const refSrcSize = (nbBlocks == 1) ? srcSize : 0;
|
{ //size_t const refSrcSize = (nbBlocks == 1) ? srcSize : 0;
|
||||||
ZSTD_parameters const zparams = ZSTD_getParams(cLevel, refSrcSize, dictBufferSize);
|
//ZSTD_parameters const zparams = ZSTD_getParams(cLevel, refSrcSize, dictBufferSize);
|
||||||
|
ZSTD_parameters const zparams = ZSTD_getParams(cLevel, blockSize, dictBufferSize);
|
||||||
ZSTD_customMem const cmem = { NULL, NULL, NULL };
|
ZSTD_customMem const cmem = { NULL, NULL, NULL };
|
||||||
U32 nbLoops = 0;
|
U32 nbLoops = 0;
|
||||||
ZSTD_CDict* cdict = ZSTD_createCDict_advanced(dictBuffer, dictBufferSize, zparams, cmem);
|
ZSTD_CDict* cdict = ZSTD_createCDict_advanced(dictBuffer, dictBufferSize, zparams, cmem);
|
||||||
if (cdict==NULL) EXM_THROW(1, "ZSTD_createCDict() allocation failure");
|
if (cdict==NULL) EXM_THROW(1, "ZSTD_createCDict_advanced() allocation failure");
|
||||||
do {
|
do {
|
||||||
U32 blockNb;
|
U32 blockNb;
|
||||||
for (blockNb=0; blockNb<nbBlocks; blockNb++) {
|
for (blockNb=0; blockNb<nbBlocks; blockNb++) {
|
||||||
|
|||||||
+4
-10
@@ -30,7 +30,7 @@
|
|||||||
|
|
||||||
|
|
||||||
/*-************************************
|
/*-************************************
|
||||||
* Includes
|
* Dependencies
|
||||||
**************************************/
|
**************************************/
|
||||||
#include <stdlib.h> /* malloc */
|
#include <stdlib.h> /* malloc */
|
||||||
#include <stdio.h> /* FILE, fwrite, fprintf */
|
#include <stdio.h> /* FILE, fwrite, fprintf */
|
||||||
@@ -94,12 +94,10 @@ static void RDG_fillLiteralDistrib(BYTE* ldt, double ld)
|
|||||||
U32 u;
|
U32 u;
|
||||||
|
|
||||||
if (ld<=0.0) ld = 0.0;
|
if (ld<=0.0) ld = 0.0;
|
||||||
//TRACE(" percent:%5.2f%% \n", ld*100.);
|
|
||||||
//TRACE(" start:(%c)[%02X] ", character, character);
|
|
||||||
for (u=0; u<LTSIZE; ) {
|
for (u=0; u<LTSIZE; ) {
|
||||||
U32 const weight = (U32)((double)(LTSIZE - u) * ld) + 1;
|
U32 const weight = (U32)((double)(LTSIZE - u) * ld) + 1;
|
||||||
U32 const end = MIN ( u + weight , LTSIZE);
|
U32 const end = MIN ( u + weight , LTSIZE);
|
||||||
while (u < end) ldt[u++] = character; // TRACE(" %u(%c)[%02X] ", u, character, character);
|
while (u < end) ldt[u++] = character;
|
||||||
character++;
|
character++;
|
||||||
if (character > lastChar) character = firstChar;
|
if (character > lastChar) character = firstChar;
|
||||||
}
|
}
|
||||||
@@ -109,8 +107,6 @@ static void RDG_fillLiteralDistrib(BYTE* ldt, double ld)
|
|||||||
static BYTE RDG_genChar(U32* seed, const BYTE* ldt)
|
static BYTE RDG_genChar(U32* seed, const BYTE* ldt)
|
||||||
{
|
{
|
||||||
U32 const id = RDG_rand(seed) & LTMASK;
|
U32 const id = RDG_rand(seed) & LTMASK;
|
||||||
//TRACE(" %u : \n", id);
|
|
||||||
//TRACE(" %4u [%4u] ; val : %4u \n", id, id&255, ldt[id]);
|
|
||||||
return ldt[id]; /* memory-sanitizer fails here, stating "uninitialized value" when table initialized with P==0.0. Checked : table is fully initialized */
|
return ldt[id]; /* memory-sanitizer fails here, stating "uninitialized value" when table initialized with P==0.0. Checked : table is fully initialized */
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -162,7 +158,6 @@ void RDG_genBlock(void* buffer, size_t buffSize, size_t prefixSize, double match
|
|||||||
U32 const randOffset = RDG_rand15Bits(seedPtr) + 1;
|
U32 const randOffset = RDG_rand15Bits(seedPtr) + 1;
|
||||||
U32 const offset = repeatOffset ? prevOffset : (U32) MIN(randOffset , pos);
|
U32 const offset = repeatOffset ? prevOffset : (U32) MIN(randOffset , pos);
|
||||||
size_t match = pos - offset;
|
size_t match = pos - offset;
|
||||||
//TRACE("pos : %u; offset: %u ; length : %u \n", (U32)pos, offset, length);
|
|
||||||
while (pos < d) buffPtr[pos++] = buffPtr[match++]; /* correctly manages overlaps */
|
while (pos < d) buffPtr[pos++] = buffPtr[match++]; /* correctly manages overlaps */
|
||||||
prevOffset = offset;
|
prevOffset = offset;
|
||||||
} else {
|
} else {
|
||||||
@@ -177,9 +172,8 @@ void RDG_genBlock(void* buffer, size_t buffSize, size_t prefixSize, double match
|
|||||||
void RDG_genBuffer(void* buffer, size_t size, double matchProba, double litProba, unsigned seed)
|
void RDG_genBuffer(void* buffer, size_t size, double matchProba, double litProba, unsigned seed)
|
||||||
{
|
{
|
||||||
BYTE ldt[LTSIZE];
|
BYTE ldt[LTSIZE];
|
||||||
memset(ldt, '0', sizeof(ldt));
|
memset(ldt, '0', sizeof(ldt)); /* yes, character '0', this is intentional */
|
||||||
if (litProba<=0.0) litProba = matchProba / 4.5;
|
if (litProba<=0.0) litProba = matchProba / 4.5;
|
||||||
//TRACE(" percent:%5.2f%% \n", litProba*100.);
|
|
||||||
RDG_fillLiteralDistrib(ldt, litProba);
|
RDG_fillLiteralDistrib(ldt, litProba);
|
||||||
RDG_genBlock(buffer, size, 0, matchProba, ldt, &seed);
|
RDG_genBlock(buffer, size, 0, matchProba, ldt, &seed);
|
||||||
}
|
}
|
||||||
@@ -196,7 +190,7 @@ void RDG_genStdout(unsigned long long size, double matchProba, double litProba,
|
|||||||
/* init */
|
/* init */
|
||||||
if (buff==NULL) { fprintf(stderr, "datagen: error: %s \n", strerror(errno)); exit(1); }
|
if (buff==NULL) { fprintf(stderr, "datagen: error: %s \n", strerror(errno)); exit(1); }
|
||||||
if (litProba<=0.0) litProba = matchProba / 4.5;
|
if (litProba<=0.0) litProba = matchProba / 4.5;
|
||||||
memset(ldt, '0', sizeof(ldt));
|
memset(ldt, '0', sizeof(ldt)); /* yes, character '0', this is intentional */
|
||||||
RDG_fillLiteralDistrib(ldt, litProba);
|
RDG_fillLiteralDistrib(ldt, litProba);
|
||||||
SET_BINARY_MODE(stdout);
|
SET_BINARY_MODE(stdout);
|
||||||
|
|
||||||
|
|||||||
+31
-26
@@ -273,11 +273,10 @@ typedef struct {
|
|||||||
static cRess_t FIO_createCResources(const char* dictFileName)
|
static cRess_t FIO_createCResources(const char* dictFileName)
|
||||||
{
|
{
|
||||||
cRess_t ress;
|
cRess_t ress;
|
||||||
|
memset(&ress, 0, sizeof(ress));
|
||||||
|
|
||||||
ress.ctx = ZBUFF_createCCtx();
|
ress.ctx = ZBUFF_createCCtx();
|
||||||
if (ress.ctx == NULL) EXM_THROW(30, "zstd: allocation error : can't create ZBUFF context");
|
if (ress.ctx == NULL) EXM_THROW(30, "zstd: allocation error : can't create ZBUFF context");
|
||||||
|
|
||||||
/* Allocate Memory */
|
|
||||||
ress.srcBufferSize = ZBUFF_recommendedCInSize();
|
ress.srcBufferSize = ZBUFF_recommendedCInSize();
|
||||||
ress.srcBuffer = malloc(ress.srcBufferSize);
|
ress.srcBuffer = malloc(ress.srcBufferSize);
|
||||||
ress.dstBufferSize = ZBUFF_recommendedCOutSize();
|
ress.dstBufferSize = ZBUFF_recommendedCOutSize();
|
||||||
@@ -330,7 +329,6 @@ static int FIO_compressFilename_internal(cRess_t ress,
|
|||||||
} }
|
} }
|
||||||
|
|
||||||
/* Main compression loop */
|
/* Main compression loop */
|
||||||
readsize = 0;
|
|
||||||
while (1) {
|
while (1) {
|
||||||
/* Fill input Buffer */
|
/* Fill input Buffer */
|
||||||
size_t const inSize = fread(ress.srcBuffer, (size_t)1, ress.srcBufferSize, srcFile);
|
size_t const inSize = fread(ress.srcBuffer, (size_t)1, ress.srcBufferSize, srcFile);
|
||||||
@@ -338,8 +336,8 @@ static int FIO_compressFilename_internal(cRess_t ress,
|
|||||||
readsize += inSize;
|
readsize += inSize;
|
||||||
DISPLAYUPDATE(2, "\rRead : %u MB ", (U32)(readsize>>20));
|
DISPLAYUPDATE(2, "\rRead : %u MB ", (U32)(readsize>>20));
|
||||||
|
|
||||||
{ /* Compress using buffered streaming */
|
/* Compress using buffered streaming */
|
||||||
size_t usedInSize = inSize;
|
{ size_t usedInSize = inSize;
|
||||||
size_t cSize = ress.dstBufferSize;
|
size_t cSize = ress.dstBufferSize;
|
||||||
{ size_t const result = ZBUFF_compressContinue(ress.ctx, ress.dstBuffer, &cSize, ress.srcBuffer, &usedInSize);
|
{ size_t const result = ZBUFF_compressContinue(ress.ctx, ress.dstBuffer, &cSize, ress.srcBuffer, &usedInSize);
|
||||||
if (ZBUFF_isError(result)) EXM_THROW(23, "Compression error : %s ", ZBUFF_getErrorName(result)); }
|
if (ZBUFF_isError(result)) EXM_THROW(23, "Compression error : %s ", ZBUFF_getErrorName(result)); }
|
||||||
@@ -366,10 +364,12 @@ static int FIO_compressFilename_internal(cRess_t ress,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Status */
|
/* Status */
|
||||||
|
if (strlen(srcFileName) > 20) srcFileName += strlen(srcFileName)-20; /* display last 20 characters */
|
||||||
DISPLAYLEVEL(2, "\r%79s\r", "");
|
DISPLAYLEVEL(2, "\r%79s\r", "");
|
||||||
DISPLAYLEVEL(2,"%-20.20s :%6.2f%% (%6llu =>%6llu bytes, %s) \n", srcFileName,
|
DISPLAYLEVEL(2,"%-20.20s :%6.2f%% (%6llu => %6llu bytes, %s) \n", srcFileName,
|
||||||
(double)compressedfilesize/readsize*100, (unsigned long long)readsize, (unsigned long long) compressedfilesize,
|
(double)compressedfilesize/(readsize+(!readsize) /* avoid div by zero */ )*100,
|
||||||
dstFileName);
|
(unsigned long long)readsize, (unsigned long long) compressedfilesize,
|
||||||
|
dstFileName);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@@ -397,7 +397,7 @@ static int FIO_compressFilename_srcFile(cRess_t ress,
|
|||||||
result = FIO_compressFilename_internal(ress, dstFileName, srcFileName, cLevel);
|
result = FIO_compressFilename_internal(ress, dstFileName, srcFileName, cLevel);
|
||||||
|
|
||||||
fclose(ress.srcFile);
|
fclose(ress.srcFile);
|
||||||
if ((g_removeSrcFile) && (!result)) remove(srcFileName);
|
if ((g_removeSrcFile) && (!result)) { if (remove(srcFileName)) EXM_THROW(1, "zstd: %s: %s", srcFileName, strerror(errno)); }
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -418,7 +418,7 @@ static int FIO_compressFilename_dstFile(cRess_t ress,
|
|||||||
result = FIO_compressFilename_srcFile(ress, dstFileName, srcFileName, cLevel);
|
result = FIO_compressFilename_srcFile(ress, dstFileName, srcFileName, cLevel);
|
||||||
|
|
||||||
if (fclose(ress.dstFile)) { DISPLAYLEVEL(1, "zstd: %s: %s \n", dstFileName, strerror(errno)); result=1; }
|
if (fclose(ress.dstFile)) { DISPLAYLEVEL(1, "zstd: %s: %s \n", dstFileName, strerror(errno)); result=1; }
|
||||||
if (result!=0) remove(dstFileName); /* remove operation artefact */
|
if (result!=0) { if (remove(dstFileName)) EXM_THROW(1, "zstd: %s: %s", dstFileName, strerror(errno)); } /* remove operation artefact */
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -444,13 +444,14 @@ int FIO_compressMultipleFilenames(const char** inFileNamesTable, unsigned nbFile
|
|||||||
const char* dictFileName, int compressionLevel)
|
const char* dictFileName, int compressionLevel)
|
||||||
{
|
{
|
||||||
int missed_files = 0;
|
int missed_files = 0;
|
||||||
char* dstFileName = (char*)malloc(FNSPACE);
|
|
||||||
size_t dfnSize = FNSPACE;
|
size_t dfnSize = FNSPACE;
|
||||||
|
char* dstFileName = (char*)malloc(FNSPACE);
|
||||||
size_t const suffixSize = suffix ? strlen(suffix) : 0;
|
size_t const suffixSize = suffix ? strlen(suffix) : 0;
|
||||||
cRess_t ress;
|
cRess_t ress = FIO_createCResources(dictFileName);
|
||||||
|
|
||||||
/* init */
|
/* init */
|
||||||
ress = FIO_createCResources(dictFileName);
|
if (dstFileName==NULL) EXM_THROW(27, "FIO_compressMultipleFilenames : allocation error for dstFileName");
|
||||||
|
if (suffix == NULL) EXM_THROW(28, "FIO_compressMultipleFilenames : dst unknown"); /* should never happen */
|
||||||
|
|
||||||
/* loop on each file */
|
/* loop on each file */
|
||||||
if (!strcmp(suffix, stdoutmark)) {
|
if (!strcmp(suffix, stdoutmark)) {
|
||||||
@@ -502,12 +503,11 @@ typedef struct {
|
|||||||
static dRess_t FIO_createDResources(const char* dictFileName)
|
static dRess_t FIO_createDResources(const char* dictFileName)
|
||||||
{
|
{
|
||||||
dRess_t ress;
|
dRess_t ress;
|
||||||
|
memset(&ress, 0, sizeof(ress));
|
||||||
|
|
||||||
/* init */
|
/* Allocation */
|
||||||
ress.dctx = ZBUFF_createDCtx();
|
ress.dctx = ZBUFF_createDCtx();
|
||||||
if (ress.dctx==NULL) EXM_THROW(60, "Can't create ZBUFF decompression context");
|
if (ress.dctx==NULL) EXM_THROW(60, "Can't create ZBUFF decompression context");
|
||||||
|
|
||||||
/* Allocate Memory */
|
|
||||||
ress.srcBufferSize = ZBUFF_recommendedDInSize();
|
ress.srcBufferSize = ZBUFF_recommendedDInSize();
|
||||||
ress.srcBuffer = malloc(ress.srcBufferSize);
|
ress.srcBuffer = malloc(ress.srcBufferSize);
|
||||||
ress.dstBufferSize = ZBUFF_recommendedDOutSize();
|
ress.dstBufferSize = ZBUFF_recommendedDOutSize();
|
||||||
@@ -706,10 +706,13 @@ static int FIO_decompressSrcFile(dRess_t ress, const char* srcFileName)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
if (((magic & 0xFFFFFFF0U) != ZSTD_MAGIC_SKIPPABLE_START) && (magic != ZSTD_MAGICNUMBER)) {
|
if (((magic & 0xFFFFFFF0U) != ZSTD_MAGIC_SKIPPABLE_START) && (magic != ZSTD_MAGICNUMBER)) {
|
||||||
if (g_overwrite) /* -df : pass-through mode */
|
if (g_overwrite) { /* -df : pass-through mode */
|
||||||
return FIO_passThrough(dstFile, srcFile, ress.srcBuffer, ress.srcBufferSize);
|
unsigned const result = FIO_passThrough(dstFile, srcFile, ress.srcBuffer, ress.srcBufferSize);
|
||||||
else {
|
if (fclose(srcFile)) EXM_THROW(32, "zstd: %s close error", srcFileName); /* error should never happen */
|
||||||
|
return result;
|
||||||
|
} else {
|
||||||
DISPLAYLEVEL(1, "zstd: %s: not in zstd format \n", srcFileName);
|
DISPLAYLEVEL(1, "zstd: %s: not in zstd format \n", srcFileName);
|
||||||
|
fclose(srcFile);
|
||||||
return 1;
|
return 1;
|
||||||
} } }
|
} } }
|
||||||
filesize += FIO_decompressFrame(ress, dstFile, srcFile, toRead);
|
filesize += FIO_decompressFrame(ress, dstFile, srcFile, toRead);
|
||||||
@@ -720,8 +723,8 @@ static int FIO_decompressSrcFile(dRess_t ress, const char* srcFileName)
|
|||||||
DISPLAYLEVEL(2, "%-20.20s: %llu bytes \n", srcFileName, filesize);
|
DISPLAYLEVEL(2, "%-20.20s: %llu bytes \n", srcFileName, filesize);
|
||||||
|
|
||||||
/* Close */
|
/* Close */
|
||||||
fclose(srcFile);
|
if (fclose(srcFile)) EXM_THROW(33, "zstd: %s close error", srcFileName); /* error should never happen */
|
||||||
if (g_removeSrcFile) remove(srcFileName);
|
if (g_removeSrcFile) { if (remove(srcFileName)) EXM_THROW(34, "zstd: %s: %s", srcFileName, strerror(errno)); };
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -741,7 +744,7 @@ static int FIO_decompressDstFile(dRess_t ress,
|
|||||||
result = FIO_decompressSrcFile(ress, srcFileName);
|
result = FIO_decompressSrcFile(ress, srcFileName);
|
||||||
|
|
||||||
if (fclose(ress.dstFile)) EXM_THROW(38, "Write error : cannot properly close %s", dstFileName);
|
if (fclose(ress.dstFile)) EXM_THROW(38, "Write error : cannot properly close %s", dstFileName);
|
||||||
if (result != 0) remove(dstFileName);
|
if (result != 0) if (remove(dstFileName)) EXM_THROW(39, "remove %s error : %s", dstFileName, strerror(errno));
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -768,19 +771,21 @@ int FIO_decompressMultipleFilenames(const char** srcNamesTable, unsigned nbFiles
|
|||||||
int missingFiles = 0;
|
int missingFiles = 0;
|
||||||
dRess_t ress = FIO_createDResources(dictFileName);
|
dRess_t ress = FIO_createDResources(dictFileName);
|
||||||
|
|
||||||
|
if (suffix==NULL) EXM_THROW(70, "zstd: decompression: unknown dst"); /* should never happen */
|
||||||
|
|
||||||
if (!strcmp(suffix, stdoutmark) || !strcmp(suffix, nulmark)) {
|
if (!strcmp(suffix, stdoutmark) || !strcmp(suffix, nulmark)) {
|
||||||
unsigned u;
|
unsigned u;
|
||||||
ress.dstFile = FIO_openDstFile(suffix);
|
ress.dstFile = FIO_openDstFile(suffix);
|
||||||
if (ress.dstFile == 0) EXM_THROW(71, "cannot open %s", suffix);
|
if (ress.dstFile == 0) EXM_THROW(71, "cannot open %s", suffix);
|
||||||
for (u=0; u<nbFiles; u++)
|
for (u=0; u<nbFiles; u++)
|
||||||
missingFiles += FIO_decompressSrcFile(ress, srcNamesTable[u]);
|
missingFiles += FIO_decompressSrcFile(ress, srcNamesTable[u]);
|
||||||
if (fclose(ress.dstFile)) EXM_THROW(39, "Write error : cannot properly close %s", stdoutmark);
|
if (fclose(ress.dstFile)) EXM_THROW(72, "Write error : cannot properly close %s", stdoutmark);
|
||||||
} else {
|
} else {
|
||||||
size_t const suffixSize = suffix ? strlen(suffix) : 0;
|
size_t const suffixSize = strlen(suffix);
|
||||||
size_t dfnSize = FNSPACE;
|
size_t dfnSize = FNSPACE;
|
||||||
unsigned u;
|
unsigned u;
|
||||||
char* dstFileName = (char*)malloc(FNSPACE);
|
char* dstFileName = (char*)malloc(FNSPACE);
|
||||||
if (dstFileName==NULL) EXM_THROW(70, "not enough memory for dstFileName");
|
if (dstFileName==NULL) EXM_THROW(73, "not enough memory for dstFileName");
|
||||||
for (u=0; u<nbFiles; u++) { /* create dstFileName */
|
for (u=0; u<nbFiles; u++) { /* create dstFileName */
|
||||||
const char* const srcFileName = srcNamesTable[u];
|
const char* const srcFileName = srcNamesTable[u];
|
||||||
size_t const sfnSize = strlen(srcFileName);
|
size_t const sfnSize = strlen(srcFileName);
|
||||||
@@ -789,7 +794,7 @@ int FIO_decompressMultipleFilenames(const char** srcNamesTable, unsigned nbFiles
|
|||||||
free(dstFileName);
|
free(dstFileName);
|
||||||
dfnSize = sfnSize + 20;
|
dfnSize = sfnSize + 20;
|
||||||
dstFileName = (char*)malloc(dfnSize);
|
dstFileName = (char*)malloc(dfnSize);
|
||||||
if (dstFileName==NULL) EXM_THROW(71, "not enough memory for dstFileName");
|
if (dstFileName==NULL) EXM_THROW(74, "not enough memory for dstFileName");
|
||||||
}
|
}
|
||||||
if (sfnSize <= suffixSize || strcmp(suffixPtr, suffix) != 0) {
|
if (sfnSize <= suffixSize || strcmp(suffixPtr, suffix) != 0) {
|
||||||
DISPLAYLEVEL(1, "zstd: %s: unknown suffix (%4s expected) -- ignored \n", srcFileName, suffix);
|
DISPLAYLEVEL(1, "zstd: %s: unknown suffix (%4s expected) -- ignored \n", srcFileName, suffix);
|
||||||
|
|||||||
+4
-4
@@ -209,7 +209,7 @@ static int basicUnitTests(U32 seed, double compressibility)
|
|||||||
cSize += r);
|
cSize += r);
|
||||||
CHECKPLUS(r, ZSTD_compressEnd(ctxDuplicated, (char*)compressedBuffer+cSize, ZSTD_compressBound(CNBuffSize)-cSize),
|
CHECKPLUS(r, ZSTD_compressEnd(ctxDuplicated, (char*)compressedBuffer+cSize, ZSTD_compressBound(CNBuffSize)-cSize),
|
||||||
cSize += r);
|
cSize += r);
|
||||||
if (cSize != cSizeOrig) goto _output_error; /* should be identical ==> have same size */
|
if (cSize != cSizeOrig) goto _output_error; /* should be identical ==> same size */
|
||||||
}
|
}
|
||||||
DISPLAYLEVEL(4, "OK (%u bytes : %.2f%%)\n", (U32)cSize, (double)cSize/CNBuffSize*100);
|
DISPLAYLEVEL(4, "OK (%u bytes : %.2f%%)\n", (U32)cSize, (double)cSize/CNBuffSize*100);
|
||||||
|
|
||||||
@@ -321,8 +321,8 @@ static int basicUnitTests(U32 seed, double compressibility)
|
|||||||
/* block API tests */
|
/* block API tests */
|
||||||
{ ZSTD_CCtx* const cctx = ZSTD_createCCtx();
|
{ ZSTD_CCtx* const cctx = ZSTD_createCCtx();
|
||||||
ZSTD_DCtx* const dctx = ZSTD_createDCtx();
|
ZSTD_DCtx* const dctx = ZSTD_createDCtx();
|
||||||
static const size_t blockSize = 100 KB;
|
static const size_t dictSize = 65 KB;
|
||||||
static const size_t dictSize = 16 KB;
|
static const size_t blockSize = 100 KB; /* won't cause pb with small dict size */
|
||||||
size_t cSize2;
|
size_t cSize2;
|
||||||
|
|
||||||
/* basic block compression */
|
/* basic block compression */
|
||||||
@@ -711,7 +711,7 @@ static int fuzzerTests(U32 seed, U32 nbTests, unsigned startTest, U32 const maxD
|
|||||||
while (totalCSize < cSize) {
|
while (totalCSize < cSize) {
|
||||||
size_t const inSize = ZSTD_nextSrcSizeToDecompress(dctx);
|
size_t const inSize = ZSTD_nextSrcSizeToDecompress(dctx);
|
||||||
size_t const genSize = ZSTD_decompressContinue(dctx, dstBuffer+totalGenSize, dstBufferSize-totalGenSize, cBuffer+totalCSize, inSize);
|
size_t const genSize = ZSTD_decompressContinue(dctx, dstBuffer+totalGenSize, dstBufferSize-totalGenSize, cBuffer+totalCSize, inSize);
|
||||||
CHECK (ZSTD_isError(genSize), "streaming decompression error : %s", ZSTD_getErrorName(genSize));
|
CHECK (ZSTD_isError(genSize), "ZSTD_decompressContinue error : %s", ZSTD_getErrorName(genSize));
|
||||||
totalGenSize += genSize;
|
totalGenSize += genSize;
|
||||||
totalCSize += inSize;
|
totalCSize += inSize;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -548,6 +548,82 @@ unsigned long long FIOv06_decompressFrame(dRessv06_t ress,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*===== v0.8.x =====*/
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
void* srcBuffer;
|
||||||
|
size_t srcBufferSize;
|
||||||
|
void* dstBuffer;
|
||||||
|
size_t dstBufferSize;
|
||||||
|
const void* dictBuffer;
|
||||||
|
size_t dictBufferSize;
|
||||||
|
ZBUFFv08_DCtx* dctx;
|
||||||
|
} dRessv08_t;
|
||||||
|
|
||||||
|
static dRessv08_t FIOv08_createDResources(void)
|
||||||
|
{
|
||||||
|
dRessv08_t ress;
|
||||||
|
|
||||||
|
/* init */
|
||||||
|
ress.dctx = ZBUFFv08_createDCtx();
|
||||||
|
if (ress.dctx==NULL) EXM_THROW(60, "Can't create ZBUFF decompression context");
|
||||||
|
ress.dictBuffer = NULL; ress.dictBufferSize=0;
|
||||||
|
|
||||||
|
/* Allocate Memory */
|
||||||
|
ress.srcBufferSize = ZBUFFv08_recommendedDInSize();
|
||||||
|
ress.srcBuffer = malloc(ress.srcBufferSize);
|
||||||
|
ress.dstBufferSize = ZBUFFv08_recommendedDOutSize();
|
||||||
|
ress.dstBuffer = malloc(ress.dstBufferSize);
|
||||||
|
if (!ress.srcBuffer || !ress.dstBuffer) EXM_THROW(61, "Allocation error : not enough memory");
|
||||||
|
|
||||||
|
return ress;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void FIOv08_freeDResources(dRessv08_t ress)
|
||||||
|
{
|
||||||
|
size_t const errorCode = ZBUFFv08_freeDCtx(ress.dctx);
|
||||||
|
if (ZBUFFv08_isError(errorCode)) EXM_THROW(69, "Error : can't free ZBUFF context resource : %s", ZBUFFv08_getErrorName(errorCode));
|
||||||
|
free(ress.srcBuffer);
|
||||||
|
free(ress.dstBuffer);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
unsigned long long FIOv08_decompressFrame(dRessv08_t ress,
|
||||||
|
FILE* foutput, FILE* finput)
|
||||||
|
{
|
||||||
|
U64 frameSize = 0;
|
||||||
|
size_t readSize = 4;
|
||||||
|
|
||||||
|
MEM_writeLE32(ress.srcBuffer, ZSTDv08_MAGICNUMBER);
|
||||||
|
ZBUFFv08_decompressInitDictionary(ress.dctx, ress.dictBuffer, ress.dictBufferSize);
|
||||||
|
|
||||||
|
while (1) {
|
||||||
|
/* Decode */
|
||||||
|
size_t inSize=readSize, decodedSize=ress.dstBufferSize;
|
||||||
|
size_t toRead = ZBUFFv08_decompressContinue(ress.dctx, ress.dstBuffer, &decodedSize, ress.srcBuffer, &inSize);
|
||||||
|
if (ZBUFFv08_isError(toRead)) EXM_THROW(36, "Decoding error : %s", ZBUFFv08_getErrorName(toRead));
|
||||||
|
readSize -= inSize;
|
||||||
|
|
||||||
|
/* Write block */
|
||||||
|
{ size_t const sizeCheck = fwrite(ress.dstBuffer, 1, decodedSize, foutput);
|
||||||
|
if (sizeCheck != decodedSize) EXM_THROW(37, "Write error : unable to write data block to destination file"); }
|
||||||
|
frameSize += decodedSize;
|
||||||
|
DISPLAYUPDATE(2, "\rDecoded : %u MB... ", (U32)(frameSize>>20) );
|
||||||
|
|
||||||
|
if (toRead == 0) break;
|
||||||
|
if (readSize) EXM_THROW(38, "Decoding error : should consume entire input");
|
||||||
|
|
||||||
|
/* Fill input buffer */
|
||||||
|
if (toRead > ress.srcBufferSize) EXM_THROW(34, "too large block");
|
||||||
|
readSize = fread(ress.srcBuffer, 1, toRead, finput);
|
||||||
|
if (readSize != toRead) EXM_THROW(35, "Read error");
|
||||||
|
}
|
||||||
|
|
||||||
|
return frameSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/*===== General legacy dispatcher =====*/
|
/*===== General legacy dispatcher =====*/
|
||||||
|
|
||||||
unsigned long long FIO_decompressLegacyFrame(FILE* foutput, FILE* finput,
|
unsigned long long FIO_decompressLegacyFrame(FILE* foutput, FILE* finput,
|
||||||
@@ -584,6 +660,14 @@ unsigned long long FIO_decompressLegacyFrame(FILE* foutput, FILE* finput,
|
|||||||
FIOv06_freeDResources(r);
|
FIOv06_freeDResources(r);
|
||||||
return s;
|
return s;
|
||||||
} }
|
} }
|
||||||
|
case ZSTDv08_MAGICNUMBER :
|
||||||
|
{ dRessv08_t r = FIOv08_createDResources();
|
||||||
|
r.dictBuffer = dictBuffer;
|
||||||
|
r.dictBufferSize = dictSize;
|
||||||
|
{ unsigned long long const s = FIOv08_decompressFrame(r, foutput, finput);
|
||||||
|
FIOv08_freeDResources(r);
|
||||||
|
return s;
|
||||||
|
} }
|
||||||
default :
|
default :
|
||||||
return ERROR(prefix_unknown);
|
return ERROR(prefix_unknown);
|
||||||
}
|
}
|
||||||
|
|||||||
+150
-204
@@ -22,33 +22,19 @@
|
|||||||
- zstd homepage : http://www.zstd.net/
|
- zstd homepage : http://www.zstd.net/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*-************************************
|
|
||||||
* Compiler Options
|
|
||||||
**************************************/
|
|
||||||
/* gettimeofday() are not supported by MSVC */
|
|
||||||
#if defined(_MSC_VER) || defined(_WIN32)
|
|
||||||
# define BMK_LEGACY_TIMER 1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
/*-************************************
|
/*-************************************
|
||||||
* Dependencies
|
* Dependencies
|
||||||
**************************************/
|
**************************************/
|
||||||
#include "util.h" /* Compiler options, UTIL_GetFileSize */
|
#include "util.h" /* Compiler options, UTIL_GetFileSize */
|
||||||
#include <stdlib.h> /* malloc */
|
#include <stdlib.h> /* malloc */
|
||||||
#include <stdio.h> /* fprintf, fopen, ftello64 */
|
#include <stdio.h> /* fprintf, fopen, ftello64 */
|
||||||
#include <string.h> /* strcmp */
|
#include <string.h> /* strcmp */
|
||||||
#include <math.h> /* log */
|
#include <math.h> /* log */
|
||||||
|
#include <time.h> /* clock_t */
|
||||||
/* Use ftime() if gettimeofday() is not available on your target */
|
|
||||||
#if defined(BMK_LEGACY_TIMER)
|
|
||||||
# include <sys/timeb.h> /* timeb, ftime */
|
|
||||||
#else
|
|
||||||
# include <sys/time.h> /* gettimeofday */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "mem.h"
|
#include "mem.h"
|
||||||
#define ZSTD_STATIC_LINKING_ONLY /* ZSTD_parameters */
|
#define ZSTD_STATIC_LINKING_ONLY /* ZSTD_parameters, ZSTD_estimateCCtxSize */
|
||||||
#include "zstd.h"
|
#include "zstd.h"
|
||||||
#include "datagen.h"
|
#include "datagen.h"
|
||||||
#include "xxhash.h"
|
#include "xxhash.h"
|
||||||
@@ -67,7 +53,7 @@
|
|||||||
#define GB *(1ULL<<30)
|
#define GB *(1ULL<<30)
|
||||||
|
|
||||||
#define NBLOOPS 2
|
#define NBLOOPS 2
|
||||||
#define TIMELOOP 2000
|
#define TIMELOOP (2 * CLOCKS_PER_SEC)
|
||||||
|
|
||||||
#define NB_LEVELS_TRACKED 30
|
#define NB_LEVELS_TRACKED 30
|
||||||
|
|
||||||
@@ -76,9 +62,9 @@ static const size_t maxMemory = (sizeof(size_t)==4) ? (2 GB - 64 MB) : (size_t
|
|||||||
#define COMPRESSIBILITY_DEFAULT 0.50
|
#define COMPRESSIBILITY_DEFAULT 0.50
|
||||||
static const size_t sampleSize = 10000000;
|
static const size_t sampleSize = 10000000;
|
||||||
|
|
||||||
static const int g_grillDuration = 50000000; /* about 13 hours */
|
static const U32 g_grillDuration_s = 60000; /* about 16 hours */
|
||||||
static const int g_maxParamTime = 15000; /* 15 sec */
|
static const clock_t g_maxParamTime = 15 * CLOCKS_PER_SEC;
|
||||||
static const int g_maxVariationTime = 60000; /* 60 sec */
|
static const clock_t g_maxVariationTime = 60 * CLOCKS_PER_SEC;
|
||||||
static const int g_maxNbVariations = 64;
|
static const int g_maxNbVariations = 64;
|
||||||
|
|
||||||
|
|
||||||
@@ -111,49 +97,15 @@ void BMK_SetNbIterations(int nbLoops)
|
|||||||
* Private functions
|
* Private functions
|
||||||
*********************************************************/
|
*********************************************************/
|
||||||
|
|
||||||
#if defined(BMK_LEGACY_TIMER)
|
static clock_t BMK_clockSpan(clock_t cStart) { return clock() - cStart; } /* works even if overflow ; max span ~ 30 mn */
|
||||||
|
|
||||||
static int BMK_GetMilliStart(void)
|
static U32 BMK_timeSpan(time_t tStart) { return (U32)difftime(time(NULL), tStart); } /* accuracy in seconds only, span can be multiple years */
|
||||||
{
|
|
||||||
/* Based on Legacy ftime()
|
|
||||||
* Rolls over every ~ 12.1 days (0x100000/24/60/60)
|
|
||||||
* Use GetMilliSpan to correct for rollover */
|
|
||||||
struct timeb tb;
|
|
||||||
int nCount;
|
|
||||||
ftime( &tb );
|
|
||||||
nCount = (int) (tb.millitm + (tb.time & 0xfffff) * 1000);
|
|
||||||
return nCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
#else
|
|
||||||
|
|
||||||
static int BMK_GetMilliStart(void)
|
|
||||||
{
|
|
||||||
/* Based on newer gettimeofday()
|
|
||||||
* Use GetMilliSpan to correct for rollover */
|
|
||||||
struct timeval tv;
|
|
||||||
int nCount;
|
|
||||||
gettimeofday(&tv, NULL);
|
|
||||||
nCount = (int) (tv.tv_usec/1000 + (tv.tv_sec & 0xfffff) * 1000);
|
|
||||||
return nCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
static int BMK_GetMilliSpan( int nTimeStart )
|
|
||||||
{
|
|
||||||
int nSpan = BMK_GetMilliStart() - nTimeStart;
|
|
||||||
if ( nSpan < 0 )
|
|
||||||
nSpan += 0x100000 * 1000;
|
|
||||||
return nSpan;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static size_t BMK_findMaxMem(U64 requiredMem)
|
static size_t BMK_findMaxMem(U64 requiredMem)
|
||||||
{
|
{
|
||||||
size_t step = 64 MB;
|
size_t const step = 64 MB;
|
||||||
BYTE* testmem=NULL;
|
void* testmem = NULL;
|
||||||
|
|
||||||
requiredMem = (((requiredMem >> 26) + 1) << 26);
|
requiredMem = (((requiredMem >> 26) + 1) << 26);
|
||||||
if (requiredMem > maxMemory) requiredMem = maxMemory;
|
if (requiredMem > maxMemory) requiredMem = maxMemory;
|
||||||
@@ -161,7 +113,7 @@ static size_t BMK_findMaxMem(U64 requiredMem)
|
|||||||
requiredMem += 2*step;
|
requiredMem += 2*step;
|
||||||
while (!testmem) {
|
while (!testmem) {
|
||||||
requiredMem -= step;
|
requiredMem -= step;
|
||||||
testmem = (BYTE*) malloc ((size_t)requiredMem);
|
testmem = malloc ((size_t)requiredMem);
|
||||||
}
|
}
|
||||||
|
|
||||||
free (testmem);
|
free (testmem);
|
||||||
@@ -188,8 +140,8 @@ U32 FUZ_rand(U32* src)
|
|||||||
*********************************************************/
|
*********************************************************/
|
||||||
typedef struct {
|
typedef struct {
|
||||||
size_t cSize;
|
size_t cSize;
|
||||||
U32 cSpeed;
|
double cSpeed;
|
||||||
U32 dSpeed;
|
double dSpeed;
|
||||||
} BMK_result_t;
|
} BMK_result_t;
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
@@ -265,35 +217,33 @@ static size_t BMK_benchParam(BMK_result_t* resultPtr,
|
|||||||
RDG_genBuffer(compressedBuffer, maxCompressedSize, 0.10, 0.10, 1);
|
RDG_genBuffer(compressedBuffer, maxCompressedSize, 0.10, 0.10, 1);
|
||||||
|
|
||||||
/* Bench */
|
/* Bench */
|
||||||
{
|
{ U32 loopNb;
|
||||||
U32 loopNb;
|
|
||||||
size_t cSize = 0;
|
size_t cSize = 0;
|
||||||
double fastestC = 100000000., fastestD = 100000000.;
|
double fastestC = 100000000., fastestD = 100000000.;
|
||||||
double ratio = 0.;
|
double ratio = 0.;
|
||||||
U64 crcCheck = 0;
|
U64 crcCheck = 0;
|
||||||
const int startTime =BMK_GetMilliStart();
|
clock_t const benchStart = clock();
|
||||||
|
|
||||||
DISPLAY("\r%79s\r", "");
|
DISPLAY("\r%79s\r", "");
|
||||||
|
memset(¶ms, 0, sizeof(params));
|
||||||
params.cParams = cParams;
|
params.cParams = cParams;
|
||||||
params.fParams.contentSizeFlag = 0;
|
|
||||||
for (loopNb = 1; loopNb <= g_nbIterations; loopNb++) {
|
for (loopNb = 1; loopNb <= g_nbIterations; loopNb++) {
|
||||||
int nbLoops;
|
int nbLoops;
|
||||||
int milliTime;
|
|
||||||
U32 blockNb;
|
U32 blockNb;
|
||||||
const int totalTime = BMK_GetMilliSpan(startTime);
|
clock_t roundStart, roundClock;
|
||||||
|
|
||||||
/* early break (slow params) */
|
{ clock_t const benchTime = BMK_clockSpan(benchStart);
|
||||||
if (totalTime > g_maxParamTime) break;
|
if (benchTime > g_maxParamTime) break; }
|
||||||
|
|
||||||
/* Compression */
|
/* Compression */
|
||||||
DISPLAY("\r%1u-%s : %9u ->", loopNb, name, (U32)srcSize);
|
DISPLAY("\r%1u-%s : %9u ->", loopNb, name, (U32)srcSize);
|
||||||
memset(compressedBuffer, 0xE5, maxCompressedSize);
|
memset(compressedBuffer, 0xE5, maxCompressedSize);
|
||||||
|
|
||||||
nbLoops = 0;
|
nbLoops = 0;
|
||||||
milliTime = BMK_GetMilliStart();
|
roundStart = clock();
|
||||||
while (BMK_GetMilliStart() == milliTime);
|
while (clock() == roundStart);
|
||||||
milliTime = BMK_GetMilliStart();
|
roundStart = clock();
|
||||||
while (BMK_GetMilliSpan(milliTime) < TIMELOOP) {
|
while (BMK_clockSpan(roundStart) < TIMELOOP) {
|
||||||
for (blockNb=0; blockNb<nbBlocks; blockNb++)
|
for (blockNb=0; blockNb<nbBlocks; blockNb++)
|
||||||
blockTable[blockNb].cSize = ZSTD_compress_advanced(ctx,
|
blockTable[blockNb].cSize = ZSTD_compress_advanced(ctx,
|
||||||
blockTable[blockNb].cPtr, blockTable[blockNb].cRoom,
|
blockTable[blockNb].cPtr, blockTable[blockNb].cRoom,
|
||||||
@@ -302,40 +252,40 @@ static size_t BMK_benchParam(BMK_result_t* resultPtr,
|
|||||||
params);
|
params);
|
||||||
nbLoops++;
|
nbLoops++;
|
||||||
}
|
}
|
||||||
milliTime = BMK_GetMilliSpan(milliTime);
|
roundClock = BMK_clockSpan(roundStart);
|
||||||
|
|
||||||
cSize = 0;
|
cSize = 0;
|
||||||
for (blockNb=0; blockNb<nbBlocks; blockNb++)
|
for (blockNb=0; blockNb<nbBlocks; blockNb++)
|
||||||
cSize += blockTable[blockNb].cSize;
|
cSize += blockTable[blockNb].cSize;
|
||||||
if ((double)milliTime < fastestC*nbLoops) fastestC = (double)milliTime / nbLoops;
|
if ((double)roundClock < fastestC * CLOCKS_PER_SEC * nbLoops) fastestC = ((double)roundClock / CLOCKS_PER_SEC) / nbLoops;
|
||||||
ratio = (double)srcSize / (double)cSize;
|
ratio = (double)srcSize / (double)cSize;
|
||||||
DISPLAY("\r");
|
DISPLAY("\r");
|
||||||
DISPLAY("%1u-%s : %9u ->", loopNb, name, (U32)srcSize);
|
DISPLAY("%1u-%s : %9u ->", loopNb, name, (U32)srcSize);
|
||||||
DISPLAY(" %9u (%4.3f),%7.1f MB/s", (U32)cSize, ratio, (double)srcSize / fastestC / 1000.);
|
DISPLAY(" %9u (%4.3f),%7.1f MB/s", (U32)cSize, ratio, (double)srcSize / fastestC / 1000000.);
|
||||||
resultPtr->cSize = cSize;
|
resultPtr->cSize = cSize;
|
||||||
resultPtr->cSpeed = (U32)((double)srcSize / fastestC);
|
resultPtr->cSpeed = (double)srcSize / fastestC;
|
||||||
|
|
||||||
#if 1
|
#if 1
|
||||||
/* Decompression */
|
/* Decompression */
|
||||||
memset(resultBuffer, 0xD6, srcSize);
|
memset(resultBuffer, 0xD6, srcSize);
|
||||||
|
|
||||||
nbLoops = 0;
|
nbLoops = 0;
|
||||||
milliTime = BMK_GetMilliStart();
|
roundStart = clock();
|
||||||
while (BMK_GetMilliStart() == milliTime);
|
while (clock() == roundStart);
|
||||||
milliTime = BMK_GetMilliStart();
|
roundStart = clock();
|
||||||
for ( ; BMK_GetMilliSpan(milliTime) < TIMELOOP; nbLoops++) {
|
for ( ; BMK_clockSpan(roundStart) < TIMELOOP; nbLoops++) {
|
||||||
for (blockNb=0; blockNb<nbBlocks; blockNb++)
|
for (blockNb=0; blockNb<nbBlocks; blockNb++)
|
||||||
blockTable[blockNb].resSize = ZSTD_decompress(blockTable[blockNb].resPtr, blockTable[blockNb].srcSize,
|
blockTable[blockNb].resSize = ZSTD_decompress(blockTable[blockNb].resPtr, blockTable[blockNb].srcSize,
|
||||||
blockTable[blockNb].cPtr, blockTable[blockNb].cSize);
|
blockTable[blockNb].cPtr, blockTable[blockNb].cSize);
|
||||||
}
|
}
|
||||||
milliTime = BMK_GetMilliSpan(milliTime);
|
roundClock = BMK_clockSpan(roundStart);
|
||||||
|
|
||||||
if ((double)milliTime < fastestD*nbLoops) fastestD = (double)milliTime / nbLoops;
|
if ((double)roundClock < fastestD * CLOCKS_PER_SEC * nbLoops) fastestD = ((double)roundClock / CLOCKS_PER_SEC) / nbLoops;
|
||||||
DISPLAY("\r");
|
DISPLAY("\r");
|
||||||
DISPLAY("%1u-%s : %9u -> ", loopNb, name, (U32)srcSize);
|
DISPLAY("%1u-%s : %9u -> ", loopNb, name, (U32)srcSize);
|
||||||
DISPLAY("%9u (%4.3f),%7.1f MB/s, ", (U32)cSize, ratio, (double)srcSize / fastestC / 1000.);
|
DISPLAY("%9u (%4.3f),%7.1f MB/s, ", (U32)cSize, ratio, (double)srcSize / fastestC / 1000000.);
|
||||||
DISPLAY("%7.1f MB/s", (double)srcSize / fastestD / 1000.);
|
DISPLAY("%7.1f MB/s", (double)srcSize / fastestD / 1000000.);
|
||||||
resultPtr->dSpeed = (U32)((double)srcSize / fastestD);
|
resultPtr->dSpeed = (double)srcSize / fastestD;
|
||||||
|
|
||||||
/* CRC Checking */
|
/* CRC Checking */
|
||||||
crcCheck = XXH64(resultBuffer, srcSize, 0);
|
crcCheck = XXH64(resultBuffer, srcSize, 0);
|
||||||
@@ -362,6 +312,7 @@ static size_t BMK_benchParam(BMK_result_t* resultPtr,
|
|||||||
|
|
||||||
|
|
||||||
const char* g_stratName[] = { "ZSTD_fast ",
|
const char* g_stratName[] = { "ZSTD_fast ",
|
||||||
|
"ZSTD_dfast ",
|
||||||
"ZSTD_greedy ",
|
"ZSTD_greedy ",
|
||||||
"ZSTD_lazy ",
|
"ZSTD_lazy ",
|
||||||
"ZSTD_lazy2 ",
|
"ZSTD_lazy2 ",
|
||||||
@@ -376,11 +327,11 @@ static void BMK_printWinner(FILE* f, U32 cLevel, BMK_result_t result, ZSTD_compr
|
|||||||
params.targetLength, g_stratName[(U32)(params.strategy)]);
|
params.targetLength, g_stratName[(U32)(params.strategy)]);
|
||||||
fprintf(f,
|
fprintf(f,
|
||||||
"/* level %2u */ /* R:%5.3f at %5.1f MB/s - %5.1f MB/s */\n",
|
"/* level %2u */ /* R:%5.3f at %5.1f MB/s - %5.1f MB/s */\n",
|
||||||
cLevel, (double)srcSize / result.cSize, (double)result.cSpeed / 1000., (double)result.dSpeed / 1000.);
|
cLevel, (double)srcSize / result.cSize, result.cSpeed / 1000000., result.dSpeed / 1000000.);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static U32 g_cSpeedTarget[NB_LEVELS_TRACKED] = { 0 }; /* NB_LEVELS_TRACKED : checked at main() */
|
static double g_cSpeedTarget[NB_LEVELS_TRACKED] = { 0. }; /* NB_LEVELS_TRACKED : checked at main() */
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
BMK_result_t result;
|
BMK_result_t result;
|
||||||
@@ -407,8 +358,6 @@ static void BMK_printWinners(FILE* f, const winnerInfo_t* winners, size_t srcSiz
|
|||||||
BMK_printWinners2(stdout, winners, srcSize);
|
BMK_printWinners2(stdout, winners, srcSize);
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t ZSTD_sizeofCCtx(ZSTD_compressionParameters params); /* hidden interface, declared here */
|
|
||||||
|
|
||||||
static int BMK_seed(winnerInfo_t* winners, const ZSTD_compressionParameters params,
|
static int BMK_seed(winnerInfo_t* winners, const ZSTD_compressionParameters params,
|
||||||
const void* srcBuffer, size_t srcSize,
|
const void* srcBuffer, size_t srcSize,
|
||||||
ZSTD_CCtx* ctx)
|
ZSTD_CCtx* ctx)
|
||||||
@@ -442,17 +391,16 @@ static int BMK_seed(winnerInfo_t* winners, const ZSTD_compressionParameters para
|
|||||||
double W_DMemUsed_note = W_ratioNote * ( 40 + 9*cLevel) - log((double)W_DMemUsed);
|
double W_DMemUsed_note = W_ratioNote * ( 40 + 9*cLevel) - log((double)W_DMemUsed);
|
||||||
double O_DMemUsed_note = O_ratioNote * ( 40 + 9*cLevel) - log((double)O_DMemUsed);
|
double O_DMemUsed_note = O_ratioNote * ( 40 + 9*cLevel) - log((double)O_DMemUsed);
|
||||||
|
|
||||||
size_t W_CMemUsed = (1 << params.windowLog) + ZSTD_sizeofCCtx(params);
|
size_t W_CMemUsed = (1 << params.windowLog) + ZSTD_estimateCCtxSize(params);
|
||||||
size_t O_CMemUsed = (1 << winners[cLevel].params.windowLog) + ZSTD_sizeofCCtx(winners[cLevel].params);
|
size_t O_CMemUsed = (1 << winners[cLevel].params.windowLog) + ZSTD_estimateCCtxSize(winners[cLevel].params);
|
||||||
double W_CMemUsed_note = W_ratioNote * ( 50 + 13*cLevel) - log((double)W_CMemUsed);
|
double W_CMemUsed_note = W_ratioNote * ( 50 + 13*cLevel) - log((double)W_CMemUsed);
|
||||||
double O_CMemUsed_note = O_ratioNote * ( 50 + 13*cLevel) - log((double)O_CMemUsed);
|
double O_CMemUsed_note = O_ratioNote * ( 50 + 13*cLevel) - log((double)O_CMemUsed);
|
||||||
|
|
||||||
double W_CSpeed_note = W_ratioNote * ( 30 + 10*cLevel) + log((double)testResult.cSpeed);
|
double W_CSpeed_note = W_ratioNote * ( 30 + 10*cLevel) + log(testResult.cSpeed);
|
||||||
double O_CSpeed_note = O_ratioNote * ( 30 + 10*cLevel) + log((double)winners[cLevel].result.cSpeed);
|
double O_CSpeed_note = O_ratioNote * ( 30 + 10*cLevel) + log(winners[cLevel].result.cSpeed);
|
||||||
|
|
||||||
double W_DSpeed_note = W_ratioNote * ( 20 + 2*cLevel) + log((double)testResult.dSpeed);
|
|
||||||
double O_DSpeed_note = O_ratioNote * ( 20 + 2*cLevel) + log((double)winners[cLevel].result.dSpeed);
|
|
||||||
|
|
||||||
|
double W_DSpeed_note = W_ratioNote * ( 20 + 2*cLevel) + log(testResult.dSpeed);
|
||||||
|
double O_DSpeed_note = O_ratioNote * ( 20 + 2*cLevel) + log(winners[cLevel].result.dSpeed);
|
||||||
|
|
||||||
if (W_DMemUsed_note < O_DMemUsed_note) {
|
if (W_DMemUsed_note < O_DMemUsed_note) {
|
||||||
/* uses too much Decompression memory for too little benefit */
|
/* uses too much Decompression memory for too little benefit */
|
||||||
@@ -474,16 +422,16 @@ static int BMK_seed(winnerInfo_t* winners, const ZSTD_compressionParameters para
|
|||||||
/* too large compression speed difference for the compression benefit */
|
/* too large compression speed difference for the compression benefit */
|
||||||
if (W_ratio > O_ratio)
|
if (W_ratio > O_ratio)
|
||||||
DISPLAY ("Compression Speed : %5.3f @ %4.1f MB/s vs %5.3f @ %4.1f MB/s : not enough for level %i\n",
|
DISPLAY ("Compression Speed : %5.3f @ %4.1f MB/s vs %5.3f @ %4.1f MB/s : not enough for level %i\n",
|
||||||
W_ratio, (double)(testResult.cSpeed) / 1000.,
|
W_ratio, testResult.cSpeed / 1000000,
|
||||||
O_ratio, (double)(winners[cLevel].result.cSpeed) / 1000., cLevel);
|
O_ratio, winners[cLevel].result.cSpeed / 1000000., cLevel);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (W_DSpeed_note < O_DSpeed_note ) {
|
if (W_DSpeed_note < O_DSpeed_note ) {
|
||||||
/* too large decompression speed difference for the compression benefit */
|
/* too large decompression speed difference for the compression benefit */
|
||||||
if (W_ratio > O_ratio)
|
if (W_ratio > O_ratio)
|
||||||
DISPLAY ("Decompression Speed : %5.3f @ %4.1f MB/s vs %5.3f @ %4.1f MB/s : not enough for level %i\n",
|
DISPLAY ("Decompression Speed : %5.3f @ %4.1f MB/s vs %5.3f @ %4.1f MB/s : not enough for level %i\n",
|
||||||
W_ratio, (double)(testResult.dSpeed) / 1000.,
|
W_ratio, testResult.dSpeed / 1000000.,
|
||||||
O_ratio, (double)(winners[cLevel].result.dSpeed) / 1000., cLevel);
|
O_ratio, winners[cLevel].result.dSpeed / 1000000., cLevel);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -507,6 +455,8 @@ static ZSTD_compressionParameters* sanitizeParams(ZSTD_compressionParameters par
|
|||||||
g_params = params;
|
g_params = params;
|
||||||
if (params.strategy == ZSTD_fast)
|
if (params.strategy == ZSTD_fast)
|
||||||
g_params.chainLog = 0, g_params.searchLog = 0;
|
g_params.chainLog = 0, g_params.searchLog = 0;
|
||||||
|
if (params.strategy == ZSTD_dfast)
|
||||||
|
g_params.searchLog = 0;
|
||||||
if (params.strategy != ZSTD_btopt )
|
if (params.strategy != ZSTD_btopt )
|
||||||
g_params.targetLength = 0;
|
g_params.targetLength = 0;
|
||||||
return &g_params;
|
return &g_params;
|
||||||
@@ -577,9 +527,9 @@ static void playAround(FILE* f, winnerInfo_t* winners,
|
|||||||
ZSTD_CCtx* ctx)
|
ZSTD_CCtx* ctx)
|
||||||
{
|
{
|
||||||
int nbVariations = 0;
|
int nbVariations = 0;
|
||||||
const int startTime = BMK_GetMilliStart();
|
clock_t const clockStart = clock();
|
||||||
|
|
||||||
while (BMK_GetMilliSpan(startTime) < g_maxVariationTime) {
|
while (BMK_clockSpan(clockStart) < g_maxVariationTime) {
|
||||||
ZSTD_compressionParameters p = params;
|
ZSTD_compressionParameters p = params;
|
||||||
|
|
||||||
if (nbVariations++ > g_maxNbVariations) break;
|
if (nbVariations++ > g_maxNbVariations) break;
|
||||||
@@ -637,15 +587,18 @@ static void BMK_selectRandomStart(
|
|||||||
|
|
||||||
static void BMK_benchMem(void* srcBuffer, size_t srcSize)
|
static void BMK_benchMem(void* srcBuffer, size_t srcSize)
|
||||||
{
|
{
|
||||||
ZSTD_CCtx* ctx = ZSTD_createCCtx();
|
ZSTD_CCtx* const ctx = ZSTD_createCCtx();
|
||||||
ZSTD_compressionParameters params;
|
ZSTD_compressionParameters params;
|
||||||
winnerInfo_t winners[NB_LEVELS_TRACKED];
|
winnerInfo_t winners[NB_LEVELS_TRACKED];
|
||||||
int i;
|
const char* const rfName = "grillResults.txt";
|
||||||
unsigned u;
|
FILE* const f = fopen(rfName, "w");
|
||||||
const char* rfName = "grillResults.txt";
|
|
||||||
FILE* f;
|
|
||||||
const size_t blockSize = g_blockSize ? g_blockSize : srcSize;
|
const size_t blockSize = g_blockSize ? g_blockSize : srcSize;
|
||||||
|
|
||||||
|
/* init */
|
||||||
|
if (ctx==NULL) { DISPLAY("ZSTD_createCCtx() failed \n"); exit(1); }
|
||||||
|
memset(winners, 0, sizeof(winners));
|
||||||
|
if (f==NULL) { DISPLAY("error opening %s \n", rfName); exit(1); }
|
||||||
|
|
||||||
if (g_singleRun) {
|
if (g_singleRun) {
|
||||||
BMK_result_t testResult;
|
BMK_result_t testResult;
|
||||||
g_params = ZSTD_adjustCParams(g_params, srcSize, 0);
|
g_params = ZSTD_adjustCParams(g_params, srcSize, 0);
|
||||||
@@ -654,41 +607,36 @@ static void BMK_benchMem(void* srcBuffer, size_t srcSize)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* init */
|
|
||||||
memset(winners, 0, sizeof(winners));
|
|
||||||
f = fopen(rfName, "w");
|
|
||||||
if (f==NULL) { DISPLAY("error opening %s \n", rfName); exit(1); }
|
|
||||||
|
|
||||||
if (g_target)
|
if (g_target)
|
||||||
g_cSpeedTarget[1] = g_target * 1000;
|
g_cSpeedTarget[1] = g_target * 1000000;
|
||||||
else {
|
else {
|
||||||
/* baseline config for level 1 */
|
/* baseline config for level 1 */
|
||||||
BMK_result_t testResult;
|
BMK_result_t testResult;
|
||||||
params = ZSTD_getCParams(1, blockSize, 0);
|
params = ZSTD_getCParams(1, blockSize, 0);
|
||||||
BMK_benchParam(&testResult, srcBuffer, srcSize, ctx, params);
|
BMK_benchParam(&testResult, srcBuffer, srcSize, ctx, params);
|
||||||
g_cSpeedTarget[1] = (testResult.cSpeed * 31) >> 5;
|
g_cSpeedTarget[1] = (testResult.cSpeed * 31) / 32;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* establish speed objectives (relative to level 1) */
|
/* establish speed objectives (relative to level 1) */
|
||||||
for (u=2; u<=ZSTD_maxCLevel(); u++)
|
{ unsigned u;
|
||||||
g_cSpeedTarget[u] = (g_cSpeedTarget[u-1] * 25) >> 5;
|
for (u=2; u<=ZSTD_maxCLevel(); u++)
|
||||||
|
g_cSpeedTarget[u] = (g_cSpeedTarget[u-1] * 25) / 32;
|
||||||
|
}
|
||||||
|
|
||||||
/* populate initial solution */
|
/* populate initial solution */
|
||||||
{
|
{ const int maxSeeds = g_noSeed ? 1 : ZSTD_maxCLevel();
|
||||||
const int maxSeeds = g_noSeed ? 1 : ZSTD_maxCLevel();
|
int i;
|
||||||
for (i=1; i<=maxSeeds; i++) {
|
for (i=0; i<=maxSeeds; i++) {
|
||||||
params = ZSTD_getCParams(i, blockSize, 0);
|
params = ZSTD_getCParams(i, blockSize, 0);
|
||||||
BMK_seed(winners, params, srcBuffer, srcSize, ctx);
|
BMK_seed(winners, params, srcBuffer, srcSize, ctx);
|
||||||
}
|
} }
|
||||||
}
|
|
||||||
BMK_printWinners(f, winners, srcSize);
|
BMK_printWinners(f, winners, srcSize);
|
||||||
|
|
||||||
/* start tests */
|
/* start tests */
|
||||||
{
|
{ const time_t grillStart = time(NULL);
|
||||||
const int milliStart = BMK_GetMilliStart();
|
|
||||||
do {
|
do {
|
||||||
BMK_selectRandomStart(f, winners, srcBuffer, srcSize, ctx);
|
BMK_selectRandomStart(f, winners, srcBuffer, srcSize, ctx);
|
||||||
} while (BMK_GetMilliSpan(milliStart) < g_grillDuration);
|
} while (BMK_timeSpan(grillStart) < g_grillDuration_s);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* end summary */
|
/* end summary */
|
||||||
@@ -704,8 +652,8 @@ static void BMK_benchMem(void* srcBuffer, size_t srcSize)
|
|||||||
static int benchSample(void)
|
static int benchSample(void)
|
||||||
{
|
{
|
||||||
void* origBuff;
|
void* origBuff;
|
||||||
size_t benchedSize = sampleSize;
|
size_t const benchedSize = sampleSize;
|
||||||
const char* name = "Sample 10MiB";
|
const char* const name = "Sample 10MiB";
|
||||||
|
|
||||||
/* Allocation */
|
/* Allocation */
|
||||||
origBuff = malloc(benchedSize);
|
origBuff = malloc(benchedSize);
|
||||||
@@ -724,37 +672,31 @@ static int benchSample(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int benchFiles(char** fileNamesTable, int nbFiles)
|
int benchFiles(const char** fileNamesTable, int nbFiles)
|
||||||
{
|
{
|
||||||
int fileIdx=0;
|
int fileIdx=0;
|
||||||
|
|
||||||
/* Loop for each file */
|
/* Loop for each file */
|
||||||
while (fileIdx<nbFiles) {
|
while (fileIdx<nbFiles) {
|
||||||
FILE* inFile;
|
const char* const inFileName = fileNamesTable[fileIdx++];
|
||||||
char* inFileName;
|
FILE* const inFile = fopen( inFileName, "rb" );
|
||||||
U64 inFileSize;
|
U64 const inFileSize = UTIL_getFileSize(inFileName);
|
||||||
size_t benchedSize;
|
size_t benchedSize;
|
||||||
size_t readSize;
|
void* origBuff;
|
||||||
char* origBuff;
|
|
||||||
|
|
||||||
/* Check file existence */
|
/* Check file existence */
|
||||||
inFileName = fileNamesTable[fileIdx++];
|
|
||||||
inFile = fopen( inFileName, "rb" );
|
|
||||||
if (inFile==NULL) {
|
if (inFile==NULL) {
|
||||||
DISPLAY( "Pb opening %s\n", inFileName);
|
DISPLAY( "Pb opening %s\n", inFileName);
|
||||||
return 11;
|
return 11;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Memory allocation & restrictions */
|
/* Memory allocation */
|
||||||
inFileSize = UTIL_getFileSize(inFileName);
|
|
||||||
benchedSize = BMK_findMaxMem(inFileSize*3) / 3;
|
benchedSize = BMK_findMaxMem(inFileSize*3) / 3;
|
||||||
if ((U64)benchedSize > inFileSize) benchedSize = (size_t)inFileSize;
|
if ((U64)benchedSize > inFileSize) benchedSize = (size_t)inFileSize;
|
||||||
if (benchedSize < inFileSize)
|
if (benchedSize < inFileSize)
|
||||||
DISPLAY("Not enough memory for '%s' full size; testing %i MB only...\n", inFileName, (int)(benchedSize>>20));
|
DISPLAY("Not enough memory for '%s' full size; testing %i MB only...\n", inFileName, (int)(benchedSize>>20));
|
||||||
|
origBuff = malloc(benchedSize);
|
||||||
/* Alloc */
|
if (origBuff==NULL) {
|
||||||
origBuff = (char*) malloc((size_t)benchedSize);
|
|
||||||
if(!origBuff) {
|
|
||||||
DISPLAY("\nError: not enough memory!\n");
|
DISPLAY("\nError: not enough memory!\n");
|
||||||
fclose(inFile);
|
fclose(inFile);
|
||||||
return 12;
|
return 12;
|
||||||
@@ -762,49 +704,44 @@ int benchFiles(char** fileNamesTable, int nbFiles)
|
|||||||
|
|
||||||
/* Fill input buffer */
|
/* Fill input buffer */
|
||||||
DISPLAY("Loading %s... \r", inFileName);
|
DISPLAY("Loading %s... \r", inFileName);
|
||||||
readSize = fread(origBuff, 1, benchedSize, inFile);
|
{ size_t const readSize = fread(origBuff, 1, benchedSize, inFile);
|
||||||
fclose(inFile);
|
fclose(inFile);
|
||||||
|
if(readSize != benchedSize) {
|
||||||
if(readSize != benchedSize) {
|
DISPLAY("\nError: problem reading file '%s' !! \n", inFileName);
|
||||||
DISPLAY("\nError: problem reading file '%s' !! \n", inFileName);
|
free(origBuff);
|
||||||
free(origBuff);
|
return 13;
|
||||||
return 13;
|
} }
|
||||||
}
|
|
||||||
|
|
||||||
/* bench */
|
/* bench */
|
||||||
DISPLAY("\r%79s\r", "");
|
DISPLAY("\r%79s\r", "");
|
||||||
DISPLAY("using %s : \n", inFileName);
|
DISPLAY("using %s : \n", inFileName);
|
||||||
BMK_benchMem(origBuff, benchedSize);
|
BMK_benchMem(origBuff, benchedSize);
|
||||||
|
|
||||||
|
/* clean */
|
||||||
|
free(origBuff);
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int optimizeForSize(char* inFileName)
|
int optimizeForSize(const char* inFileName, U32 targetSpeed)
|
||||||
{
|
{
|
||||||
FILE* inFile;
|
FILE* const inFile = fopen( inFileName, "rb" );
|
||||||
U64 inFileSize;
|
U64 const inFileSize = UTIL_getFileSize(inFileName);
|
||||||
size_t benchedSize;
|
size_t benchedSize = BMK_findMaxMem(inFileSize*3) / 3;
|
||||||
size_t readSize;
|
void* origBuff;
|
||||||
char* origBuff;
|
|
||||||
|
|
||||||
/* Check file existence */
|
/* Init */
|
||||||
inFile = fopen( inFileName, "rb" );
|
if (inFile==NULL) { DISPLAY( "Pb opening %s\n", inFileName); return 11; }
|
||||||
if (inFile==NULL) {
|
|
||||||
DISPLAY( "Pb opening %s\n", inFileName);
|
|
||||||
return 11;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Memory allocation & restrictions */
|
/* Memory allocation & restrictions */
|
||||||
inFileSize = UTIL_getFileSize(inFileName);
|
|
||||||
benchedSize = (size_t) BMK_findMaxMem(inFileSize*3) / 3;
|
|
||||||
if ((U64)benchedSize > inFileSize) benchedSize = (size_t)inFileSize;
|
if ((U64)benchedSize > inFileSize) benchedSize = (size_t)inFileSize;
|
||||||
if (benchedSize < inFileSize)
|
if (benchedSize < inFileSize)
|
||||||
DISPLAY("Not enough memory for '%s' full size; testing %i MB only...\n", inFileName, (int)(benchedSize>>20));
|
DISPLAY("Not enough memory for '%s' full size; testing %i MB only...\n", inFileName, (int)(benchedSize>>20));
|
||||||
|
|
||||||
/* Alloc */
|
/* Alloc */
|
||||||
origBuff = (char*) malloc((size_t)benchedSize);
|
origBuff = malloc(benchedSize);
|
||||||
if(!origBuff) {
|
if(!origBuff) {
|
||||||
DISPLAY("\nError: not enough memory!\n");
|
DISPLAY("\nError: not enough memory!\n");
|
||||||
fclose(inFile);
|
fclose(inFile);
|
||||||
@@ -813,39 +750,40 @@ int optimizeForSize(char* inFileName)
|
|||||||
|
|
||||||
/* Fill input buffer */
|
/* Fill input buffer */
|
||||||
DISPLAY("Loading %s... \r", inFileName);
|
DISPLAY("Loading %s... \r", inFileName);
|
||||||
readSize = fread(origBuff, 1, benchedSize, inFile);
|
{ size_t const readSize = fread(origBuff, 1, benchedSize, inFile);
|
||||||
fclose(inFile);
|
fclose(inFile);
|
||||||
|
if(readSize != benchedSize) {
|
||||||
if(readSize != benchedSize) {
|
DISPLAY("\nError: problem reading file '%s' !! \n", inFileName);
|
||||||
DISPLAY("\nError: problem reading file '%s' !! \n", inFileName);
|
free(origBuff);
|
||||||
free(origBuff);
|
return 13;
|
||||||
return 13;
|
} }
|
||||||
}
|
|
||||||
|
|
||||||
/* bench */
|
/* bench */
|
||||||
DISPLAY("\r%79s\r", "");
|
DISPLAY("\r%79s\r", "");
|
||||||
DISPLAY("optimizing for %s : \n", inFileName);
|
DISPLAY("optimizing for %s - limit speed %u MB/s \n", inFileName, targetSpeed);
|
||||||
|
targetSpeed *= 1000;
|
||||||
|
|
||||||
{
|
{ ZSTD_CCtx* const ctx = ZSTD_createCCtx();
|
||||||
ZSTD_CCtx* ctx = ZSTD_createCCtx();
|
|
||||||
ZSTD_compressionParameters params;
|
ZSTD_compressionParameters params;
|
||||||
winnerInfo_t winner;
|
winnerInfo_t winner;
|
||||||
BMK_result_t candidate;
|
BMK_result_t candidate;
|
||||||
const size_t blockSize = g_blockSize ? g_blockSize : benchedSize;
|
const size_t blockSize = g_blockSize ? g_blockSize : benchedSize;
|
||||||
int i;
|
|
||||||
|
|
||||||
/* init */
|
/* init */
|
||||||
|
if (ctx==NULL) { DISPLAY("\n ZSTD_createCCtx error \n"); free(origBuff); return 14;}
|
||||||
memset(&winner, 0, sizeof(winner));
|
memset(&winner, 0, sizeof(winner));
|
||||||
winner.result.cSize = (size_t)(-1);
|
winner.result.cSize = (size_t)(-1);
|
||||||
|
|
||||||
/* find best solution from default params */
|
/* find best solution from default params */
|
||||||
{
|
{ const int maxSeeds = g_noSeed ? 1 : ZSTD_maxCLevel();
|
||||||
const int maxSeeds = g_noSeed ? 1 : ZSTD_maxCLevel();
|
int i;
|
||||||
for (i=1; i<=maxSeeds; i++) {
|
for (i=1; i<=maxSeeds; i++) {
|
||||||
params = ZSTD_getCParams(i, blockSize, 0);
|
params = ZSTD_getCParams(i, blockSize, 0);
|
||||||
BMK_benchParam(&candidate, origBuff, benchedSize, ctx, params);
|
BMK_benchParam(&candidate, origBuff, benchedSize, ctx, params);
|
||||||
|
if (candidate.cSpeed < targetSpeed)
|
||||||
|
break;
|
||||||
if ( (candidate.cSize < winner.result.cSize)
|
if ( (candidate.cSize < winner.result.cSize)
|
||||||
||((candidate.cSize == winner.result.cSize) && (candidate.cSpeed > winner.result.cSpeed)) )
|
| ((candidate.cSize == winner.result.cSize) & (candidate.cSpeed > winner.result.cSpeed)) )
|
||||||
{
|
{
|
||||||
winner.params = params;
|
winner.params = params;
|
||||||
winner.result = candidate;
|
winner.result = candidate;
|
||||||
@@ -855,12 +793,11 @@ int optimizeForSize(char* inFileName)
|
|||||||
BMK_printWinner(stdout, 99, winner.result, winner.params, benchedSize);
|
BMK_printWinner(stdout, 99, winner.result, winner.params, benchedSize);
|
||||||
|
|
||||||
/* start tests */
|
/* start tests */
|
||||||
{
|
{ time_t const grillStart = time(NULL);
|
||||||
const int milliStart = BMK_GetMilliStart();
|
|
||||||
do {
|
do {
|
||||||
params = winner.params;
|
params = winner.params;
|
||||||
paramVariation(¶ms);
|
paramVariation(¶ms);
|
||||||
if ((FUZ_rand(&g_rand) & 15) == 1) params = randomParams();
|
if ((FUZ_rand(&g_rand) & 15) == 3) params = randomParams();
|
||||||
|
|
||||||
/* exclude faster if already played set of params */
|
/* exclude faster if already played set of params */
|
||||||
if (FUZ_rand(&g_rand) & ((1 << NB_TESTS_PLAYED(params))-1)) continue;
|
if (FUZ_rand(&g_rand) & ((1 << NB_TESTS_PLAYED(params))-1)) continue;
|
||||||
@@ -870,13 +807,15 @@ int optimizeForSize(char* inFileName)
|
|||||||
BMK_benchParam(&candidate, origBuff, benchedSize, ctx, params);
|
BMK_benchParam(&candidate, origBuff, benchedSize, ctx, params);
|
||||||
|
|
||||||
/* improvement found => new winner */
|
/* improvement found => new winner */
|
||||||
if ( (candidate.cSize < winner.result.cSize)
|
if ( (candidate.cSpeed > targetSpeed)
|
||||||
||((candidate.cSize == winner.result.cSize) && (candidate.cSpeed > winner.result.cSpeed)) ) {
|
& ( (candidate.cSize < winner.result.cSize)
|
||||||
|
| ((candidate.cSize == winner.result.cSize) & (candidate.cSpeed > winner.result.cSpeed)) ) )
|
||||||
|
{
|
||||||
winner.params = params;
|
winner.params = params;
|
||||||
winner.result = candidate;
|
winner.result = candidate;
|
||||||
BMK_printWinner(stdout, 99, winner.result, winner.params, benchedSize);
|
BMK_printWinner(stdout, 99, winner.result, winner.params, benchedSize);
|
||||||
}
|
}
|
||||||
} while (BMK_GetMilliSpan(milliStart) < g_grillDuration);
|
} while (BMK_timeSpan(grillStart) < g_grillDuration_s);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* end summary */
|
/* end summary */
|
||||||
@@ -887,11 +826,12 @@ int optimizeForSize(char* inFileName)
|
|||||||
ZSTD_freeCCtx(ctx);
|
ZSTD_freeCCtx(ctx);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
free(origBuff);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static int usage(char* exename)
|
static int usage(const char* exename)
|
||||||
{
|
{
|
||||||
DISPLAY( "Usage :\n");
|
DISPLAY( "Usage :\n");
|
||||||
DISPLAY( " %s [arg] file\n", exename);
|
DISPLAY( " %s [arg] file\n", exename);
|
||||||
@@ -904,29 +844,32 @@ static int usage(char* exename)
|
|||||||
static int usage_advanced(void)
|
static int usage_advanced(void)
|
||||||
{
|
{
|
||||||
DISPLAY( "\nAdvanced options :\n");
|
DISPLAY( "\nAdvanced options :\n");
|
||||||
DISPLAY( " -i# : iteration loops [1-9](default : %i)\n", NBLOOPS);
|
DISPLAY( " -T# : set level 1 speed objective \n");
|
||||||
DISPLAY( " -B# : cut input into blocks of size # (default : single block)\n");
|
DISPLAY( " -B# : cut input into blocks of size # (default : single block) \n");
|
||||||
DISPLAY( " -P# : generated sample compressibility (default : %.1f%%)\n", COMPRESSIBILITY_DEFAULT * 100);
|
DISPLAY( " -i# : iteration loops [1-9](default : %i) \n", NBLOOPS);
|
||||||
DISPLAY( " -S : Single run\n");
|
DISPLAY( " -O# : find Optimized parameters for # target speed (default : 0) \n");
|
||||||
|
DISPLAY( " -S : Single run \n");
|
||||||
|
DISPLAY( " -P# : generated sample compressibility (default : %.1f%%) \n", COMPRESSIBILITY_DEFAULT * 100);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int badusage(char* exename)
|
static int badusage(const char* exename)
|
||||||
{
|
{
|
||||||
DISPLAY("Wrong parameters\n");
|
DISPLAY("Wrong parameters\n");
|
||||||
usage(exename);
|
usage(exename);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char** argv)
|
int main(int argc, const char** argv)
|
||||||
{
|
{
|
||||||
int i,
|
int i,
|
||||||
filenamesStart=0,
|
filenamesStart=0,
|
||||||
result;
|
result;
|
||||||
char* exename=argv[0];
|
const char* exename=argv[0];
|
||||||
char* input_filename=0;
|
const char* input_filename=0;
|
||||||
U32 optimizer = 0;
|
U32 optimizer = 0;
|
||||||
U32 main_pause = 0;
|
U32 main_pause = 0;
|
||||||
|
U32 targetSpeed = 0;
|
||||||
|
|
||||||
/* checks */
|
/* checks */
|
||||||
if (NB_LEVELS_TRACKED <= ZSTD_maxCLevel()) {
|
if (NB_LEVELS_TRACKED <= ZSTD_maxCLevel()) {
|
||||||
@@ -940,7 +883,7 @@ int main(int argc, char** argv)
|
|||||||
if (argc<1) { badusage(exename); return 1; }
|
if (argc<1) { badusage(exename); return 1; }
|
||||||
|
|
||||||
for(i=1; i<argc; i++) {
|
for(i=1; i<argc; i++) {
|
||||||
char* argument = argv[i];
|
const char* argument = argv[i];
|
||||||
|
|
||||||
if(!argument) continue; /* Protection if argument empty */
|
if(!argument) continue; /* Protection if argument empty */
|
||||||
|
|
||||||
@@ -964,7 +907,7 @@ int main(int argc, char** argv)
|
|||||||
/* Modify Nb Iterations */
|
/* Modify Nb Iterations */
|
||||||
case 'i':
|
case 'i':
|
||||||
argument++;
|
argument++;
|
||||||
if ((argument[0] >='0') && (argument[0] <='9'))
|
if ((argument[0] >='0') & (argument[0] <='9'))
|
||||||
g_nbIterations = *argument++ - '0';
|
g_nbIterations = *argument++ - '0';
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@@ -972,7 +915,7 @@ int main(int argc, char** argv)
|
|||||||
case 'P':
|
case 'P':
|
||||||
argument++;
|
argument++;
|
||||||
{ U32 proba32 = 0;
|
{ U32 proba32 = 0;
|
||||||
while ((argument[0]>= '0') && (argument[0]<= '9'))
|
while ((argument[0]>= '0') & (argument[0]<= '9'))
|
||||||
proba32 = (proba32*10) + (*argument++ - '0');
|
proba32 = (proba32*10) + (*argument++ - '0');
|
||||||
g_compressibility = (double)proba32 / 100.;
|
g_compressibility = (double)proba32 / 100.;
|
||||||
}
|
}
|
||||||
@@ -981,6 +924,9 @@ int main(int argc, char** argv)
|
|||||||
case 'O':
|
case 'O':
|
||||||
argument++;
|
argument++;
|
||||||
optimizer=1;
|
optimizer=1;
|
||||||
|
targetSpeed = 0;
|
||||||
|
while ((*argument >= '0') & (*argument <= '9'))
|
||||||
|
targetSpeed = (targetSpeed*10) + (*argument++ - '0');
|
||||||
break;
|
break;
|
||||||
|
|
||||||
/* Run Single conf */
|
/* Run Single conf */
|
||||||
@@ -1058,7 +1004,7 @@ int main(int argc, char** argv)
|
|||||||
case 'B':
|
case 'B':
|
||||||
g_blockSize = 0;
|
g_blockSize = 0;
|
||||||
argument++;
|
argument++;
|
||||||
while ((*argument >='0') && (*argument <='9'))
|
while ((*argument >='0') & (*argument <='9'))
|
||||||
g_blockSize = (g_blockSize*10) + (*argument++ - '0');
|
g_blockSize = (g_blockSize*10) + (*argument++ - '0');
|
||||||
if (*argument=='K') g_blockSize<<=10, argument++; /* allows using KB notation */
|
if (*argument=='K') g_blockSize<<=10, argument++; /* allows using KB notation */
|
||||||
if (*argument=='M') g_blockSize<<=20, argument++;
|
if (*argument=='M') g_blockSize<<=20, argument++;
|
||||||
@@ -1081,7 +1027,7 @@ int main(int argc, char** argv)
|
|||||||
result = benchSample();
|
result = benchSample();
|
||||||
else {
|
else {
|
||||||
if (optimizer)
|
if (optimizer)
|
||||||
result = optimizeForSize(input_filename);
|
result = optimizeForSize(input_filename, targetSpeed);
|
||||||
else
|
else
|
||||||
result = benchFiles(argv+filenamesStart, argc-filenamesStart);
|
result = benchFiles(argv+filenamesStart, argc-filenamesStart);
|
||||||
}
|
}
|
||||||
|
|||||||
+13
-4
@@ -28,6 +28,14 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/*-************************************
|
||||||
|
* Tuning parameters
|
||||||
|
**************************************/
|
||||||
|
#ifndef ZSTDCLI_CLEVEL_DEFAULT
|
||||||
|
# define ZSTDCLI_CLEVEL_DEFAULT 3
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/*-************************************
|
/*-************************************
|
||||||
* Includes
|
* Includes
|
||||||
**************************************/
|
**************************************/
|
||||||
@@ -207,7 +215,7 @@ int main(int argCount, const char** argv)
|
|||||||
nextArgumentIsMaxDict=0,
|
nextArgumentIsMaxDict=0,
|
||||||
nextArgumentIsDictID=0,
|
nextArgumentIsDictID=0,
|
||||||
nextArgumentIsFile=0;
|
nextArgumentIsFile=0;
|
||||||
unsigned cLevel = 1;
|
unsigned cLevel = ZSTDCLI_CLEVEL_DEFAULT;
|
||||||
unsigned cLevelLast = 1;
|
unsigned cLevelLast = 1;
|
||||||
unsigned recursive = 0;
|
unsigned recursive = 0;
|
||||||
const char** filenameTable = (const char**)malloc(argCount * sizeof(const char*)); /* argCount >= 1 */
|
const char** filenameTable = (const char**)malloc(argCount * sizeof(const char*)); /* argCount >= 1 */
|
||||||
@@ -256,7 +264,7 @@ int main(int argCount, const char** argv)
|
|||||||
if (!strcmp(argument, "--force")) { FIO_overwriteMode(); continue; }
|
if (!strcmp(argument, "--force")) { FIO_overwriteMode(); continue; }
|
||||||
if (!strcmp(argument, "--version")) { displayOut=stdout; DISPLAY(WELCOME_MESSAGE); CLEAN_RETURN(0); }
|
if (!strcmp(argument, "--version")) { displayOut=stdout; DISPLAY(WELCOME_MESSAGE); CLEAN_RETURN(0); }
|
||||||
if (!strcmp(argument, "--help")) { displayOut=stdout; CLEAN_RETURN(usage_advanced(programName)); }
|
if (!strcmp(argument, "--help")) { displayOut=stdout; CLEAN_RETURN(usage_advanced(programName)); }
|
||||||
if (!strcmp(argument, "--verbose")) { displayLevel=4; continue; }
|
if (!strcmp(argument, "--verbose")) { displayLevel++; continue; }
|
||||||
if (!strcmp(argument, "--quiet")) { displayLevel--; continue; }
|
if (!strcmp(argument, "--quiet")) { displayLevel--; continue; }
|
||||||
if (!strcmp(argument, "--stdout")) { forceStdout=1; outFileName=stdoutmark; displayLevel-=(displayLevel==2); continue; }
|
if (!strcmp(argument, "--stdout")) { forceStdout=1; outFileName=stdoutmark; displayLevel-=(displayLevel==2); continue; }
|
||||||
if (!strcmp(argument, "--ultra")) { FIO_setMaxWLog(0); continue; }
|
if (!strcmp(argument, "--ultra")) { FIO_setMaxWLog(0); continue; }
|
||||||
@@ -317,7 +325,7 @@ int main(int argCount, const char** argv)
|
|||||||
case 'f': FIO_overwriteMode(); forceStdout=1; argument++; break;
|
case 'f': FIO_overwriteMode(); forceStdout=1; argument++; break;
|
||||||
|
|
||||||
/* Verbose mode */
|
/* Verbose mode */
|
||||||
case 'v': displayLevel=4; argument++; break;
|
case 'v': displayLevel++; argument++; break;
|
||||||
|
|
||||||
/* Quiet mode */
|
/* Quiet mode */
|
||||||
case 'q': displayLevel--; argument++; break;
|
case 'q': displayLevel--; argument++; break;
|
||||||
@@ -331,7 +339,7 @@ int main(int argCount, const char** argv)
|
|||||||
/* test compressed file */
|
/* test compressed file */
|
||||||
case 't': decode=1; outFileName=nulmark; argument++; break;
|
case 't': decode=1; outFileName=nulmark; argument++; break;
|
||||||
|
|
||||||
/* dictionary name */
|
/* destination file name */
|
||||||
case 'o': nextArgumentIsOutFileName=1; argument++; break;
|
case 'o': nextArgumentIsOutFileName=1; argument++; break;
|
||||||
|
|
||||||
/* recursive */
|
/* recursive */
|
||||||
@@ -454,6 +462,7 @@ int main(int argCount, const char** argv)
|
|||||||
if (dictBuild) {
|
if (dictBuild) {
|
||||||
#ifndef ZSTD_NODICT
|
#ifndef ZSTD_NODICT
|
||||||
ZDICT_params_t dictParams;
|
ZDICT_params_t dictParams;
|
||||||
|
memset(&dictParams, 0, sizeof(dictParams));
|
||||||
dictParams.compressionLevel = dictCLevel;
|
dictParams.compressionLevel = dictCLevel;
|
||||||
dictParams.selectivityLevel = dictSelect;
|
dictParams.selectivityLevel = dictSelect;
|
||||||
dictParams.notificationLevel = displayLevel;
|
dictParams.notificationLevel = displayLevel;
|
||||||
|
|||||||
@@ -428,6 +428,10 @@
|
|||||||
RelativePath="..\..\..\lib\legacy\zstd_v06.c"
|
RelativePath="..\..\..\lib\legacy\zstd_v06.c"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\..\lib\legacy\zstd_v08.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\programs\zstdcli.c"
|
RelativePath="..\..\..\programs\zstdcli.c"
|
||||||
>
|
>
|
||||||
@@ -538,6 +542,10 @@
|
|||||||
RelativePath="..\..\..\lib\legacy\zstd_v06.h"
|
RelativePath="..\..\..\lib\legacy\zstd_v06.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\..\lib\legacy\zstd_v08.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
<ProjectConfiguration Include="Debug|Win32">
|
||||||
@@ -38,6 +38,7 @@
|
|||||||
<ClCompile Include="..\..\..\lib\legacy\zstd_v04.c" />
|
<ClCompile Include="..\..\..\lib\legacy\zstd_v04.c" />
|
||||||
<ClCompile Include="..\..\..\lib\legacy\zstd_v05.c" />
|
<ClCompile Include="..\..\..\lib\legacy\zstd_v05.c" />
|
||||||
<ClCompile Include="..\..\..\lib\legacy\zstd_v06.c" />
|
<ClCompile Include="..\..\..\lib\legacy\zstd_v06.c" />
|
||||||
|
<ClCompile Include="..\..\..\lib\legacy\zstd_v08.c" />
|
||||||
<ClCompile Include="..\..\..\programs\bench.c" />
|
<ClCompile Include="..\..\..\programs\bench.c" />
|
||||||
<ClCompile Include="..\..\..\programs\datagen.c" />
|
<ClCompile Include="..\..\..\programs\datagen.c" />
|
||||||
<ClCompile Include="..\..\..\programs\dibio.c" />
|
<ClCompile Include="..\..\..\programs\dibio.c" />
|
||||||
@@ -62,6 +63,7 @@
|
|||||||
<ClInclude Include="..\..\..\lib\legacy\zstd_v04.h" />
|
<ClInclude Include="..\..\..\lib\legacy\zstd_v04.h" />
|
||||||
<ClInclude Include="..\..\..\lib\legacy\zstd_v05.h" />
|
<ClInclude Include="..\..\..\lib\legacy\zstd_v05.h" />
|
||||||
<ClInclude Include="..\..\..\lib\legacy\zstd_v06.h" />
|
<ClInclude Include="..\..\..\lib\legacy\zstd_v06.h" />
|
||||||
|
<ClInclude Include="..\..\..\lib\legacy\zstd_v08.h" />
|
||||||
<ClInclude Include="..\..\..\programs\bench.h" />
|
<ClInclude Include="..\..\..\programs\bench.h" />
|
||||||
<ClInclude Include="..\..\..\programs\datagen.h" />
|
<ClInclude Include="..\..\..\programs\datagen.h" />
|
||||||
<ClInclude Include="..\..\..\programs\dibio.h" />
|
<ClInclude Include="..\..\..\programs\dibio.h" />
|
||||||
|
|||||||
@@ -93,7 +93,8 @@ IF (ZSTD_LEGACY_SUPPORT)
|
|||||||
${LIBRARY_LEGACY_DIR}/zstd_v03.c
|
${LIBRARY_LEGACY_DIR}/zstd_v03.c
|
||||||
${LIBRARY_LEGACY_DIR}/zstd_v04.c
|
${LIBRARY_LEGACY_DIR}/zstd_v04.c
|
||||||
${LIBRARY_LEGACY_DIR}/zstd_v05.c
|
${LIBRARY_LEGACY_DIR}/zstd_v05.c
|
||||||
${LIBRARY_LEGACY_DIR}/zstd_v06.c)
|
${LIBRARY_LEGACY_DIR}/zstd_v06.c
|
||||||
|
${LIBRARY_LEGACY_DIR}/zstd_v08.c)
|
||||||
|
|
||||||
SET(Headers ${Headers}
|
SET(Headers ${Headers}
|
||||||
${LIBRARY_LEGACY_DIR}/zstd_legacy.h
|
${LIBRARY_LEGACY_DIR}/zstd_legacy.h
|
||||||
@@ -102,7 +103,8 @@ IF (ZSTD_LEGACY_SUPPORT)
|
|||||||
${LIBRARY_LEGACY_DIR}/zstd_v03.h
|
${LIBRARY_LEGACY_DIR}/zstd_v03.h
|
||||||
${LIBRARY_LEGACY_DIR}/zstd_v04.h
|
${LIBRARY_LEGACY_DIR}/zstd_v04.h
|
||||||
${LIBRARY_LEGACY_DIR}/zstd_v05.h
|
${LIBRARY_LEGACY_DIR}/zstd_v05.h
|
||||||
${LIBRARY_LEGACY_DIR}/zstd_v06.h)
|
${LIBRARY_LEGACY_DIR}/zstd_v06.h
|
||||||
|
${LIBRARY_LEGACY_DIR}/zstd_v08.h)
|
||||||
ENDIF (ZSTD_LEGACY_SUPPORT)
|
ENDIF (ZSTD_LEGACY_SUPPORT)
|
||||||
|
|
||||||
IF (MSVC)
|
IF (MSVC)
|
||||||
|
|||||||
@@ -0,0 +1,18 @@
|
|||||||
|
class Zstd < Formula
|
||||||
|
desc "Zstandard - Fast real-time compression algorithm"
|
||||||
|
homepage "http://www.zstd.net/"
|
||||||
|
url "https://github.com/Cyan4973/zstd/archive/v0.7.3.tar.gz"
|
||||||
|
sha256 "767da2a321b70d57a0f0776c39192a6c235c8f1fd7f1268eafde94a8869c3c71"
|
||||||
|
|
||||||
|
def install
|
||||||
|
system "make", "install", "PREFIX=#{prefix}"
|
||||||
|
end
|
||||||
|
|
||||||
|
test do
|
||||||
|
(testpath/"input.txt").write("Hello, world." * 10)
|
||||||
|
system "#{bin}/zstd", "input.txt", "-o", "compressed.zst"
|
||||||
|
system "#{bin}/zstd", "--test", "compressed.zst"
|
||||||
|
system "#{bin}/zstd", "-d", "compressed.zst", "-o", "decompressed.txt"
|
||||||
|
system "cmp", "input.txt", "decompressed.txt"
|
||||||
|
end
|
||||||
|
end
|
||||||
+40
-23
@@ -16,7 +16,7 @@ Distribution of this document is unlimited.
|
|||||||
|
|
||||||
### Version
|
### Version
|
||||||
|
|
||||||
0.1.0 (08/07/16)
|
0.1.1 (15/07/16)
|
||||||
|
|
||||||
|
|
||||||
Introduction
|
Introduction
|
||||||
@@ -189,10 +189,10 @@ depending on local limitations.
|
|||||||
|
|
||||||
__Unused bit__
|
__Unused bit__
|
||||||
|
|
||||||
The value of this bit is unimportant
|
The value of this bit should be set to zero.
|
||||||
and not interpreted by a decoder compliant with this specification version.
|
A decoder compliant with this specification version should not interpret it.
|
||||||
It may be used in a future revision,
|
It might be used in a future version,
|
||||||
to signal a property which is not required to properly decode the frame.
|
to signal a property which is not mandatory to properly decode the frame.
|
||||||
|
|
||||||
__Reserved bit__
|
__Reserved bit__
|
||||||
|
|
||||||
@@ -258,9 +258,9 @@ depending on local limitations.
|
|||||||
|
|
||||||
__Dictionary ID__
|
__Dictionary ID__
|
||||||
|
|
||||||
This is a variable size field, which contains an ID.
|
This is a variable size field, which contains
|
||||||
It checks if the correct dictionary is used for decoding.
|
the ID of the dictionary required to properly decode the frame.
|
||||||
Note that this field is optional. If it's not present,
|
Note that this field is optional. When it's not present,
|
||||||
it's up to the caller to make sure it uses the correct dictionary.
|
it's up to the caller to make sure it uses the correct dictionary.
|
||||||
|
|
||||||
Field size depends on __Dictionary ID flag__.
|
Field size depends on __Dictionary ID flag__.
|
||||||
@@ -271,6 +271,15 @@ Field size depends on __Dictionary ID flag__.
|
|||||||
It's allowed to represent a small ID (for example `13`)
|
It's allowed to represent a small ID (for example `13`)
|
||||||
with a large 4-bytes dictionary ID, losing some compacity in the process.
|
with a large 4-bytes dictionary ID, losing some compacity in the process.
|
||||||
|
|
||||||
|
_Reserved ranges :_
|
||||||
|
If the frame is going to be distributed in a private environment,
|
||||||
|
any dictionary ID can be used.
|
||||||
|
However, for public distribution of compressed frames using a dictionary,
|
||||||
|
some ranges are reserved for future use :
|
||||||
|
- low : 1 - 32767 : reserved
|
||||||
|
- high : >= (2^31) : reserved
|
||||||
|
|
||||||
|
|
||||||
__Frame Content Size__
|
__Frame Content Size__
|
||||||
|
|
||||||
This is the original (uncompressed) size.
|
This is the original (uncompressed) size.
|
||||||
@@ -497,7 +506,7 @@ Compressed and regenerated size fields follow big endian convention.
|
|||||||
This section is only present when literals block type is `Compressed` (`0`).
|
This section is only present when literals block type is `Compressed` (`0`).
|
||||||
|
|
||||||
Prefix coding represents symbols from an a priori known alphabet
|
Prefix coding represents symbols from an a priori known alphabet
|
||||||
by bit sequences (codes), one code for each symbol,
|
by bit sequences (codewords), one codeword for each symbol,
|
||||||
in a manner such that different symbols may be represented
|
in a manner such that different symbols may be represented
|
||||||
by bit sequences of different lengths,
|
by bit sequences of different lengths,
|
||||||
but a parser can always parse an encoded string
|
but a parser can always parse an encoded string
|
||||||
@@ -506,14 +515,13 @@ unambiguously symbol-by-symbol.
|
|||||||
Given an alphabet with known symbol frequencies,
|
Given an alphabet with known symbol frequencies,
|
||||||
the Huffman algorithm allows the construction of an optimal prefix code
|
the Huffman algorithm allows the construction of an optimal prefix code
|
||||||
using the fewest bits of any possible prefix codes for that alphabet.
|
using the fewest bits of any possible prefix codes for that alphabet.
|
||||||
Such a code is called a Huffman code.
|
|
||||||
|
|
||||||
Prefix code must not exceed a maximum code length.
|
Prefix code must not exceed a maximum code length.
|
||||||
More bits improve accuracy but cost more header size,
|
More bits improve accuracy but cost more header size,
|
||||||
and require more memory for decoding operations.
|
and require more memory for decoding operations.
|
||||||
|
|
||||||
The current format limits the maximum depth to 15 bits.
|
The current format limits the maximum depth to 15 bits.
|
||||||
The reference decoder goes further, by limiting it to 11 bits.
|
The reference decoder goes further, by limiting it to 12 bits.
|
||||||
It is recommended to remain compatible with reference decoder.
|
It is recommended to remain compatible with reference decoder.
|
||||||
|
|
||||||
|
|
||||||
@@ -609,20 +617,19 @@ When both states have overflowed the bitstream, end is reached.
|
|||||||
##### Conversion from weights to huffman prefix codes
|
##### Conversion from weights to huffman prefix codes
|
||||||
|
|
||||||
All present symbols shall now have a `weight` value.
|
All present symbols shall now have a `weight` value.
|
||||||
A `weight` directly represents a `range` of prefix codes,
|
|
||||||
following the formulae : `range = weight ? 1 << (weight-1) : 0 ;`
|
|
||||||
Symbols are sorted by weight.
|
Symbols are sorted by weight.
|
||||||
|
Symbols with a weight of zero are removed.
|
||||||
Within same weight, symbols keep natural order.
|
Within same weight, symbols keep natural order.
|
||||||
Starting from lowest weight,
|
Starting from lowest weight,
|
||||||
symbols are being allocated to a range of prefix codes.
|
symbols are being allocated to a `range`.
|
||||||
Symbols with a weight of zero are not present.
|
A `weight` directly represents a `range`,
|
||||||
|
following the formulae : `range = weight ? 1 << (weight-1) : 0 ;`
|
||||||
It is then possible to transform weights into nbBits :
|
Similarly, it is possible to transform weights into nbBits :
|
||||||
`nbBits = nbBits ? maxBits + 1 - weight : 0;` .
|
`nbBits = nbBits ? maxBits + 1 - weight : 0;` .
|
||||||
|
|
||||||
|
|
||||||
__Example__ :
|
__Example__ :
|
||||||
Let's presume the following huffman tree has been decoded :
|
Let's presume the following list of weights has been decoded :
|
||||||
|
|
||||||
| Literal | 0 | 1 | 2 | 3 | 4 | 5 |
|
| Literal | 0 | 1 | 2 | 3 | 4 | 5 |
|
||||||
| ------- | --- | --- | --- | --- | --- | --- |
|
| ------- | --- | --- | --- | --- | --- | --- |
|
||||||
@@ -635,8 +642,9 @@ it gives the following distribution :
|
|||||||
| ------------ | --- | --- | --- | --- | --- | ---- |
|
| ------------ | --- | --- | --- | --- | --- | ---- |
|
||||||
| weight | 0 | 1 | 1 | 2 | 3 | 4 |
|
| weight | 0 | 1 | 1 | 2 | 3 | 4 |
|
||||||
| range | 0 | 1 | 1 | 2 | 4 | 8 |
|
| range | 0 | 1 | 1 | 2 | 4 | 8 |
|
||||||
| prefix codes | N/A | 0 | 1 | 2-3 | 4-7 | 8-15 |
|
| table entries| N/A | 0 | 1 | 2-3 | 4-7 | 8-15 |
|
||||||
| nb bits | 0 | 4 | 4 | 3 | 2 | 1 |
|
| nb bits | 0 | 4 | 4 | 3 | 2 | 1 |
|
||||||
|
| prefix codes | N/A | 0000| 0001| 001 | 01 | 1 |
|
||||||
|
|
||||||
|
|
||||||
#### Literals bitstreams
|
#### Literals bitstreams
|
||||||
@@ -687,12 +695,12 @@ it's possible to read the bitstream in a little-endian fashion,
|
|||||||
keeping track of already used bits.
|
keeping track of already used bits.
|
||||||
|
|
||||||
Reading the last `maxBits` bits,
|
Reading the last `maxBits` bits,
|
||||||
it's then possible to compare extracted value to the prefix codes table,
|
it's then possible to compare extracted value to decoding table,
|
||||||
determining the symbol to decode and number of bits to discard.
|
determining the symbol to decode and number of bits to discard.
|
||||||
|
|
||||||
The process continues up to reading the required number of symbols per stream.
|
The process continues up to reading the required number of symbols per stream.
|
||||||
If a bitstream is not entirely and exactly consumed,
|
If a bitstream is not entirely and exactly consumed,
|
||||||
hence reaching exactly its beginning position with all bits consumed,
|
hence reaching exactly its beginning position with _all_ bits consumed,
|
||||||
the decoding process is considered faulty.
|
the decoding process is considered faulty.
|
||||||
|
|
||||||
|
|
||||||
@@ -704,7 +712,7 @@ A literal copy command specifies a length.
|
|||||||
It is the number of bytes to be copied (or extracted) from the literal section.
|
It is the number of bytes to be copied (or extracted) from the literal section.
|
||||||
A match copy command specifies an offset and a length.
|
A match copy command specifies an offset and a length.
|
||||||
The offset gives the position to copy from,
|
The offset gives the position to copy from,
|
||||||
which can stand within a previous block.
|
which can be within a previous block.
|
||||||
|
|
||||||
There are 3 symbol types, `literalLength`, `matchLength` and `offset`,
|
There are 3 symbol types, `literalLength`, `matchLength` and `offset`,
|
||||||
which are encoded together, interleaved in a single _bitstream_.
|
which are encoded together, interleaved in a single _bitstream_.
|
||||||
@@ -1136,6 +1144,14 @@ __Header__ : 4 bytes ID, value 0xEC30A437, Little Endian format
|
|||||||
__Dict_ID__ : 4 bytes, stored in Little Endian format.
|
__Dict_ID__ : 4 bytes, stored in Little Endian format.
|
||||||
DictID can be any value, except 0 (which means no DictID).
|
DictID can be any value, except 0 (which means no DictID).
|
||||||
It's used by decoders to check if they use the correct dictionary.
|
It's used by decoders to check if they use the correct dictionary.
|
||||||
|
_Reserved ranges :_
|
||||||
|
If the frame is going to be distributed in a private environment,
|
||||||
|
any dictionary ID can be used.
|
||||||
|
However, for public distribution of compressed frames,
|
||||||
|
some ranges are reserved for future use :
|
||||||
|
|
||||||
|
- low range : 1 - 32767 : reserved
|
||||||
|
- high range : >= (2^31) : reserved
|
||||||
|
|
||||||
__Stats__ : Entropy tables, following the same format as a [compressed blocks].
|
__Stats__ : Entropy tables, following the same format as a [compressed blocks].
|
||||||
They are stored in following order :
|
They are stored in following order :
|
||||||
@@ -1152,4 +1168,5 @@ __Content__ : Where the actual dictionary content is.
|
|||||||
|
|
||||||
Version changes
|
Version changes
|
||||||
---------------
|
---------------
|
||||||
0.1.0 initial release
|
- 0.1.1 reserved dictID ranges
|
||||||
|
- 0.1.0 initial release
|
||||||
|
|||||||
Reference in New Issue
Block a user