init
This commit is contained in:
224
expkg/vendor/lz4/tests/abiTest.c
vendored
Normal file
224
expkg/vendor/lz4/tests/abiTest.c
vendored
Normal file
@ -0,0 +1,224 @@
|
||||
/*
|
||||
* Copyright (c) 2016-2020, Yann Collet, Facebook, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under both the BSD-style license (found in the
|
||||
* LICENSE file in the root directory of this source tree) and the GPLv2 (found
|
||||
* in the COPYING file in the root directory of this source tree),
|
||||
* meaning you may select, at your option, one of the above-listed licenses.
|
||||
*/
|
||||
|
||||
/*
|
||||
* abiTest :
|
||||
* ensure ABI stability expectations are not broken by a new version
|
||||
**/
|
||||
|
||||
|
||||
/*===========================================
|
||||
* Dependencies
|
||||
*==========================================*/
|
||||
#include <stddef.h> /* size_t */
|
||||
#include <stdlib.h> /* malloc, free, exit */
|
||||
#include <stdio.h> /* fprintf */
|
||||
#include <string.h> /* strcmp */
|
||||
#include <assert.h>
|
||||
#include <sys/types.h> /* stat */
|
||||
#include <sys/stat.h> /* stat */
|
||||
#include "xxhash.h"
|
||||
|
||||
#include "lz4.h"
|
||||
#include "lz4frame.h"
|
||||
|
||||
|
||||
/*===========================================
|
||||
* Macros
|
||||
*==========================================*/
|
||||
#define MIN(a,b) ( (a) < (b) ? (a) : (b) )
|
||||
|
||||
#define MSG(...) fprintf(stderr, __VA_ARGS__)
|
||||
|
||||
#define CONTROL_MSG(c, ...) { \
|
||||
if ((c)) { \
|
||||
MSG(__VA_ARGS__); \
|
||||
MSG(" \n"); \
|
||||
abort(); \
|
||||
} \
|
||||
}
|
||||
|
||||
|
||||
static size_t checkBuffers(const void* buff1, const void* buff2, size_t buffSize)
|
||||
{
|
||||
const char* const ip1 = (const char*)buff1;
|
||||
const char* const ip2 = (const char*)buff2;
|
||||
size_t pos;
|
||||
|
||||
for (pos=0; pos<buffSize; pos++)
|
||||
if (ip1[pos]!=ip2[pos])
|
||||
break;
|
||||
|
||||
return pos;
|
||||
}
|
||||
|
||||
|
||||
LZ4_stream_t LZ4_cState;
|
||||
LZ4_streamDecode_t LZ4_dState;
|
||||
|
||||
/** roundTripTest() :
|
||||
* Compresses `srcBuff` into `compressedBuff`,
|
||||
* then decompresses `compressedBuff` into `resultBuff`.
|
||||
* If clevel==0, compression level is derived from srcBuff's content head bytes.
|
||||
* This function abort() if it detects any round-trip error.
|
||||
* Therefore, if it returns, round trip is considered successfully validated.
|
||||
* Note : `compressedBuffCapacity` should be `>= LZ4_compressBound(srcSize)`
|
||||
* for compression to be guaranteed to work */
|
||||
static void roundTripTest(void* resultBuff, size_t resultBuffCapacity,
|
||||
void* compressedBuff, size_t compressedBuffCapacity,
|
||||
const void* srcBuff, size_t srcSize)
|
||||
{
|
||||
int const acceleration = 1;
|
||||
// Note : can't use LZ4_initStream(), because it's only present since v1.9.0
|
||||
memset(&LZ4_cState, 0, sizeof(LZ4_cState));
|
||||
{ int const cSize = LZ4_compress_fast_continue(&LZ4_cState, (const char*)srcBuff, (char*)compressedBuff, (int)srcSize, (int)compressedBuffCapacity, acceleration);
|
||||
CONTROL_MSG(cSize == 0, "Compression error !");
|
||||
{ int const dInit = LZ4_setStreamDecode(&LZ4_dState, NULL, 0);
|
||||
CONTROL_MSG(dInit == 0, "LZ4_setStreamDecode error !");
|
||||
}
|
||||
{ int const dSize = LZ4_decompress_safe_continue (&LZ4_dState, (const char*)compressedBuff, (char*)resultBuff, cSize, (int)resultBuffCapacity);
|
||||
CONTROL_MSG(dSize < 0, "Decompression detected an error !");
|
||||
CONTROL_MSG(dSize != (int)srcSize, "Decompression corruption error : wrong decompressed size !");
|
||||
} }
|
||||
|
||||
/* check potential content corruption error */
|
||||
assert(resultBuffCapacity >= srcSize);
|
||||
{ size_t const errorPos = checkBuffers(srcBuff, resultBuff, srcSize);
|
||||
CONTROL_MSG(errorPos != srcSize,
|
||||
"Silent decoding corruption, at pos %u !!!",
|
||||
(unsigned)errorPos);
|
||||
}
|
||||
}
|
||||
|
||||
static void roundTripCheck(void* srcBuff, size_t srcSize)
|
||||
{
|
||||
size_t const cBuffSize = LZ4_COMPRESSBOUND(srcSize);
|
||||
void* const cBuff = malloc(cBuffSize);
|
||||
void* const rBuff = malloc(cBuffSize);
|
||||
|
||||
if (!cBuff || !rBuff) {
|
||||
fprintf(stderr, "not enough memory ! \n");
|
||||
free(srcBuff);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
roundTripTest(rBuff, cBuffSize,
|
||||
cBuff, cBuffSize,
|
||||
srcBuff, srcSize);
|
||||
|
||||
free(rBuff);
|
||||
free(cBuff);
|
||||
}
|
||||
|
||||
|
||||
static size_t getFileSize(const char* infilename)
|
||||
{
|
||||
int r;
|
||||
#if defined(_MSC_VER)
|
||||
struct _stat64 statbuf;
|
||||
r = _stat64(infilename, &statbuf);
|
||||
if (r || !(statbuf.st_mode & S_IFREG)) return 0; /* No good... */
|
||||
#else
|
||||
struct stat statbuf;
|
||||
r = stat(infilename, &statbuf);
|
||||
if (r || !S_ISREG(statbuf.st_mode)) return 0; /* No good... */
|
||||
#endif
|
||||
return (size_t)statbuf.st_size;
|
||||
}
|
||||
|
||||
|
||||
static int isDirectory(const char* infilename)
|
||||
{
|
||||
int r;
|
||||
#if defined(_MSC_VER)
|
||||
struct _stat64 statbuf;
|
||||
r = _stat64(infilename, &statbuf);
|
||||
if (!r && (statbuf.st_mode & _S_IFDIR)) return 1;
|
||||
#else
|
||||
struct stat statbuf;
|
||||
r = stat(infilename, &statbuf);
|
||||
if (!r && S_ISDIR(statbuf.st_mode)) return 1;
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
/** loadFile() :
|
||||
* requirement : `buffer` size >= `fileSize` */
|
||||
static void loadFile(void* buffer, const char* fileName, size_t fileSize)
|
||||
{
|
||||
FILE* const f = fopen(fileName, "rb");
|
||||
if (isDirectory(fileName)) {
|
||||
MSG("Ignoring %s directory \n", fileName);
|
||||
free(buffer);
|
||||
fclose(f);
|
||||
exit(2);
|
||||
}
|
||||
if (f==NULL) {
|
||||
MSG("Impossible to open %s \n", fileName);
|
||||
free(buffer);
|
||||
exit(3);
|
||||
}
|
||||
{ size_t const readSize = fread(buffer, 1, fileSize, f);
|
||||
if (readSize != fileSize) {
|
||||
MSG("Error reading %s \n", fileName);
|
||||
free(buffer);
|
||||
fclose(f);
|
||||
exit(5);
|
||||
} }
|
||||
fclose(f);
|
||||
}
|
||||
|
||||
|
||||
static void fileCheck(const char* fileName)
|
||||
{
|
||||
size_t const fileSize = getFileSize(fileName);
|
||||
void* const buffer = malloc(fileSize + !fileSize /* avoid 0 */);
|
||||
if (!buffer) {
|
||||
MSG("not enough memory \n");
|
||||
exit(4);
|
||||
}
|
||||
loadFile(buffer, fileName, fileSize);
|
||||
roundTripCheck(buffer, fileSize);
|
||||
free (buffer);
|
||||
}
|
||||
|
||||
|
||||
int bad_usage(const char* exeName)
|
||||
{
|
||||
MSG(" \n");
|
||||
MSG("bad usage: \n");
|
||||
MSG(" \n");
|
||||
MSG("%s [Options] fileName \n", exeName);
|
||||
MSG(" \n");
|
||||
MSG("Options: \n");
|
||||
MSG("-# : use #=[0-9] compression level (default:0 == random) \n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
int main(int argCount, const char** argv)
|
||||
{
|
||||
const char* const exeName = argv[0];
|
||||
int argNb = 1;
|
||||
// Note : LZ4_VERSION_STRING requires >= v1.7.3+
|
||||
MSG("abiTest, built binary based on API %s \n", LZ4_VERSION_STRING);
|
||||
// Note : LZ4_versionString() requires >= v1.7.5+
|
||||
MSG("currently linked to dll %s \n", LZ4_versionString());
|
||||
|
||||
assert(argCount >= 1);
|
||||
if (argCount < 2) return bad_usage(exeName);
|
||||
|
||||
if (argNb >= argCount) return bad_usage(exeName);
|
||||
|
||||
fileCheck(argv[argNb]);
|
||||
MSG("no pb detected \n");
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user