2025-02-24 04:17:44 +01:00
|
|
|
/* Plzip - Massively parallel implementation of lzip
|
|
|
|
Copyright (C) 2009 Laszlo Ersek.
|
2025-02-24 04:20:02 +01:00
|
|
|
Copyright (C) 2009-2025 Antonio Diaz Diaz.
|
2025-02-24 04:17:44 +01:00
|
|
|
|
|
|
|
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, see <http://www.gnu.org/licenses/>.
|
2025-02-24 03:22:05 +01:00
|
|
|
*/
|
|
|
|
/*
|
2025-02-24 04:17:44 +01:00
|
|
|
Exit status: 0 for a normal exit, 1 for environmental problems
|
2025-02-24 04:19:26 +01:00
|
|
|
(file not found, invalid command-line options, I/O errors, etc), 2 to
|
|
|
|
indicate a corrupt or invalid input file, 3 for an internal consistency
|
|
|
|
error (e.g., bug) which caused plzip to panic.
|
2025-02-24 03:22:05 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#define _FILE_OFFSET_BITS 64
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <cerrno>
|
2025-02-24 04:19:50 +01:00
|
|
|
#include <climits> // CHAR_BIT, SSIZE_MAX
|
2025-02-24 03:22:05 +01:00
|
|
|
#include <csignal>
|
2025-02-24 03:25:08 +01:00
|
|
|
#include <cstdio>
|
2025-02-24 03:22:05 +01:00
|
|
|
#include <cstdlib>
|
2025-02-24 03:25:08 +01:00
|
|
|
#include <cstring>
|
2025-02-24 03:22:05 +01:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2025-02-24 03:25:08 +01:00
|
|
|
#include <fcntl.h>
|
2025-02-24 04:19:26 +01:00
|
|
|
#include <stdint.h> // SIZE_MAX
|
2025-02-24 03:22:05 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <utime.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <lzlib.h>
|
2025-02-24 04:18:20 +01:00
|
|
|
#if defined __MSVCRT__ || defined __OS2__
|
2025-02-24 03:57:48 +01:00
|
|
|
#include <io.h>
|
2025-02-24 04:18:20 +01:00
|
|
|
#if defined __MSVCRT__
|
2025-02-24 04:19:50 +01:00
|
|
|
#include <direct.h>
|
2025-02-24 03:57:48 +01:00
|
|
|
#define fchmod(x,y) 0
|
|
|
|
#define fchown(x,y,z) 0
|
2025-02-24 04:19:50 +01:00
|
|
|
#define mkdir(name,mode) _mkdir(name)
|
2025-02-24 03:57:48 +01:00
|
|
|
#define strtoull std::strtoul
|
|
|
|
#define SIGHUP SIGTERM
|
|
|
|
#define S_ISSOCK(x) 0
|
2025-02-24 04:16:09 +01:00
|
|
|
#ifndef S_IRGRP
|
2025-02-24 03:57:48 +01:00
|
|
|
#define S_IRGRP 0
|
|
|
|
#define S_IWGRP 0
|
|
|
|
#define S_IROTH 0
|
|
|
|
#define S_IWOTH 0
|
|
|
|
#endif
|
2025-02-24 04:16:09 +01:00
|
|
|
#endif
|
2025-02-24 03:57:48 +01:00
|
|
|
#endif
|
2025-02-24 03:22:05 +01:00
|
|
|
|
|
|
|
#include "arg_parser.h"
|
2025-02-24 03:57:48 +01:00
|
|
|
#include "lzip.h"
|
2025-02-24 03:22:05 +01:00
|
|
|
|
2025-02-24 04:03:21 +01:00
|
|
|
#ifndef O_BINARY
|
|
|
|
#define O_BINARY 0
|
|
|
|
#endif
|
|
|
|
|
2025-02-24 03:27:29 +01:00
|
|
|
#if CHAR_BIT != 8
|
|
|
|
#error "Environments where CHAR_BIT != 8 are not supported."
|
|
|
|
#endif
|
|
|
|
|
2025-02-24 04:18:20 +01:00
|
|
|
#if ( defined SIZE_MAX && SIZE_MAX < UINT_MAX ) || \
|
|
|
|
( defined SSIZE_MAX && SSIZE_MAX < INT_MAX )
|
|
|
|
#error "Environments where 'size_t' is narrower than 'int' are not supported."
|
|
|
|
#endif
|
|
|
|
|
2025-02-24 04:12:55 +01:00
|
|
|
int verbosity = 0;
|
2025-02-24 03:22:05 +01:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2025-02-24 03:33:34 +01:00
|
|
|
const char * const program_name = "plzip";
|
2025-02-24 04:20:02 +01:00
|
|
|
const char * const program_year = "2025";
|
2025-02-24 04:17:44 +01:00
|
|
|
const char * invocation_name = program_name; // default value
|
2025-02-24 03:22:05 +01:00
|
|
|
|
2025-02-24 04:14:20 +01:00
|
|
|
const struct { const char * from; const char * to; } known_extensions[] = {
|
2025-02-24 03:22:05 +01:00
|
|
|
{ ".lz", "" },
|
|
|
|
{ ".tlz", ".tar" },
|
|
|
|
{ 0, 0 } };
|
|
|
|
|
2025-02-24 03:27:29 +01:00
|
|
|
struct Lzma_options
|
2025-02-24 03:22:05 +01:00
|
|
|
{
|
2025-02-24 04:10:09 +01:00
|
|
|
int dictionary_size; // 4 KiB .. 512 MiB
|
|
|
|
int match_len_limit; // 5 .. 273
|
2025-02-24 03:22:05 +01:00
|
|
|
};
|
|
|
|
|
2025-02-24 04:14:20 +01:00
|
|
|
enum Mode { m_compress, m_decompress, m_list, m_test };
|
2025-02-24 03:22:05 +01:00
|
|
|
|
2025-02-24 04:16:09 +01:00
|
|
|
/* Variables used in signal handler context.
|
|
|
|
They are not declared volatile because the handler never returns. */
|
2025-02-24 03:22:05 +01:00
|
|
|
std::string output_filename;
|
2025-02-24 03:26:51 +01:00
|
|
|
int outfd = -1;
|
2025-02-24 03:22:05 +01:00
|
|
|
bool delete_output_on_interrupt = false;
|
|
|
|
|
|
|
|
|
2025-02-24 03:57:48 +01:00
|
|
|
void show_help( const long num_online )
|
2025-02-24 03:22:05 +01:00
|
|
|
{
|
2025-02-24 04:19:50 +01:00
|
|
|
std::printf( "Plzip is a massively parallel (multi-threaded) implementation of lzip. Plzip\n"
|
|
|
|
"uses the compression library lzlib.\n"
|
2025-02-24 04:17:44 +01:00
|
|
|
"\nLzip is a lossless data compressor with a user interface similar to the one\n"
|
2025-02-24 04:19:50 +01:00
|
|
|
"of gzip or bzip2. Lzip uses a simplified form of LZMA (Lempel-Ziv-Markov\n"
|
|
|
|
"chain-Algorithm) designed to achieve complete interoperability between\n"
|
|
|
|
"implementations. The maximum dictionary size is 512 MiB so that any lzip\n"
|
|
|
|
"file can be decompressed on 32-bit machines. Lzip provides accurate and\n"
|
|
|
|
"robust 3-factor integrity checking. 'lzip -0' compresses about as fast as\n"
|
|
|
|
"gzip, while 'lzip -9' compresses most files more than bzip2. Decompression\n"
|
|
|
|
"speed is intermediate between gzip and bzip2. Lzip provides better data\n"
|
|
|
|
"recovery capabilities than gzip and bzip2. Lzip has been designed, written,\n"
|
|
|
|
"and tested with great care to replace gzip and bzip2 as general-purpose\n"
|
|
|
|
"compressed format for Unix-like systems.\n"
|
2025-02-24 04:17:44 +01:00
|
|
|
"\nPlzip can compress/decompress large files on multiprocessor machines much\n"
|
|
|
|
"faster than lzip, at the cost of a slightly reduced compression ratio (0.4\n"
|
|
|
|
"to 2 percent larger compressed files). Note that the number of usable\n"
|
|
|
|
"threads is limited by file size; on files larger than a few GB plzip can use\n"
|
2025-02-24 04:19:50 +01:00
|
|
|
"hundreds of processors, but on files smaller than 1 MiB plzip is no faster\n"
|
2025-02-24 04:20:02 +01:00
|
|
|
"than lzip (not even at compression level -0).\n"
|
2025-02-24 04:19:50 +01:00
|
|
|
"The number of threads defaults to the number of processors.\n"
|
2025-02-24 04:16:09 +01:00
|
|
|
"\nUsage: %s [options] [files]\n", invocation_name );
|
2025-02-24 03:44:03 +01:00
|
|
|
std::printf( "\nOptions:\n"
|
|
|
|
" -h, --help display this help and exit\n"
|
|
|
|
" -V, --version output version information and exit\n"
|
2025-02-24 04:12:55 +01:00
|
|
|
" -a, --trailing-error exit with error status if trailing data\n"
|
2025-02-24 04:09:39 +01:00
|
|
|
" -B, --data-size=<bytes> set size of input data blocks [2x8=16 MiB]\n"
|
2025-02-24 04:12:55 +01:00
|
|
|
" -c, --stdout write to standard output, keep input files\n"
|
2025-02-24 04:19:26 +01:00
|
|
|
" -d, --decompress decompress, test compressed file integrity\n"
|
2025-02-24 03:44:03 +01:00
|
|
|
" -f, --force overwrite existing output files\n"
|
2025-02-24 04:10:09 +01:00
|
|
|
" -F, --recompress force re-compression of compressed files\n"
|
2025-02-24 03:44:03 +01:00
|
|
|
" -k, --keep keep (don't delete) input files\n"
|
2025-02-24 04:14:20 +01:00
|
|
|
" -l, --list print (un)compressed file sizes\n"
|
2025-02-24 03:44:03 +01:00
|
|
|
" -m, --match-length=<bytes> set match length limit in bytes [36]\n"
|
2025-02-24 03:57:48 +01:00
|
|
|
" -n, --threads=<n> set number of (de)compression threads [%ld]\n"
|
2025-02-24 04:17:44 +01:00
|
|
|
" -o, --output=<file> write to <file>, keep input files\n"
|
2025-02-24 03:44:03 +01:00
|
|
|
" -q, --quiet suppress all messages\n"
|
2025-02-24 04:02:23 +01:00
|
|
|
" -s, --dictionary-size=<bytes> set dictionary size limit in bytes [8 MiB]\n"
|
2025-02-24 03:44:03 +01:00
|
|
|
" -t, --test test compressed file integrity\n"
|
|
|
|
" -v, --verbose be verbose (a 2nd -v gives more)\n"
|
2025-02-24 04:08:36 +01:00
|
|
|
" -0 .. -9 set compression level [default 6]\n"
|
|
|
|
" --fast alias for -0\n"
|
2025-02-24 04:15:24 +01:00
|
|
|
" --best alias for -9\n"
|
|
|
|
" --loose-trailing allow trailing data seeming corrupt header\n"
|
2025-02-24 04:16:09 +01:00
|
|
|
" --in-slots=<n> number of 1 MiB input packets buffered [4]\n"
|
|
|
|
" --out-slots=<n> number of 1 MiB output packets buffered [64]\n"
|
2025-02-24 04:17:44 +01:00
|
|
|
" --check-lib compare version of lzlib.h with liblz.{a,so}\n",
|
|
|
|
num_online );
|
2025-02-24 04:08:21 +01:00
|
|
|
if( verbosity >= 1 )
|
2025-02-24 03:22:05 +01:00
|
|
|
{
|
2025-02-24 04:17:44 +01:00
|
|
|
std::printf( " --debug=<level> print mode(2), debug statistics(1) to stderr\n" );
|
2025-02-24 03:22:05 +01:00
|
|
|
}
|
2025-02-24 04:17:44 +01:00
|
|
|
std::printf( "\nIf no file names are given, or if a file is '-', plzip compresses or\n"
|
2025-02-24 04:12:55 +01:00
|
|
|
"decompresses from standard input to standard output.\n"
|
2025-02-24 03:44:03 +01:00
|
|
|
"Numbers may be followed by a multiplier: k = kB = 10^3 = 1000,\n"
|
|
|
|
"Ki = KiB = 2^10 = 1024, M = 10^6, Mi = 2^20, G = 10^9, Gi = 2^30, etc...\n"
|
2025-02-24 04:19:26 +01:00
|
|
|
"Dictionary sizes 12 to 29 are interpreted as powers of two, meaning 2^12 to\n"
|
|
|
|
"2^29 bytes.\n"
|
|
|
|
"\nThe bidimensional parameter space of LZMA can't be mapped to a linear scale\n"
|
|
|
|
"optimal for all files. If your files are large, very repetitive, etc, you\n"
|
|
|
|
"may need to use the options --dictionary-size and --match-length directly\n"
|
|
|
|
"to achieve optimal performance.\n"
|
2025-02-24 04:17:44 +01:00
|
|
|
"\nTo extract all the files from archive 'foo.tar.lz', use the commands\n"
|
|
|
|
"'tar -xf foo.tar.lz' or 'plzip -cd foo.tar.lz | tar -xf -'.\n"
|
2025-02-24 04:19:26 +01:00
|
|
|
"\nExit status: 0 for a normal exit, 1 for environmental problems\n"
|
|
|
|
"(file not found, invalid command-line options, I/O errors, etc), 2 to\n"
|
|
|
|
"indicate a corrupt or invalid input file, 3 for an internal consistency\n"
|
|
|
|
"error (e.g., bug) which caused plzip to panic.\n"
|
2025-02-24 03:44:03 +01:00
|
|
|
"\nReport bugs to lzip-bug@nongnu.org\n"
|
|
|
|
"Plzip home page: http://www.nongnu.org/lzip/plzip.html\n" );
|
2025-02-24 03:22:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2025-02-24 04:19:26 +01:00
|
|
|
void show_lzlib_version()
|
|
|
|
{
|
|
|
|
std::printf( "Using lzlib %s\n", LZ_version() );
|
|
|
|
#if !defined LZ_API_VERSION
|
|
|
|
std::fputs( "LZ_API_VERSION is not defined.\n", stdout );
|
|
|
|
#elif LZ_API_VERSION >= 1012
|
|
|
|
std::printf( "Using LZ_API_VERSION = %u\n", LZ_api_version() );
|
|
|
|
#else
|
|
|
|
std::printf( "Compiled with LZ_API_VERSION = %u. "
|
|
|
|
"Using an unknown LZ_API_VERSION\n", LZ_API_VERSION );
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2025-02-24 03:50:51 +01:00
|
|
|
void show_version()
|
2025-02-24 03:22:05 +01:00
|
|
|
{
|
2025-02-24 04:04:08 +01:00
|
|
|
std::printf( "%s %s\n", program_name, PROGVERSION );
|
2025-02-24 04:15:24 +01:00
|
|
|
std::printf( "Copyright (C) 2009 Laszlo Ersek.\n" );
|
|
|
|
std::printf( "Copyright (C) %s Antonio Diaz Diaz.\n", program_year );
|
2025-02-24 04:04:25 +01:00
|
|
|
std::printf( "License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl.html>\n"
|
2025-02-24 03:44:03 +01:00
|
|
|
"This is free software: you are free to change and redistribute it.\n"
|
|
|
|
"There is NO WARRANTY, to the extent permitted by law.\n" );
|
2025-02-24 04:19:26 +01:00
|
|
|
show_lzlib_version();
|
2025-02-24 03:22:05 +01:00
|
|
|
}
|
|
|
|
|
2025-02-24 04:17:44 +01:00
|
|
|
|
2025-02-24 04:18:20 +01:00
|
|
|
int check_lzlib_ver() // <major>.<minor> or <major>.<minor>[a-z.-]*
|
|
|
|
{
|
|
|
|
#if defined LZ_API_VERSION && LZ_API_VERSION >= 1012
|
|
|
|
const unsigned char * p = (unsigned char *)LZ_version_string;
|
|
|
|
unsigned major = 0, minor = 0;
|
|
|
|
while( major < 100000 && isdigit( *p ) )
|
|
|
|
{ major *= 10; major += *p - '0'; ++p; }
|
|
|
|
if( *p == '.' ) ++p;
|
|
|
|
else
|
|
|
|
out: { show_error( "Invalid LZ_version_string in lzlib.h" ); return 2; }
|
|
|
|
while( minor < 100 && isdigit( *p ) )
|
|
|
|
{ minor *= 10; minor += *p - '0'; ++p; }
|
|
|
|
if( *p && *p != '-' && *p != '.' && !std::islower( *p ) ) goto out;
|
|
|
|
const unsigned version = major * 1000 + minor;
|
|
|
|
if( LZ_API_VERSION != version )
|
|
|
|
{
|
|
|
|
if( verbosity >= 0 )
|
|
|
|
std::fprintf( stderr, "%s: Version mismatch in lzlib.h: "
|
|
|
|
"LZ_API_VERSION = %u, should be %u.\n",
|
|
|
|
program_name, LZ_API_VERSION, version );
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2025-02-24 04:17:44 +01:00
|
|
|
int check_lib()
|
|
|
|
{
|
2025-02-24 04:18:20 +01:00
|
|
|
int retval = check_lzlib_ver();
|
2025-02-24 04:17:44 +01:00
|
|
|
if( std::strcmp( LZ_version_string, LZ_version() ) != 0 )
|
2025-02-24 04:18:20 +01:00
|
|
|
{ set_retval( retval, 1 );
|
2025-02-24 04:17:44 +01:00
|
|
|
if( verbosity >= 0 )
|
|
|
|
std::printf( "warning: LZ_version_string != LZ_version() (%s vs %s)\n",
|
|
|
|
LZ_version_string, LZ_version() ); }
|
|
|
|
#if defined LZ_API_VERSION && LZ_API_VERSION >= 1012
|
|
|
|
if( LZ_API_VERSION != LZ_api_version() )
|
2025-02-24 04:18:20 +01:00
|
|
|
{ set_retval( retval, 1 );
|
2025-02-24 04:17:44 +01:00
|
|
|
if( verbosity >= 0 )
|
|
|
|
std::printf( "warning: LZ_API_VERSION != LZ_api_version() (%u vs %u)\n",
|
|
|
|
LZ_API_VERSION, LZ_api_version() ); }
|
|
|
|
#endif
|
2025-02-24 04:19:26 +01:00
|
|
|
if( verbosity >= 1 ) show_lzlib_version();
|
2025-02-24 04:18:20 +01:00
|
|
|
return retval;
|
2025-02-24 04:17:44 +01:00
|
|
|
}
|
|
|
|
|
2025-02-24 04:08:02 +01:00
|
|
|
} // end namespace
|
|
|
|
|
2025-02-24 04:15:24 +01:00
|
|
|
void Pretty_print::operator()( const char * const msg ) const
|
|
|
|
{
|
2025-02-24 04:18:20 +01:00
|
|
|
if( verbosity < 0 ) return;
|
|
|
|
if( first_post )
|
2025-02-24 04:15:24 +01:00
|
|
|
{
|
2025-02-24 04:18:20 +01:00
|
|
|
first_post = false;
|
|
|
|
std::fputs( padded_name.c_str(), stderr );
|
|
|
|
if( !msg ) std::fflush( stderr );
|
2025-02-24 04:15:24 +01:00
|
|
|
}
|
2025-02-24 04:18:20 +01:00
|
|
|
if( msg ) std::fprintf( stderr, "%s\n", msg );
|
2025-02-24 04:15:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2025-02-24 04:14:20 +01:00
|
|
|
const char * bad_version( const unsigned version )
|
|
|
|
{
|
|
|
|
static char buf[80];
|
|
|
|
snprintf( buf, sizeof buf, "Version %u member format not supported.",
|
|
|
|
version );
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const char * format_ds( const unsigned dictionary_size )
|
|
|
|
{
|
2025-02-24 04:19:26 +01:00
|
|
|
enum { bufsize = 16, factor = 1024, n = 3 };
|
2025-02-24 04:14:20 +01:00
|
|
|
static char buf[bufsize];
|
2025-02-24 04:19:26 +01:00
|
|
|
const char * const prefix[n] = { "Ki", "Mi", "Gi" };
|
2025-02-24 04:14:20 +01:00
|
|
|
const char * p = "";
|
|
|
|
const char * np = " ";
|
|
|
|
unsigned num = dictionary_size;
|
2025-02-24 04:19:50 +01:00
|
|
|
bool exact = num % factor == 0;
|
2025-02-24 04:14:20 +01:00
|
|
|
|
2025-02-24 04:19:26 +01:00
|
|
|
for( int i = 0; i < n && ( num > 9999 || ( exact && num >= factor ) ); ++i )
|
2025-02-24 04:14:20 +01:00
|
|
|
{ num /= factor; if( num % factor != 0 ) exact = false;
|
|
|
|
p = prefix[i]; np = ""; }
|
|
|
|
snprintf( buf, bufsize, "%s%4u %sB", np, num, p );
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2025-02-24 04:08:02 +01:00
|
|
|
void show_header( const unsigned dictionary_size )
|
|
|
|
{
|
2025-02-24 04:17:44 +01:00
|
|
|
std::fprintf( stderr, "dict %s, ", format_ds( dictionary_size ) );
|
2025-02-24 04:08:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
2025-02-24 03:22:05 +01:00
|
|
|
|
2025-02-24 04:20:02 +01:00
|
|
|
// separate numbers of 5 or more digits in groups of 3 digits using '_'
|
2025-02-24 04:18:20 +01:00
|
|
|
const char * format_num3( unsigned long long num )
|
|
|
|
{
|
2025-02-24 04:19:26 +01:00
|
|
|
enum { buffers = 8, bufsize = 4 * sizeof num, n = 10 };
|
|
|
|
const char * const si_prefix = "kMGTPEZYRQ";
|
|
|
|
const char * const binary_prefix = "KMGTPEZYRQ";
|
2025-02-24 04:18:20 +01:00
|
|
|
static char buffer[buffers][bufsize]; // circle of static buffers for printf
|
|
|
|
static int current = 0;
|
|
|
|
|
|
|
|
char * const buf = buffer[current++]; current %= buffers;
|
|
|
|
char * p = buf + bufsize - 1; // fill the buffer backwards
|
|
|
|
*p = 0; // terminator
|
2025-02-24 04:19:50 +01:00
|
|
|
if( num > 9999 )
|
2025-02-24 04:18:20 +01:00
|
|
|
{
|
|
|
|
char prefix = 0; // try binary first, then si
|
2025-02-24 04:19:26 +01:00
|
|
|
for( int i = 0; i < n && num != 0 && num % 1024 == 0; ++i )
|
2025-02-24 04:18:20 +01:00
|
|
|
{ num /= 1024; prefix = binary_prefix[i]; }
|
|
|
|
if( prefix ) *(--p) = 'i';
|
|
|
|
else
|
2025-02-24 04:19:26 +01:00
|
|
|
for( int i = 0; i < n && num != 0 && num % 1000 == 0; ++i )
|
2025-02-24 04:18:20 +01:00
|
|
|
{ num /= 1000; prefix = si_prefix[i]; }
|
|
|
|
if( prefix ) *(--p) = prefix;
|
|
|
|
}
|
2025-02-24 04:20:02 +01:00
|
|
|
const bool split = num >= 10000;
|
2025-02-24 04:18:20 +01:00
|
|
|
|
|
|
|
for( int i = 0; ; )
|
|
|
|
{
|
|
|
|
*(--p) = num % 10 + '0'; num /= 10; if( num == 0 ) break;
|
|
|
|
if( split && ++i >= 3 ) { i = 0; *(--p) = '_'; }
|
|
|
|
}
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2025-02-24 04:19:26 +01:00
|
|
|
void show_option_error( const char * const arg, const char * const msg,
|
|
|
|
const char * const option_name )
|
|
|
|
{
|
|
|
|
if( verbosity >= 0 )
|
|
|
|
std::fprintf( stderr, "%s: '%s': %s option '%s'.\n",
|
|
|
|
program_name, arg, msg, option_name );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Recognized formats: <num>k, <num>Ki, <num>[MGTPEZYRQ][i]
|
2025-02-24 04:18:20 +01:00
|
|
|
unsigned long long getnum( const char * const arg,
|
|
|
|
const char * const option_name,
|
2025-02-24 03:57:48 +01:00
|
|
|
const unsigned long long llimit,
|
|
|
|
const unsigned long long ulimit )
|
2025-02-24 03:22:05 +01:00
|
|
|
{
|
2025-02-24 03:57:48 +01:00
|
|
|
char * tail;
|
2025-02-24 03:59:46 +01:00
|
|
|
errno = 0;
|
2025-02-24 04:18:20 +01:00
|
|
|
unsigned long long result = strtoull( arg, &tail, 0 );
|
|
|
|
if( tail == arg )
|
2025-02-24 04:19:26 +01:00
|
|
|
{ show_option_error( arg, "Bad or missing numerical argument in",
|
|
|
|
option_name ); std::exit( 1 ); }
|
2025-02-24 03:22:05 +01:00
|
|
|
|
|
|
|
if( !errno && tail[0] )
|
|
|
|
{
|
2025-02-24 04:19:50 +01:00
|
|
|
const unsigned factor = (tail[1] == 'i') ? 1024 : 1000;
|
2025-02-24 04:12:55 +01:00
|
|
|
int exponent = 0; // 0 = bad multiplier
|
2025-02-24 03:22:05 +01:00
|
|
|
switch( tail[0] )
|
|
|
|
{
|
2025-02-24 04:19:26 +01:00
|
|
|
case 'Q': exponent = 10; break;
|
|
|
|
case 'R': exponent = 9; break;
|
2025-02-24 03:22:05 +01:00
|
|
|
case 'Y': exponent = 8; break;
|
|
|
|
case 'Z': exponent = 7; break;
|
|
|
|
case 'E': exponent = 6; break;
|
|
|
|
case 'P': exponent = 5; break;
|
|
|
|
case 'T': exponent = 4; break;
|
|
|
|
case 'G': exponent = 3; break;
|
|
|
|
case 'M': exponent = 2; break;
|
2025-02-24 04:12:55 +01:00
|
|
|
case 'K': if( factor == 1024 ) exponent = 1; break;
|
|
|
|
case 'k': if( factor == 1000 ) exponent = 1; break;
|
2025-02-24 03:22:05 +01:00
|
|
|
}
|
2025-02-24 04:12:55 +01:00
|
|
|
if( exponent <= 0 )
|
2025-02-24 04:19:26 +01:00
|
|
|
{ show_option_error( arg, "Bad multiplier in numerical argument of",
|
|
|
|
option_name ); std::exit( 1 ); }
|
2025-02-24 03:22:05 +01:00
|
|
|
for( int i = 0; i < exponent; ++i )
|
|
|
|
{
|
2025-02-24 03:57:48 +01:00
|
|
|
if( ulimit / factor >= result ) result *= factor;
|
2025-02-24 03:22:05 +01:00
|
|
|
else { errno = ERANGE; break; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if( !errno && ( result < llimit || result > ulimit ) ) errno = ERANGE;
|
|
|
|
if( errno )
|
|
|
|
{
|
2025-02-24 04:18:20 +01:00
|
|
|
if( verbosity >= 0 )
|
2025-02-24 04:19:26 +01:00
|
|
|
std::fprintf( stderr, "%s: '%s': Value out of limits [%s,%s] in "
|
|
|
|
"option '%s'.\n", program_name, arg, format_num3( llimit ),
|
2025-02-24 04:18:20 +01:00
|
|
|
format_num3( ulimit ), option_name );
|
2025-02-24 03:22:05 +01:00
|
|
|
std::exit( 1 );
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2025-02-24 04:18:20 +01:00
|
|
|
int get_dict_size( const char * const arg, const char * const option_name )
|
2025-02-24 03:22:05 +01:00
|
|
|
{
|
2025-02-24 03:57:48 +01:00
|
|
|
char * tail;
|
2025-02-24 04:14:20 +01:00
|
|
|
const long bits = std::strtol( arg, &tail, 0 );
|
2025-02-24 03:25:08 +01:00
|
|
|
if( bits >= LZ_min_dictionary_bits() &&
|
|
|
|
bits <= LZ_max_dictionary_bits() && *tail == 0 )
|
2025-02-24 04:16:09 +01:00
|
|
|
return 1 << bits;
|
2025-02-24 04:18:20 +01:00
|
|
|
int dictionary_size = getnum( arg, option_name, LZ_min_dictionary_size(),
|
|
|
|
LZ_max_dictionary_size() );
|
2025-02-24 04:12:55 +01:00
|
|
|
if( dictionary_size == 65535 ) ++dictionary_size; // no fast encoder
|
2025-02-24 04:09:39 +01:00
|
|
|
return dictionary_size;
|
2025-02-24 03:22:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2025-02-24 04:14:20 +01:00
|
|
|
void set_mode( Mode & program_mode, const Mode new_mode )
|
|
|
|
{
|
|
|
|
if( program_mode != m_compress && program_mode != new_mode )
|
|
|
|
{
|
|
|
|
show_error( "Only one operation can be specified.", 0, true );
|
|
|
|
std::exit( 1 );
|
|
|
|
}
|
|
|
|
program_mode = new_mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2025-02-24 03:50:51 +01:00
|
|
|
int extension_index( const std::string & name )
|
2025-02-24 03:22:05 +01:00
|
|
|
{
|
2025-02-24 04:14:20 +01:00
|
|
|
for( int eindex = 0; known_extensions[eindex].from; ++eindex )
|
2025-02-24 03:22:05 +01:00
|
|
|
{
|
2025-02-24 04:14:20 +01:00
|
|
|
const std::string ext( known_extensions[eindex].from );
|
2025-02-24 03:22:05 +01:00
|
|
|
if( name.size() > ext.size() &&
|
|
|
|
name.compare( name.size() - ext.size(), ext.size(), ext ) == 0 )
|
2025-02-24 04:14:20 +01:00
|
|
|
return eindex;
|
2025-02-24 03:22:05 +01:00
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2025-02-24 04:15:24 +01:00
|
|
|
|
2025-02-24 04:17:44 +01:00
|
|
|
void set_c_outname( const std::string & name, const bool filenames_given,
|
|
|
|
const bool force_ext )
|
2025-02-24 04:15:24 +01:00
|
|
|
{
|
2025-02-24 04:17:44 +01:00
|
|
|
/* zupdate < 1.9 depends on lzip adding the extension '.lz' to name when
|
|
|
|
reading from standard input. */
|
2025-02-24 04:15:24 +01:00
|
|
|
output_filename = name;
|
2025-02-24 04:17:44 +01:00
|
|
|
if( force_ext ||
|
|
|
|
( !filenames_given && extension_index( output_filename ) < 0 ) )
|
2025-02-24 04:15:24 +01:00
|
|
|
output_filename += known_extensions[0].from;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void set_d_outname( const std::string & name, const int eindex )
|
|
|
|
{
|
|
|
|
if( eindex >= 0 )
|
|
|
|
{
|
|
|
|
const std::string from( known_extensions[eindex].from );
|
|
|
|
if( name.size() > from.size() )
|
|
|
|
{
|
|
|
|
output_filename.assign( name, 0, name.size() - from.size() );
|
|
|
|
output_filename += known_extensions[eindex].to;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
output_filename = name; output_filename += ".out";
|
|
|
|
if( verbosity >= 1 )
|
2025-02-24 04:19:26 +01:00
|
|
|
std::fprintf( stderr, "%s: %s: Can't guess original name -- using '%s'\n",
|
2025-02-24 04:15:24 +01:00
|
|
|
program_name, name.c_str(), output_filename.c_str() );
|
|
|
|
}
|
|
|
|
|
2025-02-24 04:14:20 +01:00
|
|
|
} // end namespace
|
2025-02-24 03:22:05 +01:00
|
|
|
|
2025-02-24 03:59:46 +01:00
|
|
|
int open_instream( const char * const name, struct stat * const in_statsp,
|
2025-02-24 04:17:44 +01:00
|
|
|
const bool one_to_one, const bool reg_only )
|
2025-02-24 03:22:05 +01:00
|
|
|
{
|
2025-02-24 04:14:20 +01:00
|
|
|
int infd = open( name, O_RDONLY | O_BINARY );
|
|
|
|
if( infd < 0 )
|
|
|
|
show_file_error( name, "Can't open input file", errno );
|
2025-02-24 03:22:05 +01:00
|
|
|
else
|
|
|
|
{
|
2025-02-24 04:14:20 +01:00
|
|
|
const int i = fstat( infd, in_statsp );
|
|
|
|
const mode_t mode = in_statsp->st_mode;
|
2025-02-24 04:19:50 +01:00
|
|
|
const bool can_read = i == 0 && !reg_only &&
|
|
|
|
( S_ISBLK( mode ) || S_ISCHR( mode ) ||
|
|
|
|
S_ISFIFO( mode ) || S_ISSOCK( mode ) );
|
2025-02-24 04:17:44 +01:00
|
|
|
if( i != 0 || ( !S_ISREG( mode ) && ( !can_read || one_to_one ) ) )
|
2025-02-24 03:22:05 +01:00
|
|
|
{
|
|
|
|
if( verbosity >= 0 )
|
2025-02-24 04:19:26 +01:00
|
|
|
std::fprintf( stderr, "%s: %s: Input file is not a regular file%s.\n",
|
2025-02-24 04:17:44 +01:00
|
|
|
program_name, name, ( can_read && one_to_one ) ?
|
2025-02-24 04:19:26 +01:00
|
|
|
",\n and neither '-c' nor '-o' were specified" : "" );
|
2025-02-24 04:14:20 +01:00
|
|
|
close( infd );
|
|
|
|
infd = -1;
|
2025-02-24 03:22:05 +01:00
|
|
|
}
|
|
|
|
}
|
2025-02-24 03:26:51 +01:00
|
|
|
return infd;
|
2025-02-24 03:22:05 +01:00
|
|
|
}
|
|
|
|
|
2025-02-24 04:14:20 +01:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
int open_instream2( const char * const name, struct stat * const in_statsp,
|
|
|
|
const Mode program_mode, const int eindex,
|
2025-02-24 04:17:44 +01:00
|
|
|
const bool one_to_one, const bool recompress )
|
2025-02-24 04:14:20 +01:00
|
|
|
{
|
|
|
|
if( program_mode == m_compress && !recompress && eindex >= 0 )
|
|
|
|
{
|
|
|
|
if( verbosity >= 0 )
|
2025-02-24 04:19:50 +01:00
|
|
|
std::fprintf( stderr, "%s: %s: Input file already has '%s' suffix, ignored.\n",
|
2025-02-24 04:14:20 +01:00
|
|
|
program_name, name, known_extensions[eindex].from );
|
|
|
|
return -1;
|
|
|
|
}
|
2025-02-24 04:17:44 +01:00
|
|
|
return open_instream( name, in_statsp, one_to_one, false );
|
2025-02-24 04:14:20 +01:00
|
|
|
}
|
|
|
|
|
2025-02-24 03:22:05 +01:00
|
|
|
|
2025-02-24 04:19:26 +01:00
|
|
|
bool make_dirs( const std::string & name )
|
|
|
|
{
|
|
|
|
int i = name.size();
|
|
|
|
while( i > 0 && name[i-1] != '/' ) --i; // remove last component
|
|
|
|
while( i > 0 && name[i-1] == '/' ) --i; // remove slash(es)
|
|
|
|
const int dirsize = i; // size of dirname without trailing slash(es)
|
|
|
|
|
|
|
|
for( i = 0; i < dirsize; ) // if dirsize == 0, dirname is '/' or empty
|
|
|
|
{
|
|
|
|
while( i < dirsize && name[i] == '/' ) ++i;
|
|
|
|
const int first = i;
|
|
|
|
while( i < dirsize && name[i] != '/' ) ++i;
|
|
|
|
if( first < i )
|
|
|
|
{
|
|
|
|
const std::string partial( name, 0, i );
|
|
|
|
const mode_t mode = S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH;
|
|
|
|
struct stat st;
|
|
|
|
if( stat( partial.c_str(), &st ) == 0 )
|
|
|
|
{ if( !S_ISDIR( st.st_mode ) ) { errno = ENOTDIR; return false; } }
|
|
|
|
else if( mkdir( partial.c_str(), mode ) != 0 && errno != EEXIST )
|
|
|
|
return false; // if EEXIST, another process created the dir
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2025-02-24 04:17:44 +01:00
|
|
|
bool open_outstream( const bool force, const bool protect )
|
2025-02-24 03:22:05 +01:00
|
|
|
{
|
2025-02-24 04:12:55 +01:00
|
|
|
const mode_t usr_rw = S_IRUSR | S_IWUSR;
|
|
|
|
const mode_t all_rw = usr_rw | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH;
|
2025-02-24 04:17:44 +01:00
|
|
|
const mode_t outfd_mode = protect ? usr_rw : all_rw;
|
2025-02-24 04:03:21 +01:00
|
|
|
int flags = O_CREAT | O_WRONLY | O_BINARY;
|
2025-02-24 03:27:29 +01:00
|
|
|
if( force ) flags |= O_TRUNC; else flags |= O_EXCL;
|
|
|
|
|
2025-02-24 04:19:26 +01:00
|
|
|
outfd = -1;
|
2025-02-24 04:19:50 +01:00
|
|
|
if( output_filename.size() && output_filename.end()[-1] == '/' )
|
|
|
|
errno = EISDIR;
|
2025-02-24 04:19:26 +01:00
|
|
|
else {
|
|
|
|
if( !protect && !make_dirs( output_filename ) )
|
|
|
|
{ show_file_error( output_filename.c_str(),
|
|
|
|
"Error creating intermediate directory", errno ); return false; }
|
|
|
|
outfd = open( output_filename.c_str(), flags, outfd_mode );
|
|
|
|
if( outfd >= 0 ) { delete_output_on_interrupt = true; return true; }
|
2025-02-24 03:33:34 +01:00
|
|
|
if( errno == EEXIST )
|
2025-02-24 04:19:26 +01:00
|
|
|
{ show_file_error( output_filename.c_str(),
|
|
|
|
"Output file already exists, skipping." ); return false; }
|
2025-02-24 03:22:05 +01:00
|
|
|
}
|
2025-02-24 04:19:26 +01:00
|
|
|
show_file_error( output_filename.c_str(), "Can't create output file", errno );
|
|
|
|
return false;
|
2025-02-24 03:22:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2025-02-24 04:16:09 +01:00
|
|
|
void set_signals( void (*action)(int) )
|
|
|
|
{
|
|
|
|
std::signal( SIGHUP, action );
|
|
|
|
std::signal( SIGINT, action );
|
|
|
|
std::signal( SIGTERM, action );
|
|
|
|
}
|
|
|
|
|
2025-02-24 04:08:02 +01:00
|
|
|
} // end namespace
|
|
|
|
|
2025-02-24 04:17:44 +01:00
|
|
|
/* This can be called from any thread, main thread or sub-threads alike,
|
|
|
|
since they all call common helper functions like 'xlock' that call
|
|
|
|
cleanup_and_fail() in case of an error.
|
|
|
|
*/
|
2025-02-24 04:08:02 +01:00
|
|
|
void cleanup_and_fail( const int retval )
|
|
|
|
{
|
|
|
|
// only one thread can delete and exit
|
|
|
|
static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
|
|
|
|
|
2025-02-24 04:16:09 +01:00
|
|
|
set_signals( SIG_IGN ); // ignore signals
|
2025-02-24 04:08:02 +01:00
|
|
|
pthread_mutex_lock( &mutex ); // ignore errors to avoid loop
|
2025-02-24 04:15:24 +01:00
|
|
|
const int saved_verbosity = verbosity;
|
|
|
|
verbosity = -1; // suppress messages from other threads
|
2025-02-24 04:08:02 +01:00
|
|
|
if( delete_output_on_interrupt )
|
|
|
|
{
|
|
|
|
delete_output_on_interrupt = false;
|
2025-02-24 04:15:24 +01:00
|
|
|
if( saved_verbosity >= 0 )
|
2025-02-24 04:19:26 +01:00
|
|
|
std::fprintf( stderr, "%s: %s: Deleting output file, if it exists.\n",
|
2025-02-24 04:08:02 +01:00
|
|
|
program_name, output_filename.c_str() );
|
|
|
|
if( outfd >= 0 ) { close( outfd ); outfd = -1; }
|
2025-02-24 04:15:24 +01:00
|
|
|
if( std::remove( output_filename.c_str() ) != 0 && errno != ENOENT &&
|
|
|
|
saved_verbosity >= 0 )
|
2025-02-24 04:19:26 +01:00
|
|
|
std::fprintf( stderr, "%s: warning: deletion of output file failed: %s\n",
|
|
|
|
program_name, std::strerror( errno ) );
|
2025-02-24 04:08:02 +01:00
|
|
|
}
|
|
|
|
std::exit( retval );
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
2025-02-24 03:22:05 +01:00
|
|
|
|
2025-02-24 04:16:09 +01:00
|
|
|
extern "C" void signal_handler( int )
|
|
|
|
{
|
|
|
|
show_error( "Control-C or similar caught, quitting." );
|
|
|
|
cleanup_and_fail( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2025-02-24 04:17:44 +01:00
|
|
|
bool check_tty_in( const char * const input_filename, const int infd,
|
|
|
|
const Mode program_mode, int & retval )
|
|
|
|
{
|
|
|
|
if( ( program_mode == m_decompress || program_mode == m_test ) &&
|
|
|
|
isatty( infd ) ) // for example /dev/tty
|
|
|
|
{ show_file_error( input_filename,
|
|
|
|
"I won't read compressed data from a terminal." );
|
2025-02-24 04:18:20 +01:00
|
|
|
close( infd ); set_retval( retval, 2 );
|
2025-02-24 04:17:44 +01:00
|
|
|
if( program_mode != m_test ) cleanup_and_fail( retval );
|
|
|
|
return false; }
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool check_tty_out( const Mode program_mode )
|
|
|
|
{
|
|
|
|
if( program_mode == m_compress && isatty( outfd ) )
|
|
|
|
{ show_file_error( output_filename.size() ?
|
|
|
|
output_filename.c_str() : "(stdout)",
|
|
|
|
"I won't write compressed data to a terminal." );
|
|
|
|
return false; }
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Set permissions, owner, and times.
|
2025-02-24 03:25:08 +01:00
|
|
|
void close_and_set_permissions( const struct stat * const in_statsp )
|
2025-02-24 03:22:05 +01:00
|
|
|
{
|
2025-02-24 03:44:03 +01:00
|
|
|
bool warning = false;
|
2025-02-24 03:22:05 +01:00
|
|
|
if( in_statsp )
|
|
|
|
{
|
2025-02-24 04:03:21 +01:00
|
|
|
const mode_t mode = in_statsp->st_mode;
|
2025-02-24 04:19:26 +01:00
|
|
|
// fchown in many cases returns with EPERM, which can be safely ignored.
|
2025-02-24 04:03:21 +01:00
|
|
|
if( fchown( outfd, in_statsp->st_uid, in_statsp->st_gid ) == 0 )
|
|
|
|
{ if( fchmod( outfd, mode ) != 0 ) warning = true; }
|
|
|
|
else
|
|
|
|
if( errno != EPERM ||
|
|
|
|
fchmod( outfd, mode & ~( S_ISUID | S_ISGID | S_ISVTX ) ) != 0 )
|
|
|
|
warning = true;
|
2025-02-24 03:22:05 +01:00
|
|
|
}
|
2025-02-24 04:12:55 +01:00
|
|
|
if( close( outfd ) != 0 )
|
2025-02-24 04:19:26 +01:00
|
|
|
{ show_file_error( output_filename.c_str(), "Error closing output file",
|
|
|
|
errno ); cleanup_and_fail( 1 ); }
|
2025-02-24 03:44:03 +01:00
|
|
|
outfd = -1;
|
2025-02-24 03:22:05 +01:00
|
|
|
delete_output_on_interrupt = false;
|
2025-02-24 03:44:03 +01:00
|
|
|
if( in_statsp )
|
2025-02-24 03:22:05 +01:00
|
|
|
{
|
|
|
|
struct utimbuf t;
|
|
|
|
t.actime = in_statsp->st_atime;
|
|
|
|
t.modtime = in_statsp->st_mtime;
|
2025-02-24 03:44:03 +01:00
|
|
|
if( utime( output_filename.c_str(), &t ) != 0 ) warning = true;
|
2025-02-24 03:22:05 +01:00
|
|
|
}
|
2025-02-24 03:44:03 +01:00
|
|
|
if( warning && verbosity >= 1 )
|
2025-02-24 04:19:26 +01:00
|
|
|
show_file_error( output_filename.c_str(),
|
|
|
|
"warning: can't change output file attributes", errno );
|
2025-02-24 03:22:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // end namespace
|
|
|
|
|
|
|
|
|
2025-02-24 03:50:51 +01:00
|
|
|
void show_error( const char * const msg, const int errcode, const bool help )
|
2025-02-24 03:25:08 +01:00
|
|
|
{
|
2025-02-24 04:12:55 +01:00
|
|
|
if( verbosity < 0 ) return;
|
|
|
|
if( msg && msg[0] )
|
2025-02-24 04:16:09 +01:00
|
|
|
std::fprintf( stderr, "%s: %s%s%s\n", program_name, msg,
|
|
|
|
( errcode > 0 ) ? ": " : "",
|
|
|
|
( errcode > 0 ) ? std::strerror( errcode ) : "" );
|
2025-02-24 04:12:55 +01:00
|
|
|
if( help )
|
|
|
|
std::fprintf( stderr, "Try '%s --help' for more information.\n",
|
|
|
|
invocation_name );
|
2025-02-24 03:25:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2025-02-24 04:14:20 +01:00
|
|
|
void show_file_error( const char * const filename, const char * const msg,
|
|
|
|
const int errcode )
|
|
|
|
{
|
2025-02-24 04:16:09 +01:00
|
|
|
if( verbosity >= 0 )
|
|
|
|
std::fprintf( stderr, "%s: %s: %s%s%s\n", program_name, filename, msg,
|
|
|
|
( errcode > 0 ) ? ": " : "",
|
|
|
|
( errcode > 0 ) ? std::strerror( errcode ) : "" );
|
2025-02-24 04:14:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2025-02-24 03:50:51 +01:00
|
|
|
void internal_error( const char * const msg )
|
2025-02-24 03:25:08 +01:00
|
|
|
{
|
2025-02-24 03:33:34 +01:00
|
|
|
if( verbosity >= 0 )
|
2025-02-24 04:04:08 +01:00
|
|
|
std::fprintf( stderr, "%s: internal error: %s\n", program_name, msg );
|
2025-02-24 03:25:08 +01:00
|
|
|
std::exit( 3 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2025-02-24 04:15:24 +01:00
|
|
|
void show_progress( const unsigned long long packet_size,
|
|
|
|
const unsigned long long cfile_size,
|
|
|
|
const Pretty_print * const p )
|
2025-02-24 04:01:28 +01:00
|
|
|
{
|
2025-02-24 04:10:09 +01:00
|
|
|
static unsigned long long csize = 0; // file_size / 100
|
2025-02-24 04:01:28 +01:00
|
|
|
static unsigned long long pos = 0;
|
|
|
|
static const Pretty_print * pp = 0;
|
2025-02-24 04:03:21 +01:00
|
|
|
static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
|
2025-02-24 04:15:24 +01:00
|
|
|
static bool enabled = true;
|
2025-02-24 04:01:28 +01:00
|
|
|
|
2025-02-24 04:15:24 +01:00
|
|
|
if( !enabled ) return;
|
2025-02-24 04:12:55 +01:00
|
|
|
if( p ) // initialize static vars
|
2025-02-24 04:15:24 +01:00
|
|
|
{
|
|
|
|
if( verbosity < 2 || !isatty( STDERR_FILENO ) ) { enabled = false; return; }
|
|
|
|
csize = cfile_size; pos = 0; pp = p;
|
|
|
|
}
|
2025-02-24 04:12:55 +01:00
|
|
|
if( pp )
|
2025-02-24 04:01:28 +01:00
|
|
|
{
|
2025-02-24 04:12:55 +01:00
|
|
|
xlock( &mutex );
|
|
|
|
pos += packet_size;
|
|
|
|
if( csize > 0 )
|
2025-02-24 04:15:24 +01:00
|
|
|
std::fprintf( stderr, "%4llu%% %.1f MB\r", pos / csize, pos / 1000000.0 );
|
|
|
|
else
|
|
|
|
std::fprintf( stderr, " %.1f MB\r", pos / 1000000.0 );
|
2025-02-24 04:12:55 +01:00
|
|
|
pp->reset(); (*pp)(); // restore cursor position
|
|
|
|
xunlock( &mutex );
|
2025-02-24 04:01:28 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2025-02-24 04:18:20 +01:00
|
|
|
#if defined __MSVCRT__
|
2025-02-24 04:16:09 +01:00
|
|
|
#include <windows.h>
|
|
|
|
#define _SC_NPROCESSORS_ONLN 1
|
|
|
|
#define _SC_THREAD_THREADS_MAX 2
|
|
|
|
|
|
|
|
long sysconf( int flag )
|
|
|
|
{
|
|
|
|
if( flag == _SC_NPROCESSORS_ONLN )
|
|
|
|
{
|
|
|
|
SYSTEM_INFO si;
|
|
|
|
GetSystemInfo( &si );
|
|
|
|
return si.dwNumberOfProcessors;
|
|
|
|
}
|
|
|
|
if( flag != _SC_THREAD_THREADS_MAX ) errno = EINVAL;
|
|
|
|
return -1; // unlimited threads or error
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __MSVCRT__
|
|
|
|
|
|
|
|
|
2025-02-24 03:27:29 +01:00
|
|
|
int main( const int argc, const char * const argv[] )
|
2025-02-24 03:22:05 +01:00
|
|
|
{
|
2025-02-24 04:19:26 +01:00
|
|
|
/* Mapping from gzip/bzip2 style 0..9 compression levels to the
|
|
|
|
corresponding LZMA compression parameters. */
|
2025-02-24 03:27:29 +01:00
|
|
|
const Lzma_options option_mapping[] =
|
2025-02-24 03:22:05 +01:00
|
|
|
{
|
2025-02-24 04:12:55 +01:00
|
|
|
{ 65535, 16 }, // -0 (65535,16 chooses fast encoder)
|
2025-02-24 04:10:09 +01:00
|
|
|
{ 1 << 20, 5 }, // -1
|
|
|
|
{ 3 << 19, 6 }, // -2
|
|
|
|
{ 1 << 21, 8 }, // -3
|
|
|
|
{ 3 << 20, 12 }, // -4
|
|
|
|
{ 1 << 22, 20 }, // -5
|
|
|
|
{ 1 << 23, 36 }, // -6
|
|
|
|
{ 1 << 24, 68 }, // -7
|
|
|
|
{ 3 << 23, 132 }, // -8
|
|
|
|
{ 1 << 25, 273 } }; // -9
|
2025-02-24 03:27:29 +01:00
|
|
|
Lzma_options encoder_options = option_mapping[6]; // default = "-6"
|
2025-02-24 03:57:48 +01:00
|
|
|
std::string default_output_filename;
|
2025-02-24 03:25:27 +01:00
|
|
|
int data_size = 0;
|
2025-02-24 03:25:08 +01:00
|
|
|
int debug_level = 0;
|
2025-02-24 03:33:34 +01:00
|
|
|
int num_workers = 0; // start this many worker threads
|
2025-02-24 04:16:09 +01:00
|
|
|
int in_slots = 4;
|
|
|
|
int out_slots = 64;
|
2025-02-24 03:22:05 +01:00
|
|
|
Mode program_mode = m_compress;
|
2025-02-24 04:19:26 +01:00
|
|
|
Cl_options cl_opts; // command-line options
|
2025-02-24 03:22:05 +01:00
|
|
|
bool force = false;
|
|
|
|
bool keep_input_files = false;
|
2025-02-24 03:44:03 +01:00
|
|
|
bool recompress = false;
|
2025-02-24 03:22:05 +01:00
|
|
|
bool to_stdout = false;
|
2025-02-24 04:17:44 +01:00
|
|
|
if( argc > 0 ) invocation_name = argv[0];
|
2025-02-24 03:22:05 +01:00
|
|
|
|
2025-02-24 04:17:44 +01:00
|
|
|
enum { opt_chk = 256, opt_dbg, opt_in, opt_lt, opt_out };
|
2025-02-24 03:22:05 +01:00
|
|
|
const Arg_parser::Option options[] =
|
|
|
|
{
|
2025-02-24 04:15:24 +01:00
|
|
|
{ '0', "fast", Arg_parser::no },
|
2025-02-24 04:17:44 +01:00
|
|
|
{ '1', 0, Arg_parser::no },
|
|
|
|
{ '2', 0, Arg_parser::no },
|
|
|
|
{ '3', 0, Arg_parser::no },
|
|
|
|
{ '4', 0, Arg_parser::no },
|
|
|
|
{ '5', 0, Arg_parser::no },
|
|
|
|
{ '6', 0, Arg_parser::no },
|
|
|
|
{ '7', 0, Arg_parser::no },
|
|
|
|
{ '8', 0, Arg_parser::no },
|
2025-02-24 04:15:24 +01:00
|
|
|
{ '9', "best", Arg_parser::no },
|
|
|
|
{ 'a', "trailing-error", Arg_parser::no },
|
|
|
|
{ 'b', "member-size", Arg_parser::yes },
|
|
|
|
{ 'B', "data-size", Arg_parser::yes },
|
|
|
|
{ 'c', "stdout", Arg_parser::no },
|
|
|
|
{ 'd', "decompress", Arg_parser::no },
|
|
|
|
{ 'f', "force", Arg_parser::no },
|
|
|
|
{ 'F', "recompress", Arg_parser::no },
|
|
|
|
{ 'h', "help", Arg_parser::no },
|
|
|
|
{ 'k', "keep", Arg_parser::no },
|
|
|
|
{ 'l', "list", Arg_parser::no },
|
|
|
|
{ 'm', "match-length", Arg_parser::yes },
|
|
|
|
{ 'n', "threads", Arg_parser::yes },
|
|
|
|
{ 'o', "output", Arg_parser::yes },
|
|
|
|
{ 'q', "quiet", Arg_parser::no },
|
|
|
|
{ 's', "dictionary-size", Arg_parser::yes },
|
|
|
|
{ 'S', "volume-size", Arg_parser::yes },
|
|
|
|
{ 't', "test", Arg_parser::no },
|
|
|
|
{ 'v', "verbose", Arg_parser::no },
|
|
|
|
{ 'V', "version", Arg_parser::no },
|
2025-02-24 04:17:44 +01:00
|
|
|
{ opt_chk, "check-lib", Arg_parser::no },
|
2025-02-24 04:15:24 +01:00
|
|
|
{ opt_dbg, "debug", Arg_parser::yes },
|
2025-02-24 04:16:09 +01:00
|
|
|
{ opt_in, "in-slots", Arg_parser::yes },
|
2025-02-24 04:15:24 +01:00
|
|
|
{ opt_lt, "loose-trailing", Arg_parser::no },
|
2025-02-24 04:16:09 +01:00
|
|
|
{ opt_out, "out-slots", Arg_parser::yes },
|
2025-02-24 04:19:50 +01:00
|
|
|
{ 0, 0, Arg_parser::no } };
|
2025-02-24 03:22:05 +01:00
|
|
|
|
2025-02-24 03:33:34 +01:00
|
|
|
const Arg_parser parser( argc, argv, options );
|
2025-02-24 03:22:05 +01:00
|
|
|
if( parser.error().size() ) // bad option
|
|
|
|
{ show_error( parser.error().c_str(), 0, true ); return 1; }
|
|
|
|
|
2025-02-24 04:15:24 +01:00
|
|
|
const long num_online = std::max( 1L, sysconf( _SC_NPROCESSORS_ONLN ) );
|
|
|
|
long max_workers = sysconf( _SC_THREAD_THREADS_MAX );
|
|
|
|
if( max_workers < 1 || max_workers > INT_MAX / (int)sizeof (pthread_t) )
|
|
|
|
max_workers = INT_MAX / sizeof (pthread_t);
|
|
|
|
|
2025-02-24 03:22:05 +01:00
|
|
|
int argind = 0;
|
|
|
|
for( ; argind < parser.arguments(); ++argind )
|
|
|
|
{
|
|
|
|
const int code = parser.code( argind );
|
2025-02-24 04:10:09 +01:00
|
|
|
if( !code ) break; // no more options
|
2025-02-24 04:18:20 +01:00
|
|
|
const char * const pn = parser.parsed_name( argind ).c_str();
|
2025-02-24 04:14:20 +01:00
|
|
|
const std::string & sarg = parser.argument( argind );
|
|
|
|
const char * const arg = sarg.c_str();
|
2025-02-24 03:22:05 +01:00
|
|
|
switch( code )
|
|
|
|
{
|
2025-02-24 04:19:50 +01:00
|
|
|
case '0': case '1': case '2': case '3': case '4': case '5':
|
|
|
|
case '6': case '7': case '8': case '9':
|
2025-02-24 03:27:29 +01:00
|
|
|
encoder_options = option_mapping[code-'0']; break;
|
2025-02-24 04:19:26 +01:00
|
|
|
case 'a': cl_opts.ignore_trailing = false; break;
|
2025-02-24 04:19:50 +01:00
|
|
|
case 'b': break; // ignored
|
2025-02-24 04:18:20 +01:00
|
|
|
case 'B': data_size = getnum( arg, pn, 2 * LZ_min_dictionary_size(),
|
2025-02-24 03:25:27 +01:00
|
|
|
2 * LZ_max_dictionary_size() ); break;
|
2025-02-24 03:22:05 +01:00
|
|
|
case 'c': to_stdout = true; break;
|
2025-02-24 04:14:20 +01:00
|
|
|
case 'd': set_mode( program_mode, m_decompress ); break;
|
2025-02-24 03:22:05 +01:00
|
|
|
case 'f': force = true; break;
|
2025-02-24 03:44:03 +01:00
|
|
|
case 'F': recompress = true; break;
|
2025-02-24 03:57:48 +01:00
|
|
|
case 'h': show_help( num_online ); return 0;
|
2025-02-24 03:22:05 +01:00
|
|
|
case 'k': keep_input_files = true; break;
|
2025-02-24 04:14:20 +01:00
|
|
|
case 'l': set_mode( program_mode, m_list ); break;
|
2025-02-24 03:22:05 +01:00
|
|
|
case 'm': encoder_options.match_len_limit =
|
2025-02-24 04:18:20 +01:00
|
|
|
getnum( arg, pn, LZ_min_match_len_limit(),
|
|
|
|
LZ_max_match_len_limit() ); break;
|
|
|
|
case 'n': num_workers = getnum( arg, pn, 1, max_workers ); break;
|
2025-02-24 04:17:44 +01:00
|
|
|
case 'o': if( sarg == "-" ) to_stdout = true;
|
|
|
|
else { default_output_filename = sarg; } break;
|
2025-02-24 03:22:05 +01:00
|
|
|
case 'q': verbosity = -1; break;
|
2025-02-24 04:18:20 +01:00
|
|
|
case 's': encoder_options.dictionary_size = get_dict_size( arg, pn );
|
2025-02-24 03:22:05 +01:00
|
|
|
break;
|
2025-02-24 04:19:50 +01:00
|
|
|
case 'S': break; // ignored
|
2025-02-24 04:14:20 +01:00
|
|
|
case 't': set_mode( program_mode, m_test ); break;
|
2025-02-24 03:22:05 +01:00
|
|
|
case 'v': if( verbosity < 4 ) ++verbosity; break;
|
|
|
|
case 'V': show_version(); return 0;
|
2025-02-24 04:17:44 +01:00
|
|
|
case opt_chk: return check_lib();
|
2025-02-24 04:18:20 +01:00
|
|
|
case opt_dbg: debug_level = getnum( arg, pn, 0, 3 ); break;
|
|
|
|
case opt_in: in_slots = getnum( arg, pn, 1, 64 ); break;
|
2025-02-24 04:19:26 +01:00
|
|
|
case opt_lt: cl_opts.loose_trailing = true; break;
|
2025-02-24 04:18:20 +01:00
|
|
|
case opt_out: out_slots = getnum( arg, pn, 1, 1024 ); break;
|
2025-02-24 04:19:26 +01:00
|
|
|
default: internal_error( "uncaught option." );
|
2025-02-24 03:22:05 +01:00
|
|
|
}
|
2025-02-24 04:10:09 +01:00
|
|
|
} // end process options
|
2025-02-24 03:22:05 +01:00
|
|
|
|
2025-02-24 04:17:44 +01:00
|
|
|
if( LZ_version()[0] < '1' )
|
|
|
|
{ show_error( "Wrong library version. At least lzlib 1.0 is required." );
|
|
|
|
return 1; }
|
|
|
|
|
2025-02-24 04:18:20 +01:00
|
|
|
#if defined __MSVCRT__ || defined __OS2__
|
2025-02-24 03:57:48 +01:00
|
|
|
setmode( STDIN_FILENO, O_BINARY );
|
|
|
|
setmode( STDOUT_FILENO, O_BINARY );
|
2025-02-24 03:44:03 +01:00
|
|
|
#endif
|
|
|
|
|
2025-02-24 04:18:20 +01:00
|
|
|
std::vector< std::string > filenames;
|
2025-02-24 04:14:20 +01:00
|
|
|
bool filenames_given = false;
|
|
|
|
for( ; argind < parser.arguments(); ++argind )
|
|
|
|
{
|
|
|
|
filenames.push_back( parser.argument( argind ) );
|
|
|
|
if( filenames.back() != "-" ) filenames_given = true;
|
|
|
|
}
|
|
|
|
if( filenames.empty() ) filenames.push_back("-");
|
|
|
|
|
2025-02-24 04:19:26 +01:00
|
|
|
if( program_mode == m_list ) return list_files( filenames, cl_opts );
|
2025-02-24 04:14:20 +01:00
|
|
|
|
2025-02-24 04:10:09 +01:00
|
|
|
const bool fast = encoder_options.dictionary_size == 65535 &&
|
|
|
|
encoder_options.match_len_limit == 16;
|
2025-02-24 03:25:27 +01:00
|
|
|
if( data_size <= 0 )
|
2025-02-24 04:08:36 +01:00
|
|
|
{
|
2025-02-24 04:10:09 +01:00
|
|
|
if( fast ) data_size = 1 << 20;
|
2025-02-24 04:08:36 +01:00
|
|
|
else data_size = 2 * std::max( 65536, encoder_options.dictionary_size );
|
|
|
|
}
|
2025-02-24 04:10:09 +01:00
|
|
|
else if( !fast && data_size < encoder_options.dictionary_size )
|
2025-02-24 04:04:08 +01:00
|
|
|
encoder_options.dictionary_size =
|
|
|
|
std::max( data_size, LZ_min_dictionary_size() );
|
2025-02-24 03:25:27 +01:00
|
|
|
|
2025-02-24 03:25:08 +01:00
|
|
|
if( num_workers <= 0 )
|
2025-02-24 04:15:24 +01:00
|
|
|
{
|
2025-02-24 04:16:09 +01:00
|
|
|
if( program_mode == m_compress && sizeof (void *) <= 4 )
|
2025-02-24 04:15:24 +01:00
|
|
|
{
|
2025-02-24 04:16:09 +01:00
|
|
|
// use less than 2.22 GiB on 32 bit systems
|
2025-02-24 04:15:24 +01:00
|
|
|
const long long limit = ( 27LL << 25 ) + ( 11LL << 27 ); // 4 * 568 MiB
|
|
|
|
const long long mem = ( 27LL * data_size ) / 8 +
|
|
|
|
( fast ? 3LL << 19 : 11LL * encoder_options.dictionary_size );
|
|
|
|
const int nmax32 = std::max( limit / mem, 1LL );
|
|
|
|
if( max_workers > nmax32 ) max_workers = nmax32;
|
|
|
|
}
|
2025-02-24 03:25:08 +01:00
|
|
|
num_workers = std::min( num_online, max_workers );
|
2025-02-24 04:15:24 +01:00
|
|
|
}
|
2025-02-24 03:22:05 +01:00
|
|
|
|
2025-02-24 04:17:44 +01:00
|
|
|
if( program_mode == m_test ) to_stdout = false; // apply overrides
|
|
|
|
if( program_mode == m_test || to_stdout ) default_output_filename.clear();
|
|
|
|
|
|
|
|
if( to_stdout && program_mode != m_test ) // check tty only once
|
|
|
|
{ outfd = STDOUT_FILENO; if( !check_tty_out( program_mode ) ) return 1; }
|
|
|
|
else outfd = -1;
|
|
|
|
|
|
|
|
const bool to_file = !to_stdout && program_mode != m_test &&
|
|
|
|
default_output_filename.size();
|
|
|
|
if( !to_stdout && program_mode != m_test && ( filenames_given || to_file ) )
|
2025-02-24 04:16:09 +01:00
|
|
|
set_signals( signal_handler );
|
2025-02-24 03:22:05 +01:00
|
|
|
|
2025-02-24 04:15:24 +01:00
|
|
|
Pretty_print pp( filenames );
|
2025-02-24 03:22:05 +01:00
|
|
|
|
2025-02-24 04:16:09 +01:00
|
|
|
int failed_tests = 0;
|
2025-02-24 03:22:05 +01:00
|
|
|
int retval = 0;
|
2025-02-24 04:17:44 +01:00
|
|
|
const bool one_to_one = !to_stdout && program_mode != m_test && !to_file;
|
2025-02-24 04:12:55 +01:00
|
|
|
bool stdin_used = false;
|
2025-02-24 04:19:26 +01:00
|
|
|
struct stat in_stats;
|
2025-02-24 03:57:48 +01:00
|
|
|
for( unsigned i = 0; i < filenames.size(); ++i )
|
2025-02-24 03:22:05 +01:00
|
|
|
{
|
2025-02-24 04:14:20 +01:00
|
|
|
std::string input_filename;
|
2025-02-24 04:15:24 +01:00
|
|
|
int infd;
|
2025-02-24 04:19:50 +01:00
|
|
|
const bool from_stdin = filenames[i] == "-";
|
2025-02-24 03:22:05 +01:00
|
|
|
|
2025-02-24 04:17:44 +01:00
|
|
|
pp.set_name( filenames[i] );
|
2025-02-24 04:19:50 +01:00
|
|
|
if( from_stdin )
|
2025-02-24 03:22:05 +01:00
|
|
|
{
|
2025-02-24 04:12:55 +01:00
|
|
|
if( stdin_used ) continue; else stdin_used = true;
|
2025-02-24 03:26:51 +01:00
|
|
|
infd = STDIN_FILENO;
|
2025-02-24 04:17:44 +01:00
|
|
|
if( !check_tty_in( pp.name(), infd, program_mode, retval ) ) continue;
|
|
|
|
if( one_to_one ) { outfd = STDOUT_FILENO; output_filename.clear(); }
|
2025-02-24 03:22:05 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2025-02-24 04:14:20 +01:00
|
|
|
const int eindex = extension_index( input_filename = filenames[i] );
|
|
|
|
infd = open_instream2( input_filename.c_str(), &in_stats, program_mode,
|
2025-02-24 04:17:44 +01:00
|
|
|
eindex, one_to_one, recompress );
|
|
|
|
if( infd < 0 ) { set_retval( retval, 1 ); continue; }
|
|
|
|
if( !check_tty_in( pp.name(), infd, program_mode, retval ) ) continue;
|
2025-02-24 04:19:26 +01:00
|
|
|
if( one_to_one ) // open outfd after checking infd
|
2025-02-24 03:22:05 +01:00
|
|
|
{
|
2025-02-24 04:17:44 +01:00
|
|
|
if( program_mode == m_compress )
|
|
|
|
set_c_outname( input_filename, true, true );
|
|
|
|
else set_d_outname( input_filename, eindex );
|
|
|
|
if( !open_outstream( force, true ) )
|
|
|
|
{ close( infd ); set_retval( retval, 1 ); continue; }
|
2025-02-24 03:22:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-02-24 04:17:44 +01:00
|
|
|
if( one_to_one && !check_tty_out( program_mode ) )
|
|
|
|
{ set_retval( retval, 1 ); return retval; } // don't delete a tty
|
|
|
|
|
2025-02-24 04:19:26 +01:00
|
|
|
if( to_file && outfd < 0 ) // open outfd after checking infd
|
2025-02-24 04:12:55 +01:00
|
|
|
{
|
2025-02-24 04:17:44 +01:00
|
|
|
if( program_mode == m_compress ) set_c_outname( default_output_filename,
|
|
|
|
filenames_given, false );
|
|
|
|
else output_filename = default_output_filename;
|
|
|
|
if( !open_outstream( force, false ) || !check_tty_out( program_mode ) )
|
|
|
|
return 1; // check tty only once and don't try to delete a tty
|
2025-02-24 04:12:55 +01:00
|
|
|
}
|
2025-02-24 03:22:05 +01:00
|
|
|
|
2025-02-24 04:17:44 +01:00
|
|
|
const struct stat * const in_statsp =
|
|
|
|
( input_filename.size() && one_to_one ) ? &in_stats : 0;
|
|
|
|
const bool infd_isreg = input_filename.size() && S_ISREG( in_stats.st_mode );
|
2025-02-24 04:15:24 +01:00
|
|
|
const unsigned long long cfile_size =
|
2025-02-24 04:17:44 +01:00
|
|
|
infd_isreg ? ( in_stats.st_size + 99 ) / 100 : 0;
|
2025-02-24 03:57:48 +01:00
|
|
|
int tmp;
|
2025-02-24 03:22:05 +01:00
|
|
|
if( program_mode == m_compress )
|
2025-02-24 04:15:24 +01:00
|
|
|
tmp = compress( cfile_size, data_size, encoder_options.dictionary_size,
|
2025-02-24 04:17:44 +01:00
|
|
|
encoder_options.match_len_limit, num_workers,
|
|
|
|
infd, outfd, pp, debug_level );
|
2025-02-24 03:22:05 +01:00
|
|
|
else
|
2025-02-24 04:19:26 +01:00
|
|
|
tmp = decompress( cfile_size, num_workers, infd, outfd, cl_opts, pp,
|
2025-02-24 04:19:50 +01:00
|
|
|
debug_level, in_slots, out_slots, from_stdin,
|
|
|
|
infd_isreg, one_to_one );
|
2025-02-24 04:16:09 +01:00
|
|
|
if( close( infd ) != 0 )
|
2025-02-24 04:17:44 +01:00
|
|
|
{ show_file_error( pp.name(), "Error closing input file", errno );
|
|
|
|
set_retval( tmp, 1 ); }
|
|
|
|
set_retval( retval, tmp );
|
2025-02-24 04:16:09 +01:00
|
|
|
if( tmp )
|
|
|
|
{ if( program_mode != m_test ) cleanup_and_fail( retval );
|
|
|
|
else ++failed_tests; }
|
2025-02-24 03:22:05 +01:00
|
|
|
|
2025-02-24 04:17:44 +01:00
|
|
|
if( delete_output_on_interrupt && one_to_one )
|
2025-02-24 03:25:08 +01:00
|
|
|
close_and_set_permissions( in_statsp );
|
2025-02-24 04:17:44 +01:00
|
|
|
if( input_filename.size() && !keep_input_files && one_to_one )
|
|
|
|
std::remove( input_filename.c_str() );
|
2025-02-24 03:22:05 +01:00
|
|
|
}
|
2025-02-24 04:19:26 +01:00
|
|
|
if( delete_output_on_interrupt ) // -o
|
|
|
|
close_and_set_permissions( ( retval == 0 && !stdin_used &&
|
|
|
|
filenames_given && filenames.size() == 1 ) ? &in_stats : 0 );
|
2025-02-24 04:17:44 +01:00
|
|
|
else if( outfd >= 0 && close( outfd ) != 0 ) // -c
|
2025-02-24 03:22:05 +01:00
|
|
|
{
|
2025-02-24 04:15:24 +01:00
|
|
|
show_error( "Error closing stdout", errno );
|
2025-02-24 04:17:44 +01:00
|
|
|
set_retval( retval, 1 );
|
2025-02-24 03:22:05 +01:00
|
|
|
}
|
2025-02-24 04:16:09 +01:00
|
|
|
if( failed_tests > 0 && verbosity >= 1 && filenames.size() > 1 )
|
|
|
|
std::fprintf( stderr, "%s: warning: %d %s failed the test.\n",
|
|
|
|
program_name, failed_tests,
|
|
|
|
( failed_tests == 1 ) ? "file" : "files" );
|
2025-02-24 03:22:05 +01:00
|
|
|
return retval;
|
|
|
|
}
|