blob: 43804b2e4060fd2a0cd447e501595e6338d0df51 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Erik Andersen61677fe2000-04-13 01:18:56 +00002/*
3 * Gzip implementation for busybox
Eric Andersencc8ed391999-10-05 16:24:54 +00004 *
Erik Andersen61677fe2000-04-13 01:18:56 +00005 * Based on GNU gzip Copyright (C) 1992-1993 Jean-loup Gailly.
6 *
7 * Originally adjusted for busybox by Charles P. Wright <cpw@unix.asb.com>
Denis Vlasenkodb6a5c32007-01-07 19:45:51 +00008 * "this is a stripped down version of gzip I put into busybox, it does
9 * only standard in to standard out with -9 compression. It also requires
10 * the zcat module for some important functions."
Erik Andersen61677fe2000-04-13 01:18:56 +000011 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +000012 * Adjusted further by Erik Andersen <andersen@codepoet.org> to support
13 * files as well as stdin/stdout, and to generally behave itself wrt
Erik Andersen61677fe2000-04-13 01:18:56 +000014 * command line handling.
15 *
Bernhard Reutner-Fischer20f40002006-01-30 17:17:14 +000016 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersencc8ed391999-10-05 16:24:54 +000017 */
Eric Andersencc8ed391999-10-05 16:24:54 +000018
Denis Vlasenko2f6df7f2007-01-07 19:44:35 +000019/* big objects in bss:
20 * 00000020 b bl_count
21 * 00000074 b base_length
22 * 00000078 b base_dist
23 * 00000078 b static_dtree
24 * 0000009c b bl_tree
25 * 000000f4 b dyn_dtree
26 * 00000100 b length_code
27 * 00000200 b dist_code
28 * 0000023d b depth
29 * 00000400 b flag_buf
Denis Vlasenkodb6a5c32007-01-07 19:45:51 +000030 * 0000047a b heap
Denis Vlasenko2f6df7f2007-01-07 19:44:35 +000031 * 00000480 b static_ltree
32 * 000008f4 b dyn_ltree
Denis Vlasenko2f6df7f2007-01-07 19:44:35 +000033 */
34
Denis Vlasenkobb119d02006-10-01 16:44:04 +000035/* TODO: full support for -v for DESKTOP
Denis Vlasenkodb6a5c32007-01-07 19:45:51 +000036 * "/usr/bin/gzip -v a bogus aa" should say:
Denis Vlasenkobb119d02006-10-01 16:44:04 +000037a: 85.1% -- replaced with a.gz
38gzip: bogus: No such file or directory
39aa: 85.1% -- replaced with aa.gz
40*/
Denis Vlasenko97a8dd32006-10-01 15:55:11 +000041
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000042#include "libbb.h"
Denis Vlasenko1a9e9bd2008-11-01 12:54:56 +000043#include "unarchive.h"
Eric Andersencbe31da2001-02-20 06:14:08 +000044
Denis Vlasenkoda31fbc2007-01-07 19:39:02 +000045
46/* ===========================================================================
47 */
48//#define DEBUG 1
49/* Diagnostic functions */
50#ifdef DEBUG
Denis Vlasenko51742f42007-04-12 00:32:05 +000051# define Assert(cond,msg) { if (!(cond)) bb_error_msg(msg); }
Denis Vlasenkoda31fbc2007-01-07 19:39:02 +000052# define Trace(x) fprintf x
Denis Vlasenkob71c6682007-07-21 15:08:09 +000053# define Tracev(x) {if (verbose) fprintf x; }
54# define Tracevv(x) {if (verbose > 1) fprintf x; }
55# define Tracec(c,x) {if (verbose && (c)) fprintf x; }
56# define Tracecv(c,x) {if (verbose > 1 && (c)) fprintf x; }
Denis Vlasenkoda31fbc2007-01-07 19:39:02 +000057#else
58# define Assert(cond,msg)
59# define Trace(x)
60# define Tracev(x)
61# define Tracevv(x)
62# define Tracec(c,x)
63# define Tracecv(c,x)
64#endif
65
66
67/* ===========================================================================
68 */
69#define SMALL_MEM
70
Eric Andersencc8ed391999-10-05 16:24:54 +000071#ifndef INBUFSIZ
72# ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +000073# define INBUFSIZ 0x2000 /* input buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +000074# else
Erik Andersene49d5ec2000-02-08 19:58:47 +000075# define INBUFSIZ 0x8000 /* input buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +000076# endif
77#endif
Denis Vlasenkoad403412007-01-07 19:37:42 +000078
Eric Andersencc8ed391999-10-05 16:24:54 +000079#ifndef OUTBUFSIZ
80# ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +000081# define OUTBUFSIZ 8192 /* output buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +000082# else
Erik Andersene49d5ec2000-02-08 19:58:47 +000083# define OUTBUFSIZ 16384 /* output buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +000084# endif
85#endif
Eric Andersencc8ed391999-10-05 16:24:54 +000086
87#ifndef DIST_BUFSIZE
88# ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +000089# define DIST_BUFSIZE 0x2000 /* buffer for distances, see trees.c */
Eric Andersencc8ed391999-10-05 16:24:54 +000090# else
Erik Andersene49d5ec2000-02-08 19:58:47 +000091# define DIST_BUFSIZE 0x8000 /* buffer for distances, see trees.c */
Eric Andersencc8ed391999-10-05 16:24:54 +000092# endif
93#endif
94
Eric Andersencc8ed391999-10-05 16:24:54 +000095/* gzip flag byte */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +000096#define ASCII_FLAG 0x01 /* bit 0 set: file probably ascii text */
97#define CONTINUATION 0x02 /* bit 1 set: continuation of multi-part gzip file */
98#define EXTRA_FIELD 0x04 /* bit 2 set: extra field present */
99#define ORIG_NAME 0x08 /* bit 3 set: original file name present */
100#define COMMENT 0x10 /* bit 4 set: file comment present */
101#define RESERVED 0xC0 /* bit 6,7: reserved */
Eric Andersencc8ed391999-10-05 16:24:54 +0000102
103/* internal file attribute */
104#define UNKNOWN 0xffff
105#define BINARY 0
106#define ASCII 1
107
108#ifndef WSIZE
Denis Vlasenkobb119d02006-10-01 16:44:04 +0000109# define WSIZE 0x8000 /* window size--must be a power of two, and */
110#endif /* at least 32K for zip's deflate method */
Eric Andersencc8ed391999-10-05 16:24:54 +0000111
112#define MIN_MATCH 3
113#define MAX_MATCH 258
114/* The minimum and maximum match lengths */
115
116#define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
117/* Minimum amount of lookahead, except at the end of the input file.
118 * See deflate.c for comments about the MIN_MATCH+1.
119 */
120
121#define MAX_DIST (WSIZE-MIN_LOOKAHEAD)
122/* In order to simplify the code, particularly on 16 bit machines, match
123 * distances are limited to MAX_DIST instead of WSIZE.
124 */
125
Denis Vlasenkoad403412007-01-07 19:37:42 +0000126#ifndef MAX_PATH_LEN
127# define MAX_PATH_LEN 1024 /* max pathname length */
128#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000129
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000130#define seekable() 0 /* force sequential output */
131#define translate_eol 0 /* no option -a yet */
Eric Andersencc8ed391999-10-05 16:24:54 +0000132
Denis Vlasenkoad403412007-01-07 19:37:42 +0000133#ifndef BITS
134# define BITS 16
135#endif
136#define INIT_BITS 9 /* Initial number of bits per code */
137
138#define BIT_MASK 0x1f /* Mask for 'number of compression bits' */
139/* Mask 0x20 is reserved to mean a fourth header byte, and 0x40 is free.
140 * It's a pity that old uncompress does not check bit 0x20. That makes
141 * extension of the format actually undesirable because old compress
142 * would just crash on the new format instead of giving a meaningful
143 * error message. It does check the number of bits, but it's more
144 * helpful to say "unsupported format, get a new version" than
145 * "can only handle 16 bits".
146 */
147
148#ifdef MAX_EXT_CHARS
149# define MAX_SUFFIX MAX_EXT_CHARS
150#else
151# define MAX_SUFFIX 30
152#endif
153
154
Denis Vlasenkoda31fbc2007-01-07 19:39:02 +0000155/* ===========================================================================
156 * Compile with MEDIUM_MEM to reduce the memory requirements or
157 * with SMALL_MEM to use as little memory as possible. Use BIG_MEM if the
158 * entire input file can be held in memory (not possible on 16 bit systems).
159 * Warning: defining these symbols affects HASH_BITS (see below) and thus
160 * affects the compression ratio. The compressed output
161 * is still correct, and might even be smaller in some cases.
162 */
163
164#ifdef SMALL_MEM
165# define HASH_BITS 13 /* Number of bits used to hash strings */
166#endif
167#ifdef MEDIUM_MEM
168# define HASH_BITS 14
169#endif
170#ifndef HASH_BITS
171# define HASH_BITS 15
172 /* For portability to 16 bit machines, do not use values above 15. */
173#endif
174
Denis Vlasenkoda31fbc2007-01-07 19:39:02 +0000175#define HASH_SIZE (unsigned)(1<<HASH_BITS)
176#define HASH_MASK (HASH_SIZE-1)
177#define WMASK (WSIZE-1)
178/* HASH_SIZE and WSIZE must be powers of two */
179#ifndef TOO_FAR
180# define TOO_FAR 4096
181#endif
182/* Matches of length 3 are discarded if their distance exceeds TOO_FAR */
183
184
185/* ===========================================================================
Denis Vlasenko3ae6f342007-01-07 19:44:57 +0000186 * These types are not really 'char', 'short' and 'long'
Denis Vlasenkoda31fbc2007-01-07 19:39:02 +0000187 */
Denis Vlasenko3ae6f342007-01-07 19:44:57 +0000188typedef uint8_t uch;
189typedef uint16_t ush;
190typedef uint32_t ulg;
Denis Vlasenkodb6a5c32007-01-07 19:45:51 +0000191typedef int32_t lng;
Denis Vlasenkoda31fbc2007-01-07 19:39:02 +0000192
Denis Vlasenkoda31fbc2007-01-07 19:39:02 +0000193typedef ush Pos;
194typedef unsigned IPos;
Denis Vlasenkoda799e82007-03-14 00:06:29 +0000195/* A Pos is an index in the character window. We use short instead of int to
196 * save space in the various tables. IPos is used only for parameter passing.
197 */
Denis Vlasenkoda31fbc2007-01-07 19:39:02 +0000198
Denis Vlasenkoda31fbc2007-01-07 19:39:02 +0000199enum {
200 WINDOW_SIZE = 2 * WSIZE,
201/* window size, 2*WSIZE except for MMAP or BIG_MEM, where it is the
202 * input file length plus MIN_LOOKAHEAD.
203 */
204
205 max_chain_length = 4096,
206/* To speed up deflation, hash chains are never searched beyond this length.
207 * A higher limit improves compression ratio but degrades the speed.
208 */
209
210 max_lazy_match = 258,
211/* Attempt to find a better match only when the current match is strictly
212 * smaller than this value. This mechanism is used only for compression
213 * levels >= 4.
214 */
215
216 max_insert_length = max_lazy_match,
217/* Insert new strings in the hash table only if the match length
218 * is not greater than this length. This saves time but degrades compression.
219 * max_insert_length is used only for compression levels <= 3.
220 */
221
222 good_match = 32,
223/* Use a faster search when the previous match is longer than this */
224
225/* Values for max_lazy_match, good_match and max_chain_length, depending on
226 * the desired pack level (0..9). The values given below have been tuned to
227 * exclude worst case performance for pathological files. Better values may be
228 * found for specific files.
229 */
230
Denis Vlasenkodb6a5c32007-01-07 19:45:51 +0000231 nice_match = 258, /* Stop searching when current match exceeds this */
Denis Vlasenkoda31fbc2007-01-07 19:39:02 +0000232/* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
233 * For deflate_fast() (levels <= 3) good is ignored and lazy has a different
234 * meaning.
235 */
236};
237
238
Denis Vlasenko972288e2007-03-15 00:57:01 +0000239struct globals {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000240
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000241 lng block_start;
242
243/* window position at the beginning of the current output block. Gets
244 * negative when the window is moved backwards.
245 */
246 unsigned ins_h; /* hash index of string to be inserted */
247
248#define H_SHIFT ((HASH_BITS+MIN_MATCH-1) / MIN_MATCH)
249/* Number of bits by which ins_h and del_h must be shifted at each
250 * input step. It must be such that after MIN_MATCH steps, the oldest
251 * byte no longer takes part in the hash key, that is:
252 * H_SHIFT * MIN_MATCH >= HASH_BITS
253 */
254
255 unsigned prev_length;
256
257/* Length of the best match at previous step. Matches not greater than this
258 * are discarded. This is used in the lazy match evaluation.
259 */
260
261 unsigned strstart; /* start of string to insert */
262 unsigned match_start; /* start of matching string */
263 unsigned lookahead; /* number of valid bytes ahead in window */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000264
Denis Vlasenkodb6a5c32007-01-07 19:45:51 +0000265/* ===========================================================================
266 */
267#define DECLARE(type, array, size) \
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000268 type * array
Denis Vlasenkodb6a5c32007-01-07 19:45:51 +0000269#define ALLOC(type, array, size) \
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000270 array = xzalloc((size_t)(((size)+1L)/2) * 2*sizeof(type));
Denis Vlasenkodb6a5c32007-01-07 19:45:51 +0000271#define FREE(array) \
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000272 do { free(array); array = NULL; } while (0)
Denis Vlasenkodb6a5c32007-01-07 19:45:51 +0000273
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000274 /* global buffers */
Eric Andersencc8ed391999-10-05 16:24:54 +0000275
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000276 /* buffer for literals or lengths */
277 /* DECLARE(uch, l_buf, LIT_BUFSIZE); */
278 DECLARE(uch, l_buf, INBUFSIZ);
Eric Andersencc8ed391999-10-05 16:24:54 +0000279
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000280 DECLARE(ush, d_buf, DIST_BUFSIZE);
281 DECLARE(uch, outbuf, OUTBUFSIZ);
Eric Andersencc8ed391999-10-05 16:24:54 +0000282
Denis Vlasenko89af56b2007-01-07 19:40:34 +0000283/* Sliding window. Input bytes are read into the second half of the window,
284 * and move to the first half later to keep a dictionary of at least WSIZE
285 * bytes. With this organization, matches are limited to a distance of
286 * WSIZE-MAX_MATCH bytes, but this ensures that IO is always
287 * performed with a length multiple of the block size. Also, it limits
288 * the window size to 64K, which is quite useful on MSDOS.
289 * To do: limit the window size to WSIZE+BSZ if SMALL_MEM (the code would
290 * be less efficient).
291 */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000292 DECLARE(uch, window, 2L * WSIZE);
Denis Vlasenko89af56b2007-01-07 19:40:34 +0000293
Denis Vlasenko89af56b2007-01-07 19:40:34 +0000294/* Link to older string with same hash index. To limit the size of this
295 * array to 64K, this link is maintained only for the last 32K strings.
296 * An index in this array is thus a window index modulo 32K.
297 */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000298 /* DECLARE(Pos, prev, WSIZE); */
299 DECLARE(ush, prev, 1L << BITS);
Eric Andersencc8ed391999-10-05 16:24:54 +0000300
Denis Vlasenkodb6a5c32007-01-07 19:45:51 +0000301/* Heads of the hash chains or 0. */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000302 /* DECLARE(Pos, head, 1<<HASH_BITS); */
303#define head (G1.prev + WSIZE) /* hash head (see deflate.c) */
Denis Vlasenkodb6a5c32007-01-07 19:45:51 +0000304
Denis Vlasenko3ae6f342007-01-07 19:44:57 +0000305/* number of input bytes */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000306 ulg isize; /* only 32 bits stored in .gz file */
Denis Vlasenkoad403412007-01-07 19:37:42 +0000307
Denis Vlasenkofe42d172007-03-14 00:08:28 +0000308/* bbox always use stdin/stdout */
309#define ifd STDIN_FILENO /* input file descriptor */
310#define ofd STDOUT_FILENO /* output file descriptor */
Denis Vlasenko3ae6f342007-01-07 19:44:57 +0000311
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000312#ifdef DEBUG
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000313 unsigned insize; /* valid bytes in l_buf */
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000314#endif
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000315 unsigned outcnt; /* bytes in output buffer */
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000316
Denis Vlasenkofe42d172007-03-14 00:08:28 +0000317 smallint eofile; /* flag set at end of input file */
Denis Vlasenkoad403412007-01-07 19:37:42 +0000318
319/* ===========================================================================
320 * Local data used by the "bit string" routines.
321 */
322
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000323 unsigned short bi_buf;
Denis Vlasenkoad403412007-01-07 19:37:42 +0000324
325/* Output buffer. bits are inserted starting at the bottom (least significant
326 * bits).
327 */
328
329#undef BUF_SIZE
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000330#define BUF_SIZE (8 * sizeof(G1.bi_buf))
Denis Vlasenkoad403412007-01-07 19:37:42 +0000331/* Number of bits used within bi_buf. (bi_buf might be implemented on
332 * more than 16 bits on some systems.)
333 */
334
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000335 int bi_valid;
Denis Vlasenkoad403412007-01-07 19:37:42 +0000336
337/* Current input function. Set to mem_read for in-memory compression */
338
339#ifdef DEBUG
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000340 ulg bits_sent; /* bit length of the compressed data */
Denis Vlasenkoad403412007-01-07 19:37:42 +0000341#endif
342
Denis Vlasenkoda799e82007-03-14 00:06:29 +0000343 uint32_t *crc_32_tab;
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000344 uint32_t crc; /* shift register contents */
345};
346
Denis Vlasenko07766bb2007-03-14 00:06:51 +0000347#define G1 (*(ptr_to_globals - 1))
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000348
Denis Vlasenkoad403412007-01-07 19:37:42 +0000349
350/* ===========================================================================
Denis Vlasenkoed0f6db2007-01-07 19:38:26 +0000351 * Write the output buffer outbuf[0..outcnt-1] and update bytes_out.
352 * (used for the compressed data only)
353 */
354static void flush_outbuf(void)
355{
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000356 if (G1.outcnt == 0)
Denis Vlasenkoed0f6db2007-01-07 19:38:26 +0000357 return;
358
Denis Vlasenkofe42d172007-03-14 00:08:28 +0000359 xwrite(ofd, (char *) G1.outbuf, G1.outcnt);
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000360 G1.outcnt = 0;
Denis Vlasenkoed0f6db2007-01-07 19:38:26 +0000361}
362
363
364/* ===========================================================================
Denis Vlasenkoad403412007-01-07 19:37:42 +0000365 */
366/* put_8bit is used for the compressed output */
367#define put_8bit(c) \
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000368do { \
369 G1.outbuf[G1.outcnt++] = (c); \
370 if (G1.outcnt == OUTBUFSIZ) flush_outbuf(); \
371} while (0)
Denis Vlasenkoad403412007-01-07 19:37:42 +0000372
Aaron Lehmannb9df4702001-12-06 03:22:43 +0000373/* Output a 16 bit value, lsb first */
Denis Vlasenkoad403412007-01-07 19:37:42 +0000374static void put_16bit(ush w)
Aaron Lehmannb9df4702001-12-06 03:22:43 +0000375{
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000376 if (G1.outcnt < OUTBUFSIZ - 2) {
377 G1.outbuf[G1.outcnt++] = w;
378 G1.outbuf[G1.outcnt++] = w >> 8;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000379 } else {
Denis Vlasenkoad403412007-01-07 19:37:42 +0000380 put_8bit(w);
381 put_8bit(w >> 8);
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000382 }
Aaron Lehmannb9df4702001-12-06 03:22:43 +0000383}
384
Denis Vlasenkoad403412007-01-07 19:37:42 +0000385static void put_32bit(ulg n)
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000386{
Denis Vlasenkoad403412007-01-07 19:37:42 +0000387 put_16bit(n);
388 put_16bit(n >> 16);
389}
390
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000391/* ===========================================================================
392 * Clear input and output buffers
393 */
394static void clear_bufs(void)
395{
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000396 G1.outcnt = 0;
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000397#ifdef DEBUG
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000398 G1.insize = 0;
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000399#endif
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000400 G1.isize = 0;
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000401}
402
Denis Vlasenkoed0f6db2007-01-07 19:38:26 +0000403
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000404/* ===========================================================================
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000405 * Run a set of bytes through the crc shift register. If s is a NULL
406 * pointer, then initialize the crc shift register contents instead.
407 * Return the current crc in either case.
408 */
Rob Landleyc57ec372006-04-10 17:07:15 +0000409static uint32_t updcrc(uch * s, unsigned n)
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000410{
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000411 uint32_t c = G1.crc;
Denis Vlasenkoda31fbc2007-01-07 19:39:02 +0000412 while (n) {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000413 c = G1.crc_32_tab[(uch)(c ^ *s++)] ^ (c >> 8);
Denis Vlasenkoda31fbc2007-01-07 19:39:02 +0000414 n--;
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000415 }
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000416 G1.crc = c;
Denis Vlasenko30551fd2007-01-07 19:38:06 +0000417 return c;
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000418}
419
Denis Vlasenkoed0f6db2007-01-07 19:38:26 +0000420
421/* ===========================================================================
422 * Read a new buffer from the current input file, perform end-of-line
423 * translation, and update the crc and input file size.
424 * IN assertion: size >= 2 (for end-of-line translation)
425 */
426static unsigned file_read(void *buf, unsigned size)
427{
428 unsigned len;
429
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000430 Assert(G1.insize == 0, "l_buf not empty");
Denis Vlasenkoed0f6db2007-01-07 19:38:26 +0000431
Denis Vlasenkofe42d172007-03-14 00:08:28 +0000432 len = safe_read(ifd, buf, size);
Denis Vlasenkoed0f6db2007-01-07 19:38:26 +0000433 if (len == (unsigned)(-1) || len == 0)
434 return len;
435
436 updcrc(buf, len);
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000437 G1.isize += len;
Denis Vlasenkoed0f6db2007-01-07 19:38:26 +0000438 return len;
439}
440
441
Eric Andersencc8ed391999-10-05 16:24:54 +0000442/* ===========================================================================
Eric Andersencc8ed391999-10-05 16:24:54 +0000443 * Send a value on a given number of bits.
444 * IN assertion: length <= 16 and value fits in length bits.
445 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000446static void send_bits(int value, int length)
Eric Andersencc8ed391999-10-05 16:24:54 +0000447{
448#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000449 Tracev((stderr, " l %2d v %4x ", length, value));
450 Assert(length > 0 && length <= 15, "invalid length");
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000451 G1.bits_sent += length;
Eric Andersencc8ed391999-10-05 16:24:54 +0000452#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000453 /* If not enough room in bi_buf, use (valid) bits from bi_buf and
454 * (16 - bi_valid) bits from value, leaving (width - (16-bi_valid))
455 * unused bits in value.
456 */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000457 if (G1.bi_valid > (int) BUF_SIZE - length) {
458 G1.bi_buf |= (value << G1.bi_valid);
459 put_16bit(G1.bi_buf);
460 G1.bi_buf = (ush) value >> (BUF_SIZE - G1.bi_valid);
461 G1.bi_valid += length - BUF_SIZE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000462 } else {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000463 G1.bi_buf |= value << G1.bi_valid;
464 G1.bi_valid += length;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000465 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000466}
467
Denis Vlasenkoda31fbc2007-01-07 19:39:02 +0000468
Eric Andersencc8ed391999-10-05 16:24:54 +0000469/* ===========================================================================
470 * Reverse the first len bits of a code, using straightforward code (a faster
471 * method would use a table)
472 * IN assertion: 1 <= len <= 15
473 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000474static unsigned bi_reverse(unsigned code, int len)
Eric Andersencc8ed391999-10-05 16:24:54 +0000475{
"Robert P. J. Day"68229832006-07-01 13:08:46 +0000476 unsigned res = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000477
Denis Vlasenko89af56b2007-01-07 19:40:34 +0000478 while (1) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000479 res |= code & 1;
Denis Vlasenko89af56b2007-01-07 19:40:34 +0000480 if (--len <= 0) return res;
481 code >>= 1;
482 res <<= 1;
483 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000484}
485
Denis Vlasenkoda31fbc2007-01-07 19:39:02 +0000486
Eric Andersencc8ed391999-10-05 16:24:54 +0000487/* ===========================================================================
488 * Write out any remaining bits in an incomplete byte.
489 */
Mike Frysinger4e5936e2005-04-16 04:30:38 +0000490static void bi_windup(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000491{
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000492 if (G1.bi_valid > 8) {
493 put_16bit(G1.bi_buf);
494 } else if (G1.bi_valid > 0) {
495 put_8bit(G1.bi_buf);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000496 }
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000497 G1.bi_buf = 0;
498 G1.bi_valid = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +0000499#ifdef DEBUG
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000500 G1.bits_sent = (G1.bits_sent + 7) & ~7;
Eric Andersencc8ed391999-10-05 16:24:54 +0000501#endif
502}
503
Denis Vlasenkoda31fbc2007-01-07 19:39:02 +0000504
Eric Andersencc8ed391999-10-05 16:24:54 +0000505/* ===========================================================================
506 * Copy a stored block to the zip file, storing first the length and its
507 * one's complement if requested.
508 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000509static void copy_block(char *buf, unsigned len, int header)
Eric Andersencc8ed391999-10-05 16:24:54 +0000510{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000511 bi_windup(); /* align on byte boundary */
Eric Andersencc8ed391999-10-05 16:24:54 +0000512
Erik Andersene49d5ec2000-02-08 19:58:47 +0000513 if (header) {
Denis Vlasenko30551fd2007-01-07 19:38:06 +0000514 put_16bit(len);
515 put_16bit(~len);
Eric Andersencc8ed391999-10-05 16:24:54 +0000516#ifdef DEBUG
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000517 G1.bits_sent += 2 * 16;
Eric Andersencc8ed391999-10-05 16:24:54 +0000518#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000519 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000520#ifdef DEBUG
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000521 G1.bits_sent += (ulg) len << 3;
Eric Andersencc8ed391999-10-05 16:24:54 +0000522#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000523 while (len--) {
Denis Vlasenkoad403412007-01-07 19:37:42 +0000524 put_8bit(*buf++);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000525 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000526}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000527
Eric Andersencc8ed391999-10-05 16:24:54 +0000528
529/* ===========================================================================
Denis Vlasenko56c83ea2007-01-07 19:40:50 +0000530 * Fill the window when the lookahead becomes insufficient.
531 * Updates strstart and lookahead, and sets eofile if end of input file.
532 * IN assertion: lookahead < MIN_LOOKAHEAD && strstart + lookahead > 0
533 * OUT assertions: at least one byte has been read, or eofile is set;
534 * file reads are performed for at least two bytes (required for the
535 * translate_eol option).
536 */
537static void fill_window(void)
538{
539 unsigned n, m;
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000540 unsigned more = WINDOW_SIZE - G1.lookahead - G1.strstart;
Denis Vlasenko56c83ea2007-01-07 19:40:50 +0000541 /* Amount of free space at the end of the window. */
542
543 /* If the window is almost full and there is insufficient lookahead,
544 * move the upper half to the lower one to make room in the upper half.
545 */
546 if (more == (unsigned) -1) {
547 /* Very unlikely, but possible on 16 bit machine if strstart == 0
548 * and lookahead == 1 (input done one byte at time)
549 */
550 more--;
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000551 } else if (G1.strstart >= WSIZE + MAX_DIST) {
Denis Vlasenko56c83ea2007-01-07 19:40:50 +0000552 /* By the IN assertion, the window is not empty so we can't confuse
553 * more == 0 with more == 64K on a 16 bit machine.
554 */
555 Assert(WINDOW_SIZE == 2 * WSIZE, "no sliding with BIG_MEM");
556
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000557 memcpy(G1.window, G1.window + WSIZE, WSIZE);
558 G1.match_start -= WSIZE;
559 G1.strstart -= WSIZE; /* we now have strstart >= MAX_DIST: */
Denis Vlasenko56c83ea2007-01-07 19:40:50 +0000560
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000561 G1.block_start -= WSIZE;
Denis Vlasenko56c83ea2007-01-07 19:40:50 +0000562
563 for (n = 0; n < HASH_SIZE; n++) {
564 m = head[n];
565 head[n] = (Pos) (m >= WSIZE ? m - WSIZE : 0);
566 }
567 for (n = 0; n < WSIZE; n++) {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000568 m = G1.prev[n];
569 G1.prev[n] = (Pos) (m >= WSIZE ? m - WSIZE : 0);
Denis Vlasenko56c83ea2007-01-07 19:40:50 +0000570 /* If n is not on any hash chain, prev[n] is garbage but
571 * its value will never be used.
572 */
573 }
574 more += WSIZE;
575 }
576 /* At this point, more >= 2 */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000577 if (!G1.eofile) {
578 n = file_read(G1.window + G1.strstart + G1.lookahead, more);
Denis Vlasenko56c83ea2007-01-07 19:40:50 +0000579 if (n == 0 || n == (unsigned) -1) {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000580 G1.eofile = 1;
Denis Vlasenko56c83ea2007-01-07 19:40:50 +0000581 } else {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000582 G1.lookahead += n;
Denis Vlasenko56c83ea2007-01-07 19:40:50 +0000583 }
584 }
585}
586
587
588/* ===========================================================================
Eric Andersencc8ed391999-10-05 16:24:54 +0000589 * Set match_start to the longest match starting at the given string and
590 * return its length. Matches shorter or equal to prev_length are discarded,
591 * in which case the result is equal to prev_length and match_start is
592 * garbage.
593 * IN assertions: cur_match is the head of the hash chain for the current
594 * string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1
595 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000596
Eric Andersencc8ed391999-10-05 16:24:54 +0000597/* For MSDOS, OS/2 and 386 Unix, an optimized version is in match.asm or
598 * match.s. The code is functionally equivalent, so you can use the C version
599 * if desired.
600 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000601static int longest_match(IPos cur_match)
Eric Andersencc8ed391999-10-05 16:24:54 +0000602{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000603 unsigned chain_length = max_chain_length; /* max hash chain length */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000604 uch *scan = G1.window + G1.strstart; /* current string */
"Robert P. J. Day"68229832006-07-01 13:08:46 +0000605 uch *match; /* matched string */
606 int len; /* length of current match */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000607 int best_len = G1.prev_length; /* best match length so far */
608 IPos limit = G1.strstart > (IPos) MAX_DIST ? G1.strstart - (IPos) MAX_DIST : 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000609 /* Stop when cur_match becomes <= limit. To simplify the code,
610 * we prevent matches with the string of window index 0.
611 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000612
613/* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
614 * It is easy to get rid of this optimization if necessary.
615 */
616#if HASH_BITS < 8 || MAX_MATCH != 258
Eric Andersen3073dfb2001-07-02 17:57:32 +0000617# error Code too clever
Eric Andersencc8ed391999-10-05 16:24:54 +0000618#endif
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000619 uch *strend = G1.window + G1.strstart + MAX_MATCH;
"Robert P. J. Day"68229832006-07-01 13:08:46 +0000620 uch scan_end1 = scan[best_len - 1];
621 uch scan_end = scan[best_len];
Eric Andersencc8ed391999-10-05 16:24:54 +0000622
Erik Andersene49d5ec2000-02-08 19:58:47 +0000623 /* Do not waste too much time if we already have a good match: */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000624 if (G1.prev_length >= good_match) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000625 chain_length >>= 2;
626 }
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000627 Assert(G1.strstart <= WINDOW_SIZE - MIN_LOOKAHEAD, "insufficient lookahead");
Eric Andersencc8ed391999-10-05 16:24:54 +0000628
Erik Andersene49d5ec2000-02-08 19:58:47 +0000629 do {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000630 Assert(cur_match < G1.strstart, "no future");
631 match = G1.window + cur_match;
Eric Andersencc8ed391999-10-05 16:24:54 +0000632
Erik Andersene49d5ec2000-02-08 19:58:47 +0000633 /* Skip to next match if the match length cannot increase
634 * or if the match length is less than 2:
635 */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000636 if (match[best_len] != scan_end ||
637 match[best_len - 1] != scan_end1 ||
638 *match != *scan || *++match != scan[1])
639 continue;
Eric Andersencc8ed391999-10-05 16:24:54 +0000640
Erik Andersene49d5ec2000-02-08 19:58:47 +0000641 /* The check at best_len-1 can be removed because it will be made
642 * again later. (This heuristic is not always a win.)
643 * It is not necessary to compare scan[2] and match[2] since they
644 * are always equal when the other bytes match, given that
645 * the hash keys are equal and that HASH_BITS >= 8.
646 */
647 scan += 2, match++;
Eric Andersencc8ed391999-10-05 16:24:54 +0000648
Erik Andersene49d5ec2000-02-08 19:58:47 +0000649 /* We check for insufficient lookahead only every 8th comparison;
650 * the 256th check will be made at strstart+258.
651 */
652 do {
653 } while (*++scan == *++match && *++scan == *++match &&
654 *++scan == *++match && *++scan == *++match &&
655 *++scan == *++match && *++scan == *++match &&
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000656 *++scan == *++match && *++scan == *++match && scan < strend);
Eric Andersencc8ed391999-10-05 16:24:54 +0000657
Erik Andersene49d5ec2000-02-08 19:58:47 +0000658 len = MAX_MATCH - (int) (strend - scan);
659 scan = strend - MAX_MATCH;
Eric Andersencc8ed391999-10-05 16:24:54 +0000660
Erik Andersene49d5ec2000-02-08 19:58:47 +0000661 if (len > best_len) {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000662 G1.match_start = cur_match;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000663 best_len = len;
664 if (len >= nice_match)
665 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000666 scan_end1 = scan[best_len - 1];
667 scan_end = scan[best_len];
Erik Andersene49d5ec2000-02-08 19:58:47 +0000668 }
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000669 } while ((cur_match = G1.prev[cur_match & WMASK]) > limit
Erik Andersene49d5ec2000-02-08 19:58:47 +0000670 && --chain_length != 0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000671
Erik Andersene49d5ec2000-02-08 19:58:47 +0000672 return best_len;
Eric Andersencc8ed391999-10-05 16:24:54 +0000673}
Eric Andersencc8ed391999-10-05 16:24:54 +0000674
Denis Vlasenkoda31fbc2007-01-07 19:39:02 +0000675
Eric Andersencc8ed391999-10-05 16:24:54 +0000676#ifdef DEBUG
677/* ===========================================================================
678 * Check that the match at match_start is indeed a match.
679 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000680static void check_match(IPos start, IPos match, int length)
Eric Andersencc8ed391999-10-05 16:24:54 +0000681{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000682 /* check that the match is indeed a match */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000683 if (memcmp(G1.window + match, G1.window + start, length) != 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000684 bb_error_msg(" start %d, match %d, length %d", start, match, length);
685 bb_error_msg("invalid match");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000686 }
687 if (verbose > 1) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000688 bb_error_msg("\\[%d,%d]", start - match, length);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000689 do {
Denis Vlasenko4daad902007-09-27 10:20:47 +0000690 fputc(G1.window[start++], stderr);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000691 } while (--length != 0);
692 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000693}
694#else
Denis Vlasenkoda31fbc2007-01-07 19:39:02 +0000695# define check_match(start, match, length) ((void)0)
Eric Andersencc8ed391999-10-05 16:24:54 +0000696#endif
697
Denis Vlasenkoda31fbc2007-01-07 19:39:02 +0000698
Eric Andersencc8ed391999-10-05 16:24:54 +0000699/* trees.c -- output deflated data using Huffman coding
700 * Copyright (C) 1992-1993 Jean-loup Gailly
701 * This is free software; you can redistribute it and/or modify it under the
702 * terms of the GNU General Public License, see the file COPYING.
703 */
704
Denis Vlasenko89af56b2007-01-07 19:40:34 +0000705/* PURPOSE
Eric Andersencc8ed391999-10-05 16:24:54 +0000706 * Encode various sets of source values using variable-length
707 * binary code trees.
708 *
709 * DISCUSSION
Eric Andersencc8ed391999-10-05 16:24:54 +0000710 * The PKZIP "deflation" process uses several Huffman trees. The more
711 * common source values are represented by shorter bit sequences.
712 *
713 * Each code tree is stored in the ZIP file in a compressed form
714 * which is itself a Huffman encoding of the lengths of
715 * all the code strings (in ascending order by source values).
716 * The actual code strings are reconstructed from the lengths in
717 * the UNZIP process, as described in the "application note"
718 * (APPNOTE.TXT) distributed as part of PKWARE's PKZIP program.
719 *
720 * REFERENCES
Eric Andersencc8ed391999-10-05 16:24:54 +0000721 * Lynch, Thomas J.
722 * Data Compression: Techniques and Applications, pp. 53-55.
723 * Lifetime Learning Publications, 1985. ISBN 0-534-03418-7.
724 *
725 * Storer, James A.
726 * Data Compression: Methods and Theory, pp. 49-50.
727 * Computer Science Press, 1988. ISBN 0-7167-8156-5.
728 *
729 * Sedgewick, R.
730 * Algorithms, p290.
731 * Addison-Wesley, 1983. ISBN 0-201-06672-6.
732 *
733 * INTERFACE
Denis Vlasenkofe42d172007-03-14 00:08:28 +0000734 * void ct_init()
735 * Allocate the match buffer, initialize the various tables [and save
Eric Andersencc8ed391999-10-05 16:24:54 +0000736 * the location of the internal file attribute (ascii/binary) and
Denis Vlasenkofe42d172007-03-14 00:08:28 +0000737 * method (DEFLATE/STORE) -- deleted in bbox]
Eric Andersencc8ed391999-10-05 16:24:54 +0000738 *
Denis Vlasenko30551fd2007-01-07 19:38:06 +0000739 * void ct_tally(int dist, int lc);
Eric Andersencc8ed391999-10-05 16:24:54 +0000740 * Save the match info and tally the frequency counts.
741 *
Denis Vlasenko3ae6f342007-01-07 19:44:57 +0000742 * ulg flush_block(char *buf, ulg stored_len, int eof)
Eric Andersencc8ed391999-10-05 16:24:54 +0000743 * Determine the best encoding for the current block: dynamic trees,
744 * static trees or store, and output the encoded block to the zip
745 * file. Returns the total compressed length for the file so far.
Eric Andersencc8ed391999-10-05 16:24:54 +0000746 */
747
Eric Andersencc8ed391999-10-05 16:24:54 +0000748#define MAX_BITS 15
749/* All codes must not exceed MAX_BITS bits */
750
751#define MAX_BL_BITS 7
752/* Bit length codes must not exceed MAX_BL_BITS bits */
753
754#define LENGTH_CODES 29
755/* number of length codes, not counting the special END_BLOCK code */
756
757#define LITERALS 256
758/* number of literal bytes 0..255 */
759
760#define END_BLOCK 256
761/* end of block literal code */
762
763#define L_CODES (LITERALS+1+LENGTH_CODES)
764/* number of Literal or Length codes, including the END_BLOCK code */
765
766#define D_CODES 30
767/* number of distance codes */
768
769#define BL_CODES 19
770/* number of codes used to transfer the bit lengths */
771
Eric Andersen39eb0402001-08-22 04:15:47 +0000772/* extra bits for each length code */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000773static const uint8_t extra_lbits[LENGTH_CODES] ALIGN1 = {
Denis Vlasenko89af56b2007-01-07 19:40:34 +0000774 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4,
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000775 4, 4, 5, 5, 5, 5, 0
776};
Eric Andersencc8ed391999-10-05 16:24:54 +0000777
Eric Andersen39eb0402001-08-22 04:15:47 +0000778/* extra bits for each distance code */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000779static const uint8_t extra_dbits[D_CODES] ALIGN1 = {
Denis Vlasenko89af56b2007-01-07 19:40:34 +0000780 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9,
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000781 10, 10, 11, 11, 12, 12, 13, 13
782};
Eric Andersencc8ed391999-10-05 16:24:54 +0000783
Eric Andersen39eb0402001-08-22 04:15:47 +0000784/* extra bits for each bit length code */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000785static const uint8_t extra_blbits[BL_CODES] ALIGN1 = {
Denis Vlasenko89af56b2007-01-07 19:40:34 +0000786 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 7 };
Eric Andersencc8ed391999-10-05 16:24:54 +0000787
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000788/* number of codes at each bit length for an optimal tree */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000789static const uint8_t bl_order[BL_CODES] ALIGN1 = {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000790 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 };
791
Eric Andersencc8ed391999-10-05 16:24:54 +0000792#define STORED_BLOCK 0
793#define STATIC_TREES 1
794#define DYN_TREES 2
795/* The three kinds of block type */
796
797#ifndef LIT_BUFSIZE
798# ifdef SMALL_MEM
799# define LIT_BUFSIZE 0x2000
800# else
801# ifdef MEDIUM_MEM
802# define LIT_BUFSIZE 0x4000
803# else
804# define LIT_BUFSIZE 0x8000
805# endif
806# endif
807#endif
808#ifndef DIST_BUFSIZE
809# define DIST_BUFSIZE LIT_BUFSIZE
810#endif
811/* Sizes of match buffers for literals/lengths and distances. There are
812 * 4 reasons for limiting LIT_BUFSIZE to 64K:
813 * - frequencies can be kept in 16 bit counters
814 * - if compression is not successful for the first block, all input data is
815 * still in the window so we can still emit a stored block even when input
816 * comes from standard input. (This can also be done for all blocks if
817 * LIT_BUFSIZE is not greater than 32K.)
818 * - if compression is not successful for a file smaller than 64K, we can
819 * even emit a stored file instead of a stored block (saving 5 bytes).
820 * - creating new Huffman trees less frequently may not provide fast
821 * adaptation to changes in the input data statistics. (Take for
822 * example a binary file with poorly compressible code followed by
823 * a highly compressible string table.) Smaller buffer sizes give
824 * fast adaptation but have of course the overhead of transmitting trees
825 * more frequently.
826 * - I can't count above 4
827 * The current code is general and allows DIST_BUFSIZE < LIT_BUFSIZE (to save
828 * memory at the expense of compression). Some optimizations would be possible
829 * if we rely on DIST_BUFSIZE == LIT_BUFSIZE.
830 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000831#define REP_3_6 16
832/* repeat previous bit length 3-6 times (2 bits of repeat count) */
Eric Andersencc8ed391999-10-05 16:24:54 +0000833#define REPZ_3_10 17
834/* repeat a zero length 3-10 times (3 bits of repeat count) */
Eric Andersencc8ed391999-10-05 16:24:54 +0000835#define REPZ_11_138 18
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000836/* repeat a zero length 11-138 times (7 bits of repeat count) */
837
838/* ===========================================================================
Denis Vlasenko56c83ea2007-01-07 19:40:50 +0000839*/
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000840/* Data structure describing a single value and its code string. */
841typedef struct ct_data {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000842 union {
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000843 ush freq; /* frequency count */
844 ush code; /* bit string */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000845 } fc;
846 union {
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000847 ush dad; /* father node in Huffman tree */
848 ush len; /* length of bit string */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000849 } dl;
Eric Andersencc8ed391999-10-05 16:24:54 +0000850} ct_data;
851
852#define Freq fc.freq
853#define Code fc.code
854#define Dad dl.dad
855#define Len dl.len
856
Denis Vlasenkodb6a5c32007-01-07 19:45:51 +0000857#define HEAP_SIZE (2*L_CODES + 1)
Eric Andersencc8ed391999-10-05 16:24:54 +0000858/* maximum heap size */
859
Eric Andersencc8ed391999-10-05 16:24:54 +0000860typedef struct tree_desc {
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000861 ct_data *dyn_tree; /* the dynamic tree */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000862 ct_data *static_tree; /* corresponding static tree or NULL */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000863 const uint8_t *extra_bits; /* extra bits for each code or NULL */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000864 int extra_base; /* base index for extra_bits */
865 int elems; /* max number of elements in the tree */
866 int max_length; /* max bit length for the codes */
867 int max_code; /* largest code with non zero frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +0000868} tree_desc;
869
Denis Vlasenko972288e2007-03-15 00:57:01 +0000870struct globals2 {
Eric Andersencc8ed391999-10-05 16:24:54 +0000871
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000872 ush heap[HEAP_SIZE]; /* heap used to build the Huffman trees */
873 int heap_len; /* number of elements in the heap */
874 int heap_max; /* element of largest frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +0000875
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000876/* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.
877 * The same heap array is used to build all trees.
878 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000879
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000880 ct_data dyn_ltree[HEAP_SIZE]; /* literal and length tree */
881 ct_data dyn_dtree[2 * D_CODES + 1]; /* distance tree */
Eric Andersencc8ed391999-10-05 16:24:54 +0000882
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000883 ct_data static_ltree[L_CODES + 2];
Erik Andersene49d5ec2000-02-08 19:58:47 +0000884
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000885/* The static literal tree. Since the bit lengths are imposed, there is no
886 * need for the L_CODES extra codes used during heap construction. However
887 * The codes 286 and 287 are needed to build a canonical tree (see ct_init
888 * below).
889 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000890
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000891 ct_data static_dtree[D_CODES];
892
893/* The static distance tree. (Actually a trivial tree since all codes use
894 * 5 bits.)
895 */
896
897 ct_data bl_tree[2 * BL_CODES + 1];
898
899/* Huffman tree for the bit lengths */
900
901 tree_desc l_desc;
902 tree_desc d_desc;
903 tree_desc bl_desc;
904
905 ush bl_count[MAX_BITS + 1];
Erik Andersene49d5ec2000-02-08 19:58:47 +0000906
Eric Andersencc8ed391999-10-05 16:24:54 +0000907/* The lengths of the bit length codes are sent in order of decreasing
908 * probability, to avoid transmitting the lengths for unused bit length codes.
909 */
910
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000911 uch depth[2 * L_CODES + 1];
Erik Andersene49d5ec2000-02-08 19:58:47 +0000912
Eric Andersencc8ed391999-10-05 16:24:54 +0000913/* Depth of each subtree used as tie breaker for trees of equal frequency */
914
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000915 uch length_code[MAX_MATCH - MIN_MATCH + 1];
Erik Andersene49d5ec2000-02-08 19:58:47 +0000916
Eric Andersencc8ed391999-10-05 16:24:54 +0000917/* length code for each normalized match length (0 == MIN_MATCH) */
918
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000919 uch dist_code[512];
Erik Andersene49d5ec2000-02-08 19:58:47 +0000920
Eric Andersencc8ed391999-10-05 16:24:54 +0000921/* distance codes. The first 256 values correspond to the distances
922 * 3 .. 258, the last 256 values correspond to the top 8 bits of
923 * the 15 bit distances.
924 */
925
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000926 int base_length[LENGTH_CODES];
Erik Andersene49d5ec2000-02-08 19:58:47 +0000927
Eric Andersencc8ed391999-10-05 16:24:54 +0000928/* First normalized length for each code (0 = MIN_MATCH) */
929
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000930 int base_dist[D_CODES];
Erik Andersene49d5ec2000-02-08 19:58:47 +0000931
Eric Andersencc8ed391999-10-05 16:24:54 +0000932/* First normalized distance for each code (0 = distance of 1) */
933
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000934 uch flag_buf[LIT_BUFSIZE / 8];
Erik Andersene49d5ec2000-02-08 19:58:47 +0000935
Eric Andersencc8ed391999-10-05 16:24:54 +0000936/* flag_buf is a bit array distinguishing literals from lengths in
937 * l_buf, thus indicating the presence or absence of a distance.
938 */
939
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000940 unsigned last_lit; /* running index in l_buf */
941 unsigned last_dist; /* running index in d_buf */
942 unsigned last_flags; /* running index in flag_buf */
943 uch flags; /* current flags not yet saved in flag_buf */
944 uch flag_bit; /* current bit used in flags */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000945
Eric Andersencc8ed391999-10-05 16:24:54 +0000946/* bits are filled in flags starting at bit 0 (least significant).
947 * Note: these flags are overkill in the current code since we don't
948 * take advantage of DIST_BUFSIZE == LIT_BUFSIZE.
949 */
950
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000951 ulg opt_len; /* bit length of current block with optimal trees */
952 ulg static_len; /* bit length of current block with static trees */
Eric Andersencc8ed391999-10-05 16:24:54 +0000953
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000954 ulg compressed_len; /* total bit length of compressed file */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000955};
956
Denis Vlasenko972288e2007-03-15 00:57:01 +0000957#define G2ptr ((struct globals2*)(ptr_to_globals))
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000958#define G2 (*G2ptr)
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000959
Eric Andersencc8ed391999-10-05 16:24:54 +0000960
961/* ===========================================================================
Eric Andersencc8ed391999-10-05 16:24:54 +0000962 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000963static void gen_codes(ct_data * tree, int max_code);
964static void build_tree(tree_desc * desc);
965static void scan_tree(ct_data * tree, int max_code);
966static void send_tree(ct_data * tree, int max_code);
967static int build_bl_tree(void);
968static void send_all_trees(int lcodes, int dcodes, int blcodes);
969static void compress_block(ct_data * ltree, ct_data * dtree);
Eric Andersencc8ed391999-10-05 16:24:54 +0000970
971
972#ifndef DEBUG
Denis Vlasenkof8241362007-01-07 19:38:42 +0000973/* Send a code of the given tree. c and tree must not have side effects */
Denis Vlasenko89af56b2007-01-07 19:40:34 +0000974# define SEND_CODE(c, tree) send_bits(tree[c].Code, tree[c].Len)
975#else
976# define SEND_CODE(c, tree) \
Denis Vlasenkof8241362007-01-07 19:38:42 +0000977{ \
978 if (verbose > 1) bb_error_msg("\ncd %3d ",(c)); \
Denis Vlasenko150f4022007-01-13 21:06:21 +0000979 send_bits(tree[c].Code, tree[c].Len); \
Denis Vlasenkof8241362007-01-07 19:38:42 +0000980}
Eric Andersencc8ed391999-10-05 16:24:54 +0000981#endif
982
Denis Vlasenko89af56b2007-01-07 19:40:34 +0000983#define D_CODE(dist) \
Denis Vlasenkoe930fe12007-03-14 00:06:10 +0000984 ((dist) < 256 ? G2.dist_code[dist] : G2.dist_code[256 + ((dist)>>7)])
Eric Andersencc8ed391999-10-05 16:24:54 +0000985/* Mapping from a distance to a distance code. dist is the distance - 1 and
986 * must not have side effects. dist_code[256] and dist_code[257] are never
987 * used.
Denis Vlasenko56c83ea2007-01-07 19:40:50 +0000988 * The arguments must not have side effects.
Eric Andersencc8ed391999-10-05 16:24:54 +0000989 */
990
Denis Vlasenko56c83ea2007-01-07 19:40:50 +0000991
992/* ===========================================================================
993 * Initialize a new block.
994 */
995static void init_block(void)
996{
997 int n; /* iterates over tree elements */
998
999 /* Initialize the trees. */
1000 for (n = 0; n < L_CODES; n++)
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001001 G2.dyn_ltree[n].Freq = 0;
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001002 for (n = 0; n < D_CODES; n++)
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001003 G2.dyn_dtree[n].Freq = 0;
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001004 for (n = 0; n < BL_CODES; n++)
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001005 G2.bl_tree[n].Freq = 0;
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001006
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001007 G2.dyn_ltree[END_BLOCK].Freq = 1;
1008 G2.opt_len = G2.static_len = 0;
1009 G2.last_lit = G2.last_dist = G2.last_flags = 0;
1010 G2.flags = 0;
1011 G2.flag_bit = 1;
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001012}
Eric Andersencc8ed391999-10-05 16:24:54 +00001013
Denis Vlasenkof8241362007-01-07 19:38:42 +00001014
Eric Andersencc8ed391999-10-05 16:24:54 +00001015/* ===========================================================================
Eric Andersencc8ed391999-10-05 16:24:54 +00001016 * Restore the heap property by moving down the tree starting at node k,
1017 * exchanging a node with the smallest of its two sons if necessary, stopping
1018 * when the heap property is re-established (each father smaller than its
1019 * two sons).
1020 */
Denis Vlasenkof8241362007-01-07 19:38:42 +00001021
1022/* Compares to subtrees, using the tree depth as tie breaker when
Denis Vlasenko89af56b2007-01-07 19:40:34 +00001023 * the subtrees have equal frequency. This minimizes the worst case length. */
1024#define SMALLER(tree, n, m) \
Denis Vlasenkof8241362007-01-07 19:38:42 +00001025 (tree[n].Freq < tree[m].Freq \
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001026 || (tree[n].Freq == tree[m].Freq && G2.depth[n] <= G2.depth[m]))
Denis Vlasenkof8241362007-01-07 19:38:42 +00001027
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001028static void pqdownheap(ct_data * tree, int k)
Eric Andersencc8ed391999-10-05 16:24:54 +00001029{
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001030 int v = G2.heap[k];
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001031 int j = k << 1; /* left son of k */
Eric Andersencc8ed391999-10-05 16:24:54 +00001032
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001033 while (j <= G2.heap_len) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001034 /* Set j to the smallest of the two sons: */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001035 if (j < G2.heap_len && SMALLER(tree, G2.heap[j + 1], G2.heap[j]))
Erik Andersene49d5ec2000-02-08 19:58:47 +00001036 j++;
Eric Andersencc8ed391999-10-05 16:24:54 +00001037
Erik Andersene49d5ec2000-02-08 19:58:47 +00001038 /* Exit if v is smaller than both sons */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001039 if (SMALLER(tree, v, G2.heap[j]))
Erik Andersene49d5ec2000-02-08 19:58:47 +00001040 break;
Eric Andersencc8ed391999-10-05 16:24:54 +00001041
Erik Andersene49d5ec2000-02-08 19:58:47 +00001042 /* Exchange v with the smallest son */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001043 G2.heap[k] = G2.heap[j];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001044 k = j;
1045
1046 /* And continue down the tree, setting j to the left son of k */
1047 j <<= 1;
1048 }
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001049 G2.heap[k] = v;
Eric Andersencc8ed391999-10-05 16:24:54 +00001050}
1051
Denis Vlasenkof8241362007-01-07 19:38:42 +00001052
Eric Andersencc8ed391999-10-05 16:24:54 +00001053/* ===========================================================================
1054 * Compute the optimal bit lengths for a tree and update the total bit length
1055 * for the current block.
1056 * IN assertion: the fields freq and dad are set, heap[heap_max] and
1057 * above are the tree nodes sorted by increasing frequency.
1058 * OUT assertions: the field len is set to the optimal bit length, the
1059 * array bl_count contains the frequencies for each bit length.
1060 * The length opt_len is updated; static_len is also updated if stree is
1061 * not null.
1062 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001063static void gen_bitlen(tree_desc * desc)
Eric Andersencc8ed391999-10-05 16:24:54 +00001064{
Eric Andersen3073dfb2001-07-02 17:57:32 +00001065 ct_data *tree = desc->dyn_tree;
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00001066 const uint8_t *extra = desc->extra_bits;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001067 int base = desc->extra_base;
1068 int max_code = desc->max_code;
1069 int max_length = desc->max_length;
Eric Andersen3073dfb2001-07-02 17:57:32 +00001070 ct_data *stree = desc->static_tree;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001071 int h; /* heap index */
1072 int n, m; /* iterate over the tree elements */
1073 int bits; /* bit length */
1074 int xbits; /* extra bits */
1075 ush f; /* frequency */
1076 int overflow = 0; /* number of elements with bit length too large */
Eric Andersencc8ed391999-10-05 16:24:54 +00001077
Erik Andersene49d5ec2000-02-08 19:58:47 +00001078 for (bits = 0; bits <= MAX_BITS; bits++)
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001079 G2.bl_count[bits] = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00001080
Erik Andersene49d5ec2000-02-08 19:58:47 +00001081 /* In a first pass, compute the optimal bit lengths (which may
1082 * overflow in the case of the bit length tree).
1083 */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001084 tree[G2.heap[G2.heap_max]].Len = 0; /* root of the heap */
Eric Andersencc8ed391999-10-05 16:24:54 +00001085
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001086 for (h = G2.heap_max + 1; h < HEAP_SIZE; h++) {
1087 n = G2.heap[h];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001088 bits = tree[tree[n].Dad].Len + 1;
Denis Vlasenkof8241362007-01-07 19:38:42 +00001089 if (bits > max_length) {
1090 bits = max_length;
1091 overflow++;
1092 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001093 tree[n].Len = (ush) bits;
1094 /* We overwrite tree[n].Dad which is no longer needed */
Eric Andersencc8ed391999-10-05 16:24:54 +00001095
Erik Andersene49d5ec2000-02-08 19:58:47 +00001096 if (n > max_code)
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001097 continue; /* not a leaf node */
Eric Andersencc8ed391999-10-05 16:24:54 +00001098
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001099 G2.bl_count[bits]++;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001100 xbits = 0;
1101 if (n >= base)
1102 xbits = extra[n - base];
1103 f = tree[n].Freq;
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001104 G2.opt_len += (ulg) f *(bits + xbits);
Eric Andersencc8ed391999-10-05 16:24:54 +00001105
Erik Andersene49d5ec2000-02-08 19:58:47 +00001106 if (stree)
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001107 G2.static_len += (ulg) f * (stree[n].Len + xbits);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001108 }
1109 if (overflow == 0)
1110 return;
Eric Andersencc8ed391999-10-05 16:24:54 +00001111
Erik Andersene49d5ec2000-02-08 19:58:47 +00001112 Trace((stderr, "\nbit length overflow\n"));
1113 /* This happens for example on obj2 and pic of the Calgary corpus */
Eric Andersencc8ed391999-10-05 16:24:54 +00001114
Erik Andersene49d5ec2000-02-08 19:58:47 +00001115 /* Find the first bit length which could increase: */
1116 do {
1117 bits = max_length - 1;
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001118 while (G2.bl_count[bits] == 0)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001119 bits--;
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001120 G2.bl_count[bits]--; /* move one leaf down the tree */
1121 G2.bl_count[bits + 1] += 2; /* move one overflow item as its brother */
1122 G2.bl_count[max_length]--;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001123 /* The brother of the overflow item also moves one step up,
1124 * but this does not affect bl_count[max_length]
1125 */
1126 overflow -= 2;
1127 } while (overflow > 0);
1128
1129 /* Now recompute all bit lengths, scanning in increasing frequency.
1130 * h is still equal to HEAP_SIZE. (It is simpler to reconstruct all
1131 * lengths instead of fixing only the wrong ones. This idea is taken
1132 * from 'ar' written by Haruhiko Okumura.)
1133 */
1134 for (bits = max_length; bits != 0; bits--) {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001135 n = G2.bl_count[bits];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001136 while (n != 0) {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001137 m = G2.heap[--h];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001138 if (m > max_code)
1139 continue;
1140 if (tree[m].Len != (unsigned) bits) {
Denis Vlasenko1a03c212007-01-07 19:39:34 +00001141 Trace((stderr, "code %d bits %d->%d\n", m, tree[m].Len, bits));
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001142 G2.opt_len += ((int32_t) bits - tree[m].Len) * tree[m].Freq;
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001143 tree[m].Len = bits;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001144 }
1145 n--;
1146 }
1147 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001148}
1149
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001150
Eric Andersencc8ed391999-10-05 16:24:54 +00001151/* ===========================================================================
1152 * Generate the codes for a given tree and bit counts (which need not be
1153 * optimal).
1154 * IN assertion: the array bl_count contains the bit length statistics for
1155 * the given tree and the field len is set for all tree elements.
1156 * OUT assertion: the field code is set for all tree elements of non
1157 * zero code length.
1158 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001159static void gen_codes(ct_data * tree, int max_code)
Eric Andersencc8ed391999-10-05 16:24:54 +00001160{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001161 ush next_code[MAX_BITS + 1]; /* next code value for each bit length */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001162 ush code = 0; /* running code value */
1163 int bits; /* bit index */
1164 int n; /* code index */
Eric Andersencc8ed391999-10-05 16:24:54 +00001165
Erik Andersene49d5ec2000-02-08 19:58:47 +00001166 /* The distribution counts are first used to generate the code values
1167 * without bit reversal.
1168 */
1169 for (bits = 1; bits <= MAX_BITS; bits++) {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001170 next_code[bits] = code = (code + G2.bl_count[bits - 1]) << 1;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001171 }
1172 /* Check that the bit counts in bl_count are consistent. The last code
1173 * must be all ones.
1174 */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001175 Assert(code + G2.bl_count[MAX_BITS] - 1 == (1 << MAX_BITS) - 1,
Erik Andersene49d5ec2000-02-08 19:58:47 +00001176 "inconsistent bit counts");
1177 Tracev((stderr, "\ngen_codes: max_code %d ", max_code));
Eric Andersencc8ed391999-10-05 16:24:54 +00001178
Erik Andersene49d5ec2000-02-08 19:58:47 +00001179 for (n = 0; n <= max_code; n++) {
1180 int len = tree[n].Len;
Eric Andersencc8ed391999-10-05 16:24:54 +00001181
Erik Andersene49d5ec2000-02-08 19:58:47 +00001182 if (len == 0)
1183 continue;
1184 /* Now reverse the bits */
1185 tree[n].Code = bi_reverse(next_code[len]++, len);
1186
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001187 Tracec(tree != G2.static_ltree,
Erik Andersene49d5ec2000-02-08 19:58:47 +00001188 (stderr, "\nn %3d %c l %2d c %4x (%x) ", n,
1189 (isgraph(n) ? n : ' '), len, tree[n].Code,
1190 next_code[len] - 1));
1191 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001192}
1193
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001194
Eric Andersencc8ed391999-10-05 16:24:54 +00001195/* ===========================================================================
1196 * Construct one Huffman tree and assigns the code bit strings and lengths.
1197 * Update the total bit length for the current block.
1198 * IN assertion: the field freq is set for all tree elements.
1199 * OUT assertions: the fields len and code are set to the optimal bit length
1200 * and corresponding code. The length opt_len is updated; static_len is
1201 * also updated if stree is not null. The field max_code is set.
1202 */
Denis Vlasenko89af56b2007-01-07 19:40:34 +00001203
1204/* Remove the smallest element from the heap and recreate the heap with
1205 * one less element. Updates heap and heap_len. */
1206
1207#define SMALLEST 1
1208/* Index within the heap array of least frequent node in the Huffman tree */
1209
1210#define PQREMOVE(tree, top) \
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001211do { \
1212 top = G2.heap[SMALLEST]; \
1213 G2.heap[SMALLEST] = G2.heap[G2.heap_len--]; \
Denis Vlasenko89af56b2007-01-07 19:40:34 +00001214 pqdownheap(tree, SMALLEST); \
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001215} while (0)
Denis Vlasenko89af56b2007-01-07 19:40:34 +00001216
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001217static void build_tree(tree_desc * desc)
Eric Andersencc8ed391999-10-05 16:24:54 +00001218{
Eric Andersen3073dfb2001-07-02 17:57:32 +00001219 ct_data *tree = desc->dyn_tree;
1220 ct_data *stree = desc->static_tree;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001221 int elems = desc->elems;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001222 int n, m; /* iterate over heap elements */
1223 int max_code = -1; /* largest code with non zero frequency */
1224 int node = elems; /* next internal node of the tree */
Eric Andersencc8ed391999-10-05 16:24:54 +00001225
Erik Andersene49d5ec2000-02-08 19:58:47 +00001226 /* Construct the initial heap, with least frequent element in
1227 * heap[SMALLEST]. The sons of heap[n] are heap[2*n] and heap[2*n+1].
1228 * heap[0] is not used.
1229 */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001230 G2.heap_len = 0;
1231 G2.heap_max = HEAP_SIZE;
Eric Andersencc8ed391999-10-05 16:24:54 +00001232
Erik Andersene49d5ec2000-02-08 19:58:47 +00001233 for (n = 0; n < elems; n++) {
1234 if (tree[n].Freq != 0) {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001235 G2.heap[++G2.heap_len] = max_code = n;
1236 G2.depth[n] = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001237 } else {
1238 tree[n].Len = 0;
1239 }
1240 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001241
Erik Andersene49d5ec2000-02-08 19:58:47 +00001242 /* The pkzip format requires that at least one distance code exists,
1243 * and that at least one bit should be sent even if there is only one
1244 * possible code. So to avoid special checks later on we force at least
1245 * two codes of non zero frequency.
1246 */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001247 while (G2.heap_len < 2) {
1248 int new = G2.heap[++G2.heap_len] = (max_code < 2 ? ++max_code : 0);
Eric Andersencc8ed391999-10-05 16:24:54 +00001249
Erik Andersene49d5ec2000-02-08 19:58:47 +00001250 tree[new].Freq = 1;
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001251 G2.depth[new] = 0;
1252 G2.opt_len--;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001253 if (stree)
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001254 G2.static_len -= stree[new].Len;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001255 /* new is 0 or 1 so it does not have extra bits */
1256 }
1257 desc->max_code = max_code;
Eric Andersencc8ed391999-10-05 16:24:54 +00001258
Erik Andersene49d5ec2000-02-08 19:58:47 +00001259 /* The elements heap[heap_len/2+1 .. heap_len] are leaves of the tree,
1260 * establish sub-heaps of increasing lengths:
1261 */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001262 for (n = G2.heap_len / 2; n >= 1; n--)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001263 pqdownheap(tree, n);
Eric Andersencc8ed391999-10-05 16:24:54 +00001264
Erik Andersene49d5ec2000-02-08 19:58:47 +00001265 /* Construct the Huffman tree by repeatedly combining the least two
1266 * frequent nodes.
1267 */
1268 do {
Denis Vlasenko89af56b2007-01-07 19:40:34 +00001269 PQREMOVE(tree, n); /* n = node of least frequency */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001270 m = G2.heap[SMALLEST]; /* m = node of next least frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +00001271
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001272 G2.heap[--G2.heap_max] = n; /* keep the nodes sorted by frequency */
1273 G2.heap[--G2.heap_max] = m;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001274
1275 /* Create a new node father of n and m */
1276 tree[node].Freq = tree[n].Freq + tree[m].Freq;
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001277 G2.depth[node] = MAX(G2.depth[n], G2.depth[m]) + 1;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001278 tree[n].Dad = tree[m].Dad = (ush) node;
Eric Andersencc8ed391999-10-05 16:24:54 +00001279#ifdef DUMP_BL_TREE
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001280 if (tree == G2.bl_tree) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001281 bb_error_msg("\nnode %d(%d), sons %d(%d) %d(%d)",
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001282 node, tree[node].Freq, n, tree[n].Freq, m, tree[m].Freq);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001283 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001284#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00001285 /* and insert the new node in the heap */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001286 G2.heap[SMALLEST] = node++;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001287 pqdownheap(tree, SMALLEST);
Eric Andersencc8ed391999-10-05 16:24:54 +00001288
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001289 } while (G2.heap_len >= 2);
Eric Andersencc8ed391999-10-05 16:24:54 +00001290
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001291 G2.heap[--G2.heap_max] = G2.heap[SMALLEST];
Eric Andersencc8ed391999-10-05 16:24:54 +00001292
Erik Andersene49d5ec2000-02-08 19:58:47 +00001293 /* At this point, the fields freq and dad are set. We can now
1294 * generate the bit lengths.
1295 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00001296 gen_bitlen((tree_desc *) desc);
Eric Andersencc8ed391999-10-05 16:24:54 +00001297
Erik Andersene49d5ec2000-02-08 19:58:47 +00001298 /* The field len is now set, we can generate the bit codes */
Eric Andersen3073dfb2001-07-02 17:57:32 +00001299 gen_codes((ct_data *) tree, max_code);
Eric Andersencc8ed391999-10-05 16:24:54 +00001300}
1301
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001302
Eric Andersencc8ed391999-10-05 16:24:54 +00001303/* ===========================================================================
1304 * Scan a literal or distance tree to determine the frequencies of the codes
1305 * in the bit length tree. Updates opt_len to take into account the repeat
1306 * counts. (The contribution of the bit length codes will be added later
1307 * during the construction of bl_tree.)
1308 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001309static void scan_tree(ct_data * tree, int max_code)
Eric Andersencc8ed391999-10-05 16:24:54 +00001310{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001311 int n; /* iterates over all tree elements */
1312 int prevlen = -1; /* last emitted length */
1313 int curlen; /* length of current code */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001314 int nextlen = tree[0].Len; /* length of next code */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001315 int count = 0; /* repeat count of the current code */
1316 int max_count = 7; /* max repeat count */
1317 int min_count = 4; /* min repeat count */
Eric Andersencc8ed391999-10-05 16:24:54 +00001318
Denis Vlasenko1a03c212007-01-07 19:39:34 +00001319 if (nextlen == 0) {
1320 max_count = 138;
1321 min_count = 3;
1322 }
Denis Vlasenko2f6df7f2007-01-07 19:44:35 +00001323 tree[max_code + 1].Len = 0xffff; /* guard */
Eric Andersencc8ed391999-10-05 16:24:54 +00001324
Erik Andersene49d5ec2000-02-08 19:58:47 +00001325 for (n = 0; n <= max_code; n++) {
1326 curlen = nextlen;
1327 nextlen = tree[n + 1].Len;
Denis Vlasenko2f6df7f2007-01-07 19:44:35 +00001328 if (++count < max_count && curlen == nextlen)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001329 continue;
Denis Vlasenko2f6df7f2007-01-07 19:44:35 +00001330
1331 if (count < min_count) {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001332 G2.bl_tree[curlen].Freq += count;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001333 } else if (curlen != 0) {
1334 if (curlen != prevlen)
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001335 G2.bl_tree[curlen].Freq++;
1336 G2.bl_tree[REP_3_6].Freq++;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001337 } else if (count <= 10) {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001338 G2.bl_tree[REPZ_3_10].Freq++;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001339 } else {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001340 G2.bl_tree[REPZ_11_138].Freq++;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001341 }
1342 count = 0;
1343 prevlen = curlen;
Denis Vlasenko2f6df7f2007-01-07 19:44:35 +00001344
1345 max_count = 7;
1346 min_count = 4;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001347 if (nextlen == 0) {
Denis Vlasenko1a03c212007-01-07 19:39:34 +00001348 max_count = 138;
1349 min_count = 3;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001350 } else if (curlen == nextlen) {
Denis Vlasenko1a03c212007-01-07 19:39:34 +00001351 max_count = 6;
1352 min_count = 3;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001353 }
1354 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001355}
1356
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001357
Eric Andersencc8ed391999-10-05 16:24:54 +00001358/* ===========================================================================
1359 * Send a literal or distance tree in compressed form, using the codes in
1360 * bl_tree.
1361 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001362static void send_tree(ct_data * tree, int max_code)
Eric Andersencc8ed391999-10-05 16:24:54 +00001363{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001364 int n; /* iterates over all tree elements */
1365 int prevlen = -1; /* last emitted length */
1366 int curlen; /* length of current code */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001367 int nextlen = tree[0].Len; /* length of next code */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001368 int count = 0; /* repeat count of the current code */
1369 int max_count = 7; /* max repeat count */
1370 int min_count = 4; /* min repeat count */
Eric Andersencc8ed391999-10-05 16:24:54 +00001371
Erik Andersene49d5ec2000-02-08 19:58:47 +00001372/* tree[max_code+1].Len = -1; *//* guard already set */
1373 if (nextlen == 0)
1374 max_count = 138, min_count = 3;
Eric Andersencc8ed391999-10-05 16:24:54 +00001375
Erik Andersene49d5ec2000-02-08 19:58:47 +00001376 for (n = 0; n <= max_code; n++) {
1377 curlen = nextlen;
1378 nextlen = tree[n + 1].Len;
1379 if (++count < max_count && curlen == nextlen) {
1380 continue;
1381 } else if (count < min_count) {
1382 do {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001383 SEND_CODE(curlen, G2.bl_tree);
Denis Vlasenko1a03c212007-01-07 19:39:34 +00001384 } while (--count);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001385 } else if (curlen != 0) {
1386 if (curlen != prevlen) {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001387 SEND_CODE(curlen, G2.bl_tree);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001388 count--;
1389 }
1390 Assert(count >= 3 && count <= 6, " 3_6?");
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001391 SEND_CODE(REP_3_6, G2.bl_tree);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001392 send_bits(count - 3, 2);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001393 } else if (count <= 10) {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001394 SEND_CODE(REPZ_3_10, G2.bl_tree);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001395 send_bits(count - 3, 3);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001396 } else {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001397 SEND_CODE(REPZ_11_138, G2.bl_tree);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001398 send_bits(count - 11, 7);
1399 }
1400 count = 0;
1401 prevlen = curlen;
1402 if (nextlen == 0) {
Denis Vlasenko1a03c212007-01-07 19:39:34 +00001403 max_count = 138;
1404 min_count = 3;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001405 } else if (curlen == nextlen) {
Denis Vlasenko1a03c212007-01-07 19:39:34 +00001406 max_count = 6;
1407 min_count = 3;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001408 } else {
Denis Vlasenko1a03c212007-01-07 19:39:34 +00001409 max_count = 7;
1410 min_count = 4;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001411 }
1412 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001413}
1414
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001415
Eric Andersencc8ed391999-10-05 16:24:54 +00001416/* ===========================================================================
1417 * Construct the Huffman tree for the bit lengths and return the index in
1418 * bl_order of the last bit length code to send.
1419 */
Mike Frysinger4e5936e2005-04-16 04:30:38 +00001420static int build_bl_tree(void)
Eric Andersencc8ed391999-10-05 16:24:54 +00001421{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001422 int max_blindex; /* index of last bit length code of non zero freq */
Eric Andersencc8ed391999-10-05 16:24:54 +00001423
Erik Andersene49d5ec2000-02-08 19:58:47 +00001424 /* Determine the bit length frequencies for literal and distance trees */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001425 scan_tree(G2.dyn_ltree, G2.l_desc.max_code);
1426 scan_tree(G2.dyn_dtree, G2.d_desc.max_code);
Eric Andersencc8ed391999-10-05 16:24:54 +00001427
Erik Andersene49d5ec2000-02-08 19:58:47 +00001428 /* Build the bit length tree: */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001429 build_tree(&G2.bl_desc);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001430 /* opt_len now includes the length of the tree representations, except
1431 * the lengths of the bit lengths codes and the 5+5+4 bits for the counts.
1432 */
Eric Andersencc8ed391999-10-05 16:24:54 +00001433
Erik Andersene49d5ec2000-02-08 19:58:47 +00001434 /* Determine the number of bit length codes to send. The pkzip format
1435 * requires that at least 4 bit length codes be sent. (appnote.txt says
1436 * 3 but the actual value used is 4.)
1437 */
1438 for (max_blindex = BL_CODES - 1; max_blindex >= 3; max_blindex--) {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001439 if (G2.bl_tree[bl_order[max_blindex]].Len != 0)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001440 break;
1441 }
1442 /* Update opt_len to include the bit length tree and counts */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001443 G2.opt_len += 3 * (max_blindex + 1) + 5 + 5 + 4;
1444 Tracev((stderr, "\ndyn trees: dyn %ld, stat %ld", G2.opt_len, G2.static_len));
Eric Andersencc8ed391999-10-05 16:24:54 +00001445
Erik Andersene49d5ec2000-02-08 19:58:47 +00001446 return max_blindex;
Eric Andersencc8ed391999-10-05 16:24:54 +00001447}
1448
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001449
Eric Andersencc8ed391999-10-05 16:24:54 +00001450/* ===========================================================================
1451 * Send the header for a block using dynamic Huffman trees: the counts, the
1452 * lengths of the bit length codes, the literal tree and the distance tree.
1453 * IN assertion: lcodes >= 257, dcodes >= 1, blcodes >= 4.
1454 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00001455static void send_all_trees(int lcodes, int dcodes, int blcodes)
Eric Andersencc8ed391999-10-05 16:24:54 +00001456{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001457 int rank; /* index in bl_order */
Eric Andersencc8ed391999-10-05 16:24:54 +00001458
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001459 Assert(lcodes >= 257 && dcodes >= 1 && blcodes >= 4, "not enough codes");
Erik Andersene49d5ec2000-02-08 19:58:47 +00001460 Assert(lcodes <= L_CODES && dcodes <= D_CODES
1461 && blcodes <= BL_CODES, "too many codes");
1462 Tracev((stderr, "\nbl counts: "));
1463 send_bits(lcodes - 257, 5); /* not +255 as stated in appnote.txt */
1464 send_bits(dcodes - 1, 5);
1465 send_bits(blcodes - 4, 4); /* not -3 as stated in appnote.txt */
1466 for (rank = 0; rank < blcodes; rank++) {
1467 Tracev((stderr, "\nbl code %2d ", bl_order[rank]));
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001468 send_bits(G2.bl_tree[bl_order[rank]].Len, 3);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001469 }
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001470 Tracev((stderr, "\nbl tree: sent %ld", G1.bits_sent));
Eric Andersencc8ed391999-10-05 16:24:54 +00001471
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001472 send_tree((ct_data *) G2.dyn_ltree, lcodes - 1); /* send the literal tree */
1473 Tracev((stderr, "\nlit tree: sent %ld", G1.bits_sent));
Eric Andersencc8ed391999-10-05 16:24:54 +00001474
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001475 send_tree((ct_data *) G2.dyn_dtree, dcodes - 1); /* send the distance tree */
1476 Tracev((stderr, "\ndist tree: sent %ld", G1.bits_sent));
Eric Andersencc8ed391999-10-05 16:24:54 +00001477}
1478
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001479
Eric Andersencc8ed391999-10-05 16:24:54 +00001480/* ===========================================================================
1481 * Save the match info and tally the frequency counts. Return true if
1482 * the current block must be flushed.
1483 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00001484static int ct_tally(int dist, int lc)
Eric Andersencc8ed391999-10-05 16:24:54 +00001485{
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001486 G1.l_buf[G2.last_lit++] = lc;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001487 if (dist == 0) {
1488 /* lc is the unmatched char */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001489 G2.dyn_ltree[lc].Freq++;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001490 } else {
1491 /* Here, lc is the match length - MIN_MATCH */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001492 dist--; /* dist = match distance - 1 */
Denis Vlasenko1a03c212007-01-07 19:39:34 +00001493 Assert((ush) dist < (ush) MAX_DIST
1494 && (ush) lc <= (ush) (MAX_MATCH - MIN_MATCH)
Denis Vlasenko89af56b2007-01-07 19:40:34 +00001495 && (ush) D_CODE(dist) < (ush) D_CODES, "ct_tally: bad match"
Denis Vlasenko1a03c212007-01-07 19:39:34 +00001496 );
Eric Andersencc8ed391999-10-05 16:24:54 +00001497
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001498 G2.dyn_ltree[G2.length_code[lc] + LITERALS + 1].Freq++;
1499 G2.dyn_dtree[D_CODE(dist)].Freq++;
Eric Andersencc8ed391999-10-05 16:24:54 +00001500
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001501 G1.d_buf[G2.last_dist++] = dist;
1502 G2.flags |= G2.flag_bit;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001503 }
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001504 G2.flag_bit <<= 1;
Eric Andersencc8ed391999-10-05 16:24:54 +00001505
Erik Andersene49d5ec2000-02-08 19:58:47 +00001506 /* Output the flags if they fill a byte: */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001507 if ((G2.last_lit & 7) == 0) {
1508 G2.flag_buf[G2.last_flags++] = G2.flags;
1509 G2.flags = 0;
1510 G2.flag_bit = 1;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001511 }
1512 /* Try to guess if it is profitable to stop the current block here */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001513 if ((G2.last_lit & 0xfff) == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001514 /* Compute an upper bound for the compressed length */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001515 ulg out_length = G2.last_lit * 8L;
1516 ulg in_length = (ulg) G1.strstart - G1.block_start;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001517 int dcode;
1518
1519 for (dcode = 0; dcode < D_CODES; dcode++) {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001520 out_length += G2.dyn_dtree[dcode].Freq * (5L + extra_dbits[dcode]);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001521 }
1522 out_length >>= 3;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001523 Trace((stderr,
Erik Andersene49d5ec2000-02-08 19:58:47 +00001524 "\nlast_lit %u, last_dist %u, in %ld, out ~%ld(%ld%%) ",
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001525 G2.last_lit, G2.last_dist, in_length, out_length,
Erik Andersene49d5ec2000-02-08 19:58:47 +00001526 100L - out_length * 100L / in_length));
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001527 if (G2.last_dist < G2.last_lit / 2 && out_length < in_length / 2)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001528 return 1;
1529 }
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001530 return (G2.last_lit == LIT_BUFSIZE - 1 || G2.last_dist == DIST_BUFSIZE);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001531 /* We avoid equality with LIT_BUFSIZE because of wraparound at 64K
1532 * on 16 bit machines and because stored blocks are restricted to
1533 * 64K-1 bytes.
1534 */
Eric Andersencc8ed391999-10-05 16:24:54 +00001535}
1536
1537/* ===========================================================================
1538 * Send the block data compressed using the given Huffman trees
1539 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001540static void compress_block(ct_data * ltree, ct_data * dtree)
Eric Andersencc8ed391999-10-05 16:24:54 +00001541{
Denis Vlasenkodb6a5c32007-01-07 19:45:51 +00001542 unsigned dist; /* distance of matched string */
1543 int lc; /* match length or unmatched char (if dist == 0) */
1544 unsigned lx = 0; /* running index in l_buf */
1545 unsigned dx = 0; /* running index in d_buf */
1546 unsigned fx = 0; /* running index in flag_buf */
1547 uch flag = 0; /* current flags */
1548 unsigned code; /* the code to send */
1549 int extra; /* number of extra bits to send */
Eric Andersencc8ed391999-10-05 16:24:54 +00001550
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001551 if (G2.last_lit != 0) do {
Denis Vlasenkodb6a5c32007-01-07 19:45:51 +00001552 if ((lx & 7) == 0)
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001553 flag = G2.flag_buf[fx++];
1554 lc = G1.l_buf[lx++];
Denis Vlasenkodb6a5c32007-01-07 19:45:51 +00001555 if ((flag & 1) == 0) {
1556 SEND_CODE(lc, ltree); /* send a literal byte */
1557 Tracecv(isgraph(lc), (stderr, " '%c' ", lc));
1558 } else {
1559 /* Here, lc is the match length - MIN_MATCH */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001560 code = G2.length_code[lc];
Denis Vlasenkodb6a5c32007-01-07 19:45:51 +00001561 SEND_CODE(code + LITERALS + 1, ltree); /* send the length code */
1562 extra = extra_lbits[code];
1563 if (extra != 0) {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001564 lc -= G2.base_length[code];
Denis Vlasenkodb6a5c32007-01-07 19:45:51 +00001565 send_bits(lc, extra); /* send the extra length bits */
1566 }
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001567 dist = G1.d_buf[dx++];
Denis Vlasenkodb6a5c32007-01-07 19:45:51 +00001568 /* Here, dist is the match distance - 1 */
1569 code = D_CODE(dist);
1570 Assert(code < D_CODES, "bad d_code");
Eric Andersencc8ed391999-10-05 16:24:54 +00001571
Denis Vlasenkodb6a5c32007-01-07 19:45:51 +00001572 SEND_CODE(code, dtree); /* send the distance code */
1573 extra = extra_dbits[code];
1574 if (extra != 0) {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001575 dist -= G2.base_dist[code];
Denis Vlasenkodb6a5c32007-01-07 19:45:51 +00001576 send_bits(dist, extra); /* send the extra distance bits */
1577 }
1578 } /* literal or match pair ? */
1579 flag >>= 1;
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001580 } while (lx < G2.last_lit);
Eric Andersencc8ed391999-10-05 16:24:54 +00001581
Denis Vlasenko89af56b2007-01-07 19:40:34 +00001582 SEND_CODE(END_BLOCK, ltree);
Eric Andersencc8ed391999-10-05 16:24:54 +00001583}
1584
Erik Andersene49d5ec2000-02-08 19:58:47 +00001585
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001586/* ===========================================================================
1587 * Determine the best encoding for the current block: dynamic trees, static
1588 * trees or store, and output the encoded block to the zip file. This function
1589 * returns the total compressed length for the file so far.
1590 */
1591static ulg flush_block(char *buf, ulg stored_len, int eof)
1592{
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001593 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
1594 int max_blindex; /* index of last bit length code of non zero freq */
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001595
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001596 G2.flag_buf[G2.last_flags] = G2.flags; /* Save the flags for the last 8 items */
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001597
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001598 /* Construct the literal and distance trees */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001599 build_tree(&G2.l_desc);
1600 Tracev((stderr, "\nlit data: dyn %ld, stat %ld", G2.opt_len, G2.static_len));
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001601
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001602 build_tree(&G2.d_desc);
1603 Tracev((stderr, "\ndist data: dyn %ld, stat %ld", G2.opt_len, G2.static_len));
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001604 /* At this point, opt_len and static_len are the total bit lengths of
1605 * the compressed block data, excluding the tree representations.
1606 */
1607
1608 /* Build the bit length tree for the above two trees, and get the index
1609 * in bl_order of the last bit length code to send.
1610 */
1611 max_blindex = build_bl_tree();
1612
1613 /* Determine the best encoding. Compute first the block length in bytes */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001614 opt_lenb = (G2.opt_len + 3 + 7) >> 3;
1615 static_lenb = (G2.static_len + 3 + 7) >> 3;
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001616
1617 Trace((stderr,
1618 "\nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u dist %u ",
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001619 opt_lenb, G2.opt_len, static_lenb, G2.static_len, stored_len,
1620 G2.last_lit, G2.last_dist));
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001621
1622 if (static_lenb <= opt_lenb)
1623 opt_lenb = static_lenb;
1624
1625 /* If compression failed and this is the first and last block,
1626 * and if the zip file can be seeked (to rewrite the local header),
1627 * the whole file is transformed into a stored file:
1628 */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001629 if (stored_len <= opt_lenb && eof && G2.compressed_len == 0L && seekable()) {
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001630 /* Since LIT_BUFSIZE <= 2*WSIZE, the input data must be there: */
1631 if (buf == NULL)
1632 bb_error_msg("block vanished");
1633
1634 copy_block(buf, (unsigned) stored_len, 0); /* without header */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001635 G2.compressed_len = stored_len << 3;
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001636
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001637 } else if (stored_len + 4 <= opt_lenb && buf != NULL) {
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001638 /* 4: two words for the lengths */
1639 /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE.
1640 * Otherwise we can't have processed more than WSIZE input bytes since
1641 * the last block flush, because compression would have been
1642 * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to
1643 * transform a block into a stored block.
1644 */
1645 send_bits((STORED_BLOCK << 1) + eof, 3); /* send block type */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001646 G2.compressed_len = (G2.compressed_len + 3 + 7) & ~7L;
1647 G2.compressed_len += (stored_len + 4) << 3;
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001648
1649 copy_block(buf, (unsigned) stored_len, 1); /* with header */
1650
1651 } else if (static_lenb == opt_lenb) {
1652 send_bits((STATIC_TREES << 1) + eof, 3);
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001653 compress_block((ct_data *) G2.static_ltree, (ct_data *) G2.static_dtree);
1654 G2.compressed_len += 3 + G2.static_len;
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001655 } else {
1656 send_bits((DYN_TREES << 1) + eof, 3);
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001657 send_all_trees(G2.l_desc.max_code + 1, G2.d_desc.max_code + 1,
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001658 max_blindex + 1);
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001659 compress_block((ct_data *) G2.dyn_ltree, (ct_data *) G2.dyn_dtree);
1660 G2.compressed_len += 3 + G2.opt_len;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001661 }
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001662 Assert(G2.compressed_len == G1.bits_sent, "bad compressed size");
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001663 init_block();
1664
1665 if (eof) {
1666 bi_windup();
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001667 G2.compressed_len += 7; /* align on byte boundary */
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001668 }
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001669 Tracev((stderr, "\ncomprlen %lu(%lu) ", G2.compressed_len >> 3,
1670 G2.compressed_len - 7 * eof));
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001671
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001672 return G2.compressed_len >> 3;
Eric Andersencc8ed391999-10-05 16:24:54 +00001673}
Erik Andersene49d5ec2000-02-08 19:58:47 +00001674
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001675
1676/* ===========================================================================
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001677 * Update a hash value with the given input byte
1678 * IN assertion: all calls to to UPDATE_HASH are made with consecutive
1679 * input characters, so that a running hash key can be computed from the
1680 * previous key instead of complete recalculation each time.
1681 */
1682#define UPDATE_HASH(h, c) (h = (((h)<<H_SHIFT) ^ (c)) & HASH_MASK)
1683
1684
1685/* ===========================================================================
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001686 * Same as above, but achieves better compression. We use a lazy
1687 * evaluation for matches: a match is finally adopted only if there is
1688 * no better match at the next window position.
1689 *
1690 * Processes a new input file and return its compressed length. Sets
1691 * the compressed length, crc, deflate flags and internal file
1692 * attributes.
1693 */
1694
1695/* Flush the current block, with given end-of-file flag.
1696 * IN assertion: strstart is set to the end of the current match. */
1697#define FLUSH_BLOCK(eof) \
1698 flush_block( \
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001699 G1.block_start >= 0L \
1700 ? (char*)&G1.window[(unsigned)G1.block_start] \
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001701 : (char*)NULL, \
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001702 (ulg)G1.strstart - G1.block_start, \
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001703 (eof) \
1704 )
1705
1706/* Insert string s in the dictionary and set match_head to the previous head
1707 * of the hash chain (the most recent string with same hash key). Return
1708 * the previous length of the hash chain.
1709 * IN assertion: all calls to to INSERT_STRING are made with consecutive
1710 * input characters and the first MIN_MATCH bytes of s are valid
1711 * (except for the last MIN_MATCH-1 bytes of the input file). */
1712#define INSERT_STRING(s, match_head) \
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001713do { \
1714 UPDATE_HASH(G1.ins_h, G1.window[(s) + MIN_MATCH-1]); \
1715 G1.prev[(s) & WMASK] = match_head = head[G1.ins_h]; \
1716 head[G1.ins_h] = (s); \
1717} while (0)
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001718
1719static ulg deflate(void)
1720{
1721 IPos hash_head; /* head of hash chain */
1722 IPos prev_match; /* previous match */
1723 int flush; /* set if current block must be flushed */
1724 int match_available = 0; /* set if previous match exists */
1725 unsigned match_length = MIN_MATCH - 1; /* length of best match */
1726
1727 /* Process the input block. */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001728 while (G1.lookahead != 0) {
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001729 /* Insert the string window[strstart .. strstart+2] in the
1730 * dictionary, and set hash_head to the head of the hash chain:
1731 */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001732 INSERT_STRING(G1.strstart, hash_head);
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001733
1734 /* Find the longest match, discarding those <= prev_length.
1735 */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001736 G1.prev_length = match_length;
1737 prev_match = G1.match_start;
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001738 match_length = MIN_MATCH - 1;
1739
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001740 if (hash_head != 0 && G1.prev_length < max_lazy_match
1741 && G1.strstart - hash_head <= MAX_DIST
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001742 ) {
1743 /* To simplify the code, we prevent matches with the string
1744 * of window index 0 (in particular we have to avoid a match
1745 * of the string with itself at the start of the input file).
1746 */
1747 match_length = longest_match(hash_head);
1748 /* longest_match() sets match_start */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001749 if (match_length > G1.lookahead)
1750 match_length = G1.lookahead;
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001751
1752 /* Ignore a length 3 match if it is too distant: */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001753 if (match_length == MIN_MATCH && G1.strstart - G1.match_start > TOO_FAR) {
1754 /* If prev_match is also MIN_MATCH, G1.match_start is garbage
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001755 * but we will ignore the current match anyway.
1756 */
1757 match_length--;
1758 }
1759 }
1760 /* If there was a match at the previous step and the current
1761 * match is not better, output the previous match:
1762 */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001763 if (G1.prev_length >= MIN_MATCH && match_length <= G1.prev_length) {
1764 check_match(G1.strstart - 1, prev_match, G1.prev_length);
1765 flush = ct_tally(G1.strstart - 1 - prev_match, G1.prev_length - MIN_MATCH);
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001766
1767 /* Insert in hash table all strings up to the end of the match.
1768 * strstart-1 and strstart are already inserted.
1769 */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001770 G1.lookahead -= G1.prev_length - 1;
1771 G1.prev_length -= 2;
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001772 do {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001773 G1.strstart++;
1774 INSERT_STRING(G1.strstart, hash_head);
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001775 /* strstart never exceeds WSIZE-MAX_MATCH, so there are
1776 * always MIN_MATCH bytes ahead. If lookahead < MIN_MATCH
1777 * these bytes are garbage, but it does not matter since the
1778 * next lookahead bytes will always be emitted as literals.
1779 */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001780 } while (--G1.prev_length != 0);
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001781 match_available = 0;
1782 match_length = MIN_MATCH - 1;
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001783 G1.strstart++;
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001784 if (flush) {
1785 FLUSH_BLOCK(0);
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001786 G1.block_start = G1.strstart;
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001787 }
1788 } else if (match_available) {
1789 /* If there was no match at the previous position, output a
1790 * single literal. If there was a match but the current match
1791 * is longer, truncate the previous match to a single literal.
1792 */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001793 Tracevv((stderr, "%c", G1.window[G1.strstart - 1]));
1794 if (ct_tally(0, G1.window[G1.strstart - 1])) {
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001795 FLUSH_BLOCK(0);
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001796 G1.block_start = G1.strstart;
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001797 }
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001798 G1.strstart++;
1799 G1.lookahead--;
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001800 } else {
1801 /* There is no previous match to compare with, wait for
1802 * the next step to decide.
1803 */
1804 match_available = 1;
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001805 G1.strstart++;
1806 G1.lookahead--;
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001807 }
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001808 Assert(G1.strstart <= G1.isize && lookahead <= G1.isize, "a bit too far");
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001809
1810 /* Make sure that we always have enough lookahead, except
1811 * at the end of the input file. We need MAX_MATCH bytes
1812 * for the next match, plus MIN_MATCH bytes to insert the
1813 * string following the next match.
1814 */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001815 while (G1.lookahead < MIN_LOOKAHEAD && !G1.eofile)
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001816 fill_window();
1817 }
1818 if (match_available)
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001819 ct_tally(0, G1.window[G1.strstart - 1]);
Denis Vlasenko56c83ea2007-01-07 19:40:50 +00001820
1821 return FLUSH_BLOCK(1); /* eof */
1822}
1823
1824
Eric Andersencc8ed391999-10-05 16:24:54 +00001825/* ===========================================================================
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001826 * Initialize the bit string routines.
1827 */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001828static void bi_init(void)
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001829{
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001830 G1.bi_buf = 0;
1831 G1.bi_valid = 0;
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001832#ifdef DEBUG
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001833 G1.bits_sent = 0L;
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001834#endif
1835}
1836
1837
1838/* ===========================================================================
1839 * Initialize the "longest match" routines for a new file
1840 */
Denis Vlasenkodb6a5c32007-01-07 19:45:51 +00001841static void lm_init(ush * flagsp)
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001842{
1843 unsigned j;
1844
1845 /* Initialize the hash table. */
1846 memset(head, 0, HASH_SIZE * sizeof(*head));
1847 /* prev will be initialized on the fly */
1848
Denis Vlasenkodb6a5c32007-01-07 19:45:51 +00001849 /* speed options for the general purpose bit flag */
1850 *flagsp |= 2; /* FAST 4, SLOW 2 */
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001851 /* ??? reduce max_chain_length for binary files */
1852
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001853 G1.strstart = 0;
1854 G1.block_start = 0L;
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001855
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001856 G1.lookahead = file_read(G1.window,
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001857 sizeof(int) <= 2 ? (unsigned) WSIZE : 2 * WSIZE);
1858
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001859 if (G1.lookahead == 0 || G1.lookahead == (unsigned) -1) {
1860 G1.eofile = 1;
1861 G1.lookahead = 0;
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001862 return;
1863 }
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001864 G1.eofile = 0;
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001865 /* Make sure that we always have enough lookahead. This is important
1866 * if input comes from a device such as a tty.
1867 */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001868 while (G1.lookahead < MIN_LOOKAHEAD && !G1.eofile)
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001869 fill_window();
1870
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001871 G1.ins_h = 0;
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001872 for (j = 0; j < MIN_MATCH - 1; j++)
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001873 UPDATE_HASH(G1.ins_h, G1.window[j]);
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001874 /* If lookahead < MIN_MATCH, ins_h is garbage, but this is
1875 * not important since only literal bytes will be emitted.
1876 */
1877}
1878
1879
1880/* ===========================================================================
1881 * Allocate the match buffer, initialize the various tables and save the
1882 * location of the internal file attribute (ascii/binary) and method
1883 * (DEFLATE/STORE).
1884 * One callsite in zip()
1885 */
Denis Vlasenkofe42d172007-03-14 00:08:28 +00001886static void ct_init(void)
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001887{
1888 int n; /* iterates over tree elements */
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001889 int length; /* length value */
1890 int code; /* code value */
1891 int dist; /* distance index */
1892
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001893 G2.compressed_len = 0L;
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001894
1895#ifdef NOT_NEEDED
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001896 if (G2.static_dtree[0].Len != 0)
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001897 return; /* ct_init already called */
1898#endif
1899
1900 /* Initialize the mapping length (0..255) -> length code (0..28) */
1901 length = 0;
1902 for (code = 0; code < LENGTH_CODES - 1; code++) {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001903 G2.base_length[code] = length;
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001904 for (n = 0; n < (1 << extra_lbits[code]); n++) {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001905 G2.length_code[length++] = code;
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001906 }
1907 }
1908 Assert(length == 256, "ct_init: length != 256");
1909 /* Note that the length 255 (match length 258) can be represented
1910 * in two different ways: code 284 + 5 bits or code 285, so we
1911 * overwrite length_code[255] to use the best encoding:
1912 */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001913 G2.length_code[length - 1] = code;
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001914
1915 /* Initialize the mapping dist (0..32K) -> dist code (0..29) */
1916 dist = 0;
1917 for (code = 0; code < 16; code++) {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001918 G2.base_dist[code] = dist;
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001919 for (n = 0; n < (1 << extra_dbits[code]); n++) {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001920 G2.dist_code[dist++] = code;
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001921 }
1922 }
1923 Assert(dist == 256, "ct_init: dist != 256");
1924 dist >>= 7; /* from now on, all distances are divided by 128 */
1925 for (; code < D_CODES; code++) {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001926 G2.base_dist[code] = dist << 7;
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001927 for (n = 0; n < (1 << (extra_dbits[code] - 7)); n++) {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001928 G2.dist_code[256 + dist++] = code;
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001929 }
1930 }
1931 Assert(dist == 256, "ct_init: 256+dist != 512");
1932
1933 /* Construct the codes of the static literal tree */
1934 /* already zeroed - it's in bss
Denis Vlasenkodb6a5c32007-01-07 19:45:51 +00001935 for (n = 0; n <= MAX_BITS; n++)
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001936 G2.bl_count[n] = 0; */
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001937
1938 n = 0;
1939 while (n <= 143) {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001940 G2.static_ltree[n++].Len = 8;
1941 G2.bl_count[8]++;
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001942 }
1943 while (n <= 255) {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001944 G2.static_ltree[n++].Len = 9;
1945 G2.bl_count[9]++;
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001946 }
1947 while (n <= 279) {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001948 G2.static_ltree[n++].Len = 7;
1949 G2.bl_count[7]++;
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001950 }
1951 while (n <= 287) {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001952 G2.static_ltree[n++].Len = 8;
1953 G2.bl_count[8]++;
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001954 }
1955 /* Codes 286 and 287 do not exist, but we must include them in the
1956 * tree construction to get a canonical Huffman tree (longest code
1957 * all ones)
1958 */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001959 gen_codes((ct_data *) G2.static_ltree, L_CODES + 1);
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001960
1961 /* The static distance tree is trivial: */
1962 for (n = 0; n < D_CODES; n++) {
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001963 G2.static_dtree[n].Len = 5;
1964 G2.static_dtree[n].Code = bi_reverse(n, 5);
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001965 }
1966
1967 /* Initialize the first block of the first file: */
1968 init_block();
1969}
1970
1971
1972/* ===========================================================================
Eric Andersencc8ed391999-10-05 16:24:54 +00001973 * Deflate in to out.
1974 * IN assertions: the input and output buffers are cleared.
Eric Andersencc8ed391999-10-05 16:24:54 +00001975 */
Denis Vlasenko3ae6f342007-01-07 19:44:57 +00001976
Denis Vlasenkofe42d172007-03-14 00:08:28 +00001977static void zip(ulg time_stamp)
Eric Andersencc8ed391999-10-05 16:24:54 +00001978{
Denis Vlasenkodb6a5c32007-01-07 19:45:51 +00001979 ush deflate_flags = 0; /* pkzip -es, -en or -ex equivalent */
Eric Andersencc8ed391999-10-05 16:24:54 +00001980
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001981 G1.outcnt = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00001982
Erik Andersene49d5ec2000-02-08 19:58:47 +00001983 /* Write the header to the gzip file. See algorithm.doc for the format */
Denis Vlasenkoda799e82007-03-14 00:06:29 +00001984 /* magic header for gzip files: 1F 8B */
Denis Vlasenkofe42d172007-03-14 00:08:28 +00001985 /* compression method: 8 (DEFLATED) */
Denis Vlasenkoda799e82007-03-14 00:06:29 +00001986 /* general flags: 0 */
1987 put_32bit(0x00088b1f);
Denis Vlasenkofe42d172007-03-14 00:08:28 +00001988 put_32bit(time_stamp);
Eric Andersencc8ed391999-10-05 16:24:54 +00001989
Erik Andersene49d5ec2000-02-08 19:58:47 +00001990 /* Write deflated file to zip file */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001991 G1.crc = ~0;
Eric Andersencc8ed391999-10-05 16:24:54 +00001992
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00001993 bi_init();
Denis Vlasenkofe42d172007-03-14 00:08:28 +00001994 ct_init();
Erik Andersene49d5ec2000-02-08 19:58:47 +00001995 lm_init(&deflate_flags);
Eric Andersencc8ed391999-10-05 16:24:54 +00001996
Denis Vlasenkoda31fbc2007-01-07 19:39:02 +00001997 put_8bit(deflate_flags); /* extra flags */
Denis Vlasenkoad403412007-01-07 19:37:42 +00001998 put_8bit(3); /* OS identifier = 3 (Unix) */
Eric Andersencc8ed391999-10-05 16:24:54 +00001999
Denis Vlasenkoed0f6db2007-01-07 19:38:26 +00002000 deflate();
Eric Andersencc8ed391999-10-05 16:24:54 +00002001
Erik Andersene49d5ec2000-02-08 19:58:47 +00002002 /* Write the crc and uncompressed size */
Denis Vlasenkoe930fe12007-03-14 00:06:10 +00002003 put_32bit(~G1.crc);
2004 put_32bit(G1.isize);
Eric Andersencc8ed391999-10-05 16:24:54 +00002005
Erik Andersene49d5ec2000-02-08 19:58:47 +00002006 flush_outbuf();
Eric Andersencc8ed391999-10-05 16:24:54 +00002007}
Denis Vlasenko52933d42007-01-07 19:40:13 +00002008
2009
2010/* ======================================================================== */
Denis Vlasenko75605782007-03-14 00:07:51 +00002011static
2012char* make_new_name_gzip(char *filename)
2013{
2014 return xasprintf("%s.gz", filename);
2015}
2016
2017static
Denis Vlasenko1a9e9bd2008-11-01 12:54:56 +00002018USE_DESKTOP(long long) int pack_gzip(unpack_info_t *info UNUSED_PARAM)
Denis Vlasenko75605782007-03-14 00:07:51 +00002019{
2020 struct stat s;
Denis Vlasenkoc86e0522007-03-20 11:30:28 +00002021
Denis Vlasenkofe42d172007-03-14 00:08:28 +00002022 clear_bufs();
2023 s.st_ctime = 0;
2024 fstat(STDIN_FILENO, &s);
2025 zip(s.st_ctime);
Denis Vlasenko75605782007-03-14 00:07:51 +00002026 return 0;
2027}
2028
Denis Vlasenko52978092008-03-30 13:11:47 +00002029/*
2030 * Linux kernel build uses gzip -d -n. We accept and ignore it.
2031 * Man page says:
2032 * -n --no-name
2033 * gzip: do not save the original file name and time stamp.
2034 * (The original name is always saved if the name had to be truncated.)
2035 * gunzip: do not restore the original file name/time even if present
2036 * (remove only the gzip suffix from the compressed file name).
2037 * This option is the default when decompressing.
2038 * -N --name
2039 * gzip: always save the original file name and time stamp (this is the default)
2040 * gunzip: restore the original file name and time stamp if present.
2041 */
2042
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00002043int gzip_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenko85c24712008-03-17 09:04:04 +00002044#if ENABLE_GUNZIP
Denis Vlasenko75605782007-03-14 00:07:51 +00002045int gzip_main(int argc, char **argv)
Denis Vlasenko85c24712008-03-17 09:04:04 +00002046#else
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002047int gzip_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenko85c24712008-03-17 09:04:04 +00002048#endif
Denis Vlasenko75605782007-03-14 00:07:51 +00002049{
2050 unsigned opt;
2051
2052 /* Must match bbunzip's constants OPT_STDOUT, OPT_FORCE! */
Denis Vlasenko55da0be2008-06-27 21:52:41 +00002053 opt = getopt32(argv, "cfv" USE_GUNZIP("dt") "q123456789n");
Denis Vlasenko77f1ec12007-10-13 03:36:03 +00002054#if ENABLE_GUNZIP /* gunzip_main may not be visible... */
Denis Vlasenko55da0be2008-06-27 21:52:41 +00002055 if (opt & 0x18) // -d and/or -t
Denis Vlasenko77f1ec12007-10-13 03:36:03 +00002056 return gunzip_main(argc, argv);
2057#endif
2058 option_mask32 &= 0x7; /* ignore -q, -0..9 */
Denis Vlasenko75605782007-03-14 00:07:51 +00002059 //if (opt & 0x1) // -c
2060 //if (opt & 0x2) // -f
2061 //if (opt & 0x4) // -v
Denis Vlasenkocbcff292007-03-22 18:56:23 +00002062 argv += optind;
Denis Vlasenko75605782007-03-14 00:07:51 +00002063
Denis Vlasenko574f2f42008-02-27 18:41:59 +00002064 SET_PTR_TO_GLOBALS(xzalloc(sizeof(struct globals) + sizeof(struct globals2))
2065 + sizeof(struct globals));
Denis Vlasenko55da0be2008-06-27 21:52:41 +00002066 barrier();
Denis Vlasenko75605782007-03-14 00:07:51 +00002067 G2.l_desc.dyn_tree = G2.dyn_ltree;
2068 G2.l_desc.static_tree = G2.static_ltree;
2069 G2.l_desc.extra_bits = extra_lbits;
2070 G2.l_desc.extra_base = LITERALS + 1;
2071 G2.l_desc.elems = L_CODES;
2072 G2.l_desc.max_length = MAX_BITS;
2073 //G2.l_desc.max_code = 0;
2074
2075 G2.d_desc.dyn_tree = G2.dyn_dtree;
2076 G2.d_desc.static_tree = G2.static_dtree;
2077 G2.d_desc.extra_bits = extra_dbits;
2078 //G2.d_desc.extra_base = 0;
2079 G2.d_desc.elems = D_CODES;
2080 G2.d_desc.max_length = MAX_BITS;
2081 //G2.d_desc.max_code = 0;
2082
2083 G2.bl_desc.dyn_tree = G2.bl_tree;
2084 //G2.bl_desc.static_tree = NULL;
2085 G2.bl_desc.extra_bits = extra_blbits,
2086 //G2.bl_desc.extra_base = 0;
2087 G2.bl_desc.elems = BL_CODES;
2088 G2.bl_desc.max_length = MAX_BL_BITS;
2089 //G2.bl_desc.max_code = 0;
2090
2091 /* Allocate all global buffers (for DYN_ALLOC option) */
2092 ALLOC(uch, G1.l_buf, INBUFSIZ);
2093 ALLOC(uch, G1.outbuf, OUTBUFSIZ);
2094 ALLOC(ush, G1.d_buf, DIST_BUFSIZE);
2095 ALLOC(uch, G1.window, 2L * WSIZE);
2096 ALLOC(ush, G1.prev, 1L << BITS);
2097
2098 /* Initialise the CRC32 table */
Denis Vlasenkoc6758a02007-04-10 21:40:19 +00002099 G1.crc_32_tab = crc32_filltable(NULL, 0);
Denis Vlasenko75605782007-03-14 00:07:51 +00002100
Denis Vlasenko75605782007-03-14 00:07:51 +00002101 return bbunpack(argv, make_new_name_gzip, pack_gzip);
2102}