lz4/programs/lz4io.h

117 lines
4.0 KiB
C
Raw Normal View History

/*
LZ4io.h - LZ4 File/Stream Interface
2016-11-21 23:51:39 +00:00
Copyright (C) Yann Collet 2011-2016
GPL v2 License
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
You can contact the author at :
2016-11-03 14:12:57 +00:00
- LZ4 source repository : https://github.com/lz4/lz4
- LZ4 public forum : https://groups.google.com/forum/#!forum/lz4c
*/
/*
Note : this is stand-alone program.
It is not part of LZ4 compression library, it is a user code of the LZ4 library.
- The license of LZ4 library is BSD.
- The license of xxHash library is BSD.
- The license of this source file is GPLv2.
*/
2016-11-09 22:36:42 +00:00
#ifndef LZ4IO_H_237902873
#define LZ4IO_H_237902873
2016-11-15 22:01:37 +00:00
/*--- Dependency ---*/
#include <stddef.h> /* size_t */
/* ************************************************** */
/* Special input/output values */
/* ************************************************** */
#define NULL_OUTPUT "null"
2016-11-15 22:01:37 +00:00
static const char stdinmark[] = "stdin";
static const char stdoutmark[] = "stdout";
#ifdef _WIN32
2016-11-15 22:01:37 +00:00
static const char nulmark[] = "nul";
#else
2016-11-15 22:01:37 +00:00
static const char nulmark[] = "/dev/null";
#endif
/* ************************************************** */
/* ****************** Functions ********************* */
/* ************************************************** */
2015-03-07 12:23:00 +00:00
int LZ4IO_compressFilename (const char* input_filename, const char* output_filename, int compressionlevel);
int LZ4IO_decompressFilename(const char* input_filename, const char* output_filename);
int LZ4IO_compressMultipleFilenames(const char** inFileNamesTable, int ifntSize, const char* suffix, int compressionlevel);
int LZ4IO_decompressMultipleFilenames(const char** inFileNamesTable, int ifntSize, const char* suffix);
2016-11-09 22:36:42 +00:00
/* ************************************************** */
/* ****************** Parameters ******************** */
/* ************************************************** */
int LZ4IO_setDictionaryFilename(const char* dictionaryFilename);
2019-01-10 18:20:17 +00:00
/* Default setting : passThrough = 0;
return : passThrough mode (0/1) */
int LZ4IO_setPassThrough(int yes);
/* Default setting : overwrite = 1;
return : overwrite mode (0/1) */
int LZ4IO_setOverwrite(int yes);
2016-11-04 01:50:25 +00:00
/* Default setting : testMode = 0;
return : testMode (0/1) */
int LZ4IO_setTestMode(int yes);
/* blockSizeID : valid values : 4-5-6-7
2016-11-15 22:01:37 +00:00
return : 0 if error, blockSize if OK */
size_t LZ4IO_setBlockSizeID(unsigned blockSizeID);
2018-09-28 15:02:49 +00:00
/* blockSize : valid values : 32 -> 4MB
return : 0 if error, actual blocksize if OK */
size_t LZ4IO_setBlockSize(size_t blockSize);
/* Default setting : independent blocks */
typedef enum { LZ4IO_blockLinked=0, LZ4IO_blockIndependent} LZ4IO_blockMode_t;
int LZ4IO_setBlockMode(LZ4IO_blockMode_t blockMode);
2015-03-11 18:42:37 +00:00
/* Default setting : no block checksum */
int LZ4IO_setBlockChecksumMode(int xxhash);
2015-03-11 18:42:37 +00:00
/* Default setting : stream checksum enabled */
int LZ4IO_setStreamChecksumMode(int xxhash);
/* Default setting : 0 (no notification) */
int LZ4IO_setNotificationLevel(int level);
2015-03-11 18:42:37 +00:00
/* Default setting : 0 (disabled) */
int LZ4IO_setSparseFile(int enable);
/* Default setting : 0 == no content size present in frame header */
2015-03-23 01:20:42 +00:00
int LZ4IO_setContentSize(int enable);
2016-11-07 13:50:58 +00:00
/* Default setting : 0 == src file preserved */
2016-11-07 13:50:58 +00:00
void LZ4IO_setRemoveSrcFile(unsigned flag);
2016-11-09 22:36:42 +00:00
/* Default setting : 0 == favor compression ratio
* Note : 1 only works for high compression levels (10+) */
void LZ4IO_favorDecSpeed(int favor);
2016-11-09 22:36:42 +00:00
#endif /* LZ4IO_H_237902873 */