blob: 983f673e15eb7c847b69590de845c3f95d8d95fd [file] [log] [blame]
Eric Andersencc8ed391999-10-05 16:24:54 +00001/* gzip.c -- this is a stripped down version of gzip I put into busybox, it does
2 * only standard in to standard out with -9 compression. It also requires the
3 * zcat module for some important functions.
4 *
5 * Charles P. Wright <cpw@unix.asb.com>
6 */
7#include "internal.h"
8#ifdef BB_GZIP
9
Eric Andersen0dfac6b1999-11-11 05:46:32 +000010//#ifndef BB_ZCAT
11//#error you need zcat to have gzip support!
12//#endif
Eric Andersencc8ed391999-10-05 16:24:54 +000013
Eric Andersenc296b541999-11-11 01:36:55 +000014static const char gzip_usage[] =
Eric Andersen96bcfd31999-11-12 01:30:18 +000015 "gzip [OPTION]... FILE\n\n"
16 "Compress FILE with maximum compression.\n"
17 "When FILE is -, reads standard input. Implies -c.\n\n"
Eric Andersenc296b541999-11-11 01:36:55 +000018 "Options:\n"
Eric Andersen96bcfd31999-11-12 01:30:18 +000019 "\t-c\tWrite output to standard output instead of FILE.gz\n";
Eric Andersenc296b541999-11-11 01:36:55 +000020
Eric Andersencc8ed391999-10-05 16:24:54 +000021
22/* gzip.h -- common declarations for all gzip modules
23 * Copyright (C) 1992-1993 Jean-loup Gailly.
24 * This is free software; you can redistribute it and/or modify it under the
25 * terms of the GNU General Public License, see the file COPYING.
26 */
27
28#if defined(__STDC__) || defined(PROTO)
29# define OF(args) args
30#else
31# define OF(args) ()
32#endif
33
34#ifdef __STDC__
35 typedef void *voidp;
36#else
37 typedef char *voidp;
38#endif
39
40/* I don't like nested includes, but the string and io functions are used
41 * too often
42 */
43#include <stdio.h>
44#if !defined(NO_STRING_H) || defined(STDC_HEADERS)
45# include <string.h>
46# if !defined(STDC_HEADERS) && !defined(NO_MEMORY_H) && !defined(__GNUC__)
47# include <memory.h>
48# endif
49# define memzero(s, n) memset ((voidp)(s), 0, (n))
50#else
51# include <strings.h>
52# define strchr index
53# define strrchr rindex
54# define memcpy(d, s, n) bcopy((s), (d), (n))
55# define memcmp(s1, s2, n) bcmp((s1), (s2), (n))
56# define memzero(s, n) bzero((s), (n))
57#endif
58
59#ifndef RETSIGTYPE
60# define RETSIGTYPE void
61#endif
62
63#define local static
64
65typedef unsigned char uch;
66typedef unsigned short ush;
67typedef unsigned long ulg;
68
69/* Return codes from gzip */
70#define OK 0
71#define ERROR 1
72#define WARNING 2
73
74/* Compression methods (see algorithm.doc) */
75#define STORED 0
76#define COMPRESSED 1
77#define PACKED 2
78#define LZHED 3
79/* methods 4 to 7 reserved */
80#define DEFLATED 8
81#define MAX_METHODS 9
82extern int method; /* compression method */
83
84/* To save memory for 16 bit systems, some arrays are overlaid between
85 * the various modules:
86 * deflate: prev+head window d_buf l_buf outbuf
87 * unlzw: tab_prefix tab_suffix stack inbuf outbuf
88 * inflate: window inbuf
89 * unpack: window inbuf prefix_len
90 * unlzh: left+right window c_table inbuf c_len
91 * For compression, input is done in window[]. For decompression, output
92 * is done in window except for unlzw.
93 */
94
95#ifndef INBUFSIZ
96# ifdef SMALL_MEM
97# define INBUFSIZ 0x2000 /* input buffer size */
98# else
99# define INBUFSIZ 0x8000 /* input buffer size */
100# endif
101#endif
102#define INBUF_EXTRA 64 /* required by unlzw() */
103
104#ifndef OUTBUFSIZ
105# ifdef SMALL_MEM
106# define OUTBUFSIZ 8192 /* output buffer size */
107# else
108# define OUTBUFSIZ 16384 /* output buffer size */
109# endif
110#endif
111#define OUTBUF_EXTRA 2048 /* required by unlzw() */
112
113#ifndef DIST_BUFSIZE
114# ifdef SMALL_MEM
115# define DIST_BUFSIZE 0x2000 /* buffer for distances, see trees.c */
116# else
117# define DIST_BUFSIZE 0x8000 /* buffer for distances, see trees.c */
118# endif
119#endif
120
121#ifdef DYN_ALLOC
122# define EXTERN(type, array) extern type * near array
123# define DECLARE(type, array, size) type * near array
124# define ALLOC(type, array, size) { \
125 array = (type*)fcalloc((size_t)(((size)+1L)/2), 2*sizeof(type)); \
126 if (array == NULL) error("insufficient memory"); \
127 }
128# define FREE(array) {if (array != NULL) fcfree(array), array=NULL;}
129#else
130# define EXTERN(type, array) extern type array[]
131# define DECLARE(type, array, size) type array[size]
132# define ALLOC(type, array, size)
133# define FREE(array)
134#endif
135
136EXTERN(uch, inbuf); /* input buffer */
137EXTERN(uch, outbuf); /* output buffer */
138EXTERN(ush, d_buf); /* buffer for distances, see trees.c */
139EXTERN(uch, window); /* Sliding window and suffix table (unlzw) */
140#define tab_suffix window
141#ifndef MAXSEG_64K
142# define tab_prefix prev /* hash link (see deflate.c) */
143# define head (prev+WSIZE) /* hash head (see deflate.c) */
144 EXTERN(ush, tab_prefix); /* prefix code (see unlzw.c) */
145#else
146# define tab_prefix0 prev
147# define head tab_prefix1
148 EXTERN(ush, tab_prefix0); /* prefix for even codes */
149 EXTERN(ush, tab_prefix1); /* prefix for odd codes */
150#endif
151
152extern unsigned insize; /* valid bytes in inbuf */
153extern unsigned inptr; /* index of next byte to be processed in inbuf */
154extern unsigned outcnt; /* bytes in output buffer */
155
156extern long bytes_in; /* number of input bytes */
157extern long bytes_out; /* number of output bytes */
158extern long header_bytes;/* number of bytes in gzip header */
159
160#define isize bytes_in
161/* for compatibility with old zip sources (to be cleaned) */
162
163extern int ifd; /* input file descriptor */
164extern int ofd; /* output file descriptor */
165extern char ifname[]; /* input file name or "stdin" */
166extern char ofname[]; /* output file name or "stdout" */
167extern char *progname; /* program name */
168
169extern long time_stamp; /* original time stamp (modification time) */
170extern long ifile_size; /* input file size, -1 for devices (debug only) */
171
172typedef int file_t; /* Do not use stdio */
173#define NO_FILE (-1) /* in memory compression */
174
175
176#define PACK_MAGIC "\037\036" /* Magic header for packed files */
177#define GZIP_MAGIC "\037\213" /* Magic header for gzip files, 1F 8B */
178#define OLD_GZIP_MAGIC "\037\236" /* Magic header for gzip 0.5 = freeze 1.x */
179#define LZH_MAGIC "\037\240" /* Magic header for SCO LZH Compress files*/
180#define PKZIP_MAGIC "\120\113\003\004" /* Magic header for pkzip files */
181
182/* gzip flag byte */
183#define ASCII_FLAG 0x01 /* bit 0 set: file probably ascii text */
184#define CONTINUATION 0x02 /* bit 1 set: continuation of multi-part gzip file */
185#define EXTRA_FIELD 0x04 /* bit 2 set: extra field present */
186#define ORIG_NAME 0x08 /* bit 3 set: original file name present */
187#define COMMENT 0x10 /* bit 4 set: file comment present */
188#define ENCRYPTED 0x20 /* bit 5 set: file is encrypted */
189#define RESERVED 0xC0 /* bit 6,7: reserved */
190
191/* internal file attribute */
192#define UNKNOWN 0xffff
193#define BINARY 0
194#define ASCII 1
195
196#ifndef WSIZE
197# define WSIZE 0x8000 /* window size--must be a power of two, and */
198#endif /* at least 32K for zip's deflate method */
199
200#define MIN_MATCH 3
201#define MAX_MATCH 258
202/* The minimum and maximum match lengths */
203
204#define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
205/* Minimum amount of lookahead, except at the end of the input file.
206 * See deflate.c for comments about the MIN_MATCH+1.
207 */
208
209#define MAX_DIST (WSIZE-MIN_LOOKAHEAD)
210/* In order to simplify the code, particularly on 16 bit machines, match
211 * distances are limited to MAX_DIST instead of WSIZE.
212 */
213
214extern int decrypt; /* flag to turn on decryption */
215extern int exit_code; /* program exit code */
216extern int verbose; /* be verbose (-v) */
217extern int quiet; /* be quiet (-q) */
218extern int test; /* check .z file integrity */
Eric Andersencc8ed391999-10-05 16:24:54 +0000219extern int save_orig_name; /* set if original name must be saved */
220
221#define get_byte() (inptr < insize ? inbuf[inptr++] : fill_inbuf(0))
222#define try_byte() (inptr < insize ? inbuf[inptr++] : fill_inbuf(1))
223
224/* put_byte is used for the compressed output, put_ubyte for the
225 * uncompressed output. However unlzw() uses window for its
226 * suffix table instead of its output buffer, so it does not use put_ubyte
227 * (to be cleaned up).
228 */
229#define put_byte(c) {outbuf[outcnt++]=(uch)(c); if (outcnt==OUTBUFSIZ)\
230 flush_outbuf();}
231#define put_ubyte(c) {window[outcnt++]=(uch)(c); if (outcnt==WSIZE)\
232 flush_window();}
233
234/* Output a 16 bit value, lsb first */
235#define put_short(w) \
236{ if (outcnt < OUTBUFSIZ-2) { \
237 outbuf[outcnt++] = (uch) ((w) & 0xff); \
238 outbuf[outcnt++] = (uch) ((ush)(w) >> 8); \
239 } else { \
240 put_byte((uch)((w) & 0xff)); \
241 put_byte((uch)((ush)(w) >> 8)); \
242 } \
243}
244
245/* Output a 32 bit value to the bit stream, lsb first */
246#define put_long(n) { \
247 put_short((n) & 0xffff); \
248 put_short(((ulg)(n)) >> 16); \
249}
250
251#define seekable() 0 /* force sequential output */
252#define translate_eol 0 /* no option -a yet */
253
254#define tolow(c) (isupper(c) ? (c)-'A'+'a' : (c)) /* force to lower case */
255
256/* Macros for getting two-byte and four-byte header values */
257#define SH(p) ((ush)(uch)((p)[0]) | ((ush)(uch)((p)[1]) << 8))
258#define LG(p) ((ulg)(SH(p)) | ((ulg)(SH((p)+2)) << 16))
259
260/* Diagnostic functions */
261#ifdef DEBUG
262# define Assert(cond,msg) {if(!(cond)) error(msg);}
263# define Trace(x) fprintf x
264# define Tracev(x) {if (verbose) fprintf x ;}
265# define Tracevv(x) {if (verbose>1) fprintf x ;}
266# define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
267# define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
268#else
269# define Assert(cond,msg)
270# define Trace(x)
271# define Tracev(x)
272# define Tracevv(x)
273# define Tracec(c,x)
274# define Tracecv(c,x)
275#endif
276
277#define WARN(msg) {if (!quiet) fprintf msg ; \
278 if (exit_code == OK) exit_code = WARNING;}
279
Eric Andersen0dfac6b1999-11-11 05:46:32 +0000280local void do_exit(int exitcode) __attribute__ ((noreturn));
Eric Andersencc8ed391999-10-05 16:24:54 +0000281
282 /* in zip.c: */
283extern int zip OF((int in, int out));
284extern int file_read OF((char *buf, unsigned size));
285
286 /* in unzip.c */
287extern int unzip OF((int in, int out));
288extern int check_zipfile OF((int in));
289
290 /* in unpack.c */
291extern int unpack OF((int in, int out));
292
293 /* in unlzh.c */
294extern int unlzh OF((int in, int out));
295
296 /* in gzip.c */
297RETSIGTYPE abort_gzip OF((void));
298
299 /* in deflate.c */
300void lm_init OF((ush *flags));
301ulg deflate OF((void));
302
303 /* in trees.c */
304void ct_init OF((ush *attr, int *method));
305int ct_tally OF((int dist, int lc));
306ulg flush_block OF((char *buf, ulg stored_len, int eof));
307
308 /* in bits.c */
309void bi_init OF((file_t zipfile));
310void send_bits OF((int value, int length));
311unsigned bi_reverse OF((unsigned value, int length));
312void bi_windup OF((void));
313void copy_block OF((char *buf, unsigned len, int header));
314extern int (*read_buf) OF((char *buf, unsigned size));
315
316 /* in util.c: */
317extern int copy OF((int in, int out));
318extern ulg updcrc OF((uch *s, unsigned n));
319extern void clear_bufs OF((void));
320extern int fill_inbuf OF((int eof_ok));
321extern void flush_outbuf OF((void));
322extern void flush_window OF((void));
323extern void write_buf OF((int fd, voidp buf, unsigned cnt));
324extern char *strlwr OF((char *s));
325extern char *add_envopt OF((int *argcp, char ***argvp, char *env));
326extern void error OF((char *m));
327extern void warn OF((char *a, char *b));
328extern void read_error OF((void));
329extern void write_error OF((void));
330extern void display_ratio OF((long num, long den, FILE *file));
331extern voidp xmalloc OF((unsigned int size));
332
333 /* in inflate.c */
334extern int inflate OF((void));
335/* lzw.h -- define the lzw functions.
336 * Copyright (C) 1992-1993 Jean-loup Gailly.
337 * This is free software; you can redistribute it and/or modify it under the
338 * terms of the GNU General Public License, see the file COPYING.
339 */
340
341#if !defined(OF) && defined(lint)
342# include "gzip.h"
343#endif
344
345#ifndef BITS
346# define BITS 16
347#endif
348#define INIT_BITS 9 /* Initial number of bits per code */
349
350#define BIT_MASK 0x1f /* Mask for 'number of compression bits' */
351/* Mask 0x20 is reserved to mean a fourth header byte, and 0x40 is free.
352 * It's a pity that old uncompress does not check bit 0x20. That makes
353 * extension of the format actually undesirable because old compress
354 * would just crash on the new format instead of giving a meaningful
355 * error message. It does check the number of bits, but it's more
356 * helpful to say "unsupported format, get a new version" than
357 * "can only handle 16 bits".
358 */
359
360#define BLOCK_MODE 0x80
361/* Block compression: if table is full and compression rate is dropping,
362 * clear the dictionary.
363 */
364
365#define LZW_RESERVED 0x60 /* reserved bits */
366
367#define CLEAR 256 /* flush the dictionary */
368#define FIRST (CLEAR+1) /* first free entry */
369
370extern int maxbits; /* max bits per code for LZW */
371extern int block_mode; /* block compress mode -C compatible with 2.0 */
372
373/* revision.h -- define the version number
374 * Copyright (C) 1992-1993 Jean-loup Gailly.
375 * This is free software; you can redistribute it and/or modify it under the
376 * terms of the GNU General Public License, see the file COPYING.
377 */
378
379#define VERSION "1.2.4"
380#define PATCHLEVEL 0
381#define REVDATE "18 Aug 93"
382
383/* This version does not support compression into old compress format: */
384#ifdef LZW
385# undef LZW
386#endif
387
Eric Andersencc8ed391999-10-05 16:24:54 +0000388/* tailor.h -- target dependent definitions
389 * Copyright (C) 1992-1993 Jean-loup Gailly.
390 * This is free software; you can redistribute it and/or modify it under the
391 * terms of the GNU General Public License, see the file COPYING.
392 */
393
394/* The target dependent definitions should be defined here only.
395 * The target dependent functions should be defined in tailor.c.
396 */
397
Eric Andersencc8ed391999-10-05 16:24:54 +0000398
399#if defined(__MSDOS__) && !defined(MSDOS)
400# define MSDOS
401#endif
402
403#if defined(__OS2__) && !defined(OS2)
404# define OS2
405#endif
406
407#if defined(OS2) && defined(MSDOS) /* MS C under OS/2 */
408# undef MSDOS
409#endif
410
411#ifdef MSDOS
412# ifdef __GNUC__
413 /* DJGPP version 1.09+ on MS-DOS.
414 * The DJGPP 1.09 stat() function must be upgraded before gzip will
415 * fully work.
416 * No need for DIRENT, since <unistd.h> defines POSIX_SOURCE which
417 * implies DIRENT.
418 */
419# define near
420# else
421# define MAXSEG_64K
422# ifdef __TURBOC__
423# define NO_OFF_T
424# ifdef __BORLANDC__
425# define DIRENT
426# else
427# define NO_UTIME
428# endif
429# else /* MSC */
430# define HAVE_SYS_UTIME_H
431# define NO_UTIME_H
432# endif
433# endif
434# define PATH_SEP2 '\\'
435# define PATH_SEP3 ':'
436# define MAX_PATH_LEN 128
437# define NO_MULTIPLE_DOTS
438# define MAX_EXT_CHARS 3
439# define Z_SUFFIX "z"
440# define NO_CHOWN
441# define PROTO
442# define STDC_HEADERS
443# define NO_SIZE_CHECK
444# define casemap(c) tolow(c) /* Force file names to lower case */
445# include <io.h>
446# define OS_CODE 0x00
447# define SET_BINARY_MODE(fd) setmode(fd, O_BINARY)
448# if !defined(NO_ASM) && !defined(ASMV)
449# define ASMV
450# endif
451#else
452# define near
453#endif
454
455#ifdef OS2
456# define PATH_SEP2 '\\'
457# define PATH_SEP3 ':'
458# define MAX_PATH_LEN 260
459# ifdef OS2FAT
460# define NO_MULTIPLE_DOTS
461# define MAX_EXT_CHARS 3
462# define Z_SUFFIX "z"
463# define casemap(c) tolow(c)
464# endif
465# define NO_CHOWN
466# define PROTO
467# define STDC_HEADERS
468# include <io.h>
469# define OS_CODE 0x06
470# define SET_BINARY_MODE(fd) setmode(fd, O_BINARY)
471# ifdef _MSC_VER
472# define HAVE_SYS_UTIME_H
473# define NO_UTIME_H
474# define MAXSEG_64K
475# undef near
476# define near _near
477# endif
478# ifdef __EMX__
479# define HAVE_SYS_UTIME_H
480# define NO_UTIME_H
481# define DIRENT
482# define EXPAND(argc,argv) \
483 {_response(&argc, &argv); _wildcard(&argc, &argv);}
484# endif
485# ifdef __BORLANDC__
486# define DIRENT
487# endif
488# ifdef __ZTC__
489# define NO_DIR
490# define NO_UTIME_H
491# include <dos.h>
492# define EXPAND(argc,argv) \
493 {response_expand(&argc, &argv);}
494# endif
495#endif
496
497#ifdef WIN32 /* Windows NT */
498# define HAVE_SYS_UTIME_H
499# define NO_UTIME_H
500# define PATH_SEP2 '\\'
501# define PATH_SEP3 ':'
502# define MAX_PATH_LEN 260
503# define NO_CHOWN
504# define PROTO
505# define STDC_HEADERS
506# define SET_BINARY_MODE(fd) setmode(fd, O_BINARY)
507# include <io.h>
508# include <malloc.h>
509# ifdef NTFAT
510# define NO_MULTIPLE_DOTS
511# define MAX_EXT_CHARS 3
512# define Z_SUFFIX "z"
513# define casemap(c) tolow(c) /* Force file names to lower case */
514# endif
515# define OS_CODE 0x0b
516#endif
517
518#ifdef MSDOS
519# ifdef __TURBOC__
520# include <alloc.h>
521# define DYN_ALLOC
522 /* Turbo C 2.0 does not accept static allocations of large arrays */
523 void * fcalloc (unsigned items, unsigned size);
524 void fcfree (void *ptr);
525# else /* MSC */
526# include <malloc.h>
527# define fcalloc(nitems,itemsize) halloc((long)(nitems),(itemsize))
528# define fcfree(ptr) hfree(ptr)
529# endif
530#else
531# ifdef MAXSEG_64K
532# define fcalloc(items,size) calloc((items),(size))
533# else
534# define fcalloc(items,size) malloc((size_t)(items)*(size_t)(size))
535# endif
536# define fcfree(ptr) free(ptr)
537#endif
538
539#if defined(VAXC) || defined(VMS)
540# define PATH_SEP ']'
541# define PATH_SEP2 ':'
542# define SUFFIX_SEP ';'
543# define NO_MULTIPLE_DOTS
544# define Z_SUFFIX "-gz"
545# define RECORD_IO 1
546# define casemap(c) tolow(c)
547# define OS_CODE 0x02
548# define OPTIONS_VAR "GZIP_OPT"
549# define STDC_HEADERS
550# define NO_UTIME
551# define EXPAND(argc,argv) vms_expand_args(&argc,&argv);
552# include <file.h>
553# define unlink delete
554# ifdef VAXC
555# define NO_FCNTL_H
556# include <unixio.h>
557# endif
558#endif
559
560#ifdef AMIGA
561# define PATH_SEP2 ':'
562# define STDC_HEADERS
563# define OS_CODE 0x01
564# define ASMV
565# ifdef __GNUC__
566# define DIRENT
567# define HAVE_UNISTD_H
568# else /* SASC */
569# define NO_STDIN_FSTAT
570# define SYSDIR
571# define NO_SYMLINK
572# define NO_CHOWN
573# define NO_FCNTL_H
574# include <fcntl.h> /* for read() and write() */
575# define direct dirent
576 extern void _expand_args(int *argc, char ***argv);
577# define EXPAND(argc,argv) _expand_args(&argc,&argv);
578# undef O_BINARY /* disable useless --ascii option */
579# endif
580#endif
581
582#if defined(ATARI) || defined(atarist)
583# ifndef STDC_HEADERS
584# define STDC_HEADERS
585# define HAVE_UNISTD_H
586# define DIRENT
587# endif
588# define ASMV
589# define OS_CODE 0x05
590# ifdef TOSFS
591# define PATH_SEP2 '\\'
592# define PATH_SEP3 ':'
593# define MAX_PATH_LEN 128
594# define NO_MULTIPLE_DOTS
595# define MAX_EXT_CHARS 3
596# define Z_SUFFIX "z"
597# define NO_CHOWN
598# define casemap(c) tolow(c) /* Force file names to lower case */
599# define NO_SYMLINK
600# endif
601#endif
602
603#ifdef MACOS
604# define PATH_SEP ':'
605# define DYN_ALLOC
606# define PROTO
607# define NO_STDIN_FSTAT
608# define NO_CHOWN
609# define NO_UTIME
610# define chmod(file, mode) (0)
611# define OPEN(name, flags, mode) open(name, flags)
612# define OS_CODE 0x07
613# ifdef MPW
614# define isatty(fd) ((fd) <= 2)
615# endif
616#endif
617
618#ifdef __50SERIES /* Prime/PRIMOS */
619# define PATH_SEP '>'
620# define STDC_HEADERS
621# define NO_MEMORY_H
622# define NO_UTIME_H
623# define NO_UTIME
624# define NO_CHOWN
625# define NO_STDIN_FSTAT
626# define NO_SIZE_CHECK
627# define NO_SYMLINK
628# define RECORD_IO 1
629# define casemap(c) tolow(c) /* Force file names to lower case */
630# define put_char(c) put_byte((c) & 0x7F)
631# define get_char(c) ascii2pascii(get_byte())
632# define OS_CODE 0x0F /* temporary, subject to change */
633# ifdef SIGTERM
634# undef SIGTERM /* We don't want a signal handler for SIGTERM */
635# endif
636#endif
637
638#if defined(pyr) && !defined(NOMEMCPY) /* Pyramid */
639# define NOMEMCPY /* problem with overlapping copies */
640#endif
641
642#ifdef TOPS20
643# define OS_CODE 0x0a
644#endif
645
646#ifndef unix
647# define NO_ST_INO /* don't rely on inode numbers */
648#endif
649
650
651 /* Common defaults */
652
653#ifndef OS_CODE
654# define OS_CODE 0x03 /* assume Unix */
655#endif
656
657#ifndef PATH_SEP
658# define PATH_SEP '/'
659#endif
660
661#ifndef casemap
662# define casemap(c) (c)
663#endif
664
665#ifndef OPTIONS_VAR
666# define OPTIONS_VAR "GZIP"
667#endif
668
669#ifndef Z_SUFFIX
670# define Z_SUFFIX ".gz"
671#endif
672
673#ifdef MAX_EXT_CHARS
674# define MAX_SUFFIX MAX_EXT_CHARS
675#else
676# define MAX_SUFFIX 30
677#endif
678
679#ifndef MAKE_LEGAL_NAME
680# ifdef NO_MULTIPLE_DOTS
681# define MAKE_LEGAL_NAME(name) make_simple_name(name)
682# else
683# define MAKE_LEGAL_NAME(name)
684# endif
685#endif
686
687#ifndef MIN_PART
688# define MIN_PART 3
689 /* keep at least MIN_PART chars between dots in a file name. */
690#endif
691
692#ifndef EXPAND
693# define EXPAND(argc,argv)
694#endif
695
696#ifndef RECORD_IO
697# define RECORD_IO 0
698#endif
699
700#ifndef SET_BINARY_MODE
701# define SET_BINARY_MODE(fd)
702#endif
703
704#ifndef OPEN
705# define OPEN(name, flags, mode) open(name, flags, mode)
706#endif
707
708#ifndef get_char
709# define get_char() get_byte()
710#endif
711
712#ifndef put_char
713# define put_char(c) put_byte(c)
714#endif
715/* bits.c -- output variable-length bit strings
716 * Copyright (C) 1992-1993 Jean-loup Gailly
717 * This is free software; you can redistribute it and/or modify it under the
718 * terms of the GNU General Public License, see the file COPYING.
719 */
720
721
722/*
723 * PURPOSE
724 *
725 * Output variable-length bit strings. Compression can be done
726 * to a file or to memory. (The latter is not supported in this version.)
727 *
728 * DISCUSSION
729 *
730 * The PKZIP "deflate" file format interprets compressed file data
731 * as a sequence of bits. Multi-bit strings in the file may cross
732 * byte boundaries without restriction.
733 *
734 * The first bit of each byte is the low-order bit.
735 *
736 * The routines in this file allow a variable-length bit value to
737 * be output right-to-left (useful for literal values). For
738 * left-to-right output (useful for code strings from the tree routines),
739 * the bits must have been reversed first with bi_reverse().
740 *
741 * For in-memory compression, the compressed bit stream goes directly
742 * into the requested output buffer. The input data is read in blocks
743 * by the mem_read() function. The buffer is limited to 64K on 16 bit
744 * machines.
745 *
746 * INTERFACE
747 *
748 * void bi_init (FILE *zipfile)
749 * Initialize the bit string routines.
750 *
751 * void send_bits (int value, int length)
752 * Write out a bit string, taking the source bits right to
753 * left.
754 *
755 * int bi_reverse (int value, int length)
756 * Reverse the bits of a bit string, taking the source bits left to
757 * right and emitting them right to left.
758 *
759 * void bi_windup (void)
760 * Write out any remaining bits in an incomplete byte.
761 *
762 * void copy_block(char *buf, unsigned len, int header)
763 * Copy a stored block to the zip file, storing first the length and
764 * its one's complement if requested.
765 *
766 */
767
768#ifdef DEBUG
769# include <stdio.h>
770#endif
771
Eric Andersencc8ed391999-10-05 16:24:54 +0000772/* ===========================================================================
773 * Local data used by the "bit string" routines.
774 */
775
776local file_t zfile; /* output gzip file */
777
778local unsigned short bi_buf;
779/* Output buffer. bits are inserted starting at the bottom (least significant
780 * bits).
781 */
782
783#define Buf_size (8 * 2*sizeof(char))
784/* Number of bits used within bi_buf. (bi_buf might be implemented on
785 * more than 16 bits on some systems.)
786 */
787
788local int bi_valid;
789/* Number of valid bits in bi_buf. All bits above the last valid bit
790 * are always zero.
791 */
792
793int (*read_buf) OF((char *buf, unsigned size));
794/* Current input function. Set to mem_read for in-memory compression */
795
796#ifdef DEBUG
797 ulg bits_sent; /* bit length of the compressed data */
798#endif
799
800/* ===========================================================================
801 * Initialize the bit string routines.
802 */
803void bi_init (zipfile)
804 file_t zipfile; /* output zip file, NO_FILE for in-memory compression */
805{
806 zfile = zipfile;
807 bi_buf = 0;
808 bi_valid = 0;
809#ifdef DEBUG
810 bits_sent = 0L;
811#endif
812
813 /* Set the defaults for file compression. They are set by memcompress
814 * for in-memory compression.
815 */
816 if (zfile != NO_FILE) {
817 read_buf = file_read;
818 }
819}
820
821/* ===========================================================================
822 * Send a value on a given number of bits.
823 * IN assertion: length <= 16 and value fits in length bits.
824 */
825void send_bits(value, length)
826 int value; /* value to send */
827 int length; /* number of bits */
828{
829#ifdef DEBUG
830 Tracev((stderr," l %2d v %4x ", length, value));
831 Assert(length > 0 && length <= 15, "invalid length");
832 bits_sent += (ulg)length;
833#endif
834 /* If not enough room in bi_buf, use (valid) bits from bi_buf and
835 * (16 - bi_valid) bits from value, leaving (width - (16-bi_valid))
836 * unused bits in value.
837 */
838 if (bi_valid > (int)Buf_size - length) {
839 bi_buf |= (value << bi_valid);
840 put_short(bi_buf);
841 bi_buf = (ush)value >> (Buf_size - bi_valid);
842 bi_valid += length - Buf_size;
843 } else {
844 bi_buf |= value << bi_valid;
845 bi_valid += length;
846 }
847}
848
849/* ===========================================================================
850 * Reverse the first len bits of a code, using straightforward code (a faster
851 * method would use a table)
852 * IN assertion: 1 <= len <= 15
853 */
854unsigned bi_reverse(code, len)
855 unsigned code; /* the value to invert */
856 int len; /* its bit length */
857{
858 register unsigned res = 0;
859 do {
860 res |= code & 1;
861 code >>= 1, res <<= 1;
862 } while (--len > 0);
863 return res >> 1;
864}
865
866/* ===========================================================================
867 * Write out any remaining bits in an incomplete byte.
868 */
869void bi_windup()
870{
871 if (bi_valid > 8) {
872 put_short(bi_buf);
873 } else if (bi_valid > 0) {
874 put_byte(bi_buf);
875 }
876 bi_buf = 0;
877 bi_valid = 0;
878#ifdef DEBUG
879 bits_sent = (bits_sent+7) & ~7;
880#endif
881}
882
883/* ===========================================================================
884 * Copy a stored block to the zip file, storing first the length and its
885 * one's complement if requested.
886 */
887void copy_block(buf, len, header)
888 char *buf; /* the input data */
889 unsigned len; /* its length */
890 int header; /* true if block header must be written */
891{
892 bi_windup(); /* align on byte boundary */
893
894 if (header) {
895 put_short((ush)len);
896 put_short((ush)~len);
897#ifdef DEBUG
898 bits_sent += 2*16;
899#endif
900 }
901#ifdef DEBUG
902 bits_sent += (ulg)len<<3;
903#endif
904 while (len--) {
905#ifdef CRYPT
906 int t;
907 if (key) zencode(*buf, t);
908#endif
909 put_byte(*buf++);
910 }
911}
912/* deflate.c -- compress data using the deflation algorithm
913 * Copyright (C) 1992-1993 Jean-loup Gailly
914 * This is free software; you can redistribute it and/or modify it under the
915 * terms of the GNU General Public License, see the file COPYING.
916 */
917
918/*
919 * PURPOSE
920 *
921 * Identify new text as repetitions of old text within a fixed-
922 * length sliding window trailing behind the new text.
923 *
924 * DISCUSSION
925 *
926 * The "deflation" process depends on being able to identify portions
927 * of the input text which are identical to earlier input (within a
928 * sliding window trailing behind the input currently being processed).
929 *
930 * The most straightforward technique turns out to be the fastest for
931 * most input files: try all possible matches and select the longest.
932 * The key feature of this algorithm is that insertions into the string
933 * dictionary are very simple and thus fast, and deletions are avoided
934 * completely. Insertions are performed at each input character, whereas
935 * string matches are performed only when the previous match ends. So it
936 * is preferable to spend more time in matches to allow very fast string
937 * insertions and avoid deletions. The matching algorithm for small
938 * strings is inspired from that of Rabin & Karp. A brute force approach
939 * is used to find longer strings when a small match has been found.
940 * A similar algorithm is used in comic (by Jan-Mark Wams) and freeze
941 * (by Leonid Broukhis).
942 * A previous version of this file used a more sophisticated algorithm
943 * (by Fiala and Greene) which is guaranteed to run in linear amortized
944 * time, but has a larger average cost, uses more memory and is patented.
945 * However the F&G algorithm may be faster for some highly redundant
946 * files if the parameter max_chain_length (described below) is too large.
947 *
948 * ACKNOWLEDGEMENTS
949 *
950 * The idea of lazy evaluation of matches is due to Jan-Mark Wams, and
951 * I found it in 'freeze' written by Leonid Broukhis.
952 * Thanks to many info-zippers for bug reports and testing.
953 *
954 * REFERENCES
955 *
956 * APPNOTE.TXT documentation file in PKZIP 1.93a distribution.
957 *
958 * A description of the Rabin and Karp algorithm is given in the book
959 * "Algorithms" by R. Sedgewick, Addison-Wesley, p252.
960 *
961 * Fiala,E.R., and Greene,D.H.
962 * Data Compression with Finite Windows, Comm.ACM, 32,4 (1989) 490-595
963 *
964 * INTERFACE
965 *
966 * void lm_init (int pack_level, ush *flags)
967 * Initialize the "longest match" routines for a new file
968 *
969 * ulg deflate (void)
970 * Processes a new input file and return its compressed length. Sets
971 * the compressed length, crc, deflate flags and internal file
972 * attributes.
973 */
974
975#include <stdio.h>
976
Eric Andersencc8ed391999-10-05 16:24:54 +0000977/* ===========================================================================
978 * Configuration parameters
979 */
980
981/* Compile with MEDIUM_MEM to reduce the memory requirements or
982 * with SMALL_MEM to use as little memory as possible. Use BIG_MEM if the
983 * entire input file can be held in memory (not possible on 16 bit systems).
984 * Warning: defining these symbols affects HASH_BITS (see below) and thus
985 * affects the compression ratio. The compressed output
986 * is still correct, and might even be smaller in some cases.
987 */
988
989#ifdef SMALL_MEM
990# define HASH_BITS 13 /* Number of bits used to hash strings */
991#endif
992#ifdef MEDIUM_MEM
993# define HASH_BITS 14
994#endif
995#ifndef HASH_BITS
996# define HASH_BITS 15
997 /* For portability to 16 bit machines, do not use values above 15. */
998#endif
999
1000/* To save space (see unlzw.c), we overlay prev+head with tab_prefix and
1001 * window with tab_suffix. Check that we can do this:
1002 */
1003#if (WSIZE<<1) > (1<<BITS)
1004 error: cannot overlay window with tab_suffix and prev with tab_prefix0
1005#endif
1006#if HASH_BITS > BITS-1
1007 error: cannot overlay head with tab_prefix1
1008#endif
1009
1010#define HASH_SIZE (unsigned)(1<<HASH_BITS)
1011#define HASH_MASK (HASH_SIZE-1)
1012#define WMASK (WSIZE-1)
1013/* HASH_SIZE and WSIZE must be powers of two */
1014
1015#define NIL 0
1016/* Tail of hash chains */
1017
1018#define FAST 4
1019#define SLOW 2
1020/* speed options for the general purpose bit flag */
1021
1022#ifndef TOO_FAR
1023# define TOO_FAR 4096
1024#endif
1025/* Matches of length 3 are discarded if their distance exceeds TOO_FAR */
1026
1027/* ===========================================================================
1028 * Local data used by the "longest match" routines.
1029 */
1030
1031typedef ush Pos;
1032typedef unsigned IPos;
1033/* A Pos is an index in the character window. We use short instead of int to
1034 * save space in the various tables. IPos is used only for parameter passing.
1035 */
1036
1037/* DECLARE(uch, window, 2L*WSIZE); */
1038/* Sliding window. Input bytes are read into the second half of the window,
1039 * and move to the first half later to keep a dictionary of at least WSIZE
1040 * bytes. With this organization, matches are limited to a distance of
1041 * WSIZE-MAX_MATCH bytes, but this ensures that IO is always
1042 * performed with a length multiple of the block size. Also, it limits
1043 * the window size to 64K, which is quite useful on MSDOS.
1044 * To do: limit the window size to WSIZE+BSZ if SMALL_MEM (the code would
1045 * be less efficient).
1046 */
1047
1048/* DECLARE(Pos, prev, WSIZE); */
1049/* Link to older string with same hash index. To limit the size of this
1050 * array to 64K, this link is maintained only for the last 32K strings.
1051 * An index in this array is thus a window index modulo 32K.
1052 */
1053
1054/* DECLARE(Pos, head, 1<<HASH_BITS); */
1055/* Heads of the hash chains or NIL. */
1056
1057ulg window_size = (ulg)2*WSIZE;
1058/* window size, 2*WSIZE except for MMAP or BIG_MEM, where it is the
1059 * input file length plus MIN_LOOKAHEAD.
1060 */
1061
1062long block_start;
1063/* window position at the beginning of the current output block. Gets
1064 * negative when the window is moved backwards.
1065 */
1066
1067local unsigned ins_h; /* hash index of string to be inserted */
1068
1069#define H_SHIFT ((HASH_BITS+MIN_MATCH-1)/MIN_MATCH)
1070/* Number of bits by which ins_h and del_h must be shifted at each
1071 * input step. It must be such that after MIN_MATCH steps, the oldest
1072 * byte no longer takes part in the hash key, that is:
1073 * H_SHIFT * MIN_MATCH >= HASH_BITS
1074 */
1075
1076unsigned int near prev_length;
1077/* Length of the best match at previous step. Matches not greater than this
1078 * are discarded. This is used in the lazy match evaluation.
1079 */
1080
1081 unsigned near strstart; /* start of string to insert */
1082 unsigned near match_start; /* start of matching string */
1083local int eofile; /* flag set at end of input file */
1084local unsigned lookahead; /* number of valid bytes ahead in window */
1085
1086unsigned near max_chain_length;
1087/* To speed up deflation, hash chains are never searched beyond this length.
1088 * A higher limit improves compression ratio but degrades the speed.
1089 */
1090
1091local unsigned int max_lazy_match;
1092/* Attempt to find a better match only when the current match is strictly
1093 * smaller than this value. This mechanism is used only for compression
1094 * levels >= 4.
1095 */
1096#define max_insert_length max_lazy_match
1097/* Insert new strings in the hash table only if the match length
1098 * is not greater than this length. This saves time but degrades compression.
1099 * max_insert_length is used only for compression levels <= 3.
1100 */
1101
1102unsigned near good_match;
1103/* Use a faster search when the previous match is longer than this */
1104
1105
1106/* Values for max_lazy_match, good_match and max_chain_length, depending on
1107 * the desired pack level (0..9). The values given below have been tuned to
1108 * exclude worst case performance for pathological files. Better values may be
1109 * found for specific files.
1110 */
1111
1112typedef struct config {
1113 ush good_length; /* reduce lazy search above this match length */
1114 ush max_lazy; /* do not perform lazy search above this match length */
1115 ush nice_length; /* quit search above this match length */
1116 ush max_chain;
1117} config;
1118
1119#ifdef FULL_SEARCH
1120# define nice_match MAX_MATCH
1121#else
1122 int near nice_match; /* Stop searching when current match exceeds this */
1123#endif
1124
1125local config configuration_table =
1126/* 9 */ {32, 258, 258, 4096}; /* maximum compression */
1127
1128/* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
1129 * For deflate_fast() (levels <= 3) good is ignored and lazy has a different
1130 * meaning.
1131 */
1132
1133#define EQUAL 0
1134/* result of memcmp for equal strings */
1135
1136/* ===========================================================================
1137 * Prototypes for local functions.
1138 */
1139local void fill_window OF((void));
1140
1141 int longest_match OF((IPos cur_match));
1142#ifdef ASMV
1143 void match_init OF((void)); /* asm code initialization */
1144#endif
1145
1146#ifdef DEBUG
1147local void check_match OF((IPos start, IPos match, int length));
1148#endif
1149
1150/* ===========================================================================
1151 * Update a hash value with the given input byte
1152 * IN assertion: all calls to to UPDATE_HASH are made with consecutive
1153 * input characters, so that a running hash key can be computed from the
1154 * previous key instead of complete recalculation each time.
1155 */
1156#define UPDATE_HASH(h,c) (h = (((h)<<H_SHIFT) ^ (c)) & HASH_MASK)
1157
1158/* ===========================================================================
1159 * Insert string s in the dictionary and set match_head to the previous head
1160 * of the hash chain (the most recent string with same hash key). Return
1161 * the previous length of the hash chain.
1162 * IN assertion: all calls to to INSERT_STRING are made with consecutive
1163 * input characters and the first MIN_MATCH bytes of s are valid
1164 * (except for the last MIN_MATCH-1 bytes of the input file).
1165 */
1166#define INSERT_STRING(s, match_head) \
1167 (UPDATE_HASH(ins_h, window[(s) + MIN_MATCH-1]), \
1168 prev[(s) & WMASK] = match_head = head[ins_h], \
1169 head[ins_h] = (s))
1170
1171/* ===========================================================================
1172 * Initialize the "longest match" routines for a new file
1173 */
1174void lm_init (flags)
1175 ush *flags; /* general purpose bit flag */
1176{
1177 register unsigned j;
1178
1179 /* Initialize the hash table. */
1180#if defined(MAXSEG_64K) && HASH_BITS == 15
1181 for (j = 0; j < HASH_SIZE; j++) head[j] = NIL;
1182#else
1183 memzero((char*)head, HASH_SIZE*sizeof(*head));
1184#endif
1185 /* prev will be initialized on the fly */
1186
1187 /* Set the default configuration parameters:
1188 */
1189 max_lazy_match = configuration_table.max_lazy;
1190 good_match = configuration_table.good_length;
1191#ifndef FULL_SEARCH
1192 nice_match = configuration_table.nice_length;
1193#endif
1194 max_chain_length = configuration_table.max_chain;
1195 *flags |= SLOW;
1196 /* ??? reduce max_chain_length for binary files */
1197
1198 strstart = 0;
1199 block_start = 0L;
1200#ifdef ASMV
1201 match_init(); /* initialize the asm code */
1202#endif
1203
1204 lookahead = read_buf((char*)window,
1205 sizeof(int) <= 2 ? (unsigned)WSIZE : 2*WSIZE);
1206
1207 if (lookahead == 0 || lookahead == (unsigned)EOF) {
1208 eofile = 1, lookahead = 0;
1209 return;
1210 }
1211 eofile = 0;
1212 /* Make sure that we always have enough lookahead. This is important
1213 * if input comes from a device such as a tty.
1214 */
1215 while (lookahead < MIN_LOOKAHEAD && !eofile) fill_window();
1216
1217 ins_h = 0;
1218 for (j=0; j<MIN_MATCH-1; j++) UPDATE_HASH(ins_h, window[j]);
1219 /* If lookahead < MIN_MATCH, ins_h is garbage, but this is
1220 * not important since only literal bytes will be emitted.
1221 */
1222}
1223
1224/* ===========================================================================
1225 * Set match_start to the longest match starting at the given string and
1226 * return its length. Matches shorter or equal to prev_length are discarded,
1227 * in which case the result is equal to prev_length and match_start is
1228 * garbage.
1229 * IN assertions: cur_match is the head of the hash chain for the current
1230 * string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1
1231 */
1232#ifndef ASMV
1233/* For MSDOS, OS/2 and 386 Unix, an optimized version is in match.asm or
1234 * match.s. The code is functionally equivalent, so you can use the C version
1235 * if desired.
1236 */
1237int longest_match(cur_match)
1238 IPos cur_match; /* current match */
1239{
1240 unsigned chain_length = max_chain_length; /* max hash chain length */
1241 register uch *scan = window + strstart; /* current string */
1242 register uch *match; /* matched string */
1243 register int len; /* length of current match */
1244 int best_len = prev_length; /* best match length so far */
1245 IPos limit = strstart > (IPos)MAX_DIST ? strstart - (IPos)MAX_DIST : NIL;
1246 /* Stop when cur_match becomes <= limit. To simplify the code,
1247 * we prevent matches with the string of window index 0.
1248 */
1249
1250/* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
1251 * It is easy to get rid of this optimization if necessary.
1252 */
1253#if HASH_BITS < 8 || MAX_MATCH != 258
1254 error: Code too clever
1255#endif
1256
1257#ifdef UNALIGNED_OK
1258 /* Compare two bytes at a time. Note: this is not always beneficial.
1259 * Try with and without -DUNALIGNED_OK to check.
1260 */
1261 register uch *strend = window + strstart + MAX_MATCH - 1;
1262 register ush scan_start = *(ush*)scan;
1263 register ush scan_end = *(ush*)(scan+best_len-1);
1264#else
1265 register uch *strend = window + strstart + MAX_MATCH;
1266 register uch scan_end1 = scan[best_len-1];
1267 register uch scan_end = scan[best_len];
1268#endif
1269
1270 /* Do not waste too much time if we already have a good match: */
1271 if (prev_length >= good_match) {
1272 chain_length >>= 2;
1273 }
1274 Assert(strstart <= window_size-MIN_LOOKAHEAD, "insufficient lookahead");
1275
1276 do {
1277 Assert(cur_match < strstart, "no future");
1278 match = window + cur_match;
1279
1280 /* Skip to next match if the match length cannot increase
1281 * or if the match length is less than 2:
1282 */
1283#if (defined(UNALIGNED_OK) && MAX_MATCH == 258)
1284 /* This code assumes sizeof(unsigned short) == 2. Do not use
1285 * UNALIGNED_OK if your compiler uses a different size.
1286 */
1287 if (*(ush*)(match+best_len-1) != scan_end ||
1288 *(ush*)match != scan_start) continue;
1289
1290 /* It is not necessary to compare scan[2] and match[2] since they are
1291 * always equal when the other bytes match, given that the hash keys
1292 * are equal and that HASH_BITS >= 8. Compare 2 bytes at a time at
1293 * strstart+3, +5, ... up to strstart+257. We check for insufficient
1294 * lookahead only every 4th comparison; the 128th check will be made
1295 * at strstart+257. If MAX_MATCH-2 is not a multiple of 8, it is
1296 * necessary to put more guard bytes at the end of the window, or
1297 * to check more often for insufficient lookahead.
1298 */
1299 scan++, match++;
1300 do {
1301 } while (*(ush*)(scan+=2) == *(ush*)(match+=2) &&
1302 *(ush*)(scan+=2) == *(ush*)(match+=2) &&
1303 *(ush*)(scan+=2) == *(ush*)(match+=2) &&
1304 *(ush*)(scan+=2) == *(ush*)(match+=2) &&
1305 scan < strend);
1306 /* The funny "do {}" generates better code on most compilers */
1307
1308 /* Here, scan <= window+strstart+257 */
1309 Assert(scan <= window+(unsigned)(window_size-1), "wild scan");
1310 if (*scan == *match) scan++;
1311
1312 len = (MAX_MATCH - 1) - (int)(strend-scan);
1313 scan = strend - (MAX_MATCH-1);
1314
1315#else /* UNALIGNED_OK */
1316
1317 if (match[best_len] != scan_end ||
1318 match[best_len-1] != scan_end1 ||
1319 *match != *scan ||
1320 *++match != scan[1]) continue;
1321
1322 /* The check at best_len-1 can be removed because it will be made
1323 * again later. (This heuristic is not always a win.)
1324 * It is not necessary to compare scan[2] and match[2] since they
1325 * are always equal when the other bytes match, given that
1326 * the hash keys are equal and that HASH_BITS >= 8.
1327 */
1328 scan += 2, match++;
1329
1330 /* We check for insufficient lookahead only every 8th comparison;
1331 * the 256th check will be made at strstart+258.
1332 */
1333 do {
1334 } while (*++scan == *++match && *++scan == *++match &&
1335 *++scan == *++match && *++scan == *++match &&
1336 *++scan == *++match && *++scan == *++match &&
1337 *++scan == *++match && *++scan == *++match &&
1338 scan < strend);
1339
1340 len = MAX_MATCH - (int)(strend - scan);
1341 scan = strend - MAX_MATCH;
1342
1343#endif /* UNALIGNED_OK */
1344
1345 if (len > best_len) {
1346 match_start = cur_match;
1347 best_len = len;
1348 if (len >= nice_match) break;
1349#ifdef UNALIGNED_OK
1350 scan_end = *(ush*)(scan+best_len-1);
1351#else
1352 scan_end1 = scan[best_len-1];
1353 scan_end = scan[best_len];
1354#endif
1355 }
1356 } while ((cur_match = prev[cur_match & WMASK]) > limit
1357 && --chain_length != 0);
1358
1359 return best_len;
1360}
1361#endif /* ASMV */
1362
1363#ifdef DEBUG
1364/* ===========================================================================
1365 * Check that the match at match_start is indeed a match.
1366 */
1367local void check_match(start, match, length)
1368 IPos start, match;
1369 int length;
1370{
1371 /* check that the match is indeed a match */
1372 if (memcmp((char*)window + match,
1373 (char*)window + start, length) != EQUAL) {
1374 fprintf(stderr,
1375 " start %d, match %d, length %d\n",
1376 start, match, length);
1377 error("invalid match");
1378 }
1379 if (verbose > 1) {
1380 fprintf(stderr,"\\[%d,%d]", start-match, length);
1381 do { putc(window[start++], stderr); } while (--length != 0);
1382 }
1383}
1384#else
1385# define check_match(start, match, length)
1386#endif
1387
1388/* ===========================================================================
1389 * Fill the window when the lookahead becomes insufficient.
1390 * Updates strstart and lookahead, and sets eofile if end of input file.
1391 * IN assertion: lookahead < MIN_LOOKAHEAD && strstart + lookahead > 0
1392 * OUT assertions: at least one byte has been read, or eofile is set;
1393 * file reads are performed for at least two bytes (required for the
1394 * translate_eol option).
1395 */
1396local void fill_window()
1397{
1398 register unsigned n, m;
1399 unsigned more = (unsigned)(window_size - (ulg)lookahead - (ulg)strstart);
1400 /* Amount of free space at the end of the window. */
1401
1402 /* If the window is almost full and there is insufficient lookahead,
1403 * move the upper half to the lower one to make room in the upper half.
1404 */
1405 if (more == (unsigned)EOF) {
1406 /* Very unlikely, but possible on 16 bit machine if strstart == 0
1407 * and lookahead == 1 (input done one byte at time)
1408 */
1409 more--;
1410 } else if (strstart >= WSIZE+MAX_DIST) {
1411 /* By the IN assertion, the window is not empty so we can't confuse
1412 * more == 0 with more == 64K on a 16 bit machine.
1413 */
1414 Assert(window_size == (ulg)2*WSIZE, "no sliding with BIG_MEM");
1415
1416 memcpy((char*)window, (char*)window+WSIZE, (unsigned)WSIZE);
1417 match_start -= WSIZE;
1418 strstart -= WSIZE; /* we now have strstart >= MAX_DIST: */
1419
1420 block_start -= (long) WSIZE;
1421
1422 for (n = 0; n < HASH_SIZE; n++) {
1423 m = head[n];
1424 head[n] = (Pos)(m >= WSIZE ? m-WSIZE : NIL);
1425 }
1426 for (n = 0; n < WSIZE; n++) {
1427 m = prev[n];
1428 prev[n] = (Pos)(m >= WSIZE ? m-WSIZE : NIL);
1429 /* If n is not on any hash chain, prev[n] is garbage but
1430 * its value will never be used.
1431 */
1432 }
1433 more += WSIZE;
1434 }
1435 /* At this point, more >= 2 */
1436 if (!eofile) {
1437 n = read_buf((char*)window+strstart+lookahead, more);
1438 if (n == 0 || n == (unsigned)EOF) {
1439 eofile = 1;
1440 } else {
1441 lookahead += n;
1442 }
1443 }
1444}
1445
1446/* ===========================================================================
1447 * Flush the current block, with given end-of-file flag.
1448 * IN assertion: strstart is set to the end of the current match.
1449 */
1450#define FLUSH_BLOCK(eof) \
1451 flush_block(block_start >= 0L ? (char*)&window[(unsigned)block_start] : \
1452 (char*)NULL, (long)strstart - block_start, (eof))
1453
1454/* ===========================================================================
1455 * Same as above, but achieves better compression. We use a lazy
1456 * evaluation for matches: a match is finally adopted only if there is
1457 * no better match at the next window position.
1458 */
1459ulg deflate()
1460{
1461 IPos hash_head; /* head of hash chain */
1462 IPos prev_match; /* previous match */
1463 int flush; /* set if current block must be flushed */
1464 int match_available = 0; /* set if previous match exists */
1465 register unsigned match_length = MIN_MATCH-1; /* length of best match */
1466#ifdef DEBUG
1467 extern long isize; /* byte length of input file, for debug only */
1468#endif
1469
1470 /* Process the input block. */
1471 while (lookahead != 0) {
1472 /* Insert the string window[strstart .. strstart+2] in the
1473 * dictionary, and set hash_head to the head of the hash chain:
1474 */
1475 INSERT_STRING(strstart, hash_head);
1476
1477 /* Find the longest match, discarding those <= prev_length.
1478 */
1479 prev_length = match_length, prev_match = match_start;
1480 match_length = MIN_MATCH-1;
1481
1482 if (hash_head != NIL && prev_length < max_lazy_match &&
1483 strstart - hash_head <= MAX_DIST) {
1484 /* To simplify the code, we prevent matches with the string
1485 * of window index 0 (in particular we have to avoid a match
1486 * of the string with itself at the start of the input file).
1487 */
1488 match_length = longest_match (hash_head);
1489 /* longest_match() sets match_start */
1490 if (match_length > lookahead) match_length = lookahead;
1491
1492 /* Ignore a length 3 match if it is too distant: */
1493 if (match_length == MIN_MATCH && strstart-match_start > TOO_FAR){
1494 /* If prev_match is also MIN_MATCH, match_start is garbage
1495 * but we will ignore the current match anyway.
1496 */
1497 match_length--;
1498 }
1499 }
1500 /* If there was a match at the previous step and the current
1501 * match is not better, output the previous match:
1502 */
1503 if (prev_length >= MIN_MATCH && match_length <= prev_length) {
1504
1505 check_match(strstart-1, prev_match, prev_length);
1506
1507 flush = ct_tally(strstart-1-prev_match, prev_length - MIN_MATCH);
1508
1509 /* Insert in hash table all strings up to the end of the match.
1510 * strstart-1 and strstart are already inserted.
1511 */
1512 lookahead -= prev_length-1;
1513 prev_length -= 2;
1514 do {
1515 strstart++;
1516 INSERT_STRING(strstart, hash_head);
1517 /* strstart never exceeds WSIZE-MAX_MATCH, so there are
1518 * always MIN_MATCH bytes ahead. If lookahead < MIN_MATCH
1519 * these bytes are garbage, but it does not matter since the
1520 * next lookahead bytes will always be emitted as literals.
1521 */
1522 } while (--prev_length != 0);
1523 match_available = 0;
1524 match_length = MIN_MATCH-1;
1525 strstart++;
1526 if (flush) FLUSH_BLOCK(0), block_start = strstart;
1527
1528 } else if (match_available) {
1529 /* If there was no match at the previous position, output a
1530 * single literal. If there was a match but the current match
1531 * is longer, truncate the previous match to a single literal.
1532 */
1533 Tracevv((stderr,"%c",window[strstart-1]));
1534 if (ct_tally (0, window[strstart-1])) {
1535 FLUSH_BLOCK(0), block_start = strstart;
1536 }
1537 strstart++;
1538 lookahead--;
1539 } else {
1540 /* There is no previous match to compare with, wait for
1541 * the next step to decide.
1542 */
1543 match_available = 1;
1544 strstart++;
1545 lookahead--;
1546 }
1547 Assert (strstart <= isize && lookahead <= isize, "a bit too far");
1548
1549 /* Make sure that we always have enough lookahead, except
1550 * at the end of the input file. We need MAX_MATCH bytes
1551 * for the next match, plus MIN_MATCH bytes to insert the
1552 * string following the next match.
1553 */
1554 while (lookahead < MIN_LOOKAHEAD && !eofile) fill_window();
1555 }
1556 if (match_available) ct_tally (0, window[strstart-1]);
1557
1558 return FLUSH_BLOCK(1); /* eof */
1559}
1560/* gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface
1561 * Copyright (C) 1992-1993 Jean-loup Gailly
1562 * The unzip code was written and put in the public domain by Mark Adler.
1563 * Portions of the lzw code are derived from the public domain 'compress'
1564 * written by Spencer Thomas, Joe Orost, James Woods, Jim McKie, Steve Davies,
1565 * Ken Turkowski, Dave Mack and Peter Jannesen.
1566 *
1567 * See the license_msg below and the file COPYING for the software license.
1568 * See the file algorithm.doc for the compression algorithms and file formats.
1569 */
1570
1571/* Compress files with zip algorithm and 'compress' interface.
1572 * See usage() and help() functions below for all options.
1573 * Outputs:
1574 * file.gz: compressed file with same mode, owner, and utimes
1575 * or stdout with -c option or if stdin used as input.
1576 * If the output file name had to be truncated, the original name is kept
1577 * in the compressed file.
1578 * On MSDOS, file.tmp -> file.tmz. On VMS, file.tmp -> file.tmp-gz.
1579 *
1580 * Using gz on MSDOS would create too many file name conflicts. For
1581 * example, foo.txt -> foo.tgz (.tgz must be reserved as shorthand for
1582 * tar.gz). Similarly, foo.dir and foo.doc would both be mapped to foo.dgz.
1583 * I also considered 12345678.txt -> 12345txt.gz but this truncates the name
1584 * too heavily. There is no ideal solution given the MSDOS 8+3 limitation.
1585 *
1586 * For the meaning of all compilation flags, see comments in Makefile.in.
1587 */
1588
Eric Andersencc8ed391999-10-05 16:24:54 +00001589#include <ctype.h>
1590#include <sys/types.h>
1591#include <signal.h>
1592#include <sys/stat.h>
1593#include <errno.h>
1594
1595 /* configuration */
1596
1597#ifdef NO_TIME_H
1598# include <sys/time.h>
1599#else
1600# include <time.h>
1601#endif
1602
1603#ifndef NO_FCNTL_H
1604# include <fcntl.h>
1605#endif
1606
1607#ifdef HAVE_UNISTD_H
1608# include <unistd.h>
1609#endif
1610
1611#if defined(STDC_HEADERS) || !defined(NO_STDLIB_H)
1612# include <stdlib.h>
1613#else
1614 extern int errno;
1615#endif
1616
1617#if defined(DIRENT)
1618# include <dirent.h>
1619 typedef struct dirent dir_type;
1620# define NLENGTH(dirent) ((int)strlen((dirent)->d_name))
1621# define DIR_OPT "DIRENT"
1622#else
1623# define NLENGTH(dirent) ((dirent)->d_namlen)
1624# ifdef SYSDIR
1625# include <sys/dir.h>
1626 typedef struct direct dir_type;
1627# define DIR_OPT "SYSDIR"
1628# else
1629# ifdef SYSNDIR
1630# include <sys/ndir.h>
1631 typedef struct direct dir_type;
1632# define DIR_OPT "SYSNDIR"
1633# else
1634# ifdef NDIR
1635# include <ndir.h>
1636 typedef struct direct dir_type;
1637# define DIR_OPT "NDIR"
1638# else
1639# define NO_DIR
1640# define DIR_OPT "NO_DIR"
1641# endif
1642# endif
1643# endif
1644#endif
1645
1646#ifndef NO_UTIME
1647# ifndef NO_UTIME_H
1648# include <utime.h>
1649# define TIME_OPT "UTIME"
1650# else
1651# ifdef HAVE_SYS_UTIME_H
1652# include <sys/utime.h>
1653# define TIME_OPT "SYS_UTIME"
1654# else
1655 struct utimbuf {
1656 time_t actime;
1657 time_t modtime;
1658 };
1659# define TIME_OPT ""
1660# endif
1661# endif
1662#else
1663# define TIME_OPT "NO_UTIME"
1664#endif
1665
1666#if !defined(S_ISDIR) && defined(S_IFDIR)
1667# define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
1668#endif
1669#if !defined(S_ISREG) && defined(S_IFREG)
1670# define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
1671#endif
1672
1673typedef RETSIGTYPE (*sig_type) OF((int));
1674
1675#ifndef O_BINARY
1676# define O_BINARY 0 /* creation mode for open() */
1677#endif
1678
1679#ifndef O_CREAT
1680 /* Pure BSD system? */
1681# include <sys/file.h>
1682# ifndef O_CREAT
1683# define O_CREAT FCREAT
1684# endif
1685# ifndef O_EXCL
1686# define O_EXCL FEXCL
1687# endif
1688#endif
1689
1690#ifndef S_IRUSR
1691# define S_IRUSR 0400
1692#endif
1693#ifndef S_IWUSR
1694# define S_IWUSR 0200
1695#endif
1696#define RW_USER (S_IRUSR | S_IWUSR) /* creation mode for open() */
1697
1698#ifndef MAX_PATH_LEN
1699# define MAX_PATH_LEN 1024 /* max pathname length */
1700#endif
1701
1702#ifndef SEEK_END
1703# define SEEK_END 2
1704#endif
1705
1706#ifdef NO_OFF_T
1707 typedef long off_t;
1708 off_t lseek OF((int fd, off_t offset, int whence));
1709#endif
1710
1711/* Separator for file name parts (see shorten_name()) */
1712#ifdef NO_MULTIPLE_DOTS
1713# define PART_SEP "-"
1714#else
1715# define PART_SEP "."
1716#endif
1717
1718 /* global buffers */
1719
1720DECLARE(uch, inbuf, INBUFSIZ +INBUF_EXTRA);
1721DECLARE(uch, outbuf, OUTBUFSIZ+OUTBUF_EXTRA);
1722DECLARE(ush, d_buf, DIST_BUFSIZE);
1723DECLARE(uch, window, 2L*WSIZE);
1724#ifndef MAXSEG_64K
1725 DECLARE(ush, tab_prefix, 1L<<BITS);
1726#else
1727 DECLARE(ush, tab_prefix0, 1L<<(BITS-1));
1728 DECLARE(ush, tab_prefix1, 1L<<(BITS-1));
1729#endif
1730
1731 /* local variables */
1732
1733int ascii = 0; /* convert end-of-lines to local OS conventions */
Eric Andersencc8ed391999-10-05 16:24:54 +00001734int decompress = 0; /* decompress (-d) */
1735int no_name = -1; /* don't save or restore the original file name */
1736int no_time = -1; /* don't save or restore the original file time */
1737int foreground; /* set if program run in foreground */
1738char *progname; /* program name */
1739static int method = DEFLATED;/* compression method */
1740static int exit_code = OK; /* program exit code */
1741int save_orig_name; /* set if original name must be saved */
1742int last_member; /* set for .zip and .Z files */
1743int part_nb; /* number of parts in .gz file */
1744long time_stamp; /* original time stamp (modification time) */
1745long ifile_size; /* input file size, -1 for devices (debug only) */
1746char *env; /* contents of GZIP env variable */
1747char **args = NULL; /* argv pointer if GZIP env variable defined */
1748char z_suffix[MAX_SUFFIX+1]; /* default suffix (can be set with --suffix) */
1749int z_len; /* strlen(z_suffix) */
1750
1751long bytes_in; /* number of input bytes */
1752long bytes_out; /* number of output bytes */
1753char ifname[MAX_PATH_LEN]; /* input file name */
1754char ofname[MAX_PATH_LEN]; /* output file name */
1755int remove_ofname = 0; /* remove output file on error */
1756struct stat istat; /* status for input file */
1757int ifd; /* input file descriptor */
1758int ofd; /* output file descriptor */
1759unsigned insize; /* valid bytes in inbuf */
1760unsigned inptr; /* index of next byte to be processed in inbuf */
1761unsigned outcnt; /* bytes in output buffer */
1762
1763/* local functions */
1764
Eric Andersencc8ed391999-10-05 16:24:54 +00001765#define strequ(s1, s2) (strcmp((s1),(s2)) == 0)
1766
1767/* ======================================================================== */
1768// int main (argc, argv)
1769// int argc;
1770// char **argv;
Eric Andersenc296b541999-11-11 01:36:55 +00001771int gzip_main(int argc, char ** argv)
Eric Andersencc8ed391999-10-05 16:24:54 +00001772{
Eric Andersen96bcfd31999-11-12 01:30:18 +00001773 int result;
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001774 int inFileNum;
1775 int outFileNum;
Eric Andersen96bcfd31999-11-12 01:30:18 +00001776 struct stat statBuf;
1777 char* delFileName;
1778 int tostdout = 0;
1779 int fromstdin = 0;
1780
1781 if (argc==1)
1782 usage(gzip_usage);
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001783
Eric Andersenc296b541999-11-11 01:36:55 +00001784 /* Parse any options */
1785 while (--argc > 0 && **(++argv) == '-') {
Eric Andersen96bcfd31999-11-12 01:30:18 +00001786 if (*((*argv)+1) == '\0') {
1787 fromstdin = 1;
1788 tostdout = 1;
1789 }
Eric Andersenc296b541999-11-11 01:36:55 +00001790 while (*(++(*argv))) {
1791 switch (**argv) {
1792 case 'c':
1793 tostdout = 1;
1794 break;
1795 default:
1796 usage(gzip_usage);
1797 }
1798 }
1799 }
1800
Eric Andersencc8ed391999-10-05 16:24:54 +00001801 foreground = signal(SIGINT, SIG_IGN) != SIG_IGN;
1802 if (foreground) {
1803 (void) signal (SIGINT, (sig_type)abort_gzip);
1804 }
1805#ifdef SIGTERM
1806 if (signal(SIGTERM, SIG_IGN) != SIG_IGN) {
1807 (void) signal(SIGTERM, (sig_type)abort_gzip);
1808 }
1809#endif
1810#ifdef SIGHUP
1811 if (signal(SIGHUP, SIG_IGN) != SIG_IGN) {
1812 (void) signal(SIGHUP, (sig_type)abort_gzip);
1813 }
1814#endif
1815
1816 strncpy(z_suffix, Z_SUFFIX, sizeof(z_suffix)-1);
1817 z_len = strlen(z_suffix);
1818
Eric Andersencc8ed391999-10-05 16:24:54 +00001819 /* Allocate all global buffers (for DYN_ALLOC option) */
1820 ALLOC(uch, inbuf, INBUFSIZ +INBUF_EXTRA);
1821 ALLOC(uch, outbuf, OUTBUFSIZ+OUTBUF_EXTRA);
1822 ALLOC(ush, d_buf, DIST_BUFSIZE);
1823 ALLOC(uch, window, 2L*WSIZE);
1824#ifndef MAXSEG_64K
1825 ALLOC(ush, tab_prefix, 1L<<BITS);
1826#else
1827 ALLOC(ush, tab_prefix0, 1L<<(BITS-1));
1828 ALLOC(ush, tab_prefix1, 1L<<(BITS-1));
1829#endif
1830
Eric Andersen96bcfd31999-11-12 01:30:18 +00001831 if (fromstdin==1) {
1832 strcpy(ofname, "stdin");
1833
1834 inFileNum=fileno(stdin);
1835 time_stamp = 0; /* time unknown by default */
1836 ifile_size = -1L; /* convention for unknown size */
1837 } else {
1838 /* Open up the input file */
1839 if (*argv=='\0')
1840 usage(gzip_usage);
1841 strncpy(ifname, *argv, MAX_PATH_LEN);
1842
1843 /* Open input fille */
1844 inFileNum=open( ifname, O_RDONLY);
1845 if (inFileNum < 0) {
1846 perror(ifname);
1847 do_exit(WARNING);
1848 }
1849 /* Get the time stamp on the input file. */
1850 result = stat(ifname, &statBuf);
1851 if (result < 0) {
1852 perror(ifname);
1853 do_exit(WARNING);
1854 }
1855 time_stamp = statBuf.st_ctime;
1856 ifile_size = statBuf.st_size;
1857 }
1858
1859
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001860 if (tostdout==1) {
1861 /* And get to work */
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001862 strcpy(ofname, "stdout");
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001863 outFileNum=fileno(stdout);
Eric Andersen96bcfd31999-11-12 01:30:18 +00001864 SET_BINARY_MODE(fileno(stdout));
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001865
1866 clear_bufs(); /* clear input and output buffers */
1867 part_nb = 0;
1868
1869 /* Actually do the compression/decompression. */
1870 zip(inFileNum, outFileNum);
1871
1872 } else {
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001873
1874 /* And get to work */
Eric Andersen96bcfd31999-11-12 01:30:18 +00001875 strncpy(ofname, ifname, MAX_PATH_LEN-4);
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001876 strcat(ofname, ".gz");
1877
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001878
Eric Andersen96bcfd31999-11-12 01:30:18 +00001879 /* Open output fille */
1880 outFileNum=open( ofname, O_RDWR|O_CREAT|O_EXCL|O_NOFOLLOW);
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001881 if (outFileNum < 0) {
1882 perror(ofname);
1883 do_exit(WARNING);
1884 }
1885 SET_BINARY_MODE(outFileNum);
Eric Andersen96bcfd31999-11-12 01:30:18 +00001886 /* Set permissions on the file */
1887 fchmod(outFileNum, statBuf.st_mode);
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001888
1889 clear_bufs(); /* clear input and output buffers */
1890 part_nb = 0;
1891
1892 /* Actually do the compression/decompression. */
Eric Andersen96bcfd31999-11-12 01:30:18 +00001893 result=zip(inFileNum, outFileNum);
1894 close( outFileNum);
1895 close( inFileNum);
1896 /* Delete the original file */
1897 if (result == OK)
1898 delFileName=ifname;
1899 else
1900 delFileName=ofname;
1901
1902 if (unlink (delFileName) < 0) {
1903 perror (delFileName);
1904 exit( FALSE);
1905 }
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001906 }
1907
Eric Andersencc8ed391999-10-05 16:24:54 +00001908 do_exit(exit_code);
Eric Andersencc8ed391999-10-05 16:24:54 +00001909}
1910
1911/* ========================================================================
1912 * Free all dynamically allocated variables and exit with the given code.
1913 */
1914local void do_exit(int exitcode)
1915{
1916 static int in_exit = 0;
1917
1918 if (in_exit) exit(exitcode);
1919 in_exit = 1;
1920 if (env != NULL) free(env), env = NULL;
1921 if (args != NULL) free((char*)args), args = NULL;
1922 FREE(inbuf);
1923 FREE(outbuf);
1924 FREE(d_buf);
1925 FREE(window);
1926#ifndef MAXSEG_64K
1927 FREE(tab_prefix);
1928#else
1929 FREE(tab_prefix0);
1930 FREE(tab_prefix1);
1931#endif
1932 exit(exitcode);
1933}
1934/* trees.c -- output deflated data using Huffman coding
1935 * Copyright (C) 1992-1993 Jean-loup Gailly
1936 * This is free software; you can redistribute it and/or modify it under the
1937 * terms of the GNU General Public License, see the file COPYING.
1938 */
1939
1940/*
1941 * PURPOSE
1942 *
1943 * Encode various sets of source values using variable-length
1944 * binary code trees.
1945 *
1946 * DISCUSSION
1947 *
1948 * The PKZIP "deflation" process uses several Huffman trees. The more
1949 * common source values are represented by shorter bit sequences.
1950 *
1951 * Each code tree is stored in the ZIP file in a compressed form
1952 * which is itself a Huffman encoding of the lengths of
1953 * all the code strings (in ascending order by source values).
1954 * The actual code strings are reconstructed from the lengths in
1955 * the UNZIP process, as described in the "application note"
1956 * (APPNOTE.TXT) distributed as part of PKWARE's PKZIP program.
1957 *
1958 * REFERENCES
1959 *
1960 * Lynch, Thomas J.
1961 * Data Compression: Techniques and Applications, pp. 53-55.
1962 * Lifetime Learning Publications, 1985. ISBN 0-534-03418-7.
1963 *
1964 * Storer, James A.
1965 * Data Compression: Methods and Theory, pp. 49-50.
1966 * Computer Science Press, 1988. ISBN 0-7167-8156-5.
1967 *
1968 * Sedgewick, R.
1969 * Algorithms, p290.
1970 * Addison-Wesley, 1983. ISBN 0-201-06672-6.
1971 *
1972 * INTERFACE
1973 *
1974 * void ct_init (ush *attr, int *methodp)
1975 * Allocate the match buffer, initialize the various tables and save
1976 * the location of the internal file attribute (ascii/binary) and
1977 * method (DEFLATE/STORE)
1978 *
1979 * void ct_tally (int dist, int lc);
1980 * Save the match info and tally the frequency counts.
1981 *
1982 * long flush_block (char *buf, ulg stored_len, int eof)
1983 * Determine the best encoding for the current block: dynamic trees,
1984 * static trees or store, and output the encoded block to the zip
1985 * file. Returns the total compressed length for the file so far.
1986 *
1987 */
1988
1989#include <ctype.h>
1990
Eric Andersencc8ed391999-10-05 16:24:54 +00001991/* ===========================================================================
1992 * Constants
1993 */
1994
1995#define MAX_BITS 15
1996/* All codes must not exceed MAX_BITS bits */
1997
1998#define MAX_BL_BITS 7
1999/* Bit length codes must not exceed MAX_BL_BITS bits */
2000
2001#define LENGTH_CODES 29
2002/* number of length codes, not counting the special END_BLOCK code */
2003
2004#define LITERALS 256
2005/* number of literal bytes 0..255 */
2006
2007#define END_BLOCK 256
2008/* end of block literal code */
2009
2010#define L_CODES (LITERALS+1+LENGTH_CODES)
2011/* number of Literal or Length codes, including the END_BLOCK code */
2012
2013#define D_CODES 30
2014/* number of distance codes */
2015
2016#define BL_CODES 19
2017/* number of codes used to transfer the bit lengths */
2018
2019
2020local int near extra_lbits[LENGTH_CODES] /* extra bits for each length code */
2021 = {0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0};
2022
2023local int near extra_dbits[D_CODES] /* extra bits for each distance code */
2024 = {0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13};
2025
2026local int near extra_blbits[BL_CODES]/* extra bits for each bit length code */
2027 = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7};
2028
2029#define STORED_BLOCK 0
2030#define STATIC_TREES 1
2031#define DYN_TREES 2
2032/* The three kinds of block type */
2033
2034#ifndef LIT_BUFSIZE
2035# ifdef SMALL_MEM
2036# define LIT_BUFSIZE 0x2000
2037# else
2038# ifdef MEDIUM_MEM
2039# define LIT_BUFSIZE 0x4000
2040# else
2041# define LIT_BUFSIZE 0x8000
2042# endif
2043# endif
2044#endif
2045#ifndef DIST_BUFSIZE
2046# define DIST_BUFSIZE LIT_BUFSIZE
2047#endif
2048/* Sizes of match buffers for literals/lengths and distances. There are
2049 * 4 reasons for limiting LIT_BUFSIZE to 64K:
2050 * - frequencies can be kept in 16 bit counters
2051 * - if compression is not successful for the first block, all input data is
2052 * still in the window so we can still emit a stored block even when input
2053 * comes from standard input. (This can also be done for all blocks if
2054 * LIT_BUFSIZE is not greater than 32K.)
2055 * - if compression is not successful for a file smaller than 64K, we can
2056 * even emit a stored file instead of a stored block (saving 5 bytes).
2057 * - creating new Huffman trees less frequently may not provide fast
2058 * adaptation to changes in the input data statistics. (Take for
2059 * example a binary file with poorly compressible code followed by
2060 * a highly compressible string table.) Smaller buffer sizes give
2061 * fast adaptation but have of course the overhead of transmitting trees
2062 * more frequently.
2063 * - I can't count above 4
2064 * The current code is general and allows DIST_BUFSIZE < LIT_BUFSIZE (to save
2065 * memory at the expense of compression). Some optimizations would be possible
2066 * if we rely on DIST_BUFSIZE == LIT_BUFSIZE.
2067 */
2068#if LIT_BUFSIZE > INBUFSIZ
2069 error cannot overlay l_buf and inbuf
2070#endif
2071
2072#define REP_3_6 16
2073/* repeat previous bit length 3-6 times (2 bits of repeat count) */
2074
2075#define REPZ_3_10 17
2076/* repeat a zero length 3-10 times (3 bits of repeat count) */
2077
2078#define REPZ_11_138 18
2079/* repeat a zero length 11-138 times (7 bits of repeat count) */
2080
2081/* ===========================================================================
2082 * Local data
2083 */
2084
2085/* Data structure describing a single value and its code string. */
2086typedef struct ct_data {
2087 union {
2088 ush freq; /* frequency count */
2089 ush code; /* bit string */
2090 } fc;
2091 union {
2092 ush dad; /* father node in Huffman tree */
2093 ush len; /* length of bit string */
2094 } dl;
2095} ct_data;
2096
2097#define Freq fc.freq
2098#define Code fc.code
2099#define Dad dl.dad
2100#define Len dl.len
2101
2102#define HEAP_SIZE (2*L_CODES+1)
2103/* maximum heap size */
2104
2105local ct_data near dyn_ltree[HEAP_SIZE]; /* literal and length tree */
2106local ct_data near dyn_dtree[2*D_CODES+1]; /* distance tree */
2107
2108local ct_data near static_ltree[L_CODES+2];
2109/* The static literal tree. Since the bit lengths are imposed, there is no
2110 * need for the L_CODES extra codes used during heap construction. However
2111 * The codes 286 and 287 are needed to build a canonical tree (see ct_init
2112 * below).
2113 */
2114
2115local ct_data near static_dtree[D_CODES];
2116/* The static distance tree. (Actually a trivial tree since all codes use
2117 * 5 bits.)
2118 */
2119
2120local ct_data near bl_tree[2*BL_CODES+1];
2121/* Huffman tree for the bit lengths */
2122
2123typedef struct tree_desc {
2124 ct_data near *dyn_tree; /* the dynamic tree */
2125 ct_data near *static_tree; /* corresponding static tree or NULL */
2126 int near *extra_bits; /* extra bits for each code or NULL */
2127 int extra_base; /* base index for extra_bits */
2128 int elems; /* max number of elements in the tree */
2129 int max_length; /* max bit length for the codes */
2130 int max_code; /* largest code with non zero frequency */
2131} tree_desc;
2132
2133local tree_desc near l_desc =
2134{dyn_ltree, static_ltree, extra_lbits, LITERALS+1, L_CODES, MAX_BITS, 0};
2135
2136local tree_desc near d_desc =
2137{dyn_dtree, static_dtree, extra_dbits, 0, D_CODES, MAX_BITS, 0};
2138
2139local tree_desc near bl_desc =
2140{bl_tree, (ct_data near *)0, extra_blbits, 0, BL_CODES, MAX_BL_BITS, 0};
2141
2142
2143local ush near bl_count[MAX_BITS+1];
2144/* number of codes at each bit length for an optimal tree */
2145
2146local uch near bl_order[BL_CODES]
2147 = {16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15};
2148/* The lengths of the bit length codes are sent in order of decreasing
2149 * probability, to avoid transmitting the lengths for unused bit length codes.
2150 */
2151
2152local int near heap[2*L_CODES+1]; /* heap used to build the Huffman trees */
2153local int heap_len; /* number of elements in the heap */
2154local int heap_max; /* element of largest frequency */
2155/* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.
2156 * The same heap array is used to build all trees.
2157 */
2158
2159local uch near depth[2*L_CODES+1];
2160/* Depth of each subtree used as tie breaker for trees of equal frequency */
2161
2162local uch length_code[MAX_MATCH-MIN_MATCH+1];
2163/* length code for each normalized match length (0 == MIN_MATCH) */
2164
2165local uch dist_code[512];
2166/* distance codes. The first 256 values correspond to the distances
2167 * 3 .. 258, the last 256 values correspond to the top 8 bits of
2168 * the 15 bit distances.
2169 */
2170
2171local int near base_length[LENGTH_CODES];
2172/* First normalized length for each code (0 = MIN_MATCH) */
2173
2174local int near base_dist[D_CODES];
2175/* First normalized distance for each code (0 = distance of 1) */
2176
2177#define l_buf inbuf
2178/* DECLARE(uch, l_buf, LIT_BUFSIZE); buffer for literals or lengths */
2179
2180/* DECLARE(ush, d_buf, DIST_BUFSIZE); buffer for distances */
2181
2182local uch near flag_buf[(LIT_BUFSIZE/8)];
2183/* flag_buf is a bit array distinguishing literals from lengths in
2184 * l_buf, thus indicating the presence or absence of a distance.
2185 */
2186
2187local unsigned last_lit; /* running index in l_buf */
2188local unsigned last_dist; /* running index in d_buf */
2189local unsigned last_flags; /* running index in flag_buf */
2190local uch flags; /* current flags not yet saved in flag_buf */
2191local uch flag_bit; /* current bit used in flags */
2192/* bits are filled in flags starting at bit 0 (least significant).
2193 * Note: these flags are overkill in the current code since we don't
2194 * take advantage of DIST_BUFSIZE == LIT_BUFSIZE.
2195 */
2196
2197local ulg opt_len; /* bit length of current block with optimal trees */
2198local ulg static_len; /* bit length of current block with static trees */
2199
2200local ulg compressed_len; /* total bit length of compressed file */
2201
2202local ulg input_len; /* total byte length of input file */
2203/* input_len is for debugging only since we can get it by other means. */
2204
2205ush *file_type; /* pointer to UNKNOWN, BINARY or ASCII */
2206int *file_method; /* pointer to DEFLATE or STORE */
2207
2208#ifdef DEBUG
2209extern ulg bits_sent; /* bit length of the compressed data */
2210extern long isize; /* byte length of input file */
2211#endif
2212
2213extern long block_start; /* window offset of current block */
2214extern unsigned near strstart; /* window offset of current string */
2215
2216/* ===========================================================================
2217 * Local (static) routines in this file.
2218 */
2219
2220local void init_block OF((void));
2221local void pqdownheap OF((ct_data near *tree, int k));
2222local void gen_bitlen OF((tree_desc near *desc));
2223local void gen_codes OF((ct_data near *tree, int max_code));
2224local void build_tree OF((tree_desc near *desc));
2225local void scan_tree OF((ct_data near *tree, int max_code));
2226local void send_tree OF((ct_data near *tree, int max_code));
2227local int build_bl_tree OF((void));
2228local void send_all_trees OF((int lcodes, int dcodes, int blcodes));
2229local void compress_block OF((ct_data near *ltree, ct_data near *dtree));
2230local void set_file_type OF((void));
2231
2232
2233#ifndef DEBUG
2234# define send_code(c, tree) send_bits(tree[c].Code, tree[c].Len)
2235 /* Send a code of the given tree. c and tree must not have side effects */
2236
2237#else /* DEBUG */
2238# define send_code(c, tree) \
2239 { if (verbose>1) fprintf(stderr,"\ncd %3d ",(c)); \
2240 send_bits(tree[c].Code, tree[c].Len); }
2241#endif
2242
2243#define d_code(dist) \
2244 ((dist) < 256 ? dist_code[dist] : dist_code[256+((dist)>>7)])
2245/* Mapping from a distance to a distance code. dist is the distance - 1 and
2246 * must not have side effects. dist_code[256] and dist_code[257] are never
2247 * used.
2248 */
2249
2250#define MAX(a,b) (a >= b ? a : b)
2251/* the arguments must not have side effects */
2252
2253/* ===========================================================================
2254 * Allocate the match buffer, initialize the various tables and save the
2255 * location of the internal file attribute (ascii/binary) and method
2256 * (DEFLATE/STORE).
2257 */
2258void ct_init(attr, methodp)
2259 ush *attr; /* pointer to internal file attribute */
2260 int *methodp; /* pointer to compression method */
2261{
2262 int n; /* iterates over tree elements */
2263 int bits; /* bit counter */
2264 int length; /* length value */
2265 int code; /* code value */
2266 int dist; /* distance index */
2267
2268 file_type = attr;
2269 file_method = methodp;
2270 compressed_len = input_len = 0L;
2271
2272 if (static_dtree[0].Len != 0) return; /* ct_init already called */
2273
2274 /* Initialize the mapping length (0..255) -> length code (0..28) */
2275 length = 0;
2276 for (code = 0; code < LENGTH_CODES-1; code++) {
2277 base_length[code] = length;
2278 for (n = 0; n < (1<<extra_lbits[code]); n++) {
2279 length_code[length++] = (uch)code;
2280 }
2281 }
2282 Assert (length == 256, "ct_init: length != 256");
2283 /* Note that the length 255 (match length 258) can be represented
2284 * in two different ways: code 284 + 5 bits or code 285, so we
2285 * overwrite length_code[255] to use the best encoding:
2286 */
2287 length_code[length-1] = (uch)code;
2288
2289 /* Initialize the mapping dist (0..32K) -> dist code (0..29) */
2290 dist = 0;
2291 for (code = 0 ; code < 16; code++) {
2292 base_dist[code] = dist;
2293 for (n = 0; n < (1<<extra_dbits[code]); n++) {
2294 dist_code[dist++] = (uch)code;
2295 }
2296 }
2297 Assert (dist == 256, "ct_init: dist != 256");
2298 dist >>= 7; /* from now on, all distances are divided by 128 */
2299 for ( ; code < D_CODES; code++) {
2300 base_dist[code] = dist << 7;
2301 for (n = 0; n < (1<<(extra_dbits[code]-7)); n++) {
2302 dist_code[256 + dist++] = (uch)code;
2303 }
2304 }
2305 Assert (dist == 256, "ct_init: 256+dist != 512");
2306
2307 /* Construct the codes of the static literal tree */
2308 for (bits = 0; bits <= MAX_BITS; bits++) bl_count[bits] = 0;
2309 n = 0;
2310 while (n <= 143) static_ltree[n++].Len = 8, bl_count[8]++;
2311 while (n <= 255) static_ltree[n++].Len = 9, bl_count[9]++;
2312 while (n <= 279) static_ltree[n++].Len = 7, bl_count[7]++;
2313 while (n <= 287) static_ltree[n++].Len = 8, bl_count[8]++;
2314 /* Codes 286 and 287 do not exist, but we must include them in the
2315 * tree construction to get a canonical Huffman tree (longest code
2316 * all ones)
2317 */
2318 gen_codes((ct_data near *)static_ltree, L_CODES+1);
2319
2320 /* The static distance tree is trivial: */
2321 for (n = 0; n < D_CODES; n++) {
2322 static_dtree[n].Len = 5;
2323 static_dtree[n].Code = bi_reverse(n, 5);
2324 }
2325
2326 /* Initialize the first block of the first file: */
2327 init_block();
2328}
2329
2330/* ===========================================================================
2331 * Initialize a new block.
2332 */
2333local void init_block()
2334{
2335 int n; /* iterates over tree elements */
2336
2337 /* Initialize the trees. */
2338 for (n = 0; n < L_CODES; n++) dyn_ltree[n].Freq = 0;
2339 for (n = 0; n < D_CODES; n++) dyn_dtree[n].Freq = 0;
2340 for (n = 0; n < BL_CODES; n++) bl_tree[n].Freq = 0;
2341
2342 dyn_ltree[END_BLOCK].Freq = 1;
2343 opt_len = static_len = 0L;
2344 last_lit = last_dist = last_flags = 0;
2345 flags = 0; flag_bit = 1;
2346}
2347
2348#define SMALLEST 1
2349/* Index within the heap array of least frequent node in the Huffman tree */
2350
2351
2352/* ===========================================================================
2353 * Remove the smallest element from the heap and recreate the heap with
2354 * one less element. Updates heap and heap_len.
2355 */
2356#define pqremove(tree, top) \
2357{\
2358 top = heap[SMALLEST]; \
2359 heap[SMALLEST] = heap[heap_len--]; \
2360 pqdownheap(tree, SMALLEST); \
2361}
2362
2363/* ===========================================================================
2364 * Compares to subtrees, using the tree depth as tie breaker when
2365 * the subtrees have equal frequency. This minimizes the worst case length.
2366 */
2367#define smaller(tree, n, m) \
2368 (tree[n].Freq < tree[m].Freq || \
2369 (tree[n].Freq == tree[m].Freq && depth[n] <= depth[m]))
2370
2371/* ===========================================================================
2372 * Restore the heap property by moving down the tree starting at node k,
2373 * exchanging a node with the smallest of its two sons if necessary, stopping
2374 * when the heap property is re-established (each father smaller than its
2375 * two sons).
2376 */
2377local void pqdownheap(tree, k)
2378 ct_data near *tree; /* the tree to restore */
2379 int k; /* node to move down */
2380{
2381 int v = heap[k];
2382 int j = k << 1; /* left son of k */
2383 while (j <= heap_len) {
2384 /* Set j to the smallest of the two sons: */
2385 if (j < heap_len && smaller(tree, heap[j+1], heap[j])) j++;
2386
2387 /* Exit if v is smaller than both sons */
2388 if (smaller(tree, v, heap[j])) break;
2389
2390 /* Exchange v with the smallest son */
2391 heap[k] = heap[j]; k = j;
2392
2393 /* And continue down the tree, setting j to the left son of k */
2394 j <<= 1;
2395 }
2396 heap[k] = v;
2397}
2398
2399/* ===========================================================================
2400 * Compute the optimal bit lengths for a tree and update the total bit length
2401 * for the current block.
2402 * IN assertion: the fields freq and dad are set, heap[heap_max] and
2403 * above are the tree nodes sorted by increasing frequency.
2404 * OUT assertions: the field len is set to the optimal bit length, the
2405 * array bl_count contains the frequencies for each bit length.
2406 * The length opt_len is updated; static_len is also updated if stree is
2407 * not null.
2408 */
2409local void gen_bitlen(desc)
2410 tree_desc near *desc; /* the tree descriptor */
2411{
2412 ct_data near *tree = desc->dyn_tree;
2413 int near *extra = desc->extra_bits;
2414 int base = desc->extra_base;
2415 int max_code = desc->max_code;
2416 int max_length = desc->max_length;
2417 ct_data near *stree = desc->static_tree;
2418 int h; /* heap index */
2419 int n, m; /* iterate over the tree elements */
2420 int bits; /* bit length */
2421 int xbits; /* extra bits */
2422 ush f; /* frequency */
2423 int overflow = 0; /* number of elements with bit length too large */
2424
2425 for (bits = 0; bits <= MAX_BITS; bits++) bl_count[bits] = 0;
2426
2427 /* In a first pass, compute the optimal bit lengths (which may
2428 * overflow in the case of the bit length tree).
2429 */
2430 tree[heap[heap_max]].Len = 0; /* root of the heap */
2431
2432 for (h = heap_max+1; h < HEAP_SIZE; h++) {
2433 n = heap[h];
2434 bits = tree[tree[n].Dad].Len + 1;
2435 if (bits > max_length) bits = max_length, overflow++;
2436 tree[n].Len = (ush)bits;
2437 /* We overwrite tree[n].Dad which is no longer needed */
2438
2439 if (n > max_code) continue; /* not a leaf node */
2440
2441 bl_count[bits]++;
2442 xbits = 0;
2443 if (n >= base) xbits = extra[n-base];
2444 f = tree[n].Freq;
2445 opt_len += (ulg)f * (bits + xbits);
2446 if (stree) static_len += (ulg)f * (stree[n].Len + xbits);
2447 }
2448 if (overflow == 0) return;
2449
2450 Trace((stderr,"\nbit length overflow\n"));
2451 /* This happens for example on obj2 and pic of the Calgary corpus */
2452
2453 /* Find the first bit length which could increase: */
2454 do {
2455 bits = max_length-1;
2456 while (bl_count[bits] == 0) bits--;
2457 bl_count[bits]--; /* move one leaf down the tree */
2458 bl_count[bits+1] += 2; /* move one overflow item as its brother */
2459 bl_count[max_length]--;
2460 /* The brother of the overflow item also moves one step up,
2461 * but this does not affect bl_count[max_length]
2462 */
2463 overflow -= 2;
2464 } while (overflow > 0);
2465
2466 /* Now recompute all bit lengths, scanning in increasing frequency.
2467 * h is still equal to HEAP_SIZE. (It is simpler to reconstruct all
2468 * lengths instead of fixing only the wrong ones. This idea is taken
2469 * from 'ar' written by Haruhiko Okumura.)
2470 */
2471 for (bits = max_length; bits != 0; bits--) {
2472 n = bl_count[bits];
2473 while (n != 0) {
2474 m = heap[--h];
2475 if (m > max_code) continue;
2476 if (tree[m].Len != (unsigned) bits) {
2477 Trace((stderr,"code %d bits %d->%d\n", m, tree[m].Len, bits));
2478 opt_len += ((long)bits-(long)tree[m].Len)*(long)tree[m].Freq;
2479 tree[m].Len = (ush)bits;
2480 }
2481 n--;
2482 }
2483 }
2484}
2485
2486/* ===========================================================================
2487 * Generate the codes for a given tree and bit counts (which need not be
2488 * optimal).
2489 * IN assertion: the array bl_count contains the bit length statistics for
2490 * the given tree and the field len is set for all tree elements.
2491 * OUT assertion: the field code is set for all tree elements of non
2492 * zero code length.
2493 */
2494local void gen_codes (tree, max_code)
2495 ct_data near *tree; /* the tree to decorate */
2496 int max_code; /* largest code with non zero frequency */
2497{
2498 ush next_code[MAX_BITS+1]; /* next code value for each bit length */
2499 ush code = 0; /* running code value */
2500 int bits; /* bit index */
2501 int n; /* code index */
2502
2503 /* The distribution counts are first used to generate the code values
2504 * without bit reversal.
2505 */
2506 for (bits = 1; bits <= MAX_BITS; bits++) {
2507 next_code[bits] = code = (code + bl_count[bits-1]) << 1;
2508 }
2509 /* Check that the bit counts in bl_count are consistent. The last code
2510 * must be all ones.
2511 */
2512 Assert (code + bl_count[MAX_BITS]-1 == (1<<MAX_BITS)-1,
2513 "inconsistent bit counts");
2514 Tracev((stderr,"\ngen_codes: max_code %d ", max_code));
2515
2516 for (n = 0; n <= max_code; n++) {
2517 int len = tree[n].Len;
2518 if (len == 0) continue;
2519 /* Now reverse the bits */
2520 tree[n].Code = bi_reverse(next_code[len]++, len);
2521
2522 Tracec(tree != static_ltree, (stderr,"\nn %3d %c l %2d c %4x (%x) ",
2523 n, (isgraph(n) ? n : ' '), len, tree[n].Code, next_code[len]-1));
2524 }
2525}
2526
2527/* ===========================================================================
2528 * Construct one Huffman tree and assigns the code bit strings and lengths.
2529 * Update the total bit length for the current block.
2530 * IN assertion: the field freq is set for all tree elements.
2531 * OUT assertions: the fields len and code are set to the optimal bit length
2532 * and corresponding code. The length opt_len is updated; static_len is
2533 * also updated if stree is not null. The field max_code is set.
2534 */
2535local void build_tree(desc)
2536 tree_desc near *desc; /* the tree descriptor */
2537{
2538 ct_data near *tree = desc->dyn_tree;
2539 ct_data near *stree = desc->static_tree;
2540 int elems = desc->elems;
2541 int n, m; /* iterate over heap elements */
2542 int max_code = -1; /* largest code with non zero frequency */
2543 int node = elems; /* next internal node of the tree */
2544
2545 /* Construct the initial heap, with least frequent element in
2546 * heap[SMALLEST]. The sons of heap[n] are heap[2*n] and heap[2*n+1].
2547 * heap[0] is not used.
2548 */
2549 heap_len = 0, heap_max = HEAP_SIZE;
2550
2551 for (n = 0; n < elems; n++) {
2552 if (tree[n].Freq != 0) {
2553 heap[++heap_len] = max_code = n;
2554 depth[n] = 0;
2555 } else {
2556 tree[n].Len = 0;
2557 }
2558 }
2559
2560 /* The pkzip format requires that at least one distance code exists,
2561 * and that at least one bit should be sent even if there is only one
2562 * possible code. So to avoid special checks later on we force at least
2563 * two codes of non zero frequency.
2564 */
2565 while (heap_len < 2) {
2566 int new = heap[++heap_len] = (max_code < 2 ? ++max_code : 0);
2567 tree[new].Freq = 1;
2568 depth[new] = 0;
2569 opt_len--; if (stree) static_len -= stree[new].Len;
2570 /* new is 0 or 1 so it does not have extra bits */
2571 }
2572 desc->max_code = max_code;
2573
2574 /* The elements heap[heap_len/2+1 .. heap_len] are leaves of the tree,
2575 * establish sub-heaps of increasing lengths:
2576 */
2577 for (n = heap_len/2; n >= 1; n--) pqdownheap(tree, n);
2578
2579 /* Construct the Huffman tree by repeatedly combining the least two
2580 * frequent nodes.
2581 */
2582 do {
2583 pqremove(tree, n); /* n = node of least frequency */
2584 m = heap[SMALLEST]; /* m = node of next least frequency */
2585
2586 heap[--heap_max] = n; /* keep the nodes sorted by frequency */
2587 heap[--heap_max] = m;
2588
2589 /* Create a new node father of n and m */
2590 tree[node].Freq = tree[n].Freq + tree[m].Freq;
2591 depth[node] = (uch) (MAX(depth[n], depth[m]) + 1);
2592 tree[n].Dad = tree[m].Dad = (ush)node;
2593#ifdef DUMP_BL_TREE
2594 if (tree == bl_tree) {
2595 fprintf(stderr,"\nnode %d(%d), sons %d(%d) %d(%d)",
2596 node, tree[node].Freq, n, tree[n].Freq, m, tree[m].Freq);
2597 }
2598#endif
2599 /* and insert the new node in the heap */
2600 heap[SMALLEST] = node++;
2601 pqdownheap(tree, SMALLEST);
2602
2603 } while (heap_len >= 2);
2604
2605 heap[--heap_max] = heap[SMALLEST];
2606
2607 /* At this point, the fields freq and dad are set. We can now
2608 * generate the bit lengths.
2609 */
2610 gen_bitlen((tree_desc near *)desc);
2611
2612 /* The field len is now set, we can generate the bit codes */
2613 gen_codes ((ct_data near *)tree, max_code);
2614}
2615
2616/* ===========================================================================
2617 * Scan a literal or distance tree to determine the frequencies of the codes
2618 * in the bit length tree. Updates opt_len to take into account the repeat
2619 * counts. (The contribution of the bit length codes will be added later
2620 * during the construction of bl_tree.)
2621 */
2622local void scan_tree (tree, max_code)
2623 ct_data near *tree; /* the tree to be scanned */
2624 int max_code; /* and its largest code of non zero frequency */
2625{
2626 int n; /* iterates over all tree elements */
2627 int prevlen = -1; /* last emitted length */
2628 int curlen; /* length of current code */
2629 int nextlen = tree[0].Len; /* length of next code */
2630 int count = 0; /* repeat count of the current code */
2631 int max_count = 7; /* max repeat count */
2632 int min_count = 4; /* min repeat count */
2633
2634 if (nextlen == 0) max_count = 138, min_count = 3;
2635 tree[max_code+1].Len = (ush)0xffff; /* guard */
2636
2637 for (n = 0; n <= max_code; n++) {
2638 curlen = nextlen; nextlen = tree[n+1].Len;
2639 if (++count < max_count && curlen == nextlen) {
2640 continue;
2641 } else if (count < min_count) {
2642 bl_tree[curlen].Freq += count;
2643 } else if (curlen != 0) {
2644 if (curlen != prevlen) bl_tree[curlen].Freq++;
2645 bl_tree[REP_3_6].Freq++;
2646 } else if (count <= 10) {
2647 bl_tree[REPZ_3_10].Freq++;
2648 } else {
2649 bl_tree[REPZ_11_138].Freq++;
2650 }
2651 count = 0; prevlen = curlen;
2652 if (nextlen == 0) {
2653 max_count = 138, min_count = 3;
2654 } else if (curlen == nextlen) {
2655 max_count = 6, min_count = 3;
2656 } else {
2657 max_count = 7, min_count = 4;
2658 }
2659 }
2660}
2661
2662/* ===========================================================================
2663 * Send a literal or distance tree in compressed form, using the codes in
2664 * bl_tree.
2665 */
2666local void send_tree (tree, max_code)
2667 ct_data near *tree; /* the tree to be scanned */
2668 int max_code; /* and its largest code of non zero frequency */
2669{
2670 int n; /* iterates over all tree elements */
2671 int prevlen = -1; /* last emitted length */
2672 int curlen; /* length of current code */
2673 int nextlen = tree[0].Len; /* length of next code */
2674 int count = 0; /* repeat count of the current code */
2675 int max_count = 7; /* max repeat count */
2676 int min_count = 4; /* min repeat count */
2677
2678 /* tree[max_code+1].Len = -1; */ /* guard already set */
2679 if (nextlen == 0) max_count = 138, min_count = 3;
2680
2681 for (n = 0; n <= max_code; n++) {
2682 curlen = nextlen; nextlen = tree[n+1].Len;
2683 if (++count < max_count && curlen == nextlen) {
2684 continue;
2685 } else if (count < min_count) {
2686 do { send_code(curlen, bl_tree); } while (--count != 0);
2687
2688 } else if (curlen != 0) {
2689 if (curlen != prevlen) {
2690 send_code(curlen, bl_tree); count--;
2691 }
2692 Assert(count >= 3 && count <= 6, " 3_6?");
2693 send_code(REP_3_6, bl_tree); send_bits(count-3, 2);
2694
2695 } else if (count <= 10) {
2696 send_code(REPZ_3_10, bl_tree); send_bits(count-3, 3);
2697
2698 } else {
2699 send_code(REPZ_11_138, bl_tree); send_bits(count-11, 7);
2700 }
2701 count = 0; prevlen = curlen;
2702 if (nextlen == 0) {
2703 max_count = 138, min_count = 3;
2704 } else if (curlen == nextlen) {
2705 max_count = 6, min_count = 3;
2706 } else {
2707 max_count = 7, min_count = 4;
2708 }
2709 }
2710}
2711
2712/* ===========================================================================
2713 * Construct the Huffman tree for the bit lengths and return the index in
2714 * bl_order of the last bit length code to send.
2715 */
2716local int build_bl_tree()
2717{
2718 int max_blindex; /* index of last bit length code of non zero freq */
2719
2720 /* Determine the bit length frequencies for literal and distance trees */
2721 scan_tree((ct_data near *)dyn_ltree, l_desc.max_code);
2722 scan_tree((ct_data near *)dyn_dtree, d_desc.max_code);
2723
2724 /* Build the bit length tree: */
2725 build_tree((tree_desc near *)(&bl_desc));
2726 /* opt_len now includes the length of the tree representations, except
2727 * the lengths of the bit lengths codes and the 5+5+4 bits for the counts.
2728 */
2729
2730 /* Determine the number of bit length codes to send. The pkzip format
2731 * requires that at least 4 bit length codes be sent. (appnote.txt says
2732 * 3 but the actual value used is 4.)
2733 */
2734 for (max_blindex = BL_CODES-1; max_blindex >= 3; max_blindex--) {
2735 if (bl_tree[bl_order[max_blindex]].Len != 0) break;
2736 }
2737 /* Update opt_len to include the bit length tree and counts */
2738 opt_len += 3*(max_blindex+1) + 5+5+4;
2739 Tracev((stderr, "\ndyn trees: dyn %ld, stat %ld", opt_len, static_len));
2740
2741 return max_blindex;
2742}
2743
2744/* ===========================================================================
2745 * Send the header for a block using dynamic Huffman trees: the counts, the
2746 * lengths of the bit length codes, the literal tree and the distance tree.
2747 * IN assertion: lcodes >= 257, dcodes >= 1, blcodes >= 4.
2748 */
2749local void send_all_trees(lcodes, dcodes, blcodes)
2750 int lcodes, dcodes, blcodes; /* number of codes for each tree */
2751{
2752 int rank; /* index in bl_order */
2753
2754 Assert (lcodes >= 257 && dcodes >= 1 && blcodes >= 4, "not enough codes");
2755 Assert (lcodes <= L_CODES && dcodes <= D_CODES && blcodes <= BL_CODES,
2756 "too many codes");
2757 Tracev((stderr, "\nbl counts: "));
2758 send_bits(lcodes-257, 5); /* not +255 as stated in appnote.txt */
2759 send_bits(dcodes-1, 5);
2760 send_bits(blcodes-4, 4); /* not -3 as stated in appnote.txt */
2761 for (rank = 0; rank < blcodes; rank++) {
2762 Tracev((stderr, "\nbl code %2d ", bl_order[rank]));
2763 send_bits(bl_tree[bl_order[rank]].Len, 3);
2764 }
2765 Tracev((stderr, "\nbl tree: sent %ld", bits_sent));
2766
2767 send_tree((ct_data near *)dyn_ltree, lcodes-1); /* send the literal tree */
2768 Tracev((stderr, "\nlit tree: sent %ld", bits_sent));
2769
2770 send_tree((ct_data near *)dyn_dtree, dcodes-1); /* send the distance tree */
2771 Tracev((stderr, "\ndist tree: sent %ld", bits_sent));
2772}
2773
2774/* ===========================================================================
2775 * Determine the best encoding for the current block: dynamic trees, static
2776 * trees or store, and output the encoded block to the zip file. This function
2777 * returns the total compressed length for the file so far.
2778 */
2779ulg flush_block(buf, stored_len, eof)
2780 char *buf; /* input block, or NULL if too old */
2781 ulg stored_len; /* length of input block */
2782 int eof; /* true if this is the last block for a file */
2783{
2784 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
2785 int max_blindex; /* index of last bit length code of non zero freq */
2786
2787 flag_buf[last_flags] = flags; /* Save the flags for the last 8 items */
2788
2789 /* Check if the file is ascii or binary */
2790 if (*file_type == (ush)UNKNOWN) set_file_type();
2791
2792 /* Construct the literal and distance trees */
2793 build_tree((tree_desc near *)(&l_desc));
2794 Tracev((stderr, "\nlit data: dyn %ld, stat %ld", opt_len, static_len));
2795
2796 build_tree((tree_desc near *)(&d_desc));
2797 Tracev((stderr, "\ndist data: dyn %ld, stat %ld", opt_len, static_len));
2798 /* At this point, opt_len and static_len are the total bit lengths of
2799 * the compressed block data, excluding the tree representations.
2800 */
2801
2802 /* Build the bit length tree for the above two trees, and get the index
2803 * in bl_order of the last bit length code to send.
2804 */
2805 max_blindex = build_bl_tree();
2806
2807 /* Determine the best encoding. Compute first the block length in bytes */
2808 opt_lenb = (opt_len+3+7)>>3;
2809 static_lenb = (static_len+3+7)>>3;
2810 input_len += stored_len; /* for debugging only */
2811
2812 Trace((stderr, "\nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u dist %u ",
2813 opt_lenb, opt_len, static_lenb, static_len, stored_len,
2814 last_lit, last_dist));
2815
2816 if (static_lenb <= opt_lenb) opt_lenb = static_lenb;
2817
2818 /* If compression failed and this is the first and last block,
2819 * and if the zip file can be seeked (to rewrite the local header),
2820 * the whole file is transformed into a stored file:
2821 */
2822#ifdef FORCE_METHOD
2823#else
2824 if (stored_len <= opt_lenb && eof && compressed_len == 0L && seekable()) {
2825#endif
2826 /* Since LIT_BUFSIZE <= 2*WSIZE, the input data must be there: */
2827 if (buf == (char*)0) error ("block vanished");
2828
2829 copy_block(buf, (unsigned)stored_len, 0); /* without header */
2830 compressed_len = stored_len << 3;
2831 *file_method = STORED;
2832
2833#ifdef FORCE_METHOD
2834#else
2835 } else if (stored_len+4 <= opt_lenb && buf != (char*)0) {
2836 /* 4: two words for the lengths */
2837#endif
2838 /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE.
2839 * Otherwise we can't have processed more than WSIZE input bytes since
2840 * the last block flush, because compression would have been
2841 * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to
2842 * transform a block into a stored block.
2843 */
2844 send_bits((STORED_BLOCK<<1)+eof, 3); /* send block type */
2845 compressed_len = (compressed_len + 3 + 7) & ~7L;
2846 compressed_len += (stored_len + 4) << 3;
2847
2848 copy_block(buf, (unsigned)stored_len, 1); /* with header */
2849
2850#ifdef FORCE_METHOD
2851#else
2852 } else if (static_lenb == opt_lenb) {
2853#endif
2854 send_bits((STATIC_TREES<<1)+eof, 3);
2855 compress_block((ct_data near *)static_ltree, (ct_data near *)static_dtree);
2856 compressed_len += 3 + static_len;
2857 } else {
2858 send_bits((DYN_TREES<<1)+eof, 3);
2859 send_all_trees(l_desc.max_code+1, d_desc.max_code+1, max_blindex+1);
2860 compress_block((ct_data near *)dyn_ltree, (ct_data near *)dyn_dtree);
2861 compressed_len += 3 + opt_len;
2862 }
2863 Assert (compressed_len == bits_sent, "bad compressed size");
2864 init_block();
2865
2866 if (eof) {
2867 Assert (input_len == isize, "bad input size");
2868 bi_windup();
2869 compressed_len += 7; /* align on byte boundary */
2870 }
2871 Tracev((stderr,"\ncomprlen %lu(%lu) ", compressed_len>>3,
2872 compressed_len-7*eof));
2873
2874 return compressed_len >> 3;
2875}
2876
2877/* ===========================================================================
2878 * Save the match info and tally the frequency counts. Return true if
2879 * the current block must be flushed.
2880 */
2881int ct_tally (dist, lc)
2882 int dist; /* distance of matched string */
2883 int lc; /* match length-MIN_MATCH or unmatched char (if dist==0) */
2884{
2885 l_buf[last_lit++] = (uch)lc;
2886 if (dist == 0) {
2887 /* lc is the unmatched char */
2888 dyn_ltree[lc].Freq++;
2889 } else {
2890 /* Here, lc is the match length - MIN_MATCH */
2891 dist--; /* dist = match distance - 1 */
2892 Assert((ush)dist < (ush)MAX_DIST &&
2893 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
2894 (ush)d_code(dist) < (ush)D_CODES, "ct_tally: bad match");
2895
2896 dyn_ltree[length_code[lc]+LITERALS+1].Freq++;
2897 dyn_dtree[d_code(dist)].Freq++;
2898
2899 d_buf[last_dist++] = (ush)dist;
2900 flags |= flag_bit;
2901 }
2902 flag_bit <<= 1;
2903
2904 /* Output the flags if they fill a byte: */
2905 if ((last_lit & 7) == 0) {
2906 flag_buf[last_flags++] = flags;
2907 flags = 0, flag_bit = 1;
2908 }
2909 /* Try to guess if it is profitable to stop the current block here */
2910 if ((last_lit & 0xfff) == 0) {
2911 /* Compute an upper bound for the compressed length */
2912 ulg out_length = (ulg)last_lit*8L;
2913 ulg in_length = (ulg)strstart-block_start;
2914 int dcode;
2915 for (dcode = 0; dcode < D_CODES; dcode++) {
2916 out_length += (ulg)dyn_dtree[dcode].Freq*(5L+extra_dbits[dcode]);
2917 }
2918 out_length >>= 3;
2919 Trace((stderr,"\nlast_lit %u, last_dist %u, in %ld, out ~%ld(%ld%%) ",
2920 last_lit, last_dist, in_length, out_length,
2921 100L - out_length*100L/in_length));
2922 if (last_dist < last_lit/2 && out_length < in_length/2) return 1;
2923 }
2924 return (last_lit == LIT_BUFSIZE-1 || last_dist == DIST_BUFSIZE);
2925 /* We avoid equality with LIT_BUFSIZE because of wraparound at 64K
2926 * on 16 bit machines and because stored blocks are restricted to
2927 * 64K-1 bytes.
2928 */
2929}
2930
2931/* ===========================================================================
2932 * Send the block data compressed using the given Huffman trees
2933 */
2934local void compress_block(ltree, dtree)
2935 ct_data near *ltree; /* literal tree */
2936 ct_data near *dtree; /* distance tree */
2937{
2938 unsigned dist; /* distance of matched string */
2939 int lc; /* match length or unmatched char (if dist == 0) */
2940 unsigned lx = 0; /* running index in l_buf */
2941 unsigned dx = 0; /* running index in d_buf */
2942 unsigned fx = 0; /* running index in flag_buf */
2943 uch flag = 0; /* current flags */
2944 unsigned code; /* the code to send */
2945 int extra; /* number of extra bits to send */
2946
2947 if (last_lit != 0) do {
2948 if ((lx & 7) == 0) flag = flag_buf[fx++];
2949 lc = l_buf[lx++];
2950 if ((flag & 1) == 0) {
2951 send_code(lc, ltree); /* send a literal byte */
2952 Tracecv(isgraph(lc), (stderr," '%c' ", lc));
2953 } else {
2954 /* Here, lc is the match length - MIN_MATCH */
2955 code = length_code[lc];
2956 send_code(code+LITERALS+1, ltree); /* send the length code */
2957 extra = extra_lbits[code];
2958 if (extra != 0) {
2959 lc -= base_length[code];
2960 send_bits(lc, extra); /* send the extra length bits */
2961 }
2962 dist = d_buf[dx++];
2963 /* Here, dist is the match distance - 1 */
2964 code = d_code(dist);
2965 Assert (code < D_CODES, "bad d_code");
2966
2967 send_code(code, dtree); /* send the distance code */
2968 extra = extra_dbits[code];
2969 if (extra != 0) {
2970 dist -= base_dist[code];
2971 send_bits(dist, extra); /* send the extra distance bits */
2972 }
2973 } /* literal or match pair ? */
2974 flag >>= 1;
2975 } while (lx < last_lit);
2976
2977 send_code(END_BLOCK, ltree);
2978}
2979
2980/* ===========================================================================
2981 * Set the file type to ASCII or BINARY, using a crude approximation:
2982 * binary if more than 20% of the bytes are <= 6 or >= 128, ascii otherwise.
2983 * IN assertion: the fields freq of dyn_ltree are set and the total of all
2984 * frequencies does not exceed 64K (to fit in an int on 16 bit machines).
2985 */
2986local void set_file_type()
2987{
2988 int n = 0;
2989 unsigned ascii_freq = 0;
2990 unsigned bin_freq = 0;
2991 while (n < 7) bin_freq += dyn_ltree[n++].Freq;
2992 while (n < 128) ascii_freq += dyn_ltree[n++].Freq;
2993 while (n < LITERALS) bin_freq += dyn_ltree[n++].Freq;
2994 *file_type = bin_freq > (ascii_freq >> 2) ? BINARY : ASCII;
2995 if (*file_type == BINARY && translate_eol) {
2996 warn("-l used on binary file", "");
2997 }
2998}
2999/* util.c -- utility functions for gzip support
3000 * Copyright (C) 1992-1993 Jean-loup Gailly
3001 * This is free software; you can redistribute it and/or modify it under the
3002 * terms of the GNU General Public License, see the file COPYING.
3003 */
3004
Eric Andersencc8ed391999-10-05 16:24:54 +00003005#include <ctype.h>
3006#include <errno.h>
3007#include <sys/types.h>
3008
3009#ifdef HAVE_UNISTD_H
3010# include <unistd.h>
3011#endif
3012#ifndef NO_FCNTL_H
3013# include <fcntl.h>
3014#endif
3015
3016#if defined(STDC_HEADERS) || !defined(NO_STDLIB_H)
3017# include <stdlib.h>
3018#else
3019 extern int errno;
3020#endif
3021
Eric Andersencc8ed391999-10-05 16:24:54 +00003022/* ===========================================================================
3023 * Copy input to output unchanged: zcat == cat with --force.
3024 * IN assertion: insize bytes have already been read in inbuf.
3025 */
3026int copy(in, out)
3027 int in, out; /* input and output file descriptors */
3028{
3029 errno = 0;
3030 while (insize != 0 && (int)insize != EOF) {
3031 write_buf(out, (char*)inbuf, insize);
3032 bytes_out += insize;
3033 insize = read(in, (char*)inbuf, INBUFSIZ);
3034 }
3035 if ((int)insize == EOF && errno != 0) {
3036 read_error();
3037 }
3038 bytes_in = bytes_out;
3039 return OK;
3040}
3041
3042/* ========================================================================
3043 * Put string s in lower case, return s.
3044 */
3045char *strlwr(s)
3046 char *s;
3047{
3048 char *t;
3049 for (t = s; *t; t++) *t = tolow(*t);
3050 return s;
3051}
3052
3053#if defined(NO_STRING_H) && !defined(STDC_HEADERS)
3054
3055/* Provide missing strspn and strcspn functions. */
3056
3057# ifndef __STDC__
3058# define const
3059# endif
3060
3061int strspn OF((const char *s, const char *accept));
3062int strcspn OF((const char *s, const char *reject));
3063
3064/* ========================================================================
3065 * Return the length of the maximum initial segment
3066 * of s which contains only characters in accept.
3067 */
3068int strspn(s, accept)
3069 const char *s;
3070 const char *accept;
3071{
3072 register const char *p;
3073 register const char *a;
3074 register int count = 0;
3075
3076 for (p = s; *p != '\0'; ++p) {
3077 for (a = accept; *a != '\0'; ++a) {
3078 if (*p == *a) break;
3079 }
3080 if (*a == '\0') return count;
3081 ++count;
3082 }
3083 return count;
3084}
3085
3086/* ========================================================================
3087 * Return the length of the maximum inital segment of s
3088 * which contains no characters from reject.
3089 */
3090int strcspn(s, reject)
3091 const char *s;
3092 const char *reject;
3093{
3094 register int count = 0;
3095
3096 while (*s != '\0') {
3097 if (strchr(reject, *s++) != NULL) return count;
3098 ++count;
3099 }
3100 return count;
3101}
3102
3103#endif /* NO_STRING_H */
3104
3105/* ========================================================================
3106 * Add an environment variable (if any) before argv, and update argc.
3107 * Return the expanded environment variable to be freed later, or NULL
3108 * if no options were added to argv.
3109 */
3110#define SEPARATOR " \t" /* separators in env variable */
3111
3112char *add_envopt(argcp, argvp, env)
3113 int *argcp; /* pointer to argc */
3114 char ***argvp; /* pointer to argv */
3115 char *env; /* name of environment variable */
3116{
3117 char *p; /* running pointer through env variable */
3118 char **oargv; /* runs through old argv array */
3119 char **nargv; /* runs through new argv array */
3120 int oargc = *argcp; /* old argc */
3121 int nargc = 0; /* number of arguments in env variable */
3122
3123 env = (char*)getenv(env);
3124 if (env == NULL) return NULL;
3125
3126 p = (char*)xmalloc(strlen(env)+1);
3127 env = strcpy(p, env); /* keep env variable intact */
3128
3129 for (p = env; *p; nargc++ ) { /* move through env */
3130 p += strspn(p, SEPARATOR); /* skip leading separators */
3131 if (*p == '\0') break;
3132
3133 p += strcspn(p, SEPARATOR); /* find end of word */
3134 if (*p) *p++ = '\0'; /* mark it */
3135 }
3136 if (nargc == 0) {
3137 free(env);
3138 return NULL;
3139 }
3140 *argcp += nargc;
3141 /* Allocate the new argv array, with an extra element just in case
3142 * the original arg list did not end with a NULL.
3143 */
3144 nargv = (char**)calloc(*argcp+1, sizeof(char *));
3145 if (nargv == NULL) error("out of memory");
3146 oargv = *argvp;
3147 *argvp = nargv;
3148
3149 /* Copy the program name first */
3150 if (oargc-- < 0) error("argc<=0");
3151 *(nargv++) = *(oargv++);
3152
3153 /* Then copy the environment args */
3154 for (p = env; nargc > 0; nargc--) {
3155 p += strspn(p, SEPARATOR); /* skip separators */
3156 *(nargv++) = p; /* store start */
3157 while (*p++) ; /* skip over word */
3158 }
3159
3160 /* Finally copy the old args and add a NULL (usual convention) */
3161 while (oargc--) *(nargv++) = *(oargv++);
3162 *nargv = NULL;
3163 return env;
3164}
3165/* ========================================================================
3166 * Display compression ratio on the given stream on 6 characters.
3167 */
3168void display_ratio(num, den, file)
3169 long num;
3170 long den;
3171 FILE *file;
3172{
3173 long ratio; /* 1000 times the compression ratio */
3174
3175 if (den == 0) {
3176 ratio = 0; /* no compression */
3177 } else if (den < 2147483L) { /* (2**31 -1)/1000 */
3178 ratio = 1000L*num/den;
3179 } else {
3180 ratio = num/(den/1000L);
3181 }
3182 if (ratio < 0) {
3183 putc('-', file);
3184 ratio = -ratio;
3185 } else {
3186 putc(' ', file);
3187 }
3188 fprintf(file, "%2ld.%1ld%%", ratio / 10L, ratio % 10L);
3189}
3190
3191
3192/* zip.c -- compress files to the gzip or pkzip format
3193 * Copyright (C) 1992-1993 Jean-loup Gailly
3194 * This is free software; you can redistribute it and/or modify it under the
3195 * terms of the GNU General Public License, see the file COPYING.
3196 */
3197
Eric Andersencc8ed391999-10-05 16:24:54 +00003198#include <ctype.h>
3199#include <sys/types.h>
3200
3201#ifdef HAVE_UNISTD_H
3202# include <unistd.h>
3203#endif
3204#ifndef NO_FCNTL_H
3205# include <fcntl.h>
3206#endif
3207
3208local ulg crc; /* crc on uncompressed file data */
3209long header_bytes; /* number of bytes in gzip header */
3210
3211/* ===========================================================================
3212 * Deflate in to out.
3213 * IN assertions: the input and output buffers are cleared.
3214 * The variables time_stamp and save_orig_name are initialized.
3215 */
3216int zip(in, out)
3217 int in, out; /* input and output file descriptors */
3218{
3219 uch flags = 0; /* general purpose bit flags */
3220 ush attr = 0; /* ascii/binary flag */
3221 ush deflate_flags = 0; /* pkzip -es, -en or -ex equivalent */
3222
3223 ifd = in;
3224 ofd = out;
3225 outcnt = 0;
3226
3227 /* Write the header to the gzip file. See algorithm.doc for the format */
3228
Eric Andersen96bcfd31999-11-12 01:30:18 +00003229
Eric Andersencc8ed391999-10-05 16:24:54 +00003230 method = DEFLATED;
3231 put_byte(GZIP_MAGIC[0]); /* magic header */
3232 put_byte(GZIP_MAGIC[1]);
3233 put_byte(DEFLATED); /* compression method */
3234
3235 put_byte(flags); /* general flags */
3236 put_long(time_stamp);
3237
3238 /* Write deflated file to zip file */
3239 crc = updcrc(0, 0);
3240
3241 bi_init(out);
3242 ct_init(&attr, &method);
3243 lm_init(&deflate_flags);
3244
3245 put_byte((uch)deflate_flags); /* extra flags */
3246 put_byte(OS_CODE); /* OS identifier */
3247
3248 header_bytes = (long)outcnt;
3249
3250 (void)deflate();
3251
3252 /* Write the crc and uncompressed size */
3253 put_long(crc);
3254 put_long(isize);
3255 header_bytes += 2*sizeof(long);
3256
3257 flush_outbuf();
3258 return OK;
3259}
3260
3261
3262/* ===========================================================================
3263 * Read a new buffer from the current input file, perform end-of-line
3264 * translation, and update the crc and input file size.
3265 * IN assertion: size >= 2 (for end-of-line translation)
3266 */
3267int file_read(buf, size)
3268 char *buf;
3269 unsigned size;
3270{
3271 unsigned len;
3272
3273 Assert(insize == 0, "inbuf not empty");
3274
3275 len = read(ifd, buf, size);
3276 if (len == (unsigned)(-1) || len == 0) return (int)len;
3277
3278 crc = updcrc((uch*)buf, len);
3279 isize += (ulg)len;
3280 return (int)len;
3281}
3282#endif