blob: 6369b894a5df74f9e18f42930f3c0ecaba8d506b [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
Erik Andersen61677fe2000-04-13 01:18:56 +000032/* These defines are very important for BusyBox. Without these,
33 * huge chunks of ram are pre-allocated making the BusyBox bss
34 * size Freaking Huge(tm), which is a bad thing.*/
35#define SMALL_MEM
36#define DYN_ALLOC
37
Eric Andersencc8ed391999-10-05 16:24:54 +000038/* I don't like nested includes, but the string and io functions are used
39 * too often
40 */
Eric Andersencbe31da2001-02-20 06:14:08 +000041#include <stdlib.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000042#include <stdio.h>
Erik Andersen61677fe2000-04-13 01:18:56 +000043#include <string.h>
Eric Andersened3ef502001-01-27 08:24:39 +000044#include <unistd.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000045#include "busybox.h"
46#define BB_DECLARE_EXTERN
47#define bb_need_memory_exhausted
48#include "messages.c"
49
Erik Andersen61677fe2000-04-13 01:18:56 +000050#define memzero(s, n) memset ((void *)(s), 0, (n))
Eric Andersencc8ed391999-10-05 16:24:54 +000051
52#ifndef RETSIGTYPE
53# define RETSIGTYPE void
54#endif
55
56#define local static
57
Erik Andersene49d5ec2000-02-08 19:58:47 +000058typedef unsigned char uch;
Eric Andersencc8ed391999-10-05 16:24:54 +000059typedef unsigned short ush;
Erik Andersene49d5ec2000-02-08 19:58:47 +000060typedef unsigned long ulg;
Eric Andersencc8ed391999-10-05 16:24:54 +000061
62/* Return codes from gzip */
63#define OK 0
64#define ERROR 1
65#define WARNING 2
66
67/* Compression methods (see algorithm.doc) */
68#define STORED 0
69#define COMPRESSED 1
70#define PACKED 2
71#define LZHED 3
72/* methods 4 to 7 reserved */
73#define DEFLATED 8
74#define MAX_METHODS 9
Erik Andersene49d5ec2000-02-08 19:58:47 +000075extern int method; /* compression method */
Eric Andersencc8ed391999-10-05 16:24:54 +000076
77/* To save memory for 16 bit systems, some arrays are overlaid between
78 * the various modules:
79 * deflate: prev+head window d_buf l_buf outbuf
80 * unlzw: tab_prefix tab_suffix stack inbuf outbuf
81 * inflate: window inbuf
82 * unpack: window inbuf prefix_len
83 * unlzh: left+right window c_table inbuf c_len
84 * For compression, input is done in window[]. For decompression, output
85 * is done in window except for unlzw.
86 */
87
88#ifndef INBUFSIZ
89# ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +000090# define INBUFSIZ 0x2000 /* input buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +000091# else
Erik Andersene49d5ec2000-02-08 19:58:47 +000092# define INBUFSIZ 0x8000 /* input buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +000093# endif
94#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +000095#define INBUF_EXTRA 64 /* required by unlzw() */
Eric Andersencc8ed391999-10-05 16:24:54 +000096
97#ifndef OUTBUFSIZ
98# ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +000099# define OUTBUFSIZ 8192 /* output buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +0000100# else
Erik Andersene49d5ec2000-02-08 19:58:47 +0000101# define OUTBUFSIZ 16384 /* output buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +0000102# endif
103#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000104#define OUTBUF_EXTRA 2048 /* required by unlzw() */
Eric Andersencc8ed391999-10-05 16:24:54 +0000105
106#ifndef DIST_BUFSIZE
107# ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +0000108# define DIST_BUFSIZE 0x2000 /* buffer for distances, see trees.c */
Eric Andersencc8ed391999-10-05 16:24:54 +0000109# else
Erik Andersene49d5ec2000-02-08 19:58:47 +0000110# define DIST_BUFSIZE 0x8000 /* buffer for distances, see trees.c */
Eric Andersencc8ed391999-10-05 16:24:54 +0000111# endif
112#endif
113
114#ifdef DYN_ALLOC
Erik Andersen61677fe2000-04-13 01:18:56 +0000115# define EXTERN(type, array) extern type * array
116# define DECLARE(type, array, size) type * array
Eric Andersencc8ed391999-10-05 16:24:54 +0000117# define ALLOC(type, array, size) { \
Erik Andersen61677fe2000-04-13 01:18:56 +0000118 array = (type*)calloc((size_t)(((size)+1L)/2), 2*sizeof(type)); \
Mark Whitleyf57c9442000-12-07 19:56:48 +0000119 if (array == NULL) error_msg(memory_exhausted); \
Eric Andersencc8ed391999-10-05 16:24:54 +0000120 }
Erik Andersen61677fe2000-04-13 01:18:56 +0000121# define FREE(array) {if (array != NULL) free(array), array=NULL;}
Eric Andersencc8ed391999-10-05 16:24:54 +0000122#else
123# define EXTERN(type, array) extern type array[]
124# define DECLARE(type, array, size) type array[size]
125# define ALLOC(type, array, size)
126# define FREE(array)
127#endif
128
Erik Andersene49d5ec2000-02-08 19:58:47 +0000129EXTERN(uch, inbuf); /* input buffer */
130EXTERN(uch, outbuf); /* output buffer */
131EXTERN(ush, d_buf); /* buffer for distances, see trees.c */
132EXTERN(uch, window); /* Sliding window and suffix table (unlzw) */
Eric Andersencc8ed391999-10-05 16:24:54 +0000133#define tab_suffix window
134#ifndef MAXSEG_64K
Erik Andersene49d5ec2000-02-08 19:58:47 +0000135# define tab_prefix prev /* hash link (see deflate.c) */
136# define head (prev+WSIZE) /* hash head (see deflate.c) */
137EXTERN(ush, tab_prefix); /* prefix code (see unlzw.c) */
Eric Andersencc8ed391999-10-05 16:24:54 +0000138#else
139# define tab_prefix0 prev
140# define head tab_prefix1
Erik Andersene49d5ec2000-02-08 19:58:47 +0000141EXTERN(ush, tab_prefix0); /* prefix for even codes */
142EXTERN(ush, tab_prefix1); /* prefix for odd codes */
Eric Andersencc8ed391999-10-05 16:24:54 +0000143#endif
144
Erik Andersene49d5ec2000-02-08 19:58:47 +0000145extern unsigned insize; /* valid bytes in inbuf */
146extern unsigned inptr; /* index of next byte to be processed in inbuf */
147extern unsigned outcnt; /* bytes in output buffer */
Eric Andersencc8ed391999-10-05 16:24:54 +0000148
Erik Andersene49d5ec2000-02-08 19:58:47 +0000149extern long bytes_in; /* number of input bytes */
150extern long bytes_out; /* number of output bytes */
151extern long header_bytes; /* number of bytes in gzip header */
Eric Andersencc8ed391999-10-05 16:24:54 +0000152
153#define isize bytes_in
154/* for compatibility with old zip sources (to be cleaned) */
155
Erik Andersene49d5ec2000-02-08 19:58:47 +0000156extern int ifd; /* input file descriptor */
157extern int ofd; /* output file descriptor */
158extern char ifname[]; /* input file name or "stdin" */
159extern char ofname[]; /* output file name or "stdout" */
160extern char *progname; /* program name */
Eric Andersencc8ed391999-10-05 16:24:54 +0000161
Erik Andersene49d5ec2000-02-08 19:58:47 +0000162extern long time_stamp; /* original time stamp (modification time) */
163extern long ifile_size; /* input file size, -1 for devices (debug only) */
Eric Andersencc8ed391999-10-05 16:24:54 +0000164
Erik Andersene49d5ec2000-02-08 19:58:47 +0000165typedef int file_t; /* Do not use stdio */
166
167#define NO_FILE (-1) /* in memory compression */
Eric Andersencc8ed391999-10-05 16:24:54 +0000168
169
Erik Andersene49d5ec2000-02-08 19:58:47 +0000170#define PACK_MAGIC "\037\036" /* Magic header for packed files */
171#define GZIP_MAGIC "\037\213" /* Magic header for gzip files, 1F 8B */
172#define OLD_GZIP_MAGIC "\037\236" /* Magic header for gzip 0.5 = freeze 1.x */
173#define LZH_MAGIC "\037\240" /* Magic header for SCO LZH Compress files */
174#define PKZIP_MAGIC "\120\113\003\004" /* Magic header for pkzip files */
Eric Andersencc8ed391999-10-05 16:24:54 +0000175
176/* gzip flag byte */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000177#define ASCII_FLAG 0x01 /* bit 0 set: file probably ascii text */
178#define CONTINUATION 0x02 /* bit 1 set: continuation of multi-part gzip file */
179#define EXTRA_FIELD 0x04 /* bit 2 set: extra field present */
180#define ORIG_NAME 0x08 /* bit 3 set: original file name present */
181#define COMMENT 0x10 /* bit 4 set: file comment present */
182#define ENCRYPTED 0x20 /* bit 5 set: file is encrypted */
183#define RESERVED 0xC0 /* bit 6,7: reserved */
Eric Andersencc8ed391999-10-05 16:24:54 +0000184
185/* internal file attribute */
186#define UNKNOWN 0xffff
187#define BINARY 0
188#define ASCII 1
189
190#ifndef WSIZE
Erik Andersene49d5ec2000-02-08 19:58:47 +0000191# define WSIZE 0x8000 /* window size--must be a power of two, and */
192#endif /* at least 32K for zip's deflate method */
Eric Andersencc8ed391999-10-05 16:24:54 +0000193
194#define MIN_MATCH 3
195#define MAX_MATCH 258
196/* The minimum and maximum match lengths */
197
198#define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
199/* Minimum amount of lookahead, except at the end of the input file.
200 * See deflate.c for comments about the MIN_MATCH+1.
201 */
202
203#define MAX_DIST (WSIZE-MIN_LOOKAHEAD)
204/* In order to simplify the code, particularly on 16 bit machines, match
205 * distances are limited to MAX_DIST instead of WSIZE.
206 */
207
Erik Andersene49d5ec2000-02-08 19:58:47 +0000208extern int decrypt; /* flag to turn on decryption */
209extern int exit_code; /* program exit code */
210extern int verbose; /* be verbose (-v) */
211extern int quiet; /* be quiet (-q) */
212extern int test; /* check .z file integrity */
213extern int save_orig_name; /* set if original name must be saved */
Eric Andersencc8ed391999-10-05 16:24:54 +0000214
215#define get_byte() (inptr < insize ? inbuf[inptr++] : fill_inbuf(0))
216#define try_byte() (inptr < insize ? inbuf[inptr++] : fill_inbuf(1))
217
218/* put_byte is used for the compressed output, put_ubyte for the
219 * uncompressed output. However unlzw() uses window for its
220 * suffix table instead of its output buffer, so it does not use put_ubyte
221 * (to be cleaned up).
222 */
223#define put_byte(c) {outbuf[outcnt++]=(uch)(c); if (outcnt==OUTBUFSIZ)\
224 flush_outbuf();}
225#define put_ubyte(c) {window[outcnt++]=(uch)(c); if (outcnt==WSIZE)\
226 flush_window();}
227
228/* Output a 16 bit value, lsb first */
229#define put_short(w) \
230{ if (outcnt < OUTBUFSIZ-2) { \
231 outbuf[outcnt++] = (uch) ((w) & 0xff); \
232 outbuf[outcnt++] = (uch) ((ush)(w) >> 8); \
233 } else { \
234 put_byte((uch)((w) & 0xff)); \
235 put_byte((uch)((ush)(w) >> 8)); \
236 } \
237}
238
239/* Output a 32 bit value to the bit stream, lsb first */
240#define put_long(n) { \
241 put_short((n) & 0xffff); \
242 put_short(((ulg)(n)) >> 16); \
243}
244
Erik Andersene49d5ec2000-02-08 19:58:47 +0000245#define seekable() 0 /* force sequential output */
246#define translate_eol 0 /* no option -a yet */
Eric Andersencc8ed391999-10-05 16:24:54 +0000247
Erik Andersene49d5ec2000-02-08 19:58:47 +0000248#define tolow(c) (isupper(c) ? (c)-'A'+'a' : (c)) /* force to lower case */
Eric Andersencc8ed391999-10-05 16:24:54 +0000249
250/* Macros for getting two-byte and four-byte header values */
251#define SH(p) ((ush)(uch)((p)[0]) | ((ush)(uch)((p)[1]) << 8))
252#define LG(p) ((ulg)(SH(p)) | ((ulg)(SH((p)+2)) << 16))
253
254/* Diagnostic functions */
255#ifdef DEBUG
Mark Whitleyf57c9442000-12-07 19:56:48 +0000256# define Assert(cond,msg) {if(!(cond)) error_msg(msg);}
Eric Andersencc8ed391999-10-05 16:24:54 +0000257# define Trace(x) fprintf x
258# define Tracev(x) {if (verbose) fprintf x ;}
259# define Tracevv(x) {if (verbose>1) fprintf x ;}
260# define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
261# define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
262#else
263# define Assert(cond,msg)
264# define Trace(x)
265# define Tracev(x)
266# define Tracevv(x)
267# define Tracec(c,x)
268# define Tracecv(c,x)
269#endif
270
271#define WARN(msg) {if (!quiet) fprintf msg ; \
272 if (exit_code == OK) exit_code = WARNING;}
273
Eric Andersencc8ed391999-10-05 16:24:54 +0000274
275 /* in zip.c: */
Erik Andersen61677fe2000-04-13 01:18:56 +0000276extern int zip (int in, int out);
277extern int file_read (char *buf, unsigned size);
Eric Andersencc8ed391999-10-05 16:24:54 +0000278
279 /* in unzip.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000280extern int unzip (int in, int out);
281extern int check_zipfile (int in);
Eric Andersencc8ed391999-10-05 16:24:54 +0000282
283 /* in unpack.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000284extern int unpack (int in, int out);
Eric Andersencc8ed391999-10-05 16:24:54 +0000285
286 /* in unlzh.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000287extern int unlzh (int in, int out);
Eric Andersencc8ed391999-10-05 16:24:54 +0000288
289 /* in gzip.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000290RETSIGTYPE abort_gzip (void);
Eric Andersencc8ed391999-10-05 16:24:54 +0000291
Erik Andersene49d5ec2000-02-08 19:58:47 +0000292 /* in deflate.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000293void lm_init (ush * flags);
294ulg deflate (void);
Eric Andersencc8ed391999-10-05 16:24:54 +0000295
Erik Andersene49d5ec2000-02-08 19:58:47 +0000296 /* in trees.c */
Eric Andersen851895a2001-03-21 21:52:25 +0000297void ct_init (ush * attr, int *methodp);
Erik Andersen61677fe2000-04-13 01:18:56 +0000298int ct_tally (int dist, int lc);
299ulg flush_block (char *buf, ulg stored_len, int eof);
Eric Andersencc8ed391999-10-05 16:24:54 +0000300
Erik Andersene49d5ec2000-02-08 19:58:47 +0000301 /* in bits.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000302void bi_init (file_t zipfile);
303void send_bits (int value, int length);
304unsigned bi_reverse (unsigned value, int length);
305void bi_windup (void);
306void copy_block (char *buf, unsigned len, int header);
307extern int (*read_buf) (char *buf, unsigned size);
Eric Andersencc8ed391999-10-05 16:24:54 +0000308
309 /* in util.c: */
Erik Andersen61677fe2000-04-13 01:18:56 +0000310extern int copy (int in, int out);
311extern ulg updcrc (uch * s, unsigned n);
312extern void clear_bufs (void);
313extern int fill_inbuf (int eof_ok);
314extern void flush_outbuf (void);
315extern void flush_window (void);
316extern void write_buf (int fd, void * buf, unsigned cnt);
317extern char *strlwr (char *s);
318extern char *add_envopt (int *argcp, char ***argvp, char *env);
Erik Andersen330fd2b2000-05-19 05:35:19 +0000319extern void read_error_msg (void);
320extern void write_error_msg (void);
Erik Andersen61677fe2000-04-13 01:18:56 +0000321extern void display_ratio (long num, long den, FILE * file);
Eric Andersencc8ed391999-10-05 16:24:54 +0000322
323 /* in inflate.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000324extern int inflate (void);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000325
Eric Andersencc8ed391999-10-05 16:24:54 +0000326/* lzw.h -- define the lzw functions.
327 * Copyright (C) 1992-1993 Jean-loup Gailly.
328 * This is free software; you can redistribute it and/or modify it under the
329 * terms of the GNU General Public License, see the file COPYING.
330 */
331
332#if !defined(OF) && defined(lint)
333# include "gzip.h"
334#endif
335
336#ifndef BITS
337# define BITS 16
338#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000339#define INIT_BITS 9 /* Initial number of bits per code */
Eric Andersencc8ed391999-10-05 16:24:54 +0000340
Erik Andersene49d5ec2000-02-08 19:58:47 +0000341#define BIT_MASK 0x1f /* Mask for 'number of compression bits' */
Eric Andersencc8ed391999-10-05 16:24:54 +0000342/* Mask 0x20 is reserved to mean a fourth header byte, and 0x40 is free.
343 * It's a pity that old uncompress does not check bit 0x20. That makes
344 * extension of the format actually undesirable because old compress
345 * would just crash on the new format instead of giving a meaningful
346 * error message. It does check the number of bits, but it's more
347 * helpful to say "unsupported format, get a new version" than
348 * "can only handle 16 bits".
349 */
350
351#define BLOCK_MODE 0x80
352/* Block compression: if table is full and compression rate is dropping,
353 * clear the dictionary.
354 */
355
Erik Andersene49d5ec2000-02-08 19:58:47 +0000356#define LZW_RESERVED 0x60 /* reserved bits */
Eric Andersencc8ed391999-10-05 16:24:54 +0000357
Erik Andersene49d5ec2000-02-08 19:58:47 +0000358#define CLEAR 256 /* flush the dictionary */
359#define FIRST (CLEAR+1) /* first free entry */
Eric Andersencc8ed391999-10-05 16:24:54 +0000360
Erik Andersene49d5ec2000-02-08 19:58:47 +0000361extern int maxbits; /* max bits per code for LZW */
362extern int block_mode; /* block compress mode -C compatible with 2.0 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000363
364/* revision.h -- define the version number
365 * Copyright (C) 1992-1993 Jean-loup Gailly.
366 * This is free software; you can redistribute it and/or modify it under the
367 * terms of the GNU General Public License, see the file COPYING.
368 */
369
370#define VERSION "1.2.4"
371#define PATCHLEVEL 0
372#define REVDATE "18 Aug 93"
373
374/* This version does not support compression into old compress format: */
375#ifdef LZW
376# undef LZW
377#endif
378
Eric Andersencc8ed391999-10-05 16:24:54 +0000379/* tailor.h -- target dependent definitions
380 * Copyright (C) 1992-1993 Jean-loup Gailly.
381 * This is free software; you can redistribute it and/or modify it under the
382 * terms of the GNU General Public License, see the file COPYING.
383 */
384
385/* The target dependent definitions should be defined here only.
386 * The target dependent functions should be defined in tailor.c.
387 */
388
Eric Andersencc8ed391999-10-05 16:24:54 +0000389
390#if defined(__MSDOS__) && !defined(MSDOS)
391# define MSDOS
392#endif
393
394#if defined(__OS2__) && !defined(OS2)
395# define OS2
396#endif
397
Erik Andersene49d5ec2000-02-08 19:58:47 +0000398#if defined(OS2) && defined(MSDOS) /* MS C under OS/2 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000399# undef MSDOS
400#endif
401
402#ifdef MSDOS
403# ifdef __GNUC__
Erik Andersene49d5ec2000-02-08 19:58:47 +0000404 /* DJGPP version 1.09+ on MS-DOS.
405 * The DJGPP 1.09 stat() function must be upgraded before gzip will
406 * fully work.
407 * No need for DIRENT, since <unistd.h> defines POSIX_SOURCE which
408 * implies DIRENT.
409 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000410# define near
411# else
412# define MAXSEG_64K
413# ifdef __TURBOC__
414# define NO_OFF_T
415# ifdef __BORLANDC__
416# define DIRENT
417# else
418# define NO_UTIME
419# endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000420# else /* MSC */
Eric Andersencc8ed391999-10-05 16:24:54 +0000421# define HAVE_SYS_UTIME_H
422# define NO_UTIME_H
423# endif
424# endif
425# define PATH_SEP2 '\\'
426# define PATH_SEP3 ':'
427# define MAX_PATH_LEN 128
428# define NO_MULTIPLE_DOTS
429# define MAX_EXT_CHARS 3
430# define Z_SUFFIX "z"
431# define NO_CHOWN
432# define PROTO
433# define STDC_HEADERS
434# define NO_SIZE_CHECK
Erik Andersene49d5ec2000-02-08 19:58:47 +0000435# define casemap(c) tolow(c) /* Force file names to lower case */
Eric Andersencc8ed391999-10-05 16:24:54 +0000436# include <io.h>
437# define OS_CODE 0x00
438# define SET_BINARY_MODE(fd) setmode(fd, O_BINARY)
439# if !defined(NO_ASM) && !defined(ASMV)
440# define ASMV
441# endif
442#else
443# define near
444#endif
445
446#ifdef OS2
447# define PATH_SEP2 '\\'
448# define PATH_SEP3 ':'
449# define MAX_PATH_LEN 260
450# ifdef OS2FAT
451# define NO_MULTIPLE_DOTS
452# define MAX_EXT_CHARS 3
453# define Z_SUFFIX "z"
454# define casemap(c) tolow(c)
455# endif
456# define NO_CHOWN
457# define PROTO
458# define STDC_HEADERS
459# include <io.h>
460# define OS_CODE 0x06
461# define SET_BINARY_MODE(fd) setmode(fd, O_BINARY)
462# ifdef _MSC_VER
463# define HAVE_SYS_UTIME_H
464# define NO_UTIME_H
465# define MAXSEG_64K
466# undef near
467# define near _near
468# endif
469# ifdef __EMX__
470# define HAVE_SYS_UTIME_H
471# define NO_UTIME_H
472# define DIRENT
473# define EXPAND(argc,argv) \
474 {_response(&argc, &argv); _wildcard(&argc, &argv);}
475# endif
476# ifdef __BORLANDC__
477# define DIRENT
478# endif
479# ifdef __ZTC__
480# define NO_DIR
481# define NO_UTIME_H
482# include <dos.h>
483# define EXPAND(argc,argv) \
484 {response_expand(&argc, &argv);}
485# endif
486#endif
487
Erik Andersene49d5ec2000-02-08 19:58:47 +0000488#ifdef WIN32 /* Windows NT */
Eric Andersencc8ed391999-10-05 16:24:54 +0000489# define HAVE_SYS_UTIME_H
490# define NO_UTIME_H
491# define PATH_SEP2 '\\'
492# define PATH_SEP3 ':'
493# define MAX_PATH_LEN 260
494# define NO_CHOWN
495# define PROTO
496# define STDC_HEADERS
497# define SET_BINARY_MODE(fd) setmode(fd, O_BINARY)
498# include <io.h>
499# include <malloc.h>
500# ifdef NTFAT
501# define NO_MULTIPLE_DOTS
502# define MAX_EXT_CHARS 3
503# define Z_SUFFIX "z"
Erik Andersene49d5ec2000-02-08 19:58:47 +0000504# define casemap(c) tolow(c) /* Force file names to lower case */
Eric Andersencc8ed391999-10-05 16:24:54 +0000505# endif
506# define OS_CODE 0x0b
507#endif
508
509#ifdef MSDOS
510# ifdef __TURBOC__
511# include <alloc.h>
512# define DYN_ALLOC
Erik Andersene49d5ec2000-02-08 19:58:47 +0000513 /* Turbo C 2.0 does not accept static allocations of large arrays */
514void *fcalloc(unsigned items, unsigned size);
515void fcfree(void *ptr);
516# else /* MSC */
Eric Andersencc8ed391999-10-05 16:24:54 +0000517# include <malloc.h>
518# define fcalloc(nitems,itemsize) halloc((long)(nitems),(itemsize))
519# define fcfree(ptr) hfree(ptr)
520# endif
521#else
522# ifdef MAXSEG_64K
523# define fcalloc(items,size) calloc((items),(size))
524# else
525# define fcalloc(items,size) malloc((size_t)(items)*(size_t)(size))
526# endif
527# define fcfree(ptr) free(ptr)
528#endif
529
530#if defined(VAXC) || defined(VMS)
531# define PATH_SEP ']'
532# define PATH_SEP2 ':'
533# define SUFFIX_SEP ';'
534# define NO_MULTIPLE_DOTS
535# define Z_SUFFIX "-gz"
536# define RECORD_IO 1
537# define casemap(c) tolow(c)
538# define OS_CODE 0x02
539# define OPTIONS_VAR "GZIP_OPT"
540# define STDC_HEADERS
541# define NO_UTIME
542# define EXPAND(argc,argv) vms_expand_args(&argc,&argv);
543# include <file.h>
544# define unlink delete
545# ifdef VAXC
546# define NO_FCNTL_H
547# include <unixio.h>
548# endif
549#endif
550
551#ifdef AMIGA
552# define PATH_SEP2 ':'
553# define STDC_HEADERS
554# define OS_CODE 0x01
555# define ASMV
556# ifdef __GNUC__
557# define DIRENT
558# define HAVE_UNISTD_H
Erik Andersene49d5ec2000-02-08 19:58:47 +0000559# else /* SASC */
Eric Andersencc8ed391999-10-05 16:24:54 +0000560# define NO_STDIN_FSTAT
561# define SYSDIR
562# define NO_SYMLINK
563# define NO_CHOWN
564# define NO_FCNTL_H
Erik Andersene49d5ec2000-02-08 19:58:47 +0000565# include <fcntl.h> /* for read() and write() */
Eric Andersencc8ed391999-10-05 16:24:54 +0000566# define direct dirent
Erik Andersene49d5ec2000-02-08 19:58:47 +0000567extern void _expand_args(int *argc, char ***argv);
568
Eric Andersencc8ed391999-10-05 16:24:54 +0000569# define EXPAND(argc,argv) _expand_args(&argc,&argv);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000570# undef O_BINARY /* disable useless --ascii option */
Eric Andersencc8ed391999-10-05 16:24:54 +0000571# endif
572#endif
573
574#if defined(ATARI) || defined(atarist)
575# ifndef STDC_HEADERS
576# define STDC_HEADERS
577# define HAVE_UNISTD_H
578# define DIRENT
579# endif
580# define ASMV
581# define OS_CODE 0x05
582# ifdef TOSFS
583# define PATH_SEP2 '\\'
584# define PATH_SEP3 ':'
585# define MAX_PATH_LEN 128
586# define NO_MULTIPLE_DOTS
587# define MAX_EXT_CHARS 3
588# define Z_SUFFIX "z"
589# define NO_CHOWN
Erik Andersene49d5ec2000-02-08 19:58:47 +0000590# define casemap(c) tolow(c) /* Force file names to lower case */
Eric Andersencc8ed391999-10-05 16:24:54 +0000591# define NO_SYMLINK
592# endif
593#endif
594
595#ifdef MACOS
596# define PATH_SEP ':'
597# define DYN_ALLOC
598# define PROTO
599# define NO_STDIN_FSTAT
600# define NO_CHOWN
601# define NO_UTIME
602# define chmod(file, mode) (0)
603# define OPEN(name, flags, mode) open(name, flags)
604# define OS_CODE 0x07
605# ifdef MPW
606# define isatty(fd) ((fd) <= 2)
607# endif
608#endif
609
Erik Andersene49d5ec2000-02-08 19:58:47 +0000610#ifdef __50SERIES /* Prime/PRIMOS */
Eric Andersencc8ed391999-10-05 16:24:54 +0000611# define PATH_SEP '>'
612# define STDC_HEADERS
613# define NO_MEMORY_H
614# define NO_UTIME_H
615# define NO_UTIME
Erik Andersene49d5ec2000-02-08 19:58:47 +0000616# define NO_CHOWN
617# define NO_STDIN_FSTAT
618# define NO_SIZE_CHECK
Eric Andersencc8ed391999-10-05 16:24:54 +0000619# define NO_SYMLINK
620# define RECORD_IO 1
Erik Andersene49d5ec2000-02-08 19:58:47 +0000621# define casemap(c) tolow(c) /* Force file names to lower case */
Eric Andersencc8ed391999-10-05 16:24:54 +0000622# define put_char(c) put_byte((c) & 0x7F)
623# define get_char(c) ascii2pascii(get_byte())
Erik Andersene49d5ec2000-02-08 19:58:47 +0000624# define OS_CODE 0x0F /* temporary, subject to change */
Eric Andersencc8ed391999-10-05 16:24:54 +0000625# ifdef SIGTERM
Erik Andersene49d5ec2000-02-08 19:58:47 +0000626# undef SIGTERM /* We don't want a signal handler for SIGTERM */
Eric Andersencc8ed391999-10-05 16:24:54 +0000627# endif
628#endif
629
Erik Andersene49d5ec2000-02-08 19:58:47 +0000630#if defined(pyr) && !defined(NOMEMCPY) /* Pyramid */
631# define NOMEMCPY /* problem with overlapping copies */
Eric Andersencc8ed391999-10-05 16:24:54 +0000632#endif
633
634#ifdef TOPS20
635# define OS_CODE 0x0a
636#endif
637
638#ifndef unix
Erik Andersene49d5ec2000-02-08 19:58:47 +0000639# define NO_ST_INO /* don't rely on inode numbers */
Eric Andersencc8ed391999-10-05 16:24:54 +0000640#endif
641
642
643 /* Common defaults */
644
645#ifndef OS_CODE
Erik Andersene49d5ec2000-02-08 19:58:47 +0000646# define OS_CODE 0x03 /* assume Unix */
Eric Andersencc8ed391999-10-05 16:24:54 +0000647#endif
648
649#ifndef PATH_SEP
650# define PATH_SEP '/'
651#endif
652
653#ifndef casemap
654# define casemap(c) (c)
655#endif
656
657#ifndef OPTIONS_VAR
658# define OPTIONS_VAR "GZIP"
659#endif
660
661#ifndef Z_SUFFIX
662# define Z_SUFFIX ".gz"
663#endif
664
665#ifdef MAX_EXT_CHARS
666# define MAX_SUFFIX MAX_EXT_CHARS
667#else
668# define MAX_SUFFIX 30
669#endif
670
671#ifndef MAKE_LEGAL_NAME
672# ifdef NO_MULTIPLE_DOTS
673# define MAKE_LEGAL_NAME(name) make_simple_name(name)
674# else
675# define MAKE_LEGAL_NAME(name)
676# endif
677#endif
678
679#ifndef MIN_PART
680# define MIN_PART 3
681 /* keep at least MIN_PART chars between dots in a file name. */
682#endif
683
684#ifndef EXPAND
685# define EXPAND(argc,argv)
686#endif
687
688#ifndef RECORD_IO
689# define RECORD_IO 0
690#endif
691
692#ifndef SET_BINARY_MODE
693# define SET_BINARY_MODE(fd)
694#endif
695
696#ifndef OPEN
697# define OPEN(name, flags, mode) open(name, flags, mode)
698#endif
699
700#ifndef get_char
701# define get_char() get_byte()
702#endif
703
704#ifndef put_char
705# define put_char(c) put_byte(c)
706#endif
707/* bits.c -- output variable-length bit strings
708 * Copyright (C) 1992-1993 Jean-loup Gailly
709 * This is free software; you can redistribute it and/or modify it under the
710 * terms of the GNU General Public License, see the file COPYING.
711 */
712
713
714/*
715 * PURPOSE
716 *
717 * Output variable-length bit strings. Compression can be done
718 * to a file or to memory. (The latter is not supported in this version.)
719 *
720 * DISCUSSION
721 *
722 * The PKZIP "deflate" file format interprets compressed file data
723 * as a sequence of bits. Multi-bit strings in the file may cross
724 * byte boundaries without restriction.
725 *
726 * The first bit of each byte is the low-order bit.
727 *
728 * The routines in this file allow a variable-length bit value to
729 * be output right-to-left (useful for literal values). For
730 * left-to-right output (useful for code strings from the tree routines),
731 * the bits must have been reversed first with bi_reverse().
732 *
733 * For in-memory compression, the compressed bit stream goes directly
734 * into the requested output buffer. The input data is read in blocks
735 * by the mem_read() function. The buffer is limited to 64K on 16 bit
736 * machines.
737 *
738 * INTERFACE
739 *
740 * void bi_init (FILE *zipfile)
741 * Initialize the bit string routines.
742 *
743 * void send_bits (int value, int length)
744 * Write out a bit string, taking the source bits right to
745 * left.
746 *
747 * int bi_reverse (int value, int length)
748 * Reverse the bits of a bit string, taking the source bits left to
749 * right and emitting them right to left.
750 *
751 * void bi_windup (void)
752 * Write out any remaining bits in an incomplete byte.
753 *
754 * void copy_block(char *buf, unsigned len, int header)
755 * Copy a stored block to the zip file, storing first the length and
756 * its one's complement if requested.
757 *
758 */
759
760#ifdef DEBUG
761# include <stdio.h>
762#endif
763
Eric Andersencc8ed391999-10-05 16:24:54 +0000764/* ===========================================================================
765 * Local data used by the "bit string" routines.
766 */
767
Erik Andersene49d5ec2000-02-08 19:58:47 +0000768local file_t zfile; /* output gzip file */
Eric Andersencc8ed391999-10-05 16:24:54 +0000769
770local unsigned short bi_buf;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000771
Eric Andersencc8ed391999-10-05 16:24:54 +0000772/* Output buffer. bits are inserted starting at the bottom (least significant
773 * bits).
774 */
775
776#define Buf_size (8 * 2*sizeof(char))
777/* Number of bits used within bi_buf. (bi_buf might be implemented on
778 * more than 16 bits on some systems.)
779 */
780
781local int bi_valid;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000782
Eric Andersencc8ed391999-10-05 16:24:54 +0000783/* Number of valid bits in bi_buf. All bits above the last valid bit
784 * are always zero.
785 */
786
Erik Andersen61677fe2000-04-13 01:18:56 +0000787int (*read_buf) (char *buf, unsigned size);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000788
Eric Andersencc8ed391999-10-05 16:24:54 +0000789/* Current input function. Set to mem_read for in-memory compression */
790
791#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000792ulg bits_sent; /* bit length of the compressed data */
Eric Andersencc8ed391999-10-05 16:24:54 +0000793#endif
794
795/* ===========================================================================
796 * Initialize the bit string routines.
797 */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000798void bi_init(zipfile)
799file_t zipfile; /* output zip file, NO_FILE for in-memory compression */
Eric Andersencc8ed391999-10-05 16:24:54 +0000800{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000801 zfile = zipfile;
802 bi_buf = 0;
803 bi_valid = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +0000804#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000805 bits_sent = 0L;
Eric Andersencc8ed391999-10-05 16:24:54 +0000806#endif
807
Erik Andersene49d5ec2000-02-08 19:58:47 +0000808 /* Set the defaults for file compression. They are set by memcompress
809 * for in-memory compression.
810 */
811 if (zfile != NO_FILE) {
812 read_buf = file_read;
813 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000814}
815
816/* ===========================================================================
817 * Send a value on a given number of bits.
818 * IN assertion: length <= 16 and value fits in length bits.
819 */
820void send_bits(value, length)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000821int value; /* value to send */
822int length; /* number of bits */
Eric Andersencc8ed391999-10-05 16:24:54 +0000823{
824#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000825 Tracev((stderr, " l %2d v %4x ", length, value));
826 Assert(length > 0 && length <= 15, "invalid length");
827 bits_sent += (ulg) length;
Eric Andersencc8ed391999-10-05 16:24:54 +0000828#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000829 /* If not enough room in bi_buf, use (valid) bits from bi_buf and
830 * (16 - bi_valid) bits from value, leaving (width - (16-bi_valid))
831 * unused bits in value.
832 */
833 if (bi_valid > (int) Buf_size - length) {
834 bi_buf |= (value << bi_valid);
835 put_short(bi_buf);
836 bi_buf = (ush) value >> (Buf_size - bi_valid);
837 bi_valid += length - Buf_size;
838 } else {
839 bi_buf |= value << bi_valid;
840 bi_valid += length;
841 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000842}
843
844/* ===========================================================================
845 * Reverse the first len bits of a code, using straightforward code (a faster
846 * method would use a table)
847 * IN assertion: 1 <= len <= 15
848 */
849unsigned bi_reverse(code, len)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000850unsigned code; /* the value to invert */
851int len; /* its bit length */
Eric Andersencc8ed391999-10-05 16:24:54 +0000852{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000853 register unsigned res = 0;
854
855 do {
856 res |= code & 1;
857 code >>= 1, res <<= 1;
858 } while (--len > 0);
859 return res >> 1;
Eric Andersencc8ed391999-10-05 16:24:54 +0000860}
861
862/* ===========================================================================
863 * Write out any remaining bits in an incomplete byte.
864 */
865void bi_windup()
866{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000867 if (bi_valid > 8) {
868 put_short(bi_buf);
869 } else if (bi_valid > 0) {
870 put_byte(bi_buf);
871 }
872 bi_buf = 0;
873 bi_valid = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +0000874#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000875 bits_sent = (bits_sent + 7) & ~7;
Eric Andersencc8ed391999-10-05 16:24:54 +0000876#endif
877}
878
879/* ===========================================================================
880 * Copy a stored block to the zip file, storing first the length and its
881 * one's complement if requested.
882 */
883void copy_block(buf, len, header)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000884char *buf; /* the input data */
885unsigned len; /* its length */
886int header; /* true if block header must be written */
Eric Andersencc8ed391999-10-05 16:24:54 +0000887{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000888 bi_windup(); /* align on byte boundary */
Eric Andersencc8ed391999-10-05 16:24:54 +0000889
Erik Andersene49d5ec2000-02-08 19:58:47 +0000890 if (header) {
891 put_short((ush) len);
892 put_short((ush) ~ len);
Eric Andersencc8ed391999-10-05 16:24:54 +0000893#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000894 bits_sent += 2 * 16;
Eric Andersencc8ed391999-10-05 16:24:54 +0000895#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000896 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000897#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000898 bits_sent += (ulg) len << 3;
Eric Andersencc8ed391999-10-05 16:24:54 +0000899#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000900 while (len--) {
Eric Andersencc8ed391999-10-05 16:24:54 +0000901#ifdef CRYPT
Erik Andersene49d5ec2000-02-08 19:58:47 +0000902 int t;
903
904 if (key)
905 zencode(*buf, t);
Eric Andersencc8ed391999-10-05 16:24:54 +0000906#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000907 put_byte(*buf++);
908 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000909}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000910
Eric Andersencc8ed391999-10-05 16:24:54 +0000911/* deflate.c -- compress data using the deflation algorithm
912 * Copyright (C) 1992-1993 Jean-loup Gailly
913 * This is free software; you can redistribute it and/or modify it under the
914 * terms of the GNU General Public License, see the file COPYING.
915 */
916
917/*
918 * PURPOSE
919 *
920 * Identify new text as repetitions of old text within a fixed-
921 * length sliding window trailing behind the new text.
922 *
923 * DISCUSSION
924 *
925 * The "deflation" process depends on being able to identify portions
926 * of the input text which are identical to earlier input (within a
927 * sliding window trailing behind the input currently being processed).
928 *
929 * The most straightforward technique turns out to be the fastest for
930 * most input files: try all possible matches and select the longest.
931 * The key feature of this algorithm is that insertions into the string
932 * dictionary are very simple and thus fast, and deletions are avoided
933 * completely. Insertions are performed at each input character, whereas
934 * string matches are performed only when the previous match ends. So it
935 * is preferable to spend more time in matches to allow very fast string
936 * insertions and avoid deletions. The matching algorithm for small
937 * strings is inspired from that of Rabin & Karp. A brute force approach
938 * is used to find longer strings when a small match has been found.
939 * A similar algorithm is used in comic (by Jan-Mark Wams) and freeze
940 * (by Leonid Broukhis).
941 * A previous version of this file used a more sophisticated algorithm
942 * (by Fiala and Greene) which is guaranteed to run in linear amortized
943 * time, but has a larger average cost, uses more memory and is patented.
944 * However the F&G algorithm may be faster for some highly redundant
945 * files if the parameter max_chain_length (described below) is too large.
946 *
947 * ACKNOWLEDGEMENTS
948 *
949 * The idea of lazy evaluation of matches is due to Jan-Mark Wams, and
950 * I found it in 'freeze' written by Leonid Broukhis.
951 * Thanks to many info-zippers for bug reports and testing.
952 *
953 * REFERENCES
954 *
955 * APPNOTE.TXT documentation file in PKZIP 1.93a distribution.
956 *
957 * A description of the Rabin and Karp algorithm is given in the book
958 * "Algorithms" by R. Sedgewick, Addison-Wesley, p252.
959 *
960 * Fiala,E.R., and Greene,D.H.
961 * Data Compression with Finite Windows, Comm.ACM, 32,4 (1989) 490-595
962 *
963 * INTERFACE
964 *
965 * void lm_init (int pack_level, ush *flags)
966 * Initialize the "longest match" routines for a new file
967 *
968 * ulg deflate (void)
969 * Processes a new input file and return its compressed length. Sets
970 * the compressed length, crc, deflate flags and internal file
971 * attributes.
972 */
973
974#include <stdio.h>
975
Eric Andersencc8ed391999-10-05 16:24:54 +0000976/* ===========================================================================
977 * Configuration parameters
978 */
979
980/* Compile with MEDIUM_MEM to reduce the memory requirements or
981 * with SMALL_MEM to use as little memory as possible. Use BIG_MEM if the
982 * entire input file can be held in memory (not possible on 16 bit systems).
983 * Warning: defining these symbols affects HASH_BITS (see below) and thus
984 * affects the compression ratio. The compressed output
985 * is still correct, and might even be smaller in some cases.
986 */
987
988#ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +0000989# define HASH_BITS 13 /* Number of bits used to hash strings */
Eric Andersencc8ed391999-10-05 16:24:54 +0000990#endif
991#ifdef MEDIUM_MEM
992# define HASH_BITS 14
993#endif
994#ifndef HASH_BITS
995# define HASH_BITS 15
996 /* For portability to 16 bit machines, do not use values above 15. */
997#endif
998
999/* To save space (see unlzw.c), we overlay prev+head with tab_prefix and
1000 * window with tab_suffix. Check that we can do this:
1001 */
1002#if (WSIZE<<1) > (1<<BITS)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001003error:cannot overlay window with tab_suffix and prev with tab_prefix0
Eric Andersencc8ed391999-10-05 16:24:54 +00001004#endif
1005#if HASH_BITS > BITS-1
Erik Andersene49d5ec2000-02-08 19:58:47 +00001006error:cannot overlay head with tab_prefix1
Eric Andersencc8ed391999-10-05 16:24:54 +00001007#endif
Eric Andersencc8ed391999-10-05 16:24:54 +00001008#define HASH_SIZE (unsigned)(1<<HASH_BITS)
1009#define HASH_MASK (HASH_SIZE-1)
1010#define WMASK (WSIZE-1)
1011/* HASH_SIZE and WSIZE must be powers of two */
Eric Andersencc8ed391999-10-05 16:24:54 +00001012#define NIL 0
1013/* Tail of hash chains */
Eric Andersencc8ed391999-10-05 16:24:54 +00001014#define FAST 4
1015#define SLOW 2
1016/* speed options for the general purpose bit flag */
Eric Andersencc8ed391999-10-05 16:24:54 +00001017#ifndef TOO_FAR
1018# define TOO_FAR 4096
1019#endif
1020/* Matches of length 3 are discarded if their distance exceeds TOO_FAR */
Eric Andersencc8ed391999-10-05 16:24:54 +00001021/* ===========================================================================
1022 * Local data used by the "longest match" routines.
1023 */
Eric Andersencc8ed391999-10-05 16:24:54 +00001024typedef ush Pos;
1025typedef unsigned IPos;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001026
Eric Andersencc8ed391999-10-05 16:24:54 +00001027/* A Pos is an index in the character window. We use short instead of int to
1028 * save space in the various tables. IPos is used only for parameter passing.
1029 */
1030
1031/* DECLARE(uch, window, 2L*WSIZE); */
1032/* Sliding window. Input bytes are read into the second half of the window,
1033 * and move to the first half later to keep a dictionary of at least WSIZE
1034 * bytes. With this organization, matches are limited to a distance of
1035 * WSIZE-MAX_MATCH bytes, but this ensures that IO is always
1036 * performed with a length multiple of the block size. Also, it limits
1037 * the window size to 64K, which is quite useful on MSDOS.
1038 * To do: limit the window size to WSIZE+BSZ if SMALL_MEM (the code would
1039 * be less efficient).
1040 */
1041
1042/* DECLARE(Pos, prev, WSIZE); */
1043/* Link to older string with same hash index. To limit the size of this
1044 * array to 64K, this link is maintained only for the last 32K strings.
1045 * An index in this array is thus a window index modulo 32K.
1046 */
1047
1048/* DECLARE(Pos, head, 1<<HASH_BITS); */
1049/* Heads of the hash chains or NIL. */
1050
Erik Andersene49d5ec2000-02-08 19:58:47 +00001051ulg window_size = (ulg) 2 * WSIZE;
1052
Eric Andersencc8ed391999-10-05 16:24:54 +00001053/* window size, 2*WSIZE except for MMAP or BIG_MEM, where it is the
1054 * input file length plus MIN_LOOKAHEAD.
1055 */
1056
1057long block_start;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001058
Eric Andersencc8ed391999-10-05 16:24:54 +00001059/* window position at the beginning of the current output block. Gets
1060 * negative when the window is moved backwards.
1061 */
1062
Erik Andersene49d5ec2000-02-08 19:58:47 +00001063local unsigned ins_h; /* hash index of string to be inserted */
Eric Andersencc8ed391999-10-05 16:24:54 +00001064
1065#define H_SHIFT ((HASH_BITS+MIN_MATCH-1)/MIN_MATCH)
1066/* Number of bits by which ins_h and del_h must be shifted at each
1067 * input step. It must be such that after MIN_MATCH steps, the oldest
1068 * byte no longer takes part in the hash key, that is:
1069 * H_SHIFT * MIN_MATCH >= HASH_BITS
1070 */
1071
1072unsigned int near prev_length;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001073
Eric Andersencc8ed391999-10-05 16:24:54 +00001074/* Length of the best match at previous step. Matches not greater than this
1075 * are discarded. This is used in the lazy match evaluation.
1076 */
1077
Erik Andersene49d5ec2000-02-08 19:58:47 +00001078unsigned near strstart; /* start of string to insert */
1079unsigned near match_start; /* start of matching string */
1080local int eofile; /* flag set at end of input file */
1081local unsigned lookahead; /* number of valid bytes ahead in window */
Eric Andersencc8ed391999-10-05 16:24:54 +00001082
1083unsigned near max_chain_length;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001084
Eric Andersencc8ed391999-10-05 16:24:54 +00001085/* To speed up deflation, hash chains are never searched beyond this length.
1086 * A higher limit improves compression ratio but degrades the speed.
1087 */
1088
1089local unsigned int max_lazy_match;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001090
Eric Andersencc8ed391999-10-05 16:24:54 +00001091/* Attempt to find a better match only when the current match is strictly
1092 * smaller than this value. This mechanism is used only for compression
1093 * levels >= 4.
1094 */
1095#define max_insert_length max_lazy_match
1096/* Insert new strings in the hash table only if the match length
1097 * is not greater than this length. This saves time but degrades compression.
1098 * max_insert_length is used only for compression levels <= 3.
1099 */
1100
1101unsigned near good_match;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001102
Eric Andersencc8ed391999-10-05 16:24:54 +00001103/* Use a faster search when the previous match is longer than this */
1104
1105
1106/* Values for max_lazy_match, good_match and max_chain_length, depending on
1107 * the desired pack level (0..9). The values given below have been tuned to
1108 * exclude worst case performance for pathological files. Better values may be
1109 * found for specific files.
1110 */
1111
1112typedef struct config {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001113 ush good_length; /* reduce lazy search above this match length */
1114 ush max_lazy; /* do not perform lazy search above this match length */
1115 ush nice_length; /* quit search above this match length */
1116 ush max_chain;
Eric Andersencc8ed391999-10-05 16:24:54 +00001117} config;
1118
1119#ifdef FULL_SEARCH
1120# define nice_match MAX_MATCH
1121#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001122int near nice_match; /* Stop searching when current match exceeds this */
Eric Andersencc8ed391999-10-05 16:24:54 +00001123#endif
1124
Erik Andersene49d5ec2000-02-08 19:58:47 +00001125local config configuration_table =
1126 /* 9 */ { 32, 258, 258, 4096 };
1127 /* maximum compression */
Eric Andersencc8ed391999-10-05 16:24:54 +00001128
1129/* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
1130 * For deflate_fast() (levels <= 3) good is ignored and lazy has a different
1131 * meaning.
1132 */
1133
1134#define EQUAL 0
1135/* result of memcmp for equal strings */
1136
1137/* ===========================================================================
1138 * Prototypes for local functions.
1139 */
Erik Andersen61677fe2000-04-13 01:18:56 +00001140local void fill_window (void);
Eric Andersencc8ed391999-10-05 16:24:54 +00001141
Erik Andersen61677fe2000-04-13 01:18:56 +00001142int longest_match (IPos cur_match);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001143
Eric Andersencc8ed391999-10-05 16:24:54 +00001144#ifdef ASMV
Erik Andersen61677fe2000-04-13 01:18:56 +00001145void match_init (void); /* asm code initialization */
Eric Andersencc8ed391999-10-05 16:24:54 +00001146#endif
1147
1148#ifdef DEBUG
Erik Andersen61677fe2000-04-13 01:18:56 +00001149local void check_match (IPos start, IPos match, int length);
Eric Andersencc8ed391999-10-05 16:24:54 +00001150#endif
1151
1152/* ===========================================================================
1153 * Update a hash value with the given input byte
1154 * IN assertion: all calls to to UPDATE_HASH are made with consecutive
1155 * input characters, so that a running hash key can be computed from the
1156 * previous key instead of complete recalculation each time.
1157 */
1158#define UPDATE_HASH(h,c) (h = (((h)<<H_SHIFT) ^ (c)) & HASH_MASK)
1159
1160/* ===========================================================================
1161 * Insert string s in the dictionary and set match_head to the previous head
1162 * of the hash chain (the most recent string with same hash key). Return
1163 * the previous length of the hash chain.
1164 * IN assertion: all calls to to INSERT_STRING are made with consecutive
1165 * input characters and the first MIN_MATCH bytes of s are valid
1166 * (except for the last MIN_MATCH-1 bytes of the input file).
1167 */
1168#define INSERT_STRING(s, match_head) \
1169 (UPDATE_HASH(ins_h, window[(s) + MIN_MATCH-1]), \
1170 prev[(s) & WMASK] = match_head = head[ins_h], \
1171 head[ins_h] = (s))
1172
1173/* ===========================================================================
1174 * Initialize the "longest match" routines for a new file
1175 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001176void lm_init(flags)
1177ush *flags; /* general purpose bit flag */
Eric Andersencc8ed391999-10-05 16:24:54 +00001178{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001179 register unsigned j;
Eric Andersencc8ed391999-10-05 16:24:54 +00001180
Erik Andersene49d5ec2000-02-08 19:58:47 +00001181 /* Initialize the hash table. */
Eric Andersencc8ed391999-10-05 16:24:54 +00001182#if defined(MAXSEG_64K) && HASH_BITS == 15
Erik Andersene49d5ec2000-02-08 19:58:47 +00001183 for (j = 0; j < HASH_SIZE; j++)
1184 head[j] = NIL;
Eric Andersencc8ed391999-10-05 16:24:54 +00001185#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001186 memzero((char *) head, HASH_SIZE * sizeof(*head));
Eric Andersencc8ed391999-10-05 16:24:54 +00001187#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00001188 /* prev will be initialized on the fly */
Eric Andersencc8ed391999-10-05 16:24:54 +00001189
Erik Andersene49d5ec2000-02-08 19:58:47 +00001190 /* Set the default configuration parameters:
1191 */
1192 max_lazy_match = configuration_table.max_lazy;
1193 good_match = configuration_table.good_length;
Eric Andersencc8ed391999-10-05 16:24:54 +00001194#ifndef FULL_SEARCH
Erik Andersene49d5ec2000-02-08 19:58:47 +00001195 nice_match = configuration_table.nice_length;
Eric Andersencc8ed391999-10-05 16:24:54 +00001196#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00001197 max_chain_length = configuration_table.max_chain;
1198 *flags |= SLOW;
1199 /* ??? reduce max_chain_length for binary files */
Eric Andersencc8ed391999-10-05 16:24:54 +00001200
Erik Andersene49d5ec2000-02-08 19:58:47 +00001201 strstart = 0;
1202 block_start = 0L;
Eric Andersencc8ed391999-10-05 16:24:54 +00001203#ifdef ASMV
Erik Andersene49d5ec2000-02-08 19:58:47 +00001204 match_init(); /* initialize the asm code */
Eric Andersencc8ed391999-10-05 16:24:54 +00001205#endif
1206
Erik Andersene49d5ec2000-02-08 19:58:47 +00001207 lookahead = read_buf((char *) window,
1208 sizeof(int) <= 2 ? (unsigned) WSIZE : 2 * WSIZE);
Eric Andersencc8ed391999-10-05 16:24:54 +00001209
Erik Andersene49d5ec2000-02-08 19:58:47 +00001210 if (lookahead == 0 || lookahead == (unsigned) EOF) {
1211 eofile = 1, lookahead = 0;
1212 return;
1213 }
1214 eofile = 0;
1215 /* Make sure that we always have enough lookahead. This is important
1216 * if input comes from a device such as a tty.
1217 */
1218 while (lookahead < MIN_LOOKAHEAD && !eofile)
1219 fill_window();
Eric Andersencc8ed391999-10-05 16:24:54 +00001220
Erik Andersene49d5ec2000-02-08 19:58:47 +00001221 ins_h = 0;
1222 for (j = 0; j < MIN_MATCH - 1; j++)
1223 UPDATE_HASH(ins_h, window[j]);
1224 /* If lookahead < MIN_MATCH, ins_h is garbage, but this is
1225 * not important since only literal bytes will be emitted.
1226 */
Eric Andersencc8ed391999-10-05 16:24:54 +00001227}
1228
1229/* ===========================================================================
1230 * Set match_start to the longest match starting at the given string and
1231 * return its length. Matches shorter or equal to prev_length are discarded,
1232 * in which case the result is equal to prev_length and match_start is
1233 * garbage.
1234 * IN assertions: cur_match is the head of the hash chain for the current
1235 * string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1
1236 */
1237#ifndef ASMV
1238/* For MSDOS, OS/2 and 386 Unix, an optimized version is in match.asm or
1239 * match.s. The code is functionally equivalent, so you can use the C version
1240 * if desired.
1241 */
1242int longest_match(cur_match)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001243IPos cur_match; /* current match */
Eric Andersencc8ed391999-10-05 16:24:54 +00001244{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001245 unsigned chain_length = max_chain_length; /* max hash chain length */
1246 register uch *scan = window + strstart; /* current string */
1247 register uch *match; /* matched string */
1248 register int len; /* length of current match */
1249 int best_len = prev_length; /* best match length so far */
1250 IPos limit =
1251
1252 strstart > (IPos) MAX_DIST ? strstart - (IPos) MAX_DIST : NIL;
1253 /* Stop when cur_match becomes <= limit. To simplify the code,
1254 * we prevent matches with the string of window index 0.
1255 */
Eric Andersencc8ed391999-10-05 16:24:54 +00001256
1257/* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
1258 * It is easy to get rid of this optimization if necessary.
1259 */
1260#if HASH_BITS < 8 || MAX_MATCH != 258
Erik Andersene49d5ec2000-02-08 19:58:47 +00001261 error:Code too clever
Eric Andersencc8ed391999-10-05 16:24:54 +00001262#endif
Eric Andersencc8ed391999-10-05 16:24:54 +00001263#ifdef UNALIGNED_OK
Erik Andersene49d5ec2000-02-08 19:58:47 +00001264 /* Compare two bytes at a time. Note: this is not always beneficial.
1265 * Try with and without -DUNALIGNED_OK to check.
1266 */
1267 register uch *strend = window + strstart + MAX_MATCH - 1;
1268 register ush scan_start = *(ush *) scan;
1269 register ush scan_end = *(ush *) (scan + best_len - 1);
Eric Andersencc8ed391999-10-05 16:24:54 +00001270#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001271 register uch *strend = window + strstart + MAX_MATCH;
1272 register uch scan_end1 = scan[best_len - 1];
1273 register uch scan_end = scan[best_len];
Eric Andersencc8ed391999-10-05 16:24:54 +00001274#endif
1275
Erik Andersene49d5ec2000-02-08 19:58:47 +00001276 /* Do not waste too much time if we already have a good match: */
1277 if (prev_length >= good_match) {
1278 chain_length >>= 2;
1279 }
1280 Assert(strstart <= window_size - MIN_LOOKAHEAD,
1281 "insufficient lookahead");
Eric Andersencc8ed391999-10-05 16:24:54 +00001282
Erik Andersene49d5ec2000-02-08 19:58:47 +00001283 do {
1284 Assert(cur_match < strstart, "no future");
1285 match = window + cur_match;
Eric Andersencc8ed391999-10-05 16:24:54 +00001286
Erik Andersene49d5ec2000-02-08 19:58:47 +00001287 /* Skip to next match if the match length cannot increase
1288 * or if the match length is less than 2:
1289 */
Eric Andersencc8ed391999-10-05 16:24:54 +00001290#if (defined(UNALIGNED_OK) && MAX_MATCH == 258)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001291 /* This code assumes sizeof(unsigned short) == 2. Do not use
1292 * UNALIGNED_OK if your compiler uses a different size.
1293 */
1294 if (*(ush *) (match + best_len - 1) != scan_end ||
1295 *(ush *) match != scan_start)
1296 continue;
Eric Andersencc8ed391999-10-05 16:24:54 +00001297
Erik Andersene49d5ec2000-02-08 19:58:47 +00001298 /* It is not necessary to compare scan[2] and match[2] since they are
1299 * always equal when the other bytes match, given that the hash keys
1300 * are equal and that HASH_BITS >= 8. Compare 2 bytes at a time at
1301 * strstart+3, +5, ... up to strstart+257. We check for insufficient
1302 * lookahead only every 4th comparison; the 128th check will be made
1303 * at strstart+257. If MAX_MATCH-2 is not a multiple of 8, it is
1304 * necessary to put more guard bytes at the end of the window, or
1305 * to check more often for insufficient lookahead.
1306 */
1307 scan++, match++;
1308 do {
1309 } while (*(ush *) (scan += 2) == *(ush *) (match += 2) &&
1310 *(ush *) (scan += 2) == *(ush *) (match += 2) &&
1311 *(ush *) (scan += 2) == *(ush *) (match += 2) &&
1312 *(ush *) (scan += 2) == *(ush *) (match += 2) &&
1313 scan < strend);
1314 /* The funny "do {}" generates better code on most compilers */
Eric Andersencc8ed391999-10-05 16:24:54 +00001315
Erik Andersene49d5ec2000-02-08 19:58:47 +00001316 /* Here, scan <= window+strstart+257 */
1317 Assert(scan <= window + (unsigned) (window_size - 1), "wild scan");
1318 if (*scan == *match)
1319 scan++;
Eric Andersencc8ed391999-10-05 16:24:54 +00001320
Erik Andersene49d5ec2000-02-08 19:58:47 +00001321 len = (MAX_MATCH - 1) - (int) (strend - scan);
1322 scan = strend - (MAX_MATCH - 1);
Eric Andersencc8ed391999-10-05 16:24:54 +00001323
Erik Andersene49d5ec2000-02-08 19:58:47 +00001324#else /* UNALIGNED_OK */
Eric Andersencc8ed391999-10-05 16:24:54 +00001325
Erik Andersene49d5ec2000-02-08 19:58:47 +00001326 if (match[best_len] != scan_end ||
1327 match[best_len - 1] != scan_end1 ||
1328 *match != *scan || *++match != scan[1])
1329 continue;
Eric Andersencc8ed391999-10-05 16:24:54 +00001330
Erik Andersene49d5ec2000-02-08 19:58:47 +00001331 /* The check at best_len-1 can be removed because it will be made
1332 * again later. (This heuristic is not always a win.)
1333 * It is not necessary to compare scan[2] and match[2] since they
1334 * are always equal when the other bytes match, given that
1335 * the hash keys are equal and that HASH_BITS >= 8.
1336 */
1337 scan += 2, match++;
Eric Andersencc8ed391999-10-05 16:24:54 +00001338
Erik Andersene49d5ec2000-02-08 19:58:47 +00001339 /* We check for insufficient lookahead only every 8th comparison;
1340 * the 256th check will be made at strstart+258.
1341 */
1342 do {
1343 } while (*++scan == *++match && *++scan == *++match &&
1344 *++scan == *++match && *++scan == *++match &&
1345 *++scan == *++match && *++scan == *++match &&
1346 *++scan == *++match && *++scan == *++match &&
1347 scan < strend);
Eric Andersencc8ed391999-10-05 16:24:54 +00001348
Erik Andersene49d5ec2000-02-08 19:58:47 +00001349 len = MAX_MATCH - (int) (strend - scan);
1350 scan = strend - MAX_MATCH;
Eric Andersencc8ed391999-10-05 16:24:54 +00001351
Erik Andersene49d5ec2000-02-08 19:58:47 +00001352#endif /* UNALIGNED_OK */
Eric Andersencc8ed391999-10-05 16:24:54 +00001353
Erik Andersene49d5ec2000-02-08 19:58:47 +00001354 if (len > best_len) {
1355 match_start = cur_match;
1356 best_len = len;
1357 if (len >= nice_match)
1358 break;
Eric Andersencc8ed391999-10-05 16:24:54 +00001359#ifdef UNALIGNED_OK
Erik Andersene49d5ec2000-02-08 19:58:47 +00001360 scan_end = *(ush *) (scan + best_len - 1);
Eric Andersencc8ed391999-10-05 16:24:54 +00001361#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001362 scan_end1 = scan[best_len - 1];
1363 scan_end = scan[best_len];
Eric Andersencc8ed391999-10-05 16:24:54 +00001364#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00001365 }
1366 } while ((cur_match = prev[cur_match & WMASK]) > limit
1367 && --chain_length != 0);
Eric Andersencc8ed391999-10-05 16:24:54 +00001368
Erik Andersene49d5ec2000-02-08 19:58:47 +00001369 return best_len;
Eric Andersencc8ed391999-10-05 16:24:54 +00001370}
Erik Andersene49d5ec2000-02-08 19:58:47 +00001371#endif /* ASMV */
Eric Andersencc8ed391999-10-05 16:24:54 +00001372
1373#ifdef DEBUG
1374/* ===========================================================================
1375 * Check that the match at match_start is indeed a match.
1376 */
1377local void check_match(start, match, length)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001378IPos start, match;
1379int length;
Eric Andersencc8ed391999-10-05 16:24:54 +00001380{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001381 /* check that the match is indeed a match */
1382 if (memcmp((char *) window + match,
1383 (char *) window + start, length) != EQUAL) {
1384 fprintf(stderr,
1385 " start %d, match %d, length %d\n", start, match, length);
Matt Kraaidd19c692001-01-31 19:00:21 +00001386 error_msg("invalid match");
Erik Andersene49d5ec2000-02-08 19:58:47 +00001387 }
1388 if (verbose > 1) {
1389 fprintf(stderr, "\\[%d,%d]", start - match, length);
1390 do {
1391 putc(window[start++], stderr);
1392 } while (--length != 0);
1393 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001394}
1395#else
1396# define check_match(start, match, length)
1397#endif
1398
1399/* ===========================================================================
1400 * Fill the window when the lookahead becomes insufficient.
1401 * Updates strstart and lookahead, and sets eofile if end of input file.
1402 * IN assertion: lookahead < MIN_LOOKAHEAD && strstart + lookahead > 0
1403 * OUT assertions: at least one byte has been read, or eofile is set;
1404 * file reads are performed for at least two bytes (required for the
1405 * translate_eol option).
1406 */
1407local void fill_window()
1408{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001409 register unsigned n, m;
1410 unsigned more =
Eric Andersencc8ed391999-10-05 16:24:54 +00001411
Erik Andersene49d5ec2000-02-08 19:58:47 +00001412 (unsigned) (window_size - (ulg) lookahead - (ulg) strstart);
1413 /* Amount of free space at the end of the window. */
Eric Andersencc8ed391999-10-05 16:24:54 +00001414
Erik Andersene49d5ec2000-02-08 19:58:47 +00001415 /* If the window is almost full and there is insufficient lookahead,
1416 * move the upper half to the lower one to make room in the upper half.
1417 */
1418 if (more == (unsigned) EOF) {
1419 /* Very unlikely, but possible on 16 bit machine if strstart == 0
1420 * and lookahead == 1 (input done one byte at time)
1421 */
1422 more--;
1423 } else if (strstart >= WSIZE + MAX_DIST) {
1424 /* By the IN assertion, the window is not empty so we can't confuse
1425 * more == 0 with more == 64K on a 16 bit machine.
1426 */
1427 Assert(window_size == (ulg) 2 * WSIZE, "no sliding with BIG_MEM");
Eric Andersencc8ed391999-10-05 16:24:54 +00001428
Erik Andersene49d5ec2000-02-08 19:58:47 +00001429 memcpy((char *) window, (char *) window + WSIZE, (unsigned) WSIZE);
1430 match_start -= WSIZE;
1431 strstart -= WSIZE; /* we now have strstart >= MAX_DIST: */
Eric Andersencc8ed391999-10-05 16:24:54 +00001432
Erik Andersene49d5ec2000-02-08 19:58:47 +00001433 block_start -= (long) WSIZE;
1434
1435 for (n = 0; n < HASH_SIZE; n++) {
1436 m = head[n];
1437 head[n] = (Pos) (m >= WSIZE ? m - WSIZE : NIL);
1438 }
1439 for (n = 0; n < WSIZE; n++) {
1440 m = prev[n];
1441 prev[n] = (Pos) (m >= WSIZE ? m - WSIZE : NIL);
1442 /* If n is not on any hash chain, prev[n] is garbage but
1443 * its value will never be used.
1444 */
1445 }
1446 more += WSIZE;
1447 }
1448 /* At this point, more >= 2 */
1449 if (!eofile) {
1450 n = read_buf((char *) window + strstart + lookahead, more);
1451 if (n == 0 || n == (unsigned) EOF) {
1452 eofile = 1;
1453 } else {
1454 lookahead += n;
1455 }
1456 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001457}
1458
1459/* ===========================================================================
1460 * Flush the current block, with given end-of-file flag.
1461 * IN assertion: strstart is set to the end of the current match.
1462 */
1463#define FLUSH_BLOCK(eof) \
1464 flush_block(block_start >= 0L ? (char*)&window[(unsigned)block_start] : \
1465 (char*)NULL, (long)strstart - block_start, (eof))
1466
1467/* ===========================================================================
1468 * Same as above, but achieves better compression. We use a lazy
1469 * evaluation for matches: a match is finally adopted only if there is
1470 * no better match at the next window position.
1471 */
1472ulg deflate()
1473{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001474 IPos hash_head; /* head of hash chain */
1475 IPos prev_match; /* previous match */
1476 int flush; /* set if current block must be flushed */
1477 int match_available = 0; /* set if previous match exists */
1478 register unsigned match_length = MIN_MATCH - 1; /* length of best match */
1479
Eric Andersencc8ed391999-10-05 16:24:54 +00001480#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +00001481 extern long isize; /* byte length of input file, for debug only */
Eric Andersencc8ed391999-10-05 16:24:54 +00001482#endif
1483
Erik Andersene49d5ec2000-02-08 19:58:47 +00001484 /* Process the input block. */
1485 while (lookahead != 0) {
1486 /* Insert the string window[strstart .. strstart+2] in the
1487 * dictionary, and set hash_head to the head of the hash chain:
1488 */
1489 INSERT_STRING(strstart, hash_head);
Eric Andersencc8ed391999-10-05 16:24:54 +00001490
Erik Andersene49d5ec2000-02-08 19:58:47 +00001491 /* Find the longest match, discarding those <= prev_length.
1492 */
1493 prev_length = match_length, prev_match = match_start;
1494 match_length = MIN_MATCH - 1;
Eric Andersencc8ed391999-10-05 16:24:54 +00001495
Erik Andersene49d5ec2000-02-08 19:58:47 +00001496 if (hash_head != NIL && prev_length < max_lazy_match &&
1497 strstart - hash_head <= MAX_DIST) {
1498 /* To simplify the code, we prevent matches with the string
1499 * of window index 0 (in particular we have to avoid a match
1500 * of the string with itself at the start of the input file).
1501 */
1502 match_length = longest_match(hash_head);
1503 /* longest_match() sets match_start */
1504 if (match_length > lookahead)
1505 match_length = lookahead;
Eric Andersencc8ed391999-10-05 16:24:54 +00001506
Erik Andersene49d5ec2000-02-08 19:58:47 +00001507 /* Ignore a length 3 match if it is too distant: */
1508 if (match_length == MIN_MATCH
1509 && strstart - match_start > TOO_FAR) {
1510 /* If prev_match is also MIN_MATCH, match_start is garbage
1511 * but we will ignore the current match anyway.
1512 */
1513 match_length--;
1514 }
1515 }
1516 /* If there was a match at the previous step and the current
1517 * match is not better, output the previous match:
1518 */
1519 if (prev_length >= MIN_MATCH && match_length <= prev_length) {
Eric Andersencc8ed391999-10-05 16:24:54 +00001520
Erik Andersene49d5ec2000-02-08 19:58:47 +00001521 check_match(strstart - 1, prev_match, prev_length);
Eric Andersencc8ed391999-10-05 16:24:54 +00001522
Erik Andersene49d5ec2000-02-08 19:58:47 +00001523 flush =
1524 ct_tally(strstart - 1 - prev_match,
1525 prev_length - MIN_MATCH);
Eric Andersencc8ed391999-10-05 16:24:54 +00001526
Erik Andersene49d5ec2000-02-08 19:58:47 +00001527 /* Insert in hash table all strings up to the end of the match.
1528 * strstart-1 and strstart are already inserted.
1529 */
1530 lookahead -= prev_length - 1;
1531 prev_length -= 2;
1532 do {
1533 strstart++;
1534 INSERT_STRING(strstart, hash_head);
1535 /* strstart never exceeds WSIZE-MAX_MATCH, so there are
1536 * always MIN_MATCH bytes ahead. If lookahead < MIN_MATCH
1537 * these bytes are garbage, but it does not matter since the
1538 * next lookahead bytes will always be emitted as literals.
1539 */
1540 } while (--prev_length != 0);
1541 match_available = 0;
1542 match_length = MIN_MATCH - 1;
1543 strstart++;
1544 if (flush)
1545 FLUSH_BLOCK(0), block_start = strstart;
Eric Andersencc8ed391999-10-05 16:24:54 +00001546
Erik Andersene49d5ec2000-02-08 19:58:47 +00001547 } else if (match_available) {
1548 /* If there was no match at the previous position, output a
1549 * single literal. If there was a match but the current match
1550 * is longer, truncate the previous match to a single literal.
1551 */
1552 Tracevv((stderr, "%c", window[strstart - 1]));
1553 if (ct_tally(0, window[strstart - 1])) {
1554 FLUSH_BLOCK(0), block_start = strstart;
1555 }
1556 strstart++;
1557 lookahead--;
1558 } else {
1559 /* There is no previous match to compare with, wait for
1560 * the next step to decide.
1561 */
1562 match_available = 1;
1563 strstart++;
1564 lookahead--;
1565 }
1566 Assert(strstart <= isize && lookahead <= isize, "a bit too far");
Eric Andersencc8ed391999-10-05 16:24:54 +00001567
Erik Andersene49d5ec2000-02-08 19:58:47 +00001568 /* Make sure that we always have enough lookahead, except
1569 * at the end of the input file. We need MAX_MATCH bytes
1570 * for the next match, plus MIN_MATCH bytes to insert the
1571 * string following the next match.
1572 */
1573 while (lookahead < MIN_LOOKAHEAD && !eofile)
1574 fill_window();
1575 }
1576 if (match_available)
1577 ct_tally(0, window[strstart - 1]);
Eric Andersencc8ed391999-10-05 16:24:54 +00001578
Erik Andersene49d5ec2000-02-08 19:58:47 +00001579 return FLUSH_BLOCK(1); /* eof */
Eric Andersencc8ed391999-10-05 16:24:54 +00001580}
Erik Andersene49d5ec2000-02-08 19:58:47 +00001581
Eric Andersencc8ed391999-10-05 16:24:54 +00001582/* gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface
1583 * Copyright (C) 1992-1993 Jean-loup Gailly
1584 * The unzip code was written and put in the public domain by Mark Adler.
1585 * Portions of the lzw code are derived from the public domain 'compress'
1586 * written by Spencer Thomas, Joe Orost, James Woods, Jim McKie, Steve Davies,
1587 * Ken Turkowski, Dave Mack and Peter Jannesen.
1588 *
1589 * See the license_msg below and the file COPYING for the software license.
1590 * See the file algorithm.doc for the compression algorithms and file formats.
1591 */
1592
1593/* Compress files with zip algorithm and 'compress' interface.
1594 * See usage() and help() functions below for all options.
1595 * Outputs:
1596 * file.gz: compressed file with same mode, owner, and utimes
1597 * or stdout with -c option or if stdin used as input.
1598 * If the output file name had to be truncated, the original name is kept
1599 * in the compressed file.
1600 * On MSDOS, file.tmp -> file.tmz. On VMS, file.tmp -> file.tmp-gz.
1601 *
1602 * Using gz on MSDOS would create too many file name conflicts. For
1603 * example, foo.txt -> foo.tgz (.tgz must be reserved as shorthand for
1604 * tar.gz). Similarly, foo.dir and foo.doc would both be mapped to foo.dgz.
1605 * I also considered 12345678.txt -> 12345txt.gz but this truncates the name
1606 * too heavily. There is no ideal solution given the MSDOS 8+3 limitation.
1607 *
1608 * For the meaning of all compilation flags, see comments in Makefile.in.
1609 */
1610
Eric Andersencc8ed391999-10-05 16:24:54 +00001611#include <ctype.h>
1612#include <sys/types.h>
1613#include <signal.h>
Eric Andersencc8ed391999-10-05 16:24:54 +00001614#include <errno.h>
1615
1616 /* configuration */
1617
1618#ifdef NO_TIME_H
1619# include <sys/time.h>
1620#else
1621# include <time.h>
1622#endif
1623
1624#ifndef NO_FCNTL_H
1625# include <fcntl.h>
1626#endif
1627
1628#ifdef HAVE_UNISTD_H
1629# include <unistd.h>
1630#endif
1631
Eric Andersencc8ed391999-10-05 16:24:54 +00001632#if defined(DIRENT)
1633# include <dirent.h>
Erik Andersene49d5ec2000-02-08 19:58:47 +00001634typedef struct dirent dir_type;
1635
Eric Andersencc8ed391999-10-05 16:24:54 +00001636# define NLENGTH(dirent) ((int)strlen((dirent)->d_name))
1637# define DIR_OPT "DIRENT"
1638#else
1639# define NLENGTH(dirent) ((dirent)->d_namlen)
1640# ifdef SYSDIR
1641# include <sys/dir.h>
Erik Andersene49d5ec2000-02-08 19:58:47 +00001642typedef struct direct dir_type;
1643
Eric Andersencc8ed391999-10-05 16:24:54 +00001644# define DIR_OPT "SYSDIR"
1645# else
1646# ifdef SYSNDIR
1647# include <sys/ndir.h>
Erik Andersene49d5ec2000-02-08 19:58:47 +00001648typedef struct direct dir_type;
1649
Eric Andersencc8ed391999-10-05 16:24:54 +00001650# define DIR_OPT "SYSNDIR"
1651# else
1652# ifdef NDIR
1653# include <ndir.h>
Erik Andersene49d5ec2000-02-08 19:58:47 +00001654typedef struct direct dir_type;
1655
Eric Andersencc8ed391999-10-05 16:24:54 +00001656# define DIR_OPT "NDIR"
1657# else
1658# define NO_DIR
1659# define DIR_OPT "NO_DIR"
1660# endif
1661# endif
1662# endif
1663#endif
1664
1665#ifndef NO_UTIME
1666# ifndef NO_UTIME_H
1667# include <utime.h>
1668# define TIME_OPT "UTIME"
1669# else
1670# ifdef HAVE_SYS_UTIME_H
1671# include <sys/utime.h>
1672# define TIME_OPT "SYS_UTIME"
1673# else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001674struct utimbuf {
1675 time_t actime;
1676 time_t modtime;
1677};
1678
Eric Andersencc8ed391999-10-05 16:24:54 +00001679# define TIME_OPT ""
1680# endif
1681# endif
1682#else
1683# define TIME_OPT "NO_UTIME"
1684#endif
1685
1686#if !defined(S_ISDIR) && defined(S_IFDIR)
1687# define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
1688#endif
1689#if !defined(S_ISREG) && defined(S_IFREG)
1690# define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
1691#endif
1692
Erik Andersen61677fe2000-04-13 01:18:56 +00001693typedef RETSIGTYPE(*sig_type) (int);
Eric Andersencc8ed391999-10-05 16:24:54 +00001694
1695#ifndef O_BINARY
Erik Andersene49d5ec2000-02-08 19:58:47 +00001696# define O_BINARY 0 /* creation mode for open() */
Eric Andersencc8ed391999-10-05 16:24:54 +00001697#endif
1698
1699#ifndef O_CREAT
1700 /* Pure BSD system? */
1701# include <sys/file.h>
1702# ifndef O_CREAT
1703# define O_CREAT FCREAT
1704# endif
1705# ifndef O_EXCL
1706# define O_EXCL FEXCL
1707# endif
1708#endif
1709
1710#ifndef S_IRUSR
1711# define S_IRUSR 0400
1712#endif
1713#ifndef S_IWUSR
1714# define S_IWUSR 0200
1715#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00001716#define RW_USER (S_IRUSR | S_IWUSR) /* creation mode for open() */
Eric Andersencc8ed391999-10-05 16:24:54 +00001717
1718#ifndef MAX_PATH_LEN
Erik Andersene49d5ec2000-02-08 19:58:47 +00001719# define MAX_PATH_LEN 1024 /* max pathname length */
Eric Andersencc8ed391999-10-05 16:24:54 +00001720#endif
1721
1722#ifndef SEEK_END
1723# define SEEK_END 2
1724#endif
1725
1726#ifdef NO_OFF_T
Erik Andersene49d5ec2000-02-08 19:58:47 +00001727typedef long off_t;
Erik Andersen61677fe2000-04-13 01:18:56 +00001728off_t lseek (int fd, off_t offset, int whence);
Eric Andersencc8ed391999-10-05 16:24:54 +00001729#endif
1730
1731/* Separator for file name parts (see shorten_name()) */
1732#ifdef NO_MULTIPLE_DOTS
1733# define PART_SEP "-"
1734#else
1735# define PART_SEP "."
1736#endif
1737
1738 /* global buffers */
1739
Erik Andersene49d5ec2000-02-08 19:58:47 +00001740DECLARE(uch, inbuf, INBUFSIZ + INBUF_EXTRA);
1741DECLARE(uch, outbuf, OUTBUFSIZ + OUTBUF_EXTRA);
1742DECLARE(ush, d_buf, DIST_BUFSIZE);
1743DECLARE(uch, window, 2L * WSIZE);
Eric Andersencc8ed391999-10-05 16:24:54 +00001744#ifndef MAXSEG_64K
Erik Andersene49d5ec2000-02-08 19:58:47 +00001745DECLARE(ush, tab_prefix, 1L << BITS);
Eric Andersencc8ed391999-10-05 16:24:54 +00001746#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001747DECLARE(ush, tab_prefix0, 1L << (BITS - 1));
1748DECLARE(ush, tab_prefix1, 1L << (BITS - 1));
Eric Andersencc8ed391999-10-05 16:24:54 +00001749#endif
1750
1751 /* local variables */
1752
Eric Andersen63a86222000-11-07 06:52:13 +00001753static int foreground; /* set if program run in foreground */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001754static int method = DEFLATED; /* compression method */
1755static int exit_code = OK; /* program exit code */
Eric Andersen63a86222000-11-07 06:52:13 +00001756static int part_nb; /* number of parts in .gz file */
1757static long time_stamp; /* original time stamp (modification time) */
1758static long ifile_size; /* input file size, -1 for devices (debug only) */
1759static char z_suffix[MAX_SUFFIX + 1]; /* default suffix (can be set with --suffix) */
1760static int z_len; /* strlen(z_suffix) */
Eric Andersencc8ed391999-10-05 16:24:54 +00001761
Eric Andersen63a86222000-11-07 06:52:13 +00001762static long bytes_in; /* number of input bytes */
1763static long bytes_out; /* number of output bytes */
1764static char ifname[MAX_PATH_LEN]; /* input file name */
1765static char ofname[MAX_PATH_LEN]; /* output file name */
1766static int ifd; /* input file descriptor */
1767static int ofd; /* output file descriptor */
1768static unsigned insize; /* valid bytes in inbuf */
1769static unsigned outcnt; /* bytes in output buffer */
Eric Andersencc8ed391999-10-05 16:24:54 +00001770
1771/* local functions */
1772
Eric Andersencc8ed391999-10-05 16:24:54 +00001773#define strequ(s1, s2) (strcmp((s1),(s2)) == 0)
1774
1775/* ======================================================================== */
1776// int main (argc, argv)
1777// int argc;
1778// char **argv;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001779int gzip_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +00001780{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001781 int result;
1782 int inFileNum;
1783 int outFileNum;
1784 struct stat statBuf;
1785 char *delFileName;
1786 int tostdout = 0;
1787 int fromstdin = 0;
Eric Andersenea824fb2000-07-21 22:17:39 +00001788 int force = 0;
Eric Andersen96bcfd31999-11-12 01:30:18 +00001789
Erik Andersene49d5ec2000-02-08 19:58:47 +00001790 /* Parse any options */
1791 while (--argc > 0 && **(++argv) == '-') {
1792 if (*((*argv) + 1) == '\0') {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001793 tostdout = 1;
1794 }
1795 while (*(++(*argv))) {
1796 switch (**argv) {
1797 case 'c':
1798 tostdout = 1;
1799 break;
Eric Andersenea824fb2000-07-21 22:17:39 +00001800 case 'f':
1801 force = 1;
1802 break;
1803 /* Ignore 1-9 (compression level) options */
1804 case '1': case '2': case '3': case '4': case '5':
1805 case '6': case '7': case '8': case '9':
1806 break;
Eric Andersen02ced932000-12-13 17:55:11 +00001807 case 'd':
1808 exit(gunzip_main(argc, argv));
Erik Andersene49d5ec2000-02-08 19:58:47 +00001809 default:
Eric Andersen67991cf2001-02-14 21:23:06 +00001810 show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +00001811 }
1812 }
1813 }
Eric Andersen5eb59122000-09-01 00:33:06 +00001814 if (argc <= 0 ) {
Eric Andersenea824fb2000-07-21 22:17:39 +00001815 fromstdin = 1;
Eric Andersen5eb59122000-09-01 00:33:06 +00001816 tostdout = 1;
1817 }
Eric Andersenea824fb2000-07-21 22:17:39 +00001818
1819 if (isatty(fileno(stdin)) && fromstdin==1 && force==0)
Matt Kraaidd19c692001-01-31 19:00:21 +00001820 error_msg_and_die( "data not read from terminal. Use -f to force it.");
Eric Andersenea824fb2000-07-21 22:17:39 +00001821 if (isatty(fileno(stdout)) && tostdout==1 && force==0)
Matt Kraaidd19c692001-01-31 19:00:21 +00001822 error_msg_and_die( "data not written to terminal. Use -f to force it.");
Erik Andersene49d5ec2000-02-08 19:58:47 +00001823
1824 foreground = signal(SIGINT, SIG_IGN) != SIG_IGN;
1825 if (foreground) {
1826 (void) signal(SIGINT, (sig_type) abort_gzip);
1827 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001828#ifdef SIGTERM
Erik Andersene49d5ec2000-02-08 19:58:47 +00001829 if (signal(SIGTERM, SIG_IGN) != SIG_IGN) {
1830 (void) signal(SIGTERM, (sig_type) abort_gzip);
1831 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001832#endif
1833#ifdef SIGHUP
Erik Andersene49d5ec2000-02-08 19:58:47 +00001834 if (signal(SIGHUP, SIG_IGN) != SIG_IGN) {
1835 (void) signal(SIGHUP, (sig_type) abort_gzip);
1836 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001837#endif
1838
Erik Andersene49d5ec2000-02-08 19:58:47 +00001839 strncpy(z_suffix, Z_SUFFIX, sizeof(z_suffix) - 1);
1840 z_len = strlen(z_suffix);
Eric Andersencc8ed391999-10-05 16:24:54 +00001841
Erik Andersene49d5ec2000-02-08 19:58:47 +00001842 /* Allocate all global buffers (for DYN_ALLOC option) */
1843 ALLOC(uch, inbuf, INBUFSIZ + INBUF_EXTRA);
1844 ALLOC(uch, outbuf, OUTBUFSIZ + OUTBUF_EXTRA);
1845 ALLOC(ush, d_buf, DIST_BUFSIZE);
1846 ALLOC(uch, window, 2L * WSIZE);
Eric Andersencc8ed391999-10-05 16:24:54 +00001847#ifndef MAXSEG_64K
Erik Andersene49d5ec2000-02-08 19:58:47 +00001848 ALLOC(ush, tab_prefix, 1L << BITS);
Eric Andersencc8ed391999-10-05 16:24:54 +00001849#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001850 ALLOC(ush, tab_prefix0, 1L << (BITS - 1));
1851 ALLOC(ush, tab_prefix1, 1L << (BITS - 1));
Eric Andersencc8ed391999-10-05 16:24:54 +00001852#endif
1853
Erik Andersene49d5ec2000-02-08 19:58:47 +00001854 if (fromstdin == 1) {
1855 strcpy(ofname, "stdin");
Eric Andersen96bcfd31999-11-12 01:30:18 +00001856
Erik Andersene49d5ec2000-02-08 19:58:47 +00001857 inFileNum = fileno(stdin);
1858 time_stamp = 0; /* time unknown by default */
1859 ifile_size = -1L; /* convention for unknown size */
1860 } else {
1861 /* Open up the input file */
Eric Andersenea824fb2000-07-21 22:17:39 +00001862 if (argc <= 0)
Eric Andersen67991cf2001-02-14 21:23:06 +00001863 show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +00001864 strncpy(ifname, *argv, MAX_PATH_LEN);
Eric Andersen96bcfd31999-11-12 01:30:18 +00001865
Matt Kraaia9819b22000-12-22 01:48:07 +00001866 /* Open input file */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001867 inFileNum = open(ifname, O_RDONLY);
Matt Kraaia9819b22000-12-22 01:48:07 +00001868 if (inFileNum < 0)
1869 perror_msg_and_die("%s", ifname);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001870 /* Get the time stamp on the input file. */
Matt Kraaia9819b22000-12-22 01:48:07 +00001871 if (stat(ifname, &statBuf) < 0)
1872 perror_msg_and_die("%s", ifname);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001873 time_stamp = statBuf.st_ctime;
1874 ifile_size = statBuf.st_size;
Eric Andersen96bcfd31999-11-12 01:30:18 +00001875 }
Eric Andersen96bcfd31999-11-12 01:30:18 +00001876
1877
Erik Andersene49d5ec2000-02-08 19:58:47 +00001878 if (tostdout == 1) {
1879 /* And get to work */
1880 strcpy(ofname, "stdout");
1881 outFileNum = fileno(stdout);
1882 SET_BINARY_MODE(fileno(stdout));
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001883
Erik Andersene49d5ec2000-02-08 19:58:47 +00001884 clear_bufs(); /* clear input and output buffers */
1885 part_nb = 0;
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001886
Erik Andersene49d5ec2000-02-08 19:58:47 +00001887 /* Actually do the compression/decompression. */
1888 zip(inFileNum, outFileNum);
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001889
Erik Andersene49d5ec2000-02-08 19:58:47 +00001890 } else {
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001891
Erik Andersene49d5ec2000-02-08 19:58:47 +00001892 /* And get to work */
1893 strncpy(ofname, ifname, MAX_PATH_LEN - 4);
1894 strcat(ofname, ".gz");
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001895
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001896
Erik Andersene49d5ec2000-02-08 19:58:47 +00001897 /* Open output fille */
Erik Andersen4d1d0111999-12-17 18:44:15 +00001898#if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001899 outFileNum = open(ofname, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW);
Erik Andersen4d1d0111999-12-17 18:44:15 +00001900#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001901 outFileNum = open(ofname, O_RDWR | O_CREAT | O_EXCL);
Erik Andersen4d1d0111999-12-17 18:44:15 +00001902#endif
Matt Kraaia9819b22000-12-22 01:48:07 +00001903 if (outFileNum < 0)
1904 perror_msg_and_die("%s", ofname);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001905 SET_BINARY_MODE(outFileNum);
1906 /* Set permissions on the file */
1907 fchmod(outFileNum, statBuf.st_mode);
1908
1909 clear_bufs(); /* clear input and output buffers */
1910 part_nb = 0;
1911
1912 /* Actually do the compression/decompression. */
1913 result = zip(inFileNum, outFileNum);
1914 close(outFileNum);
1915 close(inFileNum);
1916 /* Delete the original file */
1917 if (result == OK)
1918 delFileName = ifname;
1919 else
1920 delFileName = ofname;
1921
Matt Kraaia9819b22000-12-22 01:48:07 +00001922 if (unlink(delFileName) < 0)
1923 perror_msg_and_die("%s", delFileName);
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001924 }
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001925
Eric Andersenb6106152000-06-19 17:25:40 +00001926 return(exit_code);
Eric Andersencc8ed391999-10-05 16:24:54 +00001927}
1928
Eric Andersencc8ed391999-10-05 16:24:54 +00001929/* trees.c -- output deflated data using Huffman coding
1930 * Copyright (C) 1992-1993 Jean-loup Gailly
1931 * This is free software; you can redistribute it and/or modify it under the
1932 * terms of the GNU General Public License, see the file COPYING.
1933 */
1934
1935/*
1936 * PURPOSE
1937 *
1938 * Encode various sets of source values using variable-length
1939 * binary code trees.
1940 *
1941 * DISCUSSION
1942 *
1943 * The PKZIP "deflation" process uses several Huffman trees. The more
1944 * common source values are represented by shorter bit sequences.
1945 *
1946 * Each code tree is stored in the ZIP file in a compressed form
1947 * which is itself a Huffman encoding of the lengths of
1948 * all the code strings (in ascending order by source values).
1949 * The actual code strings are reconstructed from the lengths in
1950 * the UNZIP process, as described in the "application note"
1951 * (APPNOTE.TXT) distributed as part of PKWARE's PKZIP program.
1952 *
1953 * REFERENCES
1954 *
1955 * Lynch, Thomas J.
1956 * Data Compression: Techniques and Applications, pp. 53-55.
1957 * Lifetime Learning Publications, 1985. ISBN 0-534-03418-7.
1958 *
1959 * Storer, James A.
1960 * Data Compression: Methods and Theory, pp. 49-50.
1961 * Computer Science Press, 1988. ISBN 0-7167-8156-5.
1962 *
1963 * Sedgewick, R.
1964 * Algorithms, p290.
1965 * Addison-Wesley, 1983. ISBN 0-201-06672-6.
1966 *
1967 * INTERFACE
1968 *
1969 * void ct_init (ush *attr, int *methodp)
1970 * Allocate the match buffer, initialize the various tables and save
1971 * the location of the internal file attribute (ascii/binary) and
1972 * method (DEFLATE/STORE)
1973 *
1974 * void ct_tally (int dist, int lc);
1975 * Save the match info and tally the frequency counts.
1976 *
1977 * long flush_block (char *buf, ulg stored_len, int eof)
1978 * Determine the best encoding for the current block: dynamic trees,
1979 * static trees or store, and output the encoded block to the zip
1980 * file. Returns the total compressed length for the file so far.
1981 *
1982 */
1983
1984#include <ctype.h>
1985
Eric Andersencc8ed391999-10-05 16:24:54 +00001986/* ===========================================================================
1987 * Constants
1988 */
1989
1990#define MAX_BITS 15
1991/* All codes must not exceed MAX_BITS bits */
1992
1993#define MAX_BL_BITS 7
1994/* Bit length codes must not exceed MAX_BL_BITS bits */
1995
1996#define LENGTH_CODES 29
1997/* number of length codes, not counting the special END_BLOCK code */
1998
1999#define LITERALS 256
2000/* number of literal bytes 0..255 */
2001
2002#define END_BLOCK 256
2003/* end of block literal code */
2004
2005#define L_CODES (LITERALS+1+LENGTH_CODES)
2006/* number of Literal or Length codes, including the END_BLOCK code */
2007
2008#define D_CODES 30
2009/* number of distance codes */
2010
2011#define BL_CODES 19
2012/* number of codes used to transfer the bit lengths */
2013
2014
Erik Andersene49d5ec2000-02-08 19:58:47 +00002015local int near extra_lbits[LENGTH_CODES] /* extra bits for each length code */
2016 = { 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4,
2017 4, 4, 5, 5, 5, 5, 0 };
Eric Andersencc8ed391999-10-05 16:24:54 +00002018
Erik Andersene49d5ec2000-02-08 19:58:47 +00002019local int near extra_dbits[D_CODES] /* extra bits for each distance code */
2020 = { 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9,
2021 10, 10, 11, 11, 12, 12, 13, 13 };
Eric Andersencc8ed391999-10-05 16:24:54 +00002022
Erik Andersene49d5ec2000-02-08 19:58:47 +00002023local int near extra_blbits[BL_CODES] /* extra bits for each bit length code */
2024= { 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 +00002025
2026#define STORED_BLOCK 0
2027#define STATIC_TREES 1
2028#define DYN_TREES 2
2029/* The three kinds of block type */
2030
2031#ifndef LIT_BUFSIZE
2032# ifdef SMALL_MEM
2033# define LIT_BUFSIZE 0x2000
2034# else
2035# ifdef MEDIUM_MEM
2036# define LIT_BUFSIZE 0x4000
2037# else
2038# define LIT_BUFSIZE 0x8000
2039# endif
2040# endif
2041#endif
2042#ifndef DIST_BUFSIZE
2043# define DIST_BUFSIZE LIT_BUFSIZE
2044#endif
2045/* Sizes of match buffers for literals/lengths and distances. There are
2046 * 4 reasons for limiting LIT_BUFSIZE to 64K:
2047 * - frequencies can be kept in 16 bit counters
2048 * - if compression is not successful for the first block, all input data is
2049 * still in the window so we can still emit a stored block even when input
2050 * comes from standard input. (This can also be done for all blocks if
2051 * LIT_BUFSIZE is not greater than 32K.)
2052 * - if compression is not successful for a file smaller than 64K, we can
2053 * even emit a stored file instead of a stored block (saving 5 bytes).
2054 * - creating new Huffman trees less frequently may not provide fast
2055 * adaptation to changes in the input data statistics. (Take for
2056 * example a binary file with poorly compressible code followed by
2057 * a highly compressible string table.) Smaller buffer sizes give
2058 * fast adaptation but have of course the overhead of transmitting trees
2059 * more frequently.
2060 * - I can't count above 4
2061 * The current code is general and allows DIST_BUFSIZE < LIT_BUFSIZE (to save
2062 * memory at the expense of compression). Some optimizations would be possible
2063 * if we rely on DIST_BUFSIZE == LIT_BUFSIZE.
2064 */
2065#if LIT_BUFSIZE > INBUFSIZ
Erik Andersene49d5ec2000-02-08 19:58:47 +00002066error cannot overlay l_buf and inbuf
Eric Andersencc8ed391999-10-05 16:24:54 +00002067#endif
Eric Andersencc8ed391999-10-05 16:24:54 +00002068#define REP_3_6 16
2069/* repeat previous bit length 3-6 times (2 bits of repeat count) */
Eric Andersencc8ed391999-10-05 16:24:54 +00002070#define REPZ_3_10 17
2071/* repeat a zero length 3-10 times (3 bits of repeat count) */
Eric Andersencc8ed391999-10-05 16:24:54 +00002072#define REPZ_11_138 18
Erik Andersene49d5ec2000-02-08 19:58:47 +00002073/* repeat a zero length 11-138 times (7 bits of repeat count) *//* ===========================================================================
Eric Andersencc8ed391999-10-05 16:24:54 +00002074 * Local data
Erik Andersene49d5ec2000-02-08 19:58:47 +00002075 *//* Data structure describing a single value and its code string. */ typedef struct ct_data {
2076 union {
2077 ush freq; /* frequency count */
2078 ush code; /* bit string */
2079 } fc;
2080 union {
2081 ush dad; /* father node in Huffman tree */
2082 ush len; /* length of bit string */
2083 } dl;
Eric Andersencc8ed391999-10-05 16:24:54 +00002084} ct_data;
2085
2086#define Freq fc.freq
2087#define Code fc.code
2088#define Dad dl.dad
2089#define Len dl.len
2090
2091#define HEAP_SIZE (2*L_CODES+1)
2092/* maximum heap size */
2093
Erik Andersene49d5ec2000-02-08 19:58:47 +00002094local ct_data near dyn_ltree[HEAP_SIZE]; /* literal and length tree */
2095local ct_data near dyn_dtree[2 * D_CODES + 1]; /* distance tree */
Eric Andersencc8ed391999-10-05 16:24:54 +00002096
Erik Andersene49d5ec2000-02-08 19:58:47 +00002097local ct_data near static_ltree[L_CODES + 2];
2098
Eric Andersencc8ed391999-10-05 16:24:54 +00002099/* The static literal tree. Since the bit lengths are imposed, there is no
2100 * need for the L_CODES extra codes used during heap construction. However
2101 * The codes 286 and 287 are needed to build a canonical tree (see ct_init
2102 * below).
2103 */
2104
2105local ct_data near static_dtree[D_CODES];
Erik Andersene49d5ec2000-02-08 19:58:47 +00002106
Eric Andersencc8ed391999-10-05 16:24:54 +00002107/* The static distance tree. (Actually a trivial tree since all codes use
2108 * 5 bits.)
2109 */
2110
Erik Andersene49d5ec2000-02-08 19:58:47 +00002111local ct_data near bl_tree[2 * BL_CODES + 1];
2112
Eric Andersencc8ed391999-10-05 16:24:54 +00002113/* Huffman tree for the bit lengths */
2114
2115typedef struct tree_desc {
Erik Andersene49d5ec2000-02-08 19:58:47 +00002116 ct_data near *dyn_tree; /* the dynamic tree */
2117 ct_data near *static_tree; /* corresponding static tree or NULL */
2118 int near *extra_bits; /* extra bits for each code or NULL */
2119 int extra_base; /* base index for extra_bits */
2120 int elems; /* max number of elements in the tree */
2121 int max_length; /* max bit length for the codes */
2122 int max_code; /* largest code with non zero frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +00002123} tree_desc;
2124
2125local tree_desc near l_desc =
Erik Andersene49d5ec2000-02-08 19:58:47 +00002126 { dyn_ltree, static_ltree, extra_lbits, LITERALS + 1, L_CODES,
2127 MAX_BITS, 0 };
Eric Andersencc8ed391999-10-05 16:24:54 +00002128
2129local tree_desc near d_desc =
Erik Andersene49d5ec2000-02-08 19:58:47 +00002130 { dyn_dtree, static_dtree, extra_dbits, 0, D_CODES, MAX_BITS, 0 };
Eric Andersencc8ed391999-10-05 16:24:54 +00002131
2132local tree_desc near bl_desc =
Erik Andersene49d5ec2000-02-08 19:58:47 +00002133 { bl_tree, (ct_data near *) 0, extra_blbits, 0, BL_CODES, MAX_BL_BITS,
2134 0 };
Eric Andersencc8ed391999-10-05 16:24:54 +00002135
2136
Erik Andersene49d5ec2000-02-08 19:58:47 +00002137local ush near bl_count[MAX_BITS + 1];
2138
Eric Andersencc8ed391999-10-05 16:24:54 +00002139/* number of codes at each bit length for an optimal tree */
2140
2141local uch near bl_order[BL_CODES]
Erik Andersene49d5ec2000-02-08 19:58:47 +00002142= { 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 };
2143
Eric Andersencc8ed391999-10-05 16:24:54 +00002144/* The lengths of the bit length codes are sent in order of decreasing
2145 * probability, to avoid transmitting the lengths for unused bit length codes.
2146 */
2147
Erik Andersene49d5ec2000-02-08 19:58:47 +00002148local int near heap[2 * L_CODES + 1]; /* heap used to build the Huffman trees */
2149local int heap_len; /* number of elements in the heap */
2150local int heap_max; /* element of largest frequency */
2151
Eric Andersencc8ed391999-10-05 16:24:54 +00002152/* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.
2153 * The same heap array is used to build all trees.
2154 */
2155
Erik Andersene49d5ec2000-02-08 19:58:47 +00002156local uch near depth[2 * L_CODES + 1];
2157
Eric Andersencc8ed391999-10-05 16:24:54 +00002158/* Depth of each subtree used as tie breaker for trees of equal frequency */
2159
Erik Andersene49d5ec2000-02-08 19:58:47 +00002160local uch length_code[MAX_MATCH - MIN_MATCH + 1];
2161
Eric Andersencc8ed391999-10-05 16:24:54 +00002162/* length code for each normalized match length (0 == MIN_MATCH) */
2163
2164local uch dist_code[512];
Erik Andersene49d5ec2000-02-08 19:58:47 +00002165
Eric Andersencc8ed391999-10-05 16:24:54 +00002166/* distance codes. The first 256 values correspond to the distances
2167 * 3 .. 258, the last 256 values correspond to the top 8 bits of
2168 * the 15 bit distances.
2169 */
2170
2171local int near base_length[LENGTH_CODES];
Erik Andersene49d5ec2000-02-08 19:58:47 +00002172
Eric Andersencc8ed391999-10-05 16:24:54 +00002173/* First normalized length for each code (0 = MIN_MATCH) */
2174
2175local int near base_dist[D_CODES];
Erik Andersene49d5ec2000-02-08 19:58:47 +00002176
Eric Andersencc8ed391999-10-05 16:24:54 +00002177/* First normalized distance for each code (0 = distance of 1) */
2178
2179#define l_buf inbuf
2180/* DECLARE(uch, l_buf, LIT_BUFSIZE); buffer for literals or lengths */
2181
2182/* DECLARE(ush, d_buf, DIST_BUFSIZE); buffer for distances */
2183
Erik Andersene49d5ec2000-02-08 19:58:47 +00002184local uch near flag_buf[(LIT_BUFSIZE / 8)];
2185
Eric Andersencc8ed391999-10-05 16:24:54 +00002186/* flag_buf is a bit array distinguishing literals from lengths in
2187 * l_buf, thus indicating the presence or absence of a distance.
2188 */
2189
Erik Andersene49d5ec2000-02-08 19:58:47 +00002190local unsigned last_lit; /* running index in l_buf */
2191local unsigned last_dist; /* running index in d_buf */
2192local unsigned last_flags; /* running index in flag_buf */
2193local uch flags; /* current flags not yet saved in flag_buf */
2194local uch flag_bit; /* current bit used in flags */
2195
Eric Andersencc8ed391999-10-05 16:24:54 +00002196/* bits are filled in flags starting at bit 0 (least significant).
2197 * Note: these flags are overkill in the current code since we don't
2198 * take advantage of DIST_BUFSIZE == LIT_BUFSIZE.
2199 */
2200
Erik Andersene49d5ec2000-02-08 19:58:47 +00002201local ulg opt_len; /* bit length of current block with optimal trees */
2202local ulg static_len; /* bit length of current block with static trees */
Eric Andersencc8ed391999-10-05 16:24:54 +00002203
Erik Andersene49d5ec2000-02-08 19:58:47 +00002204local ulg compressed_len; /* total bit length of compressed file */
Eric Andersencc8ed391999-10-05 16:24:54 +00002205
Erik Andersene49d5ec2000-02-08 19:58:47 +00002206local ulg input_len; /* total byte length of input file */
2207
Eric Andersencc8ed391999-10-05 16:24:54 +00002208/* input_len is for debugging only since we can get it by other means. */
2209
Erik Andersene49d5ec2000-02-08 19:58:47 +00002210ush *file_type; /* pointer to UNKNOWN, BINARY or ASCII */
2211int *file_method; /* pointer to DEFLATE or STORE */
Eric Andersencc8ed391999-10-05 16:24:54 +00002212
2213#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +00002214extern ulg bits_sent; /* bit length of the compressed data */
2215extern long isize; /* byte length of input file */
Eric Andersencc8ed391999-10-05 16:24:54 +00002216#endif
2217
Erik Andersene49d5ec2000-02-08 19:58:47 +00002218extern long block_start; /* window offset of current block */
2219extern unsigned near strstart; /* window offset of current string */
Eric Andersencc8ed391999-10-05 16:24:54 +00002220
2221/* ===========================================================================
2222 * Local (static) routines in this file.
2223 */
2224
Erik Andersen61677fe2000-04-13 01:18:56 +00002225local void init_block (void);
2226local void pqdownheap (ct_data near * tree, int k);
2227local void gen_bitlen (tree_desc near * desc);
2228local void gen_codes (ct_data near * tree, int max_code);
2229local void build_tree (tree_desc near * desc);
2230local void scan_tree (ct_data near * tree, int max_code);
2231local void send_tree (ct_data near * tree, int max_code);
2232local int build_bl_tree (void);
2233local void send_all_trees (int lcodes, int dcodes, int blcodes);
2234local void compress_block (ct_data near * ltree, ct_data near * dtree);
2235local void set_file_type (void);
Eric Andersencc8ed391999-10-05 16:24:54 +00002236
2237
2238#ifndef DEBUG
2239# define send_code(c, tree) send_bits(tree[c].Code, tree[c].Len)
2240 /* Send a code of the given tree. c and tree must not have side effects */
2241
Erik Andersene49d5ec2000-02-08 19:58:47 +00002242#else /* DEBUG */
Eric Andersencc8ed391999-10-05 16:24:54 +00002243# define send_code(c, tree) \
2244 { if (verbose>1) fprintf(stderr,"\ncd %3d ",(c)); \
2245 send_bits(tree[c].Code, tree[c].Len); }
2246#endif
2247
2248#define d_code(dist) \
2249 ((dist) < 256 ? dist_code[dist] : dist_code[256+((dist)>>7)])
2250/* Mapping from a distance to a distance code. dist is the distance - 1 and
2251 * must not have side effects. dist_code[256] and dist_code[257] are never
2252 * used.
2253 */
2254
Eric Andersencc8ed391999-10-05 16:24:54 +00002255/* the arguments must not have side effects */
2256
2257/* ===========================================================================
2258 * Allocate the match buffer, initialize the various tables and save the
2259 * location of the internal file attribute (ascii/binary) and method
2260 * (DEFLATE/STORE).
2261 */
2262void ct_init(attr, methodp)
Erik Andersene49d5ec2000-02-08 19:58:47 +00002263ush *attr; /* pointer to internal file attribute */
2264int *methodp; /* pointer to compression method */
Eric Andersencc8ed391999-10-05 16:24:54 +00002265{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002266 int n; /* iterates over tree elements */
2267 int bits; /* bit counter */
2268 int length; /* length value */
2269 int code; /* code value */
2270 int dist; /* distance index */
Eric Andersencc8ed391999-10-05 16:24:54 +00002271
Erik Andersene49d5ec2000-02-08 19:58:47 +00002272 file_type = attr;
2273 file_method = methodp;
2274 compressed_len = input_len = 0L;
Eric Andersencc8ed391999-10-05 16:24:54 +00002275
Erik Andersene49d5ec2000-02-08 19:58:47 +00002276 if (static_dtree[0].Len != 0)
2277 return; /* ct_init already called */
Eric Andersencc8ed391999-10-05 16:24:54 +00002278
Erik Andersene49d5ec2000-02-08 19:58:47 +00002279 /* Initialize the mapping length (0..255) -> length code (0..28) */
2280 length = 0;
2281 for (code = 0; code < LENGTH_CODES - 1; code++) {
2282 base_length[code] = length;
2283 for (n = 0; n < (1 << extra_lbits[code]); n++) {
2284 length_code[length++] = (uch) code;
2285 }
2286 }
2287 Assert(length == 256, "ct_init: length != 256");
2288 /* Note that the length 255 (match length 258) can be represented
2289 * in two different ways: code 284 + 5 bits or code 285, so we
2290 * overwrite length_code[255] to use the best encoding:
2291 */
2292 length_code[length - 1] = (uch) code;
Eric Andersencc8ed391999-10-05 16:24:54 +00002293
Erik Andersene49d5ec2000-02-08 19:58:47 +00002294 /* Initialize the mapping dist (0..32K) -> dist code (0..29) */
2295 dist = 0;
2296 for (code = 0; code < 16; code++) {
2297 base_dist[code] = dist;
2298 for (n = 0; n < (1 << extra_dbits[code]); n++) {
2299 dist_code[dist++] = (uch) code;
2300 }
2301 }
2302 Assert(dist == 256, "ct_init: dist != 256");
2303 dist >>= 7; /* from now on, all distances are divided by 128 */
2304 for (; code < D_CODES; code++) {
2305 base_dist[code] = dist << 7;
2306 for (n = 0; n < (1 << (extra_dbits[code] - 7)); n++) {
2307 dist_code[256 + dist++] = (uch) code;
2308 }
2309 }
2310 Assert(dist == 256, "ct_init: 256+dist != 512");
Eric Andersencc8ed391999-10-05 16:24:54 +00002311
Erik Andersene49d5ec2000-02-08 19:58:47 +00002312 /* Construct the codes of the static literal tree */
2313 for (bits = 0; bits <= MAX_BITS; bits++)
2314 bl_count[bits] = 0;
2315 n = 0;
2316 while (n <= 143)
2317 static_ltree[n++].Len = 8, bl_count[8]++;
2318 while (n <= 255)
2319 static_ltree[n++].Len = 9, bl_count[9]++;
2320 while (n <= 279)
2321 static_ltree[n++].Len = 7, bl_count[7]++;
2322 while (n <= 287)
2323 static_ltree[n++].Len = 8, bl_count[8]++;
2324 /* Codes 286 and 287 do not exist, but we must include them in the
2325 * tree construction to get a canonical Huffman tree (longest code
2326 * all ones)
2327 */
2328 gen_codes((ct_data near *) static_ltree, L_CODES + 1);
Eric Andersencc8ed391999-10-05 16:24:54 +00002329
Erik Andersene49d5ec2000-02-08 19:58:47 +00002330 /* The static distance tree is trivial: */
2331 for (n = 0; n < D_CODES; n++) {
2332 static_dtree[n].Len = 5;
2333 static_dtree[n].Code = bi_reverse(n, 5);
2334 }
2335
2336 /* Initialize the first block of the first file: */
2337 init_block();
Eric Andersencc8ed391999-10-05 16:24:54 +00002338}
2339
2340/* ===========================================================================
2341 * Initialize a new block.
2342 */
2343local void init_block()
2344{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002345 int n; /* iterates over tree elements */
Eric Andersencc8ed391999-10-05 16:24:54 +00002346
Erik Andersene49d5ec2000-02-08 19:58:47 +00002347 /* Initialize the trees. */
2348 for (n = 0; n < L_CODES; n++)
2349 dyn_ltree[n].Freq = 0;
2350 for (n = 0; n < D_CODES; n++)
2351 dyn_dtree[n].Freq = 0;
2352 for (n = 0; n < BL_CODES; n++)
2353 bl_tree[n].Freq = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00002354
Erik Andersene49d5ec2000-02-08 19:58:47 +00002355 dyn_ltree[END_BLOCK].Freq = 1;
2356 opt_len = static_len = 0L;
2357 last_lit = last_dist = last_flags = 0;
2358 flags = 0;
2359 flag_bit = 1;
Eric Andersencc8ed391999-10-05 16:24:54 +00002360}
2361
2362#define SMALLEST 1
2363/* Index within the heap array of least frequent node in the Huffman tree */
2364
2365
2366/* ===========================================================================
2367 * Remove the smallest element from the heap and recreate the heap with
2368 * one less element. Updates heap and heap_len.
2369 */
2370#define pqremove(tree, top) \
2371{\
2372 top = heap[SMALLEST]; \
2373 heap[SMALLEST] = heap[heap_len--]; \
2374 pqdownheap(tree, SMALLEST); \
2375}
2376
2377/* ===========================================================================
2378 * Compares to subtrees, using the tree depth as tie breaker when
2379 * the subtrees have equal frequency. This minimizes the worst case length.
2380 */
2381#define smaller(tree, n, m) \
2382 (tree[n].Freq < tree[m].Freq || \
2383 (tree[n].Freq == tree[m].Freq && depth[n] <= depth[m]))
2384
2385/* ===========================================================================
2386 * Restore the heap property by moving down the tree starting at node k,
2387 * exchanging a node with the smallest of its two sons if necessary, stopping
2388 * when the heap property is re-established (each father smaller than its
2389 * two sons).
2390 */
2391local void pqdownheap(tree, k)
Erik Andersene49d5ec2000-02-08 19:58:47 +00002392ct_data near *tree; /* the tree to restore */
2393int k; /* node to move down */
Eric Andersencc8ed391999-10-05 16:24:54 +00002394{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002395 int v = heap[k];
2396 int j = k << 1; /* left son of k */
Eric Andersencc8ed391999-10-05 16:24:54 +00002397
Erik Andersene49d5ec2000-02-08 19:58:47 +00002398 while (j <= heap_len) {
2399 /* Set j to the smallest of the two sons: */
2400 if (j < heap_len && smaller(tree, heap[j + 1], heap[j]))
2401 j++;
Eric Andersencc8ed391999-10-05 16:24:54 +00002402
Erik Andersene49d5ec2000-02-08 19:58:47 +00002403 /* Exit if v is smaller than both sons */
2404 if (smaller(tree, v, heap[j]))
2405 break;
Eric Andersencc8ed391999-10-05 16:24:54 +00002406
Erik Andersene49d5ec2000-02-08 19:58:47 +00002407 /* Exchange v with the smallest son */
2408 heap[k] = heap[j];
2409 k = j;
2410
2411 /* And continue down the tree, setting j to the left son of k */
2412 j <<= 1;
2413 }
2414 heap[k] = v;
Eric Andersencc8ed391999-10-05 16:24:54 +00002415}
2416
2417/* ===========================================================================
2418 * Compute the optimal bit lengths for a tree and update the total bit length
2419 * for the current block.
2420 * IN assertion: the fields freq and dad are set, heap[heap_max] and
2421 * above are the tree nodes sorted by increasing frequency.
2422 * OUT assertions: the field len is set to the optimal bit length, the
2423 * array bl_count contains the frequencies for each bit length.
2424 * The length opt_len is updated; static_len is also updated if stree is
2425 * not null.
2426 */
2427local void gen_bitlen(desc)
Erik Andersene49d5ec2000-02-08 19:58:47 +00002428tree_desc near *desc; /* the tree descriptor */
Eric Andersencc8ed391999-10-05 16:24:54 +00002429{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002430 ct_data near *tree = desc->dyn_tree;
2431 int near *extra = desc->extra_bits;
2432 int base = desc->extra_base;
2433 int max_code = desc->max_code;
2434 int max_length = desc->max_length;
2435 ct_data near *stree = desc->static_tree;
2436 int h; /* heap index */
2437 int n, m; /* iterate over the tree elements */
2438 int bits; /* bit length */
2439 int xbits; /* extra bits */
2440 ush f; /* frequency */
2441 int overflow = 0; /* number of elements with bit length too large */
Eric Andersencc8ed391999-10-05 16:24:54 +00002442
Erik Andersene49d5ec2000-02-08 19:58:47 +00002443 for (bits = 0; bits <= MAX_BITS; bits++)
2444 bl_count[bits] = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00002445
Erik Andersene49d5ec2000-02-08 19:58:47 +00002446 /* In a first pass, compute the optimal bit lengths (which may
2447 * overflow in the case of the bit length tree).
2448 */
2449 tree[heap[heap_max]].Len = 0; /* root of the heap */
Eric Andersencc8ed391999-10-05 16:24:54 +00002450
Erik Andersene49d5ec2000-02-08 19:58:47 +00002451 for (h = heap_max + 1; h < HEAP_SIZE; h++) {
2452 n = heap[h];
2453 bits = tree[tree[n].Dad].Len + 1;
2454 if (bits > max_length)
2455 bits = max_length, overflow++;
2456 tree[n].Len = (ush) bits;
2457 /* We overwrite tree[n].Dad which is no longer needed */
Eric Andersencc8ed391999-10-05 16:24:54 +00002458
Erik Andersene49d5ec2000-02-08 19:58:47 +00002459 if (n > max_code)
2460 continue; /* not a leaf node */
Eric Andersencc8ed391999-10-05 16:24:54 +00002461
Erik Andersene49d5ec2000-02-08 19:58:47 +00002462 bl_count[bits]++;
2463 xbits = 0;
2464 if (n >= base)
2465 xbits = extra[n - base];
2466 f = tree[n].Freq;
2467 opt_len += (ulg) f *(bits + xbits);
Eric Andersencc8ed391999-10-05 16:24:54 +00002468
Erik Andersene49d5ec2000-02-08 19:58:47 +00002469 if (stree)
2470 static_len += (ulg) f *(stree[n].Len + xbits);
2471 }
2472 if (overflow == 0)
2473 return;
Eric Andersencc8ed391999-10-05 16:24:54 +00002474
Erik Andersene49d5ec2000-02-08 19:58:47 +00002475 Trace((stderr, "\nbit length overflow\n"));
2476 /* This happens for example on obj2 and pic of the Calgary corpus */
Eric Andersencc8ed391999-10-05 16:24:54 +00002477
Erik Andersene49d5ec2000-02-08 19:58:47 +00002478 /* Find the first bit length which could increase: */
2479 do {
2480 bits = max_length - 1;
2481 while (bl_count[bits] == 0)
2482 bits--;
2483 bl_count[bits]--; /* move one leaf down the tree */
2484 bl_count[bits + 1] += 2; /* move one overflow item as its brother */
2485 bl_count[max_length]--;
2486 /* The brother of the overflow item also moves one step up,
2487 * but this does not affect bl_count[max_length]
2488 */
2489 overflow -= 2;
2490 } while (overflow > 0);
2491
2492 /* Now recompute all bit lengths, scanning in increasing frequency.
2493 * h is still equal to HEAP_SIZE. (It is simpler to reconstruct all
2494 * lengths instead of fixing only the wrong ones. This idea is taken
2495 * from 'ar' written by Haruhiko Okumura.)
2496 */
2497 for (bits = max_length; bits != 0; bits--) {
2498 n = bl_count[bits];
2499 while (n != 0) {
2500 m = heap[--h];
2501 if (m > max_code)
2502 continue;
2503 if (tree[m].Len != (unsigned) bits) {
2504 Trace(
2505 (stderr, "code %d bits %d->%d\n", m, tree[m].Len,
2506 bits));
2507 opt_len +=
2508 ((long) bits -
2509 (long) tree[m].Len) * (long) tree[m].Freq;
2510 tree[m].Len = (ush) bits;
2511 }
2512 n--;
2513 }
2514 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002515}
2516
2517/* ===========================================================================
2518 * Generate the codes for a given tree and bit counts (which need not be
2519 * optimal).
2520 * IN assertion: the array bl_count contains the bit length statistics for
2521 * the given tree and the field len is set for all tree elements.
2522 * OUT assertion: the field code is set for all tree elements of non
2523 * zero code length.
2524 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002525local void gen_codes(tree, max_code)
2526ct_data near *tree; /* the tree to decorate */
2527int max_code; /* largest code with non zero frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +00002528{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002529 ush next_code[MAX_BITS + 1]; /* next code value for each bit length */
2530 ush code = 0; /* running code value */
2531 int bits; /* bit index */
2532 int n; /* code index */
Eric Andersencc8ed391999-10-05 16:24:54 +00002533
Erik Andersene49d5ec2000-02-08 19:58:47 +00002534 /* The distribution counts are first used to generate the code values
2535 * without bit reversal.
2536 */
2537 for (bits = 1; bits <= MAX_BITS; bits++) {
2538 next_code[bits] = code = (code + bl_count[bits - 1]) << 1;
2539 }
2540 /* Check that the bit counts in bl_count are consistent. The last code
2541 * must be all ones.
2542 */
2543 Assert(code + bl_count[MAX_BITS] - 1 == (1 << MAX_BITS) - 1,
2544 "inconsistent bit counts");
2545 Tracev((stderr, "\ngen_codes: max_code %d ", max_code));
Eric Andersencc8ed391999-10-05 16:24:54 +00002546
Erik Andersene49d5ec2000-02-08 19:58:47 +00002547 for (n = 0; n <= max_code; n++) {
2548 int len = tree[n].Len;
Eric Andersencc8ed391999-10-05 16:24:54 +00002549
Erik Andersene49d5ec2000-02-08 19:58:47 +00002550 if (len == 0)
2551 continue;
2552 /* Now reverse the bits */
2553 tree[n].Code = bi_reverse(next_code[len]++, len);
2554
2555 Tracec(tree != static_ltree,
2556 (stderr, "\nn %3d %c l %2d c %4x (%x) ", n,
2557 (isgraph(n) ? n : ' '), len, tree[n].Code,
2558 next_code[len] - 1));
2559 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002560}
2561
2562/* ===========================================================================
2563 * Construct one Huffman tree and assigns the code bit strings and lengths.
2564 * Update the total bit length for the current block.
2565 * IN assertion: the field freq is set for all tree elements.
2566 * OUT assertions: the fields len and code are set to the optimal bit length
2567 * and corresponding code. The length opt_len is updated; static_len is
2568 * also updated if stree is not null. The field max_code is set.
2569 */
2570local void build_tree(desc)
Erik Andersene49d5ec2000-02-08 19:58:47 +00002571tree_desc near *desc; /* the tree descriptor */
Eric Andersencc8ed391999-10-05 16:24:54 +00002572{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002573 ct_data near *tree = desc->dyn_tree;
2574 ct_data near *stree = desc->static_tree;
2575 int elems = desc->elems;
2576 int n, m; /* iterate over heap elements */
2577 int max_code = -1; /* largest code with non zero frequency */
2578 int node = elems; /* next internal node of the tree */
Eric Andersencc8ed391999-10-05 16:24:54 +00002579
Erik Andersene49d5ec2000-02-08 19:58:47 +00002580 /* Construct the initial heap, with least frequent element in
2581 * heap[SMALLEST]. The sons of heap[n] are heap[2*n] and heap[2*n+1].
2582 * heap[0] is not used.
2583 */
2584 heap_len = 0, heap_max = HEAP_SIZE;
Eric Andersencc8ed391999-10-05 16:24:54 +00002585
Erik Andersene49d5ec2000-02-08 19:58:47 +00002586 for (n = 0; n < elems; n++) {
2587 if (tree[n].Freq != 0) {
2588 heap[++heap_len] = max_code = n;
2589 depth[n] = 0;
2590 } else {
2591 tree[n].Len = 0;
2592 }
2593 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002594
Erik Andersene49d5ec2000-02-08 19:58:47 +00002595 /* The pkzip format requires that at least one distance code exists,
2596 * and that at least one bit should be sent even if there is only one
2597 * possible code. So to avoid special checks later on we force at least
2598 * two codes of non zero frequency.
2599 */
2600 while (heap_len < 2) {
2601 int new = heap[++heap_len] = (max_code < 2 ? ++max_code : 0);
Eric Andersencc8ed391999-10-05 16:24:54 +00002602
Erik Andersene49d5ec2000-02-08 19:58:47 +00002603 tree[new].Freq = 1;
2604 depth[new] = 0;
2605 opt_len--;
2606 if (stree)
2607 static_len -= stree[new].Len;
2608 /* new is 0 or 1 so it does not have extra bits */
2609 }
2610 desc->max_code = max_code;
Eric Andersencc8ed391999-10-05 16:24:54 +00002611
Erik Andersene49d5ec2000-02-08 19:58:47 +00002612 /* The elements heap[heap_len/2+1 .. heap_len] are leaves of the tree,
2613 * establish sub-heaps of increasing lengths:
2614 */
2615 for (n = heap_len / 2; n >= 1; n--)
2616 pqdownheap(tree, n);
Eric Andersencc8ed391999-10-05 16:24:54 +00002617
Erik Andersene49d5ec2000-02-08 19:58:47 +00002618 /* Construct the Huffman tree by repeatedly combining the least two
2619 * frequent nodes.
2620 */
2621 do {
2622 pqremove(tree, n); /* n = node of least frequency */
2623 m = heap[SMALLEST]; /* m = node of next least frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +00002624
Erik Andersene49d5ec2000-02-08 19:58:47 +00002625 heap[--heap_max] = n; /* keep the nodes sorted by frequency */
2626 heap[--heap_max] = m;
2627
2628 /* Create a new node father of n and m */
2629 tree[node].Freq = tree[n].Freq + tree[m].Freq;
2630 depth[node] = (uch) (MAX(depth[n], depth[m]) + 1);
2631 tree[n].Dad = tree[m].Dad = (ush) node;
Eric Andersencc8ed391999-10-05 16:24:54 +00002632#ifdef DUMP_BL_TREE
Erik Andersene49d5ec2000-02-08 19:58:47 +00002633 if (tree == bl_tree) {
2634 fprintf(stderr, "\nnode %d(%d), sons %d(%d) %d(%d)",
2635 node, tree[node].Freq, n, tree[n].Freq, m,
2636 tree[m].Freq);
2637 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002638#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00002639 /* and insert the new node in the heap */
2640 heap[SMALLEST] = node++;
2641 pqdownheap(tree, SMALLEST);
Eric Andersencc8ed391999-10-05 16:24:54 +00002642
Erik Andersene49d5ec2000-02-08 19:58:47 +00002643 } while (heap_len >= 2);
Eric Andersencc8ed391999-10-05 16:24:54 +00002644
Erik Andersene49d5ec2000-02-08 19:58:47 +00002645 heap[--heap_max] = heap[SMALLEST];
Eric Andersencc8ed391999-10-05 16:24:54 +00002646
Erik Andersene49d5ec2000-02-08 19:58:47 +00002647 /* At this point, the fields freq and dad are set. We can now
2648 * generate the bit lengths.
2649 */
2650 gen_bitlen((tree_desc near *) desc);
Eric Andersencc8ed391999-10-05 16:24:54 +00002651
Erik Andersene49d5ec2000-02-08 19:58:47 +00002652 /* The field len is now set, we can generate the bit codes */
2653 gen_codes((ct_data near *) tree, max_code);
Eric Andersencc8ed391999-10-05 16:24:54 +00002654}
2655
2656/* ===========================================================================
2657 * Scan a literal or distance tree to determine the frequencies of the codes
2658 * in the bit length tree. Updates opt_len to take into account the repeat
2659 * counts. (The contribution of the bit length codes will be added later
2660 * during the construction of bl_tree.)
2661 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002662local void scan_tree(tree, max_code)
2663ct_data near *tree; /* the tree to be scanned */
2664int max_code; /* and its largest code of non zero frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +00002665{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002666 int n; /* iterates over all tree elements */
2667 int prevlen = -1; /* last emitted length */
2668 int curlen; /* length of current code */
2669 int nextlen = tree[0].Len; /* length of next code */
2670 int count = 0; /* repeat count of the current code */
2671 int max_count = 7; /* max repeat count */
2672 int min_count = 4; /* min repeat count */
Eric Andersencc8ed391999-10-05 16:24:54 +00002673
Erik Andersene49d5ec2000-02-08 19:58:47 +00002674 if (nextlen == 0)
2675 max_count = 138, min_count = 3;
2676 tree[max_code + 1].Len = (ush) 0xffff; /* guard */
Eric Andersencc8ed391999-10-05 16:24:54 +00002677
Erik Andersene49d5ec2000-02-08 19:58:47 +00002678 for (n = 0; n <= max_code; n++) {
2679 curlen = nextlen;
2680 nextlen = tree[n + 1].Len;
2681 if (++count < max_count && curlen == nextlen) {
2682 continue;
2683 } else if (count < min_count) {
2684 bl_tree[curlen].Freq += count;
2685 } else if (curlen != 0) {
2686 if (curlen != prevlen)
2687 bl_tree[curlen].Freq++;
2688 bl_tree[REP_3_6].Freq++;
2689 } else if (count <= 10) {
2690 bl_tree[REPZ_3_10].Freq++;
2691 } else {
2692 bl_tree[REPZ_11_138].Freq++;
2693 }
2694 count = 0;
2695 prevlen = curlen;
2696 if (nextlen == 0) {
2697 max_count = 138, min_count = 3;
2698 } else if (curlen == nextlen) {
2699 max_count = 6, min_count = 3;
2700 } else {
2701 max_count = 7, min_count = 4;
2702 }
2703 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002704}
2705
2706/* ===========================================================================
2707 * Send a literal or distance tree in compressed form, using the codes in
2708 * bl_tree.
2709 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002710local void send_tree(tree, max_code)
2711ct_data near *tree; /* the tree to be scanned */
2712int max_code; /* and its largest code of non zero frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +00002713{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002714 int n; /* iterates over all tree elements */
2715 int prevlen = -1; /* last emitted length */
2716 int curlen; /* length of current code */
2717 int nextlen = tree[0].Len; /* length of next code */
2718 int count = 0; /* repeat count of the current code */
2719 int max_count = 7; /* max repeat count */
2720 int min_count = 4; /* min repeat count */
Eric Andersencc8ed391999-10-05 16:24:54 +00002721
Erik Andersene49d5ec2000-02-08 19:58:47 +00002722/* tree[max_code+1].Len = -1; *//* guard already set */
2723 if (nextlen == 0)
2724 max_count = 138, min_count = 3;
Eric Andersencc8ed391999-10-05 16:24:54 +00002725
Erik Andersene49d5ec2000-02-08 19:58:47 +00002726 for (n = 0; n <= max_code; n++) {
2727 curlen = nextlen;
2728 nextlen = tree[n + 1].Len;
2729 if (++count < max_count && curlen == nextlen) {
2730 continue;
2731 } else if (count < min_count) {
2732 do {
2733 send_code(curlen, bl_tree);
2734 } while (--count != 0);
Eric Andersencc8ed391999-10-05 16:24:54 +00002735
Erik Andersene49d5ec2000-02-08 19:58:47 +00002736 } else if (curlen != 0) {
2737 if (curlen != prevlen) {
2738 send_code(curlen, bl_tree);
2739 count--;
2740 }
2741 Assert(count >= 3 && count <= 6, " 3_6?");
2742 send_code(REP_3_6, bl_tree);
2743 send_bits(count - 3, 2);
Eric Andersencc8ed391999-10-05 16:24:54 +00002744
Erik Andersene49d5ec2000-02-08 19:58:47 +00002745 } else if (count <= 10) {
2746 send_code(REPZ_3_10, bl_tree);
2747 send_bits(count - 3, 3);
Eric Andersencc8ed391999-10-05 16:24:54 +00002748
Erik Andersene49d5ec2000-02-08 19:58:47 +00002749 } else {
2750 send_code(REPZ_11_138, bl_tree);
2751 send_bits(count - 11, 7);
2752 }
2753 count = 0;
2754 prevlen = curlen;
2755 if (nextlen == 0) {
2756 max_count = 138, min_count = 3;
2757 } else if (curlen == nextlen) {
2758 max_count = 6, min_count = 3;
2759 } else {
2760 max_count = 7, min_count = 4;
2761 }
2762 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002763}
2764
2765/* ===========================================================================
2766 * Construct the Huffman tree for the bit lengths and return the index in
2767 * bl_order of the last bit length code to send.
2768 */
2769local int build_bl_tree()
2770{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002771 int max_blindex; /* index of last bit length code of non zero freq */
Eric Andersencc8ed391999-10-05 16:24:54 +00002772
Erik Andersene49d5ec2000-02-08 19:58:47 +00002773 /* Determine the bit length frequencies for literal and distance trees */
2774 scan_tree((ct_data near *) dyn_ltree, l_desc.max_code);
2775 scan_tree((ct_data near *) dyn_dtree, d_desc.max_code);
Eric Andersencc8ed391999-10-05 16:24:54 +00002776
Erik Andersene49d5ec2000-02-08 19:58:47 +00002777 /* Build the bit length tree: */
2778 build_tree((tree_desc near *) (&bl_desc));
2779 /* opt_len now includes the length of the tree representations, except
2780 * the lengths of the bit lengths codes and the 5+5+4 bits for the counts.
2781 */
Eric Andersencc8ed391999-10-05 16:24:54 +00002782
Erik Andersene49d5ec2000-02-08 19:58:47 +00002783 /* Determine the number of bit length codes to send. The pkzip format
2784 * requires that at least 4 bit length codes be sent. (appnote.txt says
2785 * 3 but the actual value used is 4.)
2786 */
2787 for (max_blindex = BL_CODES - 1; max_blindex >= 3; max_blindex--) {
2788 if (bl_tree[bl_order[max_blindex]].Len != 0)
2789 break;
2790 }
2791 /* Update opt_len to include the bit length tree and counts */
2792 opt_len += 3 * (max_blindex + 1) + 5 + 5 + 4;
2793 Tracev(
2794 (stderr, "\ndyn trees: dyn %ld, stat %ld", opt_len,
2795 static_len));
Eric Andersencc8ed391999-10-05 16:24:54 +00002796
Erik Andersene49d5ec2000-02-08 19:58:47 +00002797 return max_blindex;
Eric Andersencc8ed391999-10-05 16:24:54 +00002798}
2799
2800/* ===========================================================================
2801 * Send the header for a block using dynamic Huffman trees: the counts, the
2802 * lengths of the bit length codes, the literal tree and the distance tree.
2803 * IN assertion: lcodes >= 257, dcodes >= 1, blcodes >= 4.
2804 */
2805local void send_all_trees(lcodes, dcodes, blcodes)
Erik Andersene49d5ec2000-02-08 19:58:47 +00002806int lcodes, dcodes, blcodes; /* number of codes for each tree */
Eric Andersencc8ed391999-10-05 16:24:54 +00002807{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002808 int rank; /* index in bl_order */
Eric Andersencc8ed391999-10-05 16:24:54 +00002809
Erik Andersene49d5ec2000-02-08 19:58:47 +00002810 Assert(lcodes >= 257 && dcodes >= 1
2811 && blcodes >= 4, "not enough codes");
2812 Assert(lcodes <= L_CODES && dcodes <= D_CODES
2813 && blcodes <= BL_CODES, "too many codes");
2814 Tracev((stderr, "\nbl counts: "));
2815 send_bits(lcodes - 257, 5); /* not +255 as stated in appnote.txt */
2816 send_bits(dcodes - 1, 5);
2817 send_bits(blcodes - 4, 4); /* not -3 as stated in appnote.txt */
2818 for (rank = 0; rank < blcodes; rank++) {
2819 Tracev((stderr, "\nbl code %2d ", bl_order[rank]));
2820 send_bits(bl_tree[bl_order[rank]].Len, 3);
2821 }
2822 Tracev((stderr, "\nbl tree: sent %ld", bits_sent));
Eric Andersencc8ed391999-10-05 16:24:54 +00002823
Erik Andersene49d5ec2000-02-08 19:58:47 +00002824 send_tree((ct_data near *) dyn_ltree, lcodes - 1); /* send the literal tree */
2825 Tracev((stderr, "\nlit tree: sent %ld", bits_sent));
Eric Andersencc8ed391999-10-05 16:24:54 +00002826
Erik Andersene49d5ec2000-02-08 19:58:47 +00002827 send_tree((ct_data near *) dyn_dtree, dcodes - 1); /* send the distance tree */
2828 Tracev((stderr, "\ndist tree: sent %ld", bits_sent));
Eric Andersencc8ed391999-10-05 16:24:54 +00002829}
2830
2831/* ===========================================================================
2832 * Determine the best encoding for the current block: dynamic trees, static
2833 * trees or store, and output the encoded block to the zip file. This function
2834 * returns the total compressed length for the file so far.
2835 */
2836ulg flush_block(buf, stored_len, eof)
Erik Andersene49d5ec2000-02-08 19:58:47 +00002837char *buf; /* input block, or NULL if too old */
2838ulg stored_len; /* length of input block */
2839int eof; /* true if this is the last block for a file */
Eric Andersencc8ed391999-10-05 16:24:54 +00002840{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002841 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
2842 int max_blindex; /* index of last bit length code of non zero freq */
Eric Andersencc8ed391999-10-05 16:24:54 +00002843
Erik Andersene49d5ec2000-02-08 19:58:47 +00002844 flag_buf[last_flags] = flags; /* Save the flags for the last 8 items */
Eric Andersencc8ed391999-10-05 16:24:54 +00002845
Erik Andersene49d5ec2000-02-08 19:58:47 +00002846 /* Check if the file is ascii or binary */
2847 if (*file_type == (ush) UNKNOWN)
2848 set_file_type();
Eric Andersencc8ed391999-10-05 16:24:54 +00002849
Erik Andersene49d5ec2000-02-08 19:58:47 +00002850 /* Construct the literal and distance trees */
2851 build_tree((tree_desc near *) (&l_desc));
2852 Tracev((stderr, "\nlit data: dyn %ld, stat %ld", opt_len, static_len));
Eric Andersencc8ed391999-10-05 16:24:54 +00002853
Erik Andersene49d5ec2000-02-08 19:58:47 +00002854 build_tree((tree_desc near *) (&d_desc));
2855 Tracev(
2856 (stderr, "\ndist data: dyn %ld, stat %ld", opt_len,
2857 static_len));
2858 /* At this point, opt_len and static_len are the total bit lengths of
2859 * the compressed block data, excluding the tree representations.
2860 */
Eric Andersencc8ed391999-10-05 16:24:54 +00002861
Erik Andersene49d5ec2000-02-08 19:58:47 +00002862 /* Build the bit length tree for the above two trees, and get the index
2863 * in bl_order of the last bit length code to send.
2864 */
2865 max_blindex = build_bl_tree();
Eric Andersencc8ed391999-10-05 16:24:54 +00002866
Erik Andersene49d5ec2000-02-08 19:58:47 +00002867 /* Determine the best encoding. Compute first the block length in bytes */
2868 opt_lenb = (opt_len + 3 + 7) >> 3;
2869 static_lenb = (static_len + 3 + 7) >> 3;
2870 input_len += stored_len; /* for debugging only */
Eric Andersencc8ed391999-10-05 16:24:54 +00002871
Erik Andersene49d5ec2000-02-08 19:58:47 +00002872 Trace(
2873 (stderr,
2874 "\nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u dist %u ",
2875 opt_lenb, opt_len, static_lenb, static_len, stored_len,
2876 last_lit, last_dist));
Eric Andersencc8ed391999-10-05 16:24:54 +00002877
Erik Andersene49d5ec2000-02-08 19:58:47 +00002878 if (static_lenb <= opt_lenb)
2879 opt_lenb = static_lenb;
Eric Andersencc8ed391999-10-05 16:24:54 +00002880
Erik Andersene49d5ec2000-02-08 19:58:47 +00002881 /* If compression failed and this is the first and last block,
2882 * and if the zip file can be seeked (to rewrite the local header),
2883 * the whole file is transformed into a stored file:
2884 */
Eric Andersencc8ed391999-10-05 16:24:54 +00002885#ifdef FORCE_METHOD
2886#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00002887 if (stored_len <= opt_lenb && eof && compressed_len == 0L
2888 && seekable()) {
Eric Andersencc8ed391999-10-05 16:24:54 +00002889#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00002890 /* Since LIT_BUFSIZE <= 2*WSIZE, the input data must be there: */
2891 if (buf == (char *) 0)
Matt Kraaidd19c692001-01-31 19:00:21 +00002892 error_msg("block vanished");
Eric Andersencc8ed391999-10-05 16:24:54 +00002893
Erik Andersene49d5ec2000-02-08 19:58:47 +00002894 copy_block(buf, (unsigned) stored_len, 0); /* without header */
2895 compressed_len = stored_len << 3;
2896 *file_method = STORED;
Eric Andersencc8ed391999-10-05 16:24:54 +00002897
2898#ifdef FORCE_METHOD
2899#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00002900 } else if (stored_len + 4 <= opt_lenb && buf != (char *) 0) {
2901 /* 4: two words for the lengths */
Eric Andersencc8ed391999-10-05 16:24:54 +00002902#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00002903 /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE.
2904 * Otherwise we can't have processed more than WSIZE input bytes since
2905 * the last block flush, because compression would have been
2906 * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to
2907 * transform a block into a stored block.
2908 */
2909 send_bits((STORED_BLOCK << 1) + eof, 3); /* send block type */
2910 compressed_len = (compressed_len + 3 + 7) & ~7L;
2911 compressed_len += (stored_len + 4) << 3;
Eric Andersencc8ed391999-10-05 16:24:54 +00002912
Erik Andersene49d5ec2000-02-08 19:58:47 +00002913 copy_block(buf, (unsigned) stored_len, 1); /* with header */
Eric Andersencc8ed391999-10-05 16:24:54 +00002914
2915#ifdef FORCE_METHOD
2916#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00002917 } else if (static_lenb == opt_lenb) {
Eric Andersencc8ed391999-10-05 16:24:54 +00002918#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00002919 send_bits((STATIC_TREES << 1) + eof, 3);
2920 compress_block((ct_data near *) static_ltree,
2921 (ct_data near *) static_dtree);
2922 compressed_len += 3 + static_len;
2923 } else {
2924 send_bits((DYN_TREES << 1) + eof, 3);
2925 send_all_trees(l_desc.max_code + 1, d_desc.max_code + 1,
2926 max_blindex + 1);
2927 compress_block((ct_data near *) dyn_ltree,
2928 (ct_data near *) dyn_dtree);
2929 compressed_len += 3 + opt_len;
2930 }
2931 Assert(compressed_len == bits_sent, "bad compressed size");
2932 init_block();
Eric Andersencc8ed391999-10-05 16:24:54 +00002933
Erik Andersene49d5ec2000-02-08 19:58:47 +00002934 if (eof) {
2935 Assert(input_len == isize, "bad input size");
2936 bi_windup();
2937 compressed_len += 7; /* align on byte boundary */
2938 }
2939 Tracev((stderr, "\ncomprlen %lu(%lu) ", compressed_len >> 3,
2940 compressed_len - 7 * eof));
Eric Andersencc8ed391999-10-05 16:24:54 +00002941
Erik Andersene49d5ec2000-02-08 19:58:47 +00002942 return compressed_len >> 3;
Eric Andersencc8ed391999-10-05 16:24:54 +00002943}
2944
2945/* ===========================================================================
2946 * Save the match info and tally the frequency counts. Return true if
2947 * the current block must be flushed.
2948 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002949int ct_tally(dist, lc)
2950int dist; /* distance of matched string */
2951int lc; /* match length-MIN_MATCH or unmatched char (if dist==0) */
Eric Andersencc8ed391999-10-05 16:24:54 +00002952{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002953 l_buf[last_lit++] = (uch) lc;
2954 if (dist == 0) {
2955 /* lc is the unmatched char */
2956 dyn_ltree[lc].Freq++;
2957 } else {
2958 /* Here, lc is the match length - MIN_MATCH */
2959 dist--; /* dist = match distance - 1 */
2960 Assert((ush) dist < (ush) MAX_DIST &&
2961 (ush) lc <= (ush) (MAX_MATCH - MIN_MATCH) &&
2962 (ush) d_code(dist) < (ush) D_CODES, "ct_tally: bad match");
Eric Andersencc8ed391999-10-05 16:24:54 +00002963
Erik Andersene49d5ec2000-02-08 19:58:47 +00002964 dyn_ltree[length_code[lc] + LITERALS + 1].Freq++;
2965 dyn_dtree[d_code(dist)].Freq++;
Eric Andersencc8ed391999-10-05 16:24:54 +00002966
Erik Andersene49d5ec2000-02-08 19:58:47 +00002967 d_buf[last_dist++] = (ush) dist;
2968 flags |= flag_bit;
2969 }
2970 flag_bit <<= 1;
Eric Andersencc8ed391999-10-05 16:24:54 +00002971
Erik Andersene49d5ec2000-02-08 19:58:47 +00002972 /* Output the flags if they fill a byte: */
2973 if ((last_lit & 7) == 0) {
2974 flag_buf[last_flags++] = flags;
2975 flags = 0, flag_bit = 1;
2976 }
2977 /* Try to guess if it is profitable to stop the current block here */
2978 if ((last_lit & 0xfff) == 0) {
2979 /* Compute an upper bound for the compressed length */
2980 ulg out_length = (ulg) last_lit * 8L;
2981 ulg in_length = (ulg) strstart - block_start;
2982 int dcode;
2983
2984 for (dcode = 0; dcode < D_CODES; dcode++) {
2985 out_length +=
2986 (ulg) dyn_dtree[dcode].Freq * (5L + extra_dbits[dcode]);
2987 }
2988 out_length >>= 3;
2989 Trace(
2990 (stderr,
2991 "\nlast_lit %u, last_dist %u, in %ld, out ~%ld(%ld%%) ",
2992 last_lit, last_dist, in_length, out_length,
2993 100L - out_length * 100L / in_length));
2994 if (last_dist < last_lit / 2 && out_length < in_length / 2)
2995 return 1;
2996 }
2997 return (last_lit == LIT_BUFSIZE - 1 || last_dist == DIST_BUFSIZE);
2998 /* We avoid equality with LIT_BUFSIZE because of wraparound at 64K
2999 * on 16 bit machines and because stored blocks are restricted to
3000 * 64K-1 bytes.
3001 */
Eric Andersencc8ed391999-10-05 16:24:54 +00003002}
3003
3004/* ===========================================================================
3005 * Send the block data compressed using the given Huffman trees
3006 */
3007local void compress_block(ltree, dtree)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003008ct_data near *ltree; /* literal tree */
3009ct_data near *dtree; /* distance tree */
Eric Andersencc8ed391999-10-05 16:24:54 +00003010{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003011 unsigned dist; /* distance of matched string */
3012 int lc; /* match length or unmatched char (if dist == 0) */
3013 unsigned lx = 0; /* running index in l_buf */
3014 unsigned dx = 0; /* running index in d_buf */
3015 unsigned fx = 0; /* running index in flag_buf */
3016 uch flag = 0; /* current flags */
3017 unsigned code; /* the code to send */
3018 int extra; /* number of extra bits to send */
Eric Andersencc8ed391999-10-05 16:24:54 +00003019
Erik Andersene49d5ec2000-02-08 19:58:47 +00003020 if (last_lit != 0)
3021 do {
3022 if ((lx & 7) == 0)
3023 flag = flag_buf[fx++];
3024 lc = l_buf[lx++];
3025 if ((flag & 1) == 0) {
3026 send_code(lc, ltree); /* send a literal byte */
3027 Tracecv(isgraph(lc), (stderr, " '%c' ", lc));
3028 } else {
3029 /* Here, lc is the match length - MIN_MATCH */
3030 code = length_code[lc];
3031 send_code(code + LITERALS + 1, ltree); /* send the length code */
3032 extra = extra_lbits[code];
3033 if (extra != 0) {
3034 lc -= base_length[code];
3035 send_bits(lc, extra); /* send the extra length bits */
3036 }
3037 dist = d_buf[dx++];
3038 /* Here, dist is the match distance - 1 */
3039 code = d_code(dist);
3040 Assert(code < D_CODES, "bad d_code");
Eric Andersencc8ed391999-10-05 16:24:54 +00003041
Erik Andersene49d5ec2000-02-08 19:58:47 +00003042 send_code(code, dtree); /* send the distance code */
3043 extra = extra_dbits[code];
3044 if (extra != 0) {
3045 dist -= base_dist[code];
3046 send_bits(dist, extra); /* send the extra distance bits */
3047 }
3048 } /* literal or match pair ? */
3049 flag >>= 1;
3050 } while (lx < last_lit);
Eric Andersencc8ed391999-10-05 16:24:54 +00003051
Erik Andersene49d5ec2000-02-08 19:58:47 +00003052 send_code(END_BLOCK, ltree);
Eric Andersencc8ed391999-10-05 16:24:54 +00003053}
3054
3055/* ===========================================================================
3056 * Set the file type to ASCII or BINARY, using a crude approximation:
3057 * binary if more than 20% of the bytes are <= 6 or >= 128, ascii otherwise.
3058 * IN assertion: the fields freq of dyn_ltree are set and the total of all
3059 * frequencies does not exceed 64K (to fit in an int on 16 bit machines).
3060 */
3061local void set_file_type()
3062{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003063 int n = 0;
3064 unsigned ascii_freq = 0;
3065 unsigned bin_freq = 0;
3066
3067 while (n < 7)
3068 bin_freq += dyn_ltree[n++].Freq;
3069 while (n < 128)
3070 ascii_freq += dyn_ltree[n++].Freq;
3071 while (n < LITERALS)
3072 bin_freq += dyn_ltree[n++].Freq;
3073 *file_type = bin_freq > (ascii_freq >> 2) ? BINARY : ASCII;
3074 if (*file_type == BINARY && translate_eol) {
Matt Kraaidd19c692001-01-31 19:00:21 +00003075 error_msg("-l used on binary file");
Erik Andersene49d5ec2000-02-08 19:58:47 +00003076 }
Eric Andersencc8ed391999-10-05 16:24:54 +00003077}
Erik Andersene49d5ec2000-02-08 19:58:47 +00003078
Eric Andersencc8ed391999-10-05 16:24:54 +00003079/* util.c -- utility functions for gzip support
3080 * Copyright (C) 1992-1993 Jean-loup Gailly
3081 * This is free software; you can redistribute it and/or modify it under the
3082 * terms of the GNU General Public License, see the file COPYING.
3083 */
3084
Eric Andersencc8ed391999-10-05 16:24:54 +00003085#include <ctype.h>
3086#include <errno.h>
3087#include <sys/types.h>
3088
3089#ifdef HAVE_UNISTD_H
3090# include <unistd.h>
3091#endif
3092#ifndef NO_FCNTL_H
3093# include <fcntl.h>
3094#endif
3095
Eric Andersencc8ed391999-10-05 16:24:54 +00003096/* ===========================================================================
3097 * Copy input to output unchanged: zcat == cat with --force.
3098 * IN assertion: insize bytes have already been read in inbuf.
3099 */
3100int copy(in, out)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003101int in, out; /* input and output file descriptors */
Eric Andersencc8ed391999-10-05 16:24:54 +00003102{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003103 errno = 0;
3104 while (insize != 0 && (int) insize != EOF) {
3105 write_buf(out, (char *) inbuf, insize);
3106 bytes_out += insize;
3107 insize = read(in, (char *) inbuf, INBUFSIZ);
3108 }
3109 if ((int) insize == EOF && errno != 0) {
Erik Andersen330fd2b2000-05-19 05:35:19 +00003110 read_error_msg();
Erik Andersene49d5ec2000-02-08 19:58:47 +00003111 }
3112 bytes_in = bytes_out;
3113 return OK;
Eric Andersencc8ed391999-10-05 16:24:54 +00003114}
3115
3116/* ========================================================================
3117 * Put string s in lower case, return s.
3118 */
3119char *strlwr(s)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003120char *s;
Eric Andersencc8ed391999-10-05 16:24:54 +00003121{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003122 char *t;
3123
3124 for (t = s; *t; t++)
3125 *t = tolow(*t);
3126 return s;
Eric Andersencc8ed391999-10-05 16:24:54 +00003127}
3128
3129#if defined(NO_STRING_H) && !defined(STDC_HEADERS)
3130
3131/* Provide missing strspn and strcspn functions. */
3132
Erik Andersen61677fe2000-04-13 01:18:56 +00003133int strspn (const char *s, const char *accept);
3134int strcspn (const char *s, const char *reject);
Eric Andersencc8ed391999-10-05 16:24:54 +00003135
3136/* ========================================================================
3137 * Return the length of the maximum initial segment
3138 * of s which contains only characters in accept.
3139 */
3140int strspn(s, accept)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003141const char *s;
3142const char *accept;
Eric Andersencc8ed391999-10-05 16:24:54 +00003143{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003144 register const char *p;
3145 register const char *a;
3146 register int count = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00003147
Erik Andersene49d5ec2000-02-08 19:58:47 +00003148 for (p = s; *p != '\0'; ++p) {
3149 for (a = accept; *a != '\0'; ++a) {
3150 if (*p == *a)
3151 break;
3152 }
3153 if (*a == '\0')
3154 return count;
3155 ++count;
Eric Andersencc8ed391999-10-05 16:24:54 +00003156 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00003157 return count;
Eric Andersencc8ed391999-10-05 16:24:54 +00003158}
3159
3160/* ========================================================================
3161 * Return the length of the maximum inital segment of s
3162 * which contains no characters from reject.
3163 */
3164int strcspn(s, reject)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003165const char *s;
3166const char *reject;
Eric Andersencc8ed391999-10-05 16:24:54 +00003167{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003168 register int count = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00003169
Erik Andersene49d5ec2000-02-08 19:58:47 +00003170 while (*s != '\0') {
3171 if (strchr(reject, *s++) != NULL)
3172 return count;
3173 ++count;
3174 }
3175 return count;
Eric Andersencc8ed391999-10-05 16:24:54 +00003176}
3177
Erik Andersene49d5ec2000-02-08 19:58:47 +00003178#endif /* NO_STRING_H */
Eric Andersencc8ed391999-10-05 16:24:54 +00003179
3180/* ========================================================================
3181 * Add an environment variable (if any) before argv, and update argc.
3182 * Return the expanded environment variable to be freed later, or NULL
3183 * if no options were added to argv.
3184 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00003185#define SEPARATOR " \t" /* separators in env variable */
Eric Andersencc8ed391999-10-05 16:24:54 +00003186
3187char *add_envopt(argcp, argvp, env)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003188int *argcp; /* pointer to argc */
3189char ***argvp; /* pointer to argv */
3190char *env; /* name of environment variable */
Eric Andersencc8ed391999-10-05 16:24:54 +00003191{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003192 char *p; /* running pointer through env variable */
3193 char **oargv; /* runs through old argv array */
3194 char **nargv; /* runs through new argv array */
3195 int oargc = *argcp; /* old argc */
3196 int nargc = 0; /* number of arguments in env variable */
Eric Andersencc8ed391999-10-05 16:24:54 +00003197
Erik Andersene49d5ec2000-02-08 19:58:47 +00003198 env = (char *) getenv(env);
3199 if (env == NULL)
3200 return NULL;
Eric Andersencc8ed391999-10-05 16:24:54 +00003201
Erik Andersene49d5ec2000-02-08 19:58:47 +00003202 p = (char *) xmalloc(strlen(env) + 1);
3203 env = strcpy(p, env); /* keep env variable intact */
Eric Andersencc8ed391999-10-05 16:24:54 +00003204
Erik Andersene49d5ec2000-02-08 19:58:47 +00003205 for (p = env; *p; nargc++) { /* move through env */
3206 p += strspn(p, SEPARATOR); /* skip leading separators */
3207 if (*p == '\0')
3208 break;
Eric Andersencc8ed391999-10-05 16:24:54 +00003209
Erik Andersene49d5ec2000-02-08 19:58:47 +00003210 p += strcspn(p, SEPARATOR); /* find end of word */
3211 if (*p)
3212 *p++ = '\0'; /* mark it */
3213 }
3214 if (nargc == 0) {
3215 free(env);
3216 return NULL;
3217 }
3218 *argcp += nargc;
3219 /* Allocate the new argv array, with an extra element just in case
3220 * the original arg list did not end with a NULL.
3221 */
3222 nargv = (char **) calloc(*argcp + 1, sizeof(char *));
Eric Andersencc8ed391999-10-05 16:24:54 +00003223
Erik Andersene49d5ec2000-02-08 19:58:47 +00003224 if (nargv == NULL)
Mark Whitleyf57c9442000-12-07 19:56:48 +00003225 error_msg(memory_exhausted);
Erik Andersene49d5ec2000-02-08 19:58:47 +00003226 oargv = *argvp;
3227 *argvp = nargv;
Eric Andersencc8ed391999-10-05 16:24:54 +00003228
Erik Andersene49d5ec2000-02-08 19:58:47 +00003229 /* Copy the program name first */
3230 if (oargc-- < 0)
Matt Kraaidd19c692001-01-31 19:00:21 +00003231 error_msg("argc<=0");
Erik Andersene49d5ec2000-02-08 19:58:47 +00003232 *(nargv++) = *(oargv++);
Eric Andersencc8ed391999-10-05 16:24:54 +00003233
Erik Andersene49d5ec2000-02-08 19:58:47 +00003234 /* Then copy the environment args */
3235 for (p = env; nargc > 0; nargc--) {
3236 p += strspn(p, SEPARATOR); /* skip separators */
3237 *(nargv++) = p; /* store start */
3238 while (*p++); /* skip over word */
3239 }
3240
3241 /* Finally copy the old args and add a NULL (usual convention) */
3242 while (oargc--)
3243 *(nargv++) = *(oargv++);
3244 *nargv = NULL;
3245 return env;
Eric Andersencc8ed391999-10-05 16:24:54 +00003246}
Erik Andersene49d5ec2000-02-08 19:58:47 +00003247
Eric Andersencc8ed391999-10-05 16:24:54 +00003248/* ========================================================================
3249 * Display compression ratio on the given stream on 6 characters.
3250 */
3251void display_ratio(num, den, file)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003252long num;
3253long den;
3254FILE *file;
Eric Andersencc8ed391999-10-05 16:24:54 +00003255{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003256 long ratio; /* 1000 times the compression ratio */
Eric Andersencc8ed391999-10-05 16:24:54 +00003257
Erik Andersene49d5ec2000-02-08 19:58:47 +00003258 if (den == 0) {
3259 ratio = 0; /* no compression */
3260 } else if (den < 2147483L) { /* (2**31 -1)/1000 */
3261 ratio = 1000L * num / den;
3262 } else {
3263 ratio = num / (den / 1000L);
3264 }
3265 if (ratio < 0) {
3266 putc('-', file);
3267 ratio = -ratio;
3268 } else {
3269 putc(' ', file);
3270 }
3271 fprintf(file, "%2ld.%1ld%%", ratio / 10L, ratio % 10L);
Eric Andersencc8ed391999-10-05 16:24:54 +00003272}
3273
3274
3275/* zip.c -- compress files to the gzip or pkzip format
3276 * Copyright (C) 1992-1993 Jean-loup Gailly
3277 * This is free software; you can redistribute it and/or modify it under the
3278 * terms of the GNU General Public License, see the file COPYING.
3279 */
3280
Eric Andersencc8ed391999-10-05 16:24:54 +00003281#include <ctype.h>
3282#include <sys/types.h>
3283
3284#ifdef HAVE_UNISTD_H
3285# include <unistd.h>
3286#endif
3287#ifndef NO_FCNTL_H
3288# include <fcntl.h>
3289#endif
3290
Erik Andersene49d5ec2000-02-08 19:58:47 +00003291local ulg crc; /* crc on uncompressed file data */
3292long header_bytes; /* number of bytes in gzip header */
Eric Andersencc8ed391999-10-05 16:24:54 +00003293
3294/* ===========================================================================
3295 * Deflate in to out.
3296 * IN assertions: the input and output buffers are cleared.
3297 * The variables time_stamp and save_orig_name are initialized.
3298 */
3299int zip(in, out)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003300int in, out; /* input and output file descriptors */
Eric Andersencc8ed391999-10-05 16:24:54 +00003301{
Eric Andersen851895a2001-03-21 21:52:25 +00003302 uch my_flags = 0; /* general purpose bit flags */
Erik Andersene49d5ec2000-02-08 19:58:47 +00003303 ush attr = 0; /* ascii/binary flag */
3304 ush deflate_flags = 0; /* pkzip -es, -en or -ex equivalent */
Eric Andersencc8ed391999-10-05 16:24:54 +00003305
Erik Andersene49d5ec2000-02-08 19:58:47 +00003306 ifd = in;
3307 ofd = out;
3308 outcnt = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00003309
Erik Andersene49d5ec2000-02-08 19:58:47 +00003310 /* Write the header to the gzip file. See algorithm.doc for the format */
Eric Andersencc8ed391999-10-05 16:24:54 +00003311
Eric Andersen96bcfd31999-11-12 01:30:18 +00003312
Erik Andersene49d5ec2000-02-08 19:58:47 +00003313 method = DEFLATED;
3314 put_byte(GZIP_MAGIC[0]); /* magic header */
3315 put_byte(GZIP_MAGIC[1]);
3316 put_byte(DEFLATED); /* compression method */
Eric Andersencc8ed391999-10-05 16:24:54 +00003317
Eric Andersen851895a2001-03-21 21:52:25 +00003318 put_byte(my_flags); /* general flags */
Erik Andersene49d5ec2000-02-08 19:58:47 +00003319 put_long(time_stamp);
Eric Andersencc8ed391999-10-05 16:24:54 +00003320
Erik Andersene49d5ec2000-02-08 19:58:47 +00003321 /* Write deflated file to zip file */
3322 crc = updcrc(0, 0);
Eric Andersencc8ed391999-10-05 16:24:54 +00003323
Erik Andersene49d5ec2000-02-08 19:58:47 +00003324 bi_init(out);
3325 ct_init(&attr, &method);
3326 lm_init(&deflate_flags);
Eric Andersencc8ed391999-10-05 16:24:54 +00003327
Erik Andersene49d5ec2000-02-08 19:58:47 +00003328 put_byte((uch) deflate_flags); /* extra flags */
3329 put_byte(OS_CODE); /* OS identifier */
Eric Andersencc8ed391999-10-05 16:24:54 +00003330
Erik Andersene49d5ec2000-02-08 19:58:47 +00003331 header_bytes = (long) outcnt;
Eric Andersencc8ed391999-10-05 16:24:54 +00003332
Erik Andersene49d5ec2000-02-08 19:58:47 +00003333 (void) deflate();
Eric Andersencc8ed391999-10-05 16:24:54 +00003334
Erik Andersene49d5ec2000-02-08 19:58:47 +00003335 /* Write the crc and uncompressed size */
3336 put_long(crc);
3337 put_long(isize);
3338 header_bytes += 2 * sizeof(long);
Eric Andersencc8ed391999-10-05 16:24:54 +00003339
Erik Andersene49d5ec2000-02-08 19:58:47 +00003340 flush_outbuf();
3341 return OK;
Eric Andersencc8ed391999-10-05 16:24:54 +00003342}
3343
3344
3345/* ===========================================================================
3346 * Read a new buffer from the current input file, perform end-of-line
3347 * translation, and update the crc and input file size.
3348 * IN assertion: size >= 2 (for end-of-line translation)
3349 */
3350int file_read(buf, size)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003351char *buf;
3352unsigned size;
Eric Andersencc8ed391999-10-05 16:24:54 +00003353{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003354 unsigned len;
Eric Andersencc8ed391999-10-05 16:24:54 +00003355
Erik Andersene49d5ec2000-02-08 19:58:47 +00003356 Assert(insize == 0, "inbuf not empty");
Eric Andersencc8ed391999-10-05 16:24:54 +00003357
Erik Andersene49d5ec2000-02-08 19:58:47 +00003358 len = read(ifd, buf, size);
3359 if (len == (unsigned) (-1) || len == 0)
3360 return (int) len;
Eric Andersencc8ed391999-10-05 16:24:54 +00003361
Erik Andersene49d5ec2000-02-08 19:58:47 +00003362 crc = updcrc((uch *) buf, len);
3363 isize += (ulg) len;
3364 return (int) len;
Eric Andersencc8ed391999-10-05 16:24:54 +00003365}
Matt Kraai7918e1f2000-11-08 06:52:57 +00003366
3367/* ===========================================================================
3368 * Write the output buffer outbuf[0..outcnt-1] and update bytes_out.
3369 * (used for the compressed data only)
3370 */
3371void flush_outbuf()
3372{
3373 if (outcnt == 0)
3374 return;
3375
3376 write_buf(ofd, (char *) outbuf, outcnt);
3377 bytes_out += (ulg) outcnt;
3378 outcnt = 0;
3379}