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 .
*/
2016-02-11 15:07:30 -08:00
# ifndef DICTBUILDER_H_001
# define DICTBUILDER_H_001
# if defined (__cplusplus)
extern " C " {
# endif
2016-08-18 04:12:49 -07:00
2016-08-30 10:04:33 -07:00
/*====== Dependencies ======*/
# include <stddef.h> /* size_t */
2016-12-16 13:27:30 -08:00
/* ===== ZDICTLIB_API : control library symbols visibility ===== */
# if defined(__GNUC__) && (__GNUC__ >= 4)
# define ZDICTLIB_VISIBILITY __attribute__ ((visibility ("default")))
# else
# define ZDICTLIB_VISIBILITY
# endif
# if defined(ZSTD_DLL_EXPORT) && (ZSTD_DLL_EXPORT==1)
# define ZDICTLIB_API __declspec(dllexport) ZDICTLIB_VISIBILITY
# elif defined(ZSTD_DLL_IMPORT) && (ZSTD_DLL_IMPORT==1)
# define ZDICTLIB_API __declspec(dllimport) ZDICTLIB_VISIBILITY /* It isn't required but allows to generate better code, saving a function pointer load from the IAT and an indirect jump.*/
2016-08-18 04:12:49 -07:00
# else
2016-12-16 13:27:30 -08:00
# define ZDICTLIB_API ZDICTLIB_VISIBILITY
2016-08-18 04:12:49 -07:00
# endif
2016-02-11 15:07:30 -08:00
/*! ZDICT_trainFromBuffer() :
2016-07-27 18:47:45 -07:00
Train a dictionary from an array of samples .
Samples must be stored concatenated in a single flat buffer ` samplesBuffer ` ,
supplied with an array of sizes ` samplesSizes ` , providing the size of each sample , in order .
The resulting dictionary will be saved into ` dictBuffer ` .
2016-02-11 15:07:30 -08:00
@ return : size of dictionary stored into ` dictBuffer ` ( < = ` dictBufferCapacity ` )
2016-07-27 18:47:45 -07:00
or an error code , which can be tested with ZDICT_isError ( ) .
Tips : In general , a reasonable dictionary has a size of ~ 100 KB .
It ' s obviously possible to target smaller or larger ones , just by specifying different ` dictBufferCapacity ` .
In general , it ' s recommended to provide a few thousands samples , but this can vary a lot .
It ' s recommended that total size of all samples be about ~ x100 times the target size of dictionary .
2016-02-11 15:07:30 -08:00
*/
2016-08-18 04:47:06 -07:00
ZDICTLIB_API size_t ZDICT_trainFromBuffer ( void * dictBuffer , size_t dictBufferCapacity ,
2016-07-27 18:47:45 -07:00
const void * samplesBuffer , const size_t * samplesSizes , unsigned nbSamples ) ;
2016-05-30 18:49:58 -07:00
2016-07-27 18:47:45 -07:00
/*====== Helper functions ======*/
2016-08-19 05:23:58 -07:00
ZDICTLIB_API unsigned ZDICT_getDictID ( const void * dictBuffer , size_t dictSize ) ; /**< extracts dictID; @return zero if error (not a valid dictionary) */
2016-08-18 04:47:06 -07:00
ZDICTLIB_API unsigned ZDICT_isError ( size_t errorCode ) ;
ZDICTLIB_API const char * ZDICT_getErrorName ( size_t errorCode ) ;
2016-02-11 15:07:30 -08:00
2016-07-27 18:47:45 -07:00
2016-06-04 09:56:23 -07:00
# ifdef ZDICT_STATIC_LINKING_ONLY
/* ====================================================================================
* The definitions in this section are considered experimental .
2016-06-15 04:53:34 -07:00
* They should never be used with a dynamic library , as they may change in the future .
2016-06-04 09:56:23 -07:00
* They are provided for advanced usages .
* Use them only in association with static linking .
* = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
typedef struct {
2016-07-27 18:47:45 -07:00
unsigned selectivityLevel ; /* 0 means default; larger => select more => larger dictionary */
2016-07-27 06:09:11 -07:00
int compressionLevel ; /* 0 means default; target a specific zstd compression level */
2016-06-04 09:56:23 -07:00
unsigned notificationLevel ; /* Write to stderr; 0 = none (default); 1 = errors; 2 = progression; 3 = details; 4 = debug; */
unsigned dictID ; /* 0 means auto mode (32-bits random value); other : force dictID value */
2016-09-02 15:32:39 -07:00
unsigned reserved [ 2 ] ; /* reserved space for future parameters */
2016-06-04 09:56:23 -07:00
} ZDICT_params_t ;
/*! ZDICT_trainFromBuffer_advanced() :
Same as ZDICT_trainFromBuffer ( ) with control over more parameters .
` parameters ` is optional and can be provided with values set to 0 to mean " default " .
2016-07-27 18:47:45 -07:00
@ return : size of dictionary stored into ` dictBuffer ` ( < = ` dictBufferSize ` ) ,
2016-06-04 09:56:23 -07:00
or an error code , which can be tested by ZDICT_isError ( ) .
2016-07-27 18:47:45 -07:00
note : ZDICT_trainFromBuffer_advanced ( ) will send notifications into stderr if instructed to , using notificationLevel > 0.
2016-06-04 09:56:23 -07:00
*/
2016-12-16 13:27:30 -08:00
ZDICTLIB_API size_t ZDICT_trainFromBuffer_advanced ( void * dictBuffer , size_t dictBufferCapacity ,
2016-07-27 18:47:45 -07:00
const void * samplesBuffer , const size_t * samplesSizes , unsigned nbSamples ,
ZDICT_params_t parameters ) ;
/*! ZDICT_addEntropyTablesFromBuffer() :
Given a content - only dictionary ( built using any 3 rd party algorithm ) ,
add entropy tables computed from an array of samples .
Samples must be stored concatenated in a flat buffer ` samplesBuffer ` ,
supplied with an array of sizes ` samplesSizes ` , providing the size of each sample in order .
The input dictionary content must be stored * at the end * of ` dictBuffer ` .
Its size is ` dictContentSize ` .
The resulting dictionary with added entropy tables will be * written back to ` dictBuffer ` * ,
starting from its beginning .
@ return : size of dictionary stored into ` dictBuffer ` ( < = ` dictBufferCapacity ` ) .
*/
2016-12-16 13:27:30 -08:00
ZDICTLIB_API size_t ZDICT_addEntropyTablesFromBuffer ( void * dictBuffer , size_t dictContentSize , size_t dictBufferCapacity ,
2016-07-27 18:47:45 -07:00
const void * samplesBuffer , const size_t * samplesSizes , unsigned nbSamples ) ;
2016-06-04 09:56:23 -07:00
# endif /* ZDICT_STATIC_LINKING_ONLY */
2016-02-11 15:07:30 -08:00
# if defined (__cplusplus)
}
# endif
2016-07-13 08:38:39 -07:00
# endif /* DICTBUILDER_H_001 */