2015-01-23 16:58:16 -08:00
|
|
|
/*
|
|
|
|
datagen.c - compressible data generator test tool
|
|
|
|
Copyright (C) Yann Collet 2012-2015
|
|
|
|
|
|
|
|
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 source repository : https://github.com/Cyan4973/zstd
|
|
|
|
- Public forum : https://groups.google.com/forum/#!forum/lz4c
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**************************************
|
|
|
|
* Includes
|
|
|
|
**************************************/
|
|
|
|
#include <stdlib.h> /* malloc */
|
2015-02-08 23:00:26 -08:00
|
|
|
#include <stdio.h> /* FILE, fwrite */
|
|
|
|
#include <string.h> /* memcpy */
|
2015-01-23 16:58:16 -08:00
|
|
|
|
|
|
|
|
|
|
|
/**************************************
|
|
|
|
* Basic Types
|
|
|
|
**************************************/
|
|
|
|
#if defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */
|
|
|
|
# include <stdint.h>
|
|
|
|
typedef uint8_t BYTE;
|
|
|
|
typedef uint16_t U16;
|
|
|
|
typedef uint32_t U32;
|
|
|
|
typedef int32_t S32;
|
|
|
|
typedef uint64_t U64;
|
|
|
|
#else
|
|
|
|
typedef unsigned char BYTE;
|
|
|
|
typedef unsigned short U16;
|
|
|
|
typedef unsigned int U32;
|
|
|
|
typedef signed int S32;
|
|
|
|
typedef unsigned long long U64;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2015-01-24 04:31:55 -08:00
|
|
|
/**************************************
|
|
|
|
* OS-specific Includes
|
|
|
|
**************************************/
|
|
|
|
#if defined(MSDOS) || defined(OS2) || defined(WIN32) || defined(_WIN32) || defined(__CYGWIN__)
|
|
|
|
# include <fcntl.h> /* _O_BINARY */
|
|
|
|
# include <io.h> /* _setmode, _isatty */
|
|
|
|
# define SET_BINARY_MODE(file) _setmode(_fileno(file), _O_BINARY)
|
|
|
|
#else
|
|
|
|
# define SET_BINARY_MODE(file)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2015-01-23 16:58:16 -08:00
|
|
|
/**************************************
|
|
|
|
* Constants
|
|
|
|
**************************************/
|
|
|
|
#define KB *(1 <<10)
|
|
|
|
|
|
|
|
#define PRIME1 2654435761U
|
|
|
|
#define PRIME2 2246822519U
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************
|
|
|
|
* Local Functions
|
|
|
|
*********************************************************/
|
2015-02-08 23:00:26 -08:00
|
|
|
#define RDG_rotl32(x,r) ((x << r) | (x >> (32 - r)))
|
|
|
|
static unsigned int RDG_rand(U32* src)
|
2015-01-23 16:58:16 -08:00
|
|
|
{
|
|
|
|
U32 rand32 = *src;
|
|
|
|
rand32 *= PRIME1;
|
2015-01-24 04:31:55 -08:00
|
|
|
rand32 ^= PRIME2;
|
2015-02-08 23:00:26 -08:00
|
|
|
rand32 = RDG_rotl32(rand32, 13);
|
2015-01-23 16:58:16 -08:00
|
|
|
*src = rand32;
|
|
|
|
return rand32;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#define LTSIZE 8192
|
|
|
|
#define LTMASK (LTSIZE-1)
|
2015-02-08 23:00:26 -08:00
|
|
|
static void* RDG_createLiteralDistrib(double ld)
|
2015-01-23 16:58:16 -08:00
|
|
|
{
|
2015-01-24 04:31:55 -08:00
|
|
|
BYTE* lt = malloc(LTSIZE);
|
2015-01-23 16:58:16 -08:00
|
|
|
U32 i = 0;
|
2015-01-24 04:31:55 -08:00
|
|
|
BYTE character = '0';
|
|
|
|
BYTE firstChar = '(';
|
|
|
|
BYTE lastChar = '}';
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2015-01-24 04:31:55 -08:00
|
|
|
if (ld==0.0)
|
|
|
|
{
|
|
|
|
character = 0;
|
|
|
|
firstChar = 0;
|
|
|
|
lastChar =255;
|
|
|
|
}
|
2015-01-23 16:58:16 -08:00
|
|
|
while (i<LTSIZE)
|
|
|
|
{
|
|
|
|
U32 weight = (U32)((double)(LTSIZE - i) * ld) + 1;
|
|
|
|
U32 end;
|
|
|
|
if (weight + i > LTSIZE) weight = LTSIZE-i;
|
|
|
|
end = i + weight;
|
|
|
|
while (i < end) lt[i++] = character;
|
|
|
|
character++;
|
|
|
|
if (character > lastChar) character = firstChar;
|
|
|
|
}
|
|
|
|
return lt;
|
|
|
|
}
|
|
|
|
|
2015-02-08 23:00:26 -08:00
|
|
|
static char RDG_genChar(U32* seed, const void* ltctx)
|
2015-01-23 16:58:16 -08:00
|
|
|
{
|
|
|
|
const BYTE* lt = ltctx;
|
2015-02-08 23:00:26 -08:00
|
|
|
U32 id = RDG_rand(seed) & LTMASK;
|
2015-01-23 16:58:16 -08:00
|
|
|
return lt[id];
|
|
|
|
}
|
|
|
|
|
2015-02-08 23:00:26 -08:00
|
|
|
#define RDG_RAND15BITS ((RDG_rand(seed) >> 3) & 32767)
|
|
|
|
#define RDG_RANDLENGTH ( ((RDG_rand(seed) >> 7) & 7) ? (RDG_rand(seed) & 15) : (RDG_rand(seed) & 511) + 15)
|
|
|
|
#define RDG_DICTSIZE (32 KB)
|
|
|
|
void RDG_generate(U64 size, U32 seedInit, double matchProba, double litProba)
|
2015-01-23 16:58:16 -08:00
|
|
|
{
|
2015-02-08 23:00:26 -08:00
|
|
|
BYTE fullbuff[RDG_DICTSIZE + 128 KB + 1];
|
|
|
|
BYTE* buff = fullbuff + RDG_DICTSIZE;
|
2015-01-23 16:58:16 -08:00
|
|
|
U64 total=0;
|
|
|
|
U32 P32 = (U32)(32768 * matchProba);
|
|
|
|
U32 pos=1;
|
|
|
|
U32 genBlockSize = 128 KB;
|
2015-02-08 23:00:26 -08:00
|
|
|
void* ldctx = RDG_createLiteralDistrib(litProba);
|
2015-01-24 04:31:55 -08:00
|
|
|
FILE* fout = stdout;
|
2015-02-08 23:00:26 -08:00
|
|
|
U32* seed = &seedInit;;
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2015-01-24 04:31:55 -08:00
|
|
|
/* init */
|
|
|
|
SET_BINARY_MODE(stdout);
|
2015-02-08 23:00:26 -08:00
|
|
|
fullbuff[0] = RDG_genChar(seed, ldctx);
|
2015-01-23 16:58:16 -08:00
|
|
|
while (pos<32 KB)
|
|
|
|
{
|
|
|
|
/* Select : Literal (char) or Match (within 32K) */
|
2015-02-08 23:00:26 -08:00
|
|
|
if (RDG_RAND15BITS < P32)
|
2015-01-23 16:58:16 -08:00
|
|
|
{
|
|
|
|
/* Copy (within 64K) */
|
|
|
|
U32 d;
|
|
|
|
int ref;
|
2015-02-08 23:00:26 -08:00
|
|
|
int length = RDG_RANDLENGTH + 4;
|
|
|
|
U32 offset = RDG_RAND15BITS + 1;
|
2015-01-23 16:58:16 -08:00
|
|
|
if (offset > pos) offset = pos;
|
|
|
|
ref = pos - offset;
|
|
|
|
d = pos + length;
|
|
|
|
while (pos < d) fullbuff[pos++] = fullbuff[ref++];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Literal (noise) */
|
2015-02-08 23:00:26 -08:00
|
|
|
U32 d = pos + RDG_RANDLENGTH;
|
|
|
|
while (pos < d) fullbuff[pos++] = RDG_genChar(seed, ldctx);
|
2015-01-23 16:58:16 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Generate compressible data */
|
|
|
|
pos = 0;
|
|
|
|
while (total < size)
|
|
|
|
{
|
|
|
|
if (size-total < 128 KB) genBlockSize = (U32)(size-total);
|
|
|
|
total += genBlockSize;
|
|
|
|
buff[genBlockSize] = 0;
|
|
|
|
pos = 0;
|
|
|
|
while (pos<genBlockSize)
|
|
|
|
{
|
|
|
|
/* Select : Literal (char) or Match (within 32K) */
|
2015-02-08 23:00:26 -08:00
|
|
|
if (RDG_RAND15BITS < P32)
|
2015-01-23 16:58:16 -08:00
|
|
|
{
|
|
|
|
/* Copy (within 64K) */
|
|
|
|
int ref;
|
|
|
|
U32 d;
|
2015-02-08 23:00:26 -08:00
|
|
|
int length = RDG_RANDLENGTH + 4;
|
|
|
|
U32 offset = RDG_RAND15BITS + 1;
|
2015-01-23 16:58:16 -08:00
|
|
|
if (pos + length > genBlockSize ) length = genBlockSize - pos;
|
|
|
|
ref = pos - offset;
|
|
|
|
d = pos + length;
|
|
|
|
while (pos < d) buff[pos++] = buff[ref++];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Literal (noise) */
|
|
|
|
U32 d;
|
2015-02-08 23:00:26 -08:00
|
|
|
int length = RDG_RANDLENGTH;
|
2015-01-23 16:58:16 -08:00
|
|
|
if (pos + length > genBlockSize) length = genBlockSize - pos;
|
|
|
|
d = pos + length;
|
2015-02-08 23:00:26 -08:00
|
|
|
while (pos < d) buff[pos++] = RDG_genChar(seed, ldctx);
|
2015-01-23 16:58:16 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-24 04:31:55 -08:00
|
|
|
/* output generated data */
|
|
|
|
fwrite(buff, 1, genBlockSize, fout);
|
2015-01-23 16:58:16 -08:00
|
|
|
/* Regenerate prefix */
|
|
|
|
memcpy(fullbuff, buff + 96 KB, 32 KB);
|
|
|
|
}
|
|
|
|
}
|