2017-08-18 16:52:05 -07:00
/*
2016-08-30 10:04:33 -07:00
* Copyright ( c ) 2016 - present , Yann Collet , Facebook , Inc .
* All rights reserved .
*
2017-08-18 16:52:05 -07:00
* This source code is licensed under both the BSD - style license ( found in the
* LICENSE file in the root directory of this source tree ) and the GPLv2 ( found
* in the COPYING file in the root directory of this source tree ) .
2017-09-08 00:09:23 -07:00
* You may select , at your option , one of the above - listed licenses .
2016-08-30 10:04:33 -07:00
*/
2015-01-23 16:58:16 -08:00
2017-01-25 17:01:13 -08:00
2015-10-22 08:55:40 -07:00
/* *************************************
2015-01-23 16:58:16 -08:00
* Compiler Options
2015-10-22 08:55:40 -07:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2016-08-13 16:19:12 -07:00
# ifdef _MSC_VER /* Visual */
2016-12-21 04:47:11 -08:00
# pragma warning(disable : 4127) /* disable: C4127: conditional expression is constant */
2016-08-13 16:19:12 -07:00
# pragma warning(disable : 4204) /* non-constant aggregate initializer */
# endif
2016-12-21 04:23:34 -08:00
# if defined(__MINGW32__) && !defined(_POSIX_SOURCE)
# define _POSIX_SOURCE 1 /* disable %llu warnings with MinGW on Windows */
# endif
2015-01-23 16:58:16 -08:00
2016-02-12 11:19:48 -08:00
/*-*************************************
2015-01-23 16:58:16 -08:00
* Includes
2015-10-22 08:55:40 -07:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2016-12-21 06:08:44 -08:00
# include "platform.h" /* Large Files support, SET_BINARY_MODE */
2017-10-17 16:14:25 -07:00
# include "util.h" /* UTIL_getFileSize, UTIL_isRegularFile */
2015-11-09 08:42:17 -08:00
# include <stdio.h> /* fprintf, fopen, fread, _fileno, stdin, stdout */
# include <stdlib.h> /* malloc, free */
# include <string.h> /* strcmp, strlen */
2018-10-02 15:59:11 -07:00
# include <assert.h>
2015-11-09 08:42:17 -08:00
# include <errno.h> /* errno */
2018-09-11 11:39:49 -07:00
# include <signal.h>
2016-04-28 05:40:45 -07:00
2017-04-06 12:56:40 -07:00
# if defined (_MSC_VER)
# include <sys / stat.h>
# include <io.h>
# endif
2018-10-02 15:59:11 -07:00
# include "mem.h" /* U32, U64 */
2015-01-23 16:58:16 -08:00
# include "fileio.h"
2018-02-01 16:13:04 -08:00
2016-06-04 10:47:02 -07:00
# define ZSTD_STATIC_LINKING_ONLY /* ZSTD_magicNumber, ZSTD_frameHeaderSize_max */
# include "zstd.h"
2018-02-01 16:13:04 -08:00
# include "zstd_errors.h" /* ZSTD_error_frameParameter_windowTooLarge */
2017-02-08 07:54:23 -08:00
# if defined(ZSTD_GZCOMPRESS) || defined(ZSTD_GZDECOMPRESS)
2017-02-06 11:32:13 -08:00
# include <zlib.h>
2017-01-19 16:59:56 -08:00
# if !defined(z_const)
# define z_const
# endif
2016-11-30 06:05:54 -08:00
# endif
2018-02-01 16:13:04 -08:00
2017-03-13 18:11:07 -07:00
# if defined(ZSTD_LZMACOMPRESS) || defined(ZSTD_LZMADECOMPRESS)
# include <lzma.h>
# endif
2015-01-23 16:58:16 -08:00
2017-04-24 16:48:25 -07:00
# define LZ4_MAGICNUMBER 0x184D2204
# if defined(ZSTD_LZ4COMPRESS) || defined(ZSTD_LZ4DECOMPRESS)
2017-09-21 11:29:35 -07:00
# define LZ4F_ENABLE_OBSOLETE_ENUMS
2017-04-24 16:48:25 -07:00
# include <lz4frame.h>
2017-04-25 11:00:54 -07:00
# include <lz4.h>
2017-04-24 16:48:25 -07:00
# endif
2015-01-23 16:58:16 -08:00
2016-02-12 11:19:48 -08:00
/*-*************************************
2015-01-23 16:58:16 -08:00
* Constants
2015-10-22 08:55:40 -07:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2016-07-02 16:10:53 -07:00
# define KB *(1<<10)
# define MB *(1<<20)
# define GB *(1U<<30)
2018-08-13 13:10:42 -07:00
# define ADAPT_WINDOWLOG_DEFAULT 23 /* 8 MB */
2017-04-11 14:41:02 -07:00
# define DICTSIZE_MAX (32 MB) /* protection against large input (attack scenario) */
2016-02-12 11:19:48 -08:00
2016-04-22 04:59:05 -07:00
# define FNSPACE 30
2015-01-23 16:58:16 -08:00
2016-02-15 11:37:23 -08:00
/*-*************************************
2015-01-23 16:58:16 -08:00
* Macros
2015-10-22 08:55:40 -07:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2015-01-23 16:58:16 -08:00
# define DISPLAY(...) fprintf(stderr, __VA_ARGS__)
2017-06-15 12:27:32 -07:00
# define DISPLAYOUT(...) fprintf(stdout, __VA_ARGS__)
2017-01-27 13:30:18 -08:00
# define DISPLAYLEVEL(l, ...) { if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); } }
2017-05-16 18:10:11 -07:00
static int g_displayLevel = 2 ; /* 0 : no display; 1: errors; 2: + result + interaction + warnings; 3: + progression; 4: + information */
2016-03-10 12:02:25 -08:00
void FIO_setNotificationLevel ( unsigned level ) { g_displayLevel = level ; }
2015-01-23 16:58:16 -08:00
2017-11-29 19:11:12 -08:00
static const U64 g_refreshRate = SEC_TO_MICRO / 6 ;
static UTIL_time_t g_displayClock = UTIL_TIME_INITIALIZER ;
2018-01-18 11:27:13 -08:00
# define READY_FOR_UPDATE() (UTIL_clockSpanMicro(g_displayClock) > g_refreshRate)
2018-03-22 17:49:46 -07:00
# define DELAY_NEXT_UPDATE() { g_displayClock = UTIL_getTime(); }
2018-01-17 16:39:02 -08:00
# define DISPLAYUPDATE(l, ...) { \
if ( g_displayLevel > = l ) { \
2018-03-22 17:49:46 -07:00
if ( READY_FOR_UPDATE ( ) | | ( g_displayLevel > = 4 ) ) { \
DELAY_NEXT_UPDATE ( ) ; \
DISPLAY ( __VA_ARGS__ ) ; \
2018-01-17 16:39:02 -08:00
if ( g_displayLevel > = 4 ) fflush ( stderr ) ; \
} } }
2015-01-23 16:58:16 -08:00
2017-05-16 18:10:11 -07:00
# undef MIN /* in case it would be already defined */
2017-04-13 15:35:05 -07:00
# define MIN(a,b) ((a) < (b) ? (a) : (b))
2016-07-02 16:10:53 -07:00
2017-04-27 00:29:04 -07:00
2017-10-19 11:56:14 -07:00
# define EXM_THROW(error, ...) \
{ \
DISPLAYLEVEL ( 1 , " zstd: " ) ; \
2018-10-02 15:59:11 -07:00
DISPLAYLEVEL ( 5 , " Error defined at %s, line %i : \n " , __FILE__ , __LINE__ ) ; \
2017-10-19 11:56:14 -07:00
DISPLAYLEVEL ( 1 , " error %i : " , error ) ; \
DISPLAYLEVEL ( 1 , __VA_ARGS__ ) ; \
DISPLAYLEVEL ( 1 , " \n " ) ; \
exit ( error ) ; \
2017-05-17 18:36:15 -07:00
}
2017-12-14 13:00:20 -08:00
# define CHECK_V(v, f) \
v = f ; \
if ( ZSTD_isError ( v ) ) { \
2018-10-02 15:59:11 -07:00
DISPLAYLEVEL ( 5 , " %s \n " , # f ) ; \
2017-12-14 13:00:20 -08:00
EXM_THROW ( 11 , " %s " , ZSTD_getErrorName ( v ) ) ; \
}
# define CHECK(f) { size_t err; CHECK_V(err, f); }
2017-05-17 18:36:15 -07:00
2017-10-01 12:10:26 -07:00
/*-************************************
* Signal ( Ctrl - C trapping )
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2017-10-02 11:39:05 -07:00
static const char * g_artefact = NULL ;
static void INThandler ( int sig )
2017-10-01 12:10:26 -07:00
{
2017-10-02 00:19:47 -07:00
assert ( sig = = SIGINT ) ; ( void ) sig ;
2017-10-02 02:02:16 -07:00
# if !defined(_MSC_VER)
signal ( sig , SIG_IGN ) ; /* this invocation generates a buggy warning in Visual Studio */
2017-10-02 00:02:24 -07:00
# endif
2018-01-05 11:44:45 -08:00
if ( g_artefact ) {
assert ( UTIL_isRegularFile ( g_artefact ) ) ;
remove ( g_artefact ) ;
}
2017-10-01 12:10:26 -07:00
DISPLAY ( " \n " ) ;
2017-10-01 15:32:48 -07:00
exit ( 2 ) ;
2017-10-01 12:10:26 -07:00
}
2017-11-17 16:38:56 -08:00
static void addHandler ( char const * dstFileName )
{
if ( UTIL_isRegularFile ( dstFileName ) ) {
g_artefact = dstFileName ;
signal ( SIGINT , INThandler ) ;
} else {
g_artefact = NULL ;
}
}
/* Idempotent */
static void clearHandler ( void )
{
if ( g_artefact ) signal ( SIGINT , SIG_DFL ) ;
g_artefact = NULL ;
}
2017-10-01 12:10:26 -07:00
2018-09-11 11:39:49 -07:00
/*-*********************************************************
* Termination signal trapping ( Print debug stack trace )
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2018-10-09 17:24:48 -07:00
# if defined(__has_feature) && !defined(BACKTRACE_ENABLE) /* Clang compiler */
# if (__has_feature(address_sanitizer))
# define BACKTRACE_ENABLE 0
# endif /* __has_feature(address_sanitizer) */
# elif defined(__SANITIZE_ADDRESS__) && !defined(BACKTRACE_ENABLE) /* GCC compiler */
# define BACKTRACE_ENABLE 0
# endif
2018-10-09 17:56:59 -07:00
# if !defined(BACKTRACE_ENABLE)
/* automatic detector : backtrace enabled by default on linux+glibc and osx */
# if (defined(__linux__) && defined(__GLIBC__)) \
| | ( defined ( __APPLE__ ) & & defined ( __MACH__ ) )
# define BACKTRACE_ENABLE 1
# else
# define BACKTRACE_ENABLE 0
# endif
2018-10-09 17:12:21 -07:00
# endif
2018-10-09 17:56:59 -07:00
/* note : after this point, BACKTRACE_ENABLE is necessarily defined */
2018-10-09 17:12:21 -07:00
2018-10-09 17:56:59 -07:00
# if BACKTRACE_ENABLE
2018-09-21 14:46:09 -07:00
2018-10-09 17:12:21 -07:00
# include <execinfo.h> /* backtrace, backtrace_symbols */
2018-09-11 11:39:49 -07:00
# define MAX_STACK_FRAMES 50
static void ABRThandler ( int sig ) {
2018-09-11 14:49:47 -07:00
const char * name ;
void * addrlist [ MAX_STACK_FRAMES ] ;
char * * symbollist ;
U32 addrlen , i ;
switch ( sig ) {
case SIGABRT : name = " SIGABRT " ; break ;
case SIGFPE : name = " SIGFPE " ; break ;
case SIGILL : name = " SIGILL " ; break ;
case SIGINT : name = " SIGINT " ; break ;
case SIGSEGV : name = " SIGSEGV " ; break ;
default : name = " UNKNOWN " ;
}
DISPLAY ( " Caught %s signal, printing stack: \n " , name ) ;
/* Retrieve current stack addresses. */
addrlen = backtrace ( addrlist , MAX_STACK_FRAMES ) ;
if ( addrlen = = 0 ) {
DISPLAY ( " \n " ) ;
return ;
}
/* Create readable strings to each frame. */
symbollist = backtrace_symbols ( addrlist , addrlen ) ;
/* Print the stack trace, excluding calls handling the signal. */
for ( i = ZSTD_START_SYMBOLLIST_FRAME ; i < addrlen ; i + + ) {
DISPLAY ( " %s \n " , symbollist [ i ] ) ;
}
free ( symbollist ) ;
/* Reset and raise the signal so default handler runs. */
signal ( sig , SIG_DFL ) ;
raise ( sig ) ;
2018-09-11 11:39:49 -07:00
}
# endif
void FIO_addAbortHandler ( )
{
2018-10-09 17:56:59 -07:00
# if BACKTRACE_ENABLE
2018-09-11 11:39:49 -07:00
signal ( SIGABRT , ABRThandler ) ;
signal ( SIGFPE , ABRThandler ) ;
signal ( SIGILL , ABRThandler ) ;
signal ( SIGSEGV , ABRThandler ) ;
signal ( SIGBUS , ABRThandler ) ;
# endif
}
2018-09-06 18:46:52 -07:00
/*-************************************************************
2018-06-09 12:31:17 -07:00
* Avoid fseek ( ) ' s 2 GiB barrier with MSVC , macOS , * BSD , MinGW
2017-02-14 00:45:33 -08:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2017-02-12 01:27:18 -08:00
# if defined(_MSC_VER) && _MSC_VER >= 1400
# define LONG_SEEK _fseeki64
2017-02-14 00:45:33 -08:00
# elif !defined(__64BIT__) && (PLATFORM_POSIX_VERSION >= 200112L) /* No point defining Large file for 64 bit */
2017-02-14 00:52:52 -08:00
# define LONG_SEEK fseeko
2017-02-12 01:27:18 -08:00
# elif defined(__MINGW32__) && !defined(__STRICT_ANSI__) && !defined(__NO_MINGW_LFS) && defined(__MSVCRT__)
# define LONG_SEEK fseeko64
# elif defined(_WIN32) && !defined(__DJGPP__)
# include <windows.h>
static int LONG_SEEK ( FILE * file , __int64 offset , int origin ) {
LARGE_INTEGER off ;
DWORD method ;
off . QuadPart = offset ;
if ( origin = = SEEK_END )
method = FILE_END ;
else if ( origin = = SEEK_CUR )
method = FILE_CURRENT ;
else
method = FILE_BEGIN ;
if ( SetFilePointerEx ( ( HANDLE ) _get_osfhandle ( _fileno ( file ) ) , off , NULL , method ) )
2017-02-13 03:00:59 -08:00
return 0 ;
2017-02-12 01:27:18 -08:00
else
2017-02-13 03:00:59 -08:00
return - 1 ;
2017-02-12 01:27:18 -08:00
}
# else
# define LONG_SEEK fseek
# endif
2016-02-15 11:37:23 -08:00
/*-*************************************
2016-07-01 16:05:31 -07:00
* Local Parameters - Not thread safe
2015-10-22 08:55:40 -07:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2017-02-14 00:23:32 -08:00
static FIO_compressionType_t g_compressionType = FIO_zstdCompression ;
void FIO_setCompressionType ( FIO_compressionType_t compressionType ) { g_compressionType = compressionType ; }
2015-01-23 16:58:16 -08:00
static U32 g_overwrite = 0 ;
void FIO_overwriteMode ( void ) { g_overwrite = 1 ; }
2017-05-17 18:36:15 -07:00
static U32 g_sparseFileSupport = 1 ; /* 0: no sparse allowed; 1: auto (file yes, stdout no); 2: force sparse */
2016-05-23 07:56:56 -07:00
void FIO_setSparseWrite ( unsigned sparse ) { g_sparseFileSupport = sparse ; }
2016-05-30 17:29:45 -07:00
static U32 g_dictIDFlag = 1 ;
void FIO_setDictIDFlag ( unsigned dictIDFlag ) { g_dictIDFlag = dictIDFlag ; }
2016-06-20 07:31:24 -07:00
static U32 g_checksumFlag = 1 ;
2016-06-01 10:22:15 -07:00
void FIO_setChecksumFlag ( unsigned checksumFlag ) { g_checksumFlag = checksumFlag ; }
2016-06-09 13:59:51 -07:00
static U32 g_removeSrcFile = 0 ;
void FIO_setRemoveSrcFile ( unsigned flag ) { g_removeSrcFile = ( flag > 0 ) ; }
2016-10-14 13:13:13 -07:00
static U32 g_memLimit = 0 ;
void FIO_setMemLimit ( unsigned memLimit ) { g_memLimit = memLimit ; }
2018-02-01 19:29:30 -08:00
static U32 g_nbWorkers = 1 ;
void FIO_setNbWorkers ( unsigned nbWorkers ) {
2017-01-19 16:59:56 -08:00
# ifndef ZSTD_MULTITHREAD
2018-02-01 19:29:30 -08:00
if ( nbWorkers > 0 ) DISPLAYLEVEL ( 2 , " Note : multi-threading is disabled \n " ) ;
2017-01-19 16:59:56 -08:00
# endif
2018-02-01 19:29:30 -08:00
g_nbWorkers = nbWorkers ;
2017-01-19 16:59:56 -08:00
}
2017-01-24 17:02:26 -08:00
static U32 g_blockSize = 0 ;
void FIO_setBlockSize ( unsigned blockSize ) {
2018-02-01 19:29:30 -08:00
if ( blockSize & & g_nbWorkers = = 0 )
2017-01-24 17:02:26 -08:00
DISPLAYLEVEL ( 2 , " Setting block size is useless in single-thread mode \n " ) ;
g_blockSize = blockSize ;
}
2017-01-30 14:37:08 -08:00
# define FIO_OVERLAP_LOG_NOTSET 9999
static U32 g_overlapLog = FIO_OVERLAP_LOG_NOTSET ;
2017-01-30 11:17:26 -08:00
void FIO_setOverlapLog ( unsigned overlapLog ) {
2018-02-01 19:29:30 -08:00
if ( overlapLog & & g_nbWorkers = = 0 )
2017-01-30 11:17:26 -08:00
DISPLAYLEVEL ( 2 , " Setting overlapLog is useless in single-thread mode \n " ) ;
g_overlapLog = overlapLog ;
}
2018-08-11 20:48:06 -07:00
static U32 g_adaptiveMode = 0 ;
2018-09-19 14:49:13 -07:00
void FIO_setAdaptiveMode ( unsigned adapt ) {
if ( ( adapt > 0 ) & & ( g_nbWorkers = = 0 ) )
EXM_THROW ( 1 , " Adaptive mode is not compatible with single thread mode \n " ) ;
g_adaptiveMode = adapt ;
}
2018-09-24 18:16:08 -07:00
static int g_minAdaptLevel = - 50 ; /* initializing this value requires a constant, so ZSTD_minCLevel() doesn't work */
void FIO_setAdaptMin ( int minCLevel )
{
# ifndef ZSTD_NOCOMPRESS
assert ( minCLevel > = ZSTD_minCLevel ( ) ) ;
# endif
g_minAdaptLevel = minCLevel ;
}
static int g_maxAdaptLevel = 22 ; /* initializing this value requires a constant, so ZSTD_maxCLevel() doesn't work */
void FIO_setAdaptMax ( int maxCLevel )
{
g_maxAdaptLevel = maxCLevel ;
}
2017-07-28 15:51:33 -07:00
static U32 g_ldmFlag = 0 ;
void FIO_setLdmFlag ( unsigned ldmFlag ) {
g_ldmFlag = ( ldmFlag > 0 ) ;
}
2017-09-01 14:52:51 -07:00
static U32 g_ldmHashLog = 0 ;
void FIO_setLdmHashLog ( unsigned ldmHashLog ) {
g_ldmHashLog = ldmHashLog ;
}
static U32 g_ldmMinMatch = 0 ;
void FIO_setLdmMinMatch ( unsigned ldmMinMatch ) {
g_ldmMinMatch = ldmMinMatch ;
}
2017-09-02 21:10:36 -07:00
# define FIO_LDM_PARAM_NOTSET 9999
static U32 g_ldmBucketSizeLog = FIO_LDM_PARAM_NOTSET ;
void FIO_setLdmBucketSizeLog ( unsigned ldmBucketSizeLog ) {
g_ldmBucketSizeLog = ldmBucketSizeLog ;
}
static U32 g_ldmHashEveryLog = FIO_LDM_PARAM_NOTSET ;
2017-09-01 14:52:51 -07:00
void FIO_setLdmHashEveryLog ( unsigned ldmHashEveryLog ) {
g_ldmHashEveryLog = ldmHashEveryLog ;
}
2015-01-23 16:58:16 -08:00
2016-02-15 11:37:23 -08:00
/*-*************************************
2015-01-23 16:58:16 -08:00
* Functions
2015-10-22 08:55:40 -07:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2017-04-06 12:56:40 -07:00
/** FIO_remove() :
* @ result : Unlink ` fileName ` , even if it ' s read - only */
static int FIO_remove ( const char * path )
{
2017-12-13 12:04:46 -08:00
if ( ! UTIL_isRegularFile ( path ) ) {
DISPLAYLEVEL ( 2 , " zstd: Refusing to remove non-regular file %s \n " , path ) ;
return 0 ;
}
2017-04-06 12:56:40 -07:00
# if defined(_WIN32) || defined(WIN32)
2017-05-05 19:15:24 -07:00
/* windows doesn't allow remove read-only files,
* so try to make it writable first */
2017-04-06 12:56:40 -07:00
chmod ( path , _S_IWRITE ) ;
# endif
return remove ( path ) ;
}
2016-11-11 17:26:54 -08:00
/** FIO_openSrcFile() :
2017-10-19 11:56:14 -07:00
* condition : ` srcFileName ` must be non - NULL .
* @ result : FILE * to ` srcFileName ` , or NULL if it fails */
2016-02-12 06:56:46 -08:00
static FILE * FIO_openSrcFile ( const char * srcFileName )
2015-12-16 17:23:58 -08:00
{
2017-10-19 11:56:14 -07:00
assert ( srcFileName ! = NULL ) ;
2016-02-02 05:36:49 -08:00
if ( ! strcmp ( srcFileName , stdinmark ) ) {
2015-12-16 17:23:58 -08:00
DISPLAYLEVEL ( 4 , " Using stdin for input \n " ) ;
SET_BINARY_MODE ( stdin ) ;
2017-10-19 11:56:14 -07:00
return stdin ;
}
if ( ! UTIL_isRegularFile ( srcFileName ) ) {
DISPLAYLEVEL ( 1 , " zstd: %s is not a regular file -- ignored \n " ,
srcFileName ) ;
return NULL ;
2015-12-16 17:23:58 -08:00
}
2017-10-19 11:56:14 -07:00
{ FILE * const f = fopen ( srcFileName , " rb " ) ;
if ( f = = NULL )
DISPLAYLEVEL ( 1 , " zstd: %s: %s \n " , srcFileName , strerror ( errno ) ) ;
return f ;
}
2016-02-12 06:56:46 -08:00
}
2016-09-15 06:38:44 -07:00
/** FIO_openDstFile() :
2017-10-19 11:56:14 -07:00
* condition : ` dstFileName ` must be non - NULL .
2016-09-15 06:38:44 -07:00
* @ result : FILE * to ` dstFileName ` , or NULL if it fails */
2016-02-12 06:56:46 -08:00
static FILE * FIO_openDstFile ( const char * dstFileName )
{
2017-10-19 11:56:14 -07:00
assert ( dstFileName ! = NULL ) ;
2016-02-02 05:36:49 -08:00
if ( ! strcmp ( dstFileName , stdoutmark ) ) {
2015-12-16 17:23:58 -08:00
DISPLAYLEVEL ( 4 , " Using stdout for output \n " ) ;
SET_BINARY_MODE ( stdout ) ;
2016-05-23 07:56:56 -07:00
if ( g_sparseFileSupport = = 1 ) {
g_sparseFileSupport = 0 ;
DISPLAYLEVEL ( 4 , " Sparse File Support is automatically disabled on stdout ; try --sparse \n " ) ;
}
2017-10-19 11:56:14 -07:00
return stdout ;
}
if ( g_sparseFileSupport = = 1 ) {
g_sparseFileSupport = ZSTD_SPARSE_DEFAULT ;
}
2017-12-13 12:04:46 -08:00
if ( UTIL_isRegularFile ( dstFileName ) ) {
FILE * fCheck ;
if ( ! strcmp ( dstFileName , nulmark ) ) {
EXM_THROW ( 40 , " %s is unexpectedly a regular file " , dstFileName ) ;
}
2017-10-19 11:56:14 -07:00
/* Check if destination file already exists */
2017-12-13 12:04:46 -08:00
fCheck = fopen ( dstFileName , " rb " ) ;
2017-10-19 11:56:14 -07:00
if ( fCheck ! = NULL ) { /* dst file exists, authorization prompt */
fclose ( fCheck ) ;
if ( ! g_overwrite ) {
if ( g_displayLevel < = 1 ) {
/* No interaction possible */
DISPLAY ( " zstd: %s already exists; not overwritten \n " ,
dstFileName ) ;
return NULL ;
}
DISPLAY ( " zstd: %s already exists; overwrite (y/N) ? " ,
dstFileName ) ;
{ int ch = getchar ( ) ;
if ( ( ch ! = ' Y ' ) & & ( ch ! = ' y ' ) ) {
DISPLAY ( " not overwritten \n " ) ;
2016-07-01 16:05:31 -07:00
return NULL ;
2015-12-29 02:57:15 -08:00
}
2017-10-19 11:56:14 -07:00
/* flush rest of input line */
while ( ( ch ! = EOF ) & & ( ch ! = ' \n ' ) ) ch = getchar ( ) ;
} }
/* need to unlink */
FIO_remove ( dstFileName ) ;
} }
{ FILE * const f = fopen ( dstFileName , " wb " ) ;
if ( f = = NULL )
DISPLAYLEVEL ( 1 , " zstd: %s: %s \n " , dstFileName , strerror ( errno ) ) ;
return f ;
2016-02-12 06:56:46 -08:00
}
}
2017-04-11 14:41:02 -07:00
/*! FIO_createDictBuffer() :
* creates a buffer , pointed by ` * bufferPtr ` ,
* loads ` filename ` content into it , up to DICTSIZE_MAX bytes .
2017-10-19 11:56:14 -07:00
* @ return : loaded size
2017-04-11 14:41:02 -07:00
* if fileName = = NULL , returns 0 and a NULL pointer
*/
static size_t FIO_createDictBuffer ( void * * bufferPtr , const char * fileName )
2015-12-17 11:30:14 -08:00
{
FILE * fileHandle ;
U64 fileSize ;
2017-10-19 11:56:14 -07:00
assert ( bufferPtr ! = NULL ) ;
2015-12-17 11:30:14 -08:00
* bufferPtr = NULL ;
2016-02-02 05:36:49 -08:00
if ( fileName = = NULL ) return 0 ;
2015-12-17 11:30:14 -08:00
DISPLAYLEVEL ( 4 , " Loading %s as dictionary \n " , fileName ) ;
fileHandle = fopen ( fileName , " rb " ) ;
2017-10-19 11:56:14 -07:00
if ( fileHandle = = NULL ) EXM_THROW ( 31 , " %s: %s " , fileName , strerror ( errno ) ) ;
2016-04-28 03:23:33 -07:00
fileSize = UTIL_getFileSize ( fileName ) ;
2017-09-26 11:21:36 -07:00
if ( fileSize > DICTSIZE_MAX ) {
2017-05-16 18:10:11 -07:00
EXM_THROW ( 32 , " Dictionary file %s is too large (> %u MB) " ,
fileName , DICTSIZE_MAX > > 20 ) ; /* avoid extreme cases */
2017-09-26 11:21:36 -07:00
}
2016-07-01 16:05:31 -07:00
* bufferPtr = malloc ( ( size_t ) fileSize ) ;
2017-05-17 18:36:15 -07:00
if ( * bufferPtr = = NULL ) EXM_THROW ( 34 , " %s " , strerror ( errno ) ) ;
2017-09-26 11:21:36 -07:00
{ size_t const readSize = fread ( * bufferPtr , 1 , ( size_t ) fileSize , fileHandle ) ;
if ( readSize ! = fileSize )
EXM_THROW ( 35 , " Error reading dictionary file %s " , fileName ) ;
}
2015-12-17 11:30:14 -08:00
fclose ( fileHandle ) ;
return ( size_t ) fileSize ;
}
2016-04-22 04:59:05 -07:00
# ifndef ZSTD_NOCOMPRESS
2015-12-16 17:23:58 -08:00
2018-03-22 17:49:46 -07:00
/* **********************************************************************
* Compression
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2015-12-16 17:23:58 -08:00
typedef struct {
2017-01-19 16:59:56 -08:00
FILE * srcFile ;
FILE * dstFile ;
2015-12-16 17:23:58 -08:00
void * srcBuffer ;
size_t srcBufferSize ;
void * dstBuffer ;
size_t dstBufferSize ;
2016-08-13 14:45:45 -07:00
ZSTD_CStream * cctx ;
2015-12-16 17:23:58 -08:00
} cRess_t ;
2017-01-19 16:59:56 -08:00
static cRess_t FIO_createCResources ( const char * dictFileName , int cLevel ,
2017-10-02 12:29:25 -07:00
U64 srcSize ,
2018-08-13 13:02:03 -07:00
ZSTD_compressionParameters comprParams ) {
2015-12-16 17:23:58 -08:00
cRess_t ress ;
2016-07-13 08:38:39 -07:00
memset ( & ress , 0 , sizeof ( ress ) ) ;
2015-12-16 17:23:58 -08:00
2018-03-11 19:56:48 -07:00
DISPLAYLEVEL ( 6 , " FIO_createCResources \n " ) ;
2017-05-17 18:36:15 -07:00
ress . cctx = ZSTD_createCCtx ( ) ;
if ( ress . cctx = = NULL )
EXM_THROW ( 30 , " allocation error : can't create ZSTD_CCtx " ) ;
2016-08-13 14:45:45 -07:00
ress . srcBufferSize = ZSTD_CStreamInSize ( ) ;
2015-12-16 17:23:58 -08:00
ress . srcBuffer = malloc ( ress . srcBufferSize ) ;
2016-08-13 14:45:45 -07:00
ress . dstBufferSize = ZSTD_CStreamOutSize ( ) ;
2015-12-16 17:23:58 -08:00
ress . dstBuffer = malloc ( ress . dstBufferSize ) ;
2017-05-16 17:32:33 -07:00
if ( ! ress . srcBuffer | | ! ress . dstBuffer )
2017-05-17 18:36:15 -07:00
EXM_THROW ( 31 , " allocation error : not enough memory " ) ;
2015-12-16 17:23:58 -08:00
2018-02-01 17:07:27 -08:00
/* Advanced parameters, including dictionary */
2016-09-15 06:38:44 -07:00
{ void * dictBuffer ;
2017-04-11 16:57:32 -07:00
size_t const dictBuffSize = FIO_createDictBuffer ( & dictBuffer , dictFileName ) ; /* works with dictFileName==NULL */
2017-05-16 17:32:33 -07:00
if ( dictFileName & & ( dictBuffer = = NULL ) )
2017-05-17 18:36:15 -07:00
EXM_THROW ( 32 , " allocation error : can't create dictBuffer " ) ;
2017-06-11 18:39:46 -07:00
2018-08-13 13:10:42 -07:00
if ( g_adaptiveMode & & ! g_ldmFlag & & ! comprParams . windowLog )
comprParams . windowLog = ADAPT_WINDOWLOG_DEFAULT ;
2017-10-19 11:56:14 -07:00
CHECK ( ZSTD_CCtx_setParameter ( ress . cctx , ZSTD_p_contentSizeFlag , 1 ) ) ; /* always enable content size when available (note: supposed to be default) */
2017-10-18 17:01:53 -07:00
CHECK ( ZSTD_CCtx_setParameter ( ress . cctx , ZSTD_p_dictIDFlag , g_dictIDFlag ) ) ;
CHECK ( ZSTD_CCtx_setParameter ( ress . cctx , ZSTD_p_checksumFlag , g_checksumFlag ) ) ;
/* compression level */
2018-03-11 19:56:48 -07:00
CHECK ( ZSTD_CCtx_setParameter ( ress . cctx , ZSTD_p_compressionLevel , ( unsigned ) cLevel ) ) ;
2017-10-18 17:01:53 -07:00
/* long distance matching */
2018-02-01 17:07:27 -08:00
CHECK ( ZSTD_CCtx_setParameter ( ress . cctx , ZSTD_p_enableLongDistanceMatching , g_ldmFlag ) ) ;
2017-10-18 17:01:53 -07:00
CHECK ( ZSTD_CCtx_setParameter ( ress . cctx , ZSTD_p_ldmHashLog , g_ldmHashLog ) ) ;
CHECK ( ZSTD_CCtx_setParameter ( ress . cctx , ZSTD_p_ldmMinMatch , g_ldmMinMatch ) ) ;
if ( g_ldmBucketSizeLog ! = FIO_LDM_PARAM_NOTSET ) {
CHECK ( ZSTD_CCtx_setParameter ( ress . cctx , ZSTD_p_ldmBucketSizeLog , g_ldmBucketSizeLog ) ) ;
2017-05-17 18:36:15 -07:00
}
2017-10-18 17:01:53 -07:00
if ( g_ldmHashEveryLog ! = FIO_LDM_PARAM_NOTSET ) {
CHECK ( ZSTD_CCtx_setParameter ( ress . cctx , ZSTD_p_ldmHashEveryLog , g_ldmHashEveryLog ) ) ;
2017-05-17 18:36:15 -07:00
}
2017-10-18 17:01:53 -07:00
/* compression parameters */
2018-08-13 13:02:03 -07:00
CHECK ( ZSTD_CCtx_setParameter ( ress . cctx , ZSTD_p_windowLog , comprParams . windowLog ) ) ;
CHECK ( ZSTD_CCtx_setParameter ( ress . cctx , ZSTD_p_chainLog , comprParams . chainLog ) ) ;
CHECK ( ZSTD_CCtx_setParameter ( ress . cctx , ZSTD_p_hashLog , comprParams . hashLog ) ) ;
CHECK ( ZSTD_CCtx_setParameter ( ress . cctx , ZSTD_p_searchLog , comprParams . searchLog ) ) ;
CHECK ( ZSTD_CCtx_setParameter ( ress . cctx , ZSTD_p_minMatch , comprParams . searchLength ) ) ;
CHECK ( ZSTD_CCtx_setParameter ( ress . cctx , ZSTD_p_targetLength , comprParams . targetLength ) ) ;
CHECK ( ZSTD_CCtx_setParameter ( ress . cctx , ZSTD_p_compressionStrategy , ( U32 ) comprParams . strategy ) ) ;
2017-10-18 17:01:53 -07:00
/* multi-threading */
2018-02-01 17:07:27 -08:00
# ifdef ZSTD_MULTITHREAD
2018-02-09 15:53:27 -08:00
DISPLAYLEVEL ( 5 , " set nb workers = %u \n " , g_nbWorkers ) ;
2018-02-01 19:29:30 -08:00
CHECK ( ZSTD_CCtx_setParameter ( ress . cctx , ZSTD_p_nbWorkers , g_nbWorkers ) ) ;
2018-03-28 10:33:41 -07:00
if ( ( g_overlapLog = = FIO_OVERLAP_LOG_NOTSET )
& & ( cLevel = = ZSTD_maxCLevel ( ) ) )
g_overlapLog = 9 ; /* full overlap */
if ( g_overlapLog ! = FIO_OVERLAP_LOG_NOTSET ) {
DISPLAYLEVEL ( 3 , " set overlapLog = %u \n " , g_overlapLog ) ;
CHECK ( ZSTD_CCtx_setParameter ( ress . cctx , ZSTD_p_overlapSizeLog , g_overlapLog ) ) ;
}
2018-01-16 17:28:11 -08:00
# endif
2017-10-18 17:01:53 -07:00
/* dictionary */
2018-02-01 17:07:27 -08:00
CHECK ( ZSTD_CCtx_setPledgedSrcSize ( ress . cctx , srcSize ) ) ; /* set the value temporarily for dictionary loading, to adapt compression parameters */
2017-10-18 17:01:53 -07:00
CHECK ( ZSTD_CCtx_loadDictionary ( ress . cctx , dictBuffer , dictBuffSize ) ) ;
CHECK ( ZSTD_CCtx_setPledgedSrcSize ( ress . cctx , ZSTD_CONTENTSIZE_UNKNOWN ) ) ; /* reset */
2016-09-15 06:38:44 -07:00
free ( dictBuffer ) ;
}
2015-12-16 17:23:58 -08:00
return ress ;
}
static void FIO_freeCResources ( cRess_t ress )
{
free ( ress . srcBuffer ) ;
free ( ress . dstBuffer ) ;
2016-09-15 06:38:44 -07:00
ZSTD_freeCStream ( ress . cctx ) ; /* never fails */
2015-12-16 17:23:58 -08:00
}
2017-02-08 07:54:23 -08:00
# ifdef ZSTD_GZCOMPRESS
2018-09-19 14:49:13 -07:00
static unsigned long long
FIO_compressGzFrame ( cRess_t * ress ,
2017-05-16 17:32:33 -07:00
const char * srcFileName , U64 const srcFileSize ,
int compressionLevel , U64 * readsize )
2017-02-08 07:54:23 -08:00
{
unsigned long long inFileSize = 0 , outFileSize = 0 ;
z_stream strm ;
2017-02-08 08:37:14 -08:00
int ret ;
2017-02-08 07:54:23 -08:00
2017-05-16 17:32:33 -07:00
if ( compressionLevel > Z_BEST_COMPRESSION )
compressionLevel = Z_BEST_COMPRESSION ;
2017-02-13 12:00:41 -08:00
2017-02-08 07:54:23 -08:00
strm . zalloc = Z_NULL ;
strm . zfree = Z_NULL ;
strm . opaque = Z_NULL ;
2017-02-08 08:37:14 -08:00
2017-05-16 17:32:33 -07:00
ret = deflateInit2 ( & strm , compressionLevel , Z_DEFLATED ,
15 /* maxWindowLogSize */ + 16 /* gzip only */ ,
8 , Z_DEFAULT_STRATEGY ) ; /* see http://www.zlib.net/manual.html */
if ( ret ! = Z_OK )
EXM_THROW ( 71 , " zstd: %s: deflateInit2 error %d \n " , srcFileName , ret ) ;
2017-02-08 07:54:23 -08:00
2017-02-08 08:37:14 -08:00
strm . next_in = 0 ;
2017-02-27 04:21:05 -08:00
strm . avail_in = 0 ;
2017-02-08 07:54:23 -08:00
strm . next_out = ( Bytef * ) ress - > dstBuffer ;
strm . avail_out = ( uInt ) ress - > dstBufferSize ;
while ( 1 ) {
if ( strm . avail_in = = 0 ) {
size_t const inSize = fread ( ress - > srcBuffer , 1 , ress - > srcBufferSize , ress - > srcFile ) ;
if ( inSize = = 0 ) break ;
inFileSize + = inSize ;
strm . next_in = ( z_const unsigned char * ) ress - > srcBuffer ;
strm . avail_in = ( uInt ) inSize ;
}
ret = deflate ( & strm , Z_NO_FLUSH ) ;
2017-05-16 17:32:33 -07:00
if ( ret ! = Z_OK )
EXM_THROW ( 72 , " zstd: %s: deflate error %d \n " , srcFileName , ret ) ;
2017-02-08 07:54:23 -08:00
{ size_t const decompBytes = ress - > dstBufferSize - strm . avail_out ;
if ( decompBytes ) {
2017-05-16 17:32:33 -07:00
if ( fwrite ( ress - > dstBuffer , 1 , decompBytes , ress - > dstFile ) ! = decompBytes )
EXM_THROW ( 73 , " Write error : cannot write to output file " ) ;
2017-02-08 07:54:23 -08:00
outFileSize + = decompBytes ;
strm . next_out = ( Bytef * ) ress - > dstBuffer ;
strm . avail_out = ( uInt ) ress - > dstBufferSize ;
}
}
2017-10-18 11:41:52 -07:00
if ( srcFileSize = = UTIL_FILESIZE_UNKNOWN )
2017-05-16 17:32:33 -07:00
DISPLAYUPDATE ( 2 , " \r Read : %u MB ==> %.2f%% " ,
( U32 ) ( inFileSize > > 20 ) ,
( double ) outFileSize / inFileSize * 100 )
else
DISPLAYUPDATE ( 2 , " \r Read : %u / %u MB ==> %.2f%% " ,
( U32 ) ( inFileSize > > 20 ) , ( U32 ) ( srcFileSize > > 20 ) ,
( double ) outFileSize / inFileSize * 100 ) ;
2017-02-08 07:54:23 -08:00
}
while ( 1 ) {
2017-02-08 08:37:14 -08:00
ret = deflate ( & strm , Z_FINISH ) ;
2017-02-08 07:54:23 -08:00
{ size_t const decompBytes = ress - > dstBufferSize - strm . avail_out ;
if ( decompBytes ) {
2017-05-16 17:32:33 -07:00
if ( fwrite ( ress - > dstBuffer , 1 , decompBytes , ress - > dstFile ) ! = decompBytes )
EXM_THROW ( 75 , " Write error : cannot write to output file " ) ;
2017-02-08 07:54:23 -08:00
outFileSize + = decompBytes ;
strm . next_out = ( Bytef * ) ress - > dstBuffer ;
strm . avail_out = ( uInt ) ress - > dstBufferSize ;
2017-05-16 17:32:33 -07:00
} }
2017-02-08 07:54:23 -08:00
if ( ret = = Z_STREAM_END ) break ;
2017-05-16 17:32:33 -07:00
if ( ret ! = Z_BUF_ERROR )
EXM_THROW ( 77 , " zstd: %s: deflate error %d \n " , srcFileName , ret ) ;
2017-02-08 07:54:23 -08:00
}
2017-02-08 08:37:14 -08:00
ret = deflateEnd ( & strm ) ;
2017-05-16 17:32:33 -07:00
if ( ret ! = Z_OK )
EXM_THROW ( 79 , " zstd: %s: deflateEnd error %d \n " , srcFileName , ret ) ;
2017-02-08 07:54:23 -08:00
* readsize = inFileSize ;
return outFileSize ;
}
# endif
2017-03-13 18:11:07 -07:00
# ifdef ZSTD_LZMACOMPRESS
2018-09-19 14:49:13 -07:00
static unsigned long long
FIO_compressLzmaFrame ( cRess_t * ress ,
const char * srcFileName , U64 const srcFileSize ,
int compressionLevel , U64 * readsize , int plain_lzma )
2017-03-13 18:11:07 -07:00
{
unsigned long long inFileSize = 0 , outFileSize = 0 ;
lzma_stream strm = LZMA_STREAM_INIT ;
lzma_action action = LZMA_RUN ;
lzma_ret ret ;
if ( compressionLevel < 0 ) compressionLevel = 0 ;
if ( compressionLevel > 9 ) compressionLevel = 9 ;
if ( plain_lzma ) {
lzma_options_lzma opt_lzma ;
2017-05-16 17:32:33 -07:00
if ( lzma_lzma_preset ( & opt_lzma , compressionLevel ) )
EXM_THROW ( 71 , " zstd: %s: lzma_lzma_preset error " , srcFileName ) ;
2017-03-13 18:11:07 -07:00
ret = lzma_alone_encoder ( & strm , & opt_lzma ) ; /* LZMA */
2017-05-16 17:32:33 -07:00
if ( ret ! = LZMA_OK )
EXM_THROW ( 71 , " zstd: %s: lzma_alone_encoder error %d " , srcFileName , ret ) ;
2017-03-13 18:11:07 -07:00
} else {
ret = lzma_easy_encoder ( & strm , compressionLevel , LZMA_CHECK_CRC64 ) ; /* XZ */
2017-05-16 17:32:33 -07:00
if ( ret ! = LZMA_OK )
EXM_THROW ( 71 , " zstd: %s: lzma_easy_encoder error %d " , srcFileName , ret ) ;
2017-03-13 18:11:07 -07:00
}
strm . next_in = 0 ;
strm . avail_in = 0 ;
2017-06-23 16:54:16 -07:00
strm . next_out = ( BYTE * ) ress - > dstBuffer ;
2017-03-13 18:11:07 -07:00
strm . avail_out = ress - > dstBufferSize ;
while ( 1 ) {
if ( strm . avail_in = = 0 ) {
size_t const inSize = fread ( ress - > srcBuffer , 1 , ress - > srcBufferSize , ress - > srcFile ) ;
if ( inSize = = 0 ) action = LZMA_FINISH ;
inFileSize + = inSize ;
2017-06-23 16:54:16 -07:00
strm . next_in = ( BYTE const * ) ress - > srcBuffer ;
2017-03-13 18:11:07 -07:00
strm . avail_in = inSize ;
}
ret = lzma_code ( & strm , action ) ;
2017-05-16 17:32:33 -07:00
if ( ret ! = LZMA_OK & & ret ! = LZMA_STREAM_END )
EXM_THROW ( 72 , " zstd: %s: lzma_code encoding error %d " , srcFileName , ret ) ;
2017-03-13 18:11:07 -07:00
{ size_t const compBytes = ress - > dstBufferSize - strm . avail_out ;
if ( compBytes ) {
2017-05-16 17:32:33 -07:00
if ( fwrite ( ress - > dstBuffer , 1 , compBytes , ress - > dstFile ) ! = compBytes )
EXM_THROW ( 73 , " Write error : cannot write to output file " ) ;
2017-03-13 18:11:07 -07:00
outFileSize + = compBytes ;
2017-06-23 16:54:16 -07:00
strm . next_out = ( BYTE * ) ress - > dstBuffer ;
2017-03-13 18:11:07 -07:00
strm . avail_out = ress - > dstBufferSize ;
2017-05-16 17:32:33 -07:00
} }
2017-10-18 11:41:52 -07:00
if ( srcFileSize = = UTIL_FILESIZE_UNKNOWN )
2017-05-16 17:32:33 -07:00
DISPLAYUPDATE ( 2 , " \r Read : %u MB ==> %.2f%% " ,
( U32 ) ( inFileSize > > 20 ) ,
( double ) outFileSize / inFileSize * 100 )
else
DISPLAYUPDATE ( 2 , " \r Read : %u / %u MB ==> %.2f%% " ,
( U32 ) ( inFileSize > > 20 ) , ( U32 ) ( srcFileSize > > 20 ) ,
( double ) outFileSize / inFileSize * 100 ) ;
2017-03-13 18:11:07 -07:00
if ( ret = = LZMA_STREAM_END ) break ;
}
lzma_end ( & strm ) ;
* readsize = inFileSize ;
return outFileSize ;
}
# endif
2017-04-24 16:48:25 -07:00
# ifdef ZSTD_LZ4COMPRESS
2017-10-16 22:19:29 -07:00
# if LZ4_VERSION_NUMBER <= 10600
# define LZ4F_blockLinked blockLinked
# define LZ4F_max64KB max64KB
# endif
2017-04-24 16:48:25 -07:00
static int FIO_LZ4_GetBlockSize_FromBlockId ( int id ) { return ( 1 < < ( 8 + ( 2 * id ) ) ) ; }
2018-09-19 14:49:13 -07:00
static unsigned long long
FIO_compressLz4Frame ( cRess_t * ress ,
const char * srcFileName , U64 const srcFileSize ,
int compressionLevel , U64 * readsize )
2017-04-24 16:48:25 -07:00
{
2017-10-16 22:19:29 -07:00
const size_t blockSize = FIO_LZ4_GetBlockSize_FromBlockId ( LZ4F_max64KB ) ;
2017-04-24 16:48:25 -07:00
unsigned long long inFileSize = 0 , outFileSize = 0 ;
LZ4F_preferences_t prefs ;
2017-04-25 11:00:54 -07:00
LZ4F_compressionContext_t ctx ;
2017-04-24 16:48:25 -07:00
LZ4F_errorCode_t const errorCode = LZ4F_createCompressionContext ( & ctx , LZ4F_VERSION ) ;
2017-05-16 17:32:33 -07:00
if ( LZ4F_isError ( errorCode ) )
EXM_THROW ( 31 , " zstd: failed to create lz4 compression context " ) ;
2017-04-24 16:48:25 -07:00
memset ( & prefs , 0 , sizeof ( prefs ) ) ;
2017-10-16 22:19:29 -07:00
assert ( blockSize < = ress - > srcBufferSize ) ;
2017-04-26 10:17:38 -07:00
2017-04-24 16:48:25 -07:00
prefs . autoFlush = 1 ;
prefs . compressionLevel = compressionLevel ;
2017-10-16 22:19:29 -07:00
prefs . frameInfo . blockMode = LZ4F_blockLinked ;
prefs . frameInfo . blockSizeID = LZ4F_max64KB ;
2017-04-25 11:00:54 -07:00
prefs . frameInfo . contentChecksumFlag = ( contentChecksum_t ) g_checksumFlag ;
# if LZ4_VERSION_NUMBER >= 10600
2017-10-17 16:14:25 -07:00
prefs . frameInfo . contentSize = ( srcFileSize = = UTIL_FILESIZE_UNKNOWN ) ? 0 : srcFileSize ;
2017-04-25 11:00:54 -07:00
# endif
2017-12-04 11:26:59 -08:00
assert ( LZ4F_compressBound ( blockSize , & prefs ) < = ress - > dstBufferSize ) ;
2017-04-24 16:48:25 -07:00
2017-10-16 22:19:29 -07:00
{
2017-04-24 16:48:25 -07:00
size_t readSize ;
size_t headerSize = LZ4F_compressBegin ( ctx , ress - > dstBuffer , ress - > dstBufferSize , & prefs ) ;
2017-05-16 17:32:33 -07:00
if ( LZ4F_isError ( headerSize ) )
EXM_THROW ( 33 , " File header generation failed : %s " ,
LZ4F_getErrorName ( headerSize ) ) ;
2017-10-17 16:14:25 -07:00
if ( fwrite ( ress - > dstBuffer , 1 , headerSize , ress - > dstFile ) ! = headerSize )
EXM_THROW ( 34 , " Write error : cannot write header " ) ;
2017-04-24 16:48:25 -07:00
outFileSize + = headerSize ;
/* Read first block */
readSize = fread ( ress - > srcBuffer , ( size_t ) 1 , ( size_t ) blockSize , ress - > srcFile ) ;
inFileSize + = readSize ;
/* Main Loop */
while ( readSize > 0 ) {
size_t outSize ;
/* Compress Block */
outSize = LZ4F_compressUpdate ( ctx , ress - > dstBuffer , ress - > dstBufferSize , ress - > srcBuffer , readSize , NULL ) ;
2017-05-16 17:32:33 -07:00
if ( LZ4F_isError ( outSize ) )
EXM_THROW ( 35 , " zstd: %s: lz4 compression failed : %s " ,
srcFileName , LZ4F_getErrorName ( outSize ) ) ;
2017-04-24 16:48:25 -07:00
outFileSize + = outSize ;
2017-10-18 11:41:52 -07:00
if ( srcFileSize = = UTIL_FILESIZE_UNKNOWN )
2017-05-16 17:32:33 -07:00
DISPLAYUPDATE ( 2 , " \r Read : %u MB ==> %.2f%% " ,
( U32 ) ( inFileSize > > 20 ) ,
( double ) outFileSize / inFileSize * 100 )
else
DISPLAYUPDATE ( 2 , " \r Read : %u / %u MB ==> %.2f%% " ,
( U32 ) ( inFileSize > > 20 ) , ( U32 ) ( srcFileSize > > 20 ) ,
( double ) outFileSize / inFileSize * 100 ) ;
2017-04-24 16:48:25 -07:00
/* Write Block */
{ size_t const sizeCheck = fwrite ( ress - > dstBuffer , 1 , outSize , ress - > dstFile ) ;
if ( sizeCheck ! = outSize ) EXM_THROW ( 36 , " Write error : cannot write compressed block " ) ; }
/* Read next block */
readSize = fread ( ress - > srcBuffer , ( size_t ) 1 , ( size_t ) blockSize , ress - > srcFile ) ;
inFileSize + = readSize ;
}
if ( ferror ( ress - > srcFile ) ) EXM_THROW ( 37 , " Error reading %s " , srcFileName ) ;
/* End of Stream mark */
headerSize = LZ4F_compressEnd ( ctx , ress - > dstBuffer , ress - > dstBufferSize , NULL ) ;
2017-05-16 17:32:33 -07:00
if ( LZ4F_isError ( headerSize ) )
EXM_THROW ( 38 , " zstd: %s: lz4 end of file generation failed : %s " ,
srcFileName , LZ4F_getErrorName ( headerSize ) ) ;
2017-04-24 16:48:25 -07:00
{ size_t const sizeCheck = fwrite ( ress - > dstBuffer , 1 , headerSize , ress - > dstFile ) ;
if ( sizeCheck ! = headerSize ) EXM_THROW ( 39 , " Write error : cannot write end of stream " ) ; }
outFileSize + = headerSize ;
}
* readsize = inFileSize ;
LZ4F_freeCompressionContext ( ctx ) ;
return outFileSize ;
}
# endif
2017-03-13 18:11:07 -07:00
2018-02-02 14:24:56 -08:00
static unsigned long long
FIO_compressZstdFrame ( const cRess_t * ressPtr ,
const char * srcFileName , U64 fileSize ,
int compressionLevel , U64 * readsize )
2015-12-16 17:23:58 -08:00
{
2018-02-02 14:24:56 -08:00
cRess_t const ress = * ressPtr ;
2016-05-07 13:43:40 -07:00
FILE * const srcFile = ress . srcFile ;
FILE * const dstFile = ress . dstFile ;
2015-12-16 17:23:58 -08:00
U64 compressedfilesize = 0 ;
2017-12-14 13:00:20 -08:00
ZSTD_EndDirective directive = ZSTD_e_continue ;
2018-08-09 17:44:30 -07:00
2018-08-11 20:48:06 -07:00
/* stats */
2018-09-19 15:09:45 -07:00
ZSTD_frameProgression previous_zfp_update = { 0 , 0 , 0 , 0 , 0 , 0 } ;
ZSTD_frameProgression previous_zfp_correction = { 0 , 0 , 0 , 0 , 0 , 0 } ;
2018-08-09 17:44:30 -07:00
typedef enum { noChange , slower , faster } speedChange_e ;
speedChange_e speedChange = noChange ;
2018-08-17 18:11:54 -07:00
unsigned flushWaiting = 0 ;
2018-08-11 20:48:06 -07:00
unsigned inputPresented = 0 ;
2018-08-09 15:51:30 -07:00
unsigned inputBlocked = 0 ;
unsigned lastJobID = 0 ;
2018-02-02 14:24:56 -08:00
DISPLAYLEVEL ( 6 , " compression using zstd format \n " ) ;
2017-02-08 07:54:23 -08:00
2015-12-16 17:23:58 -08:00
/* init */
2018-06-14 16:24:18 -07:00
if ( fileSize ! = UTIL_FILESIZE_UNKNOWN ) {
CHECK ( ZSTD_CCtx_setPledgedSrcSize ( ress . cctx , fileSize ) ) ;
}
2018-09-19 15:09:45 -07:00
( void ) srcFileName ;
2015-12-16 17:23:58 -08:00
/* Main compression loop */
2017-12-14 13:00:20 -08:00
do {
2018-08-09 15:51:30 -07:00
size_t stillToFlush ;
2015-12-16 17:23:58 -08:00
/* Fill input Buffer */
2016-03-26 12:52:14 -07:00
size_t const inSize = fread ( ress . srcBuffer , ( size_t ) 1 , ress . srcBufferSize , srcFile ) ;
2017-05-17 18:36:15 -07:00
ZSTD_inBuffer inBuff = { ress . srcBuffer , inSize , 0 } ;
2018-01-19 10:01:40 -08:00
DISPLAYLEVEL ( 6 , " fread %u bytes from source \n " , ( U32 ) inSize ) ;
2018-02-02 14:24:56 -08:00
* readsize + = inSize ;
2015-12-16 17:23:58 -08:00
2018-02-02 14:24:56 -08:00
if ( ( inSize = = 0 ) | | ( * readsize = = fileSize ) )
2017-12-14 13:00:20 -08:00
directive = ZSTD_e_end ;
2018-08-09 15:51:30 -07:00
stillToFlush = 1 ;
2018-08-09 15:16:31 -07:00
while ( ( inBuff . pos ! = inBuff . size ) /* input buffer must be entirely ingested */
2018-08-09 15:51:30 -07:00
| | ( directive = = ZSTD_e_end & & stillToFlush ! = 0 ) ) {
2018-08-09 17:44:30 -07:00
2018-08-09 15:51:30 -07:00
size_t const oldIPos = inBuff . pos ;
2017-05-17 18:36:15 -07:00
ZSTD_outBuffer outBuff = { ress . dstBuffer , ress . dstBufferSize , 0 } ;
2018-08-17 18:11:54 -07:00
size_t const toFlushNow = ZSTD_toFlushNow ( ress . cctx ) ;
2018-08-09 15:51:30 -07:00
CHECK_V ( stillToFlush , ZSTD_compress_generic ( ress . cctx , & outBuff , & inBuff , directive ) ) ;
/* count stats */
2018-08-11 20:48:06 -07:00
inputPresented + + ;
2018-09-19 14:49:13 -07:00
if ( oldIPos = = inBuff . pos ) inputBlocked + + ; /* input buffer is full and can't take any more : input speed is faster than consumption rate */
2018-08-17 18:11:54 -07:00
if ( ! toFlushNow ) flushWaiting = 1 ;
2017-05-17 18:36:15 -07:00
/* Write compressed stream */
2018-08-09 15:51:30 -07:00
DISPLAYLEVEL ( 6 , " ZSTD_compress_generic(end:%u) => input pos(%u)<=(%u)size ; output generated %u bytes \n " ,
2018-01-19 10:01:40 -08:00
( U32 ) directive , ( U32 ) inBuff . pos , ( U32 ) inBuff . size , ( U32 ) outBuff . pos ) ;
2017-05-17 18:36:15 -07:00
if ( outBuff . pos ) {
size_t const sizeCheck = fwrite ( ress . dstBuffer , 1 , outBuff . pos , dstFile ) ;
2018-09-19 14:49:13 -07:00
if ( sizeCheck ! = outBuff . pos )
2018-02-02 14:24:56 -08:00
EXM_THROW ( 25 , " Write error : cannot write compressed block " ) ;
2017-05-17 18:36:15 -07:00
compressedfilesize + = outBuff . pos ;
2017-12-14 13:00:20 -08:00
}
2018-08-09 17:44:30 -07:00
/* display notification; and adapt compression level */
2018-01-19 10:01:40 -08:00
if ( READY_FOR_UPDATE ( ) ) {
ZSTD_frameProgression const zfp = ZSTD_getFrameProgression ( ress . cctx ) ;
2018-03-22 17:49:46 -07:00
double const cShare = ( double ) zfp . produced / ( zfp . consumed + ! zfp . consumed /*avoid div0*/ ) * 100 ;
2018-08-09 15:51:30 -07:00
2018-09-19 15:09:45 -07:00
/* display progress notifications */
if ( g_displayLevel > = 3 ) {
DISPLAYUPDATE ( 3 , " \r (L%i) Buffered :%4u MB - Consumed :%4u MB - Compressed :%4u MB => %.2f%% " ,
compressionLevel ,
( U32 ) ( ( zfp . ingested - zfp . consumed ) > > 20 ) ,
( U32 ) ( zfp . consumed > > 20 ) ,
( U32 ) ( zfp . produced > > 20 ) ,
cShare ) ;
} else { /* summarized notifications if == 2; */
DISPLAYLEVEL ( 2 , " \r Read : %u " , ( U32 ) ( zfp . consumed > > 20 ) ) ;
if ( fileSize ! = UTIL_FILESIZE_UNKNOWN )
DISPLAYLEVEL ( 2 , " / %u " , ( U32 ) ( fileSize > > 20 ) ) ;
DISPLAYLEVEL ( 2 , " MB ==> %2.f%% " , cShare ) ;
DELAY_NEXT_UPDATE ( ) ;
}
2018-08-09 17:44:30 -07:00
2018-09-19 15:09:45 -07:00
/* adaptive mode : statistics measurement and speed correction */
if ( g_adaptiveMode ) {
2018-09-19 14:49:13 -07:00
2018-09-19 15:09:45 -07:00
/* check output speed */
if ( zfp . currentJobID > 1 ) { /* only possible if nbWorkers >= 1 */
2018-08-09 17:44:30 -07:00
2018-09-19 15:09:45 -07:00
unsigned long long newlyProduced = zfp . produced - previous_zfp_update . produced ;
unsigned long long newlyFlushed = zfp . flushed - previous_zfp_update . flushed ;
assert ( zfp . produced > = previous_zfp_update . produced ) ;
assert ( g_nbWorkers > = 1 ) ;
2018-08-09 17:44:30 -07:00
2018-09-21 16:35:43 -07:00
/* test if compression is blocked
* either because output is slow and all buffers are full
* or because input is slow and no job can start while waiting for at least one buffer to be filled .
* note : excluse starting part , since currentJobID > 1 */
if ( ( zfp . consumed = = previous_zfp_update . consumed ) /* no data compressed : no data available, or no more buffer to compress to, OR compression is really slow (compression of a single block is slower than update rate)*/
& & ( zfp . nbActiveWorkers = = 0 ) /* confirmed : no compression ongoing */
2018-09-19 15:09:45 -07:00
) {
DISPLAYLEVEL ( 6 , " all buffers full : compression stopped => slow down \n " )
speedChange = slower ;
}
previous_zfp_update = zfp ;
if ( ( newlyProduced > ( newlyFlushed * 9 / 8 ) ) /* compression produces more data than output can flush (though production can be spiky, due to work unit : (N==4)*block sizes) */
& & ( flushWaiting = = 0 ) /* flush speed was never slowed by lack of production, so it's operating at max capacity */
) {
DISPLAYLEVEL ( 6 , " compression faster than flush (%llu > %llu), and flushed was never slowed down by lack of production => slow down \n " , newlyProduced , newlyFlushed ) ;
2018-08-09 17:44:30 -07:00
speedChange = slower ;
}
2018-09-19 15:09:45 -07:00
flushWaiting = 0 ;
2018-08-09 17:44:30 -07:00
}
2018-09-19 15:09:45 -07:00
/* course correct only if there is at least one new job completed */
if ( zfp . currentJobID > lastJobID ) {
DISPLAYLEVEL ( 6 , " compression level adaptation check \n " )
/* check input speed */
if ( zfp . currentJobID > g_nbWorkers + 1 ) { /* warm up period, to fill all workers */
if ( inputBlocked < = 0 ) {
DISPLAYLEVEL ( 6 , " input is never blocked => input is slower than ingestion \n " ) ;
speedChange = slower ;
} else if ( speedChange = = noChange ) {
unsigned long long newlyIngested = zfp . ingested - previous_zfp_correction . ingested ;
unsigned long long newlyConsumed = zfp . consumed - previous_zfp_correction . consumed ;
unsigned long long newlyProduced = zfp . produced - previous_zfp_correction . produced ;
unsigned long long newlyFlushed = zfp . flushed - previous_zfp_correction . flushed ;
previous_zfp_correction = zfp ;
assert ( inputPresented > 0 ) ;
DISPLAYLEVEL ( 6 , " input blocked %u/%u(%.2f) - ingested:%u vs %u:consumed - flushed:%u vs %u:produced \n " ,
inputBlocked , inputPresented , ( double ) inputBlocked / inputPresented * 100 ,
( U32 ) newlyIngested , ( U32 ) newlyConsumed ,
( U32 ) newlyFlushed , ( U32 ) newlyProduced ) ;
if ( ( inputBlocked > inputPresented / 8 ) /* input is waiting often, because input buffers is full : compression or output too slow */
& & ( newlyFlushed * 33 / 32 > newlyProduced ) /* flush everything that is produced */
& & ( newlyIngested * 33 / 32 > newlyConsumed ) /* input speed as fast or faster than compression speed */
) {
DISPLAYLEVEL ( 6 , " recommend faster as in(%llu) >= (%llu)comp(%llu) <= out(%llu) \n " ,
newlyIngested , newlyConsumed , newlyProduced , newlyFlushed ) ;
speedChange = faster ;
}
}
inputBlocked = 0 ;
inputPresented = 0 ;
}
2018-08-11 20:48:06 -07:00
if ( speedChange = = slower ) {
DISPLAYLEVEL ( 6 , " slower speed , higher compression \n " )
compressionLevel + + ;
2018-08-17 16:01:56 -07:00
if ( compressionLevel > ZSTD_maxCLevel ( ) ) compressionLevel = ZSTD_maxCLevel ( ) ;
2018-09-24 18:16:08 -07:00
if ( compressionLevel > g_maxAdaptLevel ) compressionLevel = g_maxAdaptLevel ;
compressionLevel + = ( compressionLevel = = 0 ) ; /* skip 0 */
2018-08-11 20:48:06 -07:00
ZSTD_CCtx_setParameter ( ress . cctx , ZSTD_p_compressionLevel , ( unsigned ) compressionLevel ) ;
}
if ( speedChange = = faster ) {
2018-08-17 16:01:56 -07:00
DISPLAYLEVEL ( 6 , " faster speed , lighter compression \n " )
2018-08-11 20:48:06 -07:00
compressionLevel - - ;
2018-09-24 18:16:08 -07:00
if ( compressionLevel < g_minAdaptLevel ) compressionLevel = g_minAdaptLevel ;
2018-08-11 20:48:06 -07:00
compressionLevel - = ( compressionLevel = = 0 ) ; /* skip 0 */
ZSTD_CCtx_setParameter ( ress . cctx , ZSTD_p_compressionLevel , ( unsigned ) compressionLevel ) ;
}
2018-08-09 17:44:30 -07:00
speedChange = noChange ;
2018-08-09 15:51:30 -07:00
2018-09-19 15:09:45 -07:00
lastJobID = zfp . currentJobID ;
} /* if (zfp.currentJobID > lastJobID) */
} /* if (g_adaptiveMode) */
} /* if (READY_FOR_UPDATE()) */
} /* while ((inBuff.pos != inBuff.size) */
2017-12-14 13:00:20 -08:00
} while ( directive ! = ZSTD_e_end ) ;
2015-12-16 17:23:58 -08:00
2018-07-17 14:57:27 -07:00
if ( ferror ( srcFile ) ) {
EXM_THROW ( 26 , " Read error : I/O error " ) ;
}
if ( fileSize ! = UTIL_FILESIZE_UNKNOWN & & * readsize ! = fileSize ) {
EXM_THROW ( 27 , " Read error : Incomplete read : %llu / %llu B " ,
( unsigned long long ) * readsize , ( unsigned long long ) fileSize ) ;
}
2018-02-02 14:24:56 -08:00
return compressedfilesize ;
}
/*! FIO_compressFilename_internal() :
* same as FIO_compressFilename_extRess ( ) , with ` ress . desFile ` already opened .
* @ return : 0 : compression completed correctly ,
* 1 : missing or pb opening srcFileName
*/
static int
FIO_compressFilename_internal ( cRess_t ress ,
const char * dstFileName , const char * srcFileName ,
int compressionLevel )
{
U64 readsize = 0 ;
U64 compressedfilesize = 0 ;
U64 const fileSize = UTIL_getFileSize ( srcFileName ) ;
DISPLAYLEVEL ( 5 , " %s: %u bytes \n " , srcFileName , ( U32 ) fileSize ) ;
/* compression format selection */
switch ( g_compressionType ) {
default :
case FIO_zstdCompression :
compressedfilesize = FIO_compressZstdFrame ( & ress , srcFileName , fileSize , compressionLevel , & readsize ) ;
break ;
case FIO_gzipCompression :
# ifdef ZSTD_GZCOMPRESS
compressedfilesize = FIO_compressGzFrame ( & ress , srcFileName , fileSize , compressionLevel , & readsize ) ;
# else
( void ) compressionLevel ;
EXM_THROW ( 20 , " zstd: %s: file cannot be compressed as gzip (zstd compiled without ZSTD_GZCOMPRESS) -- ignored \n " ,
srcFileName ) ;
# endif
break ;
case FIO_xzCompression :
case FIO_lzmaCompression :
# ifdef ZSTD_LZMACOMPRESS
compressedfilesize = FIO_compressLzmaFrame ( & ress , srcFileName , fileSize , compressionLevel , & readsize , g_compressionType = = FIO_lzmaCompression ) ;
# else
( void ) compressionLevel ;
EXM_THROW ( 20 , " zstd: %s: file cannot be compressed as xz/lzma (zstd compiled without ZSTD_LZMACOMPRESS) -- ignored \n " ,
srcFileName ) ;
# endif
break ;
case FIO_lz4Compression :
# ifdef ZSTD_LZ4COMPRESS
compressedfilesize = FIO_compressLz4Frame ( & ress , srcFileName , fileSize , compressionLevel , & readsize ) ;
# else
( void ) compressionLevel ;
EXM_THROW ( 20 , " zstd: %s: file cannot be compressed as lz4 (zstd compiled without ZSTD_LZ4COMPRESS) -- ignored \n " ,
srcFileName ) ;
# endif
break ;
}
2015-12-16 17:23:58 -08:00
/* Status */
DISPLAYLEVEL ( 2 , " \r %79s \r " , " " ) ;
2018-02-02 14:24:56 -08:00
DISPLAYLEVEL ( 2 , " %-20s :%6.2f%% (%6llu => %6llu bytes, %s) \n " ,
srcFileName ,
2018-01-13 13:18:57 -08:00
( double ) compressedfilesize / ( readsize + ( ! readsize ) /*avoid div by zero*/ ) * 100 ,
2016-07-13 10:30:40 -07:00
( unsigned long long ) readsize , ( unsigned long long ) compressedfilesize ,
dstFileName ) ;
2015-12-16 17:23:58 -08:00
return 0 ;
}
2018-10-01 17:16:34 -07:00
/*! FIO_compressFilename_dstFile() :
* open dstFileName , or pass - through if ress . dstFile ! = NULL ,
* then start compression with FIO_compressFilename_internal ( ) .
* Manages source removal ( - - rm ) and file permissions transfer .
* note : ress . srcFile must be ! = NULL ,
* so reach this function through FIO_compressFilename_srcFile ( ) .
* @ return : 0 : compression completed correctly ,
* 1 : pb
*/
static int FIO_compressFilename_dstFile ( cRess_t ress ,
const char * dstFileName ,
const char * srcFileName ,
int compressionLevel )
{
int closeDstFile = 0 ;
int result ;
stat_t statbuf ;
int transfer_permissions = 0 ;
assert ( ress . srcFile ! = NULL ) ;
if ( ress . dstFile = = NULL ) {
closeDstFile = 1 ;
DISPLAYLEVEL ( 6 , " FIO_compressFilename_dstFile: opening dst: %s " , dstFileName ) ;
ress . dstFile = FIO_openDstFile ( dstFileName ) ;
if ( ress . dstFile = = NULL ) return 1 ; /* could not open dstFileName */
/* Must only be added after FIO_openDstFile() succeeds.
* Otherwise we may delete the destination file if it already exists ,
* and the user presses Ctrl - C when asked if they wish to overwrite .
*/
addHandler ( dstFileName ) ;
if ( strcmp ( srcFileName , stdinmark )
& & UTIL_getFileStat ( srcFileName , & statbuf ) )
transfer_permissions = 1 ;
}
result = FIO_compressFilename_internal ( ress , dstFileName , srcFileName , compressionLevel ) ;
if ( closeDstFile ) {
FILE * const dstFile = ress . dstFile ;
ress . dstFile = NULL ;
clearHandler ( ) ;
if ( fclose ( dstFile ) ) { /* error closing dstFile */
DISPLAYLEVEL ( 1 , " zstd: %s: %s \n " , dstFileName , strerror ( errno ) ) ;
result = 1 ;
}
if ( ( result ! = 0 ) /* operation failure */
& & strcmp ( dstFileName , nulmark ) /* special case : don't remove() /dev/null */
& & strcmp ( dstFileName , stdoutmark ) /* special case : don't remove() stdout */
) {
FIO_remove ( dstFileName ) ; /* remove compression artefact; note don't do anything special if remove() fails */
} else if ( strcmp ( dstFileName , stdoutmark )
& & strcmp ( dstFileName , nulmark )
& & transfer_permissions ) {
UTIL_setFileStat ( dstFileName , & statbuf ) ;
}
}
return result ;
}
2016-07-01 16:05:31 -07:00
/*! FIO_compressFilename_srcFile() :
2016-02-15 11:37:23 -08:00
* @ return : 0 : compression completed correctly ,
* 1 : missing or pb opening srcFileName
*/
2018-10-01 17:16:34 -07:00
static int
FIO_compressFilename_srcFile ( cRess_t ress ,
const char * dstFileName ,
const char * srcFileName ,
int compressionLevel )
2016-02-15 11:37:23 -08:00
{
int result ;
/* File check */
2016-06-09 13:59:51 -07:00
if ( UTIL_isDirectory ( srcFileName ) ) {
DISPLAYLEVEL ( 1 , " zstd: %s is a directory -- ignored \n " , srcFileName ) ;
return 1 ;
}
2017-01-25 04:02:33 -08:00
2016-02-15 11:37:23 -08:00
ress . srcFile = FIO_openSrcFile ( srcFileName ) ;
2018-10-01 17:16:34 -07:00
if ( ress . srcFile = = NULL ) return 1 ; /* srcFile could not be opened */
2016-02-15 11:37:23 -08:00
2018-10-01 17:16:34 -07:00
result = FIO_compressFilename_dstFile ( ress , dstFileName , srcFileName , compressionLevel ) ;
2016-02-15 11:37:23 -08:00
fclose ( ress . srcFile ) ;
2018-10-01 17:16:34 -07:00
ress . srcFile = NULL ;
if ( g_removeSrcFile /* --rm */
& & result = = 0 /* success */
& & strcmp ( srcFileName , stdinmark ) /* exception : don't erase stdin */
) {
2017-11-17 16:38:56 -08:00
/* We must clear the handler, since after this point calling it would
* delete both the source and destination files .
*/
clearHandler ( ) ;
2018-01-05 11:44:45 -08:00
if ( FIO_remove ( srcFileName ) )
2017-02-27 15:57:50 -08:00
EXM_THROW ( 1 , " zstd: %s: %s " , srcFileName , strerror ( errno ) ) ;
}
2016-02-15 11:37:23 -08:00
return result ;
}
2015-12-17 05:09:55 -08:00
int FIO_compressFilename ( const char * dstFileName , const char * srcFileName ,
2018-08-13 13:02:03 -07:00
const char * dictFileName , int compressionLevel ,
ZSTD_compressionParameters comprParams )
2015-01-23 16:58:16 -08:00
{
2016-05-30 17:29:45 -07:00
clock_t const start = clock ( ) ;
2017-10-17 16:14:25 -07:00
U64 const fileSize = UTIL_getFileSize ( srcFileName ) ;
U64 const srcSize = ( fileSize = = UTIL_FILESIZE_UNKNOWN ) ? ZSTD_CONTENTSIZE_UNKNOWN : fileSize ;
2015-01-23 16:58:16 -08:00
2017-10-02 12:29:25 -07:00
cRess_t const ress = FIO_createCResources ( dictFileName , compressionLevel , srcSize , comprParams ) ;
2018-10-01 17:16:34 -07:00
int const result = FIO_compressFilename_srcFile ( ress , dstFileName , srcFileName , compressionLevel ) ;
2015-01-23 16:58:16 -08:00
2016-07-01 16:05:31 -07:00
double const seconds = ( double ) ( clock ( ) - start ) / CLOCKS_PER_SEC ;
DISPLAYLEVEL ( 4 , " Completed in %.2f sec \n " , seconds ) ;
FIO_freeCResources ( ress ) ;
return result ;
2015-01-23 16:58:16 -08:00
}
2017-06-20 12:43:10 -07:00
2018-10-01 17:16:34 -07:00
/* FIO_determineCompressedName() :
* create a destination filename for compressed srcFileName .
* @ return a pointer to it .
* This function never returns an error ( it may abort ( ) in case of pb )
*/
static const char *
FIO_determineCompressedName ( const char * srcFileName , const char * suffix )
{
static size_t dfnbCapacity = 0 ;
static char * dstFileNameBuffer = NULL ; /* using static allocation : this function cannot be multi-threaded */
size_t const sfnSize = strlen ( srcFileName ) ;
size_t const suffixSize = strlen ( suffix ) ;
2018-10-10 17:06:25 -07:00
if ( dfnbCapacity < = sfnSize + suffixSize + 1 ) {
/* resize buffer for dstName */
2018-10-01 17:16:34 -07:00
free ( dstFileNameBuffer ) ;
dfnbCapacity = sfnSize + suffixSize + 30 ;
dstFileNameBuffer = ( char * ) malloc ( dfnbCapacity ) ;
if ( ! dstFileNameBuffer ) {
EXM_THROW ( 30 , " zstd: %s " , strerror ( errno ) ) ;
} }
2018-10-02 15:59:11 -07:00
assert ( dstFileNameBuffer ! = NULL ) ;
2018-10-10 17:06:25 -07:00
memcpy ( dstFileNameBuffer , srcFileName , sfnSize ) ;
memcpy ( dstFileNameBuffer + sfnSize , suffix , suffixSize + 1 /* Include terminating null */ ) ;
2018-10-01 17:16:34 -07:00
return dstFileNameBuffer ;
}
/* FIO_compressMultipleFilenames() :
* compress nbFiles files
* into one destination ( outFileName )
* or into one file each ( outFileName = = NULL , but suffix ! = NULL ) .
*/
2015-12-17 05:09:55 -08:00
int FIO_compressMultipleFilenames ( const char * * inFileNamesTable , unsigned nbFiles ,
2017-12-12 18:32:50 -08:00
const char * outFileName , const char * suffix ,
2016-12-13 04:24:59 -08:00
const char * dictFileName , int compressionLevel ,
2018-08-13 13:02:03 -07:00
ZSTD_compressionParameters comprParams )
2015-12-16 17:23:58 -08:00
{
2018-10-01 17:16:34 -07:00
int error = 0 ;
2017-10-17 16:14:25 -07:00
U64 const firstFileSize = UTIL_getFileSize ( inFileNamesTable [ 0 ] ) ;
U64 const firstSrcSize = ( firstFileSize = = UTIL_FILESIZE_UNKNOWN ) ? ZSTD_CONTENTSIZE_UNKNOWN : firstFileSize ;
U64 const srcSize = ( nbFiles ! = 1 ) ? ZSTD_CONTENTSIZE_UNKNOWN : firstSrcSize ;
2017-10-02 12:29:25 -07:00
cRess_t ress = FIO_createCResources ( dictFileName , compressionLevel , srcSize , comprParams ) ;
2015-12-16 17:23:58 -08:00
/* init */
2018-10-01 17:16:34 -07:00
assert ( outFileName ! = NULL | | suffix ! = NULL ) ;
2015-12-16 17:23:58 -08:00
2018-10-01 17:16:34 -07:00
if ( outFileName ! = NULL ) { /* output into a single destination (stdout typically) */
2017-12-12 18:32:50 -08:00
ress . dstFile = FIO_openDstFile ( outFileName ) ;
2018-10-01 17:16:34 -07:00
if ( ress . dstFile = = NULL ) { /* could not open outFileName */
error = 1 ;
2018-01-02 07:17:32 -08:00
} else {
2018-10-01 17:16:34 -07:00
unsigned u ;
2018-01-02 07:17:32 -08:00
for ( u = 0 ; u < nbFiles ; u + + )
2018-10-01 17:16:34 -07:00
error | = FIO_compressFilename_srcFile ( ress , outFileName , inFileNamesTable [ u ] , compressionLevel ) ;
2018-01-02 07:17:32 -08:00
if ( fclose ( ress . dstFile ) )
2018-10-01 17:16:34 -07:00
EXM_THROW ( 29 , " Write error : cannot properly close %s " , outFileName ) ;
ress . dstFile = NULL ;
2018-01-02 07:17:32 -08:00
}
2016-02-15 11:37:23 -08:00
} else {
2016-05-07 13:43:40 -07:00
unsigned u ;
2016-02-12 06:56:46 -08:00
for ( u = 0 ; u < nbFiles ; u + + ) {
2018-10-01 17:16:34 -07:00
const char * const srcFileName = inFileNamesTable [ u ] ;
const char * const dstFileName = FIO_determineCompressedName ( srcFileName , suffix ) ; /* cannot fail */
error | = FIO_compressFilename_srcFile ( ress , dstFileName , srcFileName , compressionLevel ) ;
2016-02-15 11:37:23 -08:00
} }
2015-12-16 17:23:58 -08:00
FIO_freeCResources ( ress ) ;
2018-10-01 17:16:34 -07:00
return error ;
2015-12-16 17:23:58 -08:00
}
2016-05-07 13:43:40 -07:00
# endif /* #ifndef ZSTD_NOCOMPRESS */
2016-04-22 04:59:05 -07:00
2015-12-16 17:23:58 -08:00
2016-04-22 09:22:30 -07:00
# ifndef ZSTD_NODECOMPRESS
2015-12-16 17:23:58 -08:00
/* **************************************************************************
2017-08-18 18:30:41 -07:00
* Decompression
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2015-12-17 11:30:14 -08:00
typedef struct {
void * srcBuffer ;
size_t srcBufferSize ;
2017-09-18 13:41:54 -07:00
size_t srcBufferLoaded ;
2015-12-17 11:30:14 -08:00
void * dstBuffer ;
size_t dstBufferSize ;
2016-08-13 14:45:45 -07:00
ZSTD_DStream * dctx ;
2016-02-12 09:33:26 -08:00
FILE * dstFile ;
2015-12-17 11:30:14 -08:00
} dRess_t ;
static dRess_t FIO_createDResources ( const char * dictFileName )
{
dRess_t ress ;
2016-07-13 08:38:39 -07:00
memset ( & ress , 0 , sizeof ( ress ) ) ;
2015-12-17 11:30:14 -08:00
2016-07-13 08:38:39 -07:00
/* Allocation */
2016-08-13 14:45:45 -07:00
ress . dctx = ZSTD_createDStream ( ) ;
if ( ress . dctx = = NULL ) EXM_THROW ( 60 , " Can't create ZSTD_DStream " ) ;
2017-09-25 14:26:26 -07:00
CHECK ( ZSTD_setDStreamParameter ( ress . dctx , DStream_p_maxWindowSize , g_memLimit ) ) ;
2016-08-13 14:45:45 -07:00
ress . srcBufferSize = ZSTD_DStreamInSize ( ) ;
2015-12-17 11:30:14 -08:00
ress . srcBuffer = malloc ( ress . srcBufferSize ) ;
2016-08-13 14:45:45 -07:00
ress . dstBufferSize = ZSTD_DStreamOutSize ( ) ;
2015-12-17 11:30:14 -08:00
ress . dstBuffer = malloc ( ress . dstBufferSize ) ;
2017-05-16 17:32:33 -07:00
if ( ! ress . srcBuffer | | ! ress . dstBuffer )
EXM_THROW ( 61 , " Allocation error : not enough memory " ) ;
2015-12-16 17:23:58 -08:00
2015-12-17 11:30:14 -08:00
/* dictionary */
2016-09-14 08:26:59 -07:00
{ void * dictBuffer ;
2017-04-11 14:41:02 -07:00
size_t const dictBufferSize = FIO_createDictBuffer ( & dictBuffer , dictFileName ) ;
2017-05-17 18:36:15 -07:00
CHECK ( ZSTD_initDStream_usingDict ( ress . dctx , dictBuffer , dictBufferSize ) ) ;
2016-09-14 08:26:59 -07:00
free ( dictBuffer ) ;
}
2015-12-17 11:30:14 -08:00
return ress ;
}
static void FIO_freeDResources ( dRess_t ress )
{
2017-05-17 18:36:15 -07:00
CHECK ( ZSTD_freeDStream ( ress . dctx ) ) ;
2015-12-17 11:30:14 -08:00
free ( ress . srcBuffer ) ;
free ( ress . dstBuffer ) ;
}
2016-05-23 07:56:56 -07:00
/** FIO_fwriteSparse() :
* @ return : storedSkips , to be provided to next call to FIO_fwriteSparse ( ) of LZ4IO_fwriteSparseEnd ( ) */
static unsigned FIO_fwriteSparse ( FILE * file , const void * buffer , size_t bufferSize , unsigned storedSkips )
{
const size_t * const bufferT = ( const size_t * ) buffer ; /* Buffer is supposed malloc'ed, hence aligned on size_t */
size_t bufferSizeT = bufferSize / sizeof ( size_t ) ;
const size_t * const bufferTEnd = bufferT + bufferSizeT ;
const size_t * ptrT = bufferT ;
static const size_t segmentSizeT = ( 32 KB ) / sizeof ( size_t ) ; /* 0-test re-attempted every 32 KB */
if ( ! g_sparseFileSupport ) { /* normal write */
size_t const sizeCheck = fwrite ( buffer , 1 , bufferSize , file ) ;
if ( sizeCheck ! = bufferSize ) EXM_THROW ( 70 , " Write error : cannot write decoded block " ) ;
return 0 ;
}
/* avoid int overflow */
if ( storedSkips > 1 GB ) {
2017-02-12 01:27:18 -08:00
int const seekResult = LONG_SEEK ( file , 1 GB , SEEK_CUR ) ;
2016-05-23 07:56:56 -07:00
if ( seekResult ! = 0 ) EXM_THROW ( 71 , " 1 GB skip error (sparse file support) " ) ;
storedSkips - = 1 GB ;
}
while ( ptrT < bufferTEnd ) {
size_t seg0SizeT = segmentSizeT ;
size_t nb0T ;
/* count leading zeros */
if ( seg0SizeT > bufferSizeT ) seg0SizeT = bufferSizeT ;
bufferSizeT - = seg0SizeT ;
for ( nb0T = 0 ; ( nb0T < seg0SizeT ) & & ( ptrT [ nb0T ] = = 0 ) ; nb0T + + ) ;
storedSkips + = ( unsigned ) ( nb0T * sizeof ( size_t ) ) ;
if ( nb0T ! = seg0SizeT ) { /* not all 0s */
2017-02-12 01:27:18 -08:00
int const seekResult = LONG_SEEK ( file , storedSkips , SEEK_CUR ) ;
2016-05-23 07:56:56 -07:00
if ( seekResult ) EXM_THROW ( 72 , " Sparse skip error ; try --no-sparse " ) ;
storedSkips = 0 ;
seg0SizeT - = nb0T ;
ptrT + = nb0T ;
{ size_t const sizeCheck = fwrite ( ptrT , sizeof ( size_t ) , seg0SizeT , file ) ;
2017-05-16 17:32:33 -07:00
if ( sizeCheck ! = seg0SizeT )
EXM_THROW ( 73 , " Write error : cannot write decoded block " ) ;
2016-05-23 07:56:56 -07:00
} }
ptrT + = seg0SizeT ;
}
{ static size_t const maskT = sizeof ( size_t ) - 1 ;
2017-05-16 17:32:33 -07:00
if ( bufferSize & maskT ) {
/* size not multiple of sizeof(size_t) : implies end of block */
2016-05-23 07:56:56 -07:00
const char * const restStart = ( const char * ) bufferTEnd ;
const char * restPtr = restStart ;
size_t restSize = bufferSize & maskT ;
const char * const restEnd = restStart + restSize ;
for ( ; ( restPtr < restEnd ) & & ( * restPtr = = 0 ) ; restPtr + + ) ;
storedSkips + = ( unsigned ) ( restPtr - restStart ) ;
if ( restPtr ! = restEnd ) {
2017-02-12 01:27:18 -08:00
int seekResult = LONG_SEEK ( file , storedSkips , SEEK_CUR ) ;
2017-05-16 17:32:33 -07:00
if ( seekResult )
EXM_THROW ( 74 , " Sparse skip error ; try --no-sparse " ) ;
2016-05-23 07:56:56 -07:00
storedSkips = 0 ;
{ size_t const sizeCheck = fwrite ( restPtr , 1 , restEnd - restPtr , file ) ;
2017-05-16 17:32:33 -07:00
if ( sizeCheck ! = ( size_t ) ( restEnd - restPtr ) )
EXM_THROW ( 75 , " Write error : cannot write decoded end of block " ) ;
2016-05-23 07:56:56 -07:00
} } } }
return storedSkips ;
}
static void FIO_fwriteSparseEnd ( FILE * file , unsigned storedSkips )
{
if ( storedSkips - - > 0 ) { /* implies g_sparseFileSupport>0 */
2017-02-12 01:27:18 -08:00
int const seekResult = LONG_SEEK ( file , storedSkips , SEEK_CUR ) ;
2017-03-13 18:11:07 -07:00
if ( seekResult ! = 0 ) EXM_THROW ( 69 , " Final skip error (sparse file) " ) ;
2016-05-23 07:56:56 -07:00
{ const char lastZeroByte [ 1 ] = { 0 } ;
size_t const sizeCheck = fwrite ( lastZeroByte , 1 , 1 , file ) ;
2017-05-16 17:32:33 -07:00
if ( sizeCheck ! = 1 )
EXM_THROW ( 69 , " Write error : cannot write last zero " ) ;
2016-05-23 07:56:56 -07:00
} }
}
2016-12-05 08:39:38 -08:00
/** FIO_passThrough() : just copy input into output, for compatibility with gzip -df mode
@ return : 0 ( no error ) */
2016-12-05 09:31:14 -08:00
static unsigned FIO_passThrough ( FILE * foutput , FILE * finput , void * buffer , size_t bufferSize , size_t alreadyLoaded )
2016-12-05 08:39:38 -08:00
{
size_t const blockSize = MIN ( 64 KB , bufferSize ) ;
size_t readFromInput = 1 ;
unsigned storedSkips = 0 ;
2016-12-05 09:31:14 -08:00
/* assumption : ress->srcBufferLoaded bytes already loaded and stored within buffer */
2017-07-03 13:24:50 -07:00
{ size_t const sizeCheck = fwrite ( buffer , 1 , alreadyLoaded , foutput ) ;
if ( sizeCheck ! = alreadyLoaded ) {
DISPLAYLEVEL ( 1 , " Pass-through write error \n " ) ;
return 1 ;
} }
2016-12-05 08:39:38 -08:00
while ( readFromInput ) {
readFromInput = fread ( buffer , 1 , blockSize , finput ) ;
storedSkips = FIO_fwriteSparse ( foutput , buffer , readFromInput , storedSkips ) ;
}
FIO_fwriteSparseEnd ( foutput , storedSkips ) ;
return 0 ;
}
2018-02-01 16:13:04 -08:00
/* FIO_highbit64() :
* gives position of highest bit .
* note : only works for v > 0 !
*/
static unsigned FIO_highbit64 ( unsigned long long v )
{
unsigned count = 0 ;
assert ( v ! = 0 ) ;
v > > = 1 ;
while ( v ) { v > > = 1 ; count + + ; }
return count ;
}
/* FIO_zstdErrorHelp() :
* detailed error message when requested window size is too large */
static void FIO_zstdErrorHelp ( dRess_t * ress , size_t err , char const * srcFileName )
2017-09-22 14:04:39 -07:00
{
ZSTD_frameHeader header ;
2018-02-01 16:13:04 -08:00
/* Help message only for one specific error */
if ( ZSTD_getErrorCode ( err ) ! = ZSTD_error_frameParameter_windowTooLarge )
2017-09-22 14:04:39 -07:00
return ;
2018-02-01 16:13:04 -08:00
2017-09-22 14:04:39 -07:00
/* Try to decode the frame header */
2018-02-01 16:13:04 -08:00
err = ZSTD_getFrameHeader ( & header , ress - > srcBuffer , ress - > srcBufferLoaded ) ;
if ( err = = 0 ) {
2018-02-01 20:16:00 -08:00
unsigned long long const windowSize = header . windowSize ;
2018-02-01 16:13:04 -08:00
U32 const windowLog = FIO_highbit64 ( windowSize ) + ( ( windowSize & ( windowSize - 1 ) ) ! = 0 ) ;
2017-09-22 14:04:39 -07:00
assert ( g_memLimit > 0 ) ;
DISPLAYLEVEL ( 1 , " %s : Window size larger than maximum : %llu > %u \n " ,
2018-02-01 16:13:04 -08:00
srcFileName , windowSize , g_memLimit ) ;
2017-09-22 14:04:39 -07:00
if ( windowLog < = ZSTD_WINDOWLOG_MAX ) {
2018-10-03 12:43:59 -07:00
U32 const windowMB = ( U32 ) ( ( windowSize > > 20 ) + ( ( windowSize & ( ( 1 MB ) - 1 ) ) ! = 0 ) ) ;
assert ( windowSize < ( U64 ) ( 1ULL < < 52 ) ) ; /* ensure now overflow for windowMB */
2017-09-22 14:04:39 -07:00
DISPLAYLEVEL ( 1 , " %s : Use --long=%u or --memory=%uMB \n " ,
srcFileName , windowLog , windowMB ) ;
return ;
}
}
2018-02-01 16:13:04 -08:00
DISPLAYLEVEL ( 1 , " %s : Window log larger than ZSTD_WINDOWLOG_MAX=%u; not supported \n " ,
2017-09-22 14:04:39 -07:00
srcFileName , ZSTD_WINDOWLOG_MAX ) ;
}
2016-12-05 08:39:38 -08:00
2016-03-15 04:56:03 -07:00
/** FIO_decompressFrame() :
2017-07-03 10:27:16 -07:00
* @ return : size of decoded zstd frame , or an error code
2016-03-15 04:56:03 -07:00
*/
2017-07-03 10:27:16 -07:00
# define FIO_ERROR_FRAME_DECODING ((unsigned long long)(-2))
2018-09-27 15:13:43 -07:00
static unsigned long long FIO_decompressZstdFrame ( dRess_t * ress ,
2016-12-05 08:39:38 -08:00
FILE * finput ,
2017-05-05 19:15:24 -07:00
const char * srcFileName ,
2016-11-07 14:41:21 -08:00
U64 alreadyDecoded )
2015-01-23 16:58:16 -08:00
{
2016-08-28 12:47:17 -07:00
U64 frameSize = 0 ;
2016-05-23 07:56:56 -07:00
U32 storedSkips = 0 ;
2015-01-23 16:58:16 -08:00
2017-09-29 15:54:09 -07:00
size_t const srcFileLength = strlen ( srcFileName ) ;
if ( srcFileLength > 20 ) srcFileName + = srcFileLength - 20 ; /* display last 20 characters only */
2016-12-05 08:39:38 -08:00
ZSTD_resetDStream ( ress - > dctx ) ;
2016-03-15 04:56:03 -07:00
2017-09-22 14:04:39 -07:00
/* Header loading : ensures ZSTD_getFrameHeader() will succeed */
2017-09-29 15:54:09 -07:00
{ size_t const toDecode = ZSTD_FRAMEHEADERSIZE_MAX ;
if ( ress - > srcBufferLoaded < toDecode ) {
size_t const toRead = toDecode - ress - > srcBufferLoaded ;
void * const startPosition = ( char * ) ress - > srcBuffer + ress - > srcBufferLoaded ;
ress - > srcBufferLoaded + = fread ( startPosition , 1 , toRead , finput ) ;
} }
2016-03-15 04:56:03 -07:00
/* Main decompression Loop */
2016-02-02 05:36:49 -08:00
while ( 1 ) {
2016-12-05 08:39:38 -08:00
ZSTD_inBuffer inBuff = { ress - > srcBuffer , ress - > srcBufferLoaded , 0 } ;
ZSTD_outBuffer outBuff = { ress - > dstBuffer , ress - > dstBufferSize , 0 } ;
size_t const readSizeHint = ZSTD_decompressStream ( ress - > dctx , & outBuff , & inBuff ) ;
2017-05-05 19:15:24 -07:00
if ( ZSTD_isError ( readSizeHint ) ) {
DISPLAYLEVEL ( 1 , " %s : Decoding error (36) : %s \n " ,
srcFileName , ZSTD_getErrorName ( readSizeHint ) ) ;
2017-09-22 14:04:39 -07:00
FIO_zstdErrorHelp ( ress , readSizeHint , srcFileName ) ;
2017-07-03 10:27:16 -07:00
return FIO_ERROR_FRAME_DECODING ;
2017-05-05 19:15:24 -07:00
}
2015-11-25 05:42:45 -08:00
/* Write block */
2017-01-19 16:59:56 -08:00
storedSkips = FIO_fwriteSparse ( ress - > dstFile , ress - > dstBuffer , outBuff . pos , storedSkips ) ;
2016-08-16 16:39:22 -07:00
frameSize + = outBuff . pos ;
2017-05-05 19:15:24 -07:00
DISPLAYUPDATE ( 2 , " \r %-20.20s : %u MB... " ,
srcFileName , ( U32 ) ( ( alreadyDecoded + frameSize ) > > 20 ) ) ;
2015-11-25 05:42:45 -08:00
2016-12-05 08:39:38 -08:00
if ( inBuff . pos > 0 ) {
memmove ( ress - > srcBuffer , ( char * ) ress - > srcBuffer + inBuff . pos , inBuff . size - inBuff . pos ) ;
ress - > srcBufferLoaded - = inBuff . pos ;
}
2016-09-07 05:54:23 -07:00
if ( readSizeHint = = 0 ) break ; /* end of frame */
2017-05-05 19:15:24 -07:00
if ( inBuff . size ! = inBuff . pos ) {
DISPLAYLEVEL ( 1 , " %s : Decoding error (37) : should consume entire input \n " ,
srcFileName ) ;
2017-07-03 10:27:16 -07:00
return FIO_ERROR_FRAME_DECODING ;
2017-05-05 19:15:24 -07:00
}
2015-01-23 16:58:16 -08:00
/* Fill input buffer */
2017-09-29 15:54:09 -07:00
{ size_t const toDecode = MIN ( readSizeHint , ress - > srcBufferSize ) ; /* support large skippable frames */
if ( ress - > srcBufferLoaded < toDecode ) {
size_t const toRead = toDecode - ress - > srcBufferLoaded ; /* > 0 */
void * const startPosition = ( char * ) ress - > srcBuffer + ress - > srcBufferLoaded ;
size_t const readSize = fread ( startPosition , 1 , toRead , finput ) ;
if ( readSize = = 0 ) {
DISPLAYLEVEL ( 1 , " %s : Read error (39) : premature end \n " ,
srcFileName ) ;
return FIO_ERROR_FRAME_DECODING ;
}
ress - > srcBufferLoaded + = readSize ;
2017-05-05 19:15:24 -07:00
} } }
2015-01-23 16:58:16 -08:00
2016-12-05 08:39:38 -08:00
FIO_fwriteSparseEnd ( ress - > dstFile , storedSkips ) ;
2016-05-23 07:56:56 -07:00
2015-11-25 05:42:45 -08:00
return frameSize ;
2015-09-10 15:26:09 -07:00
}
2016-12-01 02:56:31 -08:00
# ifdef ZSTD_GZDECOMPRESS
2017-05-16 17:32:33 -07:00
static unsigned long long FIO_decompressGzFrame ( dRess_t * ress ,
FILE * srcFile , const char * srcFileName )
2016-12-02 04:50:29 -08:00
{
2016-12-02 12:40:57 -08:00
unsigned long long outFileSize = 0 ;
2016-12-02 06:01:31 -08:00
z_stream strm ;
2017-03-13 18:11:07 -07:00
int flush = Z_NO_FLUSH ;
2017-07-03 13:24:50 -07:00
int decodingError = 0 ;
2016-12-02 12:40:57 -08:00
2016-12-02 06:01:31 -08:00
strm . zalloc = Z_NULL ;
strm . zfree = Z_NULL ;
strm . opaque = Z_NULL ;
strm . next_in = 0 ;
2017-02-27 04:21:05 -08:00
strm . avail_in = 0 ;
2017-05-16 17:32:33 -07:00
/* see http://www.zlib.net/manual.html */
if ( inflateInit2 ( & strm , 15 /* maxWindowLogSize */ + 16 /* gzip only */ ) ! = Z_OK )
2017-07-03 13:24:50 -07:00
return FIO_ERROR_FRAME_DECODING ;
2016-12-02 12:40:57 -08:00
2017-02-03 08:43:06 -08:00
strm . next_out = ( Bytef * ) ress - > dstBuffer ;
2017-02-02 17:12:50 -08:00
strm . avail_out = ( uInt ) ress - > dstBufferSize ;
strm . avail_in = ( uInt ) ress - > srcBufferLoaded ;
2016-12-05 08:39:38 -08:00
strm . next_in = ( z_const unsigned char * ) ress - > srcBuffer ;
2016-12-01 02:56:31 -08:00
2016-12-02 06:01:31 -08:00
for ( ; ; ) {
2017-07-03 13:24:50 -07:00
int ret ;
2016-12-05 08:39:38 -08:00
if ( strm . avail_in = = 0 ) {
ress - > srcBufferLoaded = fread ( ress - > srcBuffer , 1 , ress - > srcBufferSize , srcFile ) ;
2017-03-13 18:11:07 -07:00
if ( ress - > srcBufferLoaded = = 0 ) flush = Z_FINISH ;
2016-12-05 08:39:38 -08:00
strm . next_in = ( z_const unsigned char * ) ress - > srcBuffer ;
2017-02-02 17:12:50 -08:00
strm . avail_in = ( uInt ) ress - > srcBufferLoaded ;
2016-12-02 04:11:39 -08:00
}
2017-03-13 18:11:07 -07:00
ret = inflate ( & strm , flush ) ;
2017-07-03 13:24:50 -07:00
if ( ret = = Z_BUF_ERROR ) {
DISPLAYLEVEL ( 1 , " zstd: %s: premature gz end \n " , srcFileName ) ;
decodingError = 1 ; break ;
}
2017-05-16 17:32:33 -07:00
if ( ret ! = Z_OK & & ret ! = Z_STREAM_END ) {
2017-07-03 13:24:50 -07:00
DISPLAYLEVEL ( 1 , " zstd: %s: inflate error %d \n " , srcFileName , ret ) ;
decodingError = 1 ; break ;
2017-05-16 17:32:33 -07:00
}
2016-12-05 08:39:38 -08:00
{ size_t const decompBytes = ress - > dstBufferSize - strm . avail_out ;
2016-12-02 12:40:57 -08:00
if ( decompBytes ) {
2017-07-03 13:24:50 -07:00
if ( fwrite ( ress - > dstBuffer , 1 , decompBytes , ress - > dstFile ) ! = decompBytes ) {
DISPLAYLEVEL ( 1 , " zstd: %s \n " , strerror ( errno ) ) ;
decodingError = 1 ; break ;
}
2016-12-02 12:40:57 -08:00
outFileSize + = decompBytes ;
2017-02-03 08:43:06 -08:00
strm . next_out = ( Bytef * ) ress - > dstBuffer ;
2017-02-02 17:12:50 -08:00
strm . avail_out = ( uInt ) ress - > dstBufferSize ;
2016-12-05 08:39:38 -08:00
}
}
if ( ret = = Z_STREAM_END ) break ;
}
2016-12-01 02:56:31 -08:00
2017-07-03 15:14:55 -07:00
if ( strm . avail_in > 0 )
memmove ( ress - > srcBuffer , strm . next_in , strm . avail_in ) ;
2016-12-05 08:39:38 -08:00
ress - > srcBufferLoaded = strm . avail_in ;
2017-07-03 13:45:09 -07:00
if ( ( inflateEnd ( & strm ) ! = Z_OK ) /* release resources ; error detected */
& & ( decodingError = = 0 ) ) {
2017-07-03 13:24:50 -07:00
DISPLAYLEVEL ( 1 , " zstd: %s: inflateEnd error \n " , srcFileName ) ;
decodingError = 1 ;
}
return decodingError ? FIO_ERROR_FRAME_DECODING : outFileSize ;
2017-03-13 18:11:07 -07:00
}
# endif
# ifdef ZSTD_LZMADECOMPRESS
static unsigned long long FIO_decompressLzmaFrame ( dRess_t * ress , FILE * srcFile , const char * srcFileName , int plain_lzma )
{
unsigned long long outFileSize = 0 ;
lzma_stream strm = LZMA_STREAM_INIT ;
lzma_action action = LZMA_RUN ;
2017-07-03 10:27:16 -07:00
lzma_ret initRet ;
int decodingError = 0 ;
2017-03-13 18:11:07 -07:00
strm . next_in = 0 ;
strm . avail_in = 0 ;
if ( plain_lzma ) {
2017-07-03 10:27:16 -07:00
initRet = lzma_alone_decoder ( & strm , UINT64_MAX ) ; /* LZMA */
2017-03-13 18:11:07 -07:00
} else {
2017-07-03 10:27:16 -07:00
initRet = lzma_stream_decoder ( & strm , UINT64_MAX , 0 ) ; /* XZ */
2017-03-13 18:11:07 -07:00
}
2017-07-03 10:27:16 -07:00
if ( initRet ! = LZMA_OK ) {
DISPLAYLEVEL ( 1 , " zstd: %s: %s error %d \n " ,
plain_lzma ? " lzma_alone_decoder " : " lzma_stream_decoder " ,
srcFileName , initRet ) ;
return FIO_ERROR_FRAME_DECODING ;
}
2017-03-13 18:11:07 -07:00
2017-06-23 16:54:16 -07:00
strm . next_out = ( BYTE * ) ress - > dstBuffer ;
2017-03-13 18:11:07 -07:00
strm . avail_out = ress - > dstBufferSize ;
2017-06-23 16:54:16 -07:00
strm . next_in = ( BYTE const * ) ress - > srcBuffer ;
2017-03-13 18:11:07 -07:00
strm . avail_in = ress - > srcBufferLoaded ;
for ( ; ; ) {
2017-07-03 10:27:16 -07:00
lzma_ret ret ;
2017-03-13 18:11:07 -07:00
if ( strm . avail_in = = 0 ) {
ress - > srcBufferLoaded = fread ( ress - > srcBuffer , 1 , ress - > srcBufferSize , srcFile ) ;
if ( ress - > srcBufferLoaded = = 0 ) action = LZMA_FINISH ;
2017-06-23 16:54:16 -07:00
strm . next_in = ( BYTE const * ) ress - > srcBuffer ;
2017-03-13 18:11:07 -07:00
strm . avail_in = ress - > srcBufferLoaded ;
}
ret = lzma_code ( & strm , action ) ;
2017-07-03 10:27:16 -07:00
if ( ret = = LZMA_BUF_ERROR ) {
DISPLAYLEVEL ( 1 , " zstd: %s: premature lzma end \n " , srcFileName ) ;
decodingError = 1 ; break ;
}
2017-05-16 17:32:33 -07:00
if ( ret ! = LZMA_OK & & ret ! = LZMA_STREAM_END ) {
2017-07-03 10:27:16 -07:00
DISPLAYLEVEL ( 1 , " zstd: %s: lzma_code decoding error %d \n " ,
srcFileName , ret ) ;
decodingError = 1 ; break ;
2017-05-16 17:32:33 -07:00
}
2017-03-13 18:11:07 -07:00
{ size_t const decompBytes = ress - > dstBufferSize - strm . avail_out ;
if ( decompBytes ) {
2017-07-03 10:27:16 -07:00
if ( fwrite ( ress - > dstBuffer , 1 , decompBytes , ress - > dstFile ) ! = decompBytes ) {
DISPLAYLEVEL ( 1 , " zstd: %s \n " , strerror ( errno ) ) ;
decodingError = 1 ; break ;
}
2017-03-13 18:11:07 -07:00
outFileSize + = decompBytes ;
2017-06-23 16:54:16 -07:00
strm . next_out = ( BYTE * ) ress - > dstBuffer ;
2017-03-13 18:11:07 -07:00
strm . avail_out = ress - > dstBufferSize ;
2017-05-16 17:32:33 -07:00
} }
2017-03-13 18:11:07 -07:00
if ( ret = = LZMA_STREAM_END ) break ;
}
2017-07-03 15:14:55 -07:00
if ( strm . avail_in > 0 )
memmove ( ress - > srcBuffer , strm . next_in , strm . avail_in ) ;
2017-03-13 18:11:07 -07:00
ress - > srcBufferLoaded = strm . avail_in ;
lzma_end ( & strm ) ;
2017-07-03 10:27:16 -07:00
return decodingError ? FIO_ERROR_FRAME_DECODING : outFileSize ;
2016-12-01 02:56:31 -08:00
}
# endif
2017-04-24 16:48:25 -07:00
# ifdef ZSTD_LZ4DECOMPRESS
2017-05-16 17:32:33 -07:00
static unsigned long long FIO_decompressLz4Frame ( dRess_t * ress ,
FILE * srcFile , const char * srcFileName )
2017-04-24 16:48:25 -07:00
{
unsigned long long filesize = 0 ;
LZ4F_errorCode_t nextToLoad ;
2017-04-25 11:00:54 -07:00
LZ4F_decompressionContext_t dCtx ;
2017-04-24 16:48:25 -07:00
LZ4F_errorCode_t const errorCode = LZ4F_createDecompressionContext ( & dCtx , LZ4F_VERSION ) ;
2017-07-03 11:27:29 -07:00
int decodingError = 0 ;
2017-04-24 16:48:25 -07:00
2017-07-03 11:27:29 -07:00
if ( LZ4F_isError ( errorCode ) ) {
2017-07-03 13:24:50 -07:00
DISPLAYLEVEL ( 1 , " zstd: failed to create lz4 decompression context \n " ) ;
2017-07-03 11:27:29 -07:00
return FIO_ERROR_FRAME_DECODING ;
}
2017-04-24 16:48:25 -07:00
/* Init feed with magic number (already consumed from FILE* sFile) */
{ size_t inSize = 4 ;
size_t outSize = 0 ;
MEM_writeLE32 ( ress - > srcBuffer , LZ4_MAGICNUMBER ) ;
nextToLoad = LZ4F_decompress ( dCtx , ress - > dstBuffer , & outSize , ress - > srcBuffer , & inSize , NULL ) ;
2017-07-03 11:27:29 -07:00
if ( LZ4F_isError ( nextToLoad ) ) {
2017-07-03 13:24:50 -07:00
DISPLAYLEVEL ( 1 , " zstd: %s: lz4 header error : %s \n " ,
2017-05-16 17:32:33 -07:00
srcFileName , LZ4F_getErrorName ( nextToLoad ) ) ;
2017-07-03 11:27:29 -07:00
LZ4F_freeDecompressionContext ( dCtx ) ;
return FIO_ERROR_FRAME_DECODING ;
} }
2017-04-24 16:48:25 -07:00
/* Main Loop */
for ( ; nextToLoad ; ) {
size_t readSize ;
size_t pos = 0 ;
size_t decodedBytes = ress - > dstBufferSize ;
/* Read input */
if ( nextToLoad > ress - > srcBufferSize ) nextToLoad = ress - > srcBufferSize ;
readSize = fread ( ress - > srcBuffer , 1 , nextToLoad , srcFile ) ;
if ( ! readSize ) break ; /* reached end of file or stream */
while ( ( pos < readSize ) | | ( decodedBytes = = ress - > dstBufferSize ) ) { /* still to read, or still to flush */
/* Decode Input (at least partially) */
size_t remaining = readSize - pos ;
decodedBytes = ress - > dstBufferSize ;
nextToLoad = LZ4F_decompress ( dCtx , ress - > dstBuffer , & decodedBytes , ( char * ) ( ress - > srcBuffer ) + pos , & remaining , NULL ) ;
2017-07-03 11:27:29 -07:00
if ( LZ4F_isError ( nextToLoad ) ) {
2017-07-03 13:24:50 -07:00
DISPLAYLEVEL ( 1 , " zstd: %s: lz4 decompression error : %s \n " ,
2017-05-16 17:32:33 -07:00
srcFileName , LZ4F_getErrorName ( nextToLoad ) ) ;
2018-04-23 18:50:16 -07:00
decodingError = 1 ; nextToLoad = 0 ; break ;
2017-07-03 11:27:29 -07:00
}
2017-04-24 16:48:25 -07:00
pos + = remaining ;
/* Write Block */
if ( decodedBytes ) {
2017-07-03 11:27:29 -07:00
if ( fwrite ( ress - > dstBuffer , 1 , decodedBytes , ress - > dstFile ) ! = decodedBytes ) {
2017-08-14 05:03:46 -07:00
DISPLAYLEVEL ( 1 , " zstd: %s \n " , strerror ( errno ) ) ;
2018-04-23 18:50:16 -07:00
decodingError = 1 ; nextToLoad = 0 ; break ;
2017-07-03 11:27:29 -07:00
}
2017-04-24 16:48:25 -07:00
filesize + = decodedBytes ;
DISPLAYUPDATE ( 2 , " \r Decompressed : %u MB " , ( unsigned ) ( filesize > > 20 ) ) ;
}
if ( ! nextToLoad ) break ;
}
}
/* can be out because readSize == 0, which could be an fread() error */
2017-07-03 11:27:29 -07:00
if ( ferror ( srcFile ) ) {
2017-07-03 13:24:50 -07:00
DISPLAYLEVEL ( 1 , " zstd: %s: read error \n " , srcFileName ) ;
2017-07-03 11:27:29 -07:00
decodingError = 1 ;
}
2017-04-24 16:48:25 -07:00
2017-07-03 11:27:29 -07:00
if ( nextToLoad ! = 0 ) {
2017-07-03 13:24:50 -07:00
DISPLAYLEVEL ( 1 , " zstd: %s: unfinished lz4 stream \n " , srcFileName ) ;
2017-07-03 11:27:29 -07:00
decodingError = 1 ;
}
2017-04-24 16:48:25 -07:00
LZ4F_freeDecompressionContext ( dCtx ) ;
2017-07-03 15:14:55 -07:00
ress - > srcBufferLoaded = 0 ; /* LZ4F will reach exact frame boundary */
2017-04-24 16:48:25 -07:00
2017-07-03 11:27:29 -07:00
return decodingError ? FIO_ERROR_FRAME_DECODING : filesize ;
2017-04-24 16:48:25 -07:00
}
# endif
2016-12-01 02:56:31 -08:00
2017-07-03 10:27:16 -07:00
/** FIO_decompressFrames() :
* Find and decode frames inside srcFile
* srcFile presumed opened and valid
* @ return : 0 : OK
* 1 : error
*/
static int FIO_decompressFrames ( dRess_t ress , FILE * srcFile ,
const char * dstFileName , const char * srcFileName )
2015-10-18 14:18:32 -07:00
{
2016-07-26 07:44:09 -07:00
unsigned readSomething = 0 ;
2016-12-02 12:40:57 -08:00
unsigned long long filesize = 0 ;
2017-07-03 10:27:16 -07:00
assert ( srcFile ! = NULL ) ;
2016-11-30 06:05:54 -08:00
2016-12-02 06:01:31 -08:00
/* for each frame */
for ( ; ; ) {
/* check magic number -> version */
2016-12-02 07:20:16 -08:00
size_t const toRead = 4 ;
2017-07-03 10:27:16 -07:00
const BYTE * const buf = ( const BYTE * ) ress . srcBuffer ;
2017-07-03 15:14:55 -07:00
if ( ress . srcBufferLoaded < toRead ) /* load up to 4 bytes for header */
2017-05-05 19:15:24 -07:00
ress . srcBufferLoaded + = fread ( ( char * ) ress . srcBuffer + ress . srcBufferLoaded ,
( size_t ) 1 , toRead - ress . srcBufferLoaded , srcFile ) ;
2016-12-05 08:39:38 -08:00
if ( ress . srcBufferLoaded = = 0 ) {
2017-07-03 15:14:55 -07:00
if ( readSomething = = 0 ) { /* srcFile is empty (which is invalid) */
2017-07-03 10:27:16 -07:00
DISPLAYLEVEL ( 1 , " zstd: %s: unexpected end of file \n " , srcFileName ) ;
2017-05-05 19:15:24 -07:00
return 1 ;
2017-07-03 15:14:55 -07:00
} /* else, just reached frame boundary */
2016-12-02 07:20:16 -08:00
break ; /* no more input */
}
2017-07-03 10:27:16 -07:00
readSomething = 1 ; /* there is at least 1 byte in srcFile */
2017-05-16 17:32:33 -07:00
if ( ress . srcBufferLoaded < toRead ) {
2017-07-03 10:27:16 -07:00
DISPLAYLEVEL ( 1 , " zstd: %s: unknown header \n " , srcFileName ) ;
2017-05-16 17:32:33 -07:00
return 1 ;
}
2017-07-03 15:14:55 -07:00
if ( ZSTD_isFrame ( buf , ress . srcBufferLoaded ) ) {
unsigned long long const frameSize = FIO_decompressZstdFrame ( & ress , srcFile , srcFileName , filesize ) ;
if ( frameSize = = FIO_ERROR_FRAME_DECODING ) return 1 ;
filesize + = frameSize ;
} else if ( buf [ 0 ] = = 31 & & buf [ 1 ] = = 139 ) { /* gz magic number */
2016-12-02 06:01:31 -08:00
# ifdef ZSTD_GZDECOMPRESS
2017-07-03 13:47:46 -07:00
unsigned long long const frameSize = FIO_decompressGzFrame ( & ress , srcFile , srcFileName ) ;
if ( frameSize = = FIO_ERROR_FRAME_DECODING ) return 1 ;
filesize + = frameSize ;
2016-11-30 06:05:54 -08:00
# else
2017-07-03 10:27:16 -07:00
DISPLAYLEVEL ( 1 , " zstd: %s: gzip file cannot be uncompressed (zstd compiled without HAVE_ZLIB) -- ignored \n " , srcFileName ) ;
2016-12-02 07:20:16 -08:00
return 1 ;
2017-03-13 18:11:07 -07:00
# endif
} else if ( ( buf [ 0 ] = = 0xFD & & buf [ 1 ] = = 0x37 ) /* xz magic number */
| | ( buf [ 0 ] = = 0x5D & & buf [ 1 ] = = 0x00 ) ) { /* lzma header (no magic number) */
# ifdef ZSTD_LZMADECOMPRESS
2017-07-03 10:27:16 -07:00
unsigned long long const frameSize = FIO_decompressLzmaFrame ( & ress , srcFile , srcFileName , buf [ 0 ] ! = 0xFD ) ;
if ( frameSize = = FIO_ERROR_FRAME_DECODING ) return 1 ;
filesize + = frameSize ;
2017-03-13 18:11:07 -07:00
# else
2017-07-03 10:27:16 -07:00
DISPLAYLEVEL ( 1 , " zstd: %s: xz/lzma file cannot be uncompressed (zstd compiled without HAVE_LZMA) -- ignored \n " , srcFileName ) ;
2017-03-13 18:11:07 -07:00
return 1 ;
2017-04-24 16:48:25 -07:00
# endif
} else if ( MEM_readLE32 ( buf ) = = LZ4_MAGICNUMBER ) {
# ifdef ZSTD_LZ4DECOMPRESS
2017-07-03 11:27:29 -07:00
unsigned long long const frameSize = FIO_decompressLz4Frame ( & ress , srcFile , srcFileName ) ;
if ( frameSize = = FIO_ERROR_FRAME_DECODING ) return 1 ;
filesize + = frameSize ;
2017-04-24 16:48:25 -07:00
# else
2017-07-03 10:27:16 -07:00
DISPLAYLEVEL ( 1 , " zstd: %s: lz4 file cannot be uncompressed (zstd compiled without HAVE_LZ4) -- ignored \n " , srcFileName ) ;
2017-04-24 16:48:25 -07:00
return 1 ;
2016-11-30 06:05:54 -08:00
# endif
2017-07-03 10:27:16 -07:00
} else if ( ( g_overwrite ) & & ! strcmp ( dstFileName , stdoutmark ) ) { /* pass-through mode */
return FIO_passThrough ( ress . dstFile , srcFile ,
ress . srcBuffer , ress . srcBufferSize , ress . srcBufferLoaded ) ;
2016-12-02 07:20:16 -08:00
} else {
2017-07-03 10:27:16 -07:00
DISPLAYLEVEL ( 1 , " zstd: %s: unsupported format \n " , srcFileName ) ;
return 1 ;
} } /* for each frame */
2015-10-18 14:18:32 -07:00
2015-12-17 11:30:14 -08:00
/* Final Status */
2015-10-18 14:18:32 -07:00
DISPLAYLEVEL ( 2 , " \r %79s \r " , " " ) ;
2016-08-28 12:47:17 -07:00
DISPLAYLEVEL ( 2 , " %-20s: %llu bytes \n " , srcFileName , filesize ) ;
2015-10-18 14:18:32 -07:00
2017-07-03 10:27:16 -07:00
return 0 ;
}
2018-10-01 14:04:00 -07:00
/** FIO_decompressDstFile() :
open ` dstFileName ` ,
or path - through if ress . dstFile is already ! = 0 ,
then start decompression process ( FIO_decompressFrames ( ) ) .
@ return : 0 : OK
1 : operation aborted
*/
static int FIO_decompressDstFile ( dRess_t ress , FILE * srcFile ,
const char * dstFileName , const char * srcFileName )
{
int result ;
stat_t statbuf ;
int transfer_permissions = 0 ;
int releaseDstFile = 0 ;
if ( ress . dstFile = = NULL ) {
releaseDstFile = 1 ;
ress . dstFile = FIO_openDstFile ( dstFileName ) ;
if ( ress . dstFile = = 0 ) return 1 ;
/* Must only be added after FIO_openDstFile() succeeds.
* Otherwise we may delete the destination file if it already exists ,
* and the user presses Ctrl - C when asked if they wish to overwrite .
*/
addHandler ( dstFileName ) ;
if ( strcmp ( srcFileName , stdinmark ) /* special case : don't transfer permissions from stdin */
& & UTIL_getFileStat ( srcFileName , & statbuf ) )
transfer_permissions = 1 ;
}
result = FIO_decompressFrames ( ress , srcFile , dstFileName , srcFileName ) ;
if ( releaseDstFile ) {
FILE * const dstFile = ress . dstFile ;
clearHandler ( ) ;
ress . dstFile = NULL ;
if ( fclose ( dstFile ) ) {
DISPLAYLEVEL ( 1 , " zstd: %s: %s \n " , dstFileName , strerror ( errno ) ) ;
result = 1 ;
}
if ( ( result ! = 0 ) /* operation failure */
& & strcmp ( dstFileName , nulmark ) /* special case : don't remove() /dev/null (#316) */
& & strcmp ( dstFileName , stdoutmark ) /* special case : don't remove() stdout */
) {
FIO_remove ( dstFileName ) ; /* remove decompression artefact; note: don't do anything special if remove() fails */
} else { /* operation success */
if ( strcmp ( dstFileName , stdoutmark ) /* special case : don't chmod stdout */
& & strcmp ( dstFileName , nulmark ) /* special case : don't chmod /dev/null */
& & transfer_permissions ) /* file permissions correctly extracted from src */
UTIL_setFileStat ( dstFileName , & statbuf ) ; /* transfer file permissions from src into dst */
}
}
return result ;
}
2017-07-03 10:27:16 -07:00
/** FIO_decompressSrcFile() :
2018-10-01 14:04:00 -07:00
Open ` srcFileName ` , transfer control to decompressDstFile ( )
2017-07-03 10:27:16 -07:00
@ return : 0 : OK
2018-10-01 14:04:00 -07:00
1 : error
2017-07-03 10:27:16 -07:00
*/
static int FIO_decompressSrcFile ( dRess_t ress , const char * dstFileName , const char * srcFileName )
{
FILE * srcFile ;
int result ;
if ( UTIL_isDirectory ( srcFileName ) ) {
DISPLAYLEVEL ( 1 , " zstd: %s is a directory -- ignored \n " , srcFileName ) ;
return 1 ;
}
srcFile = FIO_openSrcFile ( srcFileName ) ;
if ( srcFile = = NULL ) return 1 ;
2018-09-24 00:52:19 -07:00
ress . srcBufferLoaded = 0 ;
2017-07-03 10:27:16 -07:00
2018-10-01 14:04:00 -07:00
result = FIO_decompressDstFile ( ress , srcFile , dstFileName , srcFileName ) ;
2017-07-03 10:27:16 -07:00
2016-12-02 04:50:29 -08:00
/* Close file */
2017-07-03 10:27:16 -07:00
if ( fclose ( srcFile ) ) {
2017-09-18 13:41:54 -07:00
DISPLAYLEVEL ( 1 , " zstd: %s: %s \n " , srcFileName , strerror ( errno ) ) ; /* error should not happen */
2017-07-03 10:27:16 -07:00
return 1 ;
}
2018-10-01 14:04:00 -07:00
if ( g_removeSrcFile /* --rm */
& & ( result = = 0 ) /* decompression successful */
2017-07-03 13:24:50 -07:00
& & strcmp ( srcFileName , stdinmark ) ) /* not stdin */ {
2017-11-17 16:38:56 -08:00
/* We must clear the handler, since after this point calling it would
* delete both the source and destination files .
*/
clearHandler ( ) ;
2018-01-05 11:44:45 -08:00
if ( FIO_remove ( srcFileName ) ) {
2017-07-03 13:24:50 -07:00
/* failed to remove src file */
DISPLAYLEVEL ( 1 , " zstd: %s: %s \n " , srcFileName , strerror ( errno ) ) ;
return 1 ;
} }
2017-07-03 10:27:16 -07:00
return result ;
2016-02-12 09:33:26 -08:00
}
2015-10-18 14:18:32 -07:00
2015-12-17 11:30:14 -08:00
int FIO_decompressFilename ( const char * dstFileName , const char * srcFileName ,
const char * dictFileName )
{
2017-07-03 13:24:50 -07:00
dRess_t const ress = FIO_createDResources ( dictFileName ) ;
2015-12-17 11:30:14 -08:00
2018-10-01 14:04:00 -07:00
int const decodingError = FIO_decompressSrcFile ( ress , dstFileName , srcFileName ) ;
2015-12-17 11:30:14 -08:00
FIO_freeDResources ( ress ) ;
2017-07-03 13:24:50 -07:00
return decodingError ;
2015-12-17 11:30:14 -08:00
}
2018-09-28 18:19:23 -07:00
/* FIO_determineDstName() :
* create a destination filename from a srcFileName .
* @ return a pointer to it .
* @ return = = NULL if there is an error */
static const char *
FIO_determineDstName ( const char * srcFileName )
{
static size_t dfnbCapacity = 0 ;
static char * dstFileNameBuffer = NULL ; /* using static allocation : this function cannot be multi-threaded */
size_t const sfnSize = strlen ( srcFileName ) ;
size_t suffixSize ;
const char * const suffixPtr = strrchr ( srcFileName , ' . ' ) ;
if ( suffixPtr = = NULL ) {
DISPLAYLEVEL ( 1 , " zstd: %s: unknown suffix -- ignored \n " ,
srcFileName ) ;
return NULL ;
}
suffixSize = strlen ( suffixPtr ) ;
/* check suffix is authorized */
if ( sfnSize < = suffixSize
| | ( strcmp ( suffixPtr , ZSTD_EXTENSION )
# ifdef ZSTD_GZDECOMPRESS
& & strcmp ( suffixPtr , GZ_EXTENSION )
# endif
# ifdef ZSTD_LZMADECOMPRESS
& & strcmp ( suffixPtr , XZ_EXTENSION )
& & strcmp ( suffixPtr , LZMA_EXTENSION )
# endif
# ifdef ZSTD_LZ4DECOMPRESS
& & strcmp ( suffixPtr , LZ4_EXTENSION )
# endif
) ) {
const char * suffixlist = ZSTD_EXTENSION
# ifdef ZSTD_GZDECOMPRESS
" / " GZ_EXTENSION
# endif
# ifdef ZSTD_LZMADECOMPRESS
" / " XZ_EXTENSION " / " LZMA_EXTENSION
# endif
# ifdef ZSTD_LZ4DECOMPRESS
" / " LZ4_EXTENSION
# endif
;
DISPLAYLEVEL ( 1 , " zstd: %s: unknown suffix (%s expected) -- ignored \n " ,
srcFileName , suffixlist ) ;
return NULL ;
}
/* allocate enough space to write dstFilename into it */
if ( dfnbCapacity + suffixSize < = sfnSize + 1 ) {
free ( dstFileNameBuffer ) ;
dfnbCapacity = sfnSize + 20 ;
dstFileNameBuffer = ( char * ) malloc ( dfnbCapacity ) ;
if ( dstFileNameBuffer = = NULL )
EXM_THROW ( 74 , " not enough memory for dstFileName " ) ;
}
/* return dst name == src name truncated from suffix */
2018-10-02 15:59:11 -07:00
assert ( dstFileNameBuffer ! = NULL ) ;
2018-09-28 18:19:23 -07:00
memcpy ( dstFileNameBuffer , srcFileName , sfnSize - suffixSize ) ;
dstFileNameBuffer [ sfnSize - suffixSize ] = ' \0 ' ;
return dstFileNameBuffer ;
/* note : dstFileNameBuffer memory is not going to be free */
}
2018-10-01 14:04:00 -07:00
int
FIO_decompressMultipleFilenames ( const char * srcNamesTable [ ] , unsigned nbFiles ,
const char * outFileName ,
const char * dictFileName )
2015-12-17 11:30:14 -08:00
{
2018-10-01 14:04:00 -07:00
int error = 0 ;
2016-05-09 20:37:43 -07:00
dRess_t ress = FIO_createDResources ( dictFileName ) ;
2015-12-17 11:30:14 -08:00
2017-12-12 18:32:50 -08:00
if ( outFileName ) {
2016-05-07 13:43:40 -07:00
unsigned u ;
2017-12-12 18:32:50 -08:00
ress . dstFile = FIO_openDstFile ( outFileName ) ;
if ( ress . dstFile = = 0 ) EXM_THROW ( 71 , " cannot open %s " , outFileName ) ;
2016-02-15 10:33:16 -08:00
for ( u = 0 ; u < nbFiles ; u + + )
2018-10-01 14:04:00 -07:00
error | = FIO_decompressSrcFile ( ress , outFileName , srcNamesTable [ u ] ) ;
2017-05-16 17:32:33 -07:00
if ( fclose ( ress . dstFile ) )
2017-12-12 18:32:50 -08:00
EXM_THROW ( 72 , " Write error : cannot properly close output file " ) ;
2016-02-15 10:33:16 -08:00
} else {
2016-05-07 13:43:40 -07:00
unsigned u ;
2016-02-12 09:33:26 -08:00
for ( u = 0 ; u < nbFiles ; u + + ) { /* create dstFileName */
2016-05-09 20:37:43 -07:00
const char * const srcFileName = srcNamesTable [ u ] ;
2018-09-28 18:19:23 -07:00
const char * const dstFileName = FIO_determineDstName ( srcFileName ) ;
2018-10-01 14:04:00 -07:00
if ( dstFileName = = NULL ) { error = 1 ; continue ; }
2018-09-28 18:19:23 -07:00
2018-10-01 14:04:00 -07:00
error | = FIO_decompressSrcFile ( ress , dstFileName , srcFileName ) ;
2016-05-09 20:37:43 -07:00
}
}
2015-12-17 11:30:14 -08:00
FIO_freeDResources ( ress ) ;
2018-10-01 14:04:00 -07:00
return error ;
2015-12-17 11:30:14 -08:00
}
2016-02-15 10:33:16 -08:00
2017-08-18 18:30:41 -07:00
/* **************************************************************************
* . zst file info ( - - list command )
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
typedef struct {
2017-10-04 12:23:23 -07:00
U64 decompressedSize ;
U64 compressedSize ;
U64 windowSize ;
2017-08-18 18:30:41 -07:00
int numActualFrames ;
int numSkippableFrames ;
int decompUnavailable ;
int usesCheck ;
2017-09-26 11:21:36 -07:00
U32 nbFiles ;
2017-08-18 18:30:41 -07:00
} fileInfo_t ;
2018-09-27 16:49:08 -07:00
typedef enum { info_success = 0 , info_frame_error = 1 , info_not_zstd = 2 , info_file_error = 3 } InfoError ;
2018-09-28 16:04:00 -07:00
# define ERROR_IF(c,n,...) { \
2018-09-27 16:49:08 -07:00
if ( c ) { \
DISPLAYLEVEL ( 1 , __VA_ARGS__ ) ; \
DISPLAYLEVEL ( 1 , " \n " ) ; \
return n ; \
} \
}
2017-08-18 18:30:41 -07:00
2018-09-27 16:49:08 -07:00
static InfoError
FIO_analyzeFrames ( fileInfo_t * info , FILE * const srcFile )
{
2017-08-18 18:30:41 -07:00
/* begin analyzing frame */
for ( ; ; ) {
BYTE headerBuffer [ ZSTD_FRAMEHEADERSIZE_MAX ] ;
size_t const numBytesRead = fread ( headerBuffer , 1 , sizeof ( headerBuffer ) , srcFile ) ;
if ( numBytesRead < ZSTD_frameHeaderSize_min ) {
2017-09-26 11:21:36 -07:00
if ( feof ( srcFile )
& & ( numBytesRead = = 0 )
2017-10-17 16:14:25 -07:00
& & ( info - > compressedSize > 0 )
& & ( info - > compressedSize ! = UTIL_FILESIZE_UNKNOWN ) ) {
2018-09-28 09:34:16 -07:00
break ; /* correct end of file => success */
2017-08-18 18:30:41 -07:00
}
2018-09-28 16:04:00 -07:00
ERROR_IF ( feof ( srcFile ) , info_not_zstd , " Error: reached end of file with incomplete frame " ) ;
ERROR_IF ( 1 , info_frame_error , " Error: did not reach end of file but ran out of frames " ) ;
2017-08-18 18:30:41 -07:00
}
{ U32 const magicNumber = MEM_readLE32 ( headerBuffer ) ;
/* Zstandard frame */
if ( magicNumber = = ZSTD_MAGICNUMBER ) {
2017-10-04 12:23:23 -07:00
ZSTD_frameHeader header ;
2017-08-18 18:30:41 -07:00
U64 const frameContentSize = ZSTD_getFrameContentSize ( headerBuffer , numBytesRead ) ;
2018-09-27 16:49:08 -07:00
if ( frameContentSize = = ZSTD_CONTENTSIZE_ERROR
| | frameContentSize = = ZSTD_CONTENTSIZE_UNKNOWN ) {
2017-08-18 18:30:41 -07:00
info - > decompUnavailable = 1 ;
} else {
info - > decompressedSize + = frameContentSize ;
}
2018-09-28 16:04:00 -07:00
ERROR_IF ( ZSTD_getFrameHeader ( & header , headerBuffer , numBytesRead ) ! = 0 ,
2018-09-27 16:49:08 -07:00
info_frame_error , " Error: could not decode frame header " ) ;
2017-10-04 12:23:23 -07:00
info - > windowSize = header . windowSize ;
2017-08-18 18:30:41 -07:00
/* move to the end of the frame header */
{ size_t const headerSize = ZSTD_frameHeaderSize ( headerBuffer , numBytesRead ) ;
2018-09-28 16:04:00 -07:00
ERROR_IF ( ZSTD_isError ( headerSize ) , info_frame_error , " Error: could not determine frame header size " ) ;
ERROR_IF ( fseek ( srcFile , ( ( long ) headerSize ) - ( ( long ) numBytesRead ) , SEEK_CUR ) ! = 0 ,
2018-09-27 16:49:08 -07:00
info_frame_error , " Error: could not move to end of frame header " ) ;
}
/* skip all blocks in the frame */
2017-08-18 18:30:41 -07:00
{ int lastBlock = 0 ;
do {
BYTE blockHeaderBuffer [ 3 ] ;
2018-09-28 16:04:00 -07:00
ERROR_IF ( fread ( blockHeaderBuffer , 1 , 3 , srcFile ) ! = 3 ,
2018-09-27 16:49:08 -07:00
info_frame_error , " Error while reading block header " ) ;
2017-08-18 18:30:41 -07:00
{ U32 const blockHeader = MEM_readLE24 ( blockHeaderBuffer ) ;
U32 const blockTypeID = ( blockHeader > > 1 ) & 3 ;
U32 const isRLE = ( blockTypeID = = 1 ) ;
U32 const isWrongBlock = ( blockTypeID = = 3 ) ;
long const blockSize = isRLE ? 1 : ( long ) ( blockHeader > > 3 ) ;
2018-09-28 16:04:00 -07:00
ERROR_IF ( isWrongBlock , info_frame_error , " Error: unsupported block type " ) ;
2017-08-18 18:30:41 -07:00
lastBlock = blockHeader & 1 ;
2018-09-28 16:04:00 -07:00
ERROR_IF ( fseek ( srcFile , blockSize , SEEK_CUR ) ! = 0 ,
2018-09-27 16:49:08 -07:00
info_frame_error , " Error: could not skip to end of block " ) ;
}
2017-08-18 18:30:41 -07:00
} while ( lastBlock ! = 1 ) ;
}
/* check if checksum is used */
{ BYTE const frameHeaderDescriptor = headerBuffer [ 4 ] ;
int const contentChecksumFlag = ( frameHeaderDescriptor & ( 1 < < 2 ) ) > > 2 ;
if ( contentChecksumFlag ) {
info - > usesCheck = 1 ;
2018-09-28 16:04:00 -07:00
ERROR_IF ( fseek ( srcFile , 4 , SEEK_CUR ) ! = 0 ,
2018-09-27 16:49:08 -07:00
info_frame_error , " Error: could not skip past checksum " ) ;
} }
2017-08-18 18:30:41 -07:00
info - > numActualFrames + + ;
}
/* Skippable frame */
else if ( ( magicNumber & 0xFFFFFFF0U ) = = ZSTD_MAGIC_SKIPPABLE_START ) {
U32 const frameSize = MEM_readLE32 ( headerBuffer + 4 ) ;
long const seek = ( long ) ( 8 + frameSize - numBytesRead ) ;
2018-09-28 16:04:00 -07:00
ERROR_IF ( LONG_SEEK ( srcFile , seek , SEEK_CUR ) ! = 0 ,
2018-09-27 16:49:08 -07:00
info_frame_error , " Error: could not find end of skippable frame " ) ;
2017-08-18 18:30:41 -07:00
info - > numSkippableFrames + + ;
}
/* unknown content */
else {
2018-09-27 16:49:08 -07:00
return info_not_zstd ;
2017-08-18 18:30:41 -07:00
}
2018-09-27 16:49:08 -07:00
} /* magic number analysis */
} /* end analyzing frames */
return info_success ;
}
static InfoError
getFileInfo_fileConfirmed ( fileInfo_t * info , const char * inFileName )
{
InfoError status ;
FILE * const srcFile = FIO_openSrcFile ( inFileName ) ;
2018-09-28 16:04:00 -07:00
ERROR_IF ( srcFile = = NULL , info_file_error , " Error: could not open source file %s " , inFileName ) ;
2018-09-27 16:49:08 -07:00
info - > compressedSize = UTIL_getFileSize ( inFileName ) ;
status = FIO_analyzeFrames ( info , srcFile ) ;
2017-08-18 18:30:41 -07:00
fclose ( srcFile ) ;
2017-09-26 11:21:36 -07:00
info - > nbFiles = 1 ;
2018-09-27 16:49:08 -07:00
return status ;
2017-08-18 18:30:41 -07:00
}
2018-09-27 16:49:08 -07:00
/** getFileInfo() :
* Reads information from file , stores in * info
* @ return : InfoError status
*/
static InfoError
getFileInfo ( fileInfo_t * info , const char * srcFileName )
2017-10-17 16:14:25 -07:00
{
2018-09-28 16:04:00 -07:00
ERROR_IF ( ! UTIL_isRegularFile ( srcFileName ) ,
2018-09-27 16:49:08 -07:00
info_file_error , " Error : %s is not a file " , srcFileName ) ;
2017-10-17 16:14:25 -07:00
return getFileInfo_fileConfirmed ( info , srcFileName ) ;
}
2018-09-27 16:49:08 -07:00
static void
displayInfo ( const char * inFileName , const fileInfo_t * info , int displayLevel )
{
2017-08-18 18:30:41 -07:00
unsigned const unit = info - > compressedSize < ( 1 MB ) ? ( 1 KB ) : ( 1 MB ) ;
const char * const unitStr = info - > compressedSize < ( 1 MB ) ? " KB " : " MB " ;
2017-10-04 12:23:23 -07:00
double const windowSizeUnit = ( double ) info - > windowSize / unit ;
2017-08-18 18:30:41 -07:00
double const compressedSizeUnit = ( double ) info - > compressedSize / unit ;
double const decompressedSizeUnit = ( double ) info - > decompressedSize / unit ;
double const ratio = ( info - > compressedSize = = 0 ) ? 0 : ( ( double ) info - > decompressedSize ) / info - > compressedSize ;
const char * const checkString = ( info - > usesCheck ? " XXH64 " : " None " ) ;
if ( displayLevel < = 2 ) {
if ( ! info - > decompUnavailable ) {
2017-09-26 11:21:36 -07:00
DISPLAYOUT ( " %6d %5d %7.2f %2s %9.2f %2s %5.3f %5s %s \n " ,
info - > numSkippableFrames + info - > numActualFrames ,
info - > numSkippableFrames ,
2017-08-18 18:30:41 -07:00
compressedSizeUnit , unitStr , decompressedSizeUnit , unitStr ,
ratio , checkString , inFileName ) ;
} else {
2017-09-26 11:21:36 -07:00
DISPLAYOUT ( " %6d %5d %7.2f %2s %5s %s \n " ,
info - > numSkippableFrames + info - > numActualFrames ,
info - > numSkippableFrames ,
compressedSizeUnit , unitStr ,
checkString , inFileName ) ;
2017-08-18 18:30:41 -07:00
}
} else {
2017-10-14 00:02:32 -07:00
DISPLAYOUT ( " %s \n " , inFileName ) ;
2017-08-18 18:30:41 -07:00
DISPLAYOUT ( " # Zstandard Frames: %d \n " , info - > numActualFrames ) ;
2017-10-14 00:02:32 -07:00
if ( info - > numSkippableFrames )
DISPLAYOUT ( " # Skippable Frames: %d \n " , info - > numSkippableFrames ) ;
2017-10-04 12:23:23 -07:00
DISPLAYOUT ( " Window Size: %.2f %2s (%llu B) \n " ,
windowSizeUnit , unitStr ,
( unsigned long long ) info - > windowSize ) ;
2017-08-18 18:30:41 -07:00
DISPLAYOUT ( " Compressed Size: %.2f %2s (%llu B) \n " ,
2017-09-26 13:53:50 -07:00
compressedSizeUnit , unitStr ,
( unsigned long long ) info - > compressedSize ) ;
2017-08-18 18:30:41 -07:00
if ( ! info - > decompUnavailable ) {
DISPLAYOUT ( " Decompressed Size: %.2f %2s (%llu B) \n " ,
2017-09-26 13:53:50 -07:00
decompressedSizeUnit , unitStr ,
( unsigned long long ) info - > decompressedSize ) ;
2017-08-18 18:30:41 -07:00
DISPLAYOUT ( " Ratio: %.4f \n " , ratio ) ;
}
DISPLAYOUT ( " Check: %s \n " , checkString ) ;
DISPLAYOUT ( " \n " ) ;
}
}
2017-09-26 11:21:36 -07:00
static fileInfo_t FIO_addFInfo ( fileInfo_t fi1 , fileInfo_t fi2 )
{
fileInfo_t total ;
2018-02-28 14:16:30 -08:00
memset ( & total , 0 , sizeof ( total ) ) ;
2017-09-26 11:21:36 -07:00
total . numActualFrames = fi1 . numActualFrames + fi2 . numActualFrames ;
total . numSkippableFrames = fi1 . numSkippableFrames + fi2 . numSkippableFrames ;
total . compressedSize = fi1 . compressedSize + fi2 . compressedSize ;
total . decompressedSize = fi1 . decompressedSize + fi2 . decompressedSize ;
total . decompUnavailable = fi1 . decompUnavailable | fi2 . decompUnavailable ;
total . usesCheck = fi1 . usesCheck & fi2 . usesCheck ;
total . nbFiles = fi1 . nbFiles + fi2 . nbFiles ;
return total ;
}
2017-08-18 18:30:41 -07:00
2018-09-28 16:04:00 -07:00
static int
FIO_listFile ( fileInfo_t * total , const char * inFileName , int displayLevel )
{
2017-08-18 18:30:41 -07:00
fileInfo_t info ;
memset ( & info , 0 , sizeof ( info ) ) ;
2018-09-27 16:49:08 -07:00
{ InfoError const error = getFileInfo ( & info , inFileName ) ;
if ( error = = info_frame_error ) {
2017-08-18 18:30:41 -07:00
/* display error, but provide output */
2018-09-27 16:49:08 -07:00
DISPLAYLEVEL ( 1 , " Error while parsing %s \n " , inFileName ) ;
2017-08-18 18:30:41 -07:00
}
2018-09-27 16:49:08 -07:00
else if ( error = = info_not_zstd ) {
2017-09-26 11:21:36 -07:00
DISPLAYOUT ( " File %s not compressed by zstd \n " , inFileName ) ;
if ( displayLevel > 2 ) DISPLAYOUT ( " \n " ) ;
2017-08-18 18:30:41 -07:00
return 1 ;
}
2018-09-27 16:49:08 -07:00
else if ( error = = info_file_error ) {
2017-09-26 11:21:36 -07:00
/* error occurred while opening the file */
if ( displayLevel > 2 ) DISPLAYOUT ( " \n " ) ;
2017-08-18 18:30:41 -07:00
return 1 ;
}
displayInfo ( inFileName , & info , displayLevel ) ;
2017-09-26 11:21:36 -07:00
* total = FIO_addFInfo ( * total , info ) ;
2018-09-27 16:49:08 -07:00
assert ( error > = 0 | | error < = 1 ) ;
2017-08-18 18:30:41 -07:00
return error ;
}
}
2018-09-27 16:49:08 -07:00
int FIO_listMultipleFiles ( unsigned numFiles , const char * * filenameTable , int displayLevel )
{
/* ensure no specified input is stdin (needs fseek() capability) */
{ unsigned u ;
for ( u = 0 ; u < numFiles ; u + + ) {
2018-09-28 16:04:00 -07:00
ERROR_IF ( ! strcmp ( filenameTable [ u ] , stdinmark ) ,
2018-09-27 16:49:08 -07:00
1 , " zstd: --list does not support reading from standard input " ) ;
} }
2018-06-11 10:13:00 -07:00
2017-08-18 18:30:41 -07:00
if ( numFiles = = 0 ) {
2018-06-29 12:33:44 -07:00
if ( ! IS_CONSOLE ( stdin ) ) {
2018-09-27 16:49:08 -07:00
DISPLAYLEVEL ( 1 , " zstd: --list does not support reading from standard input \n " ) ;
2018-06-29 12:33:44 -07:00
}
2018-09-27 16:49:08 -07:00
DISPLAYLEVEL ( 1 , " No files given \n " ) ;
2018-06-29 12:33:44 -07:00
return 1 ;
2017-08-18 18:30:41 -07:00
}
2018-09-27 16:49:08 -07:00
2017-10-04 12:23:23 -07:00
if ( displayLevel < = 2 ) {
DISPLAYOUT ( " Frames Skips Compressed Uncompressed Ratio Check Filename \n " ) ;
}
2017-09-26 11:21:36 -07:00
{ int error = 0 ;
fileInfo_t total ;
memset ( & total , 0 , sizeof ( total ) ) ;
total . usesCheck = 1 ;
2018-09-27 16:49:08 -07:00
/* --list each file, and check for any error */
{ unsigned u ;
for ( u = 0 ; u < numFiles ; u + + ) {
error | = FIO_listFile ( & total , filenameTable [ u ] , displayLevel ) ;
} }
2017-10-14 00:02:32 -07:00
if ( numFiles > 1 & & displayLevel < = 2 ) { /* display total */
2017-09-26 11:21:36 -07:00
unsigned const unit = total . compressedSize < ( 1 MB ) ? ( 1 KB ) : ( 1 MB ) ;
const char * const unitStr = total . compressedSize < ( 1 MB ) ? " KB " : " MB " ;
double const compressedSizeUnit = ( double ) total . compressedSize / unit ;
double const decompressedSizeUnit = ( double ) total . decompressedSize / unit ;
double const ratio = ( total . compressedSize = = 0 ) ? 0 : ( ( double ) total . decompressedSize ) / total . compressedSize ;
const char * const checkString = ( total . usesCheck ? " XXH64 " : " " ) ;
DISPLAYOUT ( " ----------------------------------------------------------------- \n " ) ;
if ( total . decompUnavailable ) {
DISPLAYOUT ( " %6d %5d %7.2f %2s %5s %u files \n " ,
total . numSkippableFrames + total . numActualFrames ,
total . numSkippableFrames ,
compressedSizeUnit , unitStr ,
checkString , total . nbFiles ) ;
} else {
DISPLAYOUT ( " %6d %5d %7.2f %2s %9.2f %2s %5.3f %5s %u files \n " ,
total . numSkippableFrames + total . numActualFrames ,
total . numSkippableFrames ,
compressedSizeUnit , unitStr , decompressedSizeUnit , unitStr ,
ratio , checkString , total . nbFiles ) ;
2017-10-14 00:02:32 -07:00
} }
2017-08-18 18:30:41 -07:00
return error ;
}
}
2016-05-09 20:37:43 -07:00
# endif /* #ifndef ZSTD_NODECOMPRESS */