]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - programs/dibio.c
Import Zstandard 1.2.0
[FreeBSD/FreeBSD.git] / programs / dibio.c
1 /**
2  * Copyright (c) 2016-present, Yann Collet, Facebook, Inc.
3  * All rights reserved.
4  *
5  * This source code is licensed under the BSD-style license found in the
6  * LICENSE file in the root directory of this source tree. An additional grant
7  * of patent rights can be found in the PATENTS file in the same directory.
8  */
9
10
11
12 /* **************************************
13 *  Compiler Warnings
14 ****************************************/
15 #ifdef _MSC_VER
16 #  pragma warning(disable : 4127)                /* disable: C4127: conditional expression is constant */
17 #endif
18
19
20 /*-*************************************
21 *  Includes
22 ***************************************/
23 #include "platform.h"       /* Large Files support */
24 #include "util.h"           /* UTIL_getFileSize, UTIL_getTotalFileSize */
25 #include <stdlib.h>         /* malloc, free */
26 #include <string.h>         /* memset */
27 #include <stdio.h>          /* fprintf, fopen, ftello64 */
28 #include <time.h>           /* clock_t, clock, CLOCKS_PER_SEC */
29 #include <errno.h>          /* errno */
30
31 #include "mem.h"            /* read */
32 #include "error_private.h"
33 #include "dibio.h"
34
35
36 /*-*************************************
37 *  Constants
38 ***************************************/
39 #define KB *(1 <<10)
40 #define MB *(1 <<20)
41 #define GB *(1U<<30)
42
43 #define SAMPLESIZE_MAX (128 KB)
44 #define MEMMULT 11    /* rough estimation : memory cost to analyze 1 byte of sample */
45 #define COVER_MEMMULT 9    /* rough estimation : memory cost to analyze 1 byte of sample */
46 static const size_t maxMemory = (sizeof(size_t) == 4) ? (2 GB - 64 MB) : ((size_t)(512 MB) << sizeof(size_t));
47
48 #define NOISELENGTH 32
49
50
51 /*-*************************************
52 *  Console display
53 ***************************************/
54 #define DISPLAY(...)         fprintf(stderr, __VA_ARGS__)
55 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); }
56 static int g_displayLevel = 0;   /* 0 : no display;   1: errors;   2: default;  4: full information */
57
58 #define DISPLAYUPDATE(l, ...) if (g_displayLevel>=l) { \
59             if ((DIB_clockSpan(g_time) > refreshRate) || (g_displayLevel>=4)) \
60             { g_time = clock(); DISPLAY(__VA_ARGS__); \
61             if (g_displayLevel>=4) fflush(stderr); } }
62 static const clock_t refreshRate = CLOCKS_PER_SEC * 2 / 10;
63 static clock_t g_time = 0;
64
65 static clock_t DIB_clockSpan(clock_t nPrevious) { return clock() - nPrevious; }
66
67
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__); \
78     DISPLAYLEVEL(1, "Error %i : ", error);                                \
79     DISPLAYLEVEL(1, __VA_ARGS__);                                         \
80     DISPLAYLEVEL(1, "\n");                                                \
81     exit(error);                                                          \
82 }
83
84
85 /* ********************************************************
86 *  Helper functions
87 **********************************************************/
88 unsigned DiB_isError(size_t errorCode) { return ERR_isError(errorCode); }
89
90 const char* DiB_getErrorName(size_t errorCode) { return ERR_getErrorName(errorCode); }
91
92 #undef MIN
93 #define MIN(a,b)    ((a) < (b) ? (a) : (b))
94
95
96 /* ********************************************************
97 *  File related operations
98 **********************************************************/
99 /** DiB_loadFiles() :
100 *   @return : nb of files effectively loaded into `buffer` */
101 static unsigned DiB_loadFiles(void* buffer, size_t* bufferSizePtr,
102                               size_t* fileSizes,
103                               const char** fileNamesTable, unsigned nbFiles)
104 {
105     char* const buff = (char*)buffer;
106     size_t pos = 0;
107     unsigned n;
108
109     for (n=0; n<nbFiles; n++) {
110         const char* const fileName = fileNamesTable[n];
111         unsigned long long const fs64 = UTIL_getFileSize(fileName);
112         size_t const fileSize = (size_t) MIN(fs64, SAMPLESIZE_MAX);
113         if (fileSize > *bufferSizePtr-pos) break;
114         {   FILE* const f = fopen(fileName, "rb");
115             if (f==NULL) EXM_THROW(10, "zstd: dictBuilder: %s %s ", fileName, strerror(errno));
116             DISPLAYUPDATE(2, "Loading %s...       \r", fileName);
117             { size_t const readSize = fread(buff+pos, 1, fileSize, f);
118               if (readSize != fileSize) EXM_THROW(11, "Pb reading %s", fileName);
119               pos += readSize; }
120             fileSizes[n] = fileSize;
121             fclose(f);
122     }   }
123     DISPLAYLEVEL(2, "\r%79s\r", "");
124     *bufferSizePtr = pos;
125     return n;
126 }
127
128 #define DiB_rotl32(x,r) ((x << r) | (x >> (32 - r)))
129 static U32 DiB_rand(U32* src)
130 {
131     static const U32 prime1 = 2654435761U;
132     static const U32 prime2 = 2246822519U;
133     U32 rand32 = *src;
134     rand32 *= prime1;
135     rand32 ^= prime2;
136     rand32  = DiB_rotl32(rand32, 13);
137     *src = rand32;
138     return rand32 >> 5;
139 }
140
141 static void DiB_shuffle(const char** fileNamesTable, unsigned nbFiles) {
142   /* Initialize the pseudorandom number generator */
143   U32 seed = 0xFD2FB528;
144   unsigned i;
145   for (i = nbFiles - 1; i > 0; --i) {
146     unsigned const j = DiB_rand(&seed) % (i + 1);
147     const char* tmp = fileNamesTable[j];
148     fileNamesTable[j] = fileNamesTable[i];
149     fileNamesTable[i] = tmp;
150   }
151 }
152
153
154 /*-********************************************************
155 *  Dictionary training functions
156 **********************************************************/
157 static size_t DiB_findMaxMem(unsigned long long requiredMem)
158 {
159     size_t const step = 8 MB;
160     void* testmem = NULL;
161
162     requiredMem = (((requiredMem >> 23) + 1) << 23);
163     requiredMem += step;
164     if (requiredMem > maxMemory) requiredMem = maxMemory;
165
166     while (!testmem) {
167         testmem = malloc((size_t)requiredMem);
168         requiredMem -= step;
169     }
170
171     free(testmem);
172     return (size_t)requiredMem;
173 }
174
175
176 static void DiB_fillNoise(void* buffer, size_t length)
177 {
178     unsigned const prime1 = 2654435761U;
179     unsigned const prime2 = 2246822519U;
180     unsigned acc = prime1;
181     size_t p=0;;
182
183     for (p=0; p<length; p++) {
184         acc *= prime2;
185         ((unsigned char*)buffer)[p] = (unsigned char)(acc >> 21);
186     }
187 }
188
189
190 static void DiB_saveDict(const char* dictFileName,
191                          const void* buff, size_t buffSize)
192 {
193     FILE* const f = fopen(dictFileName, "wb");
194     if (f==NULL) EXM_THROW(3, "cannot open %s ", dictFileName);
195
196     { size_t const n = fwrite(buff, 1, buffSize, f);
197       if (n!=buffSize) EXM_THROW(4, "%s : write error", dictFileName) }
198
199     { size_t const n = (size_t)fclose(f);
200       if (n!=0) EXM_THROW(5, "%s : flush error", dictFileName) }
201 }
202
203
204 static int g_tooLargeSamples = 0;
205 static U64 DiB_getTotalCappedFileSize(const char** fileNamesTable, unsigned nbFiles)
206 {
207     U64 total = 0;
208     unsigned n;
209     for (n=0; n<nbFiles; n++) {
210         U64 const fileSize = UTIL_getFileSize(fileNamesTable[n]);
211         U64 const cappedFileSize = MIN(fileSize, SAMPLESIZE_MAX);
212         total += cappedFileSize;
213         g_tooLargeSamples |= (fileSize > 2*SAMPLESIZE_MAX);
214     }
215     return total;
216 }
217
218
219 /*! ZDICT_trainFromBuffer_unsafe() :
220     Strictly Internal use only !!
221     Same as ZDICT_trainFromBuffer_advanced(), but does not control `samplesBuffer`.
222     `samplesBuffer` must be followed by noisy guard band to avoid out-of-buffer reads.
223     @return : size of dictionary stored into `dictBuffer` (<= `dictBufferCapacity`)
224               or an error code.
225 */
226 size_t ZDICT_trainFromBuffer_unsafe(void* dictBuffer, size_t dictBufferCapacity,
227                               const void* samplesBuffer, const size_t* samplesSizes, unsigned nbSamples,
228                               ZDICT_params_t parameters);
229
230
231 int DiB_trainFromFiles(const char* dictFileName, unsigned maxDictSize,
232                        const char** fileNamesTable, unsigned nbFiles,
233                        ZDICT_params_t *params, COVER_params_t *coverParams,
234                        int optimizeCover)
235 {
236     void* const dictBuffer = malloc(maxDictSize);
237     size_t* const fileSizes = (size_t*)malloc(nbFiles * sizeof(size_t));
238     unsigned long long const totalSizeToLoad = DiB_getTotalCappedFileSize(fileNamesTable, nbFiles);
239     size_t const memMult = params ? MEMMULT : COVER_MEMMULT;
240     size_t const maxMem =  DiB_findMaxMem(totalSizeToLoad * memMult) / memMult;
241     size_t benchedSize = (size_t) MIN ((unsigned long long)maxMem, totalSizeToLoad);
242     void* const srcBuffer = malloc(benchedSize+NOISELENGTH);
243     int result = 0;
244
245     /* Checks */
246     if (params) g_displayLevel = params->notificationLevel;
247     else if (coverParams) g_displayLevel = coverParams->notificationLevel;
248     else EXM_THROW(13, "Neither dictionary algorith selected");   /* should not happen */
249     if ((!fileSizes) || (!srcBuffer) || (!dictBuffer)) EXM_THROW(12, "not enough memory for DiB_trainFiles");   /* should not happen */
250     if (g_tooLargeSamples) {
251         DISPLAYLEVEL(2, "!  Warning : some samples are very large \n");
252         DISPLAYLEVEL(2, "!  Note that dictionary is only useful for small files or beginning of large files. \n");
253         DISPLAYLEVEL(2, "!  As a consequence, only the first %u bytes of each file are loaded \n", SAMPLESIZE_MAX);
254     }
255     if ((nbFiles < 5) || (totalSizeToLoad < 9 * (unsigned long long)maxDictSize)) {
256         DISPLAYLEVEL(2, "!  Warning : nb of samples too low for proper processing ! \n");
257         DISPLAYLEVEL(2, "!  Please provide _one file per sample_. \n");
258         DISPLAYLEVEL(2, "!  Do not concatenate samples together into a single file, \n");
259         DISPLAYLEVEL(2, "!  as dictBuilder will be unable to find the beginning of each sample, \n");
260         DISPLAYLEVEL(2, "!  resulting in poor dictionary quality. \n");
261     }
262
263     /* init */
264     if (benchedSize < totalSizeToLoad)
265         DISPLAYLEVEL(1, "Not enough memory; training on %u MB only...\n", (unsigned)(benchedSize >> 20));
266
267     /* Load input buffer */
268     DISPLAYLEVEL(3, "Shuffling input files\n");
269     DiB_shuffle(fileNamesTable, nbFiles);
270     nbFiles = DiB_loadFiles(srcBuffer, &benchedSize, fileSizes, fileNamesTable, nbFiles);
271
272     {
273         size_t dictSize;
274         if (params) {
275             DiB_fillNoise((char*)srcBuffer + benchedSize, NOISELENGTH);   /* guard band, for end of buffer condition */
276             dictSize = ZDICT_trainFromBuffer_unsafe(dictBuffer, maxDictSize,
277                                                     srcBuffer, fileSizes, nbFiles,
278                                                     *params);
279         } else if (optimizeCover) {
280             dictSize = COVER_optimizeTrainFromBuffer(
281                 dictBuffer, maxDictSize, srcBuffer, fileSizes, nbFiles,
282                 coverParams);
283             if (!ZDICT_isError(dictSize)) {
284               DISPLAYLEVEL(2, "k=%u\nd=%u\nsteps=%u\n", coverParams->k, coverParams->d, coverParams->steps);
285             }
286         } else {
287             dictSize = COVER_trainFromBuffer(dictBuffer, maxDictSize,
288                                              srcBuffer, fileSizes, nbFiles,
289                                              *coverParams);
290         }
291         if (ZDICT_isError(dictSize)) {
292             DISPLAYLEVEL(1, "dictionary training failed : %s \n", ZDICT_getErrorName(dictSize));   /* should not happen */
293             result = 1;
294             goto _cleanup;
295         }
296         /* save dict */
297         DISPLAYLEVEL(2, "Save dictionary of size %u into file %s \n", (U32)dictSize, dictFileName);
298         DiB_saveDict(dictFileName, dictBuffer, dictSize);
299     }
300
301     /* clean up */
302 _cleanup:
303     free(srcBuffer);
304     free(dictBuffer);
305     free(fileSizes);
306     return result;
307 }