blob: 5a74868c19d4adec4ae458fad66d8e213f9458dd [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Erik Andersen61677fe2000-04-13 01:18:56 +00002/*
3 * Gzip implementation for busybox
Eric Andersencc8ed391999-10-05 16:24:54 +00004 *
Erik Andersen61677fe2000-04-13 01:18:56 +00005 * Based on GNU gzip Copyright (C) 1992-1993 Jean-loup Gailly.
6 *
7 * Originally adjusted for busybox by Charles P. Wright <cpw@unix.asb.com>
8 * "this is a stripped down version of gzip I put into busybox, it does
9 * only standard in to standard out with -9 compression. It also requires
10 * the zcat module for some important functions."
11 *
12 * Adjusted further by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
13 * to support files as well as stdin/stdout, and to generally behave itself wrt
14 * command line handling.
15 *
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2 of the License, or
19 * (at your option) any later version.
20 *
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24 * General Public License for more details.
25 *
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 *
Eric Andersencc8ed391999-10-05 16:24:54 +000030 */
Eric Andersencc8ed391999-10-05 16:24:54 +000031
Eric Andersen3570a342000-09-25 21:45:58 +000032#include "busybox.h"
Erik Andersen7ab9c7e2000-05-12 19:41:47 +000033#define BB_DECLARE_EXTERN
34#define bb_need_memory_exhausted
35#include "messages.c"
Erik Andersen61677fe2000-04-13 01:18:56 +000036
37/* These defines are very important for BusyBox. Without these,
38 * huge chunks of ram are pre-allocated making the BusyBox bss
39 * size Freaking Huge(tm), which is a bad thing.*/
40#define SMALL_MEM
41#define DYN_ALLOC
42
Eric Andersencc8ed391999-10-05 16:24:54 +000043/* I don't like nested includes, but the string and io functions are used
44 * too often
45 */
46#include <stdio.h>
Erik Andersen61677fe2000-04-13 01:18:56 +000047#include <string.h>
Eric Andersened3ef502001-01-27 08:24:39 +000048#include <unistd.h>
Erik Andersen61677fe2000-04-13 01:18:56 +000049#define memzero(s, n) memset ((void *)(s), 0, (n))
Eric Andersencc8ed391999-10-05 16:24:54 +000050
51#ifndef RETSIGTYPE
52# define RETSIGTYPE void
53#endif
54
55#define local static
56
Erik Andersene49d5ec2000-02-08 19:58:47 +000057typedef unsigned char uch;
Eric Andersencc8ed391999-10-05 16:24:54 +000058typedef unsigned short ush;
Erik Andersene49d5ec2000-02-08 19:58:47 +000059typedef unsigned long ulg;
Eric Andersencc8ed391999-10-05 16:24:54 +000060
61/* Return codes from gzip */
62#define OK 0
63#define ERROR 1
64#define WARNING 2
65
66/* Compression methods (see algorithm.doc) */
67#define STORED 0
68#define COMPRESSED 1
69#define PACKED 2
70#define LZHED 3
71/* methods 4 to 7 reserved */
72#define DEFLATED 8
73#define MAX_METHODS 9
Erik Andersene49d5ec2000-02-08 19:58:47 +000074extern int method; /* compression method */
Eric Andersencc8ed391999-10-05 16:24:54 +000075
76/* To save memory for 16 bit systems, some arrays are overlaid between
77 * the various modules:
78 * deflate: prev+head window d_buf l_buf outbuf
79 * unlzw: tab_prefix tab_suffix stack inbuf outbuf
80 * inflate: window inbuf
81 * unpack: window inbuf prefix_len
82 * unlzh: left+right window c_table inbuf c_len
83 * For compression, input is done in window[]. For decompression, output
84 * is done in window except for unlzw.
85 */
86
87#ifndef INBUFSIZ
88# ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +000089# define INBUFSIZ 0x2000 /* input buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +000090# else
Erik Andersene49d5ec2000-02-08 19:58:47 +000091# define INBUFSIZ 0x8000 /* input buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +000092# endif
93#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +000094#define INBUF_EXTRA 64 /* required by unlzw() */
Eric Andersencc8ed391999-10-05 16:24:54 +000095
96#ifndef OUTBUFSIZ
97# ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +000098# define OUTBUFSIZ 8192 /* output buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +000099# else
Erik Andersene49d5ec2000-02-08 19:58:47 +0000100# define OUTBUFSIZ 16384 /* output buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +0000101# endif
102#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000103#define OUTBUF_EXTRA 2048 /* required by unlzw() */
Eric Andersencc8ed391999-10-05 16:24:54 +0000104
105#ifndef DIST_BUFSIZE
106# ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +0000107# define DIST_BUFSIZE 0x2000 /* buffer for distances, see trees.c */
Eric Andersencc8ed391999-10-05 16:24:54 +0000108# else
Erik Andersene49d5ec2000-02-08 19:58:47 +0000109# define DIST_BUFSIZE 0x8000 /* buffer for distances, see trees.c */
Eric Andersencc8ed391999-10-05 16:24:54 +0000110# endif
111#endif
112
113#ifdef DYN_ALLOC
Erik Andersen61677fe2000-04-13 01:18:56 +0000114# define EXTERN(type, array) extern type * array
115# define DECLARE(type, array, size) type * array
Eric Andersencc8ed391999-10-05 16:24:54 +0000116# define ALLOC(type, array, size) { \
Erik Andersen61677fe2000-04-13 01:18:56 +0000117 array = (type*)calloc((size_t)(((size)+1L)/2), 2*sizeof(type)); \
Mark Whitleyf57c9442000-12-07 19:56:48 +0000118 if (array == NULL) error_msg(memory_exhausted); \
Eric Andersencc8ed391999-10-05 16:24:54 +0000119 }
Erik Andersen61677fe2000-04-13 01:18:56 +0000120# define FREE(array) {if (array != NULL) free(array), array=NULL;}
Eric Andersencc8ed391999-10-05 16:24:54 +0000121#else
122# define EXTERN(type, array) extern type array[]
123# define DECLARE(type, array, size) type array[size]
124# define ALLOC(type, array, size)
125# define FREE(array)
126#endif
127
Erik Andersene49d5ec2000-02-08 19:58:47 +0000128EXTERN(uch, inbuf); /* input buffer */
129EXTERN(uch, outbuf); /* output buffer */
130EXTERN(ush, d_buf); /* buffer for distances, see trees.c */
131EXTERN(uch, window); /* Sliding window and suffix table (unlzw) */
Eric Andersencc8ed391999-10-05 16:24:54 +0000132#define tab_suffix window
133#ifndef MAXSEG_64K
Erik Andersene49d5ec2000-02-08 19:58:47 +0000134# define tab_prefix prev /* hash link (see deflate.c) */
135# define head (prev+WSIZE) /* hash head (see deflate.c) */
136EXTERN(ush, tab_prefix); /* prefix code (see unlzw.c) */
Eric Andersencc8ed391999-10-05 16:24:54 +0000137#else
138# define tab_prefix0 prev
139# define head tab_prefix1
Erik Andersene49d5ec2000-02-08 19:58:47 +0000140EXTERN(ush, tab_prefix0); /* prefix for even codes */
141EXTERN(ush, tab_prefix1); /* prefix for odd codes */
Eric Andersencc8ed391999-10-05 16:24:54 +0000142#endif
143
Erik Andersene49d5ec2000-02-08 19:58:47 +0000144extern unsigned insize; /* valid bytes in inbuf */
145extern unsigned inptr; /* index of next byte to be processed in inbuf */
146extern unsigned outcnt; /* bytes in output buffer */
Eric Andersencc8ed391999-10-05 16:24:54 +0000147
Erik Andersene49d5ec2000-02-08 19:58:47 +0000148extern long bytes_in; /* number of input bytes */
149extern long bytes_out; /* number of output bytes */
150extern long header_bytes; /* number of bytes in gzip header */
Eric Andersencc8ed391999-10-05 16:24:54 +0000151
152#define isize bytes_in
153/* for compatibility with old zip sources (to be cleaned) */
154
Erik Andersene49d5ec2000-02-08 19:58:47 +0000155extern int ifd; /* input file descriptor */
156extern int ofd; /* output file descriptor */
157extern char ifname[]; /* input file name or "stdin" */
158extern char ofname[]; /* output file name or "stdout" */
159extern char *progname; /* program name */
Eric Andersencc8ed391999-10-05 16:24:54 +0000160
Erik Andersene49d5ec2000-02-08 19:58:47 +0000161extern long time_stamp; /* original time stamp (modification time) */
162extern long ifile_size; /* input file size, -1 for devices (debug only) */
Eric Andersencc8ed391999-10-05 16:24:54 +0000163
Erik Andersene49d5ec2000-02-08 19:58:47 +0000164typedef int file_t; /* Do not use stdio */
165
166#define NO_FILE (-1) /* in memory compression */
Eric Andersencc8ed391999-10-05 16:24:54 +0000167
168
Erik Andersene49d5ec2000-02-08 19:58:47 +0000169#define PACK_MAGIC "\037\036" /* Magic header for packed files */
170#define GZIP_MAGIC "\037\213" /* Magic header for gzip files, 1F 8B */
171#define OLD_GZIP_MAGIC "\037\236" /* Magic header for gzip 0.5 = freeze 1.x */
172#define LZH_MAGIC "\037\240" /* Magic header for SCO LZH Compress files */
173#define PKZIP_MAGIC "\120\113\003\004" /* Magic header for pkzip files */
Eric Andersencc8ed391999-10-05 16:24:54 +0000174
175/* gzip flag byte */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000176#define ASCII_FLAG 0x01 /* bit 0 set: file probably ascii text */
177#define CONTINUATION 0x02 /* bit 1 set: continuation of multi-part gzip file */
178#define EXTRA_FIELD 0x04 /* bit 2 set: extra field present */
179#define ORIG_NAME 0x08 /* bit 3 set: original file name present */
180#define COMMENT 0x10 /* bit 4 set: file comment present */
181#define ENCRYPTED 0x20 /* bit 5 set: file is encrypted */
182#define RESERVED 0xC0 /* bit 6,7: reserved */
Eric Andersencc8ed391999-10-05 16:24:54 +0000183
184/* internal file attribute */
185#define UNKNOWN 0xffff
186#define BINARY 0
187#define ASCII 1
188
189#ifndef WSIZE
Erik Andersene49d5ec2000-02-08 19:58:47 +0000190# define WSIZE 0x8000 /* window size--must be a power of two, and */
191#endif /* at least 32K for zip's deflate method */
Eric Andersencc8ed391999-10-05 16:24:54 +0000192
193#define MIN_MATCH 3
194#define MAX_MATCH 258
195/* The minimum and maximum match lengths */
196
197#define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
198/* Minimum amount of lookahead, except at the end of the input file.
199 * See deflate.c for comments about the MIN_MATCH+1.
200 */
201
202#define MAX_DIST (WSIZE-MIN_LOOKAHEAD)
203/* In order to simplify the code, particularly on 16 bit machines, match
204 * distances are limited to MAX_DIST instead of WSIZE.
205 */
206
Erik Andersene49d5ec2000-02-08 19:58:47 +0000207extern int decrypt; /* flag to turn on decryption */
208extern int exit_code; /* program exit code */
209extern int verbose; /* be verbose (-v) */
210extern int quiet; /* be quiet (-q) */
211extern int test; /* check .z file integrity */
212extern int save_orig_name; /* set if original name must be saved */
Eric Andersencc8ed391999-10-05 16:24:54 +0000213
214#define get_byte() (inptr < insize ? inbuf[inptr++] : fill_inbuf(0))
215#define try_byte() (inptr < insize ? inbuf[inptr++] : fill_inbuf(1))
216
217/* put_byte is used for the compressed output, put_ubyte for the
218 * uncompressed output. However unlzw() uses window for its
219 * suffix table instead of its output buffer, so it does not use put_ubyte
220 * (to be cleaned up).
221 */
222#define put_byte(c) {outbuf[outcnt++]=(uch)(c); if (outcnt==OUTBUFSIZ)\
223 flush_outbuf();}
224#define put_ubyte(c) {window[outcnt++]=(uch)(c); if (outcnt==WSIZE)\
225 flush_window();}
226
227/* Output a 16 bit value, lsb first */
228#define put_short(w) \
229{ if (outcnt < OUTBUFSIZ-2) { \
230 outbuf[outcnt++] = (uch) ((w) & 0xff); \
231 outbuf[outcnt++] = (uch) ((ush)(w) >> 8); \
232 } else { \
233 put_byte((uch)((w) & 0xff)); \
234 put_byte((uch)((ush)(w) >> 8)); \
235 } \
236}
237
238/* Output a 32 bit value to the bit stream, lsb first */
239#define put_long(n) { \
240 put_short((n) & 0xffff); \
241 put_short(((ulg)(n)) >> 16); \
242}
243
Erik Andersene49d5ec2000-02-08 19:58:47 +0000244#define seekable() 0 /* force sequential output */
245#define translate_eol 0 /* no option -a yet */
Eric Andersencc8ed391999-10-05 16:24:54 +0000246
Erik Andersene49d5ec2000-02-08 19:58:47 +0000247#define tolow(c) (isupper(c) ? (c)-'A'+'a' : (c)) /* force to lower case */
Eric Andersencc8ed391999-10-05 16:24:54 +0000248
249/* Macros for getting two-byte and four-byte header values */
250#define SH(p) ((ush)(uch)((p)[0]) | ((ush)(uch)((p)[1]) << 8))
251#define LG(p) ((ulg)(SH(p)) | ((ulg)(SH((p)+2)) << 16))
252
253/* Diagnostic functions */
254#ifdef DEBUG
Mark Whitleyf57c9442000-12-07 19:56:48 +0000255# define Assert(cond,msg) {if(!(cond)) error_msg(msg);}
Eric Andersencc8ed391999-10-05 16:24:54 +0000256# define Trace(x) fprintf x
257# define Tracev(x) {if (verbose) fprintf x ;}
258# define Tracevv(x) {if (verbose>1) fprintf x ;}
259# define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
260# define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
261#else
262# define Assert(cond,msg)
263# define Trace(x)
264# define Tracev(x)
265# define Tracevv(x)
266# define Tracec(c,x)
267# define Tracecv(c,x)
268#endif
269
270#define WARN(msg) {if (!quiet) fprintf msg ; \
271 if (exit_code == OK) exit_code = WARNING;}
272
Eric Andersencc8ed391999-10-05 16:24:54 +0000273
274 /* in zip.c: */
Erik Andersen61677fe2000-04-13 01:18:56 +0000275extern int zip (int in, int out);
276extern int file_read (char *buf, unsigned size);
Eric Andersencc8ed391999-10-05 16:24:54 +0000277
278 /* in unzip.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000279extern int unzip (int in, int out);
280extern int check_zipfile (int in);
Eric Andersencc8ed391999-10-05 16:24:54 +0000281
282 /* in unpack.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000283extern int unpack (int in, int out);
Eric Andersencc8ed391999-10-05 16:24:54 +0000284
285 /* in unlzh.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000286extern int unlzh (int in, int out);
Eric Andersencc8ed391999-10-05 16:24:54 +0000287
288 /* in gzip.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000289RETSIGTYPE abort_gzip (void);
Eric Andersencc8ed391999-10-05 16:24:54 +0000290
Erik Andersene49d5ec2000-02-08 19:58:47 +0000291 /* in deflate.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000292void lm_init (ush * flags);
293ulg deflate (void);
Eric Andersencc8ed391999-10-05 16:24:54 +0000294
Erik Andersene49d5ec2000-02-08 19:58:47 +0000295 /* in trees.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000296void ct_init (ush * attr, int *method);
297int ct_tally (int dist, int lc);
298ulg flush_block (char *buf, ulg stored_len, int eof);
Eric Andersencc8ed391999-10-05 16:24:54 +0000299
Erik Andersene49d5ec2000-02-08 19:58:47 +0000300 /* in bits.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000301void bi_init (file_t zipfile);
302void send_bits (int value, int length);
303unsigned bi_reverse (unsigned value, int length);
304void bi_windup (void);
305void copy_block (char *buf, unsigned len, int header);
306extern int (*read_buf) (char *buf, unsigned size);
Eric Andersencc8ed391999-10-05 16:24:54 +0000307
308 /* in util.c: */
Erik Andersen61677fe2000-04-13 01:18:56 +0000309extern int copy (int in, int out);
310extern ulg updcrc (uch * s, unsigned n);
311extern void clear_bufs (void);
312extern int fill_inbuf (int eof_ok);
313extern void flush_outbuf (void);
314extern void flush_window (void);
315extern void write_buf (int fd, void * buf, unsigned cnt);
316extern char *strlwr (char *s);
317extern char *add_envopt (int *argcp, char ***argvp, char *env);
Erik Andersen330fd2b2000-05-19 05:35:19 +0000318extern void read_error_msg (void);
319extern void write_error_msg (void);
Erik Andersen61677fe2000-04-13 01:18:56 +0000320extern void display_ratio (long num, long den, FILE * file);
Eric Andersencc8ed391999-10-05 16:24:54 +0000321
322 /* in inflate.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000323extern int inflate (void);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000324
Eric Andersencc8ed391999-10-05 16:24:54 +0000325/* lzw.h -- define the lzw functions.
326 * Copyright (C) 1992-1993 Jean-loup Gailly.
327 * This is free software; you can redistribute it and/or modify it under the
328 * terms of the GNU General Public License, see the file COPYING.
329 */
330
331#if !defined(OF) && defined(lint)
332# include "gzip.h"
333#endif
334
335#ifndef BITS
336# define BITS 16
337#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000338#define INIT_BITS 9 /* Initial number of bits per code */
Eric Andersencc8ed391999-10-05 16:24:54 +0000339
Erik Andersene49d5ec2000-02-08 19:58:47 +0000340#define BIT_MASK 0x1f /* Mask for 'number of compression bits' */
Eric Andersencc8ed391999-10-05 16:24:54 +0000341/* Mask 0x20 is reserved to mean a fourth header byte, and 0x40 is free.
342 * It's a pity that old uncompress does not check bit 0x20. That makes
343 * extension of the format actually undesirable because old compress
344 * would just crash on the new format instead of giving a meaningful
345 * error message. It does check the number of bits, but it's more
346 * helpful to say "unsupported format, get a new version" than
347 * "can only handle 16 bits".
348 */
349
350#define BLOCK_MODE 0x80
351/* Block compression: if table is full and compression rate is dropping,
352 * clear the dictionary.
353 */
354
Erik Andersene49d5ec2000-02-08 19:58:47 +0000355#define LZW_RESERVED 0x60 /* reserved bits */
Eric Andersencc8ed391999-10-05 16:24:54 +0000356
Erik Andersene49d5ec2000-02-08 19:58:47 +0000357#define CLEAR 256 /* flush the dictionary */
358#define FIRST (CLEAR+1) /* first free entry */
Eric Andersencc8ed391999-10-05 16:24:54 +0000359
Erik Andersene49d5ec2000-02-08 19:58:47 +0000360extern int maxbits; /* max bits per code for LZW */
361extern int block_mode; /* block compress mode -C compatible with 2.0 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000362
363/* revision.h -- define the version number
364 * Copyright (C) 1992-1993 Jean-loup Gailly.
365 * This is free software; you can redistribute it and/or modify it under the
366 * terms of the GNU General Public License, see the file COPYING.
367 */
368
369#define VERSION "1.2.4"
370#define PATCHLEVEL 0
371#define REVDATE "18 Aug 93"
372
373/* This version does not support compression into old compress format: */
374#ifdef LZW
375# undef LZW
376#endif
377
Eric Andersencc8ed391999-10-05 16:24:54 +0000378/* tailor.h -- target dependent definitions
379 * Copyright (C) 1992-1993 Jean-loup Gailly.
380 * This is free software; you can redistribute it and/or modify it under the
381 * terms of the GNU General Public License, see the file COPYING.
382 */
383
384/* The target dependent definitions should be defined here only.
385 * The target dependent functions should be defined in tailor.c.
386 */
387
Eric Andersencc8ed391999-10-05 16:24:54 +0000388
389#if defined(__MSDOS__) && !defined(MSDOS)
390# define MSDOS
391#endif
392
393#if defined(__OS2__) && !defined(OS2)
394# define OS2
395#endif
396
Erik Andersene49d5ec2000-02-08 19:58:47 +0000397#if defined(OS2) && defined(MSDOS) /* MS C under OS/2 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000398# undef MSDOS
399#endif
400
401#ifdef MSDOS
402# ifdef __GNUC__
Erik Andersene49d5ec2000-02-08 19:58:47 +0000403 /* DJGPP version 1.09+ on MS-DOS.
404 * The DJGPP 1.09 stat() function must be upgraded before gzip will
405 * fully work.
406 * No need for DIRENT, since <unistd.h> defines POSIX_SOURCE which
407 * implies DIRENT.
408 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000409# define near
410# else
411# define MAXSEG_64K
412# ifdef __TURBOC__
413# define NO_OFF_T
414# ifdef __BORLANDC__
415# define DIRENT
416# else
417# define NO_UTIME
418# endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000419# else /* MSC */
Eric Andersencc8ed391999-10-05 16:24:54 +0000420# define HAVE_SYS_UTIME_H
421# define NO_UTIME_H
422# endif
423# endif
424# define PATH_SEP2 '\\'
425# define PATH_SEP3 ':'
426# define MAX_PATH_LEN 128
427# define NO_MULTIPLE_DOTS
428# define MAX_EXT_CHARS 3
429# define Z_SUFFIX "z"
430# define NO_CHOWN
431# define PROTO
432# define STDC_HEADERS
433# define NO_SIZE_CHECK
Erik Andersene49d5ec2000-02-08 19:58:47 +0000434# define casemap(c) tolow(c) /* Force file names to lower case */
Eric Andersencc8ed391999-10-05 16:24:54 +0000435# include <io.h>
436# define OS_CODE 0x00
437# define SET_BINARY_MODE(fd) setmode(fd, O_BINARY)
438# if !defined(NO_ASM) && !defined(ASMV)
439# define ASMV
440# endif
441#else
442# define near
443#endif
444
445#ifdef OS2
446# define PATH_SEP2 '\\'
447# define PATH_SEP3 ':'
448# define MAX_PATH_LEN 260
449# ifdef OS2FAT
450# define NO_MULTIPLE_DOTS
451# define MAX_EXT_CHARS 3
452# define Z_SUFFIX "z"
453# define casemap(c) tolow(c)
454# endif
455# define NO_CHOWN
456# define PROTO
457# define STDC_HEADERS
458# include <io.h>
459# define OS_CODE 0x06
460# define SET_BINARY_MODE(fd) setmode(fd, O_BINARY)
461# ifdef _MSC_VER
462# define HAVE_SYS_UTIME_H
463# define NO_UTIME_H
464# define MAXSEG_64K
465# undef near
466# define near _near
467# endif
468# ifdef __EMX__
469# define HAVE_SYS_UTIME_H
470# define NO_UTIME_H
471# define DIRENT
472# define EXPAND(argc,argv) \
473 {_response(&argc, &argv); _wildcard(&argc, &argv);}
474# endif
475# ifdef __BORLANDC__
476# define DIRENT
477# endif
478# ifdef __ZTC__
479# define NO_DIR
480# define NO_UTIME_H
481# include <dos.h>
482# define EXPAND(argc,argv) \
483 {response_expand(&argc, &argv);}
484# endif
485#endif
486
Erik Andersene49d5ec2000-02-08 19:58:47 +0000487#ifdef WIN32 /* Windows NT */
Eric Andersencc8ed391999-10-05 16:24:54 +0000488# define HAVE_SYS_UTIME_H
489# define NO_UTIME_H
490# define PATH_SEP2 '\\'
491# define PATH_SEP3 ':'
492# define MAX_PATH_LEN 260
493# define NO_CHOWN
494# define PROTO
495# define STDC_HEADERS
496# define SET_BINARY_MODE(fd) setmode(fd, O_BINARY)
497# include <io.h>
498# include <malloc.h>
499# ifdef NTFAT
500# define NO_MULTIPLE_DOTS
501# define MAX_EXT_CHARS 3
502# define Z_SUFFIX "z"
Erik Andersene49d5ec2000-02-08 19:58:47 +0000503# define casemap(c) tolow(c) /* Force file names to lower case */
Eric Andersencc8ed391999-10-05 16:24:54 +0000504# endif
505# define OS_CODE 0x0b
506#endif
507
508#ifdef MSDOS
509# ifdef __TURBOC__
510# include <alloc.h>
511# define DYN_ALLOC
Erik Andersene49d5ec2000-02-08 19:58:47 +0000512 /* Turbo C 2.0 does not accept static allocations of large arrays */
513void *fcalloc(unsigned items, unsigned size);
514void fcfree(void *ptr);
515# else /* MSC */
Eric Andersencc8ed391999-10-05 16:24:54 +0000516# include <malloc.h>
517# define fcalloc(nitems,itemsize) halloc((long)(nitems),(itemsize))
518# define fcfree(ptr) hfree(ptr)
519# endif
520#else
521# ifdef MAXSEG_64K
522# define fcalloc(items,size) calloc((items),(size))
523# else
524# define fcalloc(items,size) malloc((size_t)(items)*(size_t)(size))
525# endif
526# define fcfree(ptr) free(ptr)
527#endif
528
529#if defined(VAXC) || defined(VMS)
530# define PATH_SEP ']'
531# define PATH_SEP2 ':'
532# define SUFFIX_SEP ';'
533# define NO_MULTIPLE_DOTS
534# define Z_SUFFIX "-gz"
535# define RECORD_IO 1
536# define casemap(c) tolow(c)
537# define OS_CODE 0x02
538# define OPTIONS_VAR "GZIP_OPT"
539# define STDC_HEADERS
540# define NO_UTIME
541# define EXPAND(argc,argv) vms_expand_args(&argc,&argv);
542# include <file.h>
543# define unlink delete
544# ifdef VAXC
545# define NO_FCNTL_H
546# include <unixio.h>
547# endif
548#endif
549
550#ifdef AMIGA
551# define PATH_SEP2 ':'
552# define STDC_HEADERS
553# define OS_CODE 0x01
554# define ASMV
555# ifdef __GNUC__
556# define DIRENT
557# define HAVE_UNISTD_H
Erik Andersene49d5ec2000-02-08 19:58:47 +0000558# else /* SASC */
Eric Andersencc8ed391999-10-05 16:24:54 +0000559# define NO_STDIN_FSTAT
560# define SYSDIR
561# define NO_SYMLINK
562# define NO_CHOWN
563# define NO_FCNTL_H
Erik Andersene49d5ec2000-02-08 19:58:47 +0000564# include <fcntl.h> /* for read() and write() */
Eric Andersencc8ed391999-10-05 16:24:54 +0000565# define direct dirent
Erik Andersene49d5ec2000-02-08 19:58:47 +0000566extern void _expand_args(int *argc, char ***argv);
567
Eric Andersencc8ed391999-10-05 16:24:54 +0000568# define EXPAND(argc,argv) _expand_args(&argc,&argv);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000569# undef O_BINARY /* disable useless --ascii option */
Eric Andersencc8ed391999-10-05 16:24:54 +0000570# endif
571#endif
572
573#if defined(ATARI) || defined(atarist)
574# ifndef STDC_HEADERS
575# define STDC_HEADERS
576# define HAVE_UNISTD_H
577# define DIRENT
578# endif
579# define ASMV
580# define OS_CODE 0x05
581# ifdef TOSFS
582# define PATH_SEP2 '\\'
583# define PATH_SEP3 ':'
584# define MAX_PATH_LEN 128
585# define NO_MULTIPLE_DOTS
586# define MAX_EXT_CHARS 3
587# define Z_SUFFIX "z"
588# define NO_CHOWN
Erik Andersene49d5ec2000-02-08 19:58:47 +0000589# define casemap(c) tolow(c) /* Force file names to lower case */
Eric Andersencc8ed391999-10-05 16:24:54 +0000590# define NO_SYMLINK
591# endif
592#endif
593
594#ifdef MACOS
595# define PATH_SEP ':'
596# define DYN_ALLOC
597# define PROTO
598# define NO_STDIN_FSTAT
599# define NO_CHOWN
600# define NO_UTIME
601# define chmod(file, mode) (0)
602# define OPEN(name, flags, mode) open(name, flags)
603# define OS_CODE 0x07
604# ifdef MPW
605# define isatty(fd) ((fd) <= 2)
606# endif
607#endif
608
Erik Andersene49d5ec2000-02-08 19:58:47 +0000609#ifdef __50SERIES /* Prime/PRIMOS */
Eric Andersencc8ed391999-10-05 16:24:54 +0000610# define PATH_SEP '>'
611# define STDC_HEADERS
612# define NO_MEMORY_H
613# define NO_UTIME_H
614# define NO_UTIME
Erik Andersene49d5ec2000-02-08 19:58:47 +0000615# define NO_CHOWN
616# define NO_STDIN_FSTAT
617# define NO_SIZE_CHECK
Eric Andersencc8ed391999-10-05 16:24:54 +0000618# define NO_SYMLINK
619# define RECORD_IO 1
Erik Andersene49d5ec2000-02-08 19:58:47 +0000620# define casemap(c) tolow(c) /* Force file names to lower case */
Eric Andersencc8ed391999-10-05 16:24:54 +0000621# define put_char(c) put_byte((c) & 0x7F)
622# define get_char(c) ascii2pascii(get_byte())
Erik Andersene49d5ec2000-02-08 19:58:47 +0000623# define OS_CODE 0x0F /* temporary, subject to change */
Eric Andersencc8ed391999-10-05 16:24:54 +0000624# ifdef SIGTERM
Erik Andersene49d5ec2000-02-08 19:58:47 +0000625# undef SIGTERM /* We don't want a signal handler for SIGTERM */
Eric Andersencc8ed391999-10-05 16:24:54 +0000626# endif
627#endif
628
Erik Andersene49d5ec2000-02-08 19:58:47 +0000629#if defined(pyr) && !defined(NOMEMCPY) /* Pyramid */
630# define NOMEMCPY /* problem with overlapping copies */
Eric Andersencc8ed391999-10-05 16:24:54 +0000631#endif
632
633#ifdef TOPS20
634# define OS_CODE 0x0a
635#endif
636
637#ifndef unix
Erik Andersene49d5ec2000-02-08 19:58:47 +0000638# define NO_ST_INO /* don't rely on inode numbers */
Eric Andersencc8ed391999-10-05 16:24:54 +0000639#endif
640
641
642 /* Common defaults */
643
644#ifndef OS_CODE
Erik Andersene49d5ec2000-02-08 19:58:47 +0000645# define OS_CODE 0x03 /* assume Unix */
Eric Andersencc8ed391999-10-05 16:24:54 +0000646#endif
647
648#ifndef PATH_SEP
649# define PATH_SEP '/'
650#endif
651
652#ifndef casemap
653# define casemap(c) (c)
654#endif
655
656#ifndef OPTIONS_VAR
657# define OPTIONS_VAR "GZIP"
658#endif
659
660#ifndef Z_SUFFIX
661# define Z_SUFFIX ".gz"
662#endif
663
664#ifdef MAX_EXT_CHARS
665# define MAX_SUFFIX MAX_EXT_CHARS
666#else
667# define MAX_SUFFIX 30
668#endif
669
670#ifndef MAKE_LEGAL_NAME
671# ifdef NO_MULTIPLE_DOTS
672# define MAKE_LEGAL_NAME(name) make_simple_name(name)
673# else
674# define MAKE_LEGAL_NAME(name)
675# endif
676#endif
677
678#ifndef MIN_PART
679# define MIN_PART 3
680 /* keep at least MIN_PART chars between dots in a file name. */
681#endif
682
683#ifndef EXPAND
684# define EXPAND(argc,argv)
685#endif
686
687#ifndef RECORD_IO
688# define RECORD_IO 0
689#endif
690
691#ifndef SET_BINARY_MODE
692# define SET_BINARY_MODE(fd)
693#endif
694
695#ifndef OPEN
696# define OPEN(name, flags, mode) open(name, flags, mode)
697#endif
698
699#ifndef get_char
700# define get_char() get_byte()
701#endif
702
703#ifndef put_char
704# define put_char(c) put_byte(c)
705#endif
706/* bits.c -- output variable-length bit strings
707 * Copyright (C) 1992-1993 Jean-loup Gailly
708 * This is free software; you can redistribute it and/or modify it under the
709 * terms of the GNU General Public License, see the file COPYING.
710 */
711
712
713/*
714 * PURPOSE
715 *
716 * Output variable-length bit strings. Compression can be done
717 * to a file or to memory. (The latter is not supported in this version.)
718 *
719 * DISCUSSION
720 *
721 * The PKZIP "deflate" file format interprets compressed file data
722 * as a sequence of bits. Multi-bit strings in the file may cross
723 * byte boundaries without restriction.
724 *
725 * The first bit of each byte is the low-order bit.
726 *
727 * The routines in this file allow a variable-length bit value to
728 * be output right-to-left (useful for literal values). For
729 * left-to-right output (useful for code strings from the tree routines),
730 * the bits must have been reversed first with bi_reverse().
731 *
732 * For in-memory compression, the compressed bit stream goes directly
733 * into the requested output buffer. The input data is read in blocks
734 * by the mem_read() function. The buffer is limited to 64K on 16 bit
735 * machines.
736 *
737 * INTERFACE
738 *
739 * void bi_init (FILE *zipfile)
740 * Initialize the bit string routines.
741 *
742 * void send_bits (int value, int length)
743 * Write out a bit string, taking the source bits right to
744 * left.
745 *
746 * int bi_reverse (int value, int length)
747 * Reverse the bits of a bit string, taking the source bits left to
748 * right and emitting them right to left.
749 *
750 * void bi_windup (void)
751 * Write out any remaining bits in an incomplete byte.
752 *
753 * void copy_block(char *buf, unsigned len, int header)
754 * Copy a stored block to the zip file, storing first the length and
755 * its one's complement if requested.
756 *
757 */
758
759#ifdef DEBUG
760# include <stdio.h>
761#endif
762
Eric Andersencc8ed391999-10-05 16:24:54 +0000763/* ===========================================================================
764 * Local data used by the "bit string" routines.
765 */
766
Erik Andersene49d5ec2000-02-08 19:58:47 +0000767local file_t zfile; /* output gzip file */
Eric Andersencc8ed391999-10-05 16:24:54 +0000768
769local unsigned short bi_buf;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000770
Eric Andersencc8ed391999-10-05 16:24:54 +0000771/* Output buffer. bits are inserted starting at the bottom (least significant
772 * bits).
773 */
774
775#define Buf_size (8 * 2*sizeof(char))
776/* Number of bits used within bi_buf. (bi_buf might be implemented on
777 * more than 16 bits on some systems.)
778 */
779
780local int bi_valid;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000781
Eric Andersencc8ed391999-10-05 16:24:54 +0000782/* Number of valid bits in bi_buf. All bits above the last valid bit
783 * are always zero.
784 */
785
Erik Andersen61677fe2000-04-13 01:18:56 +0000786int (*read_buf) (char *buf, unsigned size);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000787
Eric Andersencc8ed391999-10-05 16:24:54 +0000788/* Current input function. Set to mem_read for in-memory compression */
789
790#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000791ulg bits_sent; /* bit length of the compressed data */
Eric Andersencc8ed391999-10-05 16:24:54 +0000792#endif
793
794/* ===========================================================================
795 * Initialize the bit string routines.
796 */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000797void bi_init(zipfile)
798file_t zipfile; /* output zip file, NO_FILE for in-memory compression */
Eric Andersencc8ed391999-10-05 16:24:54 +0000799{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000800 zfile = zipfile;
801 bi_buf = 0;
802 bi_valid = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +0000803#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000804 bits_sent = 0L;
Eric Andersencc8ed391999-10-05 16:24:54 +0000805#endif
806
Erik Andersene49d5ec2000-02-08 19:58:47 +0000807 /* Set the defaults for file compression. They are set by memcompress
808 * for in-memory compression.
809 */
810 if (zfile != NO_FILE) {
811 read_buf = file_read;
812 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000813}
814
815/* ===========================================================================
816 * Send a value on a given number of bits.
817 * IN assertion: length <= 16 and value fits in length bits.
818 */
819void send_bits(value, length)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000820int value; /* value to send */
821int length; /* number of bits */
Eric Andersencc8ed391999-10-05 16:24:54 +0000822{
823#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000824 Tracev((stderr, " l %2d v %4x ", length, value));
825 Assert(length > 0 && length <= 15, "invalid length");
826 bits_sent += (ulg) length;
Eric Andersencc8ed391999-10-05 16:24:54 +0000827#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000828 /* If not enough room in bi_buf, use (valid) bits from bi_buf and
829 * (16 - bi_valid) bits from value, leaving (width - (16-bi_valid))
830 * unused bits in value.
831 */
832 if (bi_valid > (int) Buf_size - length) {
833 bi_buf |= (value << bi_valid);
834 put_short(bi_buf);
835 bi_buf = (ush) value >> (Buf_size - bi_valid);
836 bi_valid += length - Buf_size;
837 } else {
838 bi_buf |= value << bi_valid;
839 bi_valid += length;
840 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000841}
842
843/* ===========================================================================
844 * Reverse the first len bits of a code, using straightforward code (a faster
845 * method would use a table)
846 * IN assertion: 1 <= len <= 15
847 */
848unsigned bi_reverse(code, len)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000849unsigned code; /* the value to invert */
850int len; /* its bit length */
Eric Andersencc8ed391999-10-05 16:24:54 +0000851{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000852 register unsigned res = 0;
853
854 do {
855 res |= code & 1;
856 code >>= 1, res <<= 1;
857 } while (--len > 0);
858 return res >> 1;
Eric Andersencc8ed391999-10-05 16:24:54 +0000859}
860
861/* ===========================================================================
862 * Write out any remaining bits in an incomplete byte.
863 */
864void bi_windup()
865{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000866 if (bi_valid > 8) {
867 put_short(bi_buf);
868 } else if (bi_valid > 0) {
869 put_byte(bi_buf);
870 }
871 bi_buf = 0;
872 bi_valid = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +0000873#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000874 bits_sent = (bits_sent + 7) & ~7;
Eric Andersencc8ed391999-10-05 16:24:54 +0000875#endif
876}
877
878/* ===========================================================================
879 * Copy a stored block to the zip file, storing first the length and its
880 * one's complement if requested.
881 */
882void copy_block(buf, len, header)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000883char *buf; /* the input data */
884unsigned len; /* its length */
885int header; /* true if block header must be written */
Eric Andersencc8ed391999-10-05 16:24:54 +0000886{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000887 bi_windup(); /* align on byte boundary */
Eric Andersencc8ed391999-10-05 16:24:54 +0000888
Erik Andersene49d5ec2000-02-08 19:58:47 +0000889 if (header) {
890 put_short((ush) len);
891 put_short((ush) ~ len);
Eric Andersencc8ed391999-10-05 16:24:54 +0000892#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000893 bits_sent += 2 * 16;
Eric Andersencc8ed391999-10-05 16:24:54 +0000894#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000895 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000896#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000897 bits_sent += (ulg) len << 3;
Eric Andersencc8ed391999-10-05 16:24:54 +0000898#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000899 while (len--) {
Eric Andersencc8ed391999-10-05 16:24:54 +0000900#ifdef CRYPT
Erik Andersene49d5ec2000-02-08 19:58:47 +0000901 int t;
902
903 if (key)
904 zencode(*buf, t);
Eric Andersencc8ed391999-10-05 16:24:54 +0000905#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000906 put_byte(*buf++);
907 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000908}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000909
Eric Andersencc8ed391999-10-05 16:24:54 +0000910/* deflate.c -- compress data using the deflation algorithm
911 * Copyright (C) 1992-1993 Jean-loup Gailly
912 * This is free software; you can redistribute it and/or modify it under the
913 * terms of the GNU General Public License, see the file COPYING.
914 */
915
916/*
917 * PURPOSE
918 *
919 * Identify new text as repetitions of old text within a fixed-
920 * length sliding window trailing behind the new text.
921 *
922 * DISCUSSION
923 *
924 * The "deflation" process depends on being able to identify portions
925 * of the input text which are identical to earlier input (within a
926 * sliding window trailing behind the input currently being processed).
927 *
928 * The most straightforward technique turns out to be the fastest for
929 * most input files: try all possible matches and select the longest.
930 * The key feature of this algorithm is that insertions into the string
931 * dictionary are very simple and thus fast, and deletions are avoided
932 * completely. Insertions are performed at each input character, whereas
933 * string matches are performed only when the previous match ends. So it
934 * is preferable to spend more time in matches to allow very fast string
935 * insertions and avoid deletions. The matching algorithm for small
936 * strings is inspired from that of Rabin & Karp. A brute force approach
937 * is used to find longer strings when a small match has been found.
938 * A similar algorithm is used in comic (by Jan-Mark Wams) and freeze
939 * (by Leonid Broukhis).
940 * A previous version of this file used a more sophisticated algorithm
941 * (by Fiala and Greene) which is guaranteed to run in linear amortized
942 * time, but has a larger average cost, uses more memory and is patented.
943 * However the F&G algorithm may be faster for some highly redundant
944 * files if the parameter max_chain_length (described below) is too large.
945 *
946 * ACKNOWLEDGEMENTS
947 *
948 * The idea of lazy evaluation of matches is due to Jan-Mark Wams, and
949 * I found it in 'freeze' written by Leonid Broukhis.
950 * Thanks to many info-zippers for bug reports and testing.
951 *
952 * REFERENCES
953 *
954 * APPNOTE.TXT documentation file in PKZIP 1.93a distribution.
955 *
956 * A description of the Rabin and Karp algorithm is given in the book
957 * "Algorithms" by R. Sedgewick, Addison-Wesley, p252.
958 *
959 * Fiala,E.R., and Greene,D.H.
960 * Data Compression with Finite Windows, Comm.ACM, 32,4 (1989) 490-595
961 *
962 * INTERFACE
963 *
964 * void lm_init (int pack_level, ush *flags)
965 * Initialize the "longest match" routines for a new file
966 *
967 * ulg deflate (void)
968 * Processes a new input file and return its compressed length. Sets
969 * the compressed length, crc, deflate flags and internal file
970 * attributes.
971 */
972
973#include <stdio.h>
974
Eric Andersencc8ed391999-10-05 16:24:54 +0000975/* ===========================================================================
976 * Configuration parameters
977 */
978
979/* Compile with MEDIUM_MEM to reduce the memory requirements or
980 * with SMALL_MEM to use as little memory as possible. Use BIG_MEM if the
981 * entire input file can be held in memory (not possible on 16 bit systems).
982 * Warning: defining these symbols affects HASH_BITS (see below) and thus
983 * affects the compression ratio. The compressed output
984 * is still correct, and might even be smaller in some cases.
985 */
986
987#ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +0000988# define HASH_BITS 13 /* Number of bits used to hash strings */
Eric Andersencc8ed391999-10-05 16:24:54 +0000989#endif
990#ifdef MEDIUM_MEM
991# define HASH_BITS 14
992#endif
993#ifndef HASH_BITS
994# define HASH_BITS 15
995 /* For portability to 16 bit machines, do not use values above 15. */
996#endif
997
998/* To save space (see unlzw.c), we overlay prev+head with tab_prefix and
999 * window with tab_suffix. Check that we can do this:
1000 */
1001#if (WSIZE<<1) > (1<<BITS)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001002error:cannot overlay window with tab_suffix and prev with tab_prefix0
Eric Andersencc8ed391999-10-05 16:24:54 +00001003#endif
1004#if HASH_BITS > BITS-1
Erik Andersene49d5ec2000-02-08 19:58:47 +00001005error:cannot overlay head with tab_prefix1
Eric Andersencc8ed391999-10-05 16:24:54 +00001006#endif
Eric Andersencc8ed391999-10-05 16:24:54 +00001007#define HASH_SIZE (unsigned)(1<<HASH_BITS)
1008#define HASH_MASK (HASH_SIZE-1)
1009#define WMASK (WSIZE-1)
1010/* HASH_SIZE and WSIZE must be powers of two */
Eric Andersencc8ed391999-10-05 16:24:54 +00001011#define NIL 0
1012/* Tail of hash chains */
Eric Andersencc8ed391999-10-05 16:24:54 +00001013#define FAST 4
1014#define SLOW 2
1015/* speed options for the general purpose bit flag */
Eric Andersencc8ed391999-10-05 16:24:54 +00001016#ifndef TOO_FAR
1017# define TOO_FAR 4096
1018#endif
1019/* Matches of length 3 are discarded if their distance exceeds TOO_FAR */
Eric Andersencc8ed391999-10-05 16:24:54 +00001020/* ===========================================================================
1021 * Local data used by the "longest match" routines.
1022 */
Eric Andersencc8ed391999-10-05 16:24:54 +00001023typedef ush Pos;
1024typedef unsigned IPos;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001025
Eric Andersencc8ed391999-10-05 16:24:54 +00001026/* A Pos is an index in the character window. We use short instead of int to
1027 * save space in the various tables. IPos is used only for parameter passing.
1028 */
1029
1030/* DECLARE(uch, window, 2L*WSIZE); */
1031/* Sliding window. Input bytes are read into the second half of the window,
1032 * and move to the first half later to keep a dictionary of at least WSIZE
1033 * bytes. With this organization, matches are limited to a distance of
1034 * WSIZE-MAX_MATCH bytes, but this ensures that IO is always
1035 * performed with a length multiple of the block size. Also, it limits
1036 * the window size to 64K, which is quite useful on MSDOS.
1037 * To do: limit the window size to WSIZE+BSZ if SMALL_MEM (the code would
1038 * be less efficient).
1039 */
1040
1041/* DECLARE(Pos, prev, WSIZE); */
1042/* Link to older string with same hash index. To limit the size of this
1043 * array to 64K, this link is maintained only for the last 32K strings.
1044 * An index in this array is thus a window index modulo 32K.
1045 */
1046
1047/* DECLARE(Pos, head, 1<<HASH_BITS); */
1048/* Heads of the hash chains or NIL. */
1049
Erik Andersene49d5ec2000-02-08 19:58:47 +00001050ulg window_size = (ulg) 2 * WSIZE;
1051
Eric Andersencc8ed391999-10-05 16:24:54 +00001052/* window size, 2*WSIZE except for MMAP or BIG_MEM, where it is the
1053 * input file length plus MIN_LOOKAHEAD.
1054 */
1055
1056long block_start;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001057
Eric Andersencc8ed391999-10-05 16:24:54 +00001058/* window position at the beginning of the current output block. Gets
1059 * negative when the window is moved backwards.
1060 */
1061
Erik Andersene49d5ec2000-02-08 19:58:47 +00001062local unsigned ins_h; /* hash index of string to be inserted */
Eric Andersencc8ed391999-10-05 16:24:54 +00001063
1064#define H_SHIFT ((HASH_BITS+MIN_MATCH-1)/MIN_MATCH)
1065/* Number of bits by which ins_h and del_h must be shifted at each
1066 * input step. It must be such that after MIN_MATCH steps, the oldest
1067 * byte no longer takes part in the hash key, that is:
1068 * H_SHIFT * MIN_MATCH >= HASH_BITS
1069 */
1070
1071unsigned int near prev_length;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001072
Eric Andersencc8ed391999-10-05 16:24:54 +00001073/* Length of the best match at previous step. Matches not greater than this
1074 * are discarded. This is used in the lazy match evaluation.
1075 */
1076
Erik Andersene49d5ec2000-02-08 19:58:47 +00001077unsigned near strstart; /* start of string to insert */
1078unsigned near match_start; /* start of matching string */
1079local int eofile; /* flag set at end of input file */
1080local unsigned lookahead; /* number of valid bytes ahead in window */
Eric Andersencc8ed391999-10-05 16:24:54 +00001081
1082unsigned near max_chain_length;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001083
Eric Andersencc8ed391999-10-05 16:24:54 +00001084/* To speed up deflation, hash chains are never searched beyond this length.
1085 * A higher limit improves compression ratio but degrades the speed.
1086 */
1087
1088local unsigned int max_lazy_match;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001089
Eric Andersencc8ed391999-10-05 16:24:54 +00001090/* Attempt to find a better match only when the current match is strictly
1091 * smaller than this value. This mechanism is used only for compression
1092 * levels >= 4.
1093 */
1094#define max_insert_length max_lazy_match
1095/* Insert new strings in the hash table only if the match length
1096 * is not greater than this length. This saves time but degrades compression.
1097 * max_insert_length is used only for compression levels <= 3.
1098 */
1099
1100unsigned near good_match;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001101
Eric Andersencc8ed391999-10-05 16:24:54 +00001102/* Use a faster search when the previous match is longer than this */
1103
1104
1105/* Values for max_lazy_match, good_match and max_chain_length, depending on
1106 * the desired pack level (0..9). The values given below have been tuned to
1107 * exclude worst case performance for pathological files. Better values may be
1108 * found for specific files.
1109 */
1110
1111typedef struct config {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001112 ush good_length; /* reduce lazy search above this match length */
1113 ush max_lazy; /* do not perform lazy search above this match length */
1114 ush nice_length; /* quit search above this match length */
1115 ush max_chain;
Eric Andersencc8ed391999-10-05 16:24:54 +00001116} config;
1117
1118#ifdef FULL_SEARCH
1119# define nice_match MAX_MATCH
1120#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001121int near nice_match; /* Stop searching when current match exceeds this */
Eric Andersencc8ed391999-10-05 16:24:54 +00001122#endif
1123
Erik Andersene49d5ec2000-02-08 19:58:47 +00001124local config configuration_table =
1125 /* 9 */ { 32, 258, 258, 4096 };
1126 /* maximum compression */
Eric Andersencc8ed391999-10-05 16:24:54 +00001127
1128/* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
1129 * For deflate_fast() (levels <= 3) good is ignored and lazy has a different
1130 * meaning.
1131 */
1132
1133#define EQUAL 0
1134/* result of memcmp for equal strings */
1135
1136/* ===========================================================================
1137 * Prototypes for local functions.
1138 */
Erik Andersen61677fe2000-04-13 01:18:56 +00001139local void fill_window (void);
Eric Andersencc8ed391999-10-05 16:24:54 +00001140
Erik Andersen61677fe2000-04-13 01:18:56 +00001141int longest_match (IPos cur_match);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001142
Eric Andersencc8ed391999-10-05 16:24:54 +00001143#ifdef ASMV
Erik Andersen61677fe2000-04-13 01:18:56 +00001144void match_init (void); /* asm code initialization */
Eric Andersencc8ed391999-10-05 16:24:54 +00001145#endif
1146
1147#ifdef DEBUG
Erik Andersen61677fe2000-04-13 01:18:56 +00001148local void check_match (IPos start, IPos match, int length);
Eric Andersencc8ed391999-10-05 16:24:54 +00001149#endif
1150
1151/* ===========================================================================
1152 * Update a hash value with the given input byte
1153 * IN assertion: all calls to to UPDATE_HASH are made with consecutive
1154 * input characters, so that a running hash key can be computed from the
1155 * previous key instead of complete recalculation each time.
1156 */
1157#define UPDATE_HASH(h,c) (h = (((h)<<H_SHIFT) ^ (c)) & HASH_MASK)
1158
1159/* ===========================================================================
1160 * Insert string s in the dictionary and set match_head to the previous head
1161 * of the hash chain (the most recent string with same hash key). Return
1162 * the previous length of the hash chain.
1163 * IN assertion: all calls to to INSERT_STRING are made with consecutive
1164 * input characters and the first MIN_MATCH bytes of s are valid
1165 * (except for the last MIN_MATCH-1 bytes of the input file).
1166 */
1167#define INSERT_STRING(s, match_head) \
1168 (UPDATE_HASH(ins_h, window[(s) + MIN_MATCH-1]), \
1169 prev[(s) & WMASK] = match_head = head[ins_h], \
1170 head[ins_h] = (s))
1171
1172/* ===========================================================================
1173 * Initialize the "longest match" routines for a new file
1174 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001175void lm_init(flags)
1176ush *flags; /* general purpose bit flag */
Eric Andersencc8ed391999-10-05 16:24:54 +00001177{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001178 register unsigned j;
Eric Andersencc8ed391999-10-05 16:24:54 +00001179
Erik Andersene49d5ec2000-02-08 19:58:47 +00001180 /* Initialize the hash table. */
Eric Andersencc8ed391999-10-05 16:24:54 +00001181#if defined(MAXSEG_64K) && HASH_BITS == 15
Erik Andersene49d5ec2000-02-08 19:58:47 +00001182 for (j = 0; j < HASH_SIZE; j++)
1183 head[j] = NIL;
Eric Andersencc8ed391999-10-05 16:24:54 +00001184#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001185 memzero((char *) head, HASH_SIZE * sizeof(*head));
Eric Andersencc8ed391999-10-05 16:24:54 +00001186#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00001187 /* prev will be initialized on the fly */
Eric Andersencc8ed391999-10-05 16:24:54 +00001188
Erik Andersene49d5ec2000-02-08 19:58:47 +00001189 /* Set the default configuration parameters:
1190 */
1191 max_lazy_match = configuration_table.max_lazy;
1192 good_match = configuration_table.good_length;
Eric Andersencc8ed391999-10-05 16:24:54 +00001193#ifndef FULL_SEARCH
Erik Andersene49d5ec2000-02-08 19:58:47 +00001194 nice_match = configuration_table.nice_length;
Eric Andersencc8ed391999-10-05 16:24:54 +00001195#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00001196 max_chain_length = configuration_table.max_chain;
1197 *flags |= SLOW;
1198 /* ??? reduce max_chain_length for binary files */
Eric Andersencc8ed391999-10-05 16:24:54 +00001199
Erik Andersene49d5ec2000-02-08 19:58:47 +00001200 strstart = 0;
1201 block_start = 0L;
Eric Andersencc8ed391999-10-05 16:24:54 +00001202#ifdef ASMV
Erik Andersene49d5ec2000-02-08 19:58:47 +00001203 match_init(); /* initialize the asm code */
Eric Andersencc8ed391999-10-05 16:24:54 +00001204#endif
1205
Erik Andersene49d5ec2000-02-08 19:58:47 +00001206 lookahead = read_buf((char *) window,
1207 sizeof(int) <= 2 ? (unsigned) WSIZE : 2 * WSIZE);
Eric Andersencc8ed391999-10-05 16:24:54 +00001208
Erik Andersene49d5ec2000-02-08 19:58:47 +00001209 if (lookahead == 0 || lookahead == (unsigned) EOF) {
1210 eofile = 1, lookahead = 0;
1211 return;
1212 }
1213 eofile = 0;
1214 /* Make sure that we always have enough lookahead. This is important
1215 * if input comes from a device such as a tty.
1216 */
1217 while (lookahead < MIN_LOOKAHEAD && !eofile)
1218 fill_window();
Eric Andersencc8ed391999-10-05 16:24:54 +00001219
Erik Andersene49d5ec2000-02-08 19:58:47 +00001220 ins_h = 0;
1221 for (j = 0; j < MIN_MATCH - 1; j++)
1222 UPDATE_HASH(ins_h, window[j]);
1223 /* If lookahead < MIN_MATCH, ins_h is garbage, but this is
1224 * not important since only literal bytes will be emitted.
1225 */
Eric Andersencc8ed391999-10-05 16:24:54 +00001226}
1227
1228/* ===========================================================================
1229 * Set match_start to the longest match starting at the given string and
1230 * return its length. Matches shorter or equal to prev_length are discarded,
1231 * in which case the result is equal to prev_length and match_start is
1232 * garbage.
1233 * IN assertions: cur_match is the head of the hash chain for the current
1234 * string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1
1235 */
1236#ifndef ASMV
1237/* For MSDOS, OS/2 and 386 Unix, an optimized version is in match.asm or
1238 * match.s. The code is functionally equivalent, so you can use the C version
1239 * if desired.
1240 */
1241int longest_match(cur_match)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001242IPos cur_match; /* current match */
Eric Andersencc8ed391999-10-05 16:24:54 +00001243{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001244 unsigned chain_length = max_chain_length; /* max hash chain length */
1245 register uch *scan = window + strstart; /* current string */
1246 register uch *match; /* matched string */
1247 register int len; /* length of current match */
1248 int best_len = prev_length; /* best match length so far */
1249 IPos limit =
1250
1251 strstart > (IPos) MAX_DIST ? strstart - (IPos) MAX_DIST : NIL;
1252 /* Stop when cur_match becomes <= limit. To simplify the code,
1253 * we prevent matches with the string of window index 0.
1254 */
Eric Andersencc8ed391999-10-05 16:24:54 +00001255
1256/* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
1257 * It is easy to get rid of this optimization if necessary.
1258 */
1259#if HASH_BITS < 8 || MAX_MATCH != 258
Erik Andersene49d5ec2000-02-08 19:58:47 +00001260 error:Code too clever
Eric Andersencc8ed391999-10-05 16:24:54 +00001261#endif
Eric Andersencc8ed391999-10-05 16:24:54 +00001262#ifdef UNALIGNED_OK
Erik Andersene49d5ec2000-02-08 19:58:47 +00001263 /* Compare two bytes at a time. Note: this is not always beneficial.
1264 * Try with and without -DUNALIGNED_OK to check.
1265 */
1266 register uch *strend = window + strstart + MAX_MATCH - 1;
1267 register ush scan_start = *(ush *) scan;
1268 register ush scan_end = *(ush *) (scan + best_len - 1);
Eric Andersencc8ed391999-10-05 16:24:54 +00001269#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001270 register uch *strend = window + strstart + MAX_MATCH;
1271 register uch scan_end1 = scan[best_len - 1];
1272 register uch scan_end = scan[best_len];
Eric Andersencc8ed391999-10-05 16:24:54 +00001273#endif
1274
Erik Andersene49d5ec2000-02-08 19:58:47 +00001275 /* Do not waste too much time if we already have a good match: */
1276 if (prev_length >= good_match) {
1277 chain_length >>= 2;
1278 }
1279 Assert(strstart <= window_size - MIN_LOOKAHEAD,
1280 "insufficient lookahead");
Eric Andersencc8ed391999-10-05 16:24:54 +00001281
Erik Andersene49d5ec2000-02-08 19:58:47 +00001282 do {
1283 Assert(cur_match < strstart, "no future");
1284 match = window + cur_match;
Eric Andersencc8ed391999-10-05 16:24:54 +00001285
Erik Andersene49d5ec2000-02-08 19:58:47 +00001286 /* Skip to next match if the match length cannot increase
1287 * or if the match length is less than 2:
1288 */
Eric Andersencc8ed391999-10-05 16:24:54 +00001289#if (defined(UNALIGNED_OK) && MAX_MATCH == 258)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001290 /* This code assumes sizeof(unsigned short) == 2. Do not use
1291 * UNALIGNED_OK if your compiler uses a different size.
1292 */
1293 if (*(ush *) (match + best_len - 1) != scan_end ||
1294 *(ush *) match != scan_start)
1295 continue;
Eric Andersencc8ed391999-10-05 16:24:54 +00001296
Erik Andersene49d5ec2000-02-08 19:58:47 +00001297 /* It is not necessary to compare scan[2] and match[2] since they are
1298 * always equal when the other bytes match, given that the hash keys
1299 * are equal and that HASH_BITS >= 8. Compare 2 bytes at a time at
1300 * strstart+3, +5, ... up to strstart+257. We check for insufficient
1301 * lookahead only every 4th comparison; the 128th check will be made
1302 * at strstart+257. If MAX_MATCH-2 is not a multiple of 8, it is
1303 * necessary to put more guard bytes at the end of the window, or
1304 * to check more often for insufficient lookahead.
1305 */
1306 scan++, match++;
1307 do {
1308 } while (*(ush *) (scan += 2) == *(ush *) (match += 2) &&
1309 *(ush *) (scan += 2) == *(ush *) (match += 2) &&
1310 *(ush *) (scan += 2) == *(ush *) (match += 2) &&
1311 *(ush *) (scan += 2) == *(ush *) (match += 2) &&
1312 scan < strend);
1313 /* The funny "do {}" generates better code on most compilers */
Eric Andersencc8ed391999-10-05 16:24:54 +00001314
Erik Andersene49d5ec2000-02-08 19:58:47 +00001315 /* Here, scan <= window+strstart+257 */
1316 Assert(scan <= window + (unsigned) (window_size - 1), "wild scan");
1317 if (*scan == *match)
1318 scan++;
Eric Andersencc8ed391999-10-05 16:24:54 +00001319
Erik Andersene49d5ec2000-02-08 19:58:47 +00001320 len = (MAX_MATCH - 1) - (int) (strend - scan);
1321 scan = strend - (MAX_MATCH - 1);
Eric Andersencc8ed391999-10-05 16:24:54 +00001322
Erik Andersene49d5ec2000-02-08 19:58:47 +00001323#else /* UNALIGNED_OK */
Eric Andersencc8ed391999-10-05 16:24:54 +00001324
Erik Andersene49d5ec2000-02-08 19:58:47 +00001325 if (match[best_len] != scan_end ||
1326 match[best_len - 1] != scan_end1 ||
1327 *match != *scan || *++match != scan[1])
1328 continue;
Eric Andersencc8ed391999-10-05 16:24:54 +00001329
Erik Andersene49d5ec2000-02-08 19:58:47 +00001330 /* The check at best_len-1 can be removed because it will be made
1331 * again later. (This heuristic is not always a win.)
1332 * It is not necessary to compare scan[2] and match[2] since they
1333 * are always equal when the other bytes match, given that
1334 * the hash keys are equal and that HASH_BITS >= 8.
1335 */
1336 scan += 2, match++;
Eric Andersencc8ed391999-10-05 16:24:54 +00001337
Erik Andersene49d5ec2000-02-08 19:58:47 +00001338 /* We check for insufficient lookahead only every 8th comparison;
1339 * the 256th check will be made at strstart+258.
1340 */
1341 do {
1342 } while (*++scan == *++match && *++scan == *++match &&
1343 *++scan == *++match && *++scan == *++match &&
1344 *++scan == *++match && *++scan == *++match &&
1345 *++scan == *++match && *++scan == *++match &&
1346 scan < strend);
Eric Andersencc8ed391999-10-05 16:24:54 +00001347
Erik Andersene49d5ec2000-02-08 19:58:47 +00001348 len = MAX_MATCH - (int) (strend - scan);
1349 scan = strend - MAX_MATCH;
Eric Andersencc8ed391999-10-05 16:24:54 +00001350
Erik Andersene49d5ec2000-02-08 19:58:47 +00001351#endif /* UNALIGNED_OK */
Eric Andersencc8ed391999-10-05 16:24:54 +00001352
Erik Andersene49d5ec2000-02-08 19:58:47 +00001353 if (len > best_len) {
1354 match_start = cur_match;
1355 best_len = len;
1356 if (len >= nice_match)
1357 break;
Eric Andersencc8ed391999-10-05 16:24:54 +00001358#ifdef UNALIGNED_OK
Erik Andersene49d5ec2000-02-08 19:58:47 +00001359 scan_end = *(ush *) (scan + best_len - 1);
Eric Andersencc8ed391999-10-05 16:24:54 +00001360#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001361 scan_end1 = scan[best_len - 1];
1362 scan_end = scan[best_len];
Eric Andersencc8ed391999-10-05 16:24:54 +00001363#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00001364 }
1365 } while ((cur_match = prev[cur_match & WMASK]) > limit
1366 && --chain_length != 0);
Eric Andersencc8ed391999-10-05 16:24:54 +00001367
Erik Andersene49d5ec2000-02-08 19:58:47 +00001368 return best_len;
Eric Andersencc8ed391999-10-05 16:24:54 +00001369}
Erik Andersene49d5ec2000-02-08 19:58:47 +00001370#endif /* ASMV */
Eric Andersencc8ed391999-10-05 16:24:54 +00001371
1372#ifdef DEBUG
1373/* ===========================================================================
1374 * Check that the match at match_start is indeed a match.
1375 */
1376local void check_match(start, match, length)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001377IPos start, match;
1378int length;
Eric Andersencc8ed391999-10-05 16:24:54 +00001379{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001380 /* check that the match is indeed a match */
1381 if (memcmp((char *) window + match,
1382 (char *) window + start, length) != EQUAL) {
1383 fprintf(stderr,
1384 " start %d, match %d, length %d\n", start, match, length);
Mark Whitleyf57c9442000-12-07 19:56:48 +00001385 error_msg("invalid match\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +00001386 }
1387 if (verbose > 1) {
1388 fprintf(stderr, "\\[%d,%d]", start - match, length);
1389 do {
1390 putc(window[start++], stderr);
1391 } while (--length != 0);
1392 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001393}
1394#else
1395# define check_match(start, match, length)
1396#endif
1397
1398/* ===========================================================================
1399 * Fill the window when the lookahead becomes insufficient.
1400 * Updates strstart and lookahead, and sets eofile if end of input file.
1401 * IN assertion: lookahead < MIN_LOOKAHEAD && strstart + lookahead > 0
1402 * OUT assertions: at least one byte has been read, or eofile is set;
1403 * file reads are performed for at least two bytes (required for the
1404 * translate_eol option).
1405 */
1406local void fill_window()
1407{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001408 register unsigned n, m;
1409 unsigned more =
Eric Andersencc8ed391999-10-05 16:24:54 +00001410
Erik Andersene49d5ec2000-02-08 19:58:47 +00001411 (unsigned) (window_size - (ulg) lookahead - (ulg) strstart);
1412 /* Amount of free space at the end of the window. */
Eric Andersencc8ed391999-10-05 16:24:54 +00001413
Erik Andersene49d5ec2000-02-08 19:58:47 +00001414 /* If the window is almost full and there is insufficient lookahead,
1415 * move the upper half to the lower one to make room in the upper half.
1416 */
1417 if (more == (unsigned) EOF) {
1418 /* Very unlikely, but possible on 16 bit machine if strstart == 0
1419 * and lookahead == 1 (input done one byte at time)
1420 */
1421 more--;
1422 } else if (strstart >= WSIZE + MAX_DIST) {
1423 /* By the IN assertion, the window is not empty so we can't confuse
1424 * more == 0 with more == 64K on a 16 bit machine.
1425 */
1426 Assert(window_size == (ulg) 2 * WSIZE, "no sliding with BIG_MEM");
Eric Andersencc8ed391999-10-05 16:24:54 +00001427
Erik Andersene49d5ec2000-02-08 19:58:47 +00001428 memcpy((char *) window, (char *) window + WSIZE, (unsigned) WSIZE);
1429 match_start -= WSIZE;
1430 strstart -= WSIZE; /* we now have strstart >= MAX_DIST: */
Eric Andersencc8ed391999-10-05 16:24:54 +00001431
Erik Andersene49d5ec2000-02-08 19:58:47 +00001432 block_start -= (long) WSIZE;
1433
1434 for (n = 0; n < HASH_SIZE; n++) {
1435 m = head[n];
1436 head[n] = (Pos) (m >= WSIZE ? m - WSIZE : NIL);
1437 }
1438 for (n = 0; n < WSIZE; n++) {
1439 m = prev[n];
1440 prev[n] = (Pos) (m >= WSIZE ? m - WSIZE : NIL);
1441 /* If n is not on any hash chain, prev[n] is garbage but
1442 * its value will never be used.
1443 */
1444 }
1445 more += WSIZE;
1446 }
1447 /* At this point, more >= 2 */
1448 if (!eofile) {
1449 n = read_buf((char *) window + strstart + lookahead, more);
1450 if (n == 0 || n == (unsigned) EOF) {
1451 eofile = 1;
1452 } else {
1453 lookahead += n;
1454 }
1455 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001456}
1457
1458/* ===========================================================================
1459 * Flush the current block, with given end-of-file flag.
1460 * IN assertion: strstart is set to the end of the current match.
1461 */
1462#define FLUSH_BLOCK(eof) \
1463 flush_block(block_start >= 0L ? (char*)&window[(unsigned)block_start] : \
1464 (char*)NULL, (long)strstart - block_start, (eof))
1465
1466/* ===========================================================================
1467 * Same as above, but achieves better compression. We use a lazy
1468 * evaluation for matches: a match is finally adopted only if there is
1469 * no better match at the next window position.
1470 */
1471ulg deflate()
1472{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001473 IPos hash_head; /* head of hash chain */
1474 IPos prev_match; /* previous match */
1475 int flush; /* set if current block must be flushed */
1476 int match_available = 0; /* set if previous match exists */
1477 register unsigned match_length = MIN_MATCH - 1; /* length of best match */
1478
Eric Andersencc8ed391999-10-05 16:24:54 +00001479#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +00001480 extern long isize; /* byte length of input file, for debug only */
Eric Andersencc8ed391999-10-05 16:24:54 +00001481#endif
1482
Erik Andersene49d5ec2000-02-08 19:58:47 +00001483 /* Process the input block. */
1484 while (lookahead != 0) {
1485 /* Insert the string window[strstart .. strstart+2] in the
1486 * dictionary, and set hash_head to the head of the hash chain:
1487 */
1488 INSERT_STRING(strstart, hash_head);
Eric Andersencc8ed391999-10-05 16:24:54 +00001489
Erik Andersene49d5ec2000-02-08 19:58:47 +00001490 /* Find the longest match, discarding those <= prev_length.
1491 */
1492 prev_length = match_length, prev_match = match_start;
1493 match_length = MIN_MATCH - 1;
Eric Andersencc8ed391999-10-05 16:24:54 +00001494
Erik Andersene49d5ec2000-02-08 19:58:47 +00001495 if (hash_head != NIL && prev_length < max_lazy_match &&
1496 strstart - hash_head <= MAX_DIST) {
1497 /* To simplify the code, we prevent matches with the string
1498 * of window index 0 (in particular we have to avoid a match
1499 * of the string with itself at the start of the input file).
1500 */
1501 match_length = longest_match(hash_head);
1502 /* longest_match() sets match_start */
1503 if (match_length > lookahead)
1504 match_length = lookahead;
Eric Andersencc8ed391999-10-05 16:24:54 +00001505
Erik Andersene49d5ec2000-02-08 19:58:47 +00001506 /* Ignore a length 3 match if it is too distant: */
1507 if (match_length == MIN_MATCH
1508 && strstart - match_start > TOO_FAR) {
1509 /* If prev_match is also MIN_MATCH, match_start is garbage
1510 * but we will ignore the current match anyway.
1511 */
1512 match_length--;
1513 }
1514 }
1515 /* If there was a match at the previous step and the current
1516 * match is not better, output the previous match:
1517 */
1518 if (prev_length >= MIN_MATCH && match_length <= prev_length) {
Eric Andersencc8ed391999-10-05 16:24:54 +00001519
Erik Andersene49d5ec2000-02-08 19:58:47 +00001520 check_match(strstart - 1, prev_match, prev_length);
Eric Andersencc8ed391999-10-05 16:24:54 +00001521
Erik Andersene49d5ec2000-02-08 19:58:47 +00001522 flush =
1523 ct_tally(strstart - 1 - prev_match,
1524 prev_length - MIN_MATCH);
Eric Andersencc8ed391999-10-05 16:24:54 +00001525
Erik Andersene49d5ec2000-02-08 19:58:47 +00001526 /* Insert in hash table all strings up to the end of the match.
1527 * strstart-1 and strstart are already inserted.
1528 */
1529 lookahead -= prev_length - 1;
1530 prev_length -= 2;
1531 do {
1532 strstart++;
1533 INSERT_STRING(strstart, hash_head);
1534 /* strstart never exceeds WSIZE-MAX_MATCH, so there are
1535 * always MIN_MATCH bytes ahead. If lookahead < MIN_MATCH
1536 * these bytes are garbage, but it does not matter since the
1537 * next lookahead bytes will always be emitted as literals.
1538 */
1539 } while (--prev_length != 0);
1540 match_available = 0;
1541 match_length = MIN_MATCH - 1;
1542 strstart++;
1543 if (flush)
1544 FLUSH_BLOCK(0), block_start = strstart;
Eric Andersencc8ed391999-10-05 16:24:54 +00001545
Erik Andersene49d5ec2000-02-08 19:58:47 +00001546 } else if (match_available) {
1547 /* If there was no match at the previous position, output a
1548 * single literal. If there was a match but the current match
1549 * is longer, truncate the previous match to a single literal.
1550 */
1551 Tracevv((stderr, "%c", window[strstart - 1]));
1552 if (ct_tally(0, window[strstart - 1])) {
1553 FLUSH_BLOCK(0), block_start = strstart;
1554 }
1555 strstart++;
1556 lookahead--;
1557 } else {
1558 /* There is no previous match to compare with, wait for
1559 * the next step to decide.
1560 */
1561 match_available = 1;
1562 strstart++;
1563 lookahead--;
1564 }
1565 Assert(strstart <= isize && lookahead <= isize, "a bit too far");
Eric Andersencc8ed391999-10-05 16:24:54 +00001566
Erik Andersene49d5ec2000-02-08 19:58:47 +00001567 /* Make sure that we always have enough lookahead, except
1568 * at the end of the input file. We need MAX_MATCH bytes
1569 * for the next match, plus MIN_MATCH bytes to insert the
1570 * string following the next match.
1571 */
1572 while (lookahead < MIN_LOOKAHEAD && !eofile)
1573 fill_window();
1574 }
1575 if (match_available)
1576 ct_tally(0, window[strstart - 1]);
Eric Andersencc8ed391999-10-05 16:24:54 +00001577
Erik Andersene49d5ec2000-02-08 19:58:47 +00001578 return FLUSH_BLOCK(1); /* eof */
Eric Andersencc8ed391999-10-05 16:24:54 +00001579}
Erik Andersene49d5ec2000-02-08 19:58:47 +00001580
Eric Andersencc8ed391999-10-05 16:24:54 +00001581/* gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface
1582 * Copyright (C) 1992-1993 Jean-loup Gailly
1583 * The unzip code was written and put in the public domain by Mark Adler.
1584 * Portions of the lzw code are derived from the public domain 'compress'
1585 * written by Spencer Thomas, Joe Orost, James Woods, Jim McKie, Steve Davies,
1586 * Ken Turkowski, Dave Mack and Peter Jannesen.
1587 *
1588 * See the license_msg below and the file COPYING for the software license.
1589 * See the file algorithm.doc for the compression algorithms and file formats.
1590 */
1591
1592/* Compress files with zip algorithm and 'compress' interface.
1593 * See usage() and help() functions below for all options.
1594 * Outputs:
1595 * file.gz: compressed file with same mode, owner, and utimes
1596 * or stdout with -c option or if stdin used as input.
1597 * If the output file name had to be truncated, the original name is kept
1598 * in the compressed file.
1599 * On MSDOS, file.tmp -> file.tmz. On VMS, file.tmp -> file.tmp-gz.
1600 *
1601 * Using gz on MSDOS would create too many file name conflicts. For
1602 * example, foo.txt -> foo.tgz (.tgz must be reserved as shorthand for
1603 * tar.gz). Similarly, foo.dir and foo.doc would both be mapped to foo.dgz.
1604 * I also considered 12345678.txt -> 12345txt.gz but this truncates the name
1605 * too heavily. There is no ideal solution given the MSDOS 8+3 limitation.
1606 *
1607 * For the meaning of all compilation flags, see comments in Makefile.in.
1608 */
1609
Eric Andersencc8ed391999-10-05 16:24:54 +00001610#include <ctype.h>
1611#include <sys/types.h>
1612#include <signal.h>
Eric Andersencc8ed391999-10-05 16:24:54 +00001613#include <errno.h>
1614
1615 /* configuration */
1616
1617#ifdef NO_TIME_H
1618# include <sys/time.h>
1619#else
1620# include <time.h>
1621#endif
1622
1623#ifndef NO_FCNTL_H
1624# include <fcntl.h>
1625#endif
1626
1627#ifdef HAVE_UNISTD_H
1628# include <unistd.h>
1629#endif
1630
1631#if defined(STDC_HEADERS) || !defined(NO_STDLIB_H)
1632# include <stdlib.h>
1633#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001634extern int errno;
Eric Andersencc8ed391999-10-05 16:24:54 +00001635#endif
1636
1637#if defined(DIRENT)
1638# include <dirent.h>
Erik Andersene49d5ec2000-02-08 19:58:47 +00001639typedef struct dirent dir_type;
1640
Eric Andersencc8ed391999-10-05 16:24:54 +00001641# define NLENGTH(dirent) ((int)strlen((dirent)->d_name))
1642# define DIR_OPT "DIRENT"
1643#else
1644# define NLENGTH(dirent) ((dirent)->d_namlen)
1645# ifdef SYSDIR
1646# include <sys/dir.h>
Erik Andersene49d5ec2000-02-08 19:58:47 +00001647typedef struct direct dir_type;
1648
Eric Andersencc8ed391999-10-05 16:24:54 +00001649# define DIR_OPT "SYSDIR"
1650# else
1651# ifdef SYSNDIR
1652# include <sys/ndir.h>
Erik Andersene49d5ec2000-02-08 19:58:47 +00001653typedef struct direct dir_type;
1654
Eric Andersencc8ed391999-10-05 16:24:54 +00001655# define DIR_OPT "SYSNDIR"
1656# else
1657# ifdef NDIR
1658# include <ndir.h>
Erik Andersene49d5ec2000-02-08 19:58:47 +00001659typedef struct direct dir_type;
1660
Eric Andersencc8ed391999-10-05 16:24:54 +00001661# define DIR_OPT "NDIR"
1662# else
1663# define NO_DIR
1664# define DIR_OPT "NO_DIR"
1665# endif
1666# endif
1667# endif
1668#endif
1669
1670#ifndef NO_UTIME
1671# ifndef NO_UTIME_H
1672# include <utime.h>
1673# define TIME_OPT "UTIME"
1674# else
1675# ifdef HAVE_SYS_UTIME_H
1676# include <sys/utime.h>
1677# define TIME_OPT "SYS_UTIME"
1678# else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001679struct utimbuf {
1680 time_t actime;
1681 time_t modtime;
1682};
1683
Eric Andersencc8ed391999-10-05 16:24:54 +00001684# define TIME_OPT ""
1685# endif
1686# endif
1687#else
1688# define TIME_OPT "NO_UTIME"
1689#endif
1690
1691#if !defined(S_ISDIR) && defined(S_IFDIR)
1692# define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
1693#endif
1694#if !defined(S_ISREG) && defined(S_IFREG)
1695# define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
1696#endif
1697
Erik Andersen61677fe2000-04-13 01:18:56 +00001698typedef RETSIGTYPE(*sig_type) (int);
Eric Andersencc8ed391999-10-05 16:24:54 +00001699
1700#ifndef O_BINARY
Erik Andersene49d5ec2000-02-08 19:58:47 +00001701# define O_BINARY 0 /* creation mode for open() */
Eric Andersencc8ed391999-10-05 16:24:54 +00001702#endif
1703
1704#ifndef O_CREAT
1705 /* Pure BSD system? */
1706# include <sys/file.h>
1707# ifndef O_CREAT
1708# define O_CREAT FCREAT
1709# endif
1710# ifndef O_EXCL
1711# define O_EXCL FEXCL
1712# endif
1713#endif
1714
1715#ifndef S_IRUSR
1716# define S_IRUSR 0400
1717#endif
1718#ifndef S_IWUSR
1719# define S_IWUSR 0200
1720#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00001721#define RW_USER (S_IRUSR | S_IWUSR) /* creation mode for open() */
Eric Andersencc8ed391999-10-05 16:24:54 +00001722
1723#ifndef MAX_PATH_LEN
Erik Andersene49d5ec2000-02-08 19:58:47 +00001724# define MAX_PATH_LEN 1024 /* max pathname length */
Eric Andersencc8ed391999-10-05 16:24:54 +00001725#endif
1726
1727#ifndef SEEK_END
1728# define SEEK_END 2
1729#endif
1730
1731#ifdef NO_OFF_T
Erik Andersene49d5ec2000-02-08 19:58:47 +00001732typedef long off_t;
Erik Andersen61677fe2000-04-13 01:18:56 +00001733off_t lseek (int fd, off_t offset, int whence);
Eric Andersencc8ed391999-10-05 16:24:54 +00001734#endif
1735
1736/* Separator for file name parts (see shorten_name()) */
1737#ifdef NO_MULTIPLE_DOTS
1738# define PART_SEP "-"
1739#else
1740# define PART_SEP "."
1741#endif
1742
1743 /* global buffers */
1744
Erik Andersene49d5ec2000-02-08 19:58:47 +00001745DECLARE(uch, inbuf, INBUFSIZ + INBUF_EXTRA);
1746DECLARE(uch, outbuf, OUTBUFSIZ + OUTBUF_EXTRA);
1747DECLARE(ush, d_buf, DIST_BUFSIZE);
1748DECLARE(uch, window, 2L * WSIZE);
Eric Andersencc8ed391999-10-05 16:24:54 +00001749#ifndef MAXSEG_64K
Erik Andersene49d5ec2000-02-08 19:58:47 +00001750DECLARE(ush, tab_prefix, 1L << BITS);
Eric Andersencc8ed391999-10-05 16:24:54 +00001751#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001752DECLARE(ush, tab_prefix0, 1L << (BITS - 1));
1753DECLARE(ush, tab_prefix1, 1L << (BITS - 1));
Eric Andersencc8ed391999-10-05 16:24:54 +00001754#endif
1755
1756 /* local variables */
1757
Eric Andersen63a86222000-11-07 06:52:13 +00001758static int foreground; /* set if program run in foreground */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001759static int method = DEFLATED; /* compression method */
1760static int exit_code = OK; /* program exit code */
Eric Andersen63a86222000-11-07 06:52:13 +00001761static int part_nb; /* number of parts in .gz file */
1762static long time_stamp; /* original time stamp (modification time) */
1763static long ifile_size; /* input file size, -1 for devices (debug only) */
1764static char z_suffix[MAX_SUFFIX + 1]; /* default suffix (can be set with --suffix) */
1765static int z_len; /* strlen(z_suffix) */
Eric Andersencc8ed391999-10-05 16:24:54 +00001766
Eric Andersen63a86222000-11-07 06:52:13 +00001767static long bytes_in; /* number of input bytes */
1768static long bytes_out; /* number of output bytes */
1769static char ifname[MAX_PATH_LEN]; /* input file name */
1770static char ofname[MAX_PATH_LEN]; /* output file name */
1771static int ifd; /* input file descriptor */
1772static int ofd; /* output file descriptor */
1773static unsigned insize; /* valid bytes in inbuf */
1774static unsigned outcnt; /* bytes in output buffer */
Eric Andersencc8ed391999-10-05 16:24:54 +00001775
1776/* local functions */
1777
Eric Andersencc8ed391999-10-05 16:24:54 +00001778#define strequ(s1, s2) (strcmp((s1),(s2)) == 0)
1779
1780/* ======================================================================== */
1781// int main (argc, argv)
1782// int argc;
1783// char **argv;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001784int gzip_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +00001785{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001786 int result;
1787 int inFileNum;
1788 int outFileNum;
1789 struct stat statBuf;
1790 char *delFileName;
1791 int tostdout = 0;
1792 int fromstdin = 0;
Eric Andersenea824fb2000-07-21 22:17:39 +00001793 int force = 0;
Eric Andersen96bcfd31999-11-12 01:30:18 +00001794
Erik Andersene49d5ec2000-02-08 19:58:47 +00001795 /* Parse any options */
1796 while (--argc > 0 && **(++argv) == '-') {
1797 if (*((*argv) + 1) == '\0') {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001798 tostdout = 1;
1799 }
1800 while (*(++(*argv))) {
1801 switch (**argv) {
1802 case 'c':
1803 tostdout = 1;
1804 break;
Eric Andersenea824fb2000-07-21 22:17:39 +00001805 case 'f':
1806 force = 1;
1807 break;
1808 /* Ignore 1-9 (compression level) options */
1809 case '1': case '2': case '3': case '4': case '5':
1810 case '6': case '7': case '8': case '9':
1811 break;
Eric Andersen02ced932000-12-13 17:55:11 +00001812 case 'd':
1813 exit(gunzip_main(argc, argv));
Erik Andersene49d5ec2000-02-08 19:58:47 +00001814 default:
1815 usage(gzip_usage);
1816 }
1817 }
1818 }
Eric Andersen5eb59122000-09-01 00:33:06 +00001819 if (argc <= 0 ) {
Eric Andersenea824fb2000-07-21 22:17:39 +00001820 fromstdin = 1;
Eric Andersen5eb59122000-09-01 00:33:06 +00001821 tostdout = 1;
1822 }
Eric Andersenea824fb2000-07-21 22:17:39 +00001823
1824 if (isatty(fileno(stdin)) && fromstdin==1 && force==0)
Mark Whitleyf57c9442000-12-07 19:56:48 +00001825 error_msg_and_die( "data not read from terminal. Use -f to force it.\n");
Eric Andersenea824fb2000-07-21 22:17:39 +00001826 if (isatty(fileno(stdout)) && tostdout==1 && force==0)
Mark Whitleyf57c9442000-12-07 19:56:48 +00001827 error_msg_and_die( "data not written to terminal. Use -f to force it.\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +00001828
1829 foreground = signal(SIGINT, SIG_IGN) != SIG_IGN;
1830 if (foreground) {
1831 (void) signal(SIGINT, (sig_type) abort_gzip);
1832 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001833#ifdef SIGTERM
Erik Andersene49d5ec2000-02-08 19:58:47 +00001834 if (signal(SIGTERM, SIG_IGN) != SIG_IGN) {
1835 (void) signal(SIGTERM, (sig_type) abort_gzip);
1836 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001837#endif
1838#ifdef SIGHUP
Erik Andersene49d5ec2000-02-08 19:58:47 +00001839 if (signal(SIGHUP, SIG_IGN) != SIG_IGN) {
1840 (void) signal(SIGHUP, (sig_type) abort_gzip);
1841 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001842#endif
1843
Erik Andersene49d5ec2000-02-08 19:58:47 +00001844 strncpy(z_suffix, Z_SUFFIX, sizeof(z_suffix) - 1);
1845 z_len = strlen(z_suffix);
Eric Andersencc8ed391999-10-05 16:24:54 +00001846
Erik Andersene49d5ec2000-02-08 19:58:47 +00001847 /* Allocate all global buffers (for DYN_ALLOC option) */
1848 ALLOC(uch, inbuf, INBUFSIZ + INBUF_EXTRA);
1849 ALLOC(uch, outbuf, OUTBUFSIZ + OUTBUF_EXTRA);
1850 ALLOC(ush, d_buf, DIST_BUFSIZE);
1851 ALLOC(uch, window, 2L * WSIZE);
Eric Andersencc8ed391999-10-05 16:24:54 +00001852#ifndef MAXSEG_64K
Erik Andersene49d5ec2000-02-08 19:58:47 +00001853 ALLOC(ush, tab_prefix, 1L << BITS);
Eric Andersencc8ed391999-10-05 16:24:54 +00001854#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001855 ALLOC(ush, tab_prefix0, 1L << (BITS - 1));
1856 ALLOC(ush, tab_prefix1, 1L << (BITS - 1));
Eric Andersencc8ed391999-10-05 16:24:54 +00001857#endif
1858
Erik Andersene49d5ec2000-02-08 19:58:47 +00001859 if (fromstdin == 1) {
1860 strcpy(ofname, "stdin");
Eric Andersen96bcfd31999-11-12 01:30:18 +00001861
Erik Andersene49d5ec2000-02-08 19:58:47 +00001862 inFileNum = fileno(stdin);
1863 time_stamp = 0; /* time unknown by default */
1864 ifile_size = -1L; /* convention for unknown size */
1865 } else {
1866 /* Open up the input file */
Eric Andersenea824fb2000-07-21 22:17:39 +00001867 if (argc <= 0)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001868 usage(gzip_usage);
1869 strncpy(ifname, *argv, MAX_PATH_LEN);
Eric Andersen96bcfd31999-11-12 01:30:18 +00001870
Matt Kraaia9819b22000-12-22 01:48:07 +00001871 /* Open input file */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001872 inFileNum = open(ifname, O_RDONLY);
Matt Kraaia9819b22000-12-22 01:48:07 +00001873 if (inFileNum < 0)
1874 perror_msg_and_die("%s", ifname);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001875 /* Get the time stamp on the input file. */
Matt Kraaia9819b22000-12-22 01:48:07 +00001876 if (stat(ifname, &statBuf) < 0)
1877 perror_msg_and_die("%s", ifname);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001878 time_stamp = statBuf.st_ctime;
1879 ifile_size = statBuf.st_size;
Eric Andersen96bcfd31999-11-12 01:30:18 +00001880 }
Eric Andersen96bcfd31999-11-12 01:30:18 +00001881
1882
Erik Andersene49d5ec2000-02-08 19:58:47 +00001883 if (tostdout == 1) {
1884 /* And get to work */
1885 strcpy(ofname, "stdout");
1886 outFileNum = fileno(stdout);
1887 SET_BINARY_MODE(fileno(stdout));
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001888
Erik Andersene49d5ec2000-02-08 19:58:47 +00001889 clear_bufs(); /* clear input and output buffers */
1890 part_nb = 0;
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001891
Erik Andersene49d5ec2000-02-08 19:58:47 +00001892 /* Actually do the compression/decompression. */
1893 zip(inFileNum, outFileNum);
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001894
Erik Andersene49d5ec2000-02-08 19:58:47 +00001895 } else {
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001896
Erik Andersene49d5ec2000-02-08 19:58:47 +00001897 /* And get to work */
1898 strncpy(ofname, ifname, MAX_PATH_LEN - 4);
1899 strcat(ofname, ".gz");
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001900
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001901
Erik Andersene49d5ec2000-02-08 19:58:47 +00001902 /* Open output fille */
Erik Andersen4d1d0111999-12-17 18:44:15 +00001903#if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001904 outFileNum = open(ofname, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW);
Erik Andersen4d1d0111999-12-17 18:44:15 +00001905#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001906 outFileNum = open(ofname, O_RDWR | O_CREAT | O_EXCL);
Erik Andersen4d1d0111999-12-17 18:44:15 +00001907#endif
Matt Kraaia9819b22000-12-22 01:48:07 +00001908 if (outFileNum < 0)
1909 perror_msg_and_die("%s", ofname);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001910 SET_BINARY_MODE(outFileNum);
1911 /* Set permissions on the file */
1912 fchmod(outFileNum, statBuf.st_mode);
1913
1914 clear_bufs(); /* clear input and output buffers */
1915 part_nb = 0;
1916
1917 /* Actually do the compression/decompression. */
1918 result = zip(inFileNum, outFileNum);
1919 close(outFileNum);
1920 close(inFileNum);
1921 /* Delete the original file */
1922 if (result == OK)
1923 delFileName = ifname;
1924 else
1925 delFileName = ofname;
1926
Matt Kraaia9819b22000-12-22 01:48:07 +00001927 if (unlink(delFileName) < 0)
1928 perror_msg_and_die("%s", delFileName);
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001929 }
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001930
Eric Andersenb6106152000-06-19 17:25:40 +00001931 return(exit_code);
Eric Andersencc8ed391999-10-05 16:24:54 +00001932}
1933
Eric Andersencc8ed391999-10-05 16:24:54 +00001934/* trees.c -- output deflated data using Huffman coding
1935 * Copyright (C) 1992-1993 Jean-loup Gailly
1936 * This is free software; you can redistribute it and/or modify it under the
1937 * terms of the GNU General Public License, see the file COPYING.
1938 */
1939
1940/*
1941 * PURPOSE
1942 *
1943 * Encode various sets of source values using variable-length
1944 * binary code trees.
1945 *
1946 * DISCUSSION
1947 *
1948 * The PKZIP "deflation" process uses several Huffman trees. The more
1949 * common source values are represented by shorter bit sequences.
1950 *
1951 * Each code tree is stored in the ZIP file in a compressed form
1952 * which is itself a Huffman encoding of the lengths of
1953 * all the code strings (in ascending order by source values).
1954 * The actual code strings are reconstructed from the lengths in
1955 * the UNZIP process, as described in the "application note"
1956 * (APPNOTE.TXT) distributed as part of PKWARE's PKZIP program.
1957 *
1958 * REFERENCES
1959 *
1960 * Lynch, Thomas J.
1961 * Data Compression: Techniques and Applications, pp. 53-55.
1962 * Lifetime Learning Publications, 1985. ISBN 0-534-03418-7.
1963 *
1964 * Storer, James A.
1965 * Data Compression: Methods and Theory, pp. 49-50.
1966 * Computer Science Press, 1988. ISBN 0-7167-8156-5.
1967 *
1968 * Sedgewick, R.
1969 * Algorithms, p290.
1970 * Addison-Wesley, 1983. ISBN 0-201-06672-6.
1971 *
1972 * INTERFACE
1973 *
1974 * void ct_init (ush *attr, int *methodp)
1975 * Allocate the match buffer, initialize the various tables and save
1976 * the location of the internal file attribute (ascii/binary) and
1977 * method (DEFLATE/STORE)
1978 *
1979 * void ct_tally (int dist, int lc);
1980 * Save the match info and tally the frequency counts.
1981 *
1982 * long flush_block (char *buf, ulg stored_len, int eof)
1983 * Determine the best encoding for the current block: dynamic trees,
1984 * static trees or store, and output the encoded block to the zip
1985 * file. Returns the total compressed length for the file so far.
1986 *
1987 */
1988
1989#include <ctype.h>
1990
Eric Andersencc8ed391999-10-05 16:24:54 +00001991/* ===========================================================================
1992 * Constants
1993 */
1994
1995#define MAX_BITS 15
1996/* All codes must not exceed MAX_BITS bits */
1997
1998#define MAX_BL_BITS 7
1999/* Bit length codes must not exceed MAX_BL_BITS bits */
2000
2001#define LENGTH_CODES 29
2002/* number of length codes, not counting the special END_BLOCK code */
2003
2004#define LITERALS 256
2005/* number of literal bytes 0..255 */
2006
2007#define END_BLOCK 256
2008/* end of block literal code */
2009
2010#define L_CODES (LITERALS+1+LENGTH_CODES)
2011/* number of Literal or Length codes, including the END_BLOCK code */
2012
2013#define D_CODES 30
2014/* number of distance codes */
2015
2016#define BL_CODES 19
2017/* number of codes used to transfer the bit lengths */
2018
2019
Erik Andersene49d5ec2000-02-08 19:58:47 +00002020local int near extra_lbits[LENGTH_CODES] /* extra bits for each length code */
2021 = { 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4,
2022 4, 4, 5, 5, 5, 5, 0 };
Eric Andersencc8ed391999-10-05 16:24:54 +00002023
Erik Andersene49d5ec2000-02-08 19:58:47 +00002024local int near extra_dbits[D_CODES] /* extra bits for each distance code */
2025 = { 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9,
2026 10, 10, 11, 11, 12, 12, 13, 13 };
Eric Andersencc8ed391999-10-05 16:24:54 +00002027
Erik Andersene49d5ec2000-02-08 19:58:47 +00002028local int near extra_blbits[BL_CODES] /* extra bits for each bit length code */
2029= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 7 };
Eric Andersencc8ed391999-10-05 16:24:54 +00002030
2031#define STORED_BLOCK 0
2032#define STATIC_TREES 1
2033#define DYN_TREES 2
2034/* The three kinds of block type */
2035
2036#ifndef LIT_BUFSIZE
2037# ifdef SMALL_MEM
2038# define LIT_BUFSIZE 0x2000
2039# else
2040# ifdef MEDIUM_MEM
2041# define LIT_BUFSIZE 0x4000
2042# else
2043# define LIT_BUFSIZE 0x8000
2044# endif
2045# endif
2046#endif
2047#ifndef DIST_BUFSIZE
2048# define DIST_BUFSIZE LIT_BUFSIZE
2049#endif
2050/* Sizes of match buffers for literals/lengths and distances. There are
2051 * 4 reasons for limiting LIT_BUFSIZE to 64K:
2052 * - frequencies can be kept in 16 bit counters
2053 * - if compression is not successful for the first block, all input data is
2054 * still in the window so we can still emit a stored block even when input
2055 * comes from standard input. (This can also be done for all blocks if
2056 * LIT_BUFSIZE is not greater than 32K.)
2057 * - if compression is not successful for a file smaller than 64K, we can
2058 * even emit a stored file instead of a stored block (saving 5 bytes).
2059 * - creating new Huffman trees less frequently may not provide fast
2060 * adaptation to changes in the input data statistics. (Take for
2061 * example a binary file with poorly compressible code followed by
2062 * a highly compressible string table.) Smaller buffer sizes give
2063 * fast adaptation but have of course the overhead of transmitting trees
2064 * more frequently.
2065 * - I can't count above 4
2066 * The current code is general and allows DIST_BUFSIZE < LIT_BUFSIZE (to save
2067 * memory at the expense of compression). Some optimizations would be possible
2068 * if we rely on DIST_BUFSIZE == LIT_BUFSIZE.
2069 */
2070#if LIT_BUFSIZE > INBUFSIZ
Erik Andersene49d5ec2000-02-08 19:58:47 +00002071error cannot overlay l_buf and inbuf
Eric Andersencc8ed391999-10-05 16:24:54 +00002072#endif
Eric Andersencc8ed391999-10-05 16:24:54 +00002073#define REP_3_6 16
2074/* repeat previous bit length 3-6 times (2 bits of repeat count) */
Eric Andersencc8ed391999-10-05 16:24:54 +00002075#define REPZ_3_10 17
2076/* repeat a zero length 3-10 times (3 bits of repeat count) */
Eric Andersencc8ed391999-10-05 16:24:54 +00002077#define REPZ_11_138 18
Erik Andersene49d5ec2000-02-08 19:58:47 +00002078/* repeat a zero length 11-138 times (7 bits of repeat count) *//* ===========================================================================
Eric Andersencc8ed391999-10-05 16:24:54 +00002079 * Local data
Erik Andersene49d5ec2000-02-08 19:58:47 +00002080 *//* Data structure describing a single value and its code string. */ typedef struct ct_data {
2081 union {
2082 ush freq; /* frequency count */
2083 ush code; /* bit string */
2084 } fc;
2085 union {
2086 ush dad; /* father node in Huffman tree */
2087 ush len; /* length of bit string */
2088 } dl;
Eric Andersencc8ed391999-10-05 16:24:54 +00002089} ct_data;
2090
2091#define Freq fc.freq
2092#define Code fc.code
2093#define Dad dl.dad
2094#define Len dl.len
2095
2096#define HEAP_SIZE (2*L_CODES+1)
2097/* maximum heap size */
2098
Erik Andersene49d5ec2000-02-08 19:58:47 +00002099local ct_data near dyn_ltree[HEAP_SIZE]; /* literal and length tree */
2100local ct_data near dyn_dtree[2 * D_CODES + 1]; /* distance tree */
Eric Andersencc8ed391999-10-05 16:24:54 +00002101
Erik Andersene49d5ec2000-02-08 19:58:47 +00002102local ct_data near static_ltree[L_CODES + 2];
2103
Eric Andersencc8ed391999-10-05 16:24:54 +00002104/* The static literal tree. Since the bit lengths are imposed, there is no
2105 * need for the L_CODES extra codes used during heap construction. However
2106 * The codes 286 and 287 are needed to build a canonical tree (see ct_init
2107 * below).
2108 */
2109
2110local ct_data near static_dtree[D_CODES];
Erik Andersene49d5ec2000-02-08 19:58:47 +00002111
Eric Andersencc8ed391999-10-05 16:24:54 +00002112/* The static distance tree. (Actually a trivial tree since all codes use
2113 * 5 bits.)
2114 */
2115
Erik Andersene49d5ec2000-02-08 19:58:47 +00002116local ct_data near bl_tree[2 * BL_CODES + 1];
2117
Eric Andersencc8ed391999-10-05 16:24:54 +00002118/* Huffman tree for the bit lengths */
2119
2120typedef struct tree_desc {
Erik Andersene49d5ec2000-02-08 19:58:47 +00002121 ct_data near *dyn_tree; /* the dynamic tree */
2122 ct_data near *static_tree; /* corresponding static tree or NULL */
2123 int near *extra_bits; /* extra bits for each code or NULL */
2124 int extra_base; /* base index for extra_bits */
2125 int elems; /* max number of elements in the tree */
2126 int max_length; /* max bit length for the codes */
2127 int max_code; /* largest code with non zero frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +00002128} tree_desc;
2129
2130local tree_desc near l_desc =
Erik Andersene49d5ec2000-02-08 19:58:47 +00002131 { dyn_ltree, static_ltree, extra_lbits, LITERALS + 1, L_CODES,
2132 MAX_BITS, 0 };
Eric Andersencc8ed391999-10-05 16:24:54 +00002133
2134local tree_desc near d_desc =
Erik Andersene49d5ec2000-02-08 19:58:47 +00002135 { dyn_dtree, static_dtree, extra_dbits, 0, D_CODES, MAX_BITS, 0 };
Eric Andersencc8ed391999-10-05 16:24:54 +00002136
2137local tree_desc near bl_desc =
Erik Andersene49d5ec2000-02-08 19:58:47 +00002138 { bl_tree, (ct_data near *) 0, extra_blbits, 0, BL_CODES, MAX_BL_BITS,
2139 0 };
Eric Andersencc8ed391999-10-05 16:24:54 +00002140
2141
Erik Andersene49d5ec2000-02-08 19:58:47 +00002142local ush near bl_count[MAX_BITS + 1];
2143
Eric Andersencc8ed391999-10-05 16:24:54 +00002144/* number of codes at each bit length for an optimal tree */
2145
2146local uch near bl_order[BL_CODES]
Erik Andersene49d5ec2000-02-08 19:58:47 +00002147= { 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 };
2148
Eric Andersencc8ed391999-10-05 16:24:54 +00002149/* The lengths of the bit length codes are sent in order of decreasing
2150 * probability, to avoid transmitting the lengths for unused bit length codes.
2151 */
2152
Erik Andersene49d5ec2000-02-08 19:58:47 +00002153local int near heap[2 * L_CODES + 1]; /* heap used to build the Huffman trees */
2154local int heap_len; /* number of elements in the heap */
2155local int heap_max; /* element of largest frequency */
2156
Eric Andersencc8ed391999-10-05 16:24:54 +00002157/* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.
2158 * The same heap array is used to build all trees.
2159 */
2160
Erik Andersene49d5ec2000-02-08 19:58:47 +00002161local uch near depth[2 * L_CODES + 1];
2162
Eric Andersencc8ed391999-10-05 16:24:54 +00002163/* Depth of each subtree used as tie breaker for trees of equal frequency */
2164
Erik Andersene49d5ec2000-02-08 19:58:47 +00002165local uch length_code[MAX_MATCH - MIN_MATCH + 1];
2166
Eric Andersencc8ed391999-10-05 16:24:54 +00002167/* length code for each normalized match length (0 == MIN_MATCH) */
2168
2169local uch dist_code[512];
Erik Andersene49d5ec2000-02-08 19:58:47 +00002170
Eric Andersencc8ed391999-10-05 16:24:54 +00002171/* distance codes. The first 256 values correspond to the distances
2172 * 3 .. 258, the last 256 values correspond to the top 8 bits of
2173 * the 15 bit distances.
2174 */
2175
2176local int near base_length[LENGTH_CODES];
Erik Andersene49d5ec2000-02-08 19:58:47 +00002177
Eric Andersencc8ed391999-10-05 16:24:54 +00002178/* First normalized length for each code (0 = MIN_MATCH) */
2179
2180local int near base_dist[D_CODES];
Erik Andersene49d5ec2000-02-08 19:58:47 +00002181
Eric Andersencc8ed391999-10-05 16:24:54 +00002182/* First normalized distance for each code (0 = distance of 1) */
2183
2184#define l_buf inbuf
2185/* DECLARE(uch, l_buf, LIT_BUFSIZE); buffer for literals or lengths */
2186
2187/* DECLARE(ush, d_buf, DIST_BUFSIZE); buffer for distances */
2188
Erik Andersene49d5ec2000-02-08 19:58:47 +00002189local uch near flag_buf[(LIT_BUFSIZE / 8)];
2190
Eric Andersencc8ed391999-10-05 16:24:54 +00002191/* flag_buf is a bit array distinguishing literals from lengths in
2192 * l_buf, thus indicating the presence or absence of a distance.
2193 */
2194
Erik Andersene49d5ec2000-02-08 19:58:47 +00002195local unsigned last_lit; /* running index in l_buf */
2196local unsigned last_dist; /* running index in d_buf */
2197local unsigned last_flags; /* running index in flag_buf */
2198local uch flags; /* current flags not yet saved in flag_buf */
2199local uch flag_bit; /* current bit used in flags */
2200
Eric Andersencc8ed391999-10-05 16:24:54 +00002201/* bits are filled in flags starting at bit 0 (least significant).
2202 * Note: these flags are overkill in the current code since we don't
2203 * take advantage of DIST_BUFSIZE == LIT_BUFSIZE.
2204 */
2205
Erik Andersene49d5ec2000-02-08 19:58:47 +00002206local ulg opt_len; /* bit length of current block with optimal trees */
2207local ulg static_len; /* bit length of current block with static trees */
Eric Andersencc8ed391999-10-05 16:24:54 +00002208
Erik Andersene49d5ec2000-02-08 19:58:47 +00002209local ulg compressed_len; /* total bit length of compressed file */
Eric Andersencc8ed391999-10-05 16:24:54 +00002210
Erik Andersene49d5ec2000-02-08 19:58:47 +00002211local ulg input_len; /* total byte length of input file */
2212
Eric Andersencc8ed391999-10-05 16:24:54 +00002213/* input_len is for debugging only since we can get it by other means. */
2214
Erik Andersene49d5ec2000-02-08 19:58:47 +00002215ush *file_type; /* pointer to UNKNOWN, BINARY or ASCII */
2216int *file_method; /* pointer to DEFLATE or STORE */
Eric Andersencc8ed391999-10-05 16:24:54 +00002217
2218#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +00002219extern ulg bits_sent; /* bit length of the compressed data */
2220extern long isize; /* byte length of input file */
Eric Andersencc8ed391999-10-05 16:24:54 +00002221#endif
2222
Erik Andersene49d5ec2000-02-08 19:58:47 +00002223extern long block_start; /* window offset of current block */
2224extern unsigned near strstart; /* window offset of current string */
Eric Andersencc8ed391999-10-05 16:24:54 +00002225
2226/* ===========================================================================
2227 * Local (static) routines in this file.
2228 */
2229
Erik Andersen61677fe2000-04-13 01:18:56 +00002230local void init_block (void);
2231local void pqdownheap (ct_data near * tree, int k);
2232local void gen_bitlen (tree_desc near * desc);
2233local void gen_codes (ct_data near * tree, int max_code);
2234local void build_tree (tree_desc near * desc);
2235local void scan_tree (ct_data near * tree, int max_code);
2236local void send_tree (ct_data near * tree, int max_code);
2237local int build_bl_tree (void);
2238local void send_all_trees (int lcodes, int dcodes, int blcodes);
2239local void compress_block (ct_data near * ltree, ct_data near * dtree);
2240local void set_file_type (void);
Eric Andersencc8ed391999-10-05 16:24:54 +00002241
2242
2243#ifndef DEBUG
2244# define send_code(c, tree) send_bits(tree[c].Code, tree[c].Len)
2245 /* Send a code of the given tree. c and tree must not have side effects */
2246
Erik Andersene49d5ec2000-02-08 19:58:47 +00002247#else /* DEBUG */
Eric Andersencc8ed391999-10-05 16:24:54 +00002248# define send_code(c, tree) \
2249 { if (verbose>1) fprintf(stderr,"\ncd %3d ",(c)); \
2250 send_bits(tree[c].Code, tree[c].Len); }
2251#endif
2252
2253#define d_code(dist) \
2254 ((dist) < 256 ? dist_code[dist] : dist_code[256+((dist)>>7)])
2255/* Mapping from a distance to a distance code. dist is the distance - 1 and
2256 * must not have side effects. dist_code[256] and dist_code[257] are never
2257 * used.
2258 */
2259
Eric Andersencc8ed391999-10-05 16:24:54 +00002260/* the arguments must not have side effects */
2261
2262/* ===========================================================================
2263 * Allocate the match buffer, initialize the various tables and save the
2264 * location of the internal file attribute (ascii/binary) and method
2265 * (DEFLATE/STORE).
2266 */
2267void ct_init(attr, methodp)
Erik Andersene49d5ec2000-02-08 19:58:47 +00002268ush *attr; /* pointer to internal file attribute */
2269int *methodp; /* pointer to compression method */
Eric Andersencc8ed391999-10-05 16:24:54 +00002270{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002271 int n; /* iterates over tree elements */
2272 int bits; /* bit counter */
2273 int length; /* length value */
2274 int code; /* code value */
2275 int dist; /* distance index */
Eric Andersencc8ed391999-10-05 16:24:54 +00002276
Erik Andersene49d5ec2000-02-08 19:58:47 +00002277 file_type = attr;
2278 file_method = methodp;
2279 compressed_len = input_len = 0L;
Eric Andersencc8ed391999-10-05 16:24:54 +00002280
Erik Andersene49d5ec2000-02-08 19:58:47 +00002281 if (static_dtree[0].Len != 0)
2282 return; /* ct_init already called */
Eric Andersencc8ed391999-10-05 16:24:54 +00002283
Erik Andersene49d5ec2000-02-08 19:58:47 +00002284 /* Initialize the mapping length (0..255) -> length code (0..28) */
2285 length = 0;
2286 for (code = 0; code < LENGTH_CODES - 1; code++) {
2287 base_length[code] = length;
2288 for (n = 0; n < (1 << extra_lbits[code]); n++) {
2289 length_code[length++] = (uch) code;
2290 }
2291 }
2292 Assert(length == 256, "ct_init: length != 256");
2293 /* Note that the length 255 (match length 258) can be represented
2294 * in two different ways: code 284 + 5 bits or code 285, so we
2295 * overwrite length_code[255] to use the best encoding:
2296 */
2297 length_code[length - 1] = (uch) code;
Eric Andersencc8ed391999-10-05 16:24:54 +00002298
Erik Andersene49d5ec2000-02-08 19:58:47 +00002299 /* Initialize the mapping dist (0..32K) -> dist code (0..29) */
2300 dist = 0;
2301 for (code = 0; code < 16; code++) {
2302 base_dist[code] = dist;
2303 for (n = 0; n < (1 << extra_dbits[code]); n++) {
2304 dist_code[dist++] = (uch) code;
2305 }
2306 }
2307 Assert(dist == 256, "ct_init: dist != 256");
2308 dist >>= 7; /* from now on, all distances are divided by 128 */
2309 for (; code < D_CODES; code++) {
2310 base_dist[code] = dist << 7;
2311 for (n = 0; n < (1 << (extra_dbits[code] - 7)); n++) {
2312 dist_code[256 + dist++] = (uch) code;
2313 }
2314 }
2315 Assert(dist == 256, "ct_init: 256+dist != 512");
Eric Andersencc8ed391999-10-05 16:24:54 +00002316
Erik Andersene49d5ec2000-02-08 19:58:47 +00002317 /* Construct the codes of the static literal tree */
2318 for (bits = 0; bits <= MAX_BITS; bits++)
2319 bl_count[bits] = 0;
2320 n = 0;
2321 while (n <= 143)
2322 static_ltree[n++].Len = 8, bl_count[8]++;
2323 while (n <= 255)
2324 static_ltree[n++].Len = 9, bl_count[9]++;
2325 while (n <= 279)
2326 static_ltree[n++].Len = 7, bl_count[7]++;
2327 while (n <= 287)
2328 static_ltree[n++].Len = 8, bl_count[8]++;
2329 /* Codes 286 and 287 do not exist, but we must include them in the
2330 * tree construction to get a canonical Huffman tree (longest code
2331 * all ones)
2332 */
2333 gen_codes((ct_data near *) static_ltree, L_CODES + 1);
Eric Andersencc8ed391999-10-05 16:24:54 +00002334
Erik Andersene49d5ec2000-02-08 19:58:47 +00002335 /* The static distance tree is trivial: */
2336 for (n = 0; n < D_CODES; n++) {
2337 static_dtree[n].Len = 5;
2338 static_dtree[n].Code = bi_reverse(n, 5);
2339 }
2340
2341 /* Initialize the first block of the first file: */
2342 init_block();
Eric Andersencc8ed391999-10-05 16:24:54 +00002343}
2344
2345/* ===========================================================================
2346 * Initialize a new block.
2347 */
2348local void init_block()
2349{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002350 int n; /* iterates over tree elements */
Eric Andersencc8ed391999-10-05 16:24:54 +00002351
Erik Andersene49d5ec2000-02-08 19:58:47 +00002352 /* Initialize the trees. */
2353 for (n = 0; n < L_CODES; n++)
2354 dyn_ltree[n].Freq = 0;
2355 for (n = 0; n < D_CODES; n++)
2356 dyn_dtree[n].Freq = 0;
2357 for (n = 0; n < BL_CODES; n++)
2358 bl_tree[n].Freq = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00002359
Erik Andersene49d5ec2000-02-08 19:58:47 +00002360 dyn_ltree[END_BLOCK].Freq = 1;
2361 opt_len = static_len = 0L;
2362 last_lit = last_dist = last_flags = 0;
2363 flags = 0;
2364 flag_bit = 1;
Eric Andersencc8ed391999-10-05 16:24:54 +00002365}
2366
2367#define SMALLEST 1
2368/* Index within the heap array of least frequent node in the Huffman tree */
2369
2370
2371/* ===========================================================================
2372 * Remove the smallest element from the heap and recreate the heap with
2373 * one less element. Updates heap and heap_len.
2374 */
2375#define pqremove(tree, top) \
2376{\
2377 top = heap[SMALLEST]; \
2378 heap[SMALLEST] = heap[heap_len--]; \
2379 pqdownheap(tree, SMALLEST); \
2380}
2381
2382/* ===========================================================================
2383 * Compares to subtrees, using the tree depth as tie breaker when
2384 * the subtrees have equal frequency. This minimizes the worst case length.
2385 */
2386#define smaller(tree, n, m) \
2387 (tree[n].Freq < tree[m].Freq || \
2388 (tree[n].Freq == tree[m].Freq && depth[n] <= depth[m]))
2389
2390/* ===========================================================================
2391 * Restore the heap property by moving down the tree starting at node k,
2392 * exchanging a node with the smallest of its two sons if necessary, stopping
2393 * when the heap property is re-established (each father smaller than its
2394 * two sons).
2395 */
2396local void pqdownheap(tree, k)
Erik Andersene49d5ec2000-02-08 19:58:47 +00002397ct_data near *tree; /* the tree to restore */
2398int k; /* node to move down */
Eric Andersencc8ed391999-10-05 16:24:54 +00002399{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002400 int v = heap[k];
2401 int j = k << 1; /* left son of k */
Eric Andersencc8ed391999-10-05 16:24:54 +00002402
Erik Andersene49d5ec2000-02-08 19:58:47 +00002403 while (j <= heap_len) {
2404 /* Set j to the smallest of the two sons: */
2405 if (j < heap_len && smaller(tree, heap[j + 1], heap[j]))
2406 j++;
Eric Andersencc8ed391999-10-05 16:24:54 +00002407
Erik Andersene49d5ec2000-02-08 19:58:47 +00002408 /* Exit if v is smaller than both sons */
2409 if (smaller(tree, v, heap[j]))
2410 break;
Eric Andersencc8ed391999-10-05 16:24:54 +00002411
Erik Andersene49d5ec2000-02-08 19:58:47 +00002412 /* Exchange v with the smallest son */
2413 heap[k] = heap[j];
2414 k = j;
2415
2416 /* And continue down the tree, setting j to the left son of k */
2417 j <<= 1;
2418 }
2419 heap[k] = v;
Eric Andersencc8ed391999-10-05 16:24:54 +00002420}
2421
2422/* ===========================================================================
2423 * Compute the optimal bit lengths for a tree and update the total bit length
2424 * for the current block.
2425 * IN assertion: the fields freq and dad are set, heap[heap_max] and
2426 * above are the tree nodes sorted by increasing frequency.
2427 * OUT assertions: the field len is set to the optimal bit length, the
2428 * array bl_count contains the frequencies for each bit length.
2429 * The length opt_len is updated; static_len is also updated if stree is
2430 * not null.
2431 */
2432local void gen_bitlen(desc)
Erik Andersene49d5ec2000-02-08 19:58:47 +00002433tree_desc near *desc; /* the tree descriptor */
Eric Andersencc8ed391999-10-05 16:24:54 +00002434{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002435 ct_data near *tree = desc->dyn_tree;
2436 int near *extra = desc->extra_bits;
2437 int base = desc->extra_base;
2438 int max_code = desc->max_code;
2439 int max_length = desc->max_length;
2440 ct_data near *stree = desc->static_tree;
2441 int h; /* heap index */
2442 int n, m; /* iterate over the tree elements */
2443 int bits; /* bit length */
2444 int xbits; /* extra bits */
2445 ush f; /* frequency */
2446 int overflow = 0; /* number of elements with bit length too large */
Eric Andersencc8ed391999-10-05 16:24:54 +00002447
Erik Andersene49d5ec2000-02-08 19:58:47 +00002448 for (bits = 0; bits <= MAX_BITS; bits++)
2449 bl_count[bits] = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00002450
Erik Andersene49d5ec2000-02-08 19:58:47 +00002451 /* In a first pass, compute the optimal bit lengths (which may
2452 * overflow in the case of the bit length tree).
2453 */
2454 tree[heap[heap_max]].Len = 0; /* root of the heap */
Eric Andersencc8ed391999-10-05 16:24:54 +00002455
Erik Andersene49d5ec2000-02-08 19:58:47 +00002456 for (h = heap_max + 1; h < HEAP_SIZE; h++) {
2457 n = heap[h];
2458 bits = tree[tree[n].Dad].Len + 1;
2459 if (bits > max_length)
2460 bits = max_length, overflow++;
2461 tree[n].Len = (ush) bits;
2462 /* We overwrite tree[n].Dad which is no longer needed */
Eric Andersencc8ed391999-10-05 16:24:54 +00002463
Erik Andersene49d5ec2000-02-08 19:58:47 +00002464 if (n > max_code)
2465 continue; /* not a leaf node */
Eric Andersencc8ed391999-10-05 16:24:54 +00002466
Erik Andersene49d5ec2000-02-08 19:58:47 +00002467 bl_count[bits]++;
2468 xbits = 0;
2469 if (n >= base)
2470 xbits = extra[n - base];
2471 f = tree[n].Freq;
2472 opt_len += (ulg) f *(bits + xbits);
Eric Andersencc8ed391999-10-05 16:24:54 +00002473
Erik Andersene49d5ec2000-02-08 19:58:47 +00002474 if (stree)
2475 static_len += (ulg) f *(stree[n].Len + xbits);
2476 }
2477 if (overflow == 0)
2478 return;
Eric Andersencc8ed391999-10-05 16:24:54 +00002479
Erik Andersene49d5ec2000-02-08 19:58:47 +00002480 Trace((stderr, "\nbit length overflow\n"));
2481 /* This happens for example on obj2 and pic of the Calgary corpus */
Eric Andersencc8ed391999-10-05 16:24:54 +00002482
Erik Andersene49d5ec2000-02-08 19:58:47 +00002483 /* Find the first bit length which could increase: */
2484 do {
2485 bits = max_length - 1;
2486 while (bl_count[bits] == 0)
2487 bits--;
2488 bl_count[bits]--; /* move one leaf down the tree */
2489 bl_count[bits + 1] += 2; /* move one overflow item as its brother */
2490 bl_count[max_length]--;
2491 /* The brother of the overflow item also moves one step up,
2492 * but this does not affect bl_count[max_length]
2493 */
2494 overflow -= 2;
2495 } while (overflow > 0);
2496
2497 /* Now recompute all bit lengths, scanning in increasing frequency.
2498 * h is still equal to HEAP_SIZE. (It is simpler to reconstruct all
2499 * lengths instead of fixing only the wrong ones. This idea is taken
2500 * from 'ar' written by Haruhiko Okumura.)
2501 */
2502 for (bits = max_length; bits != 0; bits--) {
2503 n = bl_count[bits];
2504 while (n != 0) {
2505 m = heap[--h];
2506 if (m > max_code)
2507 continue;
2508 if (tree[m].Len != (unsigned) bits) {
2509 Trace(
2510 (stderr, "code %d bits %d->%d\n", m, tree[m].Len,
2511 bits));
2512 opt_len +=
2513 ((long) bits -
2514 (long) tree[m].Len) * (long) tree[m].Freq;
2515 tree[m].Len = (ush) bits;
2516 }
2517 n--;
2518 }
2519 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002520}
2521
2522/* ===========================================================================
2523 * Generate the codes for a given tree and bit counts (which need not be
2524 * optimal).
2525 * IN assertion: the array bl_count contains the bit length statistics for
2526 * the given tree and the field len is set for all tree elements.
2527 * OUT assertion: the field code is set for all tree elements of non
2528 * zero code length.
2529 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002530local void gen_codes(tree, max_code)
2531ct_data near *tree; /* the tree to decorate */
2532int max_code; /* largest code with non zero frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +00002533{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002534 ush next_code[MAX_BITS + 1]; /* next code value for each bit length */
2535 ush code = 0; /* running code value */
2536 int bits; /* bit index */
2537 int n; /* code index */
Eric Andersencc8ed391999-10-05 16:24:54 +00002538
Erik Andersene49d5ec2000-02-08 19:58:47 +00002539 /* The distribution counts are first used to generate the code values
2540 * without bit reversal.
2541 */
2542 for (bits = 1; bits <= MAX_BITS; bits++) {
2543 next_code[bits] = code = (code + bl_count[bits - 1]) << 1;
2544 }
2545 /* Check that the bit counts in bl_count are consistent. The last code
2546 * must be all ones.
2547 */
2548 Assert(code + bl_count[MAX_BITS] - 1 == (1 << MAX_BITS) - 1,
2549 "inconsistent bit counts");
2550 Tracev((stderr, "\ngen_codes: max_code %d ", max_code));
Eric Andersencc8ed391999-10-05 16:24:54 +00002551
Erik Andersene49d5ec2000-02-08 19:58:47 +00002552 for (n = 0; n <= max_code; n++) {
2553 int len = tree[n].Len;
Eric Andersencc8ed391999-10-05 16:24:54 +00002554
Erik Andersene49d5ec2000-02-08 19:58:47 +00002555 if (len == 0)
2556 continue;
2557 /* Now reverse the bits */
2558 tree[n].Code = bi_reverse(next_code[len]++, len);
2559
2560 Tracec(tree != static_ltree,
2561 (stderr, "\nn %3d %c l %2d c %4x (%x) ", n,
2562 (isgraph(n) ? n : ' '), len, tree[n].Code,
2563 next_code[len] - 1));
2564 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002565}
2566
2567/* ===========================================================================
2568 * Construct one Huffman tree and assigns the code bit strings and lengths.
2569 * Update the total bit length for the current block.
2570 * IN assertion: the field freq is set for all tree elements.
2571 * OUT assertions: the fields len and code are set to the optimal bit length
2572 * and corresponding code. The length opt_len is updated; static_len is
2573 * also updated if stree is not null. The field max_code is set.
2574 */
2575local void build_tree(desc)
Erik Andersene49d5ec2000-02-08 19:58:47 +00002576tree_desc near *desc; /* the tree descriptor */
Eric Andersencc8ed391999-10-05 16:24:54 +00002577{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002578 ct_data near *tree = desc->dyn_tree;
2579 ct_data near *stree = desc->static_tree;
2580 int elems = desc->elems;
2581 int n, m; /* iterate over heap elements */
2582 int max_code = -1; /* largest code with non zero frequency */
2583 int node = elems; /* next internal node of the tree */
Eric Andersencc8ed391999-10-05 16:24:54 +00002584
Erik Andersene49d5ec2000-02-08 19:58:47 +00002585 /* Construct the initial heap, with least frequent element in
2586 * heap[SMALLEST]. The sons of heap[n] are heap[2*n] and heap[2*n+1].
2587 * heap[0] is not used.
2588 */
2589 heap_len = 0, heap_max = HEAP_SIZE;
Eric Andersencc8ed391999-10-05 16:24:54 +00002590
Erik Andersene49d5ec2000-02-08 19:58:47 +00002591 for (n = 0; n < elems; n++) {
2592 if (tree[n].Freq != 0) {
2593 heap[++heap_len] = max_code = n;
2594 depth[n] = 0;
2595 } else {
2596 tree[n].Len = 0;
2597 }
2598 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002599
Erik Andersene49d5ec2000-02-08 19:58:47 +00002600 /* The pkzip format requires that at least one distance code exists,
2601 * and that at least one bit should be sent even if there is only one
2602 * possible code. So to avoid special checks later on we force at least
2603 * two codes of non zero frequency.
2604 */
2605 while (heap_len < 2) {
2606 int new = heap[++heap_len] = (max_code < 2 ? ++max_code : 0);
Eric Andersencc8ed391999-10-05 16:24:54 +00002607
Erik Andersene49d5ec2000-02-08 19:58:47 +00002608 tree[new].Freq = 1;
2609 depth[new] = 0;
2610 opt_len--;
2611 if (stree)
2612 static_len -= stree[new].Len;
2613 /* new is 0 or 1 so it does not have extra bits */
2614 }
2615 desc->max_code = max_code;
Eric Andersencc8ed391999-10-05 16:24:54 +00002616
Erik Andersene49d5ec2000-02-08 19:58:47 +00002617 /* The elements heap[heap_len/2+1 .. heap_len] are leaves of the tree,
2618 * establish sub-heaps of increasing lengths:
2619 */
2620 for (n = heap_len / 2; n >= 1; n--)
2621 pqdownheap(tree, n);
Eric Andersencc8ed391999-10-05 16:24:54 +00002622
Erik Andersene49d5ec2000-02-08 19:58:47 +00002623 /* Construct the Huffman tree by repeatedly combining the least two
2624 * frequent nodes.
2625 */
2626 do {
2627 pqremove(tree, n); /* n = node of least frequency */
2628 m = heap[SMALLEST]; /* m = node of next least frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +00002629
Erik Andersene49d5ec2000-02-08 19:58:47 +00002630 heap[--heap_max] = n; /* keep the nodes sorted by frequency */
2631 heap[--heap_max] = m;
2632
2633 /* Create a new node father of n and m */
2634 tree[node].Freq = tree[n].Freq + tree[m].Freq;
2635 depth[node] = (uch) (MAX(depth[n], depth[m]) + 1);
2636 tree[n].Dad = tree[m].Dad = (ush) node;
Eric Andersencc8ed391999-10-05 16:24:54 +00002637#ifdef DUMP_BL_TREE
Erik Andersene49d5ec2000-02-08 19:58:47 +00002638 if (tree == bl_tree) {
2639 fprintf(stderr, "\nnode %d(%d), sons %d(%d) %d(%d)",
2640 node, tree[node].Freq, n, tree[n].Freq, m,
2641 tree[m].Freq);
2642 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002643#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00002644 /* and insert the new node in the heap */
2645 heap[SMALLEST] = node++;
2646 pqdownheap(tree, SMALLEST);
Eric Andersencc8ed391999-10-05 16:24:54 +00002647
Erik Andersene49d5ec2000-02-08 19:58:47 +00002648 } while (heap_len >= 2);
Eric Andersencc8ed391999-10-05 16:24:54 +00002649
Erik Andersene49d5ec2000-02-08 19:58:47 +00002650 heap[--heap_max] = heap[SMALLEST];
Eric Andersencc8ed391999-10-05 16:24:54 +00002651
Erik Andersene49d5ec2000-02-08 19:58:47 +00002652 /* At this point, the fields freq and dad are set. We can now
2653 * generate the bit lengths.
2654 */
2655 gen_bitlen((tree_desc near *) desc);
Eric Andersencc8ed391999-10-05 16:24:54 +00002656
Erik Andersene49d5ec2000-02-08 19:58:47 +00002657 /* The field len is now set, we can generate the bit codes */
2658 gen_codes((ct_data near *) tree, max_code);
Eric Andersencc8ed391999-10-05 16:24:54 +00002659}
2660
2661/* ===========================================================================
2662 * Scan a literal or distance tree to determine the frequencies of the codes
2663 * in the bit length tree. Updates opt_len to take into account the repeat
2664 * counts. (The contribution of the bit length codes will be added later
2665 * during the construction of bl_tree.)
2666 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002667local void scan_tree(tree, max_code)
2668ct_data near *tree; /* the tree to be scanned */
2669int max_code; /* and its largest code of non zero frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +00002670{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002671 int n; /* iterates over all tree elements */
2672 int prevlen = -1; /* last emitted length */
2673 int curlen; /* length of current code */
2674 int nextlen = tree[0].Len; /* length of next code */
2675 int count = 0; /* repeat count of the current code */
2676 int max_count = 7; /* max repeat count */
2677 int min_count = 4; /* min repeat count */
Eric Andersencc8ed391999-10-05 16:24:54 +00002678
Erik Andersene49d5ec2000-02-08 19:58:47 +00002679 if (nextlen == 0)
2680 max_count = 138, min_count = 3;
2681 tree[max_code + 1].Len = (ush) 0xffff; /* guard */
Eric Andersencc8ed391999-10-05 16:24:54 +00002682
Erik Andersene49d5ec2000-02-08 19:58:47 +00002683 for (n = 0; n <= max_code; n++) {
2684 curlen = nextlen;
2685 nextlen = tree[n + 1].Len;
2686 if (++count < max_count && curlen == nextlen) {
2687 continue;
2688 } else if (count < min_count) {
2689 bl_tree[curlen].Freq += count;
2690 } else if (curlen != 0) {
2691 if (curlen != prevlen)
2692 bl_tree[curlen].Freq++;
2693 bl_tree[REP_3_6].Freq++;
2694 } else if (count <= 10) {
2695 bl_tree[REPZ_3_10].Freq++;
2696 } else {
2697 bl_tree[REPZ_11_138].Freq++;
2698 }
2699 count = 0;
2700 prevlen = curlen;
2701 if (nextlen == 0) {
2702 max_count = 138, min_count = 3;
2703 } else if (curlen == nextlen) {
2704 max_count = 6, min_count = 3;
2705 } else {
2706 max_count = 7, min_count = 4;
2707 }
2708 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002709}
2710
2711/* ===========================================================================
2712 * Send a literal or distance tree in compressed form, using the codes in
2713 * bl_tree.
2714 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002715local void send_tree(tree, max_code)
2716ct_data near *tree; /* the tree to be scanned */
2717int max_code; /* and its largest code of non zero frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +00002718{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002719 int n; /* iterates over all tree elements */
2720 int prevlen = -1; /* last emitted length */
2721 int curlen; /* length of current code */
2722 int nextlen = tree[0].Len; /* length of next code */
2723 int count = 0; /* repeat count of the current code */
2724 int max_count = 7; /* max repeat count */
2725 int min_count = 4; /* min repeat count */
Eric Andersencc8ed391999-10-05 16:24:54 +00002726
Erik Andersene49d5ec2000-02-08 19:58:47 +00002727/* tree[max_code+1].Len = -1; *//* guard already set */
2728 if (nextlen == 0)
2729 max_count = 138, min_count = 3;
Eric Andersencc8ed391999-10-05 16:24:54 +00002730
Erik Andersene49d5ec2000-02-08 19:58:47 +00002731 for (n = 0; n <= max_code; n++) {
2732 curlen = nextlen;
2733 nextlen = tree[n + 1].Len;
2734 if (++count < max_count && curlen == nextlen) {
2735 continue;
2736 } else if (count < min_count) {
2737 do {
2738 send_code(curlen, bl_tree);
2739 } while (--count != 0);
Eric Andersencc8ed391999-10-05 16:24:54 +00002740
Erik Andersene49d5ec2000-02-08 19:58:47 +00002741 } else if (curlen != 0) {
2742 if (curlen != prevlen) {
2743 send_code(curlen, bl_tree);
2744 count--;
2745 }
2746 Assert(count >= 3 && count <= 6, " 3_6?");
2747 send_code(REP_3_6, bl_tree);
2748 send_bits(count - 3, 2);
Eric Andersencc8ed391999-10-05 16:24:54 +00002749
Erik Andersene49d5ec2000-02-08 19:58:47 +00002750 } else if (count <= 10) {
2751 send_code(REPZ_3_10, bl_tree);
2752 send_bits(count - 3, 3);
Eric Andersencc8ed391999-10-05 16:24:54 +00002753
Erik Andersene49d5ec2000-02-08 19:58:47 +00002754 } else {
2755 send_code(REPZ_11_138, bl_tree);
2756 send_bits(count - 11, 7);
2757 }
2758 count = 0;
2759 prevlen = curlen;
2760 if (nextlen == 0) {
2761 max_count = 138, min_count = 3;
2762 } else if (curlen == nextlen) {
2763 max_count = 6, min_count = 3;
2764 } else {
2765 max_count = 7, min_count = 4;
2766 }
2767 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002768}
2769
2770/* ===========================================================================
2771 * Construct the Huffman tree for the bit lengths and return the index in
2772 * bl_order of the last bit length code to send.
2773 */
2774local int build_bl_tree()
2775{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002776 int max_blindex; /* index of last bit length code of non zero freq */
Eric Andersencc8ed391999-10-05 16:24:54 +00002777
Erik Andersene49d5ec2000-02-08 19:58:47 +00002778 /* Determine the bit length frequencies for literal and distance trees */
2779 scan_tree((ct_data near *) dyn_ltree, l_desc.max_code);
2780 scan_tree((ct_data near *) dyn_dtree, d_desc.max_code);
Eric Andersencc8ed391999-10-05 16:24:54 +00002781
Erik Andersene49d5ec2000-02-08 19:58:47 +00002782 /* Build the bit length tree: */
2783 build_tree((tree_desc near *) (&bl_desc));
2784 /* opt_len now includes the length of the tree representations, except
2785 * the lengths of the bit lengths codes and the 5+5+4 bits for the counts.
2786 */
Eric Andersencc8ed391999-10-05 16:24:54 +00002787
Erik Andersene49d5ec2000-02-08 19:58:47 +00002788 /* Determine the number of bit length codes to send. The pkzip format
2789 * requires that at least 4 bit length codes be sent. (appnote.txt says
2790 * 3 but the actual value used is 4.)
2791 */
2792 for (max_blindex = BL_CODES - 1; max_blindex >= 3; max_blindex--) {
2793 if (bl_tree[bl_order[max_blindex]].Len != 0)
2794 break;
2795 }
2796 /* Update opt_len to include the bit length tree and counts */
2797 opt_len += 3 * (max_blindex + 1) + 5 + 5 + 4;
2798 Tracev(
2799 (stderr, "\ndyn trees: dyn %ld, stat %ld", opt_len,
2800 static_len));
Eric Andersencc8ed391999-10-05 16:24:54 +00002801
Erik Andersene49d5ec2000-02-08 19:58:47 +00002802 return max_blindex;
Eric Andersencc8ed391999-10-05 16:24:54 +00002803}
2804
2805/* ===========================================================================
2806 * Send the header for a block using dynamic Huffman trees: the counts, the
2807 * lengths of the bit length codes, the literal tree and the distance tree.
2808 * IN assertion: lcodes >= 257, dcodes >= 1, blcodes >= 4.
2809 */
2810local void send_all_trees(lcodes, dcodes, blcodes)
Erik Andersene49d5ec2000-02-08 19:58:47 +00002811int lcodes, dcodes, blcodes; /* number of codes for each tree */
Eric Andersencc8ed391999-10-05 16:24:54 +00002812{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002813 int rank; /* index in bl_order */
Eric Andersencc8ed391999-10-05 16:24:54 +00002814
Erik Andersene49d5ec2000-02-08 19:58:47 +00002815 Assert(lcodes >= 257 && dcodes >= 1
2816 && blcodes >= 4, "not enough codes");
2817 Assert(lcodes <= L_CODES && dcodes <= D_CODES
2818 && blcodes <= BL_CODES, "too many codes");
2819 Tracev((stderr, "\nbl counts: "));
2820 send_bits(lcodes - 257, 5); /* not +255 as stated in appnote.txt */
2821 send_bits(dcodes - 1, 5);
2822 send_bits(blcodes - 4, 4); /* not -3 as stated in appnote.txt */
2823 for (rank = 0; rank < blcodes; rank++) {
2824 Tracev((stderr, "\nbl code %2d ", bl_order[rank]));
2825 send_bits(bl_tree[bl_order[rank]].Len, 3);
2826 }
2827 Tracev((stderr, "\nbl tree: sent %ld", bits_sent));
Eric Andersencc8ed391999-10-05 16:24:54 +00002828
Erik Andersene49d5ec2000-02-08 19:58:47 +00002829 send_tree((ct_data near *) dyn_ltree, lcodes - 1); /* send the literal tree */
2830 Tracev((stderr, "\nlit tree: sent %ld", bits_sent));
Eric Andersencc8ed391999-10-05 16:24:54 +00002831
Erik Andersene49d5ec2000-02-08 19:58:47 +00002832 send_tree((ct_data near *) dyn_dtree, dcodes - 1); /* send the distance tree */
2833 Tracev((stderr, "\ndist tree: sent %ld", bits_sent));
Eric Andersencc8ed391999-10-05 16:24:54 +00002834}
2835
2836/* ===========================================================================
2837 * Determine the best encoding for the current block: dynamic trees, static
2838 * trees or store, and output the encoded block to the zip file. This function
2839 * returns the total compressed length for the file so far.
2840 */
2841ulg flush_block(buf, stored_len, eof)
Erik Andersene49d5ec2000-02-08 19:58:47 +00002842char *buf; /* input block, or NULL if too old */
2843ulg stored_len; /* length of input block */
2844int eof; /* true if this is the last block for a file */
Eric Andersencc8ed391999-10-05 16:24:54 +00002845{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002846 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
2847 int max_blindex; /* index of last bit length code of non zero freq */
Eric Andersencc8ed391999-10-05 16:24:54 +00002848
Erik Andersene49d5ec2000-02-08 19:58:47 +00002849 flag_buf[last_flags] = flags; /* Save the flags for the last 8 items */
Eric Andersencc8ed391999-10-05 16:24:54 +00002850
Erik Andersene49d5ec2000-02-08 19:58:47 +00002851 /* Check if the file is ascii or binary */
2852 if (*file_type == (ush) UNKNOWN)
2853 set_file_type();
Eric Andersencc8ed391999-10-05 16:24:54 +00002854
Erik Andersene49d5ec2000-02-08 19:58:47 +00002855 /* Construct the literal and distance trees */
2856 build_tree((tree_desc near *) (&l_desc));
2857 Tracev((stderr, "\nlit data: dyn %ld, stat %ld", opt_len, static_len));
Eric Andersencc8ed391999-10-05 16:24:54 +00002858
Erik Andersene49d5ec2000-02-08 19:58:47 +00002859 build_tree((tree_desc near *) (&d_desc));
2860 Tracev(
2861 (stderr, "\ndist data: dyn %ld, stat %ld", opt_len,
2862 static_len));
2863 /* At this point, opt_len and static_len are the total bit lengths of
2864 * the compressed block data, excluding the tree representations.
2865 */
Eric Andersencc8ed391999-10-05 16:24:54 +00002866
Erik Andersene49d5ec2000-02-08 19:58:47 +00002867 /* Build the bit length tree for the above two trees, and get the index
2868 * in bl_order of the last bit length code to send.
2869 */
2870 max_blindex = build_bl_tree();
Eric Andersencc8ed391999-10-05 16:24:54 +00002871
Erik Andersene49d5ec2000-02-08 19:58:47 +00002872 /* Determine the best encoding. Compute first the block length in bytes */
2873 opt_lenb = (opt_len + 3 + 7) >> 3;
2874 static_lenb = (static_len + 3 + 7) >> 3;
2875 input_len += stored_len; /* for debugging only */
Eric Andersencc8ed391999-10-05 16:24:54 +00002876
Erik Andersene49d5ec2000-02-08 19:58:47 +00002877 Trace(
2878 (stderr,
2879 "\nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u dist %u ",
2880 opt_lenb, opt_len, static_lenb, static_len, stored_len,
2881 last_lit, last_dist));
Eric Andersencc8ed391999-10-05 16:24:54 +00002882
Erik Andersene49d5ec2000-02-08 19:58:47 +00002883 if (static_lenb <= opt_lenb)
2884 opt_lenb = static_lenb;
Eric Andersencc8ed391999-10-05 16:24:54 +00002885
Erik Andersene49d5ec2000-02-08 19:58:47 +00002886 /* If compression failed and this is the first and last block,
2887 * and if the zip file can be seeked (to rewrite the local header),
2888 * the whole file is transformed into a stored file:
2889 */
Eric Andersencc8ed391999-10-05 16:24:54 +00002890#ifdef FORCE_METHOD
2891#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00002892 if (stored_len <= opt_lenb && eof && compressed_len == 0L
2893 && seekable()) {
Eric Andersencc8ed391999-10-05 16:24:54 +00002894#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00002895 /* Since LIT_BUFSIZE <= 2*WSIZE, the input data must be there: */
2896 if (buf == (char *) 0)
Mark Whitleyf57c9442000-12-07 19:56:48 +00002897 error_msg("block vanished\n");
Eric Andersencc8ed391999-10-05 16:24:54 +00002898
Erik Andersene49d5ec2000-02-08 19:58:47 +00002899 copy_block(buf, (unsigned) stored_len, 0); /* without header */
2900 compressed_len = stored_len << 3;
2901 *file_method = STORED;
Eric Andersencc8ed391999-10-05 16:24:54 +00002902
2903#ifdef FORCE_METHOD
2904#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00002905 } else if (stored_len + 4 <= opt_lenb && buf != (char *) 0) {
2906 /* 4: two words for the lengths */
Eric Andersencc8ed391999-10-05 16:24:54 +00002907#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00002908 /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE.
2909 * Otherwise we can't have processed more than WSIZE input bytes since
2910 * the last block flush, because compression would have been
2911 * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to
2912 * transform a block into a stored block.
2913 */
2914 send_bits((STORED_BLOCK << 1) + eof, 3); /* send block type */
2915 compressed_len = (compressed_len + 3 + 7) & ~7L;
2916 compressed_len += (stored_len + 4) << 3;
Eric Andersencc8ed391999-10-05 16:24:54 +00002917
Erik Andersene49d5ec2000-02-08 19:58:47 +00002918 copy_block(buf, (unsigned) stored_len, 1); /* with header */
Eric Andersencc8ed391999-10-05 16:24:54 +00002919
2920#ifdef FORCE_METHOD
2921#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00002922 } else if (static_lenb == opt_lenb) {
Eric Andersencc8ed391999-10-05 16:24:54 +00002923#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00002924 send_bits((STATIC_TREES << 1) + eof, 3);
2925 compress_block((ct_data near *) static_ltree,
2926 (ct_data near *) static_dtree);
2927 compressed_len += 3 + static_len;
2928 } else {
2929 send_bits((DYN_TREES << 1) + eof, 3);
2930 send_all_trees(l_desc.max_code + 1, d_desc.max_code + 1,
2931 max_blindex + 1);
2932 compress_block((ct_data near *) dyn_ltree,
2933 (ct_data near *) dyn_dtree);
2934 compressed_len += 3 + opt_len;
2935 }
2936 Assert(compressed_len == bits_sent, "bad compressed size");
2937 init_block();
Eric Andersencc8ed391999-10-05 16:24:54 +00002938
Erik Andersene49d5ec2000-02-08 19:58:47 +00002939 if (eof) {
2940 Assert(input_len == isize, "bad input size");
2941 bi_windup();
2942 compressed_len += 7; /* align on byte boundary */
2943 }
2944 Tracev((stderr, "\ncomprlen %lu(%lu) ", compressed_len >> 3,
2945 compressed_len - 7 * eof));
Eric Andersencc8ed391999-10-05 16:24:54 +00002946
Erik Andersene49d5ec2000-02-08 19:58:47 +00002947 return compressed_len >> 3;
Eric Andersencc8ed391999-10-05 16:24:54 +00002948}
2949
2950/* ===========================================================================
2951 * Save the match info and tally the frequency counts. Return true if
2952 * the current block must be flushed.
2953 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002954int ct_tally(dist, lc)
2955int dist; /* distance of matched string */
2956int lc; /* match length-MIN_MATCH or unmatched char (if dist==0) */
Eric Andersencc8ed391999-10-05 16:24:54 +00002957{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002958 l_buf[last_lit++] = (uch) lc;
2959 if (dist == 0) {
2960 /* lc is the unmatched char */
2961 dyn_ltree[lc].Freq++;
2962 } else {
2963 /* Here, lc is the match length - MIN_MATCH */
2964 dist--; /* dist = match distance - 1 */
2965 Assert((ush) dist < (ush) MAX_DIST &&
2966 (ush) lc <= (ush) (MAX_MATCH - MIN_MATCH) &&
2967 (ush) d_code(dist) < (ush) D_CODES, "ct_tally: bad match");
Eric Andersencc8ed391999-10-05 16:24:54 +00002968
Erik Andersene49d5ec2000-02-08 19:58:47 +00002969 dyn_ltree[length_code[lc] + LITERALS + 1].Freq++;
2970 dyn_dtree[d_code(dist)].Freq++;
Eric Andersencc8ed391999-10-05 16:24:54 +00002971
Erik Andersene49d5ec2000-02-08 19:58:47 +00002972 d_buf[last_dist++] = (ush) dist;
2973 flags |= flag_bit;
2974 }
2975 flag_bit <<= 1;
Eric Andersencc8ed391999-10-05 16:24:54 +00002976
Erik Andersene49d5ec2000-02-08 19:58:47 +00002977 /* Output the flags if they fill a byte: */
2978 if ((last_lit & 7) == 0) {
2979 flag_buf[last_flags++] = flags;
2980 flags = 0, flag_bit = 1;
2981 }
2982 /* Try to guess if it is profitable to stop the current block here */
2983 if ((last_lit & 0xfff) == 0) {
2984 /* Compute an upper bound for the compressed length */
2985 ulg out_length = (ulg) last_lit * 8L;
2986 ulg in_length = (ulg) strstart - block_start;
2987 int dcode;
2988
2989 for (dcode = 0; dcode < D_CODES; dcode++) {
2990 out_length +=
2991 (ulg) dyn_dtree[dcode].Freq * (5L + extra_dbits[dcode]);
2992 }
2993 out_length >>= 3;
2994 Trace(
2995 (stderr,
2996 "\nlast_lit %u, last_dist %u, in %ld, out ~%ld(%ld%%) ",
2997 last_lit, last_dist, in_length, out_length,
2998 100L - out_length * 100L / in_length));
2999 if (last_dist < last_lit / 2 && out_length < in_length / 2)
3000 return 1;
3001 }
3002 return (last_lit == LIT_BUFSIZE - 1 || last_dist == DIST_BUFSIZE);
3003 /* We avoid equality with LIT_BUFSIZE because of wraparound at 64K
3004 * on 16 bit machines and because stored blocks are restricted to
3005 * 64K-1 bytes.
3006 */
Eric Andersencc8ed391999-10-05 16:24:54 +00003007}
3008
3009/* ===========================================================================
3010 * Send the block data compressed using the given Huffman trees
3011 */
3012local void compress_block(ltree, dtree)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003013ct_data near *ltree; /* literal tree */
3014ct_data near *dtree; /* distance tree */
Eric Andersencc8ed391999-10-05 16:24:54 +00003015{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003016 unsigned dist; /* distance of matched string */
3017 int lc; /* match length or unmatched char (if dist == 0) */
3018 unsigned lx = 0; /* running index in l_buf */
3019 unsigned dx = 0; /* running index in d_buf */
3020 unsigned fx = 0; /* running index in flag_buf */
3021 uch flag = 0; /* current flags */
3022 unsigned code; /* the code to send */
3023 int extra; /* number of extra bits to send */
Eric Andersencc8ed391999-10-05 16:24:54 +00003024
Erik Andersene49d5ec2000-02-08 19:58:47 +00003025 if (last_lit != 0)
3026 do {
3027 if ((lx & 7) == 0)
3028 flag = flag_buf[fx++];
3029 lc = l_buf[lx++];
3030 if ((flag & 1) == 0) {
3031 send_code(lc, ltree); /* send a literal byte */
3032 Tracecv(isgraph(lc), (stderr, " '%c' ", lc));
3033 } else {
3034 /* Here, lc is the match length - MIN_MATCH */
3035 code = length_code[lc];
3036 send_code(code + LITERALS + 1, ltree); /* send the length code */
3037 extra = extra_lbits[code];
3038 if (extra != 0) {
3039 lc -= base_length[code];
3040 send_bits(lc, extra); /* send the extra length bits */
3041 }
3042 dist = d_buf[dx++];
3043 /* Here, dist is the match distance - 1 */
3044 code = d_code(dist);
3045 Assert(code < D_CODES, "bad d_code");
Eric Andersencc8ed391999-10-05 16:24:54 +00003046
Erik Andersene49d5ec2000-02-08 19:58:47 +00003047 send_code(code, dtree); /* send the distance code */
3048 extra = extra_dbits[code];
3049 if (extra != 0) {
3050 dist -= base_dist[code];
3051 send_bits(dist, extra); /* send the extra distance bits */
3052 }
3053 } /* literal or match pair ? */
3054 flag >>= 1;
3055 } while (lx < last_lit);
Eric Andersencc8ed391999-10-05 16:24:54 +00003056
Erik Andersene49d5ec2000-02-08 19:58:47 +00003057 send_code(END_BLOCK, ltree);
Eric Andersencc8ed391999-10-05 16:24:54 +00003058}
3059
3060/* ===========================================================================
3061 * Set the file type to ASCII or BINARY, using a crude approximation:
3062 * binary if more than 20% of the bytes are <= 6 or >= 128, ascii otherwise.
3063 * IN assertion: the fields freq of dyn_ltree are set and the total of all
3064 * frequencies does not exceed 64K (to fit in an int on 16 bit machines).
3065 */
3066local void set_file_type()
3067{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003068 int n = 0;
3069 unsigned ascii_freq = 0;
3070 unsigned bin_freq = 0;
3071
3072 while (n < 7)
3073 bin_freq += dyn_ltree[n++].Freq;
3074 while (n < 128)
3075 ascii_freq += dyn_ltree[n++].Freq;
3076 while (n < LITERALS)
3077 bin_freq += dyn_ltree[n++].Freq;
3078 *file_type = bin_freq > (ascii_freq >> 2) ? BINARY : ASCII;
3079 if (*file_type == BINARY && translate_eol) {
Mark Whitleyf57c9442000-12-07 19:56:48 +00003080 error_msg("-l used on binary file\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +00003081 }
Eric Andersencc8ed391999-10-05 16:24:54 +00003082}
Erik Andersene49d5ec2000-02-08 19:58:47 +00003083
Eric Andersencc8ed391999-10-05 16:24:54 +00003084/* util.c -- utility functions for gzip support
3085 * Copyright (C) 1992-1993 Jean-loup Gailly
3086 * This is free software; you can redistribute it and/or modify it under the
3087 * terms of the GNU General Public License, see the file COPYING.
3088 */
3089
Eric Andersencc8ed391999-10-05 16:24:54 +00003090#include <ctype.h>
3091#include <errno.h>
3092#include <sys/types.h>
3093
3094#ifdef HAVE_UNISTD_H
3095# include <unistd.h>
3096#endif
3097#ifndef NO_FCNTL_H
3098# include <fcntl.h>
3099#endif
3100
3101#if defined(STDC_HEADERS) || !defined(NO_STDLIB_H)
3102# include <stdlib.h>
3103#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00003104extern int errno;
Eric Andersencc8ed391999-10-05 16:24:54 +00003105#endif
3106
Eric Andersencc8ed391999-10-05 16:24:54 +00003107/* ===========================================================================
3108 * Copy input to output unchanged: zcat == cat with --force.
3109 * IN assertion: insize bytes have already been read in inbuf.
3110 */
3111int copy(in, out)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003112int in, out; /* input and output file descriptors */
Eric Andersencc8ed391999-10-05 16:24:54 +00003113{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003114 errno = 0;
3115 while (insize != 0 && (int) insize != EOF) {
3116 write_buf(out, (char *) inbuf, insize);
3117 bytes_out += insize;
3118 insize = read(in, (char *) inbuf, INBUFSIZ);
3119 }
3120 if ((int) insize == EOF && errno != 0) {
Erik Andersen330fd2b2000-05-19 05:35:19 +00003121 read_error_msg();
Erik Andersene49d5ec2000-02-08 19:58:47 +00003122 }
3123 bytes_in = bytes_out;
3124 return OK;
Eric Andersencc8ed391999-10-05 16:24:54 +00003125}
3126
3127/* ========================================================================
3128 * Put string s in lower case, return s.
3129 */
3130char *strlwr(s)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003131char *s;
Eric Andersencc8ed391999-10-05 16:24:54 +00003132{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003133 char *t;
3134
3135 for (t = s; *t; t++)
3136 *t = tolow(*t);
3137 return s;
Eric Andersencc8ed391999-10-05 16:24:54 +00003138}
3139
3140#if defined(NO_STRING_H) && !defined(STDC_HEADERS)
3141
3142/* Provide missing strspn and strcspn functions. */
3143
Erik Andersen61677fe2000-04-13 01:18:56 +00003144int strspn (const char *s, const char *accept);
3145int strcspn (const char *s, const char *reject);
Eric Andersencc8ed391999-10-05 16:24:54 +00003146
3147/* ========================================================================
3148 * Return the length of the maximum initial segment
3149 * of s which contains only characters in accept.
3150 */
3151int strspn(s, accept)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003152const char *s;
3153const char *accept;
Eric Andersencc8ed391999-10-05 16:24:54 +00003154{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003155 register const char *p;
3156 register const char *a;
3157 register int count = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00003158
Erik Andersene49d5ec2000-02-08 19:58:47 +00003159 for (p = s; *p != '\0'; ++p) {
3160 for (a = accept; *a != '\0'; ++a) {
3161 if (*p == *a)
3162 break;
3163 }
3164 if (*a == '\0')
3165 return count;
3166 ++count;
Eric Andersencc8ed391999-10-05 16:24:54 +00003167 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00003168 return count;
Eric Andersencc8ed391999-10-05 16:24:54 +00003169}
3170
3171/* ========================================================================
3172 * Return the length of the maximum inital segment of s
3173 * which contains no characters from reject.
3174 */
3175int strcspn(s, reject)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003176const char *s;
3177const char *reject;
Eric Andersencc8ed391999-10-05 16:24:54 +00003178{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003179 register int count = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00003180
Erik Andersene49d5ec2000-02-08 19:58:47 +00003181 while (*s != '\0') {
3182 if (strchr(reject, *s++) != NULL)
3183 return count;
3184 ++count;
3185 }
3186 return count;
Eric Andersencc8ed391999-10-05 16:24:54 +00003187}
3188
Erik Andersene49d5ec2000-02-08 19:58:47 +00003189#endif /* NO_STRING_H */
Eric Andersencc8ed391999-10-05 16:24:54 +00003190
3191/* ========================================================================
3192 * Add an environment variable (if any) before argv, and update argc.
3193 * Return the expanded environment variable to be freed later, or NULL
3194 * if no options were added to argv.
3195 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00003196#define SEPARATOR " \t" /* separators in env variable */
Eric Andersencc8ed391999-10-05 16:24:54 +00003197
3198char *add_envopt(argcp, argvp, env)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003199int *argcp; /* pointer to argc */
3200char ***argvp; /* pointer to argv */
3201char *env; /* name of environment variable */
Eric Andersencc8ed391999-10-05 16:24:54 +00003202{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003203 char *p; /* running pointer through env variable */
3204 char **oargv; /* runs through old argv array */
3205 char **nargv; /* runs through new argv array */
3206 int oargc = *argcp; /* old argc */
3207 int nargc = 0; /* number of arguments in env variable */
Eric Andersencc8ed391999-10-05 16:24:54 +00003208
Erik Andersene49d5ec2000-02-08 19:58:47 +00003209 env = (char *) getenv(env);
3210 if (env == NULL)
3211 return NULL;
Eric Andersencc8ed391999-10-05 16:24:54 +00003212
Erik Andersene49d5ec2000-02-08 19:58:47 +00003213 p = (char *) xmalloc(strlen(env) + 1);
3214 env = strcpy(p, env); /* keep env variable intact */
Eric Andersencc8ed391999-10-05 16:24:54 +00003215
Erik Andersene49d5ec2000-02-08 19:58:47 +00003216 for (p = env; *p; nargc++) { /* move through env */
3217 p += strspn(p, SEPARATOR); /* skip leading separators */
3218 if (*p == '\0')
3219 break;
Eric Andersencc8ed391999-10-05 16:24:54 +00003220
Erik Andersene49d5ec2000-02-08 19:58:47 +00003221 p += strcspn(p, SEPARATOR); /* find end of word */
3222 if (*p)
3223 *p++ = '\0'; /* mark it */
3224 }
3225 if (nargc == 0) {
3226 free(env);
3227 return NULL;
3228 }
3229 *argcp += nargc;
3230 /* Allocate the new argv array, with an extra element just in case
3231 * the original arg list did not end with a NULL.
3232 */
3233 nargv = (char **) calloc(*argcp + 1, sizeof(char *));
Eric Andersencc8ed391999-10-05 16:24:54 +00003234
Erik Andersene49d5ec2000-02-08 19:58:47 +00003235 if (nargv == NULL)
Mark Whitleyf57c9442000-12-07 19:56:48 +00003236 error_msg(memory_exhausted);
Erik Andersene49d5ec2000-02-08 19:58:47 +00003237 oargv = *argvp;
3238 *argvp = nargv;
Eric Andersencc8ed391999-10-05 16:24:54 +00003239
Erik Andersene49d5ec2000-02-08 19:58:47 +00003240 /* Copy the program name first */
3241 if (oargc-- < 0)
Mark Whitleyf57c9442000-12-07 19:56:48 +00003242 error_msg("argc<=0\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +00003243 *(nargv++) = *(oargv++);
Eric Andersencc8ed391999-10-05 16:24:54 +00003244
Erik Andersene49d5ec2000-02-08 19:58:47 +00003245 /* Then copy the environment args */
3246 for (p = env; nargc > 0; nargc--) {
3247 p += strspn(p, SEPARATOR); /* skip separators */
3248 *(nargv++) = p; /* store start */
3249 while (*p++); /* skip over word */
3250 }
3251
3252 /* Finally copy the old args and add a NULL (usual convention) */
3253 while (oargc--)
3254 *(nargv++) = *(oargv++);
3255 *nargv = NULL;
3256 return env;
Eric Andersencc8ed391999-10-05 16:24:54 +00003257}
Erik Andersene49d5ec2000-02-08 19:58:47 +00003258
Eric Andersencc8ed391999-10-05 16:24:54 +00003259/* ========================================================================
3260 * Display compression ratio on the given stream on 6 characters.
3261 */
3262void display_ratio(num, den, file)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003263long num;
3264long den;
3265FILE *file;
Eric Andersencc8ed391999-10-05 16:24:54 +00003266{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003267 long ratio; /* 1000 times the compression ratio */
Eric Andersencc8ed391999-10-05 16:24:54 +00003268
Erik Andersene49d5ec2000-02-08 19:58:47 +00003269 if (den == 0) {
3270 ratio = 0; /* no compression */
3271 } else if (den < 2147483L) { /* (2**31 -1)/1000 */
3272 ratio = 1000L * num / den;
3273 } else {
3274 ratio = num / (den / 1000L);
3275 }
3276 if (ratio < 0) {
3277 putc('-', file);
3278 ratio = -ratio;
3279 } else {
3280 putc(' ', file);
3281 }
3282 fprintf(file, "%2ld.%1ld%%", ratio / 10L, ratio % 10L);
Eric Andersencc8ed391999-10-05 16:24:54 +00003283}
3284
3285
3286/* zip.c -- compress files to the gzip or pkzip format
3287 * Copyright (C) 1992-1993 Jean-loup Gailly
3288 * This is free software; you can redistribute it and/or modify it under the
3289 * terms of the GNU General Public License, see the file COPYING.
3290 */
3291
Eric Andersencc8ed391999-10-05 16:24:54 +00003292#include <ctype.h>
3293#include <sys/types.h>
3294
3295#ifdef HAVE_UNISTD_H
3296# include <unistd.h>
3297#endif
3298#ifndef NO_FCNTL_H
3299# include <fcntl.h>
3300#endif
3301
Erik Andersene49d5ec2000-02-08 19:58:47 +00003302local ulg crc; /* crc on uncompressed file data */
3303long header_bytes; /* number of bytes in gzip header */
Eric Andersencc8ed391999-10-05 16:24:54 +00003304
3305/* ===========================================================================
3306 * Deflate in to out.
3307 * IN assertions: the input and output buffers are cleared.
3308 * The variables time_stamp and save_orig_name are initialized.
3309 */
3310int zip(in, out)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003311int in, out; /* input and output file descriptors */
Eric Andersencc8ed391999-10-05 16:24:54 +00003312{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003313 uch flags = 0; /* general purpose bit flags */
3314 ush attr = 0; /* ascii/binary flag */
3315 ush deflate_flags = 0; /* pkzip -es, -en or -ex equivalent */
Eric Andersencc8ed391999-10-05 16:24:54 +00003316
Erik Andersene49d5ec2000-02-08 19:58:47 +00003317 ifd = in;
3318 ofd = out;
3319 outcnt = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00003320
Erik Andersene49d5ec2000-02-08 19:58:47 +00003321 /* Write the header to the gzip file. See algorithm.doc for the format */
Eric Andersencc8ed391999-10-05 16:24:54 +00003322
Eric Andersen96bcfd31999-11-12 01:30:18 +00003323
Erik Andersene49d5ec2000-02-08 19:58:47 +00003324 method = DEFLATED;
3325 put_byte(GZIP_MAGIC[0]); /* magic header */
3326 put_byte(GZIP_MAGIC[1]);
3327 put_byte(DEFLATED); /* compression method */
Eric Andersencc8ed391999-10-05 16:24:54 +00003328
Erik Andersene49d5ec2000-02-08 19:58:47 +00003329 put_byte(flags); /* general flags */
3330 put_long(time_stamp);
Eric Andersencc8ed391999-10-05 16:24:54 +00003331
Erik Andersene49d5ec2000-02-08 19:58:47 +00003332 /* Write deflated file to zip file */
3333 crc = updcrc(0, 0);
Eric Andersencc8ed391999-10-05 16:24:54 +00003334
Erik Andersene49d5ec2000-02-08 19:58:47 +00003335 bi_init(out);
3336 ct_init(&attr, &method);
3337 lm_init(&deflate_flags);
Eric Andersencc8ed391999-10-05 16:24:54 +00003338
Erik Andersene49d5ec2000-02-08 19:58:47 +00003339 put_byte((uch) deflate_flags); /* extra flags */
3340 put_byte(OS_CODE); /* OS identifier */
Eric Andersencc8ed391999-10-05 16:24:54 +00003341
Erik Andersene49d5ec2000-02-08 19:58:47 +00003342 header_bytes = (long) outcnt;
Eric Andersencc8ed391999-10-05 16:24:54 +00003343
Erik Andersene49d5ec2000-02-08 19:58:47 +00003344 (void) deflate();
Eric Andersencc8ed391999-10-05 16:24:54 +00003345
Erik Andersene49d5ec2000-02-08 19:58:47 +00003346 /* Write the crc and uncompressed size */
3347 put_long(crc);
3348 put_long(isize);
3349 header_bytes += 2 * sizeof(long);
Eric Andersencc8ed391999-10-05 16:24:54 +00003350
Erik Andersene49d5ec2000-02-08 19:58:47 +00003351 flush_outbuf();
3352 return OK;
Eric Andersencc8ed391999-10-05 16:24:54 +00003353}
3354
3355
3356/* ===========================================================================
3357 * Read a new buffer from the current input file, perform end-of-line
3358 * translation, and update the crc and input file size.
3359 * IN assertion: size >= 2 (for end-of-line translation)
3360 */
3361int file_read(buf, size)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003362char *buf;
3363unsigned size;
Eric Andersencc8ed391999-10-05 16:24:54 +00003364{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003365 unsigned len;
Eric Andersencc8ed391999-10-05 16:24:54 +00003366
Erik Andersene49d5ec2000-02-08 19:58:47 +00003367 Assert(insize == 0, "inbuf not empty");
Eric Andersencc8ed391999-10-05 16:24:54 +00003368
Erik Andersene49d5ec2000-02-08 19:58:47 +00003369 len = read(ifd, buf, size);
3370 if (len == (unsigned) (-1) || len == 0)
3371 return (int) len;
Eric Andersencc8ed391999-10-05 16:24:54 +00003372
Erik Andersene49d5ec2000-02-08 19:58:47 +00003373 crc = updcrc((uch *) buf, len);
3374 isize += (ulg) len;
3375 return (int) len;
Eric Andersencc8ed391999-10-05 16:24:54 +00003376}
Matt Kraai7918e1f2000-11-08 06:52:57 +00003377
3378/* ===========================================================================
3379 * Write the output buffer outbuf[0..outcnt-1] and update bytes_out.
3380 * (used for the compressed data only)
3381 */
3382void flush_outbuf()
3383{
3384 if (outcnt == 0)
3385 return;
3386
3387 write_buf(ofd, (char *) outbuf, outcnt);
3388 bytes_out += (ulg) outcnt;
3389 outcnt = 0;
3390}