zstd/programs/datagen.c

201 lines
6.5 KiB
C
Raw Normal View History

2016-08-30 10:04:33 -07:00
/**
* Copyright (c) 2016-present, Yann Collet, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
2015-01-23 16:58:16 -08:00
2016-07-02 15:17:39 -07:00
/* *************************************
* Compiler Options
***************************************/
#if defined(_MSC_VER)
# define _CRT_SECURE_NO_WARNINGS /* removes Visual warning on strerror() */
# define _CRT_SECURE_NO_DEPRECATE /* removes VS2005 warning on strerror() */
#endif
2016-07-02 15:17:39 -07:00
2016-02-02 05:36:49 -08:00
/*-************************************
2016-07-13 08:38:39 -07:00
* Dependencies
2015-01-23 16:58:16 -08:00
**************************************/
#include <stdlib.h> /* malloc */
#include <stdio.h> /* FILE, fwrite, fprintf */
#include <string.h> /* memcpy */
2016-07-02 02:14:30 -07:00
#include <errno.h> /* errno */
#include "mem.h" /* U32 */
2015-01-23 16:58:16 -08:00
2016-02-02 05:36:49 -08:00
/*-************************************
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) {int unused = _setmode(_fileno(file), _O_BINARY); (void)unused; }
2015-01-24 04:31:55 -08:00
#else
# define SET_BINARY_MODE(file)
#endif
2016-02-02 05:36:49 -08:00
/*-************************************
2016-05-09 03:20:50 -07:00
* Macros
2015-01-23 16:58:16 -08:00
**************************************/
#define KB *(1 <<10)
2016-05-18 08:18:48 -07:00
#define MIN(a,b) ( (a) < (b) ? (a) : (b) )
#define RDG_DEBUG 0
#define TRACE(...) if (RDG_DEBUG) fprintf(stderr, __VA_ARGS__ )
2015-01-23 16:58:16 -08:00
2016-02-02 05:36:49 -08:00
/*-************************************
2016-05-18 08:18:48 -07:00
* Local constants
2015-07-04 17:23:52 -07:00
**************************************/
#define LTLOG 13
#define LTSIZE (1<<LTLOG)
#define LTMASK (LTSIZE-1)
2016-02-02 05:36:49 -08:00
/*-*******************************************************
2015-01-23 16:58:16 -08:00
* Local Functions
*********************************************************/
#define RDG_rotl32(x,r) ((x << r) | (x >> (32 - r)))
2016-05-18 08:18:48 -07:00
static U32 RDG_rand(U32* src)
2015-01-23 16:58:16 -08:00
{
2016-04-10 16:12:32 -07:00
static const U32 prime1 = 2654435761U;
static const U32 prime2 = 2246822519U;
2015-01-23 16:58:16 -08:00
U32 rand32 = *src;
2016-04-10 16:12:32 -07:00
rand32 *= prime1;
rand32 ^= prime2;
rand32 = RDG_rotl32(rand32, 13);
2015-01-23 16:58:16 -08:00
*src = rand32;
2016-05-18 08:18:48 -07:00
return rand32 >> 5;
2015-01-23 16:58:16 -08:00
}
2016-05-18 08:18:48 -07:00
static void RDG_fillLiteralDistrib(BYTE* ldt, double ld)
2015-01-23 16:58:16 -08:00
{
2016-05-18 08:18:48 -07:00
BYTE const firstChar = (ld<=0.0) ? 0 : '(';
BYTE const lastChar = (ld<=0.0) ? 255 : '}';
2016-05-09 03:20:50 -07:00
BYTE character = (ld<=0.0) ? 0 : '0';
2016-05-18 08:18:48 -07:00
U32 u;
if (ld<=0.0) ld = 0.0;
for (u=0; u<LTSIZE; ) {
U32 const weight = (U32)((double)(LTSIZE - u) * ld) + 1;
U32 const end = MIN ( u + weight , LTSIZE);
2016-07-13 08:38:39 -07:00
while (u < end) ldt[u++] = character;
2015-01-23 16:58:16 -08:00
character++;
if (character > lastChar) character = firstChar;
}
}
2015-07-04 17:23:52 -07:00
2016-05-18 08:18:48 -07:00
static BYTE RDG_genChar(U32* seed, const BYTE* ldt)
2015-01-23 16:58:16 -08:00
{
2016-04-10 16:12:32 -07:00
U32 const id = RDG_rand(seed) & LTMASK;
2016-07-02 02:14:30 -07:00
return ldt[id]; /* memory-sanitizer fails here, stating "uninitialized value" when table initialized with P==0.0. Checked : table is fully initialized */
2015-01-23 16:58:16 -08:00
}
2015-07-04 17:23:52 -07:00
static U32 RDG_rand15Bits (unsigned* seedPtr)
{
return RDG_rand(seedPtr) & 0x7FFF;
}
static U32 RDG_randLength(unsigned* seedPtr)
{
2016-07-02 02:14:30 -07:00
if (RDG_rand(seedPtr) & 7) return (RDG_rand(seedPtr) & 0xF); /* small length */
return (RDG_rand(seedPtr) & 0x1FF) + 0xF;
}
2016-05-18 08:18:48 -07:00
void RDG_genBlock(void* buffer, size_t buffSize, size_t prefixSize, double matchProba, const BYTE* ldt, unsigned* seedPtr)
2015-01-23 16:58:16 -08:00
{
BYTE* const buffPtr = (BYTE*)buffer;
U32 const matchProba32 = (U32)(32768 * matchProba);
2015-02-10 09:15:20 -08:00
size_t pos = prefixSize;
2015-11-20 03:00:25 -08:00
U32 prevOffset = 1;
2015-01-23 16:58:16 -08:00
2015-07-07 18:26:17 -07:00
/* special case : sparse content */
2016-02-02 05:36:49 -08:00
while (matchProba >= 1.0) {
size_t size0 = RDG_rand(seedPtr) & 3;
2015-07-04 17:23:52 -07:00
size0 = (size_t)1 << (16 + size0 * 2);
size0 += RDG_rand(seedPtr) & (size0-1); /* because size0 is power of 2*/
2016-02-02 05:36:49 -08:00
if (buffSize < pos + size0) {
memset(buffPtr+pos, 0, buffSize-pos);
return;
}
memset(buffPtr+pos, 0, size0);
pos += size0;
buffPtr[pos-1] = RDG_genChar(seedPtr, ldt);
continue;
}
2015-01-24 04:31:55 -08:00
/* init */
if (pos==0) buffPtr[0] = RDG_genChar(seedPtr, ldt), pos=1;
2015-02-10 09:15:20 -08:00
/* Generate compressible data */
2016-02-02 05:36:49 -08:00
while (pos < buffSize) {
2015-01-23 16:58:16 -08:00
/* Select : Literal (char) or Match (within 32K) */
if (RDG_rand15Bits(seedPtr) < matchProba32) {
2015-02-10 09:15:20 -08:00
/* Copy (within 32K) */
U32 const length = RDG_randLength(seedPtr) + 4;
2016-05-18 08:26:23 -07:00
U32 const d = (U32) MIN(pos + length , buffSize);
U32 const repeatOffset = (RDG_rand(seedPtr) & 15) == 2;
U32 const randOffset = RDG_rand15Bits(seedPtr) + 1;
2016-05-18 08:26:23 -07:00
U32 const offset = repeatOffset ? prevOffset : (U32) MIN(randOffset , pos);
2016-05-18 08:18:48 -07:00
size_t match = pos - offset;
2015-11-20 03:46:08 -08:00
while (pos < d) buffPtr[pos++] = buffPtr[match++]; /* correctly manages overlaps */
2016-05-18 08:18:48 -07:00
prevOffset = offset;
2016-02-02 05:36:49 -08:00
} else {
2015-01-23 16:58:16 -08:00
/* Literal (noise) */
U32 const length = RDG_randLength(seedPtr);
2016-05-18 08:26:23 -07:00
U32 const d = (U32) MIN(pos + length, buffSize);
while (pos < d) buffPtr[pos++] = RDG_genChar(seedPtr, ldt);
2016-02-02 05:36:49 -08:00
} }
2015-02-10 09:15:20 -08:00
}
void RDG_genBuffer(void* buffer, size_t size, double matchProba, double litProba, unsigned seed)
{
2016-05-18 08:18:48 -07:00
BYTE ldt[LTSIZE];
2016-07-13 08:38:39 -07:00
memset(ldt, '0', sizeof(ldt)); /* yes, character '0', this is intentional */
2016-05-18 08:18:48 -07:00
if (litProba<=0.0) litProba = matchProba / 4.5;
RDG_fillLiteralDistrib(ldt, litProba);
RDG_genBlock(buffer, size, 0, matchProba, ldt, &seed);
2015-02-10 09:15:20 -08:00
}
void RDG_genStdout(unsigned long long size, double matchProba, double litProba, unsigned seed)
2015-02-10 09:15:20 -08:00
{
2016-05-18 08:18:48 -07:00
size_t const stdBlockSize = 128 KB;
size_t const stdDictSize = 32 KB;
BYTE* const buff = (BYTE*)malloc(stdDictSize + stdBlockSize);
2015-02-10 09:15:20 -08:00
U64 total = 0;
2016-07-02 02:14:30 -07:00
BYTE ldt[LTSIZE]; /* literals distribution table */
2015-02-10 09:15:20 -08:00
/* init */
2016-07-02 02:14:30 -07:00
if (buff==NULL) { fprintf(stderr, "datagen: error: %s \n", strerror(errno)); exit(1); }
2016-04-10 16:20:14 -07:00
if (litProba<=0.0) litProba = matchProba / 4.5;
2016-07-13 08:38:39 -07:00
memset(ldt, '0', sizeof(ldt)); /* yes, character '0', this is intentional */
2016-04-10 16:20:14 -07:00
RDG_fillLiteralDistrib(ldt, litProba);
2015-02-10 09:15:20 -08:00
SET_BINARY_MODE(stdout);
2015-07-07 18:26:17 -07:00
/* Generate initial dict */
2016-05-18 08:18:48 -07:00
RDG_genBlock(buff, stdDictSize, 0, matchProba, ldt, &seed);
2015-01-23 16:58:16 -08:00
/* Generate compressible data */
2016-02-02 05:36:49 -08:00
while (total < size) {
2016-05-18 08:18:48 -07:00
size_t const genBlockSize = (size_t) (MIN (stdBlockSize, size-total));
RDG_genBlock(buff, stdDictSize+stdBlockSize, stdDictSize, matchProba, ldt, &seed);
2015-01-23 16:58:16 -08:00
total += genBlockSize;
2016-04-10 16:12:32 -07:00
{ size_t const unused = fwrite(buff, 1, genBlockSize, stdout); (void)unused; }
2015-02-10 09:15:20 -08:00
/* update dict */
2016-05-18 08:18:48 -07:00
memcpy(buff, buff + stdBlockSize, stdDictSize);
2015-01-23 16:58:16 -08:00
}
2015-07-07 18:26:17 -07:00
2016-02-02 05:36:49 -08:00
/* cleanup */
2015-07-07 18:26:17 -07:00
free(buff);
2015-01-23 16:58:16 -08:00
}