2016-08-30 10:04:33 -07:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2016-present, Yann Collet, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*/
|
2016-08-28 10:00:49 -07:00
|
|
|
|
2016-05-28 20:16:05 -07:00
|
|
|
|
2016-07-13 05:15:08 -07:00
|
|
|
/*-************************************
|
|
|
|
* Tuning parameters
|
|
|
|
**************************************/
|
2016-07-13 06:16:00 -07:00
|
|
|
#ifndef ZSTDCLI_CLEVEL_DEFAULT
|
|
|
|
# define ZSTDCLI_CLEVEL_DEFAULT 3
|
2016-07-13 05:15:08 -07:00
|
|
|
#endif
|
|
|
|
|
2016-08-12 09:04:15 -07:00
|
|
|
#ifndef ZSTDCLI_CLEVEL_MAX
|
2016-09-21 03:24:43 -07:00
|
|
|
# define ZSTDCLI_CLEVEL_MAX 19 /* when not using --ultra */
|
2016-08-12 09:04:15 -07:00
|
|
|
#endif
|
|
|
|
|
2016-07-13 05:15:08 -07:00
|
|
|
|
2016-05-28 20:16:05 -07:00
|
|
|
/*-************************************
|
2016-11-16 08:50:54 -08:00
|
|
|
* Dependencies
|
2016-05-28 20:16:05 -07:00
|
|
|
**************************************/
|
2016-12-16 05:24:01 -08:00
|
|
|
#include "platform.h" /* Compiler options, PLATFORM_POSIX_VERSION */
|
|
|
|
#include "util.h" /* UTIL_HAS_CREATEFILELIST, UTIL_createFileList */
|
2016-05-28 20:16:05 -07:00
|
|
|
#include <string.h> /* strcmp, strlen */
|
2016-07-04 09:16:16 -07:00
|
|
|
#include <errno.h> /* errno */
|
2016-05-28 20:16:05 -07:00
|
|
|
#include "fileio.h"
|
|
|
|
#ifndef ZSTD_NOBENCH
|
2016-11-03 03:38:01 -07:00
|
|
|
# include "bench.h" /* BMK_benchFiles, BMK_SetNbSeconds */
|
2016-05-28 20:16:05 -07:00
|
|
|
#endif
|
|
|
|
#ifndef ZSTD_NODICT
|
|
|
|
# include "dibio.h"
|
|
|
|
#endif
|
2016-06-04 10:47:02 -07:00
|
|
|
#define ZSTD_STATIC_LINKING_ONLY /* ZSTD_maxCLevel */
|
|
|
|
#include "zstd.h" /* ZSTD_VERSION_STRING */
|
2016-05-28 20:16:05 -07:00
|
|
|
|
|
|
|
|
|
|
|
/*-************************************
|
|
|
|
* OS-specific Includes
|
|
|
|
**************************************/
|
|
|
|
#if defined(MSDOS) || defined(OS2) || defined(WIN32) || defined(_WIN32) || defined(__CYGWIN__)
|
|
|
|
# include <io.h> /* _isatty */
|
|
|
|
# define IS_CONSOLE(stdStream) _isatty(_fileno(stdStream))
|
2016-12-16 06:00:50 -08:00
|
|
|
#elif PLATFORM_POSIX_VERSION >= 200112L /* isatty requires POSIX.1-2001 */
|
2016-09-21 03:24:43 -07:00
|
|
|
# include <unistd.h> /* isatty */
|
|
|
|
# define IS_CONSOLE(stdStream) isatty(fileno(stdStream))
|
2016-05-28 20:16:05 -07:00
|
|
|
#else
|
2016-09-21 03:24:43 -07:00
|
|
|
# define IS_CONSOLE(stdStream) 0
|
2016-05-28 20:16:05 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/*-************************************
|
|
|
|
* Constants
|
|
|
|
**************************************/
|
|
|
|
#define COMPRESSOR_NAME "zstd command line interface"
|
|
|
|
#ifndef ZSTD_VERSION
|
|
|
|
# define ZSTD_VERSION "v" ZSTD_VERSION_STRING
|
|
|
|
#endif
|
|
|
|
#define AUTHOR "Yann Collet"
|
|
|
|
#define WELCOME_MESSAGE "*** %s %i-bits %s, by %s ***\n", COMPRESSOR_NAME, (int)(sizeof(size_t)*8), ZSTD_VERSION, AUTHOR
|
|
|
|
|
|
|
|
#define ZSTD_EXTENSION ".zst"
|
|
|
|
#define ZSTD_CAT "zstdcat"
|
|
|
|
#define ZSTD_UNZSTD "unzstd"
|
|
|
|
|
|
|
|
#define KB *(1 <<10)
|
|
|
|
#define MB *(1 <<20)
|
|
|
|
#define GB *(1U<<30)
|
|
|
|
|
2016-08-12 14:49:05 -07:00
|
|
|
#define DEFAULT_DISPLAY_LEVEL 2
|
|
|
|
|
2016-05-28 20:16:05 -07:00
|
|
|
static const char* g_defaultDictName = "dictionary";
|
|
|
|
static const unsigned g_defaultMaxDictSize = 110 KB;
|
2016-09-01 15:05:57 -07:00
|
|
|
static const int g_defaultDictCLevel = 3;
|
2016-05-28 20:16:05 -07:00
|
|
|
static const unsigned g_defaultSelectivityLevel = 9;
|
|
|
|
|
|
|
|
|
|
|
|
/*-************************************
|
|
|
|
* Display Macros
|
|
|
|
**************************************/
|
|
|
|
#define DISPLAY(...) fprintf(displayOut, __VA_ARGS__)
|
|
|
|
#define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); }
|
|
|
|
static FILE* displayOut;
|
2016-08-12 14:49:05 -07:00
|
|
|
static unsigned displayLevel = DEFAULT_DISPLAY_LEVEL; /* 0 : no display, 1: errors, 2 : + result + interaction + warnings, 3 : + progression, 4 : + information */
|
2016-05-28 20:16:05 -07:00
|
|
|
|
|
|
|
|
|
|
|
/*-************************************
|
|
|
|
* Command Line
|
|
|
|
**************************************/
|
|
|
|
static int usage(const char* programName)
|
|
|
|
{
|
|
|
|
DISPLAY( "Usage :\n");
|
|
|
|
DISPLAY( " %s [args] [FILE(s)] [-o file]\n", programName);
|
|
|
|
DISPLAY( "\n");
|
|
|
|
DISPLAY( "FILE : a filename\n");
|
|
|
|
DISPLAY( " with no FILE, or when FILE is - , read standard input\n");
|
|
|
|
DISPLAY( "Arguments :\n");
|
|
|
|
#ifndef ZSTD_NOCOMPRESS
|
2016-08-18 00:00:25 -07:00
|
|
|
DISPLAY( " -# : # compression level (1-%d, default:%d) \n", ZSTDCLI_CLEVEL_MAX, ZSTDCLI_CLEVEL_DEFAULT);
|
2016-05-28 20:16:05 -07:00
|
|
|
#endif
|
|
|
|
#ifndef ZSTD_NODECOMPRESS
|
|
|
|
DISPLAY( " -d : decompression \n");
|
|
|
|
#endif
|
|
|
|
DISPLAY( " -D file: use `file` as Dictionary \n");
|
|
|
|
DISPLAY( " -o file: result stored into `file` (only if 1 input file) \n");
|
|
|
|
DISPLAY( " -f : overwrite output without prompting \n");
|
2016-07-01 15:37:32 -07:00
|
|
|
DISPLAY( "--rm : remove source file(s) after successful de/compression \n");
|
2016-07-03 15:42:58 -07:00
|
|
|
DISPLAY( " -k : preserve source file(s) (default) \n");
|
2016-05-28 20:16:05 -07:00
|
|
|
DISPLAY( " -h/-H : display help/long help and exit\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int usage_advanced(const char* programName)
|
|
|
|
{
|
|
|
|
DISPLAY(WELCOME_MESSAGE);
|
|
|
|
usage(programName);
|
|
|
|
DISPLAY( "\n");
|
|
|
|
DISPLAY( "Advanced arguments :\n");
|
|
|
|
DISPLAY( " -V : display Version number and exit\n");
|
2016-08-12 14:49:05 -07:00
|
|
|
DISPLAY( " -v : verbose mode; specify multiple times to increase log level (default:%d)\n", DEFAULT_DISPLAY_LEVEL);
|
2016-05-28 20:16:05 -07:00
|
|
|
DISPLAY( " -q : suppress warnings; specify twice to suppress errors too\n");
|
|
|
|
DISPLAY( " -c : force write to standard output, even if it is the console\n");
|
|
|
|
#ifdef UTIL_HAS_CREATEFILELIST
|
|
|
|
DISPLAY( " -r : operate recursively on directories\n");
|
|
|
|
#endif
|
|
|
|
#ifndef ZSTD_NOCOMPRESS
|
2016-08-12 09:04:15 -07:00
|
|
|
DISPLAY( "--ultra : enable levels beyond %i, up to %i (requires more memory)\n", ZSTDCLI_CLEVEL_MAX, ZSTD_maxCLevel());
|
2016-06-09 13:59:51 -07:00
|
|
|
DISPLAY( "--no-dictID : don't write dictID into header (dictionary compression)\n");
|
2016-06-20 07:31:24 -07:00
|
|
|
DISPLAY( "--[no-]check : integrity check (default:enabled)\n");
|
2016-05-28 20:16:05 -07:00
|
|
|
#endif
|
2016-05-30 17:29:45 -07:00
|
|
|
#ifndef ZSTD_NODECOMPRESS
|
2016-06-02 08:05:50 -07:00
|
|
|
DISPLAY( "--test : test compressed file integrity \n");
|
2016-06-09 13:59:51 -07:00
|
|
|
DISPLAY( "--[no-]sparse : sparse mode (default:enabled on file, disabled on stdout)\n");
|
2016-05-30 17:29:45 -07:00
|
|
|
#endif
|
2016-10-14 13:13:13 -07:00
|
|
|
DISPLAY( " -M# : Set a memory usage limit for decompression \n");
|
2016-09-16 09:52:52 -07:00
|
|
|
DISPLAY( "-- : All arguments after \"--\" are treated as files \n");
|
2016-05-28 20:16:05 -07:00
|
|
|
#ifndef ZSTD_NODICT
|
|
|
|
DISPLAY( "\n");
|
|
|
|
DISPLAY( "Dictionary builder :\n");
|
2016-06-09 13:59:51 -07:00
|
|
|
DISPLAY( "--train ## : create a dictionary from a training set of files \n");
|
|
|
|
DISPLAY( " -o file : `file` is dictionary name (default: %s) \n", g_defaultDictName);
|
|
|
|
DISPLAY( "--maxdict ## : limit dictionary to specified size (default : %u) \n", g_defaultMaxDictSize);
|
2016-05-28 20:16:05 -07:00
|
|
|
DISPLAY( " -s# : dictionary selectivity level (default: %u)\n", g_defaultSelectivityLevel);
|
2016-06-09 13:59:51 -07:00
|
|
|
DISPLAY( "--dictID ## : force dictionary ID to specified value (default: random)\n");
|
2016-05-28 20:16:05 -07:00
|
|
|
#endif
|
|
|
|
#ifndef ZSTD_NOBENCH
|
|
|
|
DISPLAY( "\n");
|
|
|
|
DISPLAY( "Benchmark arguments :\n");
|
|
|
|
DISPLAY( " -b# : benchmark file(s), using # compression level (default : 1) \n");
|
|
|
|
DISPLAY( " -e# : test all compression levels from -bX to # (default: 1)\n");
|
2016-08-01 04:37:17 -07:00
|
|
|
DISPLAY( " -i# : minimum evaluation time in seconds (default : 3s)\n");
|
2016-05-28 20:16:05 -07:00
|
|
|
DISPLAY( " -B# : cut file into independent blocks of size # (default: no block)\n");
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int badusage(const char* programName)
|
|
|
|
{
|
|
|
|
DISPLAYLEVEL(1, "Incorrect parameters\n");
|
|
|
|
if (displayLevel >= 1) usage(programName);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void waitEnter(void)
|
|
|
|
{
|
|
|
|
int unused;
|
|
|
|
DISPLAY("Press enter to continue...\n");
|
|
|
|
unused = getchar();
|
|
|
|
(void)unused;
|
|
|
|
}
|
|
|
|
|
2016-06-03 06:14:09 -07:00
|
|
|
/*! readU32FromChar() :
|
2016-10-14 13:13:13 -07:00
|
|
|
@return : unsigned integer value read from input in `char` format
|
|
|
|
allows and interprets K, KB, KiB, M, MB and MiB suffix.
|
2016-06-03 06:14:09 -07:00
|
|
|
Will also modify `*stringPtr`, advancing it to position where it stopped reading.
|
2016-10-14 13:13:13 -07:00
|
|
|
Note : function result can overflow if digit string > MAX_UINT */
|
2016-06-03 06:14:09 -07:00
|
|
|
static unsigned readU32FromChar(const char** stringPtr)
|
|
|
|
{
|
|
|
|
unsigned result = 0;
|
|
|
|
while ((**stringPtr >='0') && (**stringPtr <='9'))
|
|
|
|
result *= 10, result += **stringPtr - '0', (*stringPtr)++ ;
|
2016-10-17 17:48:48 -07:00
|
|
|
if ((**stringPtr=='K') || (**stringPtr=='M')) {
|
|
|
|
result <<= 10;
|
|
|
|
if (**stringPtr=='M') result <<= 10;
|
|
|
|
(*stringPtr)++ ;
|
|
|
|
if (**stringPtr=='i') (*stringPtr)++;
|
|
|
|
if (**stringPtr=='B') (*stringPtr)++;
|
|
|
|
}
|
2016-06-03 06:14:09 -07:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2016-12-02 15:18:57 -08:00
|
|
|
/** longCommandWArg() :
|
|
|
|
* check is *stringPtr is the same as longCommand.
|
|
|
|
* If yes, @return 1 and advances *stringPtr to the position which immediately follows longCommand.
|
|
|
|
* @return 0 and doesn't modify *stringPtr otherwise.
|
|
|
|
*/
|
2016-10-14 14:41:17 -07:00
|
|
|
static unsigned longCommandWArg(const char** stringPtr, const char* longCommand)
|
|
|
|
{
|
|
|
|
size_t const comSize = strlen(longCommand);
|
2016-12-02 15:18:57 -08:00
|
|
|
int const result = !strncmp(*stringPtr, longCommand, comSize);
|
2016-10-14 14:41:17 -07:00
|
|
|
if (result) *stringPtr += comSize;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2016-10-28 13:58:31 -07:00
|
|
|
typedef enum { zom_compress, zom_decompress, zom_test, zom_bench, zom_train } zstd_operation_mode;
|
2016-05-28 20:16:05 -07:00
|
|
|
|
|
|
|
#define CLEAN_RETURN(i) { operationResult = (i); goto _end; }
|
|
|
|
|
2016-09-21 03:24:43 -07:00
|
|
|
int main(int argCount, const char* argv[])
|
2016-05-28 20:16:05 -07:00
|
|
|
{
|
|
|
|
int argNb,
|
|
|
|
forceStdout=0,
|
|
|
|
main_pause=0,
|
|
|
|
nextEntryIsDictionary=0,
|
|
|
|
operationResult=0,
|
|
|
|
nextArgumentIsOutFileName=0,
|
2016-05-30 12:18:52 -07:00
|
|
|
nextArgumentIsMaxDict=0,
|
2016-07-04 09:16:16 -07:00
|
|
|
nextArgumentIsDictID=0,
|
2016-12-02 15:18:57 -08:00
|
|
|
nextArgumentsAreFiles=0,
|
2016-09-21 05:20:56 -07:00
|
|
|
ultra=0,
|
|
|
|
lastCommand = 0;
|
2016-10-28 13:58:31 -07:00
|
|
|
zstd_operation_mode operation = zom_compress;
|
2016-07-27 06:09:11 -07:00
|
|
|
int cLevel = ZSTDCLI_CLEVEL_DEFAULT;
|
|
|
|
int cLevelLast = 1;
|
2016-05-28 20:16:05 -07:00
|
|
|
unsigned recursive = 0;
|
2016-10-14 13:13:13 -07:00
|
|
|
unsigned memLimit = 0;
|
2016-05-28 20:16:05 -07:00
|
|
|
const char** filenameTable = (const char**)malloc(argCount * sizeof(const char*)); /* argCount >= 1 */
|
|
|
|
unsigned filenameIdx = 0;
|
|
|
|
const char* programName = argv[0];
|
|
|
|
const char* outFileName = NULL;
|
|
|
|
const char* dictFileName = NULL;
|
|
|
|
unsigned maxDictSize = g_defaultMaxDictSize;
|
2016-05-30 12:18:52 -07:00
|
|
|
unsigned dictID = 0;
|
2016-07-27 06:09:11 -07:00
|
|
|
int dictCLevel = g_defaultDictCLevel;
|
2016-05-28 20:16:05 -07:00
|
|
|
unsigned dictSelect = g_defaultSelectivityLevel;
|
|
|
|
#ifdef UTIL_HAS_CREATEFILELIST
|
2016-09-21 03:24:43 -07:00
|
|
|
const char** extendedFileList = NULL;
|
2016-05-28 20:16:05 -07:00
|
|
|
char* fileNamesBuf = NULL;
|
|
|
|
unsigned fileNamesNb;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* init */
|
2016-06-04 16:05:01 -07:00
|
|
|
(void)recursive; (void)cLevelLast; /* not used when ZSTD_NOBENCH set */
|
2016-11-03 15:52:01 -07:00
|
|
|
(void)dictCLevel; (void)dictSelect; (void)dictID; (void)maxDictSize; /* not used when ZSTD_NODICT set */
|
|
|
|
(void)ultra; (void)cLevel; /* not used when ZSTD_NOCOMPRESS set */
|
|
|
|
(void)memLimit; /* not used when ZSTD_NODECOMPRESS set */
|
2016-07-03 15:42:58 -07:00
|
|
|
if (filenameTable==NULL) { DISPLAY("zstd: %s \n", strerror(errno)); exit(1); }
|
2016-05-28 20:16:05 -07:00
|
|
|
filenameTable[0] = stdinmark;
|
|
|
|
displayOut = stderr;
|
|
|
|
/* Pick out program name from path. Don't rely on stdlib because of conflicting behavior */
|
|
|
|
{ size_t pos;
|
|
|
|
for (pos = (int)strlen(programName); pos > 0; pos--) { if (programName[pos] == '/') { pos++; break; } }
|
|
|
|
programName += pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* preset behaviors */
|
2016-10-28 13:58:31 -07:00
|
|
|
if (!strcmp(programName, ZSTD_UNZSTD)) operation=zom_decompress;
|
2016-12-02 15:18:57 -08:00
|
|
|
if (!strcmp(programName, ZSTD_CAT)) { operation=zom_decompress; forceStdout=1; FIO_overwriteMode(); outFileName=stdoutmark; displayLevel=1; }
|
2016-05-28 20:16:05 -07:00
|
|
|
|
|
|
|
/* command switches */
|
2016-10-14 14:07:11 -07:00
|
|
|
for (argNb=1; argNb<argCount; argNb++) {
|
2016-05-28 20:16:05 -07:00
|
|
|
const char* argument = argv[argNb];
|
|
|
|
if(!argument) continue; /* Protection if argument empty */
|
|
|
|
|
2016-12-02 15:18:57 -08:00
|
|
|
if (nextArgumentsAreFiles==0) {
|
|
|
|
/* "-" means stdin/stdout */
|
2016-07-04 09:16:16 -07:00
|
|
|
if (!strcmp(argument, "-")){
|
|
|
|
if (!filenameIdx) {
|
|
|
|
filenameIdx=1, filenameTable[0]=stdinmark;
|
|
|
|
outFileName=stdoutmark;
|
|
|
|
displayLevel-=(displayLevel==2);
|
|
|
|
continue;
|
|
|
|
} }
|
2016-05-28 20:16:05 -07:00
|
|
|
|
2016-07-04 09:16:16 -07:00
|
|
|
/* Decode commands (note : aggregated commands are allowed) */
|
|
|
|
if (argument[0]=='-') {
|
2016-05-28 20:16:05 -07:00
|
|
|
|
2016-12-02 15:18:57 -08:00
|
|
|
if (argument[1]=='-') {
|
|
|
|
/* long commands (--long-word) */
|
|
|
|
if (!strcmp(argument, "--")) { nextArgumentsAreFiles=1; continue; } /* only file names allowed from now on */
|
|
|
|
if (!strcmp(argument, "--compress")) { operation=zom_compress; continue; }
|
|
|
|
if (!strcmp(argument, "--decompress")) { operation=zom_decompress; continue; }
|
|
|
|
if (!strcmp(argument, "--uncompress")) { operation=zom_decompress; continue; }
|
|
|
|
if (!strcmp(argument, "--force")) { FIO_overwriteMode(); continue; }
|
|
|
|
if (!strcmp(argument, "--version")) { displayOut=stdout; DISPLAY(WELCOME_MESSAGE); CLEAN_RETURN(0); }
|
|
|
|
if (!strcmp(argument, "--help")) { displayOut=stdout; CLEAN_RETURN(usage_advanced(programName)); }
|
|
|
|
if (!strcmp(argument, "--verbose")) { displayLevel++; continue; }
|
|
|
|
if (!strcmp(argument, "--quiet")) { displayLevel--; continue; }
|
|
|
|
if (!strcmp(argument, "--stdout")) { forceStdout=1; outFileName=stdoutmark; displayLevel-=(displayLevel==2); continue; }
|
|
|
|
if (!strcmp(argument, "--ultra")) { ultra=1; continue; }
|
|
|
|
if (!strcmp(argument, "--check")) { FIO_setChecksumFlag(2); continue; }
|
|
|
|
if (!strcmp(argument, "--no-check")) { FIO_setChecksumFlag(0); continue; }
|
|
|
|
if (!strcmp(argument, "--sparse")) { FIO_setSparseWrite(2); continue; }
|
|
|
|
if (!strcmp(argument, "--no-sparse")) { FIO_setSparseWrite(0); continue; }
|
|
|
|
if (!strcmp(argument, "--test")) { operation=zom_test; continue; }
|
|
|
|
if (!strcmp(argument, "--train")) { operation=zom_train; outFileName=g_defaultDictName; continue; }
|
|
|
|
if (!strcmp(argument, "--maxdict")) { nextArgumentIsMaxDict=1; lastCommand=1; continue; }
|
|
|
|
if (!strcmp(argument, "--dictID")) { nextArgumentIsDictID=1; lastCommand=1; continue; }
|
|
|
|
if (!strcmp(argument, "--no-dictID")) { FIO_setDictIDFlag(0); continue; }
|
|
|
|
if (!strcmp(argument, "--keep")) { FIO_setRemoveSrcFile(0); continue; }
|
|
|
|
if (!strcmp(argument, "--rm")) { FIO_setRemoveSrcFile(1); continue; }
|
|
|
|
|
|
|
|
/* long commands with arguments */
|
|
|
|
if (longCommandWArg(&argument, "--memlimit=")) { memLimit = readU32FromChar(&argument); continue; }
|
|
|
|
if (longCommandWArg(&argument, "--memory=")) { memLimit = readU32FromChar(&argument); continue; }
|
|
|
|
if (longCommandWArg(&argument, "--memlimit-decompress=")) { memLimit = readU32FromChar(&argument); continue; }
|
|
|
|
/* fall-through, will trigger bad_usage() later on */
|
|
|
|
}
|
|
|
|
|
|
|
|
argument++;
|
2016-07-04 09:16:16 -07:00
|
|
|
while (argument[0]!=0) {
|
2016-09-21 05:20:56 -07:00
|
|
|
if (lastCommand) {
|
|
|
|
DISPLAY("error : command must be followed by argument \n");
|
|
|
|
return 1;
|
|
|
|
}
|
2016-09-01 15:05:57 -07:00
|
|
|
#ifndef ZSTD_NOCOMPRESS
|
2016-07-04 09:16:16 -07:00
|
|
|
/* compression Level */
|
|
|
|
if ((*argument>='0') && (*argument<='9')) {
|
2016-08-12 09:04:15 -07:00
|
|
|
dictCLevel = cLevel = readU32FromChar(&argument);
|
2016-07-04 09:16:16 -07:00
|
|
|
continue;
|
|
|
|
}
|
2016-09-01 15:05:57 -07:00
|
|
|
#endif
|
2016-05-28 20:16:05 -07:00
|
|
|
|
2016-07-04 09:16:16 -07:00
|
|
|
switch(argument[0])
|
|
|
|
{
|
|
|
|
/* Display help */
|
|
|
|
case 'V': displayOut=stdout; DISPLAY(WELCOME_MESSAGE); CLEAN_RETURN(0); /* Version Only */
|
|
|
|
case 'H':
|
|
|
|
case 'h': displayOut=stdout; CLEAN_RETURN(usage_advanced(programName));
|
2016-05-28 20:16:05 -07:00
|
|
|
|
2016-10-28 13:58:31 -07:00
|
|
|
/* Compress */
|
|
|
|
case 'z': operation=zom_compress; argument++; break;
|
|
|
|
|
2016-07-04 09:16:16 -07:00
|
|
|
/* Decoding */
|
2016-12-06 17:56:20 -08:00
|
|
|
case 'd':
|
|
|
|
#ifndef ZSTD_NOBENCH
|
|
|
|
if (operation==zom_bench) { BMK_setDecodeOnly(1); argument++; break; } /* benchmark decode (hidden option) */
|
|
|
|
#endif
|
2016-12-06 16:49:23 -08:00
|
|
|
operation=zom_decompress; argument++; break;
|
2016-05-28 20:16:05 -07:00
|
|
|
|
2016-07-04 09:16:16 -07:00
|
|
|
/* Force stdout, even if stdout==console */
|
2016-08-12 09:04:15 -07:00
|
|
|
case 'c': forceStdout=1; outFileName=stdoutmark; argument++; break;
|
2016-05-28 20:16:05 -07:00
|
|
|
|
2016-07-04 09:16:16 -07:00
|
|
|
/* Use file content as dictionary */
|
2016-09-21 05:20:56 -07:00
|
|
|
case 'D': nextEntryIsDictionary = 1; lastCommand = 1; argument++; break;
|
2016-05-28 20:16:05 -07:00
|
|
|
|
2016-07-04 09:16:16 -07:00
|
|
|
/* Overwrite */
|
|
|
|
case 'f': FIO_overwriteMode(); forceStdout=1; argument++; break;
|
2016-05-28 20:16:05 -07:00
|
|
|
|
2016-07-04 09:16:16 -07:00
|
|
|
/* Verbose mode */
|
2016-07-15 10:43:30 -07:00
|
|
|
case 'v': displayLevel++; argument++; break;
|
2016-05-28 20:16:05 -07:00
|
|
|
|
2016-07-04 09:16:16 -07:00
|
|
|
/* Quiet mode */
|
|
|
|
case 'q': displayLevel--; argument++; break;
|
2016-05-28 20:16:05 -07:00
|
|
|
|
2016-07-04 09:16:16 -07:00
|
|
|
/* keep source file (default); for gzip/xz compatibility */
|
|
|
|
case 'k': FIO_setRemoveSrcFile(0); argument++; break;
|
2016-05-28 20:16:05 -07:00
|
|
|
|
2016-07-04 09:16:16 -07:00
|
|
|
/* Checksum */
|
|
|
|
case 'C': argument++; FIO_setChecksumFlag(2); break;
|
2016-06-02 08:05:50 -07:00
|
|
|
|
2016-07-04 09:16:16 -07:00
|
|
|
/* test compressed file */
|
2016-10-28 13:58:31 -07:00
|
|
|
case 't': operation=zom_test; argument++; break;
|
2016-05-28 20:16:05 -07:00
|
|
|
|
2016-07-13 05:15:08 -07:00
|
|
|
/* destination file name */
|
2016-09-21 05:20:56 -07:00
|
|
|
case 'o': nextArgumentIsOutFileName=1; lastCommand=1; argument++; break;
|
2016-05-28 20:16:05 -07:00
|
|
|
|
2016-10-14 13:13:13 -07:00
|
|
|
/* limit decompression memory */
|
|
|
|
case 'M':
|
|
|
|
argument++;
|
|
|
|
memLimit = readU32FromChar(&argument);
|
|
|
|
break;
|
|
|
|
|
2016-09-13 08:50:08 -07:00
|
|
|
#ifdef UTIL_HAS_CREATEFILELIST
|
2016-07-04 09:16:16 -07:00
|
|
|
/* recursive */
|
|
|
|
case 'r': recursive=1; argument++; break;
|
2016-09-13 08:50:08 -07:00
|
|
|
#endif
|
2016-05-28 20:16:05 -07:00
|
|
|
|
2016-09-01 15:05:57 -07:00
|
|
|
#ifndef ZSTD_NOBENCH
|
2016-07-04 09:16:16 -07:00
|
|
|
/* Benchmark */
|
2016-10-28 14:43:24 -07:00
|
|
|
case 'b': operation=zom_bench; argument++; break;
|
2016-05-28 20:16:05 -07:00
|
|
|
|
2016-07-04 09:16:16 -07:00
|
|
|
/* range bench (benchmark only) */
|
|
|
|
case 'e':
|
|
|
|
/* compression Level */
|
|
|
|
argument++;
|
|
|
|
cLevelLast = readU32FromChar(&argument);
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Modify Nb Iterations (benchmark only) */
|
|
|
|
case 'i':
|
2016-05-28 20:16:05 -07:00
|
|
|
argument++;
|
2016-07-04 09:16:16 -07:00
|
|
|
{ U32 const iters = readU32FromChar(&argument);
|
|
|
|
BMK_setNotificationLevel(displayLevel);
|
2016-11-03 03:38:01 -07:00
|
|
|
BMK_SetNbSeconds(iters);
|
2016-07-04 09:16:16 -07:00
|
|
|
}
|
2016-05-28 20:16:05 -07:00
|
|
|
break;
|
|
|
|
|
2016-07-04 09:16:16 -07:00
|
|
|
/* cut input into blocks (benchmark only) */
|
|
|
|
case 'B':
|
|
|
|
argument++;
|
2016-10-14 13:13:13 -07:00
|
|
|
{ size_t const bSize = readU32FromChar(&argument);
|
2016-07-04 09:16:16 -07:00
|
|
|
BMK_setNotificationLevel(displayLevel);
|
|
|
|
BMK_SetBlockSize(bSize);
|
|
|
|
}
|
|
|
|
break;
|
2016-09-01 15:05:57 -07:00
|
|
|
#endif /* ZSTD_NOBENCH */
|
2016-05-28 20:16:05 -07:00
|
|
|
|
2016-07-04 09:16:16 -07:00
|
|
|
/* Dictionary Selection level */
|
|
|
|
case 's':
|
|
|
|
argument++;
|
|
|
|
dictSelect = readU32FromChar(&argument);
|
|
|
|
break;
|
2016-05-28 20:16:05 -07:00
|
|
|
|
2016-07-04 09:16:16 -07:00
|
|
|
/* Pause at the end (-p) or set an additional param (-p#) (hidden option) */
|
|
|
|
case 'p': argument++;
|
2016-09-01 15:05:57 -07:00
|
|
|
#ifndef ZSTD_NOBENCH
|
2016-07-04 09:16:16 -07:00
|
|
|
if ((*argument>='0') && (*argument<='9')) {
|
|
|
|
BMK_setAdditionalParam(readU32FromChar(&argument));
|
|
|
|
} else
|
2016-09-01 15:05:57 -07:00
|
|
|
#endif
|
2016-07-04 09:16:16 -07:00
|
|
|
main_pause=1;
|
|
|
|
break;
|
|
|
|
/* unknown command */
|
|
|
|
default : CLEAN_RETURN(badusage(programName));
|
|
|
|
}
|
2016-05-28 20:16:05 -07:00
|
|
|
}
|
2016-07-04 09:16:16 -07:00
|
|
|
continue;
|
|
|
|
} /* if (argument[0]=='-') */
|
|
|
|
|
|
|
|
if (nextArgumentIsMaxDict) {
|
|
|
|
nextArgumentIsMaxDict = 0;
|
2016-09-21 05:20:56 -07:00
|
|
|
lastCommand = 0;
|
2016-07-04 09:16:16 -07:00
|
|
|
maxDictSize = readU32FromChar(&argument);
|
|
|
|
continue;
|
2016-05-28 20:16:05 -07:00
|
|
|
}
|
2016-07-04 09:16:16 -07:00
|
|
|
|
|
|
|
if (nextArgumentIsDictID) {
|
|
|
|
nextArgumentIsDictID = 0;
|
2016-09-21 05:20:56 -07:00
|
|
|
lastCommand = 0;
|
2016-07-04 09:16:16 -07:00
|
|
|
dictID = readU32FromChar(&argument);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
} /* if (nextArgumentIsAFile==0) */
|
2016-05-28 20:16:05 -07:00
|
|
|
|
|
|
|
if (nextEntryIsDictionary) {
|
|
|
|
nextEntryIsDictionary = 0;
|
2016-09-21 05:20:56 -07:00
|
|
|
lastCommand = 0;
|
2016-05-28 20:16:05 -07:00
|
|
|
dictFileName = argument;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nextArgumentIsOutFileName) {
|
|
|
|
nextArgumentIsOutFileName = 0;
|
2016-09-21 05:20:56 -07:00
|
|
|
lastCommand = 0;
|
2016-05-28 20:16:05 -07:00
|
|
|
outFileName = argument;
|
|
|
|
if (!strcmp(outFileName, "-")) outFileName = stdoutmark;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* add filename to list */
|
|
|
|
filenameTable[filenameIdx++] = argument;
|
|
|
|
}
|
|
|
|
|
2016-09-21 07:05:03 -07:00
|
|
|
if (lastCommand) { DISPLAY("error : command must be followed by argument \n"); return 1; } /* forgotten argument */
|
|
|
|
|
2016-05-28 20:16:05 -07:00
|
|
|
/* Welcome message (if verbose) */
|
|
|
|
DISPLAYLEVEL(3, WELCOME_MESSAGE);
|
|
|
|
|
|
|
|
#ifdef UTIL_HAS_CREATEFILELIST
|
2016-09-21 03:24:43 -07:00
|
|
|
if (recursive) { /* at this stage, filenameTable is a list of paths, which can contain both files and directories */
|
|
|
|
extendedFileList = UTIL_createFileList(filenameTable, filenameIdx, &fileNamesBuf, &fileNamesNb);
|
|
|
|
if (extendedFileList) {
|
2016-08-01 05:26:49 -07:00
|
|
|
unsigned u;
|
2016-09-21 03:24:43 -07:00
|
|
|
for (u=0; u<fileNamesNb; u++) DISPLAYLEVEL(4, "%u %s\n", u, extendedFileList[u]);
|
2016-05-28 20:16:05 -07:00
|
|
|
free((void*)filenameTable);
|
2016-09-21 03:24:43 -07:00
|
|
|
filenameTable = extendedFileList;
|
2016-05-28 20:16:05 -07:00
|
|
|
filenameIdx = fileNamesNb;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Check if benchmark is selected */
|
2016-10-28 13:58:31 -07:00
|
|
|
if (operation==zom_bench) {
|
2016-05-28 20:16:05 -07:00
|
|
|
#ifndef ZSTD_NOBENCH
|
|
|
|
BMK_setNotificationLevel(displayLevel);
|
|
|
|
BMK_benchFiles(filenameTable, filenameIdx, dictFileName, cLevel, cLevelLast);
|
|
|
|
#endif
|
|
|
|
goto _end;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if dictionary builder is selected */
|
2016-10-28 13:58:31 -07:00
|
|
|
if (operation==zom_train) {
|
2016-05-28 20:16:05 -07:00
|
|
|
#ifndef ZSTD_NODICT
|
|
|
|
ZDICT_params_t dictParams;
|
2016-07-13 08:38:39 -07:00
|
|
|
memset(&dictParams, 0, sizeof(dictParams));
|
2016-05-28 20:16:05 -07:00
|
|
|
dictParams.compressionLevel = dictCLevel;
|
|
|
|
dictParams.selectivityLevel = dictSelect;
|
|
|
|
dictParams.notificationLevel = displayLevel;
|
2016-05-30 12:18:52 -07:00
|
|
|
dictParams.dictID = dictID;
|
2016-05-28 20:16:05 -07:00
|
|
|
DiB_trainFromFiles(outFileName, maxDictSize, filenameTable, filenameIdx, dictParams);
|
|
|
|
#endif
|
|
|
|
goto _end;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* No input filename ==> use stdin and stdout */
|
2016-08-25 16:43:47 -07:00
|
|
|
filenameIdx += !filenameIdx; /* filenameTable[0] is stdin by default */
|
|
|
|
if (!strcmp(filenameTable[0], stdinmark) && !outFileName) outFileName = stdoutmark; /* when input is stdin, default output is stdout */
|
2016-05-28 20:16:05 -07:00
|
|
|
|
|
|
|
/* Check if input/output defined as console; trigger an error in this case */
|
|
|
|
if (!strcmp(filenameTable[0], stdinmark) && IS_CONSOLE(stdin) ) CLEAN_RETURN(badusage(programName));
|
2016-10-28 13:58:31 -07:00
|
|
|
if (outFileName && !strcmp(outFileName, stdoutmark) && IS_CONSOLE(stdout) && strcmp(filenameTable[0], stdinmark) && !(forceStdout && (operation==zom_decompress)))
|
2016-05-28 20:16:05 -07:00
|
|
|
CLEAN_RETURN(badusage(programName));
|
|
|
|
|
|
|
|
/* user-selected output filename, only possible with a single file */
|
|
|
|
if (outFileName && strcmp(outFileName,stdoutmark) && strcmp(outFileName,nulmark) && (filenameIdx>1)) {
|
|
|
|
DISPLAY("Too many files (%u) on the command line. \n", filenameIdx);
|
|
|
|
CLEAN_RETURN(filenameIdx);
|
|
|
|
}
|
|
|
|
|
2016-10-05 02:56:22 -07:00
|
|
|
#ifndef ZSTD_NOCOMPRESS
|
2016-08-12 09:04:15 -07:00
|
|
|
/* check compression level limits */
|
|
|
|
{ int const maxCLevel = ultra ? ZSTD_maxCLevel() : ZSTDCLI_CLEVEL_MAX;
|
|
|
|
if (cLevel > maxCLevel) {
|
|
|
|
DISPLAYLEVEL(2, "Warning : compression level higher than max, reduced to %i \n", maxCLevel);
|
|
|
|
cLevel = maxCLevel;
|
|
|
|
} }
|
2016-10-05 02:56:22 -07:00
|
|
|
#endif
|
2016-08-12 09:04:15 -07:00
|
|
|
|
|
|
|
/* No warning message in pipe mode (stdin + stdout) or multi-files mode */
|
2016-05-28 20:16:05 -07:00
|
|
|
if (!strcmp(filenameTable[0], stdinmark) && outFileName && !strcmp(outFileName,stdoutmark) && (displayLevel==2)) displayLevel=1;
|
2016-07-17 19:06:43 -07:00
|
|
|
if ((filenameIdx>1) & (displayLevel==2)) displayLevel=1;
|
2016-05-28 20:16:05 -07:00
|
|
|
|
|
|
|
/* IO Stream/File */
|
|
|
|
FIO_setNotificationLevel(displayLevel);
|
2016-10-28 13:58:31 -07:00
|
|
|
if (operation==zom_compress) {
|
2016-09-21 03:24:43 -07:00
|
|
|
#ifndef ZSTD_NOCOMPRESS
|
2016-09-21 07:46:08 -07:00
|
|
|
if ((filenameIdx==1) && outFileName)
|
2016-05-28 20:16:05 -07:00
|
|
|
operationResult = FIO_compressFilename(outFileName, filenameTable[0], dictFileName, cLevel);
|
|
|
|
else
|
|
|
|
operationResult = FIO_compressMultipleFilenames(filenameTable, filenameIdx, outFileName ? outFileName : ZSTD_EXTENSION, dictFileName, cLevel);
|
2016-09-21 03:24:43 -07:00
|
|
|
#else
|
|
|
|
DISPLAY("Compression not supported\n");
|
2016-05-28 20:16:05 -07:00
|
|
|
#endif
|
2016-10-28 13:58:31 -07:00
|
|
|
} else { /* decompression or test */
|
2016-05-28 20:16:05 -07:00
|
|
|
#ifndef ZSTD_NODECOMPRESS
|
2016-10-28 13:58:31 -07:00
|
|
|
if (operation==zom_test) { outFileName=nulmark; FIO_setRemoveSrcFile(0); } /* test mode */
|
2016-10-14 13:13:13 -07:00
|
|
|
FIO_setMemLimit(memLimit);
|
2016-05-28 20:16:05 -07:00
|
|
|
if (filenameIdx==1 && outFileName)
|
|
|
|
operationResult = FIO_decompressFilename(outFileName, filenameTable[0], dictFileName);
|
|
|
|
else
|
|
|
|
operationResult = FIO_decompressMultipleFilenames(filenameTable, filenameIdx, outFileName ? outFileName : ZSTD_EXTENSION, dictFileName);
|
|
|
|
#else
|
|
|
|
DISPLAY("Decompression not supported\n");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
_end:
|
|
|
|
if (main_pause) waitEnter();
|
|
|
|
#ifdef UTIL_HAS_CREATEFILELIST
|
2016-09-21 03:24:43 -07:00
|
|
|
if (extendedFileList)
|
|
|
|
UTIL_freeFileList(extendedFileList, fileNamesBuf);
|
2016-05-28 20:16:05 -07:00
|
|
|
else
|
|
|
|
#endif
|
|
|
|
free((void*)filenameTable);
|
|
|
|
return operationResult;
|
|
|
|
}
|