blob: 66f7d15264da2b4873eb40a4ed3a3c06bf853898 [file] [log] [blame]
Yann Collet32fb4072017-08-18 16:52:05 -07001/*
Yann Collet4ded9e52016-08-30 10:04:33 -07002 * Copyright (c) 2016-present, Yann Collet, Facebook, Inc.
3 * All rights reserved.
4 *
Yann Collet32fb4072017-08-18 16:52:05 -07005 * This source code is licensed under both the BSD-style license (found in the
6 * LICENSE file in the root directory of this source tree) and the GPLv2 (found
7 * in the COPYING file in the root directory of this source tree).
Yann Collet3128e032017-09-08 00:09:23 -07008 * You may select, at your option, one of the above-listed licenses.
Yann Collet4ded9e52016-08-30 10:04:33 -07009 */
Yann Collet71eafdd2016-02-12 02:31:57 +010010
Yann Collet71eafdd2016-02-12 02:31:57 +010011
Yann Collet71eafdd2016-02-12 02:31:57 +010012
Przemyslaw Skibinski2f6ccee2016-12-21 13:23:34 +010013/* **************************************
14* Compiler Warnings
15****************************************/
16#ifdef _MSC_VER
Yann Collet77c137b2017-09-14 15:12:57 -070017# pragma warning(disable : 4127) /* disable: C4127: conditional expression is constant */
Przemyslaw Skibinski2f6ccee2016-12-21 13:23:34 +010018#endif
19
20
Yann Collet71eafdd2016-02-12 02:31:57 +010021/*-*************************************
22* Includes
23***************************************/
Przemyslaw Skibinski7a8a03c2016-12-21 15:08:44 +010024#include "platform.h" /* Large Files support */
Przemyslaw Skibinski2f6ccee2016-12-21 13:23:34 +010025#include "util.h" /* UTIL_getFileSize, UTIL_getTotalFileSize */
Yann Collet71eafdd2016-02-12 02:31:57 +010026#include <stdlib.h> /* malloc, free */
27#include <string.h> /* memset */
28#include <stdio.h> /* fprintf, fopen, ftello64 */
inikep37337972016-05-10 14:22:55 +020029#include <time.h> /* clock_t, clock, CLOCKS_PER_SEC */
Yann Colleta3d03a32016-07-06 16:27:17 +020030#include <errno.h> /* errno */
Yann Collet71eafdd2016-02-12 02:31:57 +010031
Przemyslaw Skibinski2f6ccee2016-12-21 13:23:34 +010032#include "mem.h" /* read */
Yann Collet71eafdd2016-02-12 02:31:57 +010033#include "error_private.h"
inikep23a08892016-04-22 12:43:18 +020034#include "dibio.h"
Yann Collet71eafdd2016-02-12 02:31:57 +010035
36
37/*-*************************************
38* Constants
39***************************************/
40#define KB *(1 <<10)
41#define MB *(1 <<20)
42#define GB *(1U<<30)
43
Yann Collet1496c3d2016-12-18 11:58:23 +010044#define SAMPLESIZE_MAX (128 KB)
45#define MEMMULT 11 /* rough estimation : memory cost to analyze 1 byte of sample */
Nick Terrelldf8415c2016-12-31 21:08:24 -080046#define COVER_MEMMULT 9 /* rough estimation : memory cost to analyze 1 byte of sample */
Yann Collet77c137b2017-09-14 15:12:57 -070047static const size_t g_maxMemory = (sizeof(size_t) == 4) ? (2 GB - 64 MB) : ((size_t)(512 MB) << sizeof(size_t));
Yann Collet71eafdd2016-02-12 02:31:57 +010048
49#define NOISELENGTH 32
Yann Collet71eafdd2016-02-12 02:31:57 +010050
51
52/*-*************************************
53* Console display
54***************************************/
55#define DISPLAY(...) fprintf(stderr, __VA_ARGS__)
Yann Collet086b9592017-09-14 16:45:10 -070056#define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); }
Yann Collet71eafdd2016-02-12 02:31:57 +010057
Yann Collet086b9592017-09-14 16:45:10 -070058#define DISPLAYUPDATE(l, ...) if (displayLevel>=l) { \
59 if ((DIB_clockSpan(g_time) > refreshRate) || (displayLevel>=4)) \
Yann Colletf6ca09b2016-05-09 04:44:45 +020060 { g_time = clock(); DISPLAY(__VA_ARGS__); \
Yann Collet086b9592017-09-14 16:45:10 -070061 if (displayLevel>=4) fflush(stderr); } }
Yann Colletbcb5f772016-07-06 15:41:03 +020062static const clock_t refreshRate = CLOCKS_PER_SEC * 2 / 10;
Yann Colletf6ca09b2016-05-09 04:44:45 +020063static clock_t g_time = 0;
64
Yann Colletbcb5f772016-07-06 15:41:03 +020065static clock_t DIB_clockSpan(clock_t nPrevious) { return clock() - nPrevious; }
Yann Colletf6ca09b2016-05-09 04:44:45 +020066
Yann Collet71eafdd2016-02-12 02:31:57 +010067
68/*-*************************************
69* Exceptions
70***************************************/
71#ifndef DEBUG
72# define DEBUG 0
73#endif
74#define DEBUGOUTPUT(...) if (DEBUG) DISPLAY(__VA_ARGS__);
75#define EXM_THROW(error, ...) \
76{ \
77 DEBUGOUTPUT("Error defined at %s, line %i : \n", __FILE__, __LINE__); \
Yann Collet086b9592017-09-14 16:45:10 -070078 DISPLAY("Error %i : ", error); \
79 DISPLAY(__VA_ARGS__); \
80 DISPLAY("\n"); \
Yann Collet71eafdd2016-02-12 02:31:57 +010081 exit(error); \
82}
83
84
85/* ********************************************************
86* Helper functions
87**********************************************************/
88unsigned DiB_isError(size_t errorCode) { return ERR_isError(errorCode); }
89
90const char* DiB_getErrorName(size_t errorCode) { return ERR_getErrorName(errorCode); }
91
Sean Purcell42bac7f2017-04-13 15:35:05 -070092#undef MIN
93#define MIN(a,b) ((a) < (b) ? (a) : (b))
Yann Colletbcb5f772016-07-06 15:41:03 +020094
Yann Collet71eafdd2016-02-12 02:31:57 +010095
96/* ********************************************************
97* File related operations
98**********************************************************/
Yann Collet290aaa72016-05-30 21:18:52 +020099/** DiB_loadFiles() :
Yann Colletc68d17f2017-09-15 15:31:31 -0700100 * load samples from files listed in fileNamesTable into buffer.
101 * works even if buffer is too small to load all samples.
102 * Also provides the size of each sample into sampleSizes table
103 * which must be sized correctly, using DiB_fileStats().
104 * @return : nb of samples effectively loaded into `buffer`
105 * *bufferSizePtr is modified, it provides the amount data loaded within buffer.
106 * sampleSizes is filled with the size of each sample.
107 */
Yann Colletbcb5f772016-07-06 15:41:03 +0200108static unsigned DiB_loadFiles(void* buffer, size_t* bufferSizePtr,
Yann Colletc68d17f2017-09-15 15:31:31 -0700109 size_t* sampleSizes, unsigned sstSize,
Yann Collet086b9592017-09-14 16:45:10 -0700110 const char** fileNamesTable, unsigned nbFiles, size_t targetChunkSize,
111 unsigned displayLevel)
Yann Collet71eafdd2016-02-12 02:31:57 +0100112{
Yann Collet290aaa72016-05-30 21:18:52 +0200113 char* const buff = (char*)buffer;
Yann Collet71eafdd2016-02-12 02:31:57 +0100114 size_t pos = 0;
Yann Collet086b9592017-09-14 16:45:10 -0700115 unsigned nbLoadedChunks = 0, fileIndex;
Yann Collet71eafdd2016-02-12 02:31:57 +0100116
Yann Collet086b9592017-09-14 16:45:10 -0700117 for (fileIndex=0; fileIndex<nbFiles; fileIndex++) {
118 const char* const fileName = fileNamesTable[fileIndex];
Yann Colletbcb5f772016-07-06 15:41:03 +0200119 unsigned long long const fs64 = UTIL_getFileSize(fileName);
Yann Collet086b9592017-09-14 16:45:10 -0700120 unsigned long long remainingToLoad = fs64;
121 U32 const nbChunks = targetChunkSize ? (U32)((fs64 + (targetChunkSize-1)) / targetChunkSize) : 1;
122 U64 const chunkSize = targetChunkSize ? MIN(targetChunkSize, fs64) : fs64;
Yann Collet25a60482017-09-15 11:55:13 -0700123 size_t const maxChunkSize = (size_t)MIN(chunkSize, SAMPLESIZE_MAX);
Yann Collet086b9592017-09-14 16:45:10 -0700124 U32 cnb;
125 FILE* const f = fopen(fileName, "rb");
126 if (f==NULL) EXM_THROW(10, "zstd: dictBuilder: %s %s ", fileName, strerror(errno));
127 DISPLAYUPDATE(2, "Loading %s... \r", fileName);
128 for (cnb=0; cnb<nbChunks; cnb++) {
Yann Collet25a60482017-09-15 11:55:13 -0700129 size_t const toLoad = (size_t)MIN(maxChunkSize, remainingToLoad);
Yann Collet086b9592017-09-14 16:45:10 -0700130 if (toLoad > *bufferSizePtr-pos) break;
131 { size_t const readSize = fread(buff+pos, 1, toLoad, f);
132 if (readSize != toLoad) EXM_THROW(11, "Pb reading %s", fileName);
133 pos += readSize;
Yann Colletc68d17f2017-09-15 15:31:31 -0700134 sampleSizes[nbLoadedChunks++] = toLoad;
Yann Collet086b9592017-09-14 16:45:10 -0700135 remainingToLoad -= targetChunkSize;
Yann Colletc68d17f2017-09-15 15:31:31 -0700136 if (nbLoadedChunks == sstSize) { /* no more space left in sampleSizes table */
137 fileIndex = nbFiles; /* stop there */
138 break;
139 }
Yann Collet086b9592017-09-14 16:45:10 -0700140 if (toLoad < targetChunkSize) {
Yann Colleta9694232017-09-15 10:16:26 -0700141 fseek(f, (long)(targetChunkSize - toLoad), SEEK_CUR);
Yann Collet086b9592017-09-14 16:45:10 -0700142 } } }
143 fclose(f);
144 }
Nick Terrelldf8415c2016-12-31 21:08:24 -0800145 DISPLAYLEVEL(2, "\r%79s\r", "");
Yann Colletbcb5f772016-07-06 15:41:03 +0200146 *bufferSizePtr = pos;
Yann Collet086b9592017-09-14 16:45:10 -0700147 DISPLAYLEVEL(4, "loaded : %u KB \n", (U32)(pos >> 10))
148 return nbLoadedChunks;
Yann Collet71eafdd2016-02-12 02:31:57 +0100149}
150
Nick Terrelldf8415c2016-12-31 21:08:24 -0800151#define DiB_rotl32(x,r) ((x << r) | (x >> (32 - r)))
152static U32 DiB_rand(U32* src)
153{
154 static const U32 prime1 = 2654435761U;
155 static const U32 prime2 = 2246822519U;
156 U32 rand32 = *src;
157 rand32 *= prime1;
158 rand32 ^= prime2;
159 rand32 = DiB_rotl32(rand32, 13);
160 *src = rand32;
161 return rand32 >> 5;
162}
163
Yann Collet77c137b2017-09-14 15:12:57 -0700164/* DiB_shuffle() :
165 * shuffle a table of file names in a semi-random way
166 * It improves dictionary quality by reducing "locality" impact, so if sample set is very large,
167 * it will load random elements from it, instead of just the first ones. */
Nick Terrelldf8415c2016-12-31 21:08:24 -0800168static void DiB_shuffle(const char** fileNamesTable, unsigned nbFiles) {
Yann Collet77c137b2017-09-14 15:12:57 -0700169 U32 seed = 0xFD2FB528;
170 unsigned i;
171 for (i = nbFiles - 1; i > 0; --i) {
172 unsigned const j = DiB_rand(&seed) % (i + 1);
173 const char* const tmp = fileNamesTable[j];
174 fileNamesTable[j] = fileNamesTable[i];
175 fileNamesTable[i] = tmp;
176 }
Nick Terrelldf8415c2016-12-31 21:08:24 -0800177}
178
Yann Collet71eafdd2016-02-12 02:31:57 +0100179
180/*-********************************************************
181* Dictionary training functions
182**********************************************************/
183static size_t DiB_findMaxMem(unsigned long long requiredMem)
184{
Yann Collet290aaa72016-05-30 21:18:52 +0200185 size_t const step = 8 MB;
Yann Collet71eafdd2016-02-12 02:31:57 +0100186 void* testmem = NULL;
187
188 requiredMem = (((requiredMem >> 23) + 1) << 23);
Yann Colletbcb5f772016-07-06 15:41:03 +0200189 requiredMem += step;
Yann Collet77c137b2017-09-14 15:12:57 -0700190 if (requiredMem > g_maxMemory) requiredMem = g_maxMemory;
Yann Collet71eafdd2016-02-12 02:31:57 +0100191
192 while (!testmem) {
Yann Collet71eafdd2016-02-12 02:31:57 +0100193 testmem = malloc((size_t)requiredMem);
Yann Colletbcb5f772016-07-06 15:41:03 +0200194 requiredMem -= step;
Yann Collet71eafdd2016-02-12 02:31:57 +0100195 }
196
197 free(testmem);
Yann Colletbcb5f772016-07-06 15:41:03 +0200198 return (size_t)requiredMem;
Yann Collet71eafdd2016-02-12 02:31:57 +0100199}
200
201
202static void DiB_fillNoise(void* buffer, size_t length)
203{
Yann Colletbcb5f772016-07-06 15:41:03 +0200204 unsigned const prime1 = 2654435761U;
205 unsigned const prime2 = 2246822519U;
206 unsigned acc = prime1;
Yann Collet71eafdd2016-02-12 02:31:57 +0100207 size_t p=0;;
208
209 for (p=0; p<length; p++) {
Yann Colletbcb5f772016-07-06 15:41:03 +0200210 acc *= prime2;
Yann Collet71eafdd2016-02-12 02:31:57 +0100211 ((unsigned char*)buffer)[p] = (unsigned char)(acc >> 21);
212 }
213}
214
215
216static void DiB_saveDict(const char* dictFileName,
217 const void* buff, size_t buffSize)
218{
Yann Collet290aaa72016-05-30 21:18:52 +0200219 FILE* const f = fopen(dictFileName, "wb");
Yann Collet71eafdd2016-02-12 02:31:57 +0100220 if (f==NULL) EXM_THROW(3, "cannot open %s ", dictFileName);
221
Yann Colletf6ca09b2016-05-09 04:44:45 +0200222 { size_t const n = fwrite(buff, 1, buffSize, f);
223 if (n!=buffSize) EXM_THROW(4, "%s : write error", dictFileName) }
Yann Collet71eafdd2016-02-12 02:31:57 +0100224
Yann Colletf6ca09b2016-05-09 04:44:45 +0200225 { size_t const n = (size_t)fclose(f);
226 if (n!=0) EXM_THROW(5, "%s : flush error", dictFileName) }
Yann Collet71eafdd2016-02-12 02:31:57 +0100227}
228
229
Yann Collet086b9592017-09-14 16:45:10 -0700230typedef struct {
231 U64 totalSizeToLoad;
232 unsigned oneSampleTooLarge;
Yann Colletc68d17f2017-09-15 15:31:31 -0700233 unsigned nbSamples;
Yann Collet086b9592017-09-14 16:45:10 -0700234} fileStats;
235
Yann Colletc68d17f2017-09-15 15:31:31 -0700236/*! DiB_fileStats() :
237 * Given a list of files, and a chunkSize (0 == no chunk, whole files)
238 * provides the amount of data to be loaded and the resulting nb of samples.
239 * This is useful primarily for allocation purpose => sample buffer, and sample sizes table.
240 */
Yann Collet086b9592017-09-14 16:45:10 -0700241static fileStats DiB_fileStats(const char** fileNamesTable, unsigned nbFiles, size_t chunkSize, unsigned displayLevel)
Yann Collet1496c3d2016-12-18 11:58:23 +0100242{
Yann Collet086b9592017-09-14 16:45:10 -0700243 fileStats fs;
Yann Collet1496c3d2016-12-18 11:58:23 +0100244 unsigned n;
Yann Collet086b9592017-09-14 16:45:10 -0700245 memset(&fs, 0, sizeof(fs));
Yann Collet1496c3d2016-12-18 11:58:23 +0100246 for (n=0; n<nbFiles; n++) {
247 U64 const fileSize = UTIL_getFileSize(fileNamesTable[n]);
Yann Colletc68d17f2017-09-15 15:31:31 -0700248 U32 const nbSamples = (U32)(chunkSize ? (fileSize + (chunkSize-1)) / chunkSize : 1);
Yann Collet086b9592017-09-14 16:45:10 -0700249 U64 const chunkToLoad = chunkSize ? MIN(chunkSize, fileSize) : fileSize;
Yann Collet25a60482017-09-15 11:55:13 -0700250 size_t const cappedChunkSize = (size_t)MIN(chunkToLoad, SAMPLESIZE_MAX);
Yann Colletc68d17f2017-09-15 15:31:31 -0700251 fs.totalSizeToLoad += cappedChunkSize * nbSamples;
Yann Collet086b9592017-09-14 16:45:10 -0700252 fs.oneSampleTooLarge |= (chunkSize > 2*SAMPLESIZE_MAX);
Yann Colletc68d17f2017-09-15 15:31:31 -0700253 fs.nbSamples += nbSamples;
Yann Collet1496c3d2016-12-18 11:58:23 +0100254 }
Yann Collet086b9592017-09-14 16:45:10 -0700255 DISPLAYLEVEL(4, "Preparing to load : %u KB \n", (U32)(fs.totalSizeToLoad >> 10));
256 return fs;
Yann Collet1496c3d2016-12-18 11:58:23 +0100257}
258
259
Nick Terrell5b7fd7c2017-06-26 21:07:14 -0700260/*! ZDICT_trainFromBuffer_unsafe_legacy() :
Yann Collet6f3acba2016-02-12 20:19:48 +0100261 Strictly Internal use only !!
Nick Terrell5b7fd7c2017-06-26 21:07:14 -0700262 Same as ZDICT_trainFromBuffer_legacy(), but does not control `samplesBuffer`.
Yann Collet6f3acba2016-02-12 20:19:48 +0100263 `samplesBuffer` must be followed by noisy guard band to avoid out-of-buffer reads.
264 @return : size of dictionary stored into `dictBuffer` (<= `dictBufferCapacity`)
265 or an error code.
266*/
Nick Terrell5b7fd7c2017-06-26 21:07:14 -0700267size_t ZDICT_trainFromBuffer_unsafe_legacy(void* dictBuffer, size_t dictBufferCapacity,
268 const void* samplesBuffer, const size_t* samplesSizes, unsigned nbSamples,
269 ZDICT_legacy_params_t parameters);
Yann Collet6f3acba2016-02-12 20:19:48 +0100270
271
Yann Collet71eafdd2016-02-12 02:31:57 +0100272int DiB_trainFromFiles(const char* dictFileName, unsigned maxDictSize,
Yann Collet086b9592017-09-14 16:45:10 -0700273 const char** fileNamesTable, unsigned nbFiles, size_t chunkSize,
Nick Terrell5b7fd7c2017-06-26 21:07:14 -0700274 ZDICT_legacy_params_t *params, ZDICT_cover_params_t *coverParams,
Nick Terrelldf8415c2016-12-31 21:08:24 -0800275 int optimizeCover)
Yann Collet71eafdd2016-02-12 02:31:57 +0100276{
Yann Colletc68d17f2017-09-15 15:31:31 -0700277 unsigned const displayLevel = params ? params->zParams.notificationLevel :
278 coverParams ? coverParams->zParams.notificationLevel :
279 0; /* should never happen */
Yann Collet290aaa72016-05-30 21:18:52 +0200280 void* const dictBuffer = malloc(maxDictSize);
Yann Collet086b9592017-09-14 16:45:10 -0700281 fileStats const fs = DiB_fileStats(fileNamesTable, nbFiles, chunkSize, displayLevel);
Yann Colletc68d17f2017-09-15 15:31:31 -0700282 size_t* const sampleSizes = (size_t*)malloc(fs.nbSamples * sizeof(size_t));
Nick Terrellc220d4c2017-01-09 16:49:04 -0800283 size_t const memMult = params ? MEMMULT : COVER_MEMMULT;
Yann Collet086b9592017-09-14 16:45:10 -0700284 size_t const maxMem = DiB_findMaxMem(fs.totalSizeToLoad * memMult) / memMult;
285 size_t loadedSize = (size_t) MIN ((unsigned long long)maxMem, fs.totalSizeToLoad);
286 void* const srcBuffer = malloc(loadedSize+NOISELENGTH);
Yann Collet71eafdd2016-02-12 02:31:57 +0100287 int result = 0;
288
Yann Collet290aaa72016-05-30 21:18:52 +0200289 /* Checks */
Yann Colletc68d17f2017-09-15 15:31:31 -0700290 if ((!sampleSizes) || (!srcBuffer) || (!dictBuffer))
Yann Collet77c137b2017-09-14 15:12:57 -0700291 EXM_THROW(12, "not enough memory for DiB_trainFiles"); /* should not happen */
Yann Collet086b9592017-09-14 16:45:10 -0700292 if (fs.oneSampleTooLarge) {
293 DISPLAYLEVEL(2, "! Warning : some sample(s) are very large \n");
294 DISPLAYLEVEL(2, "! Note that dictionary is only useful for small samples. \n");
295 DISPLAYLEVEL(2, "! As a consequence, only the first %u bytes of each sample are loaded \n", SAMPLESIZE_MAX);
Yann Collet1496c3d2016-12-18 11:58:23 +0100296 }
Yann Colletc68d17f2017-09-15 15:31:31 -0700297 if (fs.nbSamples < 5) {
Yann Collet49d105c2016-08-18 15:02:11 +0200298 DISPLAYLEVEL(2, "! Warning : nb of samples too low for proper processing ! \n");
299 DISPLAYLEVEL(2, "! Please provide _one file per sample_. \n");
Yann Collet086b9592017-09-14 16:45:10 -0700300 EXM_THROW(14, "nb of samples too low"); /* we now clearly forbid this case */
301 }
302 if (fs.totalSizeToLoad < (unsigned long long)(8 * maxDictSize)) {
303 DISPLAYLEVEL(2, "! Warning : data size of samples too small for target dictionary size \n");
304 DISPLAYLEVEL(2, "! Samples should be about 100x larger than target dictionary size \n");
Yann Colletdd25a272016-07-27 12:35:29 +0200305 }
Yann Collet290aaa72016-05-30 21:18:52 +0200306
Yann Collet71eafdd2016-02-12 02:31:57 +0100307 /* init */
Yann Collet086b9592017-09-14 16:45:10 -0700308 if (loadedSize < fs.totalSizeToLoad)
309 DISPLAYLEVEL(1, "Not enough memory; training on %u MB only...\n", (unsigned)(loadedSize >> 20));
Yann Collet71eafdd2016-02-12 02:31:57 +0100310
Yann Collet71eafdd2016-02-12 02:31:57 +0100311 /* Load input buffer */
Nick Terrelldf8415c2016-12-31 21:08:24 -0800312 DISPLAYLEVEL(3, "Shuffling input files\n");
313 DiB_shuffle(fileNamesTable, nbFiles);
Yann Colletc68d17f2017-09-15 15:31:31 -0700314 nbFiles = DiB_loadFiles(srcBuffer, &loadedSize, sampleSizes, fs.nbSamples, fileNamesTable, nbFiles, chunkSize, displayLevel);
Yann Collet71eafdd2016-02-12 02:31:57 +0100315
Yann Collet77c137b2017-09-14 15:12:57 -0700316 { size_t dictSize;
Nick Terrelldf8415c2016-12-31 21:08:24 -0800317 if (params) {
Yann Collet086b9592017-09-14 16:45:10 -0700318 DiB_fillNoise((char*)srcBuffer + loadedSize, NOISELENGTH); /* guard band, for end of buffer condition */
Nick Terrell5b7fd7c2017-06-26 21:07:14 -0700319 dictSize = ZDICT_trainFromBuffer_unsafe_legacy(dictBuffer, maxDictSize,
Yann Colletc68d17f2017-09-15 15:31:31 -0700320 srcBuffer, sampleSizes, fs.nbSamples,
Nick Terrell5b7fd7c2017-06-26 21:07:14 -0700321 *params);
Nick Terrelldf8415c2016-12-31 21:08:24 -0800322 } else if (optimizeCover) {
Nick Terrell5b7fd7c2017-06-26 21:07:14 -0700323 dictSize = ZDICT_optimizeTrainFromBuffer_cover(dictBuffer, maxDictSize,
Yann Colletc68d17f2017-09-15 15:31:31 -0700324 srcBuffer, sampleSizes, fs.nbSamples,
Nick Terrell5b7fd7c2017-06-26 21:07:14 -0700325 coverParams);
Nick Terrelldf8415c2016-12-31 21:08:24 -0800326 if (!ZDICT_isError(dictSize)) {
Nick Terrell5b7fd7c2017-06-26 21:07:14 -0700327 DISPLAYLEVEL(2, "k=%u\nd=%u\nsteps=%u\n", coverParams->k, coverParams->d, coverParams->steps);
Nick Terrelldf8415c2016-12-31 21:08:24 -0800328 }
329 } else {
Yann Collet77c137b2017-09-14 15:12:57 -0700330 dictSize = ZDICT_trainFromBuffer_cover(dictBuffer, maxDictSize, srcBuffer,
Yann Colletc68d17f2017-09-15 15:31:31 -0700331 sampleSizes, fs.nbSamples, *coverParams);
Nick Terrelldf8415c2016-12-31 21:08:24 -0800332 }
Yann Collet290aaa72016-05-30 21:18:52 +0200333 if (ZDICT_isError(dictSize)) {
334 DISPLAYLEVEL(1, "dictionary training failed : %s \n", ZDICT_getErrorName(dictSize)); /* should not happen */
335 result = 1;
336 goto _cleanup;
337 }
338 /* save dict */
339 DISPLAYLEVEL(2, "Save dictionary of size %u into file %s \n", (U32)dictSize, dictFileName);
340 DiB_saveDict(dictFileName, dictBuffer, dictSize);
Yann Collet71eafdd2016-02-12 02:31:57 +0100341 }
342
Yann Collet71eafdd2016-02-12 02:31:57 +0100343 /* clean up */
344_cleanup:
345 free(srcBuffer);
Yann Colletc68d17f2017-09-15 15:31:31 -0700346 free(sampleSizes);
Yann Collet71eafdd2016-02-12 02:31:57 +0100347 free(dictBuffer);
Yann Collet71eafdd2016-02-12 02:31:57 +0100348 return result;
349}