blob: 8bc67d9c608c904c71003a9bb645424301a6843b [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#include "internal.h"
Erik Andersen7ab9c7e2000-05-12 19:41:47 +000033#define BB_DECLARE_EXTERN
34#define bb_need_memory_exhausted
35#include "messages.c"
Erik Andersen61677fe2000-04-13 01:18:56 +000036
37/* These defines are very important for BusyBox. Without these,
38 * huge chunks of ram are pre-allocated making the BusyBox bss
39 * size Freaking Huge(tm), which is a bad thing.*/
40#define SMALL_MEM
41#define DYN_ALLOC
42
Eric Andersencc8ed391999-10-05 16:24:54 +000043
Eric Andersenc296b541999-11-11 01:36:55 +000044static const char gzip_usage[] =
Erik Andersen7ab9c7e2000-05-12 19:41:47 +000045 "gzip [OPTION]... FILE\n"
46#ifndef BB_FEATURE_TRIVIAL_HELP
47 "\nCompress FILE with maximum compression.\n"
Erik Andersen5e1189e2000-04-15 16:34:54 +000048 "When FILE is '-', reads standard input. Implies -c.\n\n"
Erik Andersene49d5ec2000-02-08 19:58:47 +000049
50 "Options:\n"
Erik Andersen7ab9c7e2000-05-12 19:41:47 +000051 "\t-c\tWrite output to standard output instead of FILE.gz\n"
52#endif
53 ;
Eric Andersenc296b541999-11-11 01:36:55 +000054
Eric Andersencc8ed391999-10-05 16:24:54 +000055
Eric Andersencc8ed391999-10-05 16:24:54 +000056/* I don't like nested includes, but the string and io functions are used
57 * too often
58 */
59#include <stdio.h>
Erik Andersen61677fe2000-04-13 01:18:56 +000060#include <string.h>
61#define memzero(s, n) memset ((void *)(s), 0, (n))
Eric Andersencc8ed391999-10-05 16:24:54 +000062
63#ifndef RETSIGTYPE
64# define RETSIGTYPE void
65#endif
66
67#define local static
68
Erik Andersene49d5ec2000-02-08 19:58:47 +000069typedef unsigned char uch;
Eric Andersencc8ed391999-10-05 16:24:54 +000070typedef unsigned short ush;
Erik Andersene49d5ec2000-02-08 19:58:47 +000071typedef unsigned long ulg;
Eric Andersencc8ed391999-10-05 16:24:54 +000072
73/* Return codes from gzip */
74#define OK 0
75#define ERROR 1
76#define WARNING 2
77
78/* Compression methods (see algorithm.doc) */
79#define STORED 0
80#define COMPRESSED 1
81#define PACKED 2
82#define LZHED 3
83/* methods 4 to 7 reserved */
84#define DEFLATED 8
85#define MAX_METHODS 9
Erik Andersene49d5ec2000-02-08 19:58:47 +000086extern int method; /* compression method */
Eric Andersencc8ed391999-10-05 16:24:54 +000087
88/* To save memory for 16 bit systems, some arrays are overlaid between
89 * the various modules:
90 * deflate: prev+head window d_buf l_buf outbuf
91 * unlzw: tab_prefix tab_suffix stack inbuf outbuf
92 * inflate: window inbuf
93 * unpack: window inbuf prefix_len
94 * unlzh: left+right window c_table inbuf c_len
95 * For compression, input is done in window[]. For decompression, output
96 * is done in window except for unlzw.
97 */
98
99#ifndef INBUFSIZ
100# ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +0000101# define INBUFSIZ 0x2000 /* input buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +0000102# else
Erik Andersene49d5ec2000-02-08 19:58:47 +0000103# define INBUFSIZ 0x8000 /* input buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +0000104# endif
105#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000106#define INBUF_EXTRA 64 /* required by unlzw() */
Eric Andersencc8ed391999-10-05 16:24:54 +0000107
108#ifndef OUTBUFSIZ
109# ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +0000110# define OUTBUFSIZ 8192 /* output buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +0000111# else
Erik Andersene49d5ec2000-02-08 19:58:47 +0000112# define OUTBUFSIZ 16384 /* output buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +0000113# endif
114#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000115#define OUTBUF_EXTRA 2048 /* required by unlzw() */
Eric Andersencc8ed391999-10-05 16:24:54 +0000116
117#ifndef DIST_BUFSIZE
118# ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +0000119# define DIST_BUFSIZE 0x2000 /* buffer for distances, see trees.c */
Eric Andersencc8ed391999-10-05 16:24:54 +0000120# else
Erik Andersene49d5ec2000-02-08 19:58:47 +0000121# define DIST_BUFSIZE 0x8000 /* buffer for distances, see trees.c */
Eric Andersencc8ed391999-10-05 16:24:54 +0000122# endif
123#endif
124
125#ifdef DYN_ALLOC
Erik Andersen61677fe2000-04-13 01:18:56 +0000126# define EXTERN(type, array) extern type * array
127# define DECLARE(type, array, size) type * array
Eric Andersencc8ed391999-10-05 16:24:54 +0000128# define ALLOC(type, array, size) { \
Erik Andersen61677fe2000-04-13 01:18:56 +0000129 array = (type*)calloc((size_t)(((size)+1L)/2), 2*sizeof(type)); \
Matt Kraaibe84cd42000-07-12 17:02:35 +0000130 if (array == NULL) errorMsg(memory_exhausted); \
Eric Andersencc8ed391999-10-05 16:24:54 +0000131 }
Erik Andersen61677fe2000-04-13 01:18:56 +0000132# define FREE(array) {if (array != NULL) free(array), array=NULL;}
Eric Andersencc8ed391999-10-05 16:24:54 +0000133#else
134# define EXTERN(type, array) extern type array[]
135# define DECLARE(type, array, size) type array[size]
136# define ALLOC(type, array, size)
137# define FREE(array)
138#endif
139
Erik Andersene49d5ec2000-02-08 19:58:47 +0000140EXTERN(uch, inbuf); /* input buffer */
141EXTERN(uch, outbuf); /* output buffer */
142EXTERN(ush, d_buf); /* buffer for distances, see trees.c */
143EXTERN(uch, window); /* Sliding window and suffix table (unlzw) */
Eric Andersencc8ed391999-10-05 16:24:54 +0000144#define tab_suffix window
145#ifndef MAXSEG_64K
Erik Andersene49d5ec2000-02-08 19:58:47 +0000146# define tab_prefix prev /* hash link (see deflate.c) */
147# define head (prev+WSIZE) /* hash head (see deflate.c) */
148EXTERN(ush, tab_prefix); /* prefix code (see unlzw.c) */
Eric Andersencc8ed391999-10-05 16:24:54 +0000149#else
150# define tab_prefix0 prev
151# define head tab_prefix1
Erik Andersene49d5ec2000-02-08 19:58:47 +0000152EXTERN(ush, tab_prefix0); /* prefix for even codes */
153EXTERN(ush, tab_prefix1); /* prefix for odd codes */
Eric Andersencc8ed391999-10-05 16:24:54 +0000154#endif
155
Erik Andersene49d5ec2000-02-08 19:58:47 +0000156extern unsigned insize; /* valid bytes in inbuf */
157extern unsigned inptr; /* index of next byte to be processed in inbuf */
158extern unsigned outcnt; /* bytes in output buffer */
Eric Andersencc8ed391999-10-05 16:24:54 +0000159
Erik Andersene49d5ec2000-02-08 19:58:47 +0000160extern long bytes_in; /* number of input bytes */
161extern long bytes_out; /* number of output bytes */
162extern long header_bytes; /* number of bytes in gzip header */
Eric Andersencc8ed391999-10-05 16:24:54 +0000163
164#define isize bytes_in
165/* for compatibility with old zip sources (to be cleaned) */
166
Erik Andersene49d5ec2000-02-08 19:58:47 +0000167extern int ifd; /* input file descriptor */
168extern int ofd; /* output file descriptor */
169extern char ifname[]; /* input file name or "stdin" */
170extern char ofname[]; /* output file name or "stdout" */
171extern char *progname; /* program name */
Eric Andersencc8ed391999-10-05 16:24:54 +0000172
Erik Andersene49d5ec2000-02-08 19:58:47 +0000173extern long time_stamp; /* original time stamp (modification time) */
174extern long ifile_size; /* input file size, -1 for devices (debug only) */
Eric Andersencc8ed391999-10-05 16:24:54 +0000175
Erik Andersene49d5ec2000-02-08 19:58:47 +0000176typedef int file_t; /* Do not use stdio */
177
178#define NO_FILE (-1) /* in memory compression */
Eric Andersencc8ed391999-10-05 16:24:54 +0000179
180
Erik Andersene49d5ec2000-02-08 19:58:47 +0000181#define PACK_MAGIC "\037\036" /* Magic header for packed files */
182#define GZIP_MAGIC "\037\213" /* Magic header for gzip files, 1F 8B */
183#define OLD_GZIP_MAGIC "\037\236" /* Magic header for gzip 0.5 = freeze 1.x */
184#define LZH_MAGIC "\037\240" /* Magic header for SCO LZH Compress files */
185#define PKZIP_MAGIC "\120\113\003\004" /* Magic header for pkzip files */
Eric Andersencc8ed391999-10-05 16:24:54 +0000186
187/* gzip flag byte */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000188#define ASCII_FLAG 0x01 /* bit 0 set: file probably ascii text */
189#define CONTINUATION 0x02 /* bit 1 set: continuation of multi-part gzip file */
190#define EXTRA_FIELD 0x04 /* bit 2 set: extra field present */
191#define ORIG_NAME 0x08 /* bit 3 set: original file name present */
192#define COMMENT 0x10 /* bit 4 set: file comment present */
193#define ENCRYPTED 0x20 /* bit 5 set: file is encrypted */
194#define RESERVED 0xC0 /* bit 6,7: reserved */
Eric Andersencc8ed391999-10-05 16:24:54 +0000195
196/* internal file attribute */
197#define UNKNOWN 0xffff
198#define BINARY 0
199#define ASCII 1
200
201#ifndef WSIZE
Erik Andersene49d5ec2000-02-08 19:58:47 +0000202# define WSIZE 0x8000 /* window size--must be a power of two, and */
203#endif /* at least 32K for zip's deflate method */
Eric Andersencc8ed391999-10-05 16:24:54 +0000204
205#define MIN_MATCH 3
206#define MAX_MATCH 258
207/* The minimum and maximum match lengths */
208
209#define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
210/* Minimum amount of lookahead, except at the end of the input file.
211 * See deflate.c for comments about the MIN_MATCH+1.
212 */
213
214#define MAX_DIST (WSIZE-MIN_LOOKAHEAD)
215/* In order to simplify the code, particularly on 16 bit machines, match
216 * distances are limited to MAX_DIST instead of WSIZE.
217 */
218
Erik Andersene49d5ec2000-02-08 19:58:47 +0000219extern int decrypt; /* flag to turn on decryption */
220extern int exit_code; /* program exit code */
221extern int verbose; /* be verbose (-v) */
222extern int quiet; /* be quiet (-q) */
223extern int test; /* check .z file integrity */
224extern int save_orig_name; /* set if original name must be saved */
Eric Andersencc8ed391999-10-05 16:24:54 +0000225
226#define get_byte() (inptr < insize ? inbuf[inptr++] : fill_inbuf(0))
227#define try_byte() (inptr < insize ? inbuf[inptr++] : fill_inbuf(1))
228
229/* put_byte is used for the compressed output, put_ubyte for the
230 * uncompressed output. However unlzw() uses window for its
231 * suffix table instead of its output buffer, so it does not use put_ubyte
232 * (to be cleaned up).
233 */
234#define put_byte(c) {outbuf[outcnt++]=(uch)(c); if (outcnt==OUTBUFSIZ)\
235 flush_outbuf();}
236#define put_ubyte(c) {window[outcnt++]=(uch)(c); if (outcnt==WSIZE)\
237 flush_window();}
238
239/* Output a 16 bit value, lsb first */
240#define put_short(w) \
241{ if (outcnt < OUTBUFSIZ-2) { \
242 outbuf[outcnt++] = (uch) ((w) & 0xff); \
243 outbuf[outcnt++] = (uch) ((ush)(w) >> 8); \
244 } else { \
245 put_byte((uch)((w) & 0xff)); \
246 put_byte((uch)((ush)(w) >> 8)); \
247 } \
248}
249
250/* Output a 32 bit value to the bit stream, lsb first */
251#define put_long(n) { \
252 put_short((n) & 0xffff); \
253 put_short(((ulg)(n)) >> 16); \
254}
255
Erik Andersene49d5ec2000-02-08 19:58:47 +0000256#define seekable() 0 /* force sequential output */
257#define translate_eol 0 /* no option -a yet */
Eric Andersencc8ed391999-10-05 16:24:54 +0000258
Erik Andersene49d5ec2000-02-08 19:58:47 +0000259#define tolow(c) (isupper(c) ? (c)-'A'+'a' : (c)) /* force to lower case */
Eric Andersencc8ed391999-10-05 16:24:54 +0000260
261/* Macros for getting two-byte and four-byte header values */
262#define SH(p) ((ush)(uch)((p)[0]) | ((ush)(uch)((p)[1]) << 8))
263#define LG(p) ((ulg)(SH(p)) | ((ulg)(SH((p)+2)) << 16))
264
265/* Diagnostic functions */
266#ifdef DEBUG
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000267# define Assert(cond,msg) {if(!(cond)) errorMsg(msg);}
Eric Andersencc8ed391999-10-05 16:24:54 +0000268# define Trace(x) fprintf x
269# define Tracev(x) {if (verbose) fprintf x ;}
270# define Tracevv(x) {if (verbose>1) fprintf x ;}
271# define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
272# define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
273#else
274# define Assert(cond,msg)
275# define Trace(x)
276# define Tracev(x)
277# define Tracevv(x)
278# define Tracec(c,x)
279# define Tracecv(c,x)
280#endif
281
282#define WARN(msg) {if (!quiet) fprintf msg ; \
283 if (exit_code == OK) exit_code = WARNING;}
284
Eric Andersencc8ed391999-10-05 16:24:54 +0000285
286 /* in zip.c: */
Erik Andersen61677fe2000-04-13 01:18:56 +0000287extern int zip (int in, int out);
288extern int file_read (char *buf, unsigned size);
Eric Andersencc8ed391999-10-05 16:24:54 +0000289
290 /* in unzip.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000291extern int unzip (int in, int out);
292extern int check_zipfile (int in);
Eric Andersencc8ed391999-10-05 16:24:54 +0000293
294 /* in unpack.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000295extern int unpack (int in, int out);
Eric Andersencc8ed391999-10-05 16:24:54 +0000296
297 /* in unlzh.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000298extern int unlzh (int in, int out);
Eric Andersencc8ed391999-10-05 16:24:54 +0000299
300 /* in gzip.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000301RETSIGTYPE abort_gzip (void);
Eric Andersencc8ed391999-10-05 16:24:54 +0000302
Erik Andersene49d5ec2000-02-08 19:58:47 +0000303 /* in deflate.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000304void lm_init (ush * flags);
305ulg deflate (void);
Eric Andersencc8ed391999-10-05 16:24:54 +0000306
Erik Andersene49d5ec2000-02-08 19:58:47 +0000307 /* in trees.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000308void ct_init (ush * attr, int *method);
309int ct_tally (int dist, int lc);
310ulg flush_block (char *buf, ulg stored_len, int eof);
Eric Andersencc8ed391999-10-05 16:24:54 +0000311
Erik Andersene49d5ec2000-02-08 19:58:47 +0000312 /* in bits.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000313void bi_init (file_t zipfile);
314void send_bits (int value, int length);
315unsigned bi_reverse (unsigned value, int length);
316void bi_windup (void);
317void copy_block (char *buf, unsigned len, int header);
318extern int (*read_buf) (char *buf, unsigned size);
Eric Andersencc8ed391999-10-05 16:24:54 +0000319
320 /* in util.c: */
Erik Andersen61677fe2000-04-13 01:18:56 +0000321extern int copy (int in, int out);
322extern ulg updcrc (uch * s, unsigned n);
323extern void clear_bufs (void);
324extern int fill_inbuf (int eof_ok);
325extern void flush_outbuf (void);
326extern void flush_window (void);
327extern void write_buf (int fd, void * buf, unsigned cnt);
328extern char *strlwr (char *s);
329extern char *add_envopt (int *argcp, char ***argvp, char *env);
Erik Andersen330fd2b2000-05-19 05:35:19 +0000330extern void read_error_msg (void);
331extern void write_error_msg (void);
Erik Andersen61677fe2000-04-13 01:18:56 +0000332extern void display_ratio (long num, long den, FILE * file);
Eric Andersencc8ed391999-10-05 16:24:54 +0000333
334 /* in inflate.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000335extern int inflate (void);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000336
Eric Andersencc8ed391999-10-05 16:24:54 +0000337/* lzw.h -- define the lzw functions.
338 * Copyright (C) 1992-1993 Jean-loup Gailly.
339 * This is free software; you can redistribute it and/or modify it under the
340 * terms of the GNU General Public License, see the file COPYING.
341 */
342
343#if !defined(OF) && defined(lint)
344# include "gzip.h"
345#endif
346
347#ifndef BITS
348# define BITS 16
349#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000350#define INIT_BITS 9 /* Initial number of bits per code */
Eric Andersencc8ed391999-10-05 16:24:54 +0000351
Erik Andersene49d5ec2000-02-08 19:58:47 +0000352#define BIT_MASK 0x1f /* Mask for 'number of compression bits' */
Eric Andersencc8ed391999-10-05 16:24:54 +0000353/* Mask 0x20 is reserved to mean a fourth header byte, and 0x40 is free.
354 * It's a pity that old uncompress does not check bit 0x20. That makes
355 * extension of the format actually undesirable because old compress
356 * would just crash on the new format instead of giving a meaningful
357 * error message. It does check the number of bits, but it's more
358 * helpful to say "unsupported format, get a new version" than
359 * "can only handle 16 bits".
360 */
361
362#define BLOCK_MODE 0x80
363/* Block compression: if table is full and compression rate is dropping,
364 * clear the dictionary.
365 */
366
Erik Andersene49d5ec2000-02-08 19:58:47 +0000367#define LZW_RESERVED 0x60 /* reserved bits */
Eric Andersencc8ed391999-10-05 16:24:54 +0000368
Erik Andersene49d5ec2000-02-08 19:58:47 +0000369#define CLEAR 256 /* flush the dictionary */
370#define FIRST (CLEAR+1) /* first free entry */
Eric Andersencc8ed391999-10-05 16:24:54 +0000371
Erik Andersene49d5ec2000-02-08 19:58:47 +0000372extern int maxbits; /* max bits per code for LZW */
373extern int block_mode; /* block compress mode -C compatible with 2.0 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000374
375/* revision.h -- define the version number
376 * Copyright (C) 1992-1993 Jean-loup Gailly.
377 * This is free software; you can redistribute it and/or modify it under the
378 * terms of the GNU General Public License, see the file COPYING.
379 */
380
381#define VERSION "1.2.4"
382#define PATCHLEVEL 0
383#define REVDATE "18 Aug 93"
384
385/* This version does not support compression into old compress format: */
386#ifdef LZW
387# undef LZW
388#endif
389
Eric Andersencc8ed391999-10-05 16:24:54 +0000390/* tailor.h -- target dependent definitions
391 * Copyright (C) 1992-1993 Jean-loup Gailly.
392 * This is free software; you can redistribute it and/or modify it under the
393 * terms of the GNU General Public License, see the file COPYING.
394 */
395
396/* The target dependent definitions should be defined here only.
397 * The target dependent functions should be defined in tailor.c.
398 */
399
Eric Andersencc8ed391999-10-05 16:24:54 +0000400
401#if defined(__MSDOS__) && !defined(MSDOS)
402# define MSDOS
403#endif
404
405#if defined(__OS2__) && !defined(OS2)
406# define OS2
407#endif
408
Erik Andersene49d5ec2000-02-08 19:58:47 +0000409#if defined(OS2) && defined(MSDOS) /* MS C under OS/2 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000410# undef MSDOS
411#endif
412
413#ifdef MSDOS
414# ifdef __GNUC__
Erik Andersene49d5ec2000-02-08 19:58:47 +0000415 /* DJGPP version 1.09+ on MS-DOS.
416 * The DJGPP 1.09 stat() function must be upgraded before gzip will
417 * fully work.
418 * No need for DIRENT, since <unistd.h> defines POSIX_SOURCE which
419 * implies DIRENT.
420 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000421# define near
422# else
423# define MAXSEG_64K
424# ifdef __TURBOC__
425# define NO_OFF_T
426# ifdef __BORLANDC__
427# define DIRENT
428# else
429# define NO_UTIME
430# endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000431# else /* MSC */
Eric Andersencc8ed391999-10-05 16:24:54 +0000432# define HAVE_SYS_UTIME_H
433# define NO_UTIME_H
434# endif
435# endif
436# define PATH_SEP2 '\\'
437# define PATH_SEP3 ':'
438# define MAX_PATH_LEN 128
439# define NO_MULTIPLE_DOTS
440# define MAX_EXT_CHARS 3
441# define Z_SUFFIX "z"
442# define NO_CHOWN
443# define PROTO
444# define STDC_HEADERS
445# define NO_SIZE_CHECK
Erik Andersene49d5ec2000-02-08 19:58:47 +0000446# define casemap(c) tolow(c) /* Force file names to lower case */
Eric Andersencc8ed391999-10-05 16:24:54 +0000447# include <io.h>
448# define OS_CODE 0x00
449# define SET_BINARY_MODE(fd) setmode(fd, O_BINARY)
450# if !defined(NO_ASM) && !defined(ASMV)
451# define ASMV
452# endif
453#else
454# define near
455#endif
456
457#ifdef OS2
458# define PATH_SEP2 '\\'
459# define PATH_SEP3 ':'
460# define MAX_PATH_LEN 260
461# ifdef OS2FAT
462# define NO_MULTIPLE_DOTS
463# define MAX_EXT_CHARS 3
464# define Z_SUFFIX "z"
465# define casemap(c) tolow(c)
466# endif
467# define NO_CHOWN
468# define PROTO
469# define STDC_HEADERS
470# include <io.h>
471# define OS_CODE 0x06
472# define SET_BINARY_MODE(fd) setmode(fd, O_BINARY)
473# ifdef _MSC_VER
474# define HAVE_SYS_UTIME_H
475# define NO_UTIME_H
476# define MAXSEG_64K
477# undef near
478# define near _near
479# endif
480# ifdef __EMX__
481# define HAVE_SYS_UTIME_H
482# define NO_UTIME_H
483# define DIRENT
484# define EXPAND(argc,argv) \
485 {_response(&argc, &argv); _wildcard(&argc, &argv);}
486# endif
487# ifdef __BORLANDC__
488# define DIRENT
489# endif
490# ifdef __ZTC__
491# define NO_DIR
492# define NO_UTIME_H
493# include <dos.h>
494# define EXPAND(argc,argv) \
495 {response_expand(&argc, &argv);}
496# endif
497#endif
498
Erik Andersene49d5ec2000-02-08 19:58:47 +0000499#ifdef WIN32 /* Windows NT */
Eric Andersencc8ed391999-10-05 16:24:54 +0000500# define HAVE_SYS_UTIME_H
501# define NO_UTIME_H
502# define PATH_SEP2 '\\'
503# define PATH_SEP3 ':'
504# define MAX_PATH_LEN 260
505# define NO_CHOWN
506# define PROTO
507# define STDC_HEADERS
508# define SET_BINARY_MODE(fd) setmode(fd, O_BINARY)
509# include <io.h>
510# include <malloc.h>
511# ifdef NTFAT
512# define NO_MULTIPLE_DOTS
513# define MAX_EXT_CHARS 3
514# define Z_SUFFIX "z"
Erik Andersene49d5ec2000-02-08 19:58:47 +0000515# define casemap(c) tolow(c) /* Force file names to lower case */
Eric Andersencc8ed391999-10-05 16:24:54 +0000516# endif
517# define OS_CODE 0x0b
518#endif
519
520#ifdef MSDOS
521# ifdef __TURBOC__
522# include <alloc.h>
523# define DYN_ALLOC
Erik Andersene49d5ec2000-02-08 19:58:47 +0000524 /* Turbo C 2.0 does not accept static allocations of large arrays */
525void *fcalloc(unsigned items, unsigned size);
526void fcfree(void *ptr);
527# else /* MSC */
Eric Andersencc8ed391999-10-05 16:24:54 +0000528# include <malloc.h>
529# define fcalloc(nitems,itemsize) halloc((long)(nitems),(itemsize))
530# define fcfree(ptr) hfree(ptr)
531# endif
532#else
533# ifdef MAXSEG_64K
534# define fcalloc(items,size) calloc((items),(size))
535# else
536# define fcalloc(items,size) malloc((size_t)(items)*(size_t)(size))
537# endif
538# define fcfree(ptr) free(ptr)
539#endif
540
541#if defined(VAXC) || defined(VMS)
542# define PATH_SEP ']'
543# define PATH_SEP2 ':'
544# define SUFFIX_SEP ';'
545# define NO_MULTIPLE_DOTS
546# define Z_SUFFIX "-gz"
547# define RECORD_IO 1
548# define casemap(c) tolow(c)
549# define OS_CODE 0x02
550# define OPTIONS_VAR "GZIP_OPT"
551# define STDC_HEADERS
552# define NO_UTIME
553# define EXPAND(argc,argv) vms_expand_args(&argc,&argv);
554# include <file.h>
555# define unlink delete
556# ifdef VAXC
557# define NO_FCNTL_H
558# include <unixio.h>
559# endif
560#endif
561
562#ifdef AMIGA
563# define PATH_SEP2 ':'
564# define STDC_HEADERS
565# define OS_CODE 0x01
566# define ASMV
567# ifdef __GNUC__
568# define DIRENT
569# define HAVE_UNISTD_H
Erik Andersene49d5ec2000-02-08 19:58:47 +0000570# else /* SASC */
Eric Andersencc8ed391999-10-05 16:24:54 +0000571# define NO_STDIN_FSTAT
572# define SYSDIR
573# define NO_SYMLINK
574# define NO_CHOWN
575# define NO_FCNTL_H
Erik Andersene49d5ec2000-02-08 19:58:47 +0000576# include <fcntl.h> /* for read() and write() */
Eric Andersencc8ed391999-10-05 16:24:54 +0000577# define direct dirent
Erik Andersene49d5ec2000-02-08 19:58:47 +0000578extern void _expand_args(int *argc, char ***argv);
579
Eric Andersencc8ed391999-10-05 16:24:54 +0000580# define EXPAND(argc,argv) _expand_args(&argc,&argv);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000581# undef O_BINARY /* disable useless --ascii option */
Eric Andersencc8ed391999-10-05 16:24:54 +0000582# endif
583#endif
584
585#if defined(ATARI) || defined(atarist)
586# ifndef STDC_HEADERS
587# define STDC_HEADERS
588# define HAVE_UNISTD_H
589# define DIRENT
590# endif
591# define ASMV
592# define OS_CODE 0x05
593# ifdef TOSFS
594# define PATH_SEP2 '\\'
595# define PATH_SEP3 ':'
596# define MAX_PATH_LEN 128
597# define NO_MULTIPLE_DOTS
598# define MAX_EXT_CHARS 3
599# define Z_SUFFIX "z"
600# define NO_CHOWN
Erik Andersene49d5ec2000-02-08 19:58:47 +0000601# define casemap(c) tolow(c) /* Force file names to lower case */
Eric Andersencc8ed391999-10-05 16:24:54 +0000602# define NO_SYMLINK
603# endif
604#endif
605
606#ifdef MACOS
607# define PATH_SEP ':'
608# define DYN_ALLOC
609# define PROTO
610# define NO_STDIN_FSTAT
611# define NO_CHOWN
612# define NO_UTIME
613# define chmod(file, mode) (0)
614# define OPEN(name, flags, mode) open(name, flags)
615# define OS_CODE 0x07
616# ifdef MPW
617# define isatty(fd) ((fd) <= 2)
618# endif
619#endif
620
Erik Andersene49d5ec2000-02-08 19:58:47 +0000621#ifdef __50SERIES /* Prime/PRIMOS */
Eric Andersencc8ed391999-10-05 16:24:54 +0000622# define PATH_SEP '>'
623# define STDC_HEADERS
624# define NO_MEMORY_H
625# define NO_UTIME_H
626# define NO_UTIME
Erik Andersene49d5ec2000-02-08 19:58:47 +0000627# define NO_CHOWN
628# define NO_STDIN_FSTAT
629# define NO_SIZE_CHECK
Eric Andersencc8ed391999-10-05 16:24:54 +0000630# define NO_SYMLINK
631# define RECORD_IO 1
Erik Andersene49d5ec2000-02-08 19:58:47 +0000632# define casemap(c) tolow(c) /* Force file names to lower case */
Eric Andersencc8ed391999-10-05 16:24:54 +0000633# define put_char(c) put_byte((c) & 0x7F)
634# define get_char(c) ascii2pascii(get_byte())
Erik Andersene49d5ec2000-02-08 19:58:47 +0000635# define OS_CODE 0x0F /* temporary, subject to change */
Eric Andersencc8ed391999-10-05 16:24:54 +0000636# ifdef SIGTERM
Erik Andersene49d5ec2000-02-08 19:58:47 +0000637# undef SIGTERM /* We don't want a signal handler for SIGTERM */
Eric Andersencc8ed391999-10-05 16:24:54 +0000638# endif
639#endif
640
Erik Andersene49d5ec2000-02-08 19:58:47 +0000641#if defined(pyr) && !defined(NOMEMCPY) /* Pyramid */
642# define NOMEMCPY /* problem with overlapping copies */
Eric Andersencc8ed391999-10-05 16:24:54 +0000643#endif
644
645#ifdef TOPS20
646# define OS_CODE 0x0a
647#endif
648
649#ifndef unix
Erik Andersene49d5ec2000-02-08 19:58:47 +0000650# define NO_ST_INO /* don't rely on inode numbers */
Eric Andersencc8ed391999-10-05 16:24:54 +0000651#endif
652
653
654 /* Common defaults */
655
656#ifndef OS_CODE
Erik Andersene49d5ec2000-02-08 19:58:47 +0000657# define OS_CODE 0x03 /* assume Unix */
Eric Andersencc8ed391999-10-05 16:24:54 +0000658#endif
659
660#ifndef PATH_SEP
661# define PATH_SEP '/'
662#endif
663
664#ifndef casemap
665# define casemap(c) (c)
666#endif
667
668#ifndef OPTIONS_VAR
669# define OPTIONS_VAR "GZIP"
670#endif
671
672#ifndef Z_SUFFIX
673# define Z_SUFFIX ".gz"
674#endif
675
676#ifdef MAX_EXT_CHARS
677# define MAX_SUFFIX MAX_EXT_CHARS
678#else
679# define MAX_SUFFIX 30
680#endif
681
682#ifndef MAKE_LEGAL_NAME
683# ifdef NO_MULTIPLE_DOTS
684# define MAKE_LEGAL_NAME(name) make_simple_name(name)
685# else
686# define MAKE_LEGAL_NAME(name)
687# endif
688#endif
689
690#ifndef MIN_PART
691# define MIN_PART 3
692 /* keep at least MIN_PART chars between dots in a file name. */
693#endif
694
695#ifndef EXPAND
696# define EXPAND(argc,argv)
697#endif
698
699#ifndef RECORD_IO
700# define RECORD_IO 0
701#endif
702
703#ifndef SET_BINARY_MODE
704# define SET_BINARY_MODE(fd)
705#endif
706
707#ifndef OPEN
708# define OPEN(name, flags, mode) open(name, flags, mode)
709#endif
710
711#ifndef get_char
712# define get_char() get_byte()
713#endif
714
715#ifndef put_char
716# define put_char(c) put_byte(c)
717#endif
718/* bits.c -- output variable-length bit strings
719 * Copyright (C) 1992-1993 Jean-loup Gailly
720 * This is free software; you can redistribute it and/or modify it under the
721 * terms of the GNU General Public License, see the file COPYING.
722 */
723
724
725/*
726 * PURPOSE
727 *
728 * Output variable-length bit strings. Compression can be done
729 * to a file or to memory. (The latter is not supported in this version.)
730 *
731 * DISCUSSION
732 *
733 * The PKZIP "deflate" file format interprets compressed file data
734 * as a sequence of bits. Multi-bit strings in the file may cross
735 * byte boundaries without restriction.
736 *
737 * The first bit of each byte is the low-order bit.
738 *
739 * The routines in this file allow a variable-length bit value to
740 * be output right-to-left (useful for literal values). For
741 * left-to-right output (useful for code strings from the tree routines),
742 * the bits must have been reversed first with bi_reverse().
743 *
744 * For in-memory compression, the compressed bit stream goes directly
745 * into the requested output buffer. The input data is read in blocks
746 * by the mem_read() function. The buffer is limited to 64K on 16 bit
747 * machines.
748 *
749 * INTERFACE
750 *
751 * void bi_init (FILE *zipfile)
752 * Initialize the bit string routines.
753 *
754 * void send_bits (int value, int length)
755 * Write out a bit string, taking the source bits right to
756 * left.
757 *
758 * int bi_reverse (int value, int length)
759 * Reverse the bits of a bit string, taking the source bits left to
760 * right and emitting them right to left.
761 *
762 * void bi_windup (void)
763 * Write out any remaining bits in an incomplete byte.
764 *
765 * void copy_block(char *buf, unsigned len, int header)
766 * Copy a stored block to the zip file, storing first the length and
767 * its one's complement if requested.
768 *
769 */
770
771#ifdef DEBUG
772# include <stdio.h>
773#endif
774
Eric Andersencc8ed391999-10-05 16:24:54 +0000775/* ===========================================================================
776 * Local data used by the "bit string" routines.
777 */
778
Erik Andersene49d5ec2000-02-08 19:58:47 +0000779local file_t zfile; /* output gzip file */
Eric Andersencc8ed391999-10-05 16:24:54 +0000780
781local unsigned short bi_buf;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000782
Eric Andersencc8ed391999-10-05 16:24:54 +0000783/* Output buffer. bits are inserted starting at the bottom (least significant
784 * bits).
785 */
786
787#define Buf_size (8 * 2*sizeof(char))
788/* Number of bits used within bi_buf. (bi_buf might be implemented on
789 * more than 16 bits on some systems.)
790 */
791
792local int bi_valid;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000793
Eric Andersencc8ed391999-10-05 16:24:54 +0000794/* Number of valid bits in bi_buf. All bits above the last valid bit
795 * are always zero.
796 */
797
Erik Andersen61677fe2000-04-13 01:18:56 +0000798int (*read_buf) (char *buf, unsigned size);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000799
Eric Andersencc8ed391999-10-05 16:24:54 +0000800/* Current input function. Set to mem_read for in-memory compression */
801
802#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000803ulg bits_sent; /* bit length of the compressed data */
Eric Andersencc8ed391999-10-05 16:24:54 +0000804#endif
805
806/* ===========================================================================
807 * Initialize the bit string routines.
808 */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000809void bi_init(zipfile)
810file_t zipfile; /* output zip file, NO_FILE for in-memory compression */
Eric Andersencc8ed391999-10-05 16:24:54 +0000811{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000812 zfile = zipfile;
813 bi_buf = 0;
814 bi_valid = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +0000815#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000816 bits_sent = 0L;
Eric Andersencc8ed391999-10-05 16:24:54 +0000817#endif
818
Erik Andersene49d5ec2000-02-08 19:58:47 +0000819 /* Set the defaults for file compression. They are set by memcompress
820 * for in-memory compression.
821 */
822 if (zfile != NO_FILE) {
823 read_buf = file_read;
824 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000825}
826
827/* ===========================================================================
828 * Send a value on a given number of bits.
829 * IN assertion: length <= 16 and value fits in length bits.
830 */
831void send_bits(value, length)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000832int value; /* value to send */
833int length; /* number of bits */
Eric Andersencc8ed391999-10-05 16:24:54 +0000834{
835#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000836 Tracev((stderr, " l %2d v %4x ", length, value));
837 Assert(length > 0 && length <= 15, "invalid length");
838 bits_sent += (ulg) length;
Eric Andersencc8ed391999-10-05 16:24:54 +0000839#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000840 /* If not enough room in bi_buf, use (valid) bits from bi_buf and
841 * (16 - bi_valid) bits from value, leaving (width - (16-bi_valid))
842 * unused bits in value.
843 */
844 if (bi_valid > (int) Buf_size - length) {
845 bi_buf |= (value << bi_valid);
846 put_short(bi_buf);
847 bi_buf = (ush) value >> (Buf_size - bi_valid);
848 bi_valid += length - Buf_size;
849 } else {
850 bi_buf |= value << bi_valid;
851 bi_valid += length;
852 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000853}
854
855/* ===========================================================================
856 * Reverse the first len bits of a code, using straightforward code (a faster
857 * method would use a table)
858 * IN assertion: 1 <= len <= 15
859 */
860unsigned bi_reverse(code, len)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000861unsigned code; /* the value to invert */
862int len; /* its bit length */
Eric Andersencc8ed391999-10-05 16:24:54 +0000863{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000864 register unsigned res = 0;
865
866 do {
867 res |= code & 1;
868 code >>= 1, res <<= 1;
869 } while (--len > 0);
870 return res >> 1;
Eric Andersencc8ed391999-10-05 16:24:54 +0000871}
872
873/* ===========================================================================
874 * Write out any remaining bits in an incomplete byte.
875 */
876void bi_windup()
877{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000878 if (bi_valid > 8) {
879 put_short(bi_buf);
880 } else if (bi_valid > 0) {
881 put_byte(bi_buf);
882 }
883 bi_buf = 0;
884 bi_valid = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +0000885#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000886 bits_sent = (bits_sent + 7) & ~7;
Eric Andersencc8ed391999-10-05 16:24:54 +0000887#endif
888}
889
890/* ===========================================================================
891 * Copy a stored block to the zip file, storing first the length and its
892 * one's complement if requested.
893 */
894void copy_block(buf, len, header)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000895char *buf; /* the input data */
896unsigned len; /* its length */
897int header; /* true if block header must be written */
Eric Andersencc8ed391999-10-05 16:24:54 +0000898{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000899 bi_windup(); /* align on byte boundary */
Eric Andersencc8ed391999-10-05 16:24:54 +0000900
Erik Andersene49d5ec2000-02-08 19:58:47 +0000901 if (header) {
902 put_short((ush) len);
903 put_short((ush) ~ len);
Eric Andersencc8ed391999-10-05 16:24:54 +0000904#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000905 bits_sent += 2 * 16;
Eric Andersencc8ed391999-10-05 16:24:54 +0000906#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000907 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000908#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000909 bits_sent += (ulg) len << 3;
Eric Andersencc8ed391999-10-05 16:24:54 +0000910#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000911 while (len--) {
Eric Andersencc8ed391999-10-05 16:24:54 +0000912#ifdef CRYPT
Erik Andersene49d5ec2000-02-08 19:58:47 +0000913 int t;
914
915 if (key)
916 zencode(*buf, t);
Eric Andersencc8ed391999-10-05 16:24:54 +0000917#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000918 put_byte(*buf++);
919 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000920}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000921
Eric Andersencc8ed391999-10-05 16:24:54 +0000922/* deflate.c -- compress data using the deflation algorithm
923 * Copyright (C) 1992-1993 Jean-loup Gailly
924 * This is free software; you can redistribute it and/or modify it under the
925 * terms of the GNU General Public License, see the file COPYING.
926 */
927
928/*
929 * PURPOSE
930 *
931 * Identify new text as repetitions of old text within a fixed-
932 * length sliding window trailing behind the new text.
933 *
934 * DISCUSSION
935 *
936 * The "deflation" process depends on being able to identify portions
937 * of the input text which are identical to earlier input (within a
938 * sliding window trailing behind the input currently being processed).
939 *
940 * The most straightforward technique turns out to be the fastest for
941 * most input files: try all possible matches and select the longest.
942 * The key feature of this algorithm is that insertions into the string
943 * dictionary are very simple and thus fast, and deletions are avoided
944 * completely. Insertions are performed at each input character, whereas
945 * string matches are performed only when the previous match ends. So it
946 * is preferable to spend more time in matches to allow very fast string
947 * insertions and avoid deletions. The matching algorithm for small
948 * strings is inspired from that of Rabin & Karp. A brute force approach
949 * is used to find longer strings when a small match has been found.
950 * A similar algorithm is used in comic (by Jan-Mark Wams) and freeze
951 * (by Leonid Broukhis).
952 * A previous version of this file used a more sophisticated algorithm
953 * (by Fiala and Greene) which is guaranteed to run in linear amortized
954 * time, but has a larger average cost, uses more memory and is patented.
955 * However the F&G algorithm may be faster for some highly redundant
956 * files if the parameter max_chain_length (described below) is too large.
957 *
958 * ACKNOWLEDGEMENTS
959 *
960 * The idea of lazy evaluation of matches is due to Jan-Mark Wams, and
961 * I found it in 'freeze' written by Leonid Broukhis.
962 * Thanks to many info-zippers for bug reports and testing.
963 *
964 * REFERENCES
965 *
966 * APPNOTE.TXT documentation file in PKZIP 1.93a distribution.
967 *
968 * A description of the Rabin and Karp algorithm is given in the book
969 * "Algorithms" by R. Sedgewick, Addison-Wesley, p252.
970 *
971 * Fiala,E.R., and Greene,D.H.
972 * Data Compression with Finite Windows, Comm.ACM, 32,4 (1989) 490-595
973 *
974 * INTERFACE
975 *
976 * void lm_init (int pack_level, ush *flags)
977 * Initialize the "longest match" routines for a new file
978 *
979 * ulg deflate (void)
980 * Processes a new input file and return its compressed length. Sets
981 * the compressed length, crc, deflate flags and internal file
982 * attributes.
983 */
984
985#include <stdio.h>
986
Eric Andersencc8ed391999-10-05 16:24:54 +0000987/* ===========================================================================
988 * Configuration parameters
989 */
990
991/* Compile with MEDIUM_MEM to reduce the memory requirements or
992 * with SMALL_MEM to use as little memory as possible. Use BIG_MEM if the
993 * entire input file can be held in memory (not possible on 16 bit systems).
994 * Warning: defining these symbols affects HASH_BITS (see below) and thus
995 * affects the compression ratio. The compressed output
996 * is still correct, and might even be smaller in some cases.
997 */
998
999#ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +00001000# define HASH_BITS 13 /* Number of bits used to hash strings */
Eric Andersencc8ed391999-10-05 16:24:54 +00001001#endif
1002#ifdef MEDIUM_MEM
1003# define HASH_BITS 14
1004#endif
1005#ifndef HASH_BITS
1006# define HASH_BITS 15
1007 /* For portability to 16 bit machines, do not use values above 15. */
1008#endif
1009
1010/* To save space (see unlzw.c), we overlay prev+head with tab_prefix and
1011 * window with tab_suffix. Check that we can do this:
1012 */
1013#if (WSIZE<<1) > (1<<BITS)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001014error:cannot overlay window with tab_suffix and prev with tab_prefix0
Eric Andersencc8ed391999-10-05 16:24:54 +00001015#endif
1016#if HASH_BITS > BITS-1
Erik Andersene49d5ec2000-02-08 19:58:47 +00001017error:cannot overlay head with tab_prefix1
Eric Andersencc8ed391999-10-05 16:24:54 +00001018#endif
Eric Andersencc8ed391999-10-05 16:24:54 +00001019#define HASH_SIZE (unsigned)(1<<HASH_BITS)
1020#define HASH_MASK (HASH_SIZE-1)
1021#define WMASK (WSIZE-1)
1022/* HASH_SIZE and WSIZE must be powers of two */
Eric Andersencc8ed391999-10-05 16:24:54 +00001023#define NIL 0
1024/* Tail of hash chains */
Eric Andersencc8ed391999-10-05 16:24:54 +00001025#define FAST 4
1026#define SLOW 2
1027/* speed options for the general purpose bit flag */
Eric Andersencc8ed391999-10-05 16:24:54 +00001028#ifndef TOO_FAR
1029# define TOO_FAR 4096
1030#endif
1031/* Matches of length 3 are discarded if their distance exceeds TOO_FAR */
Eric Andersencc8ed391999-10-05 16:24:54 +00001032/* ===========================================================================
1033 * Local data used by the "longest match" routines.
1034 */
Eric Andersencc8ed391999-10-05 16:24:54 +00001035typedef ush Pos;
1036typedef unsigned IPos;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001037
Eric Andersencc8ed391999-10-05 16:24:54 +00001038/* A Pos is an index in the character window. We use short instead of int to
1039 * save space in the various tables. IPos is used only for parameter passing.
1040 */
1041
1042/* DECLARE(uch, window, 2L*WSIZE); */
1043/* Sliding window. Input bytes are read into the second half of the window,
1044 * and move to the first half later to keep a dictionary of at least WSIZE
1045 * bytes. With this organization, matches are limited to a distance of
1046 * WSIZE-MAX_MATCH bytes, but this ensures that IO is always
1047 * performed with a length multiple of the block size. Also, it limits
1048 * the window size to 64K, which is quite useful on MSDOS.
1049 * To do: limit the window size to WSIZE+BSZ if SMALL_MEM (the code would
1050 * be less efficient).
1051 */
1052
1053/* DECLARE(Pos, prev, WSIZE); */
1054/* Link to older string with same hash index. To limit the size of this
1055 * array to 64K, this link is maintained only for the last 32K strings.
1056 * An index in this array is thus a window index modulo 32K.
1057 */
1058
1059/* DECLARE(Pos, head, 1<<HASH_BITS); */
1060/* Heads of the hash chains or NIL. */
1061
Erik Andersene49d5ec2000-02-08 19:58:47 +00001062ulg window_size = (ulg) 2 * WSIZE;
1063
Eric Andersencc8ed391999-10-05 16:24:54 +00001064/* window size, 2*WSIZE except for MMAP or BIG_MEM, where it is the
1065 * input file length plus MIN_LOOKAHEAD.
1066 */
1067
1068long block_start;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001069
Eric Andersencc8ed391999-10-05 16:24:54 +00001070/* window position at the beginning of the current output block. Gets
1071 * negative when the window is moved backwards.
1072 */
1073
Erik Andersene49d5ec2000-02-08 19:58:47 +00001074local unsigned ins_h; /* hash index of string to be inserted */
Eric Andersencc8ed391999-10-05 16:24:54 +00001075
1076#define H_SHIFT ((HASH_BITS+MIN_MATCH-1)/MIN_MATCH)
1077/* Number of bits by which ins_h and del_h must be shifted at each
1078 * input step. It must be such that after MIN_MATCH steps, the oldest
1079 * byte no longer takes part in the hash key, that is:
1080 * H_SHIFT * MIN_MATCH >= HASH_BITS
1081 */
1082
1083unsigned int near prev_length;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001084
Eric Andersencc8ed391999-10-05 16:24:54 +00001085/* Length of the best match at previous step. Matches not greater than this
1086 * are discarded. This is used in the lazy match evaluation.
1087 */
1088
Erik Andersene49d5ec2000-02-08 19:58:47 +00001089unsigned near strstart; /* start of string to insert */
1090unsigned near match_start; /* start of matching string */
1091local int eofile; /* flag set at end of input file */
1092local unsigned lookahead; /* number of valid bytes ahead in window */
Eric Andersencc8ed391999-10-05 16:24:54 +00001093
1094unsigned near max_chain_length;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001095
Eric Andersencc8ed391999-10-05 16:24:54 +00001096/* To speed up deflation, hash chains are never searched beyond this length.
1097 * A higher limit improves compression ratio but degrades the speed.
1098 */
1099
1100local unsigned int max_lazy_match;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001101
Eric Andersencc8ed391999-10-05 16:24:54 +00001102/* Attempt to find a better match only when the current match is strictly
1103 * smaller than this value. This mechanism is used only for compression
1104 * levels >= 4.
1105 */
1106#define max_insert_length max_lazy_match
1107/* Insert new strings in the hash table only if the match length
1108 * is not greater than this length. This saves time but degrades compression.
1109 * max_insert_length is used only for compression levels <= 3.
1110 */
1111
1112unsigned near good_match;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001113
Eric Andersencc8ed391999-10-05 16:24:54 +00001114/* Use a faster search when the previous match is longer than this */
1115
1116
1117/* Values for max_lazy_match, good_match and max_chain_length, depending on
1118 * the desired pack level (0..9). The values given below have been tuned to
1119 * exclude worst case performance for pathological files. Better values may be
1120 * found for specific files.
1121 */
1122
1123typedef struct config {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001124 ush good_length; /* reduce lazy search above this match length */
1125 ush max_lazy; /* do not perform lazy search above this match length */
1126 ush nice_length; /* quit search above this match length */
1127 ush max_chain;
Eric Andersencc8ed391999-10-05 16:24:54 +00001128} config;
1129
1130#ifdef FULL_SEARCH
1131# define nice_match MAX_MATCH
1132#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001133int near nice_match; /* Stop searching when current match exceeds this */
Eric Andersencc8ed391999-10-05 16:24:54 +00001134#endif
1135
Erik Andersene49d5ec2000-02-08 19:58:47 +00001136local config configuration_table =
1137 /* 9 */ { 32, 258, 258, 4096 };
1138 /* maximum compression */
Eric Andersencc8ed391999-10-05 16:24:54 +00001139
1140/* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
1141 * For deflate_fast() (levels <= 3) good is ignored and lazy has a different
1142 * meaning.
1143 */
1144
1145#define EQUAL 0
1146/* result of memcmp for equal strings */
1147
1148/* ===========================================================================
1149 * Prototypes for local functions.
1150 */
Erik Andersen61677fe2000-04-13 01:18:56 +00001151local void fill_window (void);
Eric Andersencc8ed391999-10-05 16:24:54 +00001152
Erik Andersen61677fe2000-04-13 01:18:56 +00001153int longest_match (IPos cur_match);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001154
Eric Andersencc8ed391999-10-05 16:24:54 +00001155#ifdef ASMV
Erik Andersen61677fe2000-04-13 01:18:56 +00001156void match_init (void); /* asm code initialization */
Eric Andersencc8ed391999-10-05 16:24:54 +00001157#endif
1158
1159#ifdef DEBUG
Erik Andersen61677fe2000-04-13 01:18:56 +00001160local void check_match (IPos start, IPos match, int length);
Eric Andersencc8ed391999-10-05 16:24:54 +00001161#endif
1162
1163/* ===========================================================================
1164 * Update a hash value with the given input byte
1165 * IN assertion: all calls to to UPDATE_HASH are made with consecutive
1166 * input characters, so that a running hash key can be computed from the
1167 * previous key instead of complete recalculation each time.
1168 */
1169#define UPDATE_HASH(h,c) (h = (((h)<<H_SHIFT) ^ (c)) & HASH_MASK)
1170
1171/* ===========================================================================
1172 * Insert string s in the dictionary and set match_head to the previous head
1173 * of the hash chain (the most recent string with same hash key). Return
1174 * the previous length of the hash chain.
1175 * IN assertion: all calls to to INSERT_STRING are made with consecutive
1176 * input characters and the first MIN_MATCH bytes of s are valid
1177 * (except for the last MIN_MATCH-1 bytes of the input file).
1178 */
1179#define INSERT_STRING(s, match_head) \
1180 (UPDATE_HASH(ins_h, window[(s) + MIN_MATCH-1]), \
1181 prev[(s) & WMASK] = match_head = head[ins_h], \
1182 head[ins_h] = (s))
1183
1184/* ===========================================================================
1185 * Initialize the "longest match" routines for a new file
1186 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001187void lm_init(flags)
1188ush *flags; /* general purpose bit flag */
Eric Andersencc8ed391999-10-05 16:24:54 +00001189{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001190 register unsigned j;
Eric Andersencc8ed391999-10-05 16:24:54 +00001191
Erik Andersene49d5ec2000-02-08 19:58:47 +00001192 /* Initialize the hash table. */
Eric Andersencc8ed391999-10-05 16:24:54 +00001193#if defined(MAXSEG_64K) && HASH_BITS == 15
Erik Andersene49d5ec2000-02-08 19:58:47 +00001194 for (j = 0; j < HASH_SIZE; j++)
1195 head[j] = NIL;
Eric Andersencc8ed391999-10-05 16:24:54 +00001196#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001197 memzero((char *) head, HASH_SIZE * sizeof(*head));
Eric Andersencc8ed391999-10-05 16:24:54 +00001198#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00001199 /* prev will be initialized on the fly */
Eric Andersencc8ed391999-10-05 16:24:54 +00001200
Erik Andersene49d5ec2000-02-08 19:58:47 +00001201 /* Set the default configuration parameters:
1202 */
1203 max_lazy_match = configuration_table.max_lazy;
1204 good_match = configuration_table.good_length;
Eric Andersencc8ed391999-10-05 16:24:54 +00001205#ifndef FULL_SEARCH
Erik Andersene49d5ec2000-02-08 19:58:47 +00001206 nice_match = configuration_table.nice_length;
Eric Andersencc8ed391999-10-05 16:24:54 +00001207#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00001208 max_chain_length = configuration_table.max_chain;
1209 *flags |= SLOW;
1210 /* ??? reduce max_chain_length for binary files */
Eric Andersencc8ed391999-10-05 16:24:54 +00001211
Erik Andersene49d5ec2000-02-08 19:58:47 +00001212 strstart = 0;
1213 block_start = 0L;
Eric Andersencc8ed391999-10-05 16:24:54 +00001214#ifdef ASMV
Erik Andersene49d5ec2000-02-08 19:58:47 +00001215 match_init(); /* initialize the asm code */
Eric Andersencc8ed391999-10-05 16:24:54 +00001216#endif
1217
Erik Andersene49d5ec2000-02-08 19:58:47 +00001218 lookahead = read_buf((char *) window,
1219 sizeof(int) <= 2 ? (unsigned) WSIZE : 2 * WSIZE);
Eric Andersencc8ed391999-10-05 16:24:54 +00001220
Erik Andersene49d5ec2000-02-08 19:58:47 +00001221 if (lookahead == 0 || lookahead == (unsigned) EOF) {
1222 eofile = 1, lookahead = 0;
1223 return;
1224 }
1225 eofile = 0;
1226 /* Make sure that we always have enough lookahead. This is important
1227 * if input comes from a device such as a tty.
1228 */
1229 while (lookahead < MIN_LOOKAHEAD && !eofile)
1230 fill_window();
Eric Andersencc8ed391999-10-05 16:24:54 +00001231
Erik Andersene49d5ec2000-02-08 19:58:47 +00001232 ins_h = 0;
1233 for (j = 0; j < MIN_MATCH - 1; j++)
1234 UPDATE_HASH(ins_h, window[j]);
1235 /* If lookahead < MIN_MATCH, ins_h is garbage, but this is
1236 * not important since only literal bytes will be emitted.
1237 */
Eric Andersencc8ed391999-10-05 16:24:54 +00001238}
1239
1240/* ===========================================================================
1241 * Set match_start to the longest match starting at the given string and
1242 * return its length. Matches shorter or equal to prev_length are discarded,
1243 * in which case the result is equal to prev_length and match_start is
1244 * garbage.
1245 * IN assertions: cur_match is the head of the hash chain for the current
1246 * string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1
1247 */
1248#ifndef ASMV
1249/* For MSDOS, OS/2 and 386 Unix, an optimized version is in match.asm or
1250 * match.s. The code is functionally equivalent, so you can use the C version
1251 * if desired.
1252 */
1253int longest_match(cur_match)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001254IPos cur_match; /* current match */
Eric Andersencc8ed391999-10-05 16:24:54 +00001255{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001256 unsigned chain_length = max_chain_length; /* max hash chain length */
1257 register uch *scan = window + strstart; /* current string */
1258 register uch *match; /* matched string */
1259 register int len; /* length of current match */
1260 int best_len = prev_length; /* best match length so far */
1261 IPos limit =
1262
1263 strstart > (IPos) MAX_DIST ? strstart - (IPos) MAX_DIST : NIL;
1264 /* Stop when cur_match becomes <= limit. To simplify the code,
1265 * we prevent matches with the string of window index 0.
1266 */
Eric Andersencc8ed391999-10-05 16:24:54 +00001267
1268/* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
1269 * It is easy to get rid of this optimization if necessary.
1270 */
1271#if HASH_BITS < 8 || MAX_MATCH != 258
Erik Andersene49d5ec2000-02-08 19:58:47 +00001272 error:Code too clever
Eric Andersencc8ed391999-10-05 16:24:54 +00001273#endif
Eric Andersencc8ed391999-10-05 16:24:54 +00001274#ifdef UNALIGNED_OK
Erik Andersene49d5ec2000-02-08 19:58:47 +00001275 /* Compare two bytes at a time. Note: this is not always beneficial.
1276 * Try with and without -DUNALIGNED_OK to check.
1277 */
1278 register uch *strend = window + strstart + MAX_MATCH - 1;
1279 register ush scan_start = *(ush *) scan;
1280 register ush scan_end = *(ush *) (scan + best_len - 1);
Eric Andersencc8ed391999-10-05 16:24:54 +00001281#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001282 register uch *strend = window + strstart + MAX_MATCH;
1283 register uch scan_end1 = scan[best_len - 1];
1284 register uch scan_end = scan[best_len];
Eric Andersencc8ed391999-10-05 16:24:54 +00001285#endif
1286
Erik Andersene49d5ec2000-02-08 19:58:47 +00001287 /* Do not waste too much time if we already have a good match: */
1288 if (prev_length >= good_match) {
1289 chain_length >>= 2;
1290 }
1291 Assert(strstart <= window_size - MIN_LOOKAHEAD,
1292 "insufficient lookahead");
Eric Andersencc8ed391999-10-05 16:24:54 +00001293
Erik Andersene49d5ec2000-02-08 19:58:47 +00001294 do {
1295 Assert(cur_match < strstart, "no future");
1296 match = window + cur_match;
Eric Andersencc8ed391999-10-05 16:24:54 +00001297
Erik Andersene49d5ec2000-02-08 19:58:47 +00001298 /* Skip to next match if the match length cannot increase
1299 * or if the match length is less than 2:
1300 */
Eric Andersencc8ed391999-10-05 16:24:54 +00001301#if (defined(UNALIGNED_OK) && MAX_MATCH == 258)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001302 /* This code assumes sizeof(unsigned short) == 2. Do not use
1303 * UNALIGNED_OK if your compiler uses a different size.
1304 */
1305 if (*(ush *) (match + best_len - 1) != scan_end ||
1306 *(ush *) match != scan_start)
1307 continue;
Eric Andersencc8ed391999-10-05 16:24:54 +00001308
Erik Andersene49d5ec2000-02-08 19:58:47 +00001309 /* It is not necessary to compare scan[2] and match[2] since they are
1310 * always equal when the other bytes match, given that the hash keys
1311 * are equal and that HASH_BITS >= 8. Compare 2 bytes at a time at
1312 * strstart+3, +5, ... up to strstart+257. We check for insufficient
1313 * lookahead only every 4th comparison; the 128th check will be made
1314 * at strstart+257. If MAX_MATCH-2 is not a multiple of 8, it is
1315 * necessary to put more guard bytes at the end of the window, or
1316 * to check more often for insufficient lookahead.
1317 */
1318 scan++, match++;
1319 do {
1320 } while (*(ush *) (scan += 2) == *(ush *) (match += 2) &&
1321 *(ush *) (scan += 2) == *(ush *) (match += 2) &&
1322 *(ush *) (scan += 2) == *(ush *) (match += 2) &&
1323 *(ush *) (scan += 2) == *(ush *) (match += 2) &&
1324 scan < strend);
1325 /* The funny "do {}" generates better code on most compilers */
Eric Andersencc8ed391999-10-05 16:24:54 +00001326
Erik Andersene49d5ec2000-02-08 19:58:47 +00001327 /* Here, scan <= window+strstart+257 */
1328 Assert(scan <= window + (unsigned) (window_size - 1), "wild scan");
1329 if (*scan == *match)
1330 scan++;
Eric Andersencc8ed391999-10-05 16:24:54 +00001331
Erik Andersene49d5ec2000-02-08 19:58:47 +00001332 len = (MAX_MATCH - 1) - (int) (strend - scan);
1333 scan = strend - (MAX_MATCH - 1);
Eric Andersencc8ed391999-10-05 16:24:54 +00001334
Erik Andersene49d5ec2000-02-08 19:58:47 +00001335#else /* UNALIGNED_OK */
Eric Andersencc8ed391999-10-05 16:24:54 +00001336
Erik Andersene49d5ec2000-02-08 19:58:47 +00001337 if (match[best_len] != scan_end ||
1338 match[best_len - 1] != scan_end1 ||
1339 *match != *scan || *++match != scan[1])
1340 continue;
Eric Andersencc8ed391999-10-05 16:24:54 +00001341
Erik Andersene49d5ec2000-02-08 19:58:47 +00001342 /* The check at best_len-1 can be removed because it will be made
1343 * again later. (This heuristic is not always a win.)
1344 * It is not necessary to compare scan[2] and match[2] since they
1345 * are always equal when the other bytes match, given that
1346 * the hash keys are equal and that HASH_BITS >= 8.
1347 */
1348 scan += 2, match++;
Eric Andersencc8ed391999-10-05 16:24:54 +00001349
Erik Andersene49d5ec2000-02-08 19:58:47 +00001350 /* We check for insufficient lookahead only every 8th comparison;
1351 * the 256th check will be made at strstart+258.
1352 */
1353 do {
1354 } while (*++scan == *++match && *++scan == *++match &&
1355 *++scan == *++match && *++scan == *++match &&
1356 *++scan == *++match && *++scan == *++match &&
1357 *++scan == *++match && *++scan == *++match &&
1358 scan < strend);
Eric Andersencc8ed391999-10-05 16:24:54 +00001359
Erik Andersene49d5ec2000-02-08 19:58:47 +00001360 len = MAX_MATCH - (int) (strend - scan);
1361 scan = strend - MAX_MATCH;
Eric Andersencc8ed391999-10-05 16:24:54 +00001362
Erik Andersene49d5ec2000-02-08 19:58:47 +00001363#endif /* UNALIGNED_OK */
Eric Andersencc8ed391999-10-05 16:24:54 +00001364
Erik Andersene49d5ec2000-02-08 19:58:47 +00001365 if (len > best_len) {
1366 match_start = cur_match;
1367 best_len = len;
1368 if (len >= nice_match)
1369 break;
Eric Andersencc8ed391999-10-05 16:24:54 +00001370#ifdef UNALIGNED_OK
Erik Andersene49d5ec2000-02-08 19:58:47 +00001371 scan_end = *(ush *) (scan + best_len - 1);
Eric Andersencc8ed391999-10-05 16:24:54 +00001372#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001373 scan_end1 = scan[best_len - 1];
1374 scan_end = scan[best_len];
Eric Andersencc8ed391999-10-05 16:24:54 +00001375#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00001376 }
1377 } while ((cur_match = prev[cur_match & WMASK]) > limit
1378 && --chain_length != 0);
Eric Andersencc8ed391999-10-05 16:24:54 +00001379
Erik Andersene49d5ec2000-02-08 19:58:47 +00001380 return best_len;
Eric Andersencc8ed391999-10-05 16:24:54 +00001381}
Erik Andersene49d5ec2000-02-08 19:58:47 +00001382#endif /* ASMV */
Eric Andersencc8ed391999-10-05 16:24:54 +00001383
1384#ifdef DEBUG
1385/* ===========================================================================
1386 * Check that the match at match_start is indeed a match.
1387 */
1388local void check_match(start, match, length)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001389IPos start, match;
1390int length;
Eric Andersencc8ed391999-10-05 16:24:54 +00001391{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001392 /* check that the match is indeed a match */
1393 if (memcmp((char *) window + match,
1394 (char *) window + start, length) != EQUAL) {
1395 fprintf(stderr,
1396 " start %d, match %d, length %d\n", start, match, length);
Erik Andersen9ffdaa62000-02-11 21:55:04 +00001397 errorMsg("invalid match");
Erik Andersene49d5ec2000-02-08 19:58:47 +00001398 }
1399 if (verbose > 1) {
1400 fprintf(stderr, "\\[%d,%d]", start - match, length);
1401 do {
1402 putc(window[start++], stderr);
1403 } while (--length != 0);
1404 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001405}
1406#else
1407# define check_match(start, match, length)
1408#endif
1409
1410/* ===========================================================================
1411 * Fill the window when the lookahead becomes insufficient.
1412 * Updates strstart and lookahead, and sets eofile if end of input file.
1413 * IN assertion: lookahead < MIN_LOOKAHEAD && strstart + lookahead > 0
1414 * OUT assertions: at least one byte has been read, or eofile is set;
1415 * file reads are performed for at least two bytes (required for the
1416 * translate_eol option).
1417 */
1418local void fill_window()
1419{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001420 register unsigned n, m;
1421 unsigned more =
Eric Andersencc8ed391999-10-05 16:24:54 +00001422
Erik Andersene49d5ec2000-02-08 19:58:47 +00001423 (unsigned) (window_size - (ulg) lookahead - (ulg) strstart);
1424 /* Amount of free space at the end of the window. */
Eric Andersencc8ed391999-10-05 16:24:54 +00001425
Erik Andersene49d5ec2000-02-08 19:58:47 +00001426 /* If the window is almost full and there is insufficient lookahead,
1427 * move the upper half to the lower one to make room in the upper half.
1428 */
1429 if (more == (unsigned) EOF) {
1430 /* Very unlikely, but possible on 16 bit machine if strstart == 0
1431 * and lookahead == 1 (input done one byte at time)
1432 */
1433 more--;
1434 } else if (strstart >= WSIZE + MAX_DIST) {
1435 /* By the IN assertion, the window is not empty so we can't confuse
1436 * more == 0 with more == 64K on a 16 bit machine.
1437 */
1438 Assert(window_size == (ulg) 2 * WSIZE, "no sliding with BIG_MEM");
Eric Andersencc8ed391999-10-05 16:24:54 +00001439
Erik Andersene49d5ec2000-02-08 19:58:47 +00001440 memcpy((char *) window, (char *) window + WSIZE, (unsigned) WSIZE);
1441 match_start -= WSIZE;
1442 strstart -= WSIZE; /* we now have strstart >= MAX_DIST: */
Eric Andersencc8ed391999-10-05 16:24:54 +00001443
Erik Andersene49d5ec2000-02-08 19:58:47 +00001444 block_start -= (long) WSIZE;
1445
1446 for (n = 0; n < HASH_SIZE; n++) {
1447 m = head[n];
1448 head[n] = (Pos) (m >= WSIZE ? m - WSIZE : NIL);
1449 }
1450 for (n = 0; n < WSIZE; n++) {
1451 m = prev[n];
1452 prev[n] = (Pos) (m >= WSIZE ? m - WSIZE : NIL);
1453 /* If n is not on any hash chain, prev[n] is garbage but
1454 * its value will never be used.
1455 */
1456 }
1457 more += WSIZE;
1458 }
1459 /* At this point, more >= 2 */
1460 if (!eofile) {
1461 n = read_buf((char *) window + strstart + lookahead, more);
1462 if (n == 0 || n == (unsigned) EOF) {
1463 eofile = 1;
1464 } else {
1465 lookahead += n;
1466 }
1467 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001468}
1469
1470/* ===========================================================================
1471 * Flush the current block, with given end-of-file flag.
1472 * IN assertion: strstart is set to the end of the current match.
1473 */
1474#define FLUSH_BLOCK(eof) \
1475 flush_block(block_start >= 0L ? (char*)&window[(unsigned)block_start] : \
1476 (char*)NULL, (long)strstart - block_start, (eof))
1477
1478/* ===========================================================================
1479 * Same as above, but achieves better compression. We use a lazy
1480 * evaluation for matches: a match is finally adopted only if there is
1481 * no better match at the next window position.
1482 */
1483ulg deflate()
1484{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001485 IPos hash_head; /* head of hash chain */
1486 IPos prev_match; /* previous match */
1487 int flush; /* set if current block must be flushed */
1488 int match_available = 0; /* set if previous match exists */
1489 register unsigned match_length = MIN_MATCH - 1; /* length of best match */
1490
Eric Andersencc8ed391999-10-05 16:24:54 +00001491#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +00001492 extern long isize; /* byte length of input file, for debug only */
Eric Andersencc8ed391999-10-05 16:24:54 +00001493#endif
1494
Erik Andersene49d5ec2000-02-08 19:58:47 +00001495 /* Process the input block. */
1496 while (lookahead != 0) {
1497 /* Insert the string window[strstart .. strstart+2] in the
1498 * dictionary, and set hash_head to the head of the hash chain:
1499 */
1500 INSERT_STRING(strstart, hash_head);
Eric Andersencc8ed391999-10-05 16:24:54 +00001501
Erik Andersene49d5ec2000-02-08 19:58:47 +00001502 /* Find the longest match, discarding those <= prev_length.
1503 */
1504 prev_length = match_length, prev_match = match_start;
1505 match_length = MIN_MATCH - 1;
Eric Andersencc8ed391999-10-05 16:24:54 +00001506
Erik Andersene49d5ec2000-02-08 19:58:47 +00001507 if (hash_head != NIL && prev_length < max_lazy_match &&
1508 strstart - hash_head <= MAX_DIST) {
1509 /* To simplify the code, we prevent matches with the string
1510 * of window index 0 (in particular we have to avoid a match
1511 * of the string with itself at the start of the input file).
1512 */
1513 match_length = longest_match(hash_head);
1514 /* longest_match() sets match_start */
1515 if (match_length > lookahead)
1516 match_length = lookahead;
Eric Andersencc8ed391999-10-05 16:24:54 +00001517
Erik Andersene49d5ec2000-02-08 19:58:47 +00001518 /* Ignore a length 3 match if it is too distant: */
1519 if (match_length == MIN_MATCH
1520 && strstart - match_start > TOO_FAR) {
1521 /* If prev_match is also MIN_MATCH, match_start is garbage
1522 * but we will ignore the current match anyway.
1523 */
1524 match_length--;
1525 }
1526 }
1527 /* If there was a match at the previous step and the current
1528 * match is not better, output the previous match:
1529 */
1530 if (prev_length >= MIN_MATCH && match_length <= prev_length) {
Eric Andersencc8ed391999-10-05 16:24:54 +00001531
Erik Andersene49d5ec2000-02-08 19:58:47 +00001532 check_match(strstart - 1, prev_match, prev_length);
Eric Andersencc8ed391999-10-05 16:24:54 +00001533
Erik Andersene49d5ec2000-02-08 19:58:47 +00001534 flush =
1535 ct_tally(strstart - 1 - prev_match,
1536 prev_length - MIN_MATCH);
Eric Andersencc8ed391999-10-05 16:24:54 +00001537
Erik Andersene49d5ec2000-02-08 19:58:47 +00001538 /* Insert in hash table all strings up to the end of the match.
1539 * strstart-1 and strstart are already inserted.
1540 */
1541 lookahead -= prev_length - 1;
1542 prev_length -= 2;
1543 do {
1544 strstart++;
1545 INSERT_STRING(strstart, hash_head);
1546 /* strstart never exceeds WSIZE-MAX_MATCH, so there are
1547 * always MIN_MATCH bytes ahead. If lookahead < MIN_MATCH
1548 * these bytes are garbage, but it does not matter since the
1549 * next lookahead bytes will always be emitted as literals.
1550 */
1551 } while (--prev_length != 0);
1552 match_available = 0;
1553 match_length = MIN_MATCH - 1;
1554 strstart++;
1555 if (flush)
1556 FLUSH_BLOCK(0), block_start = strstart;
Eric Andersencc8ed391999-10-05 16:24:54 +00001557
Erik Andersene49d5ec2000-02-08 19:58:47 +00001558 } else if (match_available) {
1559 /* If there was no match at the previous position, output a
1560 * single literal. If there was a match but the current match
1561 * is longer, truncate the previous match to a single literal.
1562 */
1563 Tracevv((stderr, "%c", window[strstart - 1]));
1564 if (ct_tally(0, window[strstart - 1])) {
1565 FLUSH_BLOCK(0), block_start = strstart;
1566 }
1567 strstart++;
1568 lookahead--;
1569 } else {
1570 /* There is no previous match to compare with, wait for
1571 * the next step to decide.
1572 */
1573 match_available = 1;
1574 strstart++;
1575 lookahead--;
1576 }
1577 Assert(strstart <= isize && lookahead <= isize, "a bit too far");
Eric Andersencc8ed391999-10-05 16:24:54 +00001578
Erik Andersene49d5ec2000-02-08 19:58:47 +00001579 /* Make sure that we always have enough lookahead, except
1580 * at the end of the input file. We need MAX_MATCH bytes
1581 * for the next match, plus MIN_MATCH bytes to insert the
1582 * string following the next match.
1583 */
1584 while (lookahead < MIN_LOOKAHEAD && !eofile)
1585 fill_window();
1586 }
1587 if (match_available)
1588 ct_tally(0, window[strstart - 1]);
Eric Andersencc8ed391999-10-05 16:24:54 +00001589
Erik Andersene49d5ec2000-02-08 19:58:47 +00001590 return FLUSH_BLOCK(1); /* eof */
Eric Andersencc8ed391999-10-05 16:24:54 +00001591}
Erik Andersene49d5ec2000-02-08 19:58:47 +00001592
Eric Andersencc8ed391999-10-05 16:24:54 +00001593/* gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface
1594 * Copyright (C) 1992-1993 Jean-loup Gailly
1595 * The unzip code was written and put in the public domain by Mark Adler.
1596 * Portions of the lzw code are derived from the public domain 'compress'
1597 * written by Spencer Thomas, Joe Orost, James Woods, Jim McKie, Steve Davies,
1598 * Ken Turkowski, Dave Mack and Peter Jannesen.
1599 *
1600 * See the license_msg below and the file COPYING for the software license.
1601 * See the file algorithm.doc for the compression algorithms and file formats.
1602 */
1603
1604/* Compress files with zip algorithm and 'compress' interface.
1605 * See usage() and help() functions below for all options.
1606 * Outputs:
1607 * file.gz: compressed file with same mode, owner, and utimes
1608 * or stdout with -c option or if stdin used as input.
1609 * If the output file name had to be truncated, the original name is kept
1610 * in the compressed file.
1611 * On MSDOS, file.tmp -> file.tmz. On VMS, file.tmp -> file.tmp-gz.
1612 *
1613 * Using gz on MSDOS would create too many file name conflicts. For
1614 * example, foo.txt -> foo.tgz (.tgz must be reserved as shorthand for
1615 * tar.gz). Similarly, foo.dir and foo.doc would both be mapped to foo.dgz.
1616 * I also considered 12345678.txt -> 12345txt.gz but this truncates the name
1617 * too heavily. There is no ideal solution given the MSDOS 8+3 limitation.
1618 *
1619 * For the meaning of all compilation flags, see comments in Makefile.in.
1620 */
1621
Eric Andersencc8ed391999-10-05 16:24:54 +00001622#include <ctype.h>
1623#include <sys/types.h>
1624#include <signal.h>
1625#include <sys/stat.h>
1626#include <errno.h>
1627
1628 /* configuration */
1629
1630#ifdef NO_TIME_H
1631# include <sys/time.h>
1632#else
1633# include <time.h>
1634#endif
1635
1636#ifndef NO_FCNTL_H
1637# include <fcntl.h>
1638#endif
1639
1640#ifdef HAVE_UNISTD_H
1641# include <unistd.h>
1642#endif
1643
1644#if defined(STDC_HEADERS) || !defined(NO_STDLIB_H)
1645# include <stdlib.h>
1646#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001647extern int errno;
Eric Andersencc8ed391999-10-05 16:24:54 +00001648#endif
1649
1650#if defined(DIRENT)
1651# include <dirent.h>
Erik Andersene49d5ec2000-02-08 19:58:47 +00001652typedef struct dirent dir_type;
1653
Eric Andersencc8ed391999-10-05 16:24:54 +00001654# define NLENGTH(dirent) ((int)strlen((dirent)->d_name))
1655# define DIR_OPT "DIRENT"
1656#else
1657# define NLENGTH(dirent) ((dirent)->d_namlen)
1658# ifdef SYSDIR
1659# include <sys/dir.h>
Erik Andersene49d5ec2000-02-08 19:58:47 +00001660typedef struct direct dir_type;
1661
Eric Andersencc8ed391999-10-05 16:24:54 +00001662# define DIR_OPT "SYSDIR"
1663# else
1664# ifdef SYSNDIR
1665# include <sys/ndir.h>
Erik Andersene49d5ec2000-02-08 19:58:47 +00001666typedef struct direct dir_type;
1667
Eric Andersencc8ed391999-10-05 16:24:54 +00001668# define DIR_OPT "SYSNDIR"
1669# else
1670# ifdef NDIR
1671# include <ndir.h>
Erik Andersene49d5ec2000-02-08 19:58:47 +00001672typedef struct direct dir_type;
1673
Eric Andersencc8ed391999-10-05 16:24:54 +00001674# define DIR_OPT "NDIR"
1675# else
1676# define NO_DIR
1677# define DIR_OPT "NO_DIR"
1678# endif
1679# endif
1680# endif
1681#endif
1682
1683#ifndef NO_UTIME
1684# ifndef NO_UTIME_H
1685# include <utime.h>
1686# define TIME_OPT "UTIME"
1687# else
1688# ifdef HAVE_SYS_UTIME_H
1689# include <sys/utime.h>
1690# define TIME_OPT "SYS_UTIME"
1691# else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001692struct utimbuf {
1693 time_t actime;
1694 time_t modtime;
1695};
1696
Eric Andersencc8ed391999-10-05 16:24:54 +00001697# define TIME_OPT ""
1698# endif
1699# endif
1700#else
1701# define TIME_OPT "NO_UTIME"
1702#endif
1703
1704#if !defined(S_ISDIR) && defined(S_IFDIR)
1705# define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
1706#endif
1707#if !defined(S_ISREG) && defined(S_IFREG)
1708# define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
1709#endif
1710
Erik Andersen61677fe2000-04-13 01:18:56 +00001711typedef RETSIGTYPE(*sig_type) (int);
Eric Andersencc8ed391999-10-05 16:24:54 +00001712
1713#ifndef O_BINARY
Erik Andersene49d5ec2000-02-08 19:58:47 +00001714# define O_BINARY 0 /* creation mode for open() */
Eric Andersencc8ed391999-10-05 16:24:54 +00001715#endif
1716
1717#ifndef O_CREAT
1718 /* Pure BSD system? */
1719# include <sys/file.h>
1720# ifndef O_CREAT
1721# define O_CREAT FCREAT
1722# endif
1723# ifndef O_EXCL
1724# define O_EXCL FEXCL
1725# endif
1726#endif
1727
1728#ifndef S_IRUSR
1729# define S_IRUSR 0400
1730#endif
1731#ifndef S_IWUSR
1732# define S_IWUSR 0200
1733#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00001734#define RW_USER (S_IRUSR | S_IWUSR) /* creation mode for open() */
Eric Andersencc8ed391999-10-05 16:24:54 +00001735
1736#ifndef MAX_PATH_LEN
Erik Andersene49d5ec2000-02-08 19:58:47 +00001737# define MAX_PATH_LEN 1024 /* max pathname length */
Eric Andersencc8ed391999-10-05 16:24:54 +00001738#endif
1739
1740#ifndef SEEK_END
1741# define SEEK_END 2
1742#endif
1743
1744#ifdef NO_OFF_T
Erik Andersene49d5ec2000-02-08 19:58:47 +00001745typedef long off_t;
Erik Andersen61677fe2000-04-13 01:18:56 +00001746off_t lseek (int fd, off_t offset, int whence);
Eric Andersencc8ed391999-10-05 16:24:54 +00001747#endif
1748
1749/* Separator for file name parts (see shorten_name()) */
1750#ifdef NO_MULTIPLE_DOTS
1751# define PART_SEP "-"
1752#else
1753# define PART_SEP "."
1754#endif
1755
1756 /* global buffers */
1757
Erik Andersene49d5ec2000-02-08 19:58:47 +00001758DECLARE(uch, inbuf, INBUFSIZ + INBUF_EXTRA);
1759DECLARE(uch, outbuf, OUTBUFSIZ + OUTBUF_EXTRA);
1760DECLARE(ush, d_buf, DIST_BUFSIZE);
1761DECLARE(uch, window, 2L * WSIZE);
Eric Andersencc8ed391999-10-05 16:24:54 +00001762#ifndef MAXSEG_64K
Erik Andersene49d5ec2000-02-08 19:58:47 +00001763DECLARE(ush, tab_prefix, 1L << BITS);
Eric Andersencc8ed391999-10-05 16:24:54 +00001764#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001765DECLARE(ush, tab_prefix0, 1L << (BITS - 1));
1766DECLARE(ush, tab_prefix1, 1L << (BITS - 1));
Eric Andersencc8ed391999-10-05 16:24:54 +00001767#endif
1768
1769 /* local variables */
1770
Erik Andersene49d5ec2000-02-08 19:58:47 +00001771int ascii = 0; /* convert end-of-lines to local OS conventions */
1772int decompress = 0; /* decompress (-d) */
1773int no_name = -1; /* don't save or restore the original file name */
1774int no_time = -1; /* don't save or restore the original file time */
1775int foreground; /* set if program run in foreground */
1776char *progname; /* program name */
1777static int method = DEFLATED; /* compression method */
1778static int exit_code = OK; /* program exit code */
1779int save_orig_name; /* set if original name must be saved */
1780int last_member; /* set for .zip and .Z files */
1781int part_nb; /* number of parts in .gz file */
1782long time_stamp; /* original time stamp (modification time) */
1783long ifile_size; /* input file size, -1 for devices (debug only) */
1784char *env; /* contents of GZIP env variable */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001785char z_suffix[MAX_SUFFIX + 1]; /* default suffix (can be set with --suffix) */
1786int z_len; /* strlen(z_suffix) */
Eric Andersencc8ed391999-10-05 16:24:54 +00001787
Erik Andersene49d5ec2000-02-08 19:58:47 +00001788long bytes_in; /* number of input bytes */
1789long bytes_out; /* number of output bytes */
1790char ifname[MAX_PATH_LEN]; /* input file name */
1791char ofname[MAX_PATH_LEN]; /* output file name */
1792int remove_ofname = 0; /* remove output file on error */
1793struct stat istat; /* status for input file */
1794int ifd; /* input file descriptor */
1795int ofd; /* output file descriptor */
1796unsigned insize; /* valid bytes in inbuf */
1797unsigned inptr; /* index of next byte to be processed in inbuf */
1798unsigned outcnt; /* bytes in output buffer */
Eric Andersencc8ed391999-10-05 16:24:54 +00001799
1800/* local functions */
1801
Eric Andersencc8ed391999-10-05 16:24:54 +00001802#define strequ(s1, s2) (strcmp((s1),(s2)) == 0)
1803
1804/* ======================================================================== */
1805// int main (argc, argv)
1806// int argc;
1807// char **argv;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001808int gzip_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +00001809{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001810 int result;
1811 int inFileNum;
1812 int outFileNum;
1813 struct stat statBuf;
1814 char *delFileName;
1815 int tostdout = 0;
1816 int fromstdin = 0;
Eric Andersen96bcfd31999-11-12 01:30:18 +00001817
Erik Andersene49d5ec2000-02-08 19:58:47 +00001818 if (argc == 1)
Eric Andersenc296b541999-11-11 01:36:55 +00001819 usage(gzip_usage);
Eric Andersenc296b541999-11-11 01:36:55 +00001820
Erik Andersene49d5ec2000-02-08 19:58:47 +00001821 /* Parse any options */
1822 while (--argc > 0 && **(++argv) == '-') {
1823 if (*((*argv) + 1) == '\0') {
1824 fromstdin = 1;
1825 tostdout = 1;
1826 }
1827 while (*(++(*argv))) {
1828 switch (**argv) {
1829 case 'c':
1830 tostdout = 1;
1831 break;
1832 default:
1833 usage(gzip_usage);
1834 }
1835 }
1836 }
1837
1838 foreground = signal(SIGINT, SIG_IGN) != SIG_IGN;
1839 if (foreground) {
1840 (void) signal(SIGINT, (sig_type) abort_gzip);
1841 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001842#ifdef SIGTERM
Erik Andersene49d5ec2000-02-08 19:58:47 +00001843 if (signal(SIGTERM, SIG_IGN) != SIG_IGN) {
1844 (void) signal(SIGTERM, (sig_type) abort_gzip);
1845 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001846#endif
1847#ifdef SIGHUP
Erik Andersene49d5ec2000-02-08 19:58:47 +00001848 if (signal(SIGHUP, SIG_IGN) != SIG_IGN) {
1849 (void) signal(SIGHUP, (sig_type) abort_gzip);
1850 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001851#endif
1852
Erik Andersene49d5ec2000-02-08 19:58:47 +00001853 strncpy(z_suffix, Z_SUFFIX, sizeof(z_suffix) - 1);
1854 z_len = strlen(z_suffix);
Eric Andersencc8ed391999-10-05 16:24:54 +00001855
Erik Andersene49d5ec2000-02-08 19:58:47 +00001856 /* Allocate all global buffers (for DYN_ALLOC option) */
1857 ALLOC(uch, inbuf, INBUFSIZ + INBUF_EXTRA);
1858 ALLOC(uch, outbuf, OUTBUFSIZ + OUTBUF_EXTRA);
1859 ALLOC(ush, d_buf, DIST_BUFSIZE);
1860 ALLOC(uch, window, 2L * WSIZE);
Eric Andersencc8ed391999-10-05 16:24:54 +00001861#ifndef MAXSEG_64K
Erik Andersene49d5ec2000-02-08 19:58:47 +00001862 ALLOC(ush, tab_prefix, 1L << BITS);
Eric Andersencc8ed391999-10-05 16:24:54 +00001863#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001864 ALLOC(ush, tab_prefix0, 1L << (BITS - 1));
1865 ALLOC(ush, tab_prefix1, 1L << (BITS - 1));
Eric Andersencc8ed391999-10-05 16:24:54 +00001866#endif
1867
Erik Andersene49d5ec2000-02-08 19:58:47 +00001868 if (fromstdin == 1) {
1869 strcpy(ofname, "stdin");
Eric Andersen96bcfd31999-11-12 01:30:18 +00001870
Erik Andersene49d5ec2000-02-08 19:58:47 +00001871 inFileNum = fileno(stdin);
1872 time_stamp = 0; /* time unknown by default */
1873 ifile_size = -1L; /* convention for unknown size */
1874 } else {
1875 /* Open up the input file */
1876 if (*argv == '\0')
1877 usage(gzip_usage);
1878 strncpy(ifname, *argv, MAX_PATH_LEN);
Eric Andersen96bcfd31999-11-12 01:30:18 +00001879
Erik Andersene49d5ec2000-02-08 19:58:47 +00001880 /* Open input fille */
1881 inFileNum = open(ifname, O_RDONLY);
1882 if (inFileNum < 0) {
1883 perror(ifname);
Eric Andersenb6106152000-06-19 17:25:40 +00001884 exit(WARNING);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001885 }
1886 /* Get the time stamp on the input file. */
1887 result = stat(ifname, &statBuf);
1888 if (result < 0) {
1889 perror(ifname);
Eric Andersenb6106152000-06-19 17:25:40 +00001890 exit(WARNING);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001891 }
1892 time_stamp = statBuf.st_ctime;
1893 ifile_size = statBuf.st_size;
Eric Andersen96bcfd31999-11-12 01:30:18 +00001894 }
Eric Andersen96bcfd31999-11-12 01:30:18 +00001895
1896
Erik Andersene49d5ec2000-02-08 19:58:47 +00001897 if (tostdout == 1) {
1898 /* And get to work */
1899 strcpy(ofname, "stdout");
1900 outFileNum = fileno(stdout);
1901 SET_BINARY_MODE(fileno(stdout));
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001902
Erik Andersene49d5ec2000-02-08 19:58:47 +00001903 clear_bufs(); /* clear input and output buffers */
1904 part_nb = 0;
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001905
Erik Andersene49d5ec2000-02-08 19:58:47 +00001906 /* Actually do the compression/decompression. */
1907 zip(inFileNum, outFileNum);
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001908
Erik Andersene49d5ec2000-02-08 19:58:47 +00001909 } else {
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001910
Erik Andersene49d5ec2000-02-08 19:58:47 +00001911 /* And get to work */
1912 strncpy(ofname, ifname, MAX_PATH_LEN - 4);
1913 strcat(ofname, ".gz");
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001914
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001915
Erik Andersene49d5ec2000-02-08 19:58:47 +00001916 /* Open output fille */
Erik Andersen4d1d0111999-12-17 18:44:15 +00001917#if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001918 outFileNum = open(ofname, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW);
Erik Andersen4d1d0111999-12-17 18:44:15 +00001919#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001920 outFileNum = open(ofname, O_RDWR | O_CREAT | O_EXCL);
Erik Andersen4d1d0111999-12-17 18:44:15 +00001921#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00001922 if (outFileNum < 0) {
1923 perror(ofname);
Eric Andersenb6106152000-06-19 17:25:40 +00001924 exit(WARNING);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001925 }
1926 SET_BINARY_MODE(outFileNum);
1927 /* Set permissions on the file */
1928 fchmod(outFileNum, statBuf.st_mode);
1929
1930 clear_bufs(); /* clear input and output buffers */
1931 part_nb = 0;
1932
1933 /* Actually do the compression/decompression. */
1934 result = zip(inFileNum, outFileNum);
1935 close(outFileNum);
1936 close(inFileNum);
1937 /* Delete the original file */
1938 if (result == OK)
1939 delFileName = ifname;
1940 else
1941 delFileName = ofname;
1942
1943 if (unlink(delFileName) < 0) {
1944 perror(delFileName);
1945 exit(FALSE);
1946 }
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001947 }
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001948
Eric Andersenb6106152000-06-19 17:25:40 +00001949 return(exit_code);
Eric Andersencc8ed391999-10-05 16:24:54 +00001950}
1951
Eric Andersencc8ed391999-10-05 16:24:54 +00001952/* trees.c -- output deflated data using Huffman coding
1953 * Copyright (C) 1992-1993 Jean-loup Gailly
1954 * This is free software; you can redistribute it and/or modify it under the
1955 * terms of the GNU General Public License, see the file COPYING.
1956 */
1957
1958/*
1959 * PURPOSE
1960 *
1961 * Encode various sets of source values using variable-length
1962 * binary code trees.
1963 *
1964 * DISCUSSION
1965 *
1966 * The PKZIP "deflation" process uses several Huffman trees. The more
1967 * common source values are represented by shorter bit sequences.
1968 *
1969 * Each code tree is stored in the ZIP file in a compressed form
1970 * which is itself a Huffman encoding of the lengths of
1971 * all the code strings (in ascending order by source values).
1972 * The actual code strings are reconstructed from the lengths in
1973 * the UNZIP process, as described in the "application note"
1974 * (APPNOTE.TXT) distributed as part of PKWARE's PKZIP program.
1975 *
1976 * REFERENCES
1977 *
1978 * Lynch, Thomas J.
1979 * Data Compression: Techniques and Applications, pp. 53-55.
1980 * Lifetime Learning Publications, 1985. ISBN 0-534-03418-7.
1981 *
1982 * Storer, James A.
1983 * Data Compression: Methods and Theory, pp. 49-50.
1984 * Computer Science Press, 1988. ISBN 0-7167-8156-5.
1985 *
1986 * Sedgewick, R.
1987 * Algorithms, p290.
1988 * Addison-Wesley, 1983. ISBN 0-201-06672-6.
1989 *
1990 * INTERFACE
1991 *
1992 * void ct_init (ush *attr, int *methodp)
1993 * Allocate the match buffer, initialize the various tables and save
1994 * the location of the internal file attribute (ascii/binary) and
1995 * method (DEFLATE/STORE)
1996 *
1997 * void ct_tally (int dist, int lc);
1998 * Save the match info and tally the frequency counts.
1999 *
2000 * long flush_block (char *buf, ulg stored_len, int eof)
2001 * Determine the best encoding for the current block: dynamic trees,
2002 * static trees or store, and output the encoded block to the zip
2003 * file. Returns the total compressed length for the file so far.
2004 *
2005 */
2006
2007#include <ctype.h>
2008
Eric Andersencc8ed391999-10-05 16:24:54 +00002009/* ===========================================================================
2010 * Constants
2011 */
2012
2013#define MAX_BITS 15
2014/* All codes must not exceed MAX_BITS bits */
2015
2016#define MAX_BL_BITS 7
2017/* Bit length codes must not exceed MAX_BL_BITS bits */
2018
2019#define LENGTH_CODES 29
2020/* number of length codes, not counting the special END_BLOCK code */
2021
2022#define LITERALS 256
2023/* number of literal bytes 0..255 */
2024
2025#define END_BLOCK 256
2026/* end of block literal code */
2027
2028#define L_CODES (LITERALS+1+LENGTH_CODES)
2029/* number of Literal or Length codes, including the END_BLOCK code */
2030
2031#define D_CODES 30
2032/* number of distance codes */
2033
2034#define BL_CODES 19
2035/* number of codes used to transfer the bit lengths */
2036
2037
Erik Andersene49d5ec2000-02-08 19:58:47 +00002038local int near extra_lbits[LENGTH_CODES] /* extra bits for each length code */
2039 = { 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4,
2040 4, 4, 5, 5, 5, 5, 0 };
Eric Andersencc8ed391999-10-05 16:24:54 +00002041
Erik Andersene49d5ec2000-02-08 19:58:47 +00002042local int near extra_dbits[D_CODES] /* extra bits for each distance code */
2043 = { 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9,
2044 10, 10, 11, 11, 12, 12, 13, 13 };
Eric Andersencc8ed391999-10-05 16:24:54 +00002045
Erik Andersene49d5ec2000-02-08 19:58:47 +00002046local int near extra_blbits[BL_CODES] /* extra bits for each bit length code */
2047= { 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 +00002048
2049#define STORED_BLOCK 0
2050#define STATIC_TREES 1
2051#define DYN_TREES 2
2052/* The three kinds of block type */
2053
2054#ifndef LIT_BUFSIZE
2055# ifdef SMALL_MEM
2056# define LIT_BUFSIZE 0x2000
2057# else
2058# ifdef MEDIUM_MEM
2059# define LIT_BUFSIZE 0x4000
2060# else
2061# define LIT_BUFSIZE 0x8000
2062# endif
2063# endif
2064#endif
2065#ifndef DIST_BUFSIZE
2066# define DIST_BUFSIZE LIT_BUFSIZE
2067#endif
2068/* Sizes of match buffers for literals/lengths and distances. There are
2069 * 4 reasons for limiting LIT_BUFSIZE to 64K:
2070 * - frequencies can be kept in 16 bit counters
2071 * - if compression is not successful for the first block, all input data is
2072 * still in the window so we can still emit a stored block even when input
2073 * comes from standard input. (This can also be done for all blocks if
2074 * LIT_BUFSIZE is not greater than 32K.)
2075 * - if compression is not successful for a file smaller than 64K, we can
2076 * even emit a stored file instead of a stored block (saving 5 bytes).
2077 * - creating new Huffman trees less frequently may not provide fast
2078 * adaptation to changes in the input data statistics. (Take for
2079 * example a binary file with poorly compressible code followed by
2080 * a highly compressible string table.) Smaller buffer sizes give
2081 * fast adaptation but have of course the overhead of transmitting trees
2082 * more frequently.
2083 * - I can't count above 4
2084 * The current code is general and allows DIST_BUFSIZE < LIT_BUFSIZE (to save
2085 * memory at the expense of compression). Some optimizations would be possible
2086 * if we rely on DIST_BUFSIZE == LIT_BUFSIZE.
2087 */
2088#if LIT_BUFSIZE > INBUFSIZ
Erik Andersene49d5ec2000-02-08 19:58:47 +00002089error cannot overlay l_buf and inbuf
Eric Andersencc8ed391999-10-05 16:24:54 +00002090#endif
Eric Andersencc8ed391999-10-05 16:24:54 +00002091#define REP_3_6 16
2092/* repeat previous bit length 3-6 times (2 bits of repeat count) */
Eric Andersencc8ed391999-10-05 16:24:54 +00002093#define REPZ_3_10 17
2094/* repeat a zero length 3-10 times (3 bits of repeat count) */
Eric Andersencc8ed391999-10-05 16:24:54 +00002095#define REPZ_11_138 18
Erik Andersene49d5ec2000-02-08 19:58:47 +00002096/* repeat a zero length 11-138 times (7 bits of repeat count) *//* ===========================================================================
Eric Andersencc8ed391999-10-05 16:24:54 +00002097 * Local data
Erik Andersene49d5ec2000-02-08 19:58:47 +00002098 *//* Data structure describing a single value and its code string. */ typedef struct ct_data {
2099 union {
2100 ush freq; /* frequency count */
2101 ush code; /* bit string */
2102 } fc;
2103 union {
2104 ush dad; /* father node in Huffman tree */
2105 ush len; /* length of bit string */
2106 } dl;
Eric Andersencc8ed391999-10-05 16:24:54 +00002107} ct_data;
2108
2109#define Freq fc.freq
2110#define Code fc.code
2111#define Dad dl.dad
2112#define Len dl.len
2113
2114#define HEAP_SIZE (2*L_CODES+1)
2115/* maximum heap size */
2116
Erik Andersene49d5ec2000-02-08 19:58:47 +00002117local ct_data near dyn_ltree[HEAP_SIZE]; /* literal and length tree */
2118local ct_data near dyn_dtree[2 * D_CODES + 1]; /* distance tree */
Eric Andersencc8ed391999-10-05 16:24:54 +00002119
Erik Andersene49d5ec2000-02-08 19:58:47 +00002120local ct_data near static_ltree[L_CODES + 2];
2121
Eric Andersencc8ed391999-10-05 16:24:54 +00002122/* The static literal tree. Since the bit lengths are imposed, there is no
2123 * need for the L_CODES extra codes used during heap construction. However
2124 * The codes 286 and 287 are needed to build a canonical tree (see ct_init
2125 * below).
2126 */
2127
2128local ct_data near static_dtree[D_CODES];
Erik Andersene49d5ec2000-02-08 19:58:47 +00002129
Eric Andersencc8ed391999-10-05 16:24:54 +00002130/* The static distance tree. (Actually a trivial tree since all codes use
2131 * 5 bits.)
2132 */
2133
Erik Andersene49d5ec2000-02-08 19:58:47 +00002134local ct_data near bl_tree[2 * BL_CODES + 1];
2135
Eric Andersencc8ed391999-10-05 16:24:54 +00002136/* Huffman tree for the bit lengths */
2137
2138typedef struct tree_desc {
Erik Andersene49d5ec2000-02-08 19:58:47 +00002139 ct_data near *dyn_tree; /* the dynamic tree */
2140 ct_data near *static_tree; /* corresponding static tree or NULL */
2141 int near *extra_bits; /* extra bits for each code or NULL */
2142 int extra_base; /* base index for extra_bits */
2143 int elems; /* max number of elements in the tree */
2144 int max_length; /* max bit length for the codes */
2145 int max_code; /* largest code with non zero frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +00002146} tree_desc;
2147
2148local tree_desc near l_desc =
Erik Andersene49d5ec2000-02-08 19:58:47 +00002149 { dyn_ltree, static_ltree, extra_lbits, LITERALS + 1, L_CODES,
2150 MAX_BITS, 0 };
Eric Andersencc8ed391999-10-05 16:24:54 +00002151
2152local tree_desc near d_desc =
Erik Andersene49d5ec2000-02-08 19:58:47 +00002153 { dyn_dtree, static_dtree, extra_dbits, 0, D_CODES, MAX_BITS, 0 };
Eric Andersencc8ed391999-10-05 16:24:54 +00002154
2155local tree_desc near bl_desc =
Erik Andersene49d5ec2000-02-08 19:58:47 +00002156 { bl_tree, (ct_data near *) 0, extra_blbits, 0, BL_CODES, MAX_BL_BITS,
2157 0 };
Eric Andersencc8ed391999-10-05 16:24:54 +00002158
2159
Erik Andersene49d5ec2000-02-08 19:58:47 +00002160local ush near bl_count[MAX_BITS + 1];
2161
Eric Andersencc8ed391999-10-05 16:24:54 +00002162/* number of codes at each bit length for an optimal tree */
2163
2164local uch near bl_order[BL_CODES]
Erik Andersene49d5ec2000-02-08 19:58:47 +00002165= { 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 };
2166
Eric Andersencc8ed391999-10-05 16:24:54 +00002167/* The lengths of the bit length codes are sent in order of decreasing
2168 * probability, to avoid transmitting the lengths for unused bit length codes.
2169 */
2170
Erik Andersene49d5ec2000-02-08 19:58:47 +00002171local int near heap[2 * L_CODES + 1]; /* heap used to build the Huffman trees */
2172local int heap_len; /* number of elements in the heap */
2173local int heap_max; /* element of largest frequency */
2174
Eric Andersencc8ed391999-10-05 16:24:54 +00002175/* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.
2176 * The same heap array is used to build all trees.
2177 */
2178
Erik Andersene49d5ec2000-02-08 19:58:47 +00002179local uch near depth[2 * L_CODES + 1];
2180
Eric Andersencc8ed391999-10-05 16:24:54 +00002181/* Depth of each subtree used as tie breaker for trees of equal frequency */
2182
Erik Andersene49d5ec2000-02-08 19:58:47 +00002183local uch length_code[MAX_MATCH - MIN_MATCH + 1];
2184
Eric Andersencc8ed391999-10-05 16:24:54 +00002185/* length code for each normalized match length (0 == MIN_MATCH) */
2186
2187local uch dist_code[512];
Erik Andersene49d5ec2000-02-08 19:58:47 +00002188
Eric Andersencc8ed391999-10-05 16:24:54 +00002189/* distance codes. The first 256 values correspond to the distances
2190 * 3 .. 258, the last 256 values correspond to the top 8 bits of
2191 * the 15 bit distances.
2192 */
2193
2194local int near base_length[LENGTH_CODES];
Erik Andersene49d5ec2000-02-08 19:58:47 +00002195
Eric Andersencc8ed391999-10-05 16:24:54 +00002196/* First normalized length for each code (0 = MIN_MATCH) */
2197
2198local int near base_dist[D_CODES];
Erik Andersene49d5ec2000-02-08 19:58:47 +00002199
Eric Andersencc8ed391999-10-05 16:24:54 +00002200/* First normalized distance for each code (0 = distance of 1) */
2201
2202#define l_buf inbuf
2203/* DECLARE(uch, l_buf, LIT_BUFSIZE); buffer for literals or lengths */
2204
2205/* DECLARE(ush, d_buf, DIST_BUFSIZE); buffer for distances */
2206
Erik Andersene49d5ec2000-02-08 19:58:47 +00002207local uch near flag_buf[(LIT_BUFSIZE / 8)];
2208
Eric Andersencc8ed391999-10-05 16:24:54 +00002209/* flag_buf is a bit array distinguishing literals from lengths in
2210 * l_buf, thus indicating the presence or absence of a distance.
2211 */
2212
Erik Andersene49d5ec2000-02-08 19:58:47 +00002213local unsigned last_lit; /* running index in l_buf */
2214local unsigned last_dist; /* running index in d_buf */
2215local unsigned last_flags; /* running index in flag_buf */
2216local uch flags; /* current flags not yet saved in flag_buf */
2217local uch flag_bit; /* current bit used in flags */
2218
Eric Andersencc8ed391999-10-05 16:24:54 +00002219/* bits are filled in flags starting at bit 0 (least significant).
2220 * Note: these flags are overkill in the current code since we don't
2221 * take advantage of DIST_BUFSIZE == LIT_BUFSIZE.
2222 */
2223
Erik Andersene49d5ec2000-02-08 19:58:47 +00002224local ulg opt_len; /* bit length of current block with optimal trees */
2225local ulg static_len; /* bit length of current block with static trees */
Eric Andersencc8ed391999-10-05 16:24:54 +00002226
Erik Andersene49d5ec2000-02-08 19:58:47 +00002227local ulg compressed_len; /* total bit length of compressed file */
Eric Andersencc8ed391999-10-05 16:24:54 +00002228
Erik Andersene49d5ec2000-02-08 19:58:47 +00002229local ulg input_len; /* total byte length of input file */
2230
Eric Andersencc8ed391999-10-05 16:24:54 +00002231/* input_len is for debugging only since we can get it by other means. */
2232
Erik Andersene49d5ec2000-02-08 19:58:47 +00002233ush *file_type; /* pointer to UNKNOWN, BINARY or ASCII */
2234int *file_method; /* pointer to DEFLATE or STORE */
Eric Andersencc8ed391999-10-05 16:24:54 +00002235
2236#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +00002237extern ulg bits_sent; /* bit length of the compressed data */
2238extern long isize; /* byte length of input file */
Eric Andersencc8ed391999-10-05 16:24:54 +00002239#endif
2240
Erik Andersene49d5ec2000-02-08 19:58:47 +00002241extern long block_start; /* window offset of current block */
2242extern unsigned near strstart; /* window offset of current string */
Eric Andersencc8ed391999-10-05 16:24:54 +00002243
2244/* ===========================================================================
2245 * Local (static) routines in this file.
2246 */
2247
Erik Andersen61677fe2000-04-13 01:18:56 +00002248local void init_block (void);
2249local void pqdownheap (ct_data near * tree, int k);
2250local void gen_bitlen (tree_desc near * desc);
2251local void gen_codes (ct_data near * tree, int max_code);
2252local void build_tree (tree_desc near * desc);
2253local void scan_tree (ct_data near * tree, int max_code);
2254local void send_tree (ct_data near * tree, int max_code);
2255local int build_bl_tree (void);
2256local void send_all_trees (int lcodes, int dcodes, int blcodes);
2257local void compress_block (ct_data near * ltree, ct_data near * dtree);
2258local void set_file_type (void);
Eric Andersencc8ed391999-10-05 16:24:54 +00002259
2260
2261#ifndef DEBUG
2262# define send_code(c, tree) send_bits(tree[c].Code, tree[c].Len)
2263 /* Send a code of the given tree. c and tree must not have side effects */
2264
Erik Andersene49d5ec2000-02-08 19:58:47 +00002265#else /* DEBUG */
Eric Andersencc8ed391999-10-05 16:24:54 +00002266# define send_code(c, tree) \
2267 { if (verbose>1) fprintf(stderr,"\ncd %3d ",(c)); \
2268 send_bits(tree[c].Code, tree[c].Len); }
2269#endif
2270
2271#define d_code(dist) \
2272 ((dist) < 256 ? dist_code[dist] : dist_code[256+((dist)>>7)])
2273/* Mapping from a distance to a distance code. dist is the distance - 1 and
2274 * must not have side effects. dist_code[256] and dist_code[257] are never
2275 * used.
2276 */
2277
Eric Andersencc8ed391999-10-05 16:24:54 +00002278/* the arguments must not have side effects */
2279
2280/* ===========================================================================
2281 * Allocate the match buffer, initialize the various tables and save the
2282 * location of the internal file attribute (ascii/binary) and method
2283 * (DEFLATE/STORE).
2284 */
2285void ct_init(attr, methodp)
Erik Andersene49d5ec2000-02-08 19:58:47 +00002286ush *attr; /* pointer to internal file attribute */
2287int *methodp; /* pointer to compression method */
Eric Andersencc8ed391999-10-05 16:24:54 +00002288{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002289 int n; /* iterates over tree elements */
2290 int bits; /* bit counter */
2291 int length; /* length value */
2292 int code; /* code value */
2293 int dist; /* distance index */
Eric Andersencc8ed391999-10-05 16:24:54 +00002294
Erik Andersene49d5ec2000-02-08 19:58:47 +00002295 file_type = attr;
2296 file_method = methodp;
2297 compressed_len = input_len = 0L;
Eric Andersencc8ed391999-10-05 16:24:54 +00002298
Erik Andersene49d5ec2000-02-08 19:58:47 +00002299 if (static_dtree[0].Len != 0)
2300 return; /* ct_init already called */
Eric Andersencc8ed391999-10-05 16:24:54 +00002301
Erik Andersene49d5ec2000-02-08 19:58:47 +00002302 /* Initialize the mapping length (0..255) -> length code (0..28) */
2303 length = 0;
2304 for (code = 0; code < LENGTH_CODES - 1; code++) {
2305 base_length[code] = length;
2306 for (n = 0; n < (1 << extra_lbits[code]); n++) {
2307 length_code[length++] = (uch) code;
2308 }
2309 }
2310 Assert(length == 256, "ct_init: length != 256");
2311 /* Note that the length 255 (match length 258) can be represented
2312 * in two different ways: code 284 + 5 bits or code 285, so we
2313 * overwrite length_code[255] to use the best encoding:
2314 */
2315 length_code[length - 1] = (uch) code;
Eric Andersencc8ed391999-10-05 16:24:54 +00002316
Erik Andersene49d5ec2000-02-08 19:58:47 +00002317 /* Initialize the mapping dist (0..32K) -> dist code (0..29) */
2318 dist = 0;
2319 for (code = 0; code < 16; code++) {
2320 base_dist[code] = dist;
2321 for (n = 0; n < (1 << extra_dbits[code]); n++) {
2322 dist_code[dist++] = (uch) code;
2323 }
2324 }
2325 Assert(dist == 256, "ct_init: dist != 256");
2326 dist >>= 7; /* from now on, all distances are divided by 128 */
2327 for (; code < D_CODES; code++) {
2328 base_dist[code] = dist << 7;
2329 for (n = 0; n < (1 << (extra_dbits[code] - 7)); n++) {
2330 dist_code[256 + dist++] = (uch) code;
2331 }
2332 }
2333 Assert(dist == 256, "ct_init: 256+dist != 512");
Eric Andersencc8ed391999-10-05 16:24:54 +00002334
Erik Andersene49d5ec2000-02-08 19:58:47 +00002335 /* Construct the codes of the static literal tree */
2336 for (bits = 0; bits <= MAX_BITS; bits++)
2337 bl_count[bits] = 0;
2338 n = 0;
2339 while (n <= 143)
2340 static_ltree[n++].Len = 8, bl_count[8]++;
2341 while (n <= 255)
2342 static_ltree[n++].Len = 9, bl_count[9]++;
2343 while (n <= 279)
2344 static_ltree[n++].Len = 7, bl_count[7]++;
2345 while (n <= 287)
2346 static_ltree[n++].Len = 8, bl_count[8]++;
2347 /* Codes 286 and 287 do not exist, but we must include them in the
2348 * tree construction to get a canonical Huffman tree (longest code
2349 * all ones)
2350 */
2351 gen_codes((ct_data near *) static_ltree, L_CODES + 1);
Eric Andersencc8ed391999-10-05 16:24:54 +00002352
Erik Andersene49d5ec2000-02-08 19:58:47 +00002353 /* The static distance tree is trivial: */
2354 for (n = 0; n < D_CODES; n++) {
2355 static_dtree[n].Len = 5;
2356 static_dtree[n].Code = bi_reverse(n, 5);
2357 }
2358
2359 /* Initialize the first block of the first file: */
2360 init_block();
Eric Andersencc8ed391999-10-05 16:24:54 +00002361}
2362
2363/* ===========================================================================
2364 * Initialize a new block.
2365 */
2366local void init_block()
2367{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002368 int n; /* iterates over tree elements */
Eric Andersencc8ed391999-10-05 16:24:54 +00002369
Erik Andersene49d5ec2000-02-08 19:58:47 +00002370 /* Initialize the trees. */
2371 for (n = 0; n < L_CODES; n++)
2372 dyn_ltree[n].Freq = 0;
2373 for (n = 0; n < D_CODES; n++)
2374 dyn_dtree[n].Freq = 0;
2375 for (n = 0; n < BL_CODES; n++)
2376 bl_tree[n].Freq = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00002377
Erik Andersene49d5ec2000-02-08 19:58:47 +00002378 dyn_ltree[END_BLOCK].Freq = 1;
2379 opt_len = static_len = 0L;
2380 last_lit = last_dist = last_flags = 0;
2381 flags = 0;
2382 flag_bit = 1;
Eric Andersencc8ed391999-10-05 16:24:54 +00002383}
2384
2385#define SMALLEST 1
2386/* Index within the heap array of least frequent node in the Huffman tree */
2387
2388
2389/* ===========================================================================
2390 * Remove the smallest element from the heap and recreate the heap with
2391 * one less element. Updates heap and heap_len.
2392 */
2393#define pqremove(tree, top) \
2394{\
2395 top = heap[SMALLEST]; \
2396 heap[SMALLEST] = heap[heap_len--]; \
2397 pqdownheap(tree, SMALLEST); \
2398}
2399
2400/* ===========================================================================
2401 * Compares to subtrees, using the tree depth as tie breaker when
2402 * the subtrees have equal frequency. This minimizes the worst case length.
2403 */
2404#define smaller(tree, n, m) \
2405 (tree[n].Freq < tree[m].Freq || \
2406 (tree[n].Freq == tree[m].Freq && depth[n] <= depth[m]))
2407
2408/* ===========================================================================
2409 * Restore the heap property by moving down the tree starting at node k,
2410 * exchanging a node with the smallest of its two sons if necessary, stopping
2411 * when the heap property is re-established (each father smaller than its
2412 * two sons).
2413 */
2414local void pqdownheap(tree, k)
Erik Andersene49d5ec2000-02-08 19:58:47 +00002415ct_data near *tree; /* the tree to restore */
2416int k; /* node to move down */
Eric Andersencc8ed391999-10-05 16:24:54 +00002417{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002418 int v = heap[k];
2419 int j = k << 1; /* left son of k */
Eric Andersencc8ed391999-10-05 16:24:54 +00002420
Erik Andersene49d5ec2000-02-08 19:58:47 +00002421 while (j <= heap_len) {
2422 /* Set j to the smallest of the two sons: */
2423 if (j < heap_len && smaller(tree, heap[j + 1], heap[j]))
2424 j++;
Eric Andersencc8ed391999-10-05 16:24:54 +00002425
Erik Andersene49d5ec2000-02-08 19:58:47 +00002426 /* Exit if v is smaller than both sons */
2427 if (smaller(tree, v, heap[j]))
2428 break;
Eric Andersencc8ed391999-10-05 16:24:54 +00002429
Erik Andersene49d5ec2000-02-08 19:58:47 +00002430 /* Exchange v with the smallest son */
2431 heap[k] = heap[j];
2432 k = j;
2433
2434 /* And continue down the tree, setting j to the left son of k */
2435 j <<= 1;
2436 }
2437 heap[k] = v;
Eric Andersencc8ed391999-10-05 16:24:54 +00002438}
2439
2440/* ===========================================================================
2441 * Compute the optimal bit lengths for a tree and update the total bit length
2442 * for the current block.
2443 * IN assertion: the fields freq and dad are set, heap[heap_max] and
2444 * above are the tree nodes sorted by increasing frequency.
2445 * OUT assertions: the field len is set to the optimal bit length, the
2446 * array bl_count contains the frequencies for each bit length.
2447 * The length opt_len is updated; static_len is also updated if stree is
2448 * not null.
2449 */
2450local void gen_bitlen(desc)
Erik Andersene49d5ec2000-02-08 19:58:47 +00002451tree_desc near *desc; /* the tree descriptor */
Eric Andersencc8ed391999-10-05 16:24:54 +00002452{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002453 ct_data near *tree = desc->dyn_tree;
2454 int near *extra = desc->extra_bits;
2455 int base = desc->extra_base;
2456 int max_code = desc->max_code;
2457 int max_length = desc->max_length;
2458 ct_data near *stree = desc->static_tree;
2459 int h; /* heap index */
2460 int n, m; /* iterate over the tree elements */
2461 int bits; /* bit length */
2462 int xbits; /* extra bits */
2463 ush f; /* frequency */
2464 int overflow = 0; /* number of elements with bit length too large */
Eric Andersencc8ed391999-10-05 16:24:54 +00002465
Erik Andersene49d5ec2000-02-08 19:58:47 +00002466 for (bits = 0; bits <= MAX_BITS; bits++)
2467 bl_count[bits] = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00002468
Erik Andersene49d5ec2000-02-08 19:58:47 +00002469 /* In a first pass, compute the optimal bit lengths (which may
2470 * overflow in the case of the bit length tree).
2471 */
2472 tree[heap[heap_max]].Len = 0; /* root of the heap */
Eric Andersencc8ed391999-10-05 16:24:54 +00002473
Erik Andersene49d5ec2000-02-08 19:58:47 +00002474 for (h = heap_max + 1; h < HEAP_SIZE; h++) {
2475 n = heap[h];
2476 bits = tree[tree[n].Dad].Len + 1;
2477 if (bits > max_length)
2478 bits = max_length, overflow++;
2479 tree[n].Len = (ush) bits;
2480 /* We overwrite tree[n].Dad which is no longer needed */
Eric Andersencc8ed391999-10-05 16:24:54 +00002481
Erik Andersene49d5ec2000-02-08 19:58:47 +00002482 if (n > max_code)
2483 continue; /* not a leaf node */
Eric Andersencc8ed391999-10-05 16:24:54 +00002484
Erik Andersene49d5ec2000-02-08 19:58:47 +00002485 bl_count[bits]++;
2486 xbits = 0;
2487 if (n >= base)
2488 xbits = extra[n - base];
2489 f = tree[n].Freq;
2490 opt_len += (ulg) f *(bits + xbits);
Eric Andersencc8ed391999-10-05 16:24:54 +00002491
Erik Andersene49d5ec2000-02-08 19:58:47 +00002492 if (stree)
2493 static_len += (ulg) f *(stree[n].Len + xbits);
2494 }
2495 if (overflow == 0)
2496 return;
Eric Andersencc8ed391999-10-05 16:24:54 +00002497
Erik Andersene49d5ec2000-02-08 19:58:47 +00002498 Trace((stderr, "\nbit length overflow\n"));
2499 /* This happens for example on obj2 and pic of the Calgary corpus */
Eric Andersencc8ed391999-10-05 16:24:54 +00002500
Erik Andersene49d5ec2000-02-08 19:58:47 +00002501 /* Find the first bit length which could increase: */
2502 do {
2503 bits = max_length - 1;
2504 while (bl_count[bits] == 0)
2505 bits--;
2506 bl_count[bits]--; /* move one leaf down the tree */
2507 bl_count[bits + 1] += 2; /* move one overflow item as its brother */
2508 bl_count[max_length]--;
2509 /* The brother of the overflow item also moves one step up,
2510 * but this does not affect bl_count[max_length]
2511 */
2512 overflow -= 2;
2513 } while (overflow > 0);
2514
2515 /* Now recompute all bit lengths, scanning in increasing frequency.
2516 * h is still equal to HEAP_SIZE. (It is simpler to reconstruct all
2517 * lengths instead of fixing only the wrong ones. This idea is taken
2518 * from 'ar' written by Haruhiko Okumura.)
2519 */
2520 for (bits = max_length; bits != 0; bits--) {
2521 n = bl_count[bits];
2522 while (n != 0) {
2523 m = heap[--h];
2524 if (m > max_code)
2525 continue;
2526 if (tree[m].Len != (unsigned) bits) {
2527 Trace(
2528 (stderr, "code %d bits %d->%d\n", m, tree[m].Len,
2529 bits));
2530 opt_len +=
2531 ((long) bits -
2532 (long) tree[m].Len) * (long) tree[m].Freq;
2533 tree[m].Len = (ush) bits;
2534 }
2535 n--;
2536 }
2537 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002538}
2539
2540/* ===========================================================================
2541 * Generate the codes for a given tree and bit counts (which need not be
2542 * optimal).
2543 * IN assertion: the array bl_count contains the bit length statistics for
2544 * the given tree and the field len is set for all tree elements.
2545 * OUT assertion: the field code is set for all tree elements of non
2546 * zero code length.
2547 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002548local void gen_codes(tree, max_code)
2549ct_data near *tree; /* the tree to decorate */
2550int max_code; /* largest code with non zero frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +00002551{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002552 ush next_code[MAX_BITS + 1]; /* next code value for each bit length */
2553 ush code = 0; /* running code value */
2554 int bits; /* bit index */
2555 int n; /* code index */
Eric Andersencc8ed391999-10-05 16:24:54 +00002556
Erik Andersene49d5ec2000-02-08 19:58:47 +00002557 /* The distribution counts are first used to generate the code values
2558 * without bit reversal.
2559 */
2560 for (bits = 1; bits <= MAX_BITS; bits++) {
2561 next_code[bits] = code = (code + bl_count[bits - 1]) << 1;
2562 }
2563 /* Check that the bit counts in bl_count are consistent. The last code
2564 * must be all ones.
2565 */
2566 Assert(code + bl_count[MAX_BITS] - 1 == (1 << MAX_BITS) - 1,
2567 "inconsistent bit counts");
2568 Tracev((stderr, "\ngen_codes: max_code %d ", max_code));
Eric Andersencc8ed391999-10-05 16:24:54 +00002569
Erik Andersene49d5ec2000-02-08 19:58:47 +00002570 for (n = 0; n <= max_code; n++) {
2571 int len = tree[n].Len;
Eric Andersencc8ed391999-10-05 16:24:54 +00002572
Erik Andersene49d5ec2000-02-08 19:58:47 +00002573 if (len == 0)
2574 continue;
2575 /* Now reverse the bits */
2576 tree[n].Code = bi_reverse(next_code[len]++, len);
2577
2578 Tracec(tree != static_ltree,
2579 (stderr, "\nn %3d %c l %2d c %4x (%x) ", n,
2580 (isgraph(n) ? n : ' '), len, tree[n].Code,
2581 next_code[len] - 1));
2582 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002583}
2584
2585/* ===========================================================================
2586 * Construct one Huffman tree and assigns the code bit strings and lengths.
2587 * Update the total bit length for the current block.
2588 * IN assertion: the field freq is set for all tree elements.
2589 * OUT assertions: the fields len and code are set to the optimal bit length
2590 * and corresponding code. The length opt_len is updated; static_len is
2591 * also updated if stree is not null. The field max_code is set.
2592 */
2593local void build_tree(desc)
Erik Andersene49d5ec2000-02-08 19:58:47 +00002594tree_desc near *desc; /* the tree descriptor */
Eric Andersencc8ed391999-10-05 16:24:54 +00002595{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002596 ct_data near *tree = desc->dyn_tree;
2597 ct_data near *stree = desc->static_tree;
2598 int elems = desc->elems;
2599 int n, m; /* iterate over heap elements */
2600 int max_code = -1; /* largest code with non zero frequency */
2601 int node = elems; /* next internal node of the tree */
Eric Andersencc8ed391999-10-05 16:24:54 +00002602
Erik Andersene49d5ec2000-02-08 19:58:47 +00002603 /* Construct the initial heap, with least frequent element in
2604 * heap[SMALLEST]. The sons of heap[n] are heap[2*n] and heap[2*n+1].
2605 * heap[0] is not used.
2606 */
2607 heap_len = 0, heap_max = HEAP_SIZE;
Eric Andersencc8ed391999-10-05 16:24:54 +00002608
Erik Andersene49d5ec2000-02-08 19:58:47 +00002609 for (n = 0; n < elems; n++) {
2610 if (tree[n].Freq != 0) {
2611 heap[++heap_len] = max_code = n;
2612 depth[n] = 0;
2613 } else {
2614 tree[n].Len = 0;
2615 }
2616 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002617
Erik Andersene49d5ec2000-02-08 19:58:47 +00002618 /* The pkzip format requires that at least one distance code exists,
2619 * and that at least one bit should be sent even if there is only one
2620 * possible code. So to avoid special checks later on we force at least
2621 * two codes of non zero frequency.
2622 */
2623 while (heap_len < 2) {
2624 int new = heap[++heap_len] = (max_code < 2 ? ++max_code : 0);
Eric Andersencc8ed391999-10-05 16:24:54 +00002625
Erik Andersene49d5ec2000-02-08 19:58:47 +00002626 tree[new].Freq = 1;
2627 depth[new] = 0;
2628 opt_len--;
2629 if (stree)
2630 static_len -= stree[new].Len;
2631 /* new is 0 or 1 so it does not have extra bits */
2632 }
2633 desc->max_code = max_code;
Eric Andersencc8ed391999-10-05 16:24:54 +00002634
Erik Andersene49d5ec2000-02-08 19:58:47 +00002635 /* The elements heap[heap_len/2+1 .. heap_len] are leaves of the tree,
2636 * establish sub-heaps of increasing lengths:
2637 */
2638 for (n = heap_len / 2; n >= 1; n--)
2639 pqdownheap(tree, n);
Eric Andersencc8ed391999-10-05 16:24:54 +00002640
Erik Andersene49d5ec2000-02-08 19:58:47 +00002641 /* Construct the Huffman tree by repeatedly combining the least two
2642 * frequent nodes.
2643 */
2644 do {
2645 pqremove(tree, n); /* n = node of least frequency */
2646 m = heap[SMALLEST]; /* m = node of next least frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +00002647
Erik Andersene49d5ec2000-02-08 19:58:47 +00002648 heap[--heap_max] = n; /* keep the nodes sorted by frequency */
2649 heap[--heap_max] = m;
2650
2651 /* Create a new node father of n and m */
2652 tree[node].Freq = tree[n].Freq + tree[m].Freq;
2653 depth[node] = (uch) (MAX(depth[n], depth[m]) + 1);
2654 tree[n].Dad = tree[m].Dad = (ush) node;
Eric Andersencc8ed391999-10-05 16:24:54 +00002655#ifdef DUMP_BL_TREE
Erik Andersene49d5ec2000-02-08 19:58:47 +00002656 if (tree == bl_tree) {
2657 fprintf(stderr, "\nnode %d(%d), sons %d(%d) %d(%d)",
2658 node, tree[node].Freq, n, tree[n].Freq, m,
2659 tree[m].Freq);
2660 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002661#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00002662 /* and insert the new node in the heap */
2663 heap[SMALLEST] = node++;
2664 pqdownheap(tree, SMALLEST);
Eric Andersencc8ed391999-10-05 16:24:54 +00002665
Erik Andersene49d5ec2000-02-08 19:58:47 +00002666 } while (heap_len >= 2);
Eric Andersencc8ed391999-10-05 16:24:54 +00002667
Erik Andersene49d5ec2000-02-08 19:58:47 +00002668 heap[--heap_max] = heap[SMALLEST];
Eric Andersencc8ed391999-10-05 16:24:54 +00002669
Erik Andersene49d5ec2000-02-08 19:58:47 +00002670 /* At this point, the fields freq and dad are set. We can now
2671 * generate the bit lengths.
2672 */
2673 gen_bitlen((tree_desc near *) desc);
Eric Andersencc8ed391999-10-05 16:24:54 +00002674
Erik Andersene49d5ec2000-02-08 19:58:47 +00002675 /* The field len is now set, we can generate the bit codes */
2676 gen_codes((ct_data near *) tree, max_code);
Eric Andersencc8ed391999-10-05 16:24:54 +00002677}
2678
2679/* ===========================================================================
2680 * Scan a literal or distance tree to determine the frequencies of the codes
2681 * in the bit length tree. Updates opt_len to take into account the repeat
2682 * counts. (The contribution of the bit length codes will be added later
2683 * during the construction of bl_tree.)
2684 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002685local void scan_tree(tree, max_code)
2686ct_data near *tree; /* the tree to be scanned */
2687int max_code; /* and its largest code of non zero frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +00002688{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002689 int n; /* iterates over all tree elements */
2690 int prevlen = -1; /* last emitted length */
2691 int curlen; /* length of current code */
2692 int nextlen = tree[0].Len; /* length of next code */
2693 int count = 0; /* repeat count of the current code */
2694 int max_count = 7; /* max repeat count */
2695 int min_count = 4; /* min repeat count */
Eric Andersencc8ed391999-10-05 16:24:54 +00002696
Erik Andersene49d5ec2000-02-08 19:58:47 +00002697 if (nextlen == 0)
2698 max_count = 138, min_count = 3;
2699 tree[max_code + 1].Len = (ush) 0xffff; /* guard */
Eric Andersencc8ed391999-10-05 16:24:54 +00002700
Erik Andersene49d5ec2000-02-08 19:58:47 +00002701 for (n = 0; n <= max_code; n++) {
2702 curlen = nextlen;
2703 nextlen = tree[n + 1].Len;
2704 if (++count < max_count && curlen == nextlen) {
2705 continue;
2706 } else if (count < min_count) {
2707 bl_tree[curlen].Freq += count;
2708 } else if (curlen != 0) {
2709 if (curlen != prevlen)
2710 bl_tree[curlen].Freq++;
2711 bl_tree[REP_3_6].Freq++;
2712 } else if (count <= 10) {
2713 bl_tree[REPZ_3_10].Freq++;
2714 } else {
2715 bl_tree[REPZ_11_138].Freq++;
2716 }
2717 count = 0;
2718 prevlen = curlen;
2719 if (nextlen == 0) {
2720 max_count = 138, min_count = 3;
2721 } else if (curlen == nextlen) {
2722 max_count = 6, min_count = 3;
2723 } else {
2724 max_count = 7, min_count = 4;
2725 }
2726 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002727}
2728
2729/* ===========================================================================
2730 * Send a literal or distance tree in compressed form, using the codes in
2731 * bl_tree.
2732 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002733local void send_tree(tree, max_code)
2734ct_data near *tree; /* the tree to be scanned */
2735int max_code; /* and its largest code of non zero frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +00002736{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002737 int n; /* iterates over all tree elements */
2738 int prevlen = -1; /* last emitted length */
2739 int curlen; /* length of current code */
2740 int nextlen = tree[0].Len; /* length of next code */
2741 int count = 0; /* repeat count of the current code */
2742 int max_count = 7; /* max repeat count */
2743 int min_count = 4; /* min repeat count */
Eric Andersencc8ed391999-10-05 16:24:54 +00002744
Erik Andersene49d5ec2000-02-08 19:58:47 +00002745/* tree[max_code+1].Len = -1; *//* guard already set */
2746 if (nextlen == 0)
2747 max_count = 138, min_count = 3;
Eric Andersencc8ed391999-10-05 16:24:54 +00002748
Erik Andersene49d5ec2000-02-08 19:58:47 +00002749 for (n = 0; n <= max_code; n++) {
2750 curlen = nextlen;
2751 nextlen = tree[n + 1].Len;
2752 if (++count < max_count && curlen == nextlen) {
2753 continue;
2754 } else if (count < min_count) {
2755 do {
2756 send_code(curlen, bl_tree);
2757 } while (--count != 0);
Eric Andersencc8ed391999-10-05 16:24:54 +00002758
Erik Andersene49d5ec2000-02-08 19:58:47 +00002759 } else if (curlen != 0) {
2760 if (curlen != prevlen) {
2761 send_code(curlen, bl_tree);
2762 count--;
2763 }
2764 Assert(count >= 3 && count <= 6, " 3_6?");
2765 send_code(REP_3_6, bl_tree);
2766 send_bits(count - 3, 2);
Eric Andersencc8ed391999-10-05 16:24:54 +00002767
Erik Andersene49d5ec2000-02-08 19:58:47 +00002768 } else if (count <= 10) {
2769 send_code(REPZ_3_10, bl_tree);
2770 send_bits(count - 3, 3);
Eric Andersencc8ed391999-10-05 16:24:54 +00002771
Erik Andersene49d5ec2000-02-08 19:58:47 +00002772 } else {
2773 send_code(REPZ_11_138, bl_tree);
2774 send_bits(count - 11, 7);
2775 }
2776 count = 0;
2777 prevlen = curlen;
2778 if (nextlen == 0) {
2779 max_count = 138, min_count = 3;
2780 } else if (curlen == nextlen) {
2781 max_count = 6, min_count = 3;
2782 } else {
2783 max_count = 7, min_count = 4;
2784 }
2785 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002786}
2787
2788/* ===========================================================================
2789 * Construct the Huffman tree for the bit lengths and return the index in
2790 * bl_order of the last bit length code to send.
2791 */
2792local int build_bl_tree()
2793{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002794 int max_blindex; /* index of last bit length code of non zero freq */
Eric Andersencc8ed391999-10-05 16:24:54 +00002795
Erik Andersene49d5ec2000-02-08 19:58:47 +00002796 /* Determine the bit length frequencies for literal and distance trees */
2797 scan_tree((ct_data near *) dyn_ltree, l_desc.max_code);
2798 scan_tree((ct_data near *) dyn_dtree, d_desc.max_code);
Eric Andersencc8ed391999-10-05 16:24:54 +00002799
Erik Andersene49d5ec2000-02-08 19:58:47 +00002800 /* Build the bit length tree: */
2801 build_tree((tree_desc near *) (&bl_desc));
2802 /* opt_len now includes the length of the tree representations, except
2803 * the lengths of the bit lengths codes and the 5+5+4 bits for the counts.
2804 */
Eric Andersencc8ed391999-10-05 16:24:54 +00002805
Erik Andersene49d5ec2000-02-08 19:58:47 +00002806 /* Determine the number of bit length codes to send. The pkzip format
2807 * requires that at least 4 bit length codes be sent. (appnote.txt says
2808 * 3 but the actual value used is 4.)
2809 */
2810 for (max_blindex = BL_CODES - 1; max_blindex >= 3; max_blindex--) {
2811 if (bl_tree[bl_order[max_blindex]].Len != 0)
2812 break;
2813 }
2814 /* Update opt_len to include the bit length tree and counts */
2815 opt_len += 3 * (max_blindex + 1) + 5 + 5 + 4;
2816 Tracev(
2817 (stderr, "\ndyn trees: dyn %ld, stat %ld", opt_len,
2818 static_len));
Eric Andersencc8ed391999-10-05 16:24:54 +00002819
Erik Andersene49d5ec2000-02-08 19:58:47 +00002820 return max_blindex;
Eric Andersencc8ed391999-10-05 16:24:54 +00002821}
2822
2823/* ===========================================================================
2824 * Send the header for a block using dynamic Huffman trees: the counts, the
2825 * lengths of the bit length codes, the literal tree and the distance tree.
2826 * IN assertion: lcodes >= 257, dcodes >= 1, blcodes >= 4.
2827 */
2828local void send_all_trees(lcodes, dcodes, blcodes)
Erik Andersene49d5ec2000-02-08 19:58:47 +00002829int lcodes, dcodes, blcodes; /* number of codes for each tree */
Eric Andersencc8ed391999-10-05 16:24:54 +00002830{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002831 int rank; /* index in bl_order */
Eric Andersencc8ed391999-10-05 16:24:54 +00002832
Erik Andersene49d5ec2000-02-08 19:58:47 +00002833 Assert(lcodes >= 257 && dcodes >= 1
2834 && blcodes >= 4, "not enough codes");
2835 Assert(lcodes <= L_CODES && dcodes <= D_CODES
2836 && blcodes <= BL_CODES, "too many codes");
2837 Tracev((stderr, "\nbl counts: "));
2838 send_bits(lcodes - 257, 5); /* not +255 as stated in appnote.txt */
2839 send_bits(dcodes - 1, 5);
2840 send_bits(blcodes - 4, 4); /* not -3 as stated in appnote.txt */
2841 for (rank = 0; rank < blcodes; rank++) {
2842 Tracev((stderr, "\nbl code %2d ", bl_order[rank]));
2843 send_bits(bl_tree[bl_order[rank]].Len, 3);
2844 }
2845 Tracev((stderr, "\nbl tree: sent %ld", bits_sent));
Eric Andersencc8ed391999-10-05 16:24:54 +00002846
Erik Andersene49d5ec2000-02-08 19:58:47 +00002847 send_tree((ct_data near *) dyn_ltree, lcodes - 1); /* send the literal tree */
2848 Tracev((stderr, "\nlit tree: sent %ld", bits_sent));
Eric Andersencc8ed391999-10-05 16:24:54 +00002849
Erik Andersene49d5ec2000-02-08 19:58:47 +00002850 send_tree((ct_data near *) dyn_dtree, dcodes - 1); /* send the distance tree */
2851 Tracev((stderr, "\ndist tree: sent %ld", bits_sent));
Eric Andersencc8ed391999-10-05 16:24:54 +00002852}
2853
2854/* ===========================================================================
2855 * Determine the best encoding for the current block: dynamic trees, static
2856 * trees or store, and output the encoded block to the zip file. This function
2857 * returns the total compressed length for the file so far.
2858 */
2859ulg flush_block(buf, stored_len, eof)
Erik Andersene49d5ec2000-02-08 19:58:47 +00002860char *buf; /* input block, or NULL if too old */
2861ulg stored_len; /* length of input block */
2862int eof; /* true if this is the last block for a file */
Eric Andersencc8ed391999-10-05 16:24:54 +00002863{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002864 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
2865 int max_blindex; /* index of last bit length code of non zero freq */
Eric Andersencc8ed391999-10-05 16:24:54 +00002866
Erik Andersene49d5ec2000-02-08 19:58:47 +00002867 flag_buf[last_flags] = flags; /* Save the flags for the last 8 items */
Eric Andersencc8ed391999-10-05 16:24:54 +00002868
Erik Andersene49d5ec2000-02-08 19:58:47 +00002869 /* Check if the file is ascii or binary */
2870 if (*file_type == (ush) UNKNOWN)
2871 set_file_type();
Eric Andersencc8ed391999-10-05 16:24:54 +00002872
Erik Andersene49d5ec2000-02-08 19:58:47 +00002873 /* Construct the literal and distance trees */
2874 build_tree((tree_desc near *) (&l_desc));
2875 Tracev((stderr, "\nlit data: dyn %ld, stat %ld", opt_len, static_len));
Eric Andersencc8ed391999-10-05 16:24:54 +00002876
Erik Andersene49d5ec2000-02-08 19:58:47 +00002877 build_tree((tree_desc near *) (&d_desc));
2878 Tracev(
2879 (stderr, "\ndist data: dyn %ld, stat %ld", opt_len,
2880 static_len));
2881 /* At this point, opt_len and static_len are the total bit lengths of
2882 * the compressed block data, excluding the tree representations.
2883 */
Eric Andersencc8ed391999-10-05 16:24:54 +00002884
Erik Andersene49d5ec2000-02-08 19:58:47 +00002885 /* Build the bit length tree for the above two trees, and get the index
2886 * in bl_order of the last bit length code to send.
2887 */
2888 max_blindex = build_bl_tree();
Eric Andersencc8ed391999-10-05 16:24:54 +00002889
Erik Andersene49d5ec2000-02-08 19:58:47 +00002890 /* Determine the best encoding. Compute first the block length in bytes */
2891 opt_lenb = (opt_len + 3 + 7) >> 3;
2892 static_lenb = (static_len + 3 + 7) >> 3;
2893 input_len += stored_len; /* for debugging only */
Eric Andersencc8ed391999-10-05 16:24:54 +00002894
Erik Andersene49d5ec2000-02-08 19:58:47 +00002895 Trace(
2896 (stderr,
2897 "\nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u dist %u ",
2898 opt_lenb, opt_len, static_lenb, static_len, stored_len,
2899 last_lit, last_dist));
Eric Andersencc8ed391999-10-05 16:24:54 +00002900
Erik Andersene49d5ec2000-02-08 19:58:47 +00002901 if (static_lenb <= opt_lenb)
2902 opt_lenb = static_lenb;
Eric Andersencc8ed391999-10-05 16:24:54 +00002903
Erik Andersene49d5ec2000-02-08 19:58:47 +00002904 /* If compression failed and this is the first and last block,
2905 * and if the zip file can be seeked (to rewrite the local header),
2906 * the whole file is transformed into a stored file:
2907 */
Eric Andersencc8ed391999-10-05 16:24:54 +00002908#ifdef FORCE_METHOD
2909#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00002910 if (stored_len <= opt_lenb && eof && compressed_len == 0L
2911 && seekable()) {
Eric Andersencc8ed391999-10-05 16:24:54 +00002912#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00002913 /* Since LIT_BUFSIZE <= 2*WSIZE, the input data must be there: */
2914 if (buf == (char *) 0)
Erik Andersen9ffdaa62000-02-11 21:55:04 +00002915 errorMsg("block vanished");
Eric Andersencc8ed391999-10-05 16:24:54 +00002916
Erik Andersene49d5ec2000-02-08 19:58:47 +00002917 copy_block(buf, (unsigned) stored_len, 0); /* without header */
2918 compressed_len = stored_len << 3;
2919 *file_method = STORED;
Eric Andersencc8ed391999-10-05 16:24:54 +00002920
2921#ifdef FORCE_METHOD
2922#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00002923 } else if (stored_len + 4 <= opt_lenb && buf != (char *) 0) {
2924 /* 4: two words for the lengths */
Eric Andersencc8ed391999-10-05 16:24:54 +00002925#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00002926 /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE.
2927 * Otherwise we can't have processed more than WSIZE input bytes since
2928 * the last block flush, because compression would have been
2929 * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to
2930 * transform a block into a stored block.
2931 */
2932 send_bits((STORED_BLOCK << 1) + eof, 3); /* send block type */
2933 compressed_len = (compressed_len + 3 + 7) & ~7L;
2934 compressed_len += (stored_len + 4) << 3;
Eric Andersencc8ed391999-10-05 16:24:54 +00002935
Erik Andersene49d5ec2000-02-08 19:58:47 +00002936 copy_block(buf, (unsigned) stored_len, 1); /* with header */
Eric Andersencc8ed391999-10-05 16:24:54 +00002937
2938#ifdef FORCE_METHOD
2939#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00002940 } else if (static_lenb == opt_lenb) {
Eric Andersencc8ed391999-10-05 16:24:54 +00002941#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00002942 send_bits((STATIC_TREES << 1) + eof, 3);
2943 compress_block((ct_data near *) static_ltree,
2944 (ct_data near *) static_dtree);
2945 compressed_len += 3 + static_len;
2946 } else {
2947 send_bits((DYN_TREES << 1) + eof, 3);
2948 send_all_trees(l_desc.max_code + 1, d_desc.max_code + 1,
2949 max_blindex + 1);
2950 compress_block((ct_data near *) dyn_ltree,
2951 (ct_data near *) dyn_dtree);
2952 compressed_len += 3 + opt_len;
2953 }
2954 Assert(compressed_len == bits_sent, "bad compressed size");
2955 init_block();
Eric Andersencc8ed391999-10-05 16:24:54 +00002956
Erik Andersene49d5ec2000-02-08 19:58:47 +00002957 if (eof) {
2958 Assert(input_len == isize, "bad input size");
2959 bi_windup();
2960 compressed_len += 7; /* align on byte boundary */
2961 }
2962 Tracev((stderr, "\ncomprlen %lu(%lu) ", compressed_len >> 3,
2963 compressed_len - 7 * eof));
Eric Andersencc8ed391999-10-05 16:24:54 +00002964
Erik Andersene49d5ec2000-02-08 19:58:47 +00002965 return compressed_len >> 3;
Eric Andersencc8ed391999-10-05 16:24:54 +00002966}
2967
2968/* ===========================================================================
2969 * Save the match info and tally the frequency counts. Return true if
2970 * the current block must be flushed.
2971 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002972int ct_tally(dist, lc)
2973int dist; /* distance of matched string */
2974int lc; /* match length-MIN_MATCH or unmatched char (if dist==0) */
Eric Andersencc8ed391999-10-05 16:24:54 +00002975{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002976 l_buf[last_lit++] = (uch) lc;
2977 if (dist == 0) {
2978 /* lc is the unmatched char */
2979 dyn_ltree[lc].Freq++;
2980 } else {
2981 /* Here, lc is the match length - MIN_MATCH */
2982 dist--; /* dist = match distance - 1 */
2983 Assert((ush) dist < (ush) MAX_DIST &&
2984 (ush) lc <= (ush) (MAX_MATCH - MIN_MATCH) &&
2985 (ush) d_code(dist) < (ush) D_CODES, "ct_tally: bad match");
Eric Andersencc8ed391999-10-05 16:24:54 +00002986
Erik Andersene49d5ec2000-02-08 19:58:47 +00002987 dyn_ltree[length_code[lc] + LITERALS + 1].Freq++;
2988 dyn_dtree[d_code(dist)].Freq++;
Eric Andersencc8ed391999-10-05 16:24:54 +00002989
Erik Andersene49d5ec2000-02-08 19:58:47 +00002990 d_buf[last_dist++] = (ush) dist;
2991 flags |= flag_bit;
2992 }
2993 flag_bit <<= 1;
Eric Andersencc8ed391999-10-05 16:24:54 +00002994
Erik Andersene49d5ec2000-02-08 19:58:47 +00002995 /* Output the flags if they fill a byte: */
2996 if ((last_lit & 7) == 0) {
2997 flag_buf[last_flags++] = flags;
2998 flags = 0, flag_bit = 1;
2999 }
3000 /* Try to guess if it is profitable to stop the current block here */
3001 if ((last_lit & 0xfff) == 0) {
3002 /* Compute an upper bound for the compressed length */
3003 ulg out_length = (ulg) last_lit * 8L;
3004 ulg in_length = (ulg) strstart - block_start;
3005 int dcode;
3006
3007 for (dcode = 0; dcode < D_CODES; dcode++) {
3008 out_length +=
3009 (ulg) dyn_dtree[dcode].Freq * (5L + extra_dbits[dcode]);
3010 }
3011 out_length >>= 3;
3012 Trace(
3013 (stderr,
3014 "\nlast_lit %u, last_dist %u, in %ld, out ~%ld(%ld%%) ",
3015 last_lit, last_dist, in_length, out_length,
3016 100L - out_length * 100L / in_length));
3017 if (last_dist < last_lit / 2 && out_length < in_length / 2)
3018 return 1;
3019 }
3020 return (last_lit == LIT_BUFSIZE - 1 || last_dist == DIST_BUFSIZE);
3021 /* We avoid equality with LIT_BUFSIZE because of wraparound at 64K
3022 * on 16 bit machines and because stored blocks are restricted to
3023 * 64K-1 bytes.
3024 */
Eric Andersencc8ed391999-10-05 16:24:54 +00003025}
3026
3027/* ===========================================================================
3028 * Send the block data compressed using the given Huffman trees
3029 */
3030local void compress_block(ltree, dtree)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003031ct_data near *ltree; /* literal tree */
3032ct_data near *dtree; /* distance tree */
Eric Andersencc8ed391999-10-05 16:24:54 +00003033{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003034 unsigned dist; /* distance of matched string */
3035 int lc; /* match length or unmatched char (if dist == 0) */
3036 unsigned lx = 0; /* running index in l_buf */
3037 unsigned dx = 0; /* running index in d_buf */
3038 unsigned fx = 0; /* running index in flag_buf */
3039 uch flag = 0; /* current flags */
3040 unsigned code; /* the code to send */
3041 int extra; /* number of extra bits to send */
Eric Andersencc8ed391999-10-05 16:24:54 +00003042
Erik Andersene49d5ec2000-02-08 19:58:47 +00003043 if (last_lit != 0)
3044 do {
3045 if ((lx & 7) == 0)
3046 flag = flag_buf[fx++];
3047 lc = l_buf[lx++];
3048 if ((flag & 1) == 0) {
3049 send_code(lc, ltree); /* send a literal byte */
3050 Tracecv(isgraph(lc), (stderr, " '%c' ", lc));
3051 } else {
3052 /* Here, lc is the match length - MIN_MATCH */
3053 code = length_code[lc];
3054 send_code(code + LITERALS + 1, ltree); /* send the length code */
3055 extra = extra_lbits[code];
3056 if (extra != 0) {
3057 lc -= base_length[code];
3058 send_bits(lc, extra); /* send the extra length bits */
3059 }
3060 dist = d_buf[dx++];
3061 /* Here, dist is the match distance - 1 */
3062 code = d_code(dist);
3063 Assert(code < D_CODES, "bad d_code");
Eric Andersencc8ed391999-10-05 16:24:54 +00003064
Erik Andersene49d5ec2000-02-08 19:58:47 +00003065 send_code(code, dtree); /* send the distance code */
3066 extra = extra_dbits[code];
3067 if (extra != 0) {
3068 dist -= base_dist[code];
3069 send_bits(dist, extra); /* send the extra distance bits */
3070 }
3071 } /* literal or match pair ? */
3072 flag >>= 1;
3073 } while (lx < last_lit);
Eric Andersencc8ed391999-10-05 16:24:54 +00003074
Erik Andersene49d5ec2000-02-08 19:58:47 +00003075 send_code(END_BLOCK, ltree);
Eric Andersencc8ed391999-10-05 16:24:54 +00003076}
3077
3078/* ===========================================================================
3079 * Set the file type to ASCII or BINARY, using a crude approximation:
3080 * binary if more than 20% of the bytes are <= 6 or >= 128, ascii otherwise.
3081 * IN assertion: the fields freq of dyn_ltree are set and the total of all
3082 * frequencies does not exceed 64K (to fit in an int on 16 bit machines).
3083 */
3084local void set_file_type()
3085{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003086 int n = 0;
3087 unsigned ascii_freq = 0;
3088 unsigned bin_freq = 0;
3089
3090 while (n < 7)
3091 bin_freq += dyn_ltree[n++].Freq;
3092 while (n < 128)
3093 ascii_freq += dyn_ltree[n++].Freq;
3094 while (n < LITERALS)
3095 bin_freq += dyn_ltree[n++].Freq;
3096 *file_type = bin_freq > (ascii_freq >> 2) ? BINARY : ASCII;
3097 if (*file_type == BINARY && translate_eol) {
Erik Andersen825aead2000-04-07 06:00:07 +00003098 errorMsg("-l used on binary file");
Erik Andersene49d5ec2000-02-08 19:58:47 +00003099 }
Eric Andersencc8ed391999-10-05 16:24:54 +00003100}
Erik Andersene49d5ec2000-02-08 19:58:47 +00003101
Eric Andersencc8ed391999-10-05 16:24:54 +00003102/* util.c -- utility functions for gzip support
3103 * Copyright (C) 1992-1993 Jean-loup Gailly
3104 * This is free software; you can redistribute it and/or modify it under the
3105 * terms of the GNU General Public License, see the file COPYING.
3106 */
3107
Eric Andersencc8ed391999-10-05 16:24:54 +00003108#include <ctype.h>
3109#include <errno.h>
3110#include <sys/types.h>
3111
3112#ifdef HAVE_UNISTD_H
3113# include <unistd.h>
3114#endif
3115#ifndef NO_FCNTL_H
3116# include <fcntl.h>
3117#endif
3118
3119#if defined(STDC_HEADERS) || !defined(NO_STDLIB_H)
3120# include <stdlib.h>
3121#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00003122extern int errno;
Eric Andersencc8ed391999-10-05 16:24:54 +00003123#endif
3124
Eric Andersencc8ed391999-10-05 16:24:54 +00003125/* ===========================================================================
3126 * Copy input to output unchanged: zcat == cat with --force.
3127 * IN assertion: insize bytes have already been read in inbuf.
3128 */
3129int copy(in, out)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003130int in, out; /* input and output file descriptors */
Eric Andersencc8ed391999-10-05 16:24:54 +00003131{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003132 errno = 0;
3133 while (insize != 0 && (int) insize != EOF) {
3134 write_buf(out, (char *) inbuf, insize);
3135 bytes_out += insize;
3136 insize = read(in, (char *) inbuf, INBUFSIZ);
3137 }
3138 if ((int) insize == EOF && errno != 0) {
Erik Andersen330fd2b2000-05-19 05:35:19 +00003139 read_error_msg();
Erik Andersene49d5ec2000-02-08 19:58:47 +00003140 }
3141 bytes_in = bytes_out;
3142 return OK;
Eric Andersencc8ed391999-10-05 16:24:54 +00003143}
3144
3145/* ========================================================================
3146 * Put string s in lower case, return s.
3147 */
3148char *strlwr(s)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003149char *s;
Eric Andersencc8ed391999-10-05 16:24:54 +00003150{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003151 char *t;
3152
3153 for (t = s; *t; t++)
3154 *t = tolow(*t);
3155 return s;
Eric Andersencc8ed391999-10-05 16:24:54 +00003156}
3157
3158#if defined(NO_STRING_H) && !defined(STDC_HEADERS)
3159
3160/* Provide missing strspn and strcspn functions. */
3161
Erik Andersen61677fe2000-04-13 01:18:56 +00003162int strspn (const char *s, const char *accept);
3163int strcspn (const char *s, const char *reject);
Eric Andersencc8ed391999-10-05 16:24:54 +00003164
3165/* ========================================================================
3166 * Return the length of the maximum initial segment
3167 * of s which contains only characters in accept.
3168 */
3169int strspn(s, accept)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003170const char *s;
3171const char *accept;
Eric Andersencc8ed391999-10-05 16:24:54 +00003172{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003173 register const char *p;
3174 register const char *a;
3175 register int count = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00003176
Erik Andersene49d5ec2000-02-08 19:58:47 +00003177 for (p = s; *p != '\0'; ++p) {
3178 for (a = accept; *a != '\0'; ++a) {
3179 if (*p == *a)
3180 break;
3181 }
3182 if (*a == '\0')
3183 return count;
3184 ++count;
Eric Andersencc8ed391999-10-05 16:24:54 +00003185 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00003186 return count;
Eric Andersencc8ed391999-10-05 16:24:54 +00003187}
3188
3189/* ========================================================================
3190 * Return the length of the maximum inital segment of s
3191 * which contains no characters from reject.
3192 */
3193int strcspn(s, reject)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003194const char *s;
3195const char *reject;
Eric Andersencc8ed391999-10-05 16:24:54 +00003196{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003197 register int count = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00003198
Erik Andersene49d5ec2000-02-08 19:58:47 +00003199 while (*s != '\0') {
3200 if (strchr(reject, *s++) != NULL)
3201 return count;
3202 ++count;
3203 }
3204 return count;
Eric Andersencc8ed391999-10-05 16:24:54 +00003205}
3206
Erik Andersene49d5ec2000-02-08 19:58:47 +00003207#endif /* NO_STRING_H */
Eric Andersencc8ed391999-10-05 16:24:54 +00003208
3209/* ========================================================================
3210 * Add an environment variable (if any) before argv, and update argc.
3211 * Return the expanded environment variable to be freed later, or NULL
3212 * if no options were added to argv.
3213 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00003214#define SEPARATOR " \t" /* separators in env variable */
Eric Andersencc8ed391999-10-05 16:24:54 +00003215
3216char *add_envopt(argcp, argvp, env)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003217int *argcp; /* pointer to argc */
3218char ***argvp; /* pointer to argv */
3219char *env; /* name of environment variable */
Eric Andersencc8ed391999-10-05 16:24:54 +00003220{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003221 char *p; /* running pointer through env variable */
3222 char **oargv; /* runs through old argv array */
3223 char **nargv; /* runs through new argv array */
3224 int oargc = *argcp; /* old argc */
3225 int nargc = 0; /* number of arguments in env variable */
Eric Andersencc8ed391999-10-05 16:24:54 +00003226
Erik Andersene49d5ec2000-02-08 19:58:47 +00003227 env = (char *) getenv(env);
3228 if (env == NULL)
3229 return NULL;
Eric Andersencc8ed391999-10-05 16:24:54 +00003230
Erik Andersene49d5ec2000-02-08 19:58:47 +00003231 p = (char *) xmalloc(strlen(env) + 1);
3232 env = strcpy(p, env); /* keep env variable intact */
Eric Andersencc8ed391999-10-05 16:24:54 +00003233
Erik Andersene49d5ec2000-02-08 19:58:47 +00003234 for (p = env; *p; nargc++) { /* move through env */
3235 p += strspn(p, SEPARATOR); /* skip leading separators */
3236 if (*p == '\0')
3237 break;
Eric Andersencc8ed391999-10-05 16:24:54 +00003238
Erik Andersene49d5ec2000-02-08 19:58:47 +00003239 p += strcspn(p, SEPARATOR); /* find end of word */
3240 if (*p)
3241 *p++ = '\0'; /* mark it */
3242 }
3243 if (nargc == 0) {
3244 free(env);
3245 return NULL;
3246 }
3247 *argcp += nargc;
3248 /* Allocate the new argv array, with an extra element just in case
3249 * the original arg list did not end with a NULL.
3250 */
3251 nargv = (char **) calloc(*argcp + 1, sizeof(char *));
Eric Andersencc8ed391999-10-05 16:24:54 +00003252
Erik Andersene49d5ec2000-02-08 19:58:47 +00003253 if (nargv == NULL)
Matt Kraaibe84cd42000-07-12 17:02:35 +00003254 errorMsg(memory_exhausted);
Erik Andersene49d5ec2000-02-08 19:58:47 +00003255 oargv = *argvp;
3256 *argvp = nargv;
Eric Andersencc8ed391999-10-05 16:24:54 +00003257
Erik Andersene49d5ec2000-02-08 19:58:47 +00003258 /* Copy the program name first */
3259 if (oargc-- < 0)
Erik Andersen9ffdaa62000-02-11 21:55:04 +00003260 errorMsg("argc<=0");
Erik Andersene49d5ec2000-02-08 19:58:47 +00003261 *(nargv++) = *(oargv++);
Eric Andersencc8ed391999-10-05 16:24:54 +00003262
Erik Andersene49d5ec2000-02-08 19:58:47 +00003263 /* Then copy the environment args */
3264 for (p = env; nargc > 0; nargc--) {
3265 p += strspn(p, SEPARATOR); /* skip separators */
3266 *(nargv++) = p; /* store start */
3267 while (*p++); /* skip over word */
3268 }
3269
3270 /* Finally copy the old args and add a NULL (usual convention) */
3271 while (oargc--)
3272 *(nargv++) = *(oargv++);
3273 *nargv = NULL;
3274 return env;
Eric Andersencc8ed391999-10-05 16:24:54 +00003275}
Erik Andersene49d5ec2000-02-08 19:58:47 +00003276
Eric Andersencc8ed391999-10-05 16:24:54 +00003277/* ========================================================================
3278 * Display compression ratio on the given stream on 6 characters.
3279 */
3280void display_ratio(num, den, file)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003281long num;
3282long den;
3283FILE *file;
Eric Andersencc8ed391999-10-05 16:24:54 +00003284{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003285 long ratio; /* 1000 times the compression ratio */
Eric Andersencc8ed391999-10-05 16:24:54 +00003286
Erik Andersene49d5ec2000-02-08 19:58:47 +00003287 if (den == 0) {
3288 ratio = 0; /* no compression */
3289 } else if (den < 2147483L) { /* (2**31 -1)/1000 */
3290 ratio = 1000L * num / den;
3291 } else {
3292 ratio = num / (den / 1000L);
3293 }
3294 if (ratio < 0) {
3295 putc('-', file);
3296 ratio = -ratio;
3297 } else {
3298 putc(' ', file);
3299 }
3300 fprintf(file, "%2ld.%1ld%%", ratio / 10L, ratio % 10L);
Eric Andersencc8ed391999-10-05 16:24:54 +00003301}
3302
3303
3304/* zip.c -- compress files to the gzip or pkzip format
3305 * Copyright (C) 1992-1993 Jean-loup Gailly
3306 * This is free software; you can redistribute it and/or modify it under the
3307 * terms of the GNU General Public License, see the file COPYING.
3308 */
3309
Eric Andersencc8ed391999-10-05 16:24:54 +00003310#include <ctype.h>
3311#include <sys/types.h>
3312
3313#ifdef HAVE_UNISTD_H
3314# include <unistd.h>
3315#endif
3316#ifndef NO_FCNTL_H
3317# include <fcntl.h>
3318#endif
3319
Erik Andersene49d5ec2000-02-08 19:58:47 +00003320local ulg crc; /* crc on uncompressed file data */
3321long header_bytes; /* number of bytes in gzip header */
Eric Andersencc8ed391999-10-05 16:24:54 +00003322
3323/* ===========================================================================
3324 * Deflate in to out.
3325 * IN assertions: the input and output buffers are cleared.
3326 * The variables time_stamp and save_orig_name are initialized.
3327 */
3328int zip(in, out)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003329int in, out; /* input and output file descriptors */
Eric Andersencc8ed391999-10-05 16:24:54 +00003330{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003331 uch flags = 0; /* general purpose bit flags */
3332 ush attr = 0; /* ascii/binary flag */
3333 ush deflate_flags = 0; /* pkzip -es, -en or -ex equivalent */
Eric Andersencc8ed391999-10-05 16:24:54 +00003334
Erik Andersene49d5ec2000-02-08 19:58:47 +00003335 ifd = in;
3336 ofd = out;
3337 outcnt = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00003338
Erik Andersene49d5ec2000-02-08 19:58:47 +00003339 /* Write the header to the gzip file. See algorithm.doc for the format */
Eric Andersencc8ed391999-10-05 16:24:54 +00003340
Eric Andersen96bcfd31999-11-12 01:30:18 +00003341
Erik Andersene49d5ec2000-02-08 19:58:47 +00003342 method = DEFLATED;
3343 put_byte(GZIP_MAGIC[0]); /* magic header */
3344 put_byte(GZIP_MAGIC[1]);
3345 put_byte(DEFLATED); /* compression method */
Eric Andersencc8ed391999-10-05 16:24:54 +00003346
Erik Andersene49d5ec2000-02-08 19:58:47 +00003347 put_byte(flags); /* general flags */
3348 put_long(time_stamp);
Eric Andersencc8ed391999-10-05 16:24:54 +00003349
Erik Andersene49d5ec2000-02-08 19:58:47 +00003350 /* Write deflated file to zip file */
3351 crc = updcrc(0, 0);
Eric Andersencc8ed391999-10-05 16:24:54 +00003352
Erik Andersene49d5ec2000-02-08 19:58:47 +00003353 bi_init(out);
3354 ct_init(&attr, &method);
3355 lm_init(&deflate_flags);
Eric Andersencc8ed391999-10-05 16:24:54 +00003356
Erik Andersene49d5ec2000-02-08 19:58:47 +00003357 put_byte((uch) deflate_flags); /* extra flags */
3358 put_byte(OS_CODE); /* OS identifier */
Eric Andersencc8ed391999-10-05 16:24:54 +00003359
Erik Andersene49d5ec2000-02-08 19:58:47 +00003360 header_bytes = (long) outcnt;
Eric Andersencc8ed391999-10-05 16:24:54 +00003361
Erik Andersene49d5ec2000-02-08 19:58:47 +00003362 (void) deflate();
Eric Andersencc8ed391999-10-05 16:24:54 +00003363
Erik Andersene49d5ec2000-02-08 19:58:47 +00003364 /* Write the crc and uncompressed size */
3365 put_long(crc);
3366 put_long(isize);
3367 header_bytes += 2 * sizeof(long);
Eric Andersencc8ed391999-10-05 16:24:54 +00003368
Erik Andersene49d5ec2000-02-08 19:58:47 +00003369 flush_outbuf();
3370 return OK;
Eric Andersencc8ed391999-10-05 16:24:54 +00003371}
3372
3373
3374/* ===========================================================================
3375 * Read a new buffer from the current input file, perform end-of-line
3376 * translation, and update the crc and input file size.
3377 * IN assertion: size >= 2 (for end-of-line translation)
3378 */
3379int file_read(buf, size)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003380char *buf;
3381unsigned size;
Eric Andersencc8ed391999-10-05 16:24:54 +00003382{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003383 unsigned len;
Eric Andersencc8ed391999-10-05 16:24:54 +00003384
Erik Andersene49d5ec2000-02-08 19:58:47 +00003385 Assert(insize == 0, "inbuf not empty");
Eric Andersencc8ed391999-10-05 16:24:54 +00003386
Erik Andersene49d5ec2000-02-08 19:58:47 +00003387 len = read(ifd, buf, size);
3388 if (len == (unsigned) (-1) || len == 0)
3389 return (int) len;
Eric Andersencc8ed391999-10-05 16:24:54 +00003390
Erik Andersene49d5ec2000-02-08 19:58:47 +00003391 crc = updcrc((uch *) buf, len);
3392 isize += (ulg) len;
3393 return (int) len;
Eric Andersencc8ed391999-10-05 16:24:54 +00003394}