mirror of
https://github.com/ckolivas/lrzip.git
synced 2026-04-04 22:07:42 +00:00
header-mangling-part-1-move-functions-out-of-headers
This commit is contained in:
parent
f6f0a25ef6
commit
e5dfd2d9d8
5 changed files with 324 additions and 313 deletions
142
rzip.h
142
rzip.h
|
|
@ -74,147 +74,6 @@
|
|||
void fatal(const char *format, ...);
|
||||
void failure(const char *format, ...);
|
||||
|
||||
#ifdef __APPLE__
|
||||
#include <sys/sysctl.h>
|
||||
#define fmemopen fake_fmemopen
|
||||
#define open_memstream fake_open_memstream
|
||||
#define memstream_update_buffer fake_open_memstream_update_buffer
|
||||
#define mremap fake_mremap
|
||||
static inline i64 get_ram(void)
|
||||
{
|
||||
int mib[2];
|
||||
size_t len;
|
||||
i64 *p, ramsize;
|
||||
|
||||
mib[0] = CTL_HW;
|
||||
mib[1] = HW_MEMSIZE;
|
||||
sysctl(mib, 2, NULL, &len, NULL, 0);
|
||||
p = malloc(len);
|
||||
sysctl(mib, 2, p, &len, NULL, 0);
|
||||
ramsize = *p;
|
||||
|
||||
return ramsize;
|
||||
}
|
||||
#else /* __APPLE__ */
|
||||
#define memstream_update_buffer(A, B, C) (0)
|
||||
static inline i64 get_ram(void)
|
||||
{
|
||||
i64 ramsize;
|
||||
FILE *meminfo;
|
||||
char aux[256];
|
||||
char *ignore;
|
||||
|
||||
ramsize = (i64)sysconf(_SC_PHYS_PAGES) * PAGE_SIZE;
|
||||
if (ramsize > 0)
|
||||
return ramsize;
|
||||
|
||||
/* Workaround for uclibc which doesn't properly support sysconf */
|
||||
if(!(meminfo = fopen("/proc/meminfo", "r")))
|
||||
fatal("fopen\n");
|
||||
|
||||
while(!feof(meminfo) && !fscanf(meminfo, "MemTotal: %Lu kB", &ramsize))
|
||||
ignore = fgets(aux, sizeof(aux), meminfo);
|
||||
if (fclose(meminfo) == -1)
|
||||
fatal("fclose");
|
||||
ramsize *= 1000;
|
||||
|
||||
return ramsize;
|
||||
}
|
||||
#endif
|
||||
|
||||
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
|
||||
#define mremap fake_mremap
|
||||
#endif
|
||||
|
||||
#define FLAG_SHOW_PROGRESS (1 << 0)
|
||||
#define FLAG_KEEP_FILES (1 << 1)
|
||||
#define FLAG_TEST_ONLY (1 << 2)
|
||||
#define FLAG_FORCE_REPLACE (1 << 3)
|
||||
#define FLAG_DECOMPRESS (1 << 4)
|
||||
#define FLAG_NO_COMPRESS (1 << 5)
|
||||
#define FLAG_LZO_COMPRESS (1 << 6)
|
||||
#define FLAG_BZIP2_COMPRESS (1 << 7)
|
||||
#define FLAG_ZLIB_COMPRESS (1 << 8)
|
||||
#define FLAG_ZPAQ_COMPRESS (1 << 9)
|
||||
#define FLAG_VERBOSITY (1 << 10)
|
||||
#define FLAG_VERBOSITY_MAX (1 << 11)
|
||||
#define FLAG_STDIN (1 << 12)
|
||||
#define FLAG_STDOUT (1 << 13)
|
||||
#define FLAG_INFO (1 << 14)
|
||||
#define FLAG_UNLIMITED (1 << 15)
|
||||
#define FLAG_HASH (1 << 16)
|
||||
#define FLAG_MD5 (1 << 17)
|
||||
#define FLAG_CHECK (1 << 18)
|
||||
#define FLAG_KEEP_BROKEN (1 << 19)
|
||||
#define FLAG_THRESHOLD (1 << 20)
|
||||
|
||||
#define NO_MD5 (!(HASH_CHECK) && !(HAS_MD5))
|
||||
|
||||
#define BITS32 (sizeof(long) == 4)
|
||||
|
||||
#define CTYPE_NONE 3
|
||||
#define CTYPE_BZIP2 4
|
||||
#define CTYPE_LZO 5
|
||||
#define CTYPE_LZMA 6
|
||||
#define CTYPE_GZIP 7
|
||||
#define CTYPE_ZPAQ 8
|
||||
|
||||
struct rzip_control {
|
||||
char *infile;
|
||||
char *outname;
|
||||
char *outfile;
|
||||
char *outdir;
|
||||
char *tmpdir; // when stdin, stdout, or test used
|
||||
FILE *msgout; //stream for output messages
|
||||
const char *suffix;
|
||||
int compression_level;
|
||||
i64 overhead; // compressor overhead
|
||||
i64 maxram; // the largest chunk of ram to allocate
|
||||
unsigned char lzma_properties[5]; // lzma properties, encoded
|
||||
i64 window;
|
||||
unsigned long flags;
|
||||
i64 ramsize;
|
||||
i64 max_chunk;
|
||||
i64 max_mmap;
|
||||
int threads;
|
||||
int nice_val; // added for consistency
|
||||
int major_version;
|
||||
int minor_version;
|
||||
i64 st_size;
|
||||
long page_size;
|
||||
int fd_out;
|
||||
struct md5_ctx ctx;
|
||||
void *data; // random data pointer associated for use in callbacks
|
||||
i64 md5_read; // How far into the file the md5 has done so far
|
||||
};
|
||||
|
||||
struct stream {
|
||||
i64 last_head;
|
||||
uchar *buf;
|
||||
i64 buflen;
|
||||
i64 bufp;
|
||||
int eos;
|
||||
long uthread_no;
|
||||
long unext_thread;
|
||||
long base_thread;
|
||||
int total_threads;
|
||||
};
|
||||
|
||||
struct stream_info {
|
||||
struct stream *s;
|
||||
int num_streams;
|
||||
int fd;
|
||||
i64 bufsize;
|
||||
i64 cur_pos;
|
||||
i64 initial_pos;
|
||||
i64 total_read;
|
||||
i64 ram_alloced;
|
||||
long thread_no;
|
||||
long next_thread;
|
||||
int chunks;
|
||||
char chunk_bytes;
|
||||
};
|
||||
|
||||
void sighandler();
|
||||
i64 runzip_fd(rzip_control *control, int fd_in, int fd_out, int fd_hist, i64 expected_size);
|
||||
void rzip_fd(rzip_control *control, int fd_in, int fd_out);
|
||||
|
|
@ -225,7 +84,6 @@ i64 read_stream(rzip_control *control, void *ss, int stream, uchar *p, i64 len);
|
|||
int close_stream_out(rzip_control *control, void *ss);
|
||||
int close_stream_in(void *ss);
|
||||
void flush_buffer(rzip_control *control, struct stream_info *sinfo, int stream);
|
||||
void read_config(struct rzip_control *s);
|
||||
ssize_t write_1g(int fd, void *buf, i64 len);
|
||||
ssize_t read_1g(int fd, void *buf, i64 len);
|
||||
void zpipe_compress(FILE *in, FILE *out, FILE *msgout, long long int buf_len, int progress, long thread);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue