| | varnish-cache/lib/libvgz/deflate.c |
| 0 |
|
/* deflate.c -- compress data using the deflation algorithm |
| 1 |
|
* Copyright (C) 1995-2024 Jean-loup Gailly and Mark Adler |
| 2 |
|
* For conditions of distribution and use, see copyright notice in zlib.h |
| 3 |
|
*/ |
| 4 |
|
|
| 5 |
|
/* |
| 6 |
|
* ALGORITHM |
| 7 |
|
* |
| 8 |
|
* The "deflation" process depends on being able to identify portions |
| 9 |
|
* of the input text which are identical to earlier input (within a |
| 10 |
|
* sliding window trailing behind the input currently being processed). |
| 11 |
|
* |
| 12 |
|
* The most straightforward technique turns out to be the fastest for |
| 13 |
|
* most input files: try all possible matches and select the longest. |
| 14 |
|
* The key feature of this algorithm is that insertions into the string |
| 15 |
|
* dictionary are very simple and thus fast, and deletions are avoided |
| 16 |
|
* completely. Insertions are performed at each input character, whereas |
| 17 |
|
* string matches are performed only when the previous match ends. So it |
| 18 |
|
* is preferable to spend more time in matches to allow very fast string |
| 19 |
|
* insertions and avoid deletions. The matching algorithm for small |
| 20 |
|
* strings is inspired from that of Rabin & Karp. A brute force approach |
| 21 |
|
* is used to find longer strings when a small match has been found. |
| 22 |
|
* A similar algorithm is used in comic (by Jan-Mark Wams) and freeze |
| 23 |
|
* (by Leonid Broukhis). |
| 24 |
|
* A previous version of this file used a more sophisticated algorithm |
| 25 |
|
* (by Fiala and Greene) which is guaranteed to run in linear amortized |
| 26 |
|
* time, but has a larger average cost, uses more memory and is patented. |
| 27 |
|
* However the F&G algorithm may be faster for some highly redundant |
| 28 |
|
* files if the parameter max_chain_length (described below) is too large. |
| 29 |
|
* |
| 30 |
|
* ACKNOWLEDGEMENTS |
| 31 |
|
* |
| 32 |
|
* The idea of lazy evaluation of matches is due to Jan-Mark Wams, and |
| 33 |
|
* I found it in 'freeze' written by Leonid Broukhis. |
| 34 |
|
* Thanks to many people for bug reports and testing. |
| 35 |
|
* |
| 36 |
|
* REFERENCES |
| 37 |
|
* |
| 38 |
|
* Deutsch, L.P.,"DEFLATE Compressed Data Format Specification". |
| 39 |
|
* Available in http://tools.ietf.org/html/rfc1951 |
| 40 |
|
* |
| 41 |
|
* A description of the Rabin and Karp algorithm is given in the book |
| 42 |
|
* "Algorithms" by R. Sedgewick, Addison-Wesley, p252. |
| 43 |
|
* |
| 44 |
|
* Fiala,E.R., and Greene,D.H. |
| 45 |
|
* Data Compression with Finite Windows, Comm.ACM, 32,4 (1989) 490-595 |
| 46 |
|
* |
| 47 |
|
*/ |
| 48 |
|
|
| 49 |
|
/* @(#) $Id$ */ |
| 50 |
|
|
| 51 |
|
#include "deflate.h" |
| 52 |
|
|
| 53 |
|
extern const char deflate_copyright[]; |
| 54 |
|
const char deflate_copyright[] = |
| 55 |
|
" deflate 1.3.1.1 Copyright 1995-2024 Jean-loup Gailly and Mark Adler "; |
| 56 |
|
/* |
| 57 |
|
If you use the zlib library in a product, an acknowledgment is welcome |
| 58 |
|
in the documentation of your product. If for some reason you cannot |
| 59 |
|
include such an acknowledgment, I would appreciate that you keep this |
| 60 |
|
copyright string in the executable of your product. |
| 61 |
|
*/ |
| 62 |
|
|
| 63 |
|
typedef enum { |
| 64 |
|
need_more, /* block not completed, need more input or more output */ |
| 65 |
|
block_done, /* block flush performed */ |
| 66 |
|
finish_started, /* finish started, need only more output at next deflate */ |
| 67 |
|
finish_done /* finish done, accept no more input or output */ |
| 68 |
|
} block_state; |
| 69 |
|
|
| 70 |
|
typedef block_state (*compress_func) (deflate_state *s, int flush); |
| 71 |
|
/* Compression function. Returns the block state after the call. */ |
| 72 |
|
|
| 73 |
|
local block_state deflate_stored (deflate_state *s, int flush); |
| 74 |
|
local block_state deflate_fast (deflate_state *s, int flush); |
| 75 |
|
#ifndef FASTEST |
| 76 |
|
local block_state deflate_slow (deflate_state *s, int flush); |
| 77 |
|
#endif |
| 78 |
|
#ifdef NOVGZ |
| 79 |
|
local block_state deflate_rle (deflate_state *s, int flush); |
| 80 |
|
local block_state deflate_huff (deflate_state *s, int flush); |
| 81 |
|
#endif /* NOVGZ */ |
| 82 |
|
|
| 83 |
|
/* =========================================================================== |
| 84 |
|
* Local data |
| 85 |
|
*/ |
| 86 |
|
|
| 87 |
|
#define NIL 0 |
| 88 |
|
/* Tail of hash chains */ |
| 89 |
|
|
| 90 |
|
#ifndef TOO_FAR |
| 91 |
|
# define TOO_FAR 4096 |
| 92 |
|
#endif |
| 93 |
|
/* Matches of length 3 are discarded if their distance exceeds TOO_FAR */ |
| 94 |
|
|
| 95 |
|
/* Values for max_lazy_match, good_match and max_chain_length, depending on |
| 96 |
|
* the desired pack level (0..9). The values given below have been tuned to |
| 97 |
|
* exclude worst case performance for pathological files. Better values may be |
| 98 |
|
* found for specific files. |
| 99 |
|
*/ |
| 100 |
|
typedef struct config_s { |
| 101 |
|
ush good_length; /* reduce lazy search above this match length */ |
| 102 |
|
ush max_lazy; /* do not perform lazy search above this match length */ |
| 103 |
|
ush nice_length; /* quit search above this match length */ |
| 104 |
|
ush max_chain; |
| 105 |
|
compress_func func; |
| 106 |
|
} config; |
| 107 |
|
|
| 108 |
|
#ifdef FASTEST |
| 109 |
|
local const config configuration_table[2] = { |
| 110 |
|
/* good lazy nice chain */ |
| 111 |
|
/* 0 */ {0, 0, 0, 0, deflate_stored}, /* store only */ |
| 112 |
|
/* 1 */ {4, 4, 8, 4, deflate_fast}}; /* max speed, no lazy matches */ |
| 113 |
|
#else |
| 114 |
|
local const config configuration_table[10] = { |
| 115 |
|
/* good lazy nice chain */ |
| 116 |
|
/* 0 */ {0, 0, 0, 0, deflate_stored}, /* store only */ |
| 117 |
|
/* 1 */ {4, 4, 8, 4, deflate_fast}, /* max speed, no lazy matches */ |
| 118 |
|
/* 2 */ {4, 5, 16, 8, deflate_fast}, |
| 119 |
|
/* 3 */ {4, 6, 32, 32, deflate_fast}, |
| 120 |
|
|
| 121 |
|
/* 4 */ {4, 4, 16, 16, deflate_slow}, /* lazy matches */ |
| 122 |
|
/* 5 */ {8, 16, 32, 32, deflate_slow}, |
| 123 |
|
/* 6 */ {8, 16, 128, 128, deflate_slow}, |
| 124 |
|
/* 7 */ {8, 32, 128, 256, deflate_slow}, |
| 125 |
|
/* 8 */ {32, 128, 258, 1024, deflate_slow}, |
| 126 |
|
/* 9 */ {32, 258, 258, 4096, deflate_slow}}; /* max compression */ |
| 127 |
|
#endif |
| 128 |
|
|
| 129 |
|
/* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4 |
| 130 |
|
* For deflate_fast() (levels <= 3) good is ignored and lazy has a different |
| 131 |
|
* meaning. |
| 132 |
|
*/ |
| 133 |
|
|
| 134 |
|
/* rank Z_BLOCK between Z_NO_FLUSH and Z_PARTIAL_FLUSH */ |
| 135 |
|
#define RANK(f) (((f) * 2) - ((f) > 4 ? 9 : 0)) |
| 136 |
|
|
| 137 |
|
/* =========================================================================== |
| 138 |
|
* Update a hash value with the given input byte |
| 139 |
|
* IN assertion: all calls to UPDATE_HASH are made with consecutive input |
| 140 |
|
* characters, so that a running hash key can be computed from the previous |
| 141 |
|
* key instead of complete recalculation each time. |
| 142 |
|
*/ |
| 143 |
|
#define UPDATE_HASH(s,h,c) (h = (((h)<<s->hash_shift) ^ (c)) & s->hash_mask) |
| 144 |
|
|
| 145 |
|
|
| 146 |
|
/* =========================================================================== |
| 147 |
|
* Insert string str in the dictionary and set match_head to the previous head |
| 148 |
|
* of the hash chain (the most recent string with same hash key). Return |
| 149 |
|
* the previous length of the hash chain. |
| 150 |
|
* If this file is compiled with -DFASTEST, the compression level is forced |
| 151 |
|
* to 1, and no hash chains are maintained. |
| 152 |
|
* IN assertion: all calls to INSERT_STRING are made with consecutive input |
| 153 |
|
* characters and the first MIN_MATCH bytes of str are valid (except for |
| 154 |
|
* the last MIN_MATCH-1 bytes of the input file). |
| 155 |
|
*/ |
| 156 |
|
#ifdef FASTEST |
| 157 |
|
#define INSERT_STRING(s, str, match_head) \ |
| 158 |
|
(UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \ |
| 159 |
|
match_head = s->head[s->ins_h], \ |
| 160 |
|
s->head[s->ins_h] = (Pos)(str)) |
| 161 |
|
#else |
| 162 |
|
#define INSERT_STRING(s, str, match_head) \ |
| 163 |
|
(UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \ |
| 164 |
|
match_head = s->prev[(str) & s->w_mask] = s->head[s->ins_h], \ |
| 165 |
|
s->head[s->ins_h] = (Pos)(str)) |
| 166 |
|
#endif |
| 167 |
|
|
| 168 |
|
/* =========================================================================== |
| 169 |
|
* Initialize the hash table (avoiding 64K overflow for 16 bit systems). |
| 170 |
|
* prev[] will be initialized on the fly. |
| 171 |
|
*/ |
| 172 |
|
#define CLEAR_HASH(s) \ |
| 173 |
|
do { \ |
| 174 |
|
s->head[s->hash_size-1] = NIL; \ |
| 175 |
|
zmemzero((Bytef *)s->head, \ |
| 176 |
|
(unsigned)(s->hash_size-1)*sizeof(*s->head)); \ |
| 177 |
|
} while (0) |
| 178 |
|
|
| 179 |
|
/* =========================================================================== |
| 180 |
|
* Slide the hash table when sliding the window down (could be avoided with 32 |
| 181 |
|
* bit values at the expense of memory usage). We slide even when level == 0 to |
| 182 |
|
* keep the hash table consistent if we switch back to level > 0 later. |
| 183 |
|
*/ |
| 184 |
|
#if defined(__has_feature) |
| 185 |
|
# if __has_feature(memory_sanitizer) |
| 186 |
|
__attribute__((no_sanitize("memory"))) |
| 187 |
|
# endif |
| 188 |
|
#endif |
| 189 |
0 |
local void slide_hash(deflate_state *s) { |
| 190 |
|
unsigned n, m; |
| 191 |
|
Posf *p; |
| 192 |
0 |
uInt wsize = s->w_size; |
| 193 |
|
|
| 194 |
0 |
n = s->hash_size; |
| 195 |
0 |
p = &s->head[n]; |
| 196 |
0 |
do { |
| 197 |
0 |
m = *--p; |
| 198 |
0 |
*p = (Pos)(m >= wsize ? m - wsize : NIL); |
| 199 |
0 |
} while (--n); |
| 200 |
0 |
n = wsize; |
| 201 |
|
#ifndef FASTEST |
| 202 |
0 |
p = &s->prev[n]; |
| 203 |
0 |
do { |
| 204 |
0 |
m = *--p; |
| 205 |
0 |
*p = (Pos)(m >= wsize ? m - wsize : NIL); |
| 206 |
|
/* If n is not on any hash chain, prev[n] is garbage but |
| 207 |
|
* its value will never be used. |
| 208 |
|
*/ |
| 209 |
0 |
} while (--n); |
| 210 |
|
#endif |
| 211 |
0 |
} |
| 212 |
|
|
| 213 |
|
/* =========================================================================== |
| 214 |
|
* Read a new buffer from the current input stream, update the adler32 |
| 215 |
|
* and total number of bytes read. All deflate() input goes through |
| 216 |
|
* this function so some applications may wish to modify it to avoid |
| 217 |
|
* allocating a large strm->next_in buffer and copying from it. |
| 218 |
|
* (See also flush_pending()). |
| 219 |
|
*/ |
| 220 |
36907 |
local unsigned read_buf(z_streamp strm, Bytef *buf, unsigned size) { |
| 221 |
36907 |
unsigned len = strm->avail_in; |
| 222 |
|
|
| 223 |
36907 |
if (len > size) len = size; |
| 224 |
36907 |
if (len == 0) return 0; |
| 225 |
|
|
| 226 |
36907 |
strm->avail_in -= len; |
| 227 |
|
|
| 228 |
36907 |
zmemcpy(buf, strm->next_in, len); |
| 229 |
36907 |
if (strm->state->wrap == 1) { |
| 230 |
0 |
strm->adler = adler32(strm->adler, buf, len); |
| 231 |
0 |
} |
| 232 |
|
#ifdef GZIP |
| 233 |
36907 |
else if (strm->state->wrap == 2) { |
| 234 |
36907 |
strm->adler = crc32(strm->adler, buf, len); |
| 235 |
36907 |
} |
| 236 |
|
#endif |
| 237 |
36907 |
strm->next_in += len; |
| 238 |
36907 |
strm->total_in += len; |
| 239 |
|
|
| 240 |
36907 |
return len; |
| 241 |
36907 |
} |
| 242 |
|
|
| 243 |
|
/* =========================================================================== |
| 244 |
|
* Fill the window when the lookahead becomes insufficient. |
| 245 |
|
* Updates strstart and lookahead. |
| 246 |
|
* |
| 247 |
|
* IN assertion: lookahead < MIN_LOOKAHEAD |
| 248 |
|
* OUT assertions: strstart <= window_size-MIN_LOOKAHEAD |
| 249 |
|
* At least one byte has been read, or avail_in == 0; reads are |
| 250 |
|
* performed for at least two bytes (required for the zip translate_eol |
| 251 |
|
* option -- not supported here). |
| 252 |
|
*/ |
| 253 |
170290 |
local void fill_window(deflate_state *s) { |
| 254 |
|
unsigned n; |
| 255 |
|
unsigned more; /* Amount of free space at the end of the window. */ |
| 256 |
170290 |
uInt wsize = s->w_size; |
| 257 |
|
|
| 258 |
|
Assert(s->lookahead < MIN_LOOKAHEAD, "already enough lookahead"); |
| 259 |
|
|
| 260 |
170290 |
do { |
| 261 |
170290 |
more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart); |
| 262 |
|
|
| 263 |
|
/* Deal with !@#$% 64K limit: */ |
| 264 |
|
if (sizeof(int) <= 2) { |
| 265 |
|
if (more == 0 && s->strstart == 0 && s->lookahead == 0) { |
| 266 |
|
more = wsize; |
| 267 |
|
|
| 268 |
|
} else if (more == (unsigned)(-1)) { |
| 269 |
|
/* Very unlikely, but possible on 16 bit machine if |
| 270 |
|
* strstart == 0 && lookahead == 1 (input done a byte at time) |
| 271 |
|
*/ |
| 272 |
|
more--; |
| 273 |
|
} |
| 274 |
|
} |
| 275 |
|
|
| 276 |
|
/* If the window is almost full and there is insufficient lookahead, |
| 277 |
|
* move the upper half to the lower one to make room in the upper half. |
| 278 |
|
*/ |
| 279 |
170290 |
if (s->strstart >= wsize+MAX_DIST(s)) { |
| 280 |
|
|
| 281 |
0 |
zmemcpy(s->window, s->window+wsize, (unsigned)wsize - more); |
| 282 |
0 |
s->match_start -= wsize; |
| 283 |
0 |
s->strstart -= wsize; /* we now have strstart >= MAX_DIST */ |
| 284 |
0 |
s->block_start -= (long) wsize; |
| 285 |
0 |
if (s->insert > s->strstart) |
| 286 |
0 |
s->insert = s->strstart; |
| 287 |
0 |
slide_hash(s); |
| 288 |
0 |
more += wsize; |
| 289 |
0 |
} |
| 290 |
170290 |
if (s->strm->avail_in == 0) break; |
| 291 |
|
|
| 292 |
|
/* If there was no sliding: |
| 293 |
|
* strstart <= WSIZE+MAX_DIST-1 && lookahead <= MIN_LOOKAHEAD - 1 && |
| 294 |
|
* more == window_size - lookahead - strstart |
| 295 |
|
* => more >= window_size - (MIN_LOOKAHEAD-1 + WSIZE + MAX_DIST-1) |
| 296 |
|
* => more >= window_size - 2*WSIZE + 2 |
| 297 |
|
* In the BIG_MEM or MMAP case (not yet supported), |
| 298 |
|
* window_size == input_size + MIN_LOOKAHEAD && |
| 299 |
|
* strstart + s->lookahead <= input_size => more >= MIN_LOOKAHEAD. |
| 300 |
|
* Otherwise, window_size == 2*WSIZE so more >= 2. |
| 301 |
|
* If there was sliding, more >= WSIZE. So in all cases, more >= 2. |
| 302 |
|
*/ |
| 303 |
|
Assert(more >= 2, "more < 2"); |
| 304 |
|
|
| 305 |
25027 |
n = read_buf(s->strm, s->window + s->strstart + s->lookahead, more); |
| 306 |
25027 |
s->lookahead += n; |
| 307 |
|
|
| 308 |
|
/* Initialize the hash value now that we have some input: */ |
| 309 |
25027 |
if (s->lookahead + s->insert >= MIN_MATCH) { |
| 310 |
24142 |
uInt str = s->strstart - s->insert; |
| 311 |
24142 |
s->ins_h = s->window[str]; |
| 312 |
24142 |
UPDATE_HASH(s, s->ins_h, s->window[str + 1]); |
| 313 |
|
#if MIN_MATCH != 3 |
| 314 |
|
Call UPDATE_HASH() MIN_MATCH-3 more times |
| 315 |
|
#endif |
| 316 |
26833 |
while (s->insert) { |
| 317 |
2760 |
UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]); |
| 318 |
|
#ifndef FASTEST |
| 319 |
2760 |
s->prev[str & s->w_mask] = s->head[s->ins_h]; |
| 320 |
|
#endif |
| 321 |
2760 |
s->head[s->ins_h] = (Pos)str; |
| 322 |
2760 |
str++; |
| 323 |
2760 |
s->insert--; |
| 324 |
2760 |
if (s->lookahead + s->insert < MIN_MATCH) |
| 325 |
69 |
break; |
| 326 |
|
} |
| 327 |
24142 |
} |
| 328 |
|
/* If the whole input has less than MIN_MATCH bytes, ins_h is garbage, |
| 329 |
|
* but this is not important since only literal bytes will be emitted. |
| 330 |
|
*/ |
| 331 |
|
|
| 332 |
25027 |
} while (s->lookahead < MIN_LOOKAHEAD && s->strm->avail_in != 0); |
| 333 |
|
|
| 334 |
|
/* If the WIN_INIT bytes after the end of the current data have never been |
| 335 |
|
* written, then zero those bytes in order to avoid memory check reports of |
| 336 |
|
* the use of uninitialized (or uninitialised as Julian writes) bytes by |
| 337 |
|
* the longest match routines. Update the high water mark for the next |
| 338 |
|
* time through here. WIN_INIT is set to MAX_MATCH since the longest match |
| 339 |
|
* routines allow scanning to strstart + MAX_MATCH, ignoring lookahead. |
| 340 |
|
*/ |
| 341 |
170290 |
if (s->high_water < s->window_size) { |
| 342 |
170290 |
ulg curr = s->strstart + (ulg)(s->lookahead); |
| 343 |
|
ulg init; |
| 344 |
|
|
| 345 |
170290 |
if (s->high_water < curr) { |
| 346 |
|
/* Previous high water mark below current data -- zero WIN_INIT |
| 347 |
|
* bytes or up to end of window, whichever is less. |
| 348 |
|
*/ |
| 349 |
1079 |
init = s->window_size - curr; |
| 350 |
1079 |
if (init > WIN_INIT) |
| 351 |
1079 |
init = WIN_INIT; |
| 352 |
1079 |
zmemzero(s->window + curr, (unsigned)init); |
| 353 |
1079 |
s->high_water = curr + init; |
| 354 |
1079 |
} |
| 355 |
169211 |
else if (s->high_water < (ulg)curr + WIN_INIT) { |
| 356 |
|
/* High water mark at or above current data, but below current data |
| 357 |
|
* plus WIN_INIT -- zero out to current data plus WIN_INIT, or up |
| 358 |
|
* to end of window, whichever is less. |
| 359 |
|
*/ |
| 360 |
15980 |
init = (ulg)curr + WIN_INIT - s->high_water; |
| 361 |
15980 |
if (init > s->window_size - s->high_water) |
| 362 |
0 |
init = s->window_size - s->high_water; |
| 363 |
15980 |
zmemzero(s->window + s->high_water, (unsigned)init); |
| 364 |
15980 |
s->high_water += init; |
| 365 |
15980 |
} |
| 366 |
170290 |
} |
| 367 |
|
|
| 368 |
|
Assert((ulg)s->strstart <= s->window_size - MIN_LOOKAHEAD, |
| 369 |
|
"not enough room for search"); |
| 370 |
170290 |
} |
| 371 |
|
|
| 372 |
|
#ifdef NOVGZ |
| 373 |
|
|
| 374 |
|
/* ========================================================================= */ |
| 375 |
|
int ZEXPORT deflateInit_(z_streamp strm, int level, const char *version, |
| 376 |
|
int stream_size) { |
| 377 |
|
return deflateInit2_(strm, level, Z_DEFLATED, MAX_WBITS, DEF_MEM_LEVEL, |
| 378 |
|
Z_DEFAULT_STRATEGY, version, stream_size); |
| 379 |
|
/* To do: ignore strm->next_in if we use it as window */ |
| 380 |
|
} |
| 381 |
|
|
| 382 |
|
#endif /* NOVGZ */ |
| 383 |
|
|
| 384 |
|
/* ========================================================================= */ |
| 385 |
10320 |
int ZEXPORT deflateInit2_(z_streamp strm, int level, int method, |
| 386 |
|
int windowBits, int memLevel, int strategy, |
| 387 |
|
const char *version, int stream_size) { |
| 388 |
|
deflate_state *s; |
| 389 |
10320 |
int wrap = 1; |
| 390 |
|
static const char my_version[] = ZLIB_VERSION; |
| 391 |
|
|
| 392 |
10320 |
if (version == Z_NULL || version[0] != my_version[0] || |
| 393 |
10320 |
stream_size != sizeof(z_stream)) { |
| 394 |
0 |
return Z_VERSION_ERROR; |
| 395 |
|
} |
| 396 |
10320 |
if (strm == Z_NULL) return Z_STREAM_ERROR; |
| 397 |
|
|
| 398 |
10320 |
strm->msg = Z_NULL; |
| 399 |
10320 |
if (strm->zalloc == (alloc_func)0) { |
| 400 |
|
#ifdef Z_SOLO |
| 401 |
|
return Z_STREAM_ERROR; |
| 402 |
|
#else |
| 403 |
10320 |
strm->zalloc = zcalloc; |
| 404 |
10320 |
strm->opaque = (voidpf)0; |
| 405 |
|
#endif |
| 406 |
10320 |
} |
| 407 |
10320 |
if (strm->zfree == (free_func)0) |
| 408 |
|
#ifdef Z_SOLO |
| 409 |
|
return Z_STREAM_ERROR; |
| 410 |
|
#else |
| 411 |
10320 |
strm->zfree = zcfree; |
| 412 |
|
#endif |
| 413 |
|
|
| 414 |
|
#ifdef FASTEST |
| 415 |
|
if (level != 0) level = 1; |
| 416 |
|
#else |
| 417 |
10320 |
if (level == Z_DEFAULT_COMPRESSION) level = 6; |
| 418 |
|
#endif |
| 419 |
|
|
| 420 |
10320 |
if (windowBits < 0) { /* suppress zlib wrapper */ |
| 421 |
0 |
wrap = 0; |
| 422 |
0 |
if (windowBits < -15) |
| 423 |
0 |
return Z_STREAM_ERROR; |
| 424 |
0 |
windowBits = -windowBits; |
| 425 |
0 |
} |
| 426 |
|
#ifdef GZIP |
| 427 |
10320 |
else if (windowBits > 15) { |
| 428 |
10320 |
wrap = 2; /* write gzip wrapper instead */ |
| 429 |
10320 |
windowBits -= 16; |
| 430 |
10320 |
} |
| 431 |
|
#endif |
| 432 |
10320 |
if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method != Z_DEFLATED || |
| 433 |
10320 |
windowBits < 8 || windowBits > 15 || level < 0 || level > 9 || |
| 434 |
10320 |
strategy < 0 || strategy > Z_FIXED || (windowBits == 8 && wrap != 1)) { |
| 435 |
0 |
return Z_STREAM_ERROR; |
| 436 |
|
} |
| 437 |
10320 |
if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */ |
| 438 |
10320 |
s = (deflate_state *) ZALLOC(strm, 1, sizeof(deflate_state)); |
| 439 |
10320 |
if (s == Z_NULL) return Z_MEM_ERROR; |
| 440 |
10320 |
strm->state = (struct internal_state FAR *)s; |
| 441 |
10320 |
s->strm = strm; |
| 442 |
10320 |
s->status = INIT_STATE; /* to pass state test in deflateReset() */ |
| 443 |
|
|
| 444 |
10320 |
s->wrap = wrap; |
| 445 |
10320 |
s->gzhead = Z_NULL; |
| 446 |
10320 |
s->w_bits = (uInt)windowBits; |
| 447 |
10320 |
s->w_size = 1 << s->w_bits; |
| 448 |
10320 |
s->w_mask = s->w_size - 1; |
| 449 |
|
|
| 450 |
10320 |
s->hash_bits = (uInt)memLevel + 7; |
| 451 |
10320 |
s->hash_size = 1 << s->hash_bits; |
| 452 |
10320 |
s->hash_mask = s->hash_size - 1; |
| 453 |
10320 |
s->hash_shift = ((s->hash_bits+MIN_MATCH-1)/MIN_MATCH); |
| 454 |
|
|
| 455 |
10320 |
s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte)); |
| 456 |
10320 |
s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos)); |
| 457 |
10320 |
s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos)); |
| 458 |
|
|
| 459 |
10320 |
s->high_water = 0; /* nothing written to s->window yet */ |
| 460 |
|
|
| 461 |
10320 |
s->lit_bufsize = 1 << (memLevel + 6); /* 16K elements by default */ |
| 462 |
|
|
| 463 |
|
/* We overlay pending_buf and sym_buf. This works since the average size |
| 464 |
|
* for length/distance pairs over any compressed block is assured to be 31 |
| 465 |
|
* bits or less. |
| 466 |
|
* |
| 467 |
|
* Analysis: The longest fixed codes are a length code of 8 bits plus 5 |
| 468 |
|
* extra bits, for lengths 131 to 257. The longest fixed distance codes are |
| 469 |
|
* 5 bits plus 13 extra bits, for distances 16385 to 32768. The longest |
| 470 |
|
* possible fixed-codes length/distance pair is then 31 bits total. |
| 471 |
|
* |
| 472 |
|
* sym_buf starts one-fourth of the way into pending_buf. So there are |
| 473 |
|
* three bytes in sym_buf for every four bytes in pending_buf. Each symbol |
| 474 |
|
* in sym_buf is three bytes -- two for the distance and one for the |
| 475 |
|
* literal/length. As each symbol is consumed, the pointer to the next |
| 476 |
|
* sym_buf value to read moves forward three bytes. From that symbol, up to |
| 477 |
|
* 31 bits are written to pending_buf. The closest the written pending_buf |
| 478 |
|
* bits gets to the next sym_buf symbol to read is just before the last |
| 479 |
|
* code is written. At that time, 31*(n-2) bits have been written, just |
| 480 |
|
* after 24*(n-2) bits have been consumed from sym_buf. sym_buf starts at |
| 481 |
|
* 8*n bits into pending_buf. (Note that the symbol buffer fills when n-1 |
| 482 |
|
* symbols are written.) The closest the writing gets to what is unread is |
| 483 |
|
* then n+14 bits. Here n is lit_bufsize, which is 16384 by default, and |
| 484 |
|
* can range from 128 to 32768. |
| 485 |
|
* |
| 486 |
|
* Therefore, at a minimum, there are 142 bits of space between what is |
| 487 |
|
* written and what is read in the overlain buffers, so the symbols cannot |
| 488 |
|
* be overwritten by the compressed data. That space is actually 139 bits, |
| 489 |
|
* due to the three-bit fixed-code block header. |
| 490 |
|
* |
| 491 |
|
* That covers the case where either Z_FIXED is specified, forcing fixed |
| 492 |
|
* codes, or when the use of fixed codes is chosen, because that choice |
| 493 |
|
* results in a smaller compressed block than dynamic codes. That latter |
| 494 |
|
* condition then assures that the above analysis also covers all dynamic |
| 495 |
|
* blocks. A dynamic-code block will only be chosen to be emitted if it has |
| 496 |
|
* fewer bits than a fixed-code block would for the same set of symbols. |
| 497 |
|
* Therefore its average symbol length is assured to be less than 31. So |
| 498 |
|
* the compressed data for a dynamic block also cannot overwrite the |
| 499 |
|
* symbols from which it is being constructed. |
| 500 |
|
*/ |
| 501 |
|
|
| 502 |
10320 |
s->pending_buf = (uchf *) ZALLOC(strm, s->lit_bufsize, LIT_BUFS); |
| 503 |
10320 |
s->pending_buf_size = (ulg)s->lit_bufsize * 4; // Pretty sure this should be LIT_BUFS /phk |
| 504 |
|
|
| 505 |
10320 |
if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL || |
| 506 |
10320 |
s->pending_buf == Z_NULL) { |
| 507 |
0 |
s->status = FINISH_STATE; |
| 508 |
0 |
strm->msg = ERR_MSG(Z_MEM_ERROR); |
| 509 |
0 |
deflateEnd (strm); |
| 510 |
0 |
return Z_MEM_ERROR; |
| 511 |
|
} |
| 512 |
|
#ifdef LIT_MEM |
| 513 |
|
s->d_buf = (ushf *)(s->pending_buf + (s->lit_bufsize << 1)); |
| 514 |
|
s->l_buf = s->pending_buf + (s->lit_bufsize << 2); |
| 515 |
|
s->sym_end = s->lit_bufsize - 1; |
| 516 |
|
#else |
| 517 |
10320 |
s->sym_buf = s->pending_buf + s->lit_bufsize; |
| 518 |
10320 |
s->sym_end = (s->lit_bufsize - 1) * 3; |
| 519 |
|
#endif |
| 520 |
|
/* We avoid equality with lit_bufsize*3 because of wraparound at 64K |
| 521 |
|
* on 16 bit machines and because stored blocks are restricted to |
| 522 |
|
* 64K-1 bytes. |
| 523 |
|
*/ |
| 524 |
|
|
| 525 |
10320 |
s->level = level; |
| 526 |
10320 |
s->strategy = strategy; |
| 527 |
10320 |
s->method = (Byte)method; |
| 528 |
|
|
| 529 |
10320 |
return deflateReset(strm); |
| 530 |
10320 |
} |
| 531 |
|
|
| 532 |
|
/* ========================================================================= |
| 533 |
|
* Check for a valid deflate stream state. Return 0 if ok, 1 if not. |
| 534 |
|
*/ |
| 535 |
77827 |
local int deflateStateCheck(z_streamp strm) { |
| 536 |
|
deflate_state *s; |
| 537 |
155654 |
if (strm == Z_NULL || |
| 538 |
77827 |
strm->zalloc == (alloc_func)0 || strm->zfree == (free_func)0) |
| 539 |
0 |
return 1; |
| 540 |
77827 |
s = strm->state; |
| 541 |
89827 |
if (s == Z_NULL || s->strm != strm || (s->status != INIT_STATE && |
| 542 |
|
#ifdef GZIP |
| 543 |
67507 |
s->status != GZIP_STATE && |
| 544 |
|
#endif |
| 545 |
|
#ifdef NOVGZ |
| 546 |
|
s->status != EXTRA_STATE && |
| 547 |
|
s->status != NAME_STATE && |
| 548 |
|
s->status != COMMENT_STATE && |
| 549 |
|
s->status != HCRC_STATE && |
| 550 |
|
#endif /* NOVGZ */ |
| 551 |
57187 |
s->status != BUSY_STATE && |
| 552 |
12000 |
s->status != FINISH_STATE)) |
| 553 |
0 |
return 1; |
| 554 |
77827 |
return 0; |
| 555 |
77827 |
} |
| 556 |
|
|
| 557 |
|
#ifdef NOVGZ |
| 558 |
|
|
| 559 |
|
/* ========================================================================= */ |
| 560 |
|
int ZEXPORT deflateSetDictionary(z_streamp strm, const Bytef *dictionary, |
| 561 |
|
uInt dictLength) { |
| 562 |
|
deflate_state *s; |
| 563 |
|
uInt str, n; |
| 564 |
|
int wrap; |
| 565 |
|
unsigned avail; |
| 566 |
|
z_const unsigned char *next; |
| 567 |
|
|
| 568 |
|
if (deflateStateCheck(strm) || dictionary == Z_NULL) |
| 569 |
|
return Z_STREAM_ERROR; |
| 570 |
|
s = strm->state; |
| 571 |
|
wrap = s->wrap; |
| 572 |
|
if (wrap == 2 || (wrap == 1 && s->status != INIT_STATE) || s->lookahead) |
| 573 |
|
return Z_STREAM_ERROR; |
| 574 |
|
|
| 575 |
|
/* when using zlib wrappers, compute Adler-32 for provided dictionary */ |
| 576 |
|
if (wrap == 1) |
| 577 |
|
strm->adler = adler32(strm->adler, dictionary, dictLength); |
| 578 |
|
s->wrap = 0; /* avoid computing Adler-32 in read_buf */ |
| 579 |
|
|
| 580 |
|
/* if dictionary would fill window, just replace the history */ |
| 581 |
|
if (dictLength >= s->w_size) { |
| 582 |
|
if (wrap == 0) { /* already empty otherwise */ |
| 583 |
|
CLEAR_HASH(s); |
| 584 |
|
s->strstart = 0; |
| 585 |
|
s->block_start = 0L; |
| 586 |
|
s->insert = 0; |
| 587 |
|
} |
| 588 |
|
dictionary += dictLength - s->w_size; /* use the tail */ |
| 589 |
|
dictLength = s->w_size; |
| 590 |
|
} |
| 591 |
|
|
| 592 |
|
/* insert dictionary into window and hash */ |
| 593 |
|
avail = strm->avail_in; |
| 594 |
|
next = strm->next_in; |
| 595 |
|
strm->avail_in = dictLength; |
| 596 |
|
strm->next_in = (z_const Bytef *)dictionary; |
| 597 |
|
fill_window(s); |
| 598 |
|
while (s->lookahead >= MIN_MATCH) { |
| 599 |
|
str = s->strstart; |
| 600 |
|
n = s->lookahead - (MIN_MATCH-1); |
| 601 |
|
do { |
| 602 |
|
UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]); |
| 603 |
|
#ifndef FASTEST |
| 604 |
|
s->prev[str & s->w_mask] = s->head[s->ins_h]; |
| 605 |
|
#endif |
| 606 |
|
s->head[s->ins_h] = (Pos)str; |
| 607 |
|
str++; |
| 608 |
|
} while (--n); |
| 609 |
|
s->strstart = str; |
| 610 |
|
s->lookahead = MIN_MATCH-1; |
| 611 |
|
fill_window(s); |
| 612 |
|
} |
| 613 |
|
s->strstart += s->lookahead; |
| 614 |
|
s->block_start = (long)s->strstart; |
| 615 |
|
s->insert = s->lookahead; |
| 616 |
|
s->lookahead = 0; |
| 617 |
|
s->match_length = s->prev_length = MIN_MATCH-1; |
| 618 |
|
s->match_available = 0; |
| 619 |
|
strm->next_in = next; |
| 620 |
|
strm->avail_in = avail; |
| 621 |
|
s->wrap = wrap; |
| 622 |
|
return Z_OK; |
| 623 |
|
} |
| 624 |
|
|
| 625 |
|
/* ========================================================================= */ |
| 626 |
|
int ZEXPORT deflateGetDictionary(z_streamp strm, Bytef *dictionary, |
| 627 |
|
uInt *dictLength) { |
| 628 |
|
deflate_state *s; |
| 629 |
|
uInt len; |
| 630 |
|
|
| 631 |
|
if (deflateStateCheck(strm)) |
| 632 |
|
return Z_STREAM_ERROR; |
| 633 |
|
s = strm->state; |
| 634 |
|
len = s->strstart + s->lookahead; |
| 635 |
|
if (len > s->w_size) |
| 636 |
|
len = s->w_size; |
| 637 |
|
if (dictionary != Z_NULL && len) |
| 638 |
|
zmemcpy(dictionary, s->window + s->strstart + s->lookahead - len, len); |
| 639 |
|
if (dictLength != Z_NULL) |
| 640 |
|
*dictLength = len; |
| 641 |
|
return Z_OK; |
| 642 |
|
} |
| 643 |
|
|
| 644 |
|
#endif /* NOVGZ */ |
| 645 |
|
|
| 646 |
|
/* ========================================================================= */ |
| 647 |
10320 |
int ZEXPORT deflateResetKeep(z_streamp strm) { |
| 648 |
|
deflate_state *s; |
| 649 |
|
|
| 650 |
10320 |
if (deflateStateCheck(strm)) { |
| 651 |
0 |
return Z_STREAM_ERROR; |
| 652 |
|
} |
| 653 |
|
|
| 654 |
10320 |
strm->total_in = strm->total_out = 0; |
| 655 |
10320 |
strm->start_bit = strm->stop_bit = strm->last_bit = 0; |
| 656 |
10320 |
strm->msg = Z_NULL; /* use zfree if we ever allocate msg dynamically */ |
| 657 |
10320 |
strm->data_type = Z_UNKNOWN; |
| 658 |
|
|
| 659 |
10320 |
s = (deflate_state *)strm->state; |
| 660 |
10320 |
s->pending = 0; |
| 661 |
10320 |
s->pending_out = s->pending_buf; |
| 662 |
|
|
| 663 |
10320 |
if (s->wrap < 0) { |
| 664 |
0 |
s->wrap = -s->wrap; /* was made negative by deflate(..., Z_FINISH); */ |
| 665 |
0 |
} |
| 666 |
10320 |
s->status = |
| 667 |
|
#ifdef GZIP |
| 668 |
10320 |
s->wrap == 2 ? GZIP_STATE : |
| 669 |
|
#endif |
| 670 |
|
INIT_STATE; |
| 671 |
10320 |
strm->adler = |
| 672 |
|
#ifdef GZIP |
| 673 |
10320 |
s->wrap == 2 ? crc32(0L, Z_NULL, 0) : |
| 674 |
|
#endif |
| 675 |
0 |
adler32(0L, Z_NULL, 0); |
| 676 |
10320 |
s->last_flush = -2; |
| 677 |
|
|
| 678 |
10320 |
_tr_init(s); |
| 679 |
|
|
| 680 |
10320 |
return Z_OK; |
| 681 |
10320 |
} |
| 682 |
|
|
| 683 |
|
/* =========================================================================== |
| 684 |
|
* Initialize the "longest match" routines for a new zlib stream |
| 685 |
|
*/ |
| 686 |
10320 |
local void lm_init(deflate_state *s) { |
| 687 |
10320 |
s->window_size = (ulg)2L*s->w_size; |
| 688 |
|
|
| 689 |
10320 |
CLEAR_HASH(s); |
| 690 |
|
|
| 691 |
|
/* Set the default configuration parameters: |
| 692 |
|
*/ |
| 693 |
10320 |
s->max_lazy_match = configuration_table[s->level].max_lazy; |
| 694 |
10320 |
s->good_match = configuration_table[s->level].good_length; |
| 695 |
10320 |
s->nice_match = configuration_table[s->level].nice_length; |
| 696 |
10320 |
s->max_chain_length = configuration_table[s->level].max_chain; |
| 697 |
|
|
| 698 |
10320 |
s->strstart = 0; |
| 699 |
10320 |
s->block_start = 0L; |
| 700 |
10320 |
s->lookahead = 0; |
| 701 |
10320 |
s->insert = 0; |
| 702 |
10320 |
s->match_length = s->prev_length = MIN_MATCH-1; |
| 703 |
10320 |
s->match_available = 0; |
| 704 |
10320 |
s->ins_h = 0; |
| 705 |
10320 |
} |
| 706 |
|
|
| 707 |
|
/* ========================================================================= */ |
| 708 |
10320 |
int ZEXPORT deflateReset(z_streamp strm) { |
| 709 |
|
int ret; |
| 710 |
|
|
| 711 |
10320 |
ret = deflateResetKeep(strm); |
| 712 |
10320 |
if (ret == Z_OK) |
| 713 |
10320 |
lm_init(strm->state); |
| 714 |
10320 |
return ret; |
| 715 |
|
} |
| 716 |
|
|
| 717 |
|
#ifdef NOVGZ |
| 718 |
|
|
| 719 |
|
/* ========================================================================= */ |
| 720 |
|
int ZEXPORT deflateSetHeader(z_streamp strm, gz_headerp head) { |
| 721 |
|
if (deflateStateCheck(strm) || strm->state->wrap != 2) |
| 722 |
|
return Z_STREAM_ERROR; |
| 723 |
|
strm->state->gzhead = head; |
| 724 |
|
return Z_OK; |
| 725 |
|
} |
| 726 |
|
|
| 727 |
|
/* ========================================================================= */ |
| 728 |
|
int ZEXPORT deflatePending(z_streamp strm, unsigned *pending, int *bits) { |
| 729 |
|
if (deflateStateCheck(strm)) return Z_STREAM_ERROR; |
| 730 |
|
if (pending != Z_NULL) |
| 731 |
|
*pending = strm->state->pending; |
| 732 |
|
if (bits != Z_NULL) |
| 733 |
|
*bits = strm->state->bi_valid; |
| 734 |
|
return Z_OK; |
| 735 |
|
} |
| 736 |
|
|
| 737 |
|
/* ========================================================================= */ |
| 738 |
|
int ZEXPORT deflateUsed(z_streamp strm, int *bits) { |
| 739 |
|
if (deflateStateCheck(strm)) return Z_STREAM_ERROR; |
| 740 |
|
if (bits != Z_NULL) |
| 741 |
|
*bits = strm->state->bi_used; |
| 742 |
|
return Z_OK; |
| 743 |
|
} |
| 744 |
|
|
| 745 |
|
/* ========================================================================= */ |
| 746 |
|
int ZEXPORT deflatePrime(z_streamp strm, int bits, int value) { |
| 747 |
|
deflate_state *s; |
| 748 |
|
int put; |
| 749 |
|
|
| 750 |
|
if (deflateStateCheck(strm)) return Z_STREAM_ERROR; |
| 751 |
|
s = strm->state; |
| 752 |
|
#ifdef LIT_MEM |
| 753 |
|
if (bits < 0 || bits > 16 || |
| 754 |
|
(uchf *)s->d_buf < s->pending_out + ((Buf_size + 7) >> 3)) |
| 755 |
|
return Z_BUF_ERROR; |
| 756 |
|
#else |
| 757 |
|
if (bits < 0 || bits > 16 || |
| 758 |
|
s->sym_buf < s->pending_out + ((Buf_size + 7) >> 3)) |
| 759 |
|
return Z_BUF_ERROR; |
| 760 |
|
#endif |
| 761 |
|
do { |
| 762 |
|
put = Buf_size - s->bi_valid; |
| 763 |
|
if (put > bits) |
| 764 |
|
put = bits; |
| 765 |
|
s->bi_buf |= (ush)((value & ((1 << put) - 1)) << s->bi_valid); |
| 766 |
|
s->bi_valid += put; |
| 767 |
|
_tr_flush_bits(s); |
| 768 |
|
value >>= put; |
| 769 |
|
bits -= put; |
| 770 |
|
} while (bits); |
| 771 |
|
return Z_OK; |
| 772 |
|
} |
| 773 |
|
|
| 774 |
|
/* ========================================================================= */ |
| 775 |
|
int ZEXPORT deflateParams(z_streamp strm, int level, int strategy) { |
| 776 |
|
deflate_state *s; |
| 777 |
|
compress_func func; |
| 778 |
|
|
| 779 |
|
if (deflateStateCheck(strm)) return Z_STREAM_ERROR; |
| 780 |
|
s = strm->state; |
| 781 |
|
|
| 782 |
|
#ifdef FASTEST |
| 783 |
|
if (level != 0) level = 1; |
| 784 |
|
#else |
| 785 |
|
if (level == Z_DEFAULT_COMPRESSION) level = 6; |
| 786 |
|
#endif |
| 787 |
|
if (level < 0 || level > 9 || strategy < 0 || strategy > Z_FIXED) { |
| 788 |
|
return Z_STREAM_ERROR; |
| 789 |
|
} |
| 790 |
|
func = configuration_table[s->level].func; |
| 791 |
|
|
| 792 |
|
if ((strategy != s->strategy || func != configuration_table[level].func) && |
| 793 |
|
s->last_flush != -2) { |
| 794 |
|
/* Flush the last buffer: */ |
| 795 |
|
int err = deflate(strm, Z_BLOCK); |
| 796 |
|
if (err == Z_STREAM_ERROR) |
| 797 |
|
return err; |
| 798 |
|
if (strm->avail_in || (s->strstart - s->block_start) + s->lookahead) |
| 799 |
|
return Z_BUF_ERROR; |
| 800 |
|
} |
| 801 |
|
if (s->level != level) { |
| 802 |
|
if (s->level == 0 && s->matches != 0) { |
| 803 |
|
if (s->matches == 1) |
| 804 |
|
slide_hash(s); |
| 805 |
|
else |
| 806 |
|
CLEAR_HASH(s); |
| 807 |
|
s->matches = 0; |
| 808 |
|
} |
| 809 |
|
s->level = level; |
| 810 |
|
s->max_lazy_match = configuration_table[level].max_lazy; |
| 811 |
|
s->good_match = configuration_table[level].good_length; |
| 812 |
|
s->nice_match = configuration_table[level].nice_length; |
| 813 |
|
s->max_chain_length = configuration_table[level].max_chain; |
| 814 |
|
} |
| 815 |
|
s->strategy = strategy; |
| 816 |
|
return Z_OK; |
| 817 |
|
} |
| 818 |
|
|
| 819 |
|
/* ========================================================================= */ |
| 820 |
|
int ZEXPORT deflateTune(z_streamp strm, int good_length, int max_lazy, |
| 821 |
|
int nice_length, int max_chain) { |
| 822 |
|
deflate_state *s; |
| 823 |
|
|
| 824 |
|
if (deflateStateCheck(strm)) return Z_STREAM_ERROR; |
| 825 |
|
s = strm->state; |
| 826 |
|
s->good_match = (uInt)good_length; |
| 827 |
|
s->max_lazy_match = (uInt)max_lazy; |
| 828 |
|
s->nice_match = nice_length; |
| 829 |
|
s->max_chain_length = (uInt)max_chain; |
| 830 |
|
return Z_OK; |
| 831 |
|
} |
| 832 |
|
|
| 833 |
|
/* ========================================================================= |
| 834 |
|
* For the default windowBits of 15 and memLevel of 8, this function returns a |
| 835 |
|
* close to exact, as well as small, upper bound on the compressed size. This |
| 836 |
|
* is an expansion of ~0.03%, plus a small constant. |
| 837 |
|
* |
| 838 |
|
* For any setting other than those defaults for windowBits and memLevel, one |
| 839 |
|
* of two worst case bounds is returned. This is at most an expansion of ~4% or |
| 840 |
|
* ~13%, plus a small constant. |
| 841 |
|
* |
| 842 |
|
* Both the 0.03% and 4% derive from the overhead of stored blocks. The first |
| 843 |
|
* one is for stored blocks of 16383 bytes (memLevel == 8), whereas the second |
| 844 |
|
* is for stored blocks of 127 bytes (the worst case memLevel == 1). The |
| 845 |
|
* expansion results from five bytes of header for each stored block. |
| 846 |
|
* |
| 847 |
|
* The larger expansion of 13% results from a window size less than or equal to |
| 848 |
|
* the symbols buffer size (windowBits <= memLevel + 7). In that case some of |
| 849 |
|
* the data being compressed may have slid out of the sliding window, impeding |
| 850 |
|
* a stored block from being emitted. Then the only choice is a fixed or |
| 851 |
|
* dynamic block, where a fixed block limits the maximum expansion to 9 bits |
| 852 |
|
* per 8-bit byte, plus 10 bits for every block. The smallest block size for |
| 853 |
|
* which this can occur is 255 (memLevel == 2). |
| 854 |
|
* |
| 855 |
|
* Shifts are used to approximate divisions, for speed. |
| 856 |
|
*/ |
| 857 |
|
uLong ZEXPORT deflateBound(z_streamp strm, uLong sourceLen) { |
| 858 |
|
deflate_state *s; |
| 859 |
|
uLong fixedlen, storelen, wraplen; |
| 860 |
|
|
| 861 |
|
/* upper bound for fixed blocks with 9-bit literals and length 255 |
| 862 |
|
(memLevel == 2, which is the lowest that may not use stored blocks) -- |
| 863 |
|
~13% overhead plus a small constant */ |
| 864 |
|
fixedlen = sourceLen + (sourceLen >> 3) + (sourceLen >> 8) + |
| 865 |
|
(sourceLen >> 9) + 4; |
| 866 |
|
|
| 867 |
|
/* upper bound for stored blocks with length 127 (memLevel == 1) -- |
| 868 |
|
~4% overhead plus a small constant */ |
| 869 |
|
storelen = sourceLen + (sourceLen >> 5) + (sourceLen >> 7) + |
| 870 |
|
(sourceLen >> 11) + 7; |
| 871 |
|
|
| 872 |
|
/* if can't get parameters, return larger bound plus a wrapper */ |
| 873 |
|
if (deflateStateCheck(strm)) |
| 874 |
|
return (fixedlen > storelen ? fixedlen : storelen) + 18; |
| 875 |
|
|
| 876 |
|
/* compute wrapper length */ |
| 877 |
|
s = strm->state; |
| 878 |
|
switch (s->wrap < 0 ? -s->wrap : s->wrap) { |
| 879 |
|
case 0: /* raw deflate */ |
| 880 |
|
wraplen = 0; |
| 881 |
|
break; |
| 882 |
|
case 1: /* zlib wrapper */ |
| 883 |
|
wraplen = 6 + (s->strstart ? 4 : 0); |
| 884 |
|
break; |
| 885 |
|
#ifdef GZIP |
| 886 |
|
case 2: /* gzip wrapper */ |
| 887 |
|
wraplen = 18; |
| 888 |
|
if (s->gzhead != Z_NULL) { /* user-supplied gzip header */ |
| 889 |
|
Bytef *str; |
| 890 |
|
if (s->gzhead->extra != Z_NULL) |
| 891 |
|
wraplen += 2 + s->gzhead->extra_len; |
| 892 |
|
str = s->gzhead->name; |
| 893 |
|
if (str != Z_NULL) |
| 894 |
|
do { |
| 895 |
|
wraplen++; |
| 896 |
|
} while (*str++); |
| 897 |
|
str = s->gzhead->comment; |
| 898 |
|
if (str != Z_NULL) |
| 899 |
|
do { |
| 900 |
|
wraplen++; |
| 901 |
|
} while (*str++); |
| 902 |
|
if (s->gzhead->hcrc) |
| 903 |
|
wraplen += 2; |
| 904 |
|
} |
| 905 |
|
break; |
| 906 |
|
#endif |
| 907 |
|
default: /* for compiler happiness */ |
| 908 |
|
wraplen = 18; |
| 909 |
|
} |
| 910 |
|
|
| 911 |
|
/* if not default parameters, return one of the conservative bounds */ |
| 912 |
|
if (s->w_bits != 15 || s->hash_bits != 8 + 7) |
| 913 |
|
return (s->w_bits <= s->hash_bits && s->level ? fixedlen : storelen) + |
| 914 |
|
wraplen; |
| 915 |
|
|
| 916 |
|
/* default settings: return tight bound for that case -- ~0.03% overhead |
| 917 |
|
plus a small constant */ |
| 918 |
|
return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) + |
| 919 |
|
(sourceLen >> 25) + 13 - 6 + wraplen; |
| 920 |
|
} |
| 921 |
|
|
| 922 |
|
#endif /* NOVGZ */ |
| 923 |
|
|
| 924 |
|
/* ========================================================================= |
| 925 |
|
* Put a short in the pending buffer. The 16-bit value is put in MSB order. |
| 926 |
|
* IN assertion: the stream state is correct and there is enough room in |
| 927 |
|
* pending_buf. |
| 928 |
|
*/ |
| 929 |
0 |
local void putShortMSB(deflate_state *s, uInt b) { |
| 930 |
0 |
put_byte(s, (Byte)(b >> 8)); |
| 931 |
0 |
put_byte(s, (Byte)(b & 0xff)); |
| 932 |
0 |
} |
| 933 |
|
|
| 934 |
|
/* ========================================================================= |
| 935 |
|
* Flush as much pending output as possible. All deflate() output, except for |
| 936 |
|
* some deflate_stored() output, goes through this function so some |
| 937 |
|
* applications may wish to modify it to avoid allocating a large |
| 938 |
|
* strm->next_out buffer and copying into it. (See also read_buf()). |
| 939 |
|
*/ |
| 940 |
58880 |
local void flush_pending(z_streamp strm) { |
| 941 |
|
unsigned len; |
| 942 |
58880 |
deflate_state *s = strm->state; |
| 943 |
|
|
| 944 |
58880 |
_tr_flush_bits(s); |
| 945 |
58880 |
len = s->pending; |
| 946 |
58880 |
if (len > strm->avail_out) len = strm->avail_out; |
| 947 |
58880 |
if (len == 0) return; |
| 948 |
|
|
| 949 |
56520 |
zmemcpy(strm->next_out, s->pending_out, len); |
| 950 |
56520 |
strm->next_out += len; |
| 951 |
56520 |
s->pending_out += len; |
| 952 |
56520 |
strm->total_out += len; |
| 953 |
56520 |
strm->avail_out -= len; |
| 954 |
56520 |
s->pending -= len; |
| 955 |
56520 |
if (s->pending == 0) { |
| 956 |
51920 |
s->pending_out = s->pending_buf; |
| 957 |
51920 |
} |
| 958 |
58880 |
} |
| 959 |
|
|
| 960 |
|
/* =========================================================================== |
| 961 |
|
* Update the header CRC with the bytes s->pending_buf[beg..s->pending - 1]. |
| 962 |
|
*/ |
| 963 |
|
#define HCRC_UPDATE(beg) \ |
| 964 |
|
do { \ |
| 965 |
|
if (s->gzhead->hcrc && s->pending > (beg)) \ |
| 966 |
|
strm->adler = crc32(strm->adler, s->pending_buf + (beg), \ |
| 967 |
|
s->pending - (beg)); \ |
| 968 |
|
} while (0) |
| 969 |
|
|
| 970 |
|
/* ========================================================================= */ |
| 971 |
60947 |
int ZEXPORT deflate(z_streamp strm, int flush) { |
| 972 |
|
int old_flush; /* value of flush param for previous deflate call */ |
| 973 |
|
deflate_state *s; |
| 974 |
|
|
| 975 |
60947 |
if (deflateStateCheck(strm) || flush > Z_BLOCK || flush < 0) { |
| 976 |
7520 |
return Z_STREAM_ERROR; |
| 977 |
|
} |
| 978 |
60947 |
s = strm->state; |
| 979 |
|
|
| 980 |
62827 |
if (strm->next_out == Z_NULL || |
| 981 |
57187 |
(strm->avail_in != 0 && strm->next_in == Z_NULL) || |
| 982 |
59067 |
(s->status == FINISH_STATE && flush != Z_FINISH)) { |
| 983 |
7520 |
ERR_RETURN(strm, Z_STREAM_ERROR); |
| 984 |
|
} |
| 985 |
57187 |
if (strm->avail_out == 0) ERR_RETURN(strm, Z_BUF_ERROR); |
| 986 |
|
|
| 987 |
57187 |
old_flush = s->last_flush; |
| 988 |
57187 |
s->last_flush = flush; |
| 989 |
|
|
| 990 |
|
/* Flush as much pending output as possible */ |
| 991 |
57187 |
if (s->pending != 0) { |
| 992 |
4520 |
flush_pending(strm); |
| 993 |
4520 |
if (strm->avail_out == 0) { |
| 994 |
|
/* Since avail_out is 0, deflate will be called again with |
| 995 |
|
* more output space, but possibly with both pending and |
| 996 |
|
* avail_in equal to zero. There won't be anything to do, |
| 997 |
|
* but this is not an error situation so make sure we |
| 998 |
|
* return OK instead of BUF_ERROR at next call of deflate: |
| 999 |
|
*/ |
| 1000 |
1480 |
s->last_flush = -1; |
| 1001 |
1480 |
return Z_OK; |
| 1002 |
|
} |
| 1003 |
|
|
| 1004 |
|
/* Make sure there is something to do and avoid duplicate consecutive |
| 1005 |
|
* flushes. For repeated and useless calls with Z_FINISH, we keep |
| 1006 |
|
* returning Z_STREAM_END instead of Z_BUF_ERROR. |
| 1007 |
|
*/ |
| 1008 |
55707 |
} else if (strm->avail_in == 0 && RANK(flush) <= RANK(old_flush) && |
| 1009 |
2360 |
flush != Z_FINISH) { |
| 1010 |
2360 |
ERR_RETURN(strm, Z_BUF_ERROR); |
| 1011 |
|
} |
| 1012 |
|
|
| 1013 |
|
/* User must not provide more input after the first FINISH: */ |
| 1014 |
53347 |
if (s->status == FINISH_STATE && strm->avail_in != 0) { |
| 1015 |
0 |
ERR_RETURN(strm, Z_BUF_ERROR); |
| 1016 |
|
} |
| 1017 |
|
|
| 1018 |
|
/* Write the header */ |
| 1019 |
53347 |
if (s->status == INIT_STATE && s->wrap == 0) |
| 1020 |
0 |
s->status = BUSY_STATE; |
| 1021 |
53347 |
if (s->status == INIT_STATE) { |
| 1022 |
|
#ifdef NOVGZ |
| 1023 |
|
/* zlib header */ |
| 1024 |
|
uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8; |
| 1025 |
|
uInt level_flags; |
| 1026 |
|
|
| 1027 |
|
if (s->strategy >= Z_HUFFMAN_ONLY || s->level < 2) |
| 1028 |
|
level_flags = 0; |
| 1029 |
|
else if (s->level < 6) |
| 1030 |
|
level_flags = 1; |
| 1031 |
|
else if (s->level == 6) |
| 1032 |
|
level_flags = 2; |
| 1033 |
|
else |
| 1034 |
|
level_flags = 3; |
| 1035 |
|
header |= (level_flags << 6); |
| 1036 |
|
if (s->strstart != 0) header |= PRESET_DICT; |
| 1037 |
|
header += 31 - (header % 31); |
| 1038 |
|
|
| 1039 |
|
putShortMSB(s, header); |
| 1040 |
|
|
| 1041 |
|
/* Save the adler32 of the preset dictionary: */ |
| 1042 |
|
if (s->strstart != 0) { |
| 1043 |
|
putShortMSB(s, (uInt)(strm->adler >> 16)); |
| 1044 |
|
putShortMSB(s, (uInt)(strm->adler & 0xffff)); |
| 1045 |
|
} |
| 1046 |
|
strm->adler = adler32(0L, Z_NULL, 0); |
| 1047 |
|
s->status = BUSY_STATE; |
| 1048 |
|
|
| 1049 |
|
/* Compression must start with an empty pending buffer */ |
| 1050 |
|
flush_pending(strm); |
| 1051 |
|
if (s->pending != 0) { |
| 1052 |
|
s->last_flush = -1; |
| 1053 |
|
return Z_OK; |
| 1054 |
|
} |
| 1055 |
|
#endif |
| 1056 |
0 |
} |
| 1057 |
|
#ifdef GZIP |
| 1058 |
53347 |
if (s->status == GZIP_STATE) { |
| 1059 |
|
/* gzip header */ |
| 1060 |
10200 |
strm->adler = crc32(0L, Z_NULL, 0); |
| 1061 |
10200 |
put_byte(s, 31); |
| 1062 |
10200 |
put_byte(s, 139); |
| 1063 |
10200 |
put_byte(s, 8); |
| 1064 |
10200 |
if (s->gzhead == Z_NULL) { |
| 1065 |
10200 |
put_byte(s, 0); |
| 1066 |
10200 |
put_byte(s, 0); |
| 1067 |
10200 |
put_byte(s, 0); |
| 1068 |
10200 |
put_byte(s, 0); |
| 1069 |
10200 |
put_byte(s, 0); |
| 1070 |
10200 |
put_byte(s, s->level == 9 ? 2 : |
| 1071 |
|
(s->strategy >= Z_HUFFMAN_ONLY || s->level < 2 ? |
| 1072 |
|
4 : 0)); |
| 1073 |
10200 |
put_byte(s, OS_CODE); |
| 1074 |
10200 |
s->status = BUSY_STATE; |
| 1075 |
|
|
| 1076 |
|
/* Compression must start with an empty pending buffer */ |
| 1077 |
10200 |
flush_pending(strm); |
| 1078 |
10200 |
if (s->pending != 0) { |
| 1079 |
200 |
s->last_flush = -1; |
| 1080 |
200 |
return Z_OK; |
| 1081 |
|
} |
| 1082 |
10000 |
} |
| 1083 |
|
else { |
| 1084 |
|
#ifdef NOVGZ |
| 1085 |
|
put_byte(s, (s->gzhead->text ? 1 : 0) + |
| 1086 |
|
(s->gzhead->hcrc ? 2 : 0) + |
| 1087 |
|
(s->gzhead->extra == Z_NULL ? 0 : 4) + |
| 1088 |
|
(s->gzhead->name == Z_NULL ? 0 : 8) + |
| 1089 |
|
(s->gzhead->comment == Z_NULL ? 0 : 16) |
| 1090 |
|
); |
| 1091 |
|
put_byte(s, (Byte)(s->gzhead->time & 0xff)); |
| 1092 |
|
put_byte(s, (Byte)((s->gzhead->time >> 8) & 0xff)); |
| 1093 |
|
put_byte(s, (Byte)((s->gzhead->time >> 16) & 0xff)); |
| 1094 |
|
put_byte(s, (Byte)((s->gzhead->time >> 24) & 0xff)); |
| 1095 |
|
put_byte(s, s->level == 9 ? 2 : |
| 1096 |
|
(s->strategy >= Z_HUFFMAN_ONLY || s->level < 2 ? |
| 1097 |
|
4 : 0)); |
| 1098 |
|
put_byte(s, s->gzhead->os & 0xff); |
| 1099 |
|
if (s->gzhead->extra != Z_NULL) { |
| 1100 |
|
put_byte(s, s->gzhead->extra_len & 0xff); |
| 1101 |
|
put_byte(s, (s->gzhead->extra_len >> 8) & 0xff); |
| 1102 |
|
} |
| 1103 |
|
if (s->gzhead->hcrc) |
| 1104 |
|
strm->adler = crc32(strm->adler, s->pending_buf, |
| 1105 |
|
s->pending); |
| 1106 |
|
s->gzindex = 0; |
| 1107 |
|
s->status = EXTRA_STATE; |
| 1108 |
|
} |
| 1109 |
|
} |
| 1110 |
|
if (s->status == EXTRA_STATE) { |
| 1111 |
|
if (s->gzhead->extra != Z_NULL) { |
| 1112 |
|
ulg beg = s->pending; /* start of bytes to update crc */ |
| 1113 |
|
uInt left = (s->gzhead->extra_len & 0xffff) - s->gzindex; |
| 1114 |
|
while (s->pending + left > s->pending_buf_size) { |
| 1115 |
|
uInt copy = s->pending_buf_size - s->pending; |
| 1116 |
|
zmemcpy(s->pending_buf + s->pending, |
| 1117 |
|
s->gzhead->extra + s->gzindex, copy); |
| 1118 |
|
s->pending = s->pending_buf_size; |
| 1119 |
|
HCRC_UPDATE(beg); |
| 1120 |
|
s->gzindex += copy; |
| 1121 |
|
flush_pending(strm); |
| 1122 |
|
if (s->pending != 0) { |
| 1123 |
|
s->last_flush = -1; |
| 1124 |
|
return Z_OK; |
| 1125 |
|
} |
| 1126 |
|
beg = 0; |
| 1127 |
|
left -= copy; |
| 1128 |
|
} |
| 1129 |
|
zmemcpy(s->pending_buf + s->pending, |
| 1130 |
|
s->gzhead->extra + s->gzindex, left); |
| 1131 |
|
s->pending += left; |
| 1132 |
|
HCRC_UPDATE(beg); |
| 1133 |
|
s->gzindex = 0; |
| 1134 |
|
} |
| 1135 |
|
s->status = NAME_STATE; |
| 1136 |
|
} |
| 1137 |
|
if (s->status == NAME_STATE) { |
| 1138 |
|
if (s->gzhead->name != Z_NULL) { |
| 1139 |
|
ulg beg = s->pending; /* start of bytes to update crc */ |
| 1140 |
|
int val; |
| 1141 |
|
do { |
| 1142 |
|
if (s->pending == s->pending_buf_size) { |
| 1143 |
|
HCRC_UPDATE(beg); |
| 1144 |
|
flush_pending(strm); |
| 1145 |
|
if (s->pending != 0) { |
| 1146 |
|
s->last_flush = -1; |
| 1147 |
|
return Z_OK; |
| 1148 |
|
} |
| 1149 |
|
beg = 0; |
| 1150 |
|
} |
| 1151 |
|
val = s->gzhead->name[s->gzindex++]; |
| 1152 |
|
put_byte(s, val); |
| 1153 |
|
} while (val != 0); |
| 1154 |
|
HCRC_UPDATE(beg); |
| 1155 |
|
s->gzindex = 0; |
| 1156 |
|
} |
| 1157 |
|
s->status = COMMENT_STATE; |
| 1158 |
|
} |
| 1159 |
|
if (s->status == COMMENT_STATE) { |
| 1160 |
|
if (s->gzhead->comment != Z_NULL) { |
| 1161 |
|
ulg beg = s->pending; /* start of bytes to update crc */ |
| 1162 |
|
int val; |
| 1163 |
|
do { |
| 1164 |
|
if (s->pending == s->pending_buf_size) { |
| 1165 |
|
HCRC_UPDATE(beg); |
| 1166 |
|
flush_pending(strm); |
| 1167 |
|
if (s->pending != 0) { |
| 1168 |
|
s->last_flush = -1; |
| 1169 |
|
return Z_OK; |
| 1170 |
|
} |
| 1171 |
|
beg = 0; |
| 1172 |
|
} |
| 1173 |
|
val = s->gzhead->comment[s->gzindex++]; |
| 1174 |
|
put_byte(s, val); |
| 1175 |
|
} while (val != 0); |
| 1176 |
|
HCRC_UPDATE(beg); |
| 1177 |
|
} |
| 1178 |
|
s->status = HCRC_STATE; |
| 1179 |
|
} |
| 1180 |
|
if (s->status == HCRC_STATE) { |
| 1181 |
|
if (s->gzhead->hcrc) { |
| 1182 |
|
if (s->pending + 2 > s->pending_buf_size) { |
| 1183 |
|
flush_pending(strm); |
| 1184 |
|
if (s->pending != 0) { |
| 1185 |
|
s->last_flush = -1; |
| 1186 |
|
return Z_OK; |
| 1187 |
|
} |
| 1188 |
|
} |
| 1189 |
|
put_byte(s, (Byte)(strm->adler & 0xff)); |
| 1190 |
|
put_byte(s, (Byte)((strm->adler >> 8) & 0xff)); |
| 1191 |
|
strm->adler = crc32(0L, Z_NULL, 0); |
| 1192 |
|
} |
| 1193 |
|
s->status = BUSY_STATE; |
| 1194 |
|
|
| 1195 |
|
/* Compression must start with an empty pending buffer */ |
| 1196 |
|
flush_pending(strm); |
| 1197 |
|
if (s->pending != 0) { |
| 1198 |
|
s->last_flush = -1; |
| 1199 |
|
return Z_OK; |
| 1200 |
|
} |
| 1201 |
|
} |
| 1202 |
|
#else /* !NOVGZ */ |
| 1203 |
0 |
abort(); |
| 1204 |
|
} |
| 1205 |
10000 |
} |
| 1206 |
|
#endif /* NOVGZ */ |
| 1207 |
|
#endif |
| 1208 |
|
|
| 1209 |
53147 |
if (strm->start_bit == 0) |
| 1210 |
10200 |
strm->start_bit = (strm->total_out + s->pending) * 8 + s->bi_valid; |
| 1211 |
|
|
| 1212 |
|
/* Start a new block or continue the current one. |
| 1213 |
|
*/ |
| 1214 |
62347 |
if (strm->avail_in != 0 || s->lookahead != 0 || |
| 1215 |
10400 |
(flush != Z_NO_FLUSH && s->status != FINISH_STATE)) { |
| 1216 |
|
block_state bstate; |
| 1217 |
|
|
| 1218 |
50067 |
bstate = s->level == 0 ? deflate_stored(s, flush) : |
| 1219 |
|
#ifdef NOVGZ |
| 1220 |
|
s->strategy == Z_HUFFMAN_ONLY ? deflate_huff(s, flush) : |
| 1221 |
|
s->strategy == Z_RLE ? deflate_rle(s, flush) : |
| 1222 |
|
#endif /* NOVGZ */ |
| 1223 |
37347 |
(*(configuration_table[s->level].func))(s, flush); |
| 1224 |
|
|
| 1225 |
50067 |
if (bstate == finish_started || bstate == finish_done) { |
| 1226 |
10120 |
s->status = FINISH_STATE; |
| 1227 |
10120 |
} |
| 1228 |
50067 |
if (bstate == need_more || bstate == finish_started) { |
| 1229 |
29867 |
if (strm->avail_out == 0) { |
| 1230 |
3800 |
s->last_flush = -1; /* avoid BUF_ERROR next call, see above */ |
| 1231 |
3800 |
} |
| 1232 |
29867 |
return Z_OK; |
| 1233 |
|
/* If flush != Z_NO_FLUSH && avail_out == 0, the next call |
| 1234 |
|
* of deflate should use the same flush parameter to make sure |
| 1235 |
|
* that the flush is complete. So we don't have to output an |
| 1236 |
|
* empty block here, this will be done at next call. This also |
| 1237 |
|
* ensures that for a very small output buffer, we emit at most |
| 1238 |
|
* one empty block. |
| 1239 |
|
*/ |
| 1240 |
|
} |
| 1241 |
20200 |
if (bstate == block_done) { |
| 1242 |
11760 |
if (flush == Z_PARTIAL_FLUSH) { |
| 1243 |
0 |
_tr_align(s); |
| 1244 |
11760 |
} else if (flush != Z_BLOCK) { /* FULL_FLUSH or SYNC_FLUSH */ |
| 1245 |
9400 |
_tr_stored_block(s, (char*)0, 0L, 0); |
| 1246 |
|
/* For a full flush, this empty block will be recognized |
| 1247 |
|
* as a special marker by inflate_sync(). |
| 1248 |
|
*/ |
| 1249 |
9400 |
if (flush == Z_FULL_FLUSH) { |
| 1250 |
4720 |
CLEAR_HASH(s); /* forget history */ |
| 1251 |
4720 |
if (s->lookahead == 0) { |
| 1252 |
4720 |
s->strstart = 0; |
| 1253 |
4720 |
s->block_start = 0L; |
| 1254 |
4720 |
s->insert = 0; |
| 1255 |
4720 |
} |
| 1256 |
4720 |
} |
| 1257 |
9400 |
} |
| 1258 |
11760 |
flush_pending(strm); |
| 1259 |
11760 |
if (strm->avail_out == 0) { |
| 1260 |
480 |
s->last_flush = -1; /* avoid BUF_ERROR at next call, see above */ |
| 1261 |
480 |
return Z_OK; |
| 1262 |
|
} |
| 1263 |
11280 |
} |
| 1264 |
19720 |
} |
| 1265 |
|
|
| 1266 |
22800 |
if (flush != Z_FINISH) return Z_OK; |
| 1267 |
10320 |
if (s->wrap <= 0) return Z_STREAM_END; |
| 1268 |
|
|
| 1269 |
|
/* Write the trailer */ |
| 1270 |
|
#ifdef GZIP |
| 1271 |
10120 |
if (s->wrap == 2) { |
| 1272 |
10120 |
put_byte(s, (Byte)(strm->adler & 0xff)); |
| 1273 |
10120 |
put_byte(s, (Byte)((strm->adler >> 8) & 0xff)); |
| 1274 |
10120 |
put_byte(s, (Byte)((strm->adler >> 16) & 0xff)); |
| 1275 |
10120 |
put_byte(s, (Byte)((strm->adler >> 24) & 0xff)); |
| 1276 |
10120 |
put_byte(s, (Byte)(strm->total_in & 0xff)); |
| 1277 |
10120 |
put_byte(s, (Byte)((strm->total_in >> 8) & 0xff)); |
| 1278 |
10120 |
put_byte(s, (Byte)((strm->total_in >> 16) & 0xff)); |
| 1279 |
10120 |
put_byte(s, (Byte)((strm->total_in >> 24) & 0xff)); |
| 1280 |
10120 |
} |
| 1281 |
|
else |
| 1282 |
|
#endif |
| 1283 |
|
{ |
| 1284 |
0 |
putShortMSB(s, (uInt)(strm->adler >> 16)); |
| 1285 |
0 |
putShortMSB(s, (uInt)(strm->adler & 0xffff)); |
| 1286 |
|
} |
| 1287 |
10120 |
flush_pending(strm); |
| 1288 |
|
/* If avail_out is zero, the application will call deflate again |
| 1289 |
|
* to flush the rest. |
| 1290 |
|
*/ |
| 1291 |
10120 |
if (s->wrap > 0) s->wrap = -s->wrap; /* write the trailer only once! */ |
| 1292 |
10120 |
return s->pending != 0 ? Z_OK : Z_STREAM_END; |
| 1293 |
57187 |
} |
| 1294 |
|
|
| 1295 |
|
/* ========================================================================= */ |
| 1296 |
10320 |
int ZEXPORT deflateEnd(z_streamp strm) { |
| 1297 |
|
int status; |
| 1298 |
|
|
| 1299 |
10320 |
if (deflateStateCheck(strm)) return Z_STREAM_ERROR; |
| 1300 |
|
|
| 1301 |
10320 |
status = strm->state->status; |
| 1302 |
|
|
| 1303 |
|
/* Deallocate in reverse order of allocations: */ |
| 1304 |
10320 |
TRY_FREE(strm, strm->state->pending_buf); |
| 1305 |
10320 |
TRY_FREE(strm, strm->state->head); |
| 1306 |
10320 |
TRY_FREE(strm, strm->state->prev); |
| 1307 |
10320 |
TRY_FREE(strm, strm->state->window); |
| 1308 |
|
|
| 1309 |
10320 |
ZFREE(strm, strm->state); |
| 1310 |
10320 |
strm->state = Z_NULL; |
| 1311 |
|
|
| 1312 |
10320 |
return status == BUSY_STATE ? Z_DATA_ERROR : Z_OK; |
| 1313 |
10320 |
} |
| 1314 |
|
|
| 1315 |
|
#ifdef NOVGZ |
| 1316 |
|
|
| 1317 |
|
/* ========================================================================= |
| 1318 |
|
* Copy the source state to the destination state. |
| 1319 |
|
* To simplify the source, this is not supported for 16-bit MSDOS (which |
| 1320 |
|
* doesn't have enough memory anyway to duplicate compression states). |
| 1321 |
|
*/ |
| 1322 |
|
int ZEXPORT deflateCopy(z_streamp dest, z_streamp source) { |
| 1323 |
|
#ifdef MAXSEG_64K |
| 1324 |
|
(void)dest; |
| 1325 |
|
(void)source; |
| 1326 |
|
return Z_STREAM_ERROR; |
| 1327 |
|
#else |
| 1328 |
|
deflate_state *ds; |
| 1329 |
|
deflate_state *ss; |
| 1330 |
|
|
| 1331 |
|
|
| 1332 |
|
if (deflateStateCheck(source) || dest == Z_NULL) { |
| 1333 |
|
return Z_STREAM_ERROR; |
| 1334 |
|
} |
| 1335 |
|
|
| 1336 |
|
ss = source->state; |
| 1337 |
|
|
| 1338 |
|
zmemcpy((voidpf)dest, (voidpf)source, sizeof(z_stream)); |
| 1339 |
|
|
| 1340 |
|
ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state)); |
| 1341 |
|
if (ds == Z_NULL) return Z_MEM_ERROR; |
| 1342 |
|
dest->state = (struct internal_state FAR *) ds; |
| 1343 |
|
zmemcpy((voidpf)ds, (voidpf)ss, sizeof(deflate_state)); |
| 1344 |
|
ds->strm = dest; |
| 1345 |
|
|
| 1346 |
|
ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte)); |
| 1347 |
|
ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos)); |
| 1348 |
|
ds->head = (Posf *) ZALLOC(dest, ds->hash_size, sizeof(Pos)); |
| 1349 |
|
ds->pending_buf = (uchf *) ZALLOC(dest, ds->lit_bufsize, LIT_BUFS); |
| 1350 |
|
|
| 1351 |
|
if (ds->window == Z_NULL || ds->prev == Z_NULL || ds->head == Z_NULL || |
| 1352 |
|
ds->pending_buf == Z_NULL) { |
| 1353 |
|
deflateEnd (dest); |
| 1354 |
|
return Z_MEM_ERROR; |
| 1355 |
|
} |
| 1356 |
|
/* following zmemcpy do not work for 16-bit MSDOS */ |
| 1357 |
|
zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof(Byte)); |
| 1358 |
|
zmemcpy((voidpf)ds->prev, (voidpf)ss->prev, ds->w_size * sizeof(Pos)); |
| 1359 |
|
zmemcpy((voidpf)ds->head, (voidpf)ss->head, ds->hash_size * sizeof(Pos)); |
| 1360 |
|
zmemcpy(ds->pending_buf, ss->pending_buf, ds->lit_bufsize * LIT_BUFS); |
| 1361 |
|
|
| 1362 |
|
ds->pending_out = ds->pending_buf + (ss->pending_out - ss->pending_buf); |
| 1363 |
|
#ifdef LIT_MEM |
| 1364 |
|
ds->d_buf = (ushf *)(ds->pending_buf + (ds->lit_bufsize << 1)); |
| 1365 |
|
ds->l_buf = ds->pending_buf + (ds->lit_bufsize << 2); |
| 1366 |
|
#else |
| 1367 |
|
ds->sym_buf = ds->pending_buf + ds->lit_bufsize; |
| 1368 |
|
#endif |
| 1369 |
|
|
| 1370 |
|
ds->l_desc.dyn_tree = ds->dyn_ltree; |
| 1371 |
|
ds->d_desc.dyn_tree = ds->dyn_dtree; |
| 1372 |
|
ds->bl_desc.dyn_tree = ds->bl_tree; |
| 1373 |
|
|
| 1374 |
|
return Z_OK; |
| 1375 |
|
#endif /* MAXSEG_64K */ |
| 1376 |
|
} |
| 1377 |
|
|
| 1378 |
|
#endif /* NOVGZ */ |
| 1379 |
|
|
| 1380 |
|
#ifndef FASTEST |
| 1381 |
|
/* =========================================================================== |
| 1382 |
|
* Set match_start to the longest match starting at the given string and |
| 1383 |
|
* return its length. Matches shorter or equal to prev_length are discarded, |
| 1384 |
|
* in which case the result is equal to prev_length and match_start is |
| 1385 |
|
* garbage. |
| 1386 |
|
* IN assertions: cur_match is the head of the hash chain for the current |
| 1387 |
|
* string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1 |
| 1388 |
|
* OUT assertion: the match length is not greater than s->lookahead. |
| 1389 |
|
*/ |
| 1390 |
161329 |
local uInt longest_match(deflate_state *s, IPos cur_match) { |
| 1391 |
161329 |
unsigned chain_length = s->max_chain_length;/* max hash chain length */ |
| 1392 |
161329 |
register Bytef *scan = s->window + s->strstart; /* current string */ |
| 1393 |
|
register Bytef *match; /* matched string */ |
| 1394 |
|
register int len; /* length of current match */ |
| 1395 |
161329 |
int best_len = (int)s->prev_length; /* best match length so far */ |
| 1396 |
161329 |
int nice_match = s->nice_match; /* stop if match long enough */ |
| 1397 |
161329 |
IPos limit = s->strstart > (IPos)MAX_DIST(s) ? |
| 1398 |
0 |
s->strstart - (IPos)MAX_DIST(s) : NIL; |
| 1399 |
|
/* Stop when cur_match becomes <= limit. To simplify the code, |
| 1400 |
|
* we prevent matches with the string of window index 0. |
| 1401 |
|
*/ |
| 1402 |
161329 |
Posf *prev = s->prev; |
| 1403 |
161329 |
uInt wmask = s->w_mask; |
| 1404 |
|
|
| 1405 |
|
#ifdef UNALIGNED_OK |
| 1406 |
|
/* Compare two bytes at a time. Note: this is not always beneficial. |
| 1407 |
|
* Try with and without -DUNALIGNED_OK to check. |
| 1408 |
|
*/ |
| 1409 |
|
register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1; |
| 1410 |
|
register ush scan_start = *(ushf*)scan; |
| 1411 |
|
register ush scan_end = *(ushf*)(scan+best_len-1); |
| 1412 |
|
#else |
| 1413 |
161329 |
register Bytef *strend = s->window + s->strstart + MAX_MATCH; |
| 1414 |
161329 |
register Byte scan_end1 = scan[best_len-1]; |
| 1415 |
161329 |
register Byte scan_end = scan[best_len]; |
| 1416 |
|
#endif |
| 1417 |
|
|
| 1418 |
|
/* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16. |
| 1419 |
|
* It is easy to get rid of this optimization if necessary. |
| 1420 |
|
*/ |
| 1421 |
|
Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever"); |
| 1422 |
|
|
| 1423 |
|
/* Do not waste too much time if we already have a good match: */ |
| 1424 |
161329 |
if (s->prev_length >= s->good_match) { |
| 1425 |
280 |
chain_length >>= 2; |
| 1426 |
280 |
} |
| 1427 |
|
/* Do not look for matches beyond the end of the input. This is necessary |
| 1428 |
|
* to make deflate deterministic. |
| 1429 |
|
*/ |
| 1430 |
161329 |
if ((uInt)nice_match > s->lookahead) nice_match = (int)s->lookahead; |
| 1431 |
|
|
| 1432 |
|
Assert((ulg)s->strstart <= s->window_size - MIN_LOOKAHEAD, |
| 1433 |
|
"need lookahead"); |
| 1434 |
|
|
| 1435 |
161329 |
do { |
| 1436 |
|
Assert(cur_match < s->strstart, "no future"); |
| 1437 |
1329483 |
match = s->window + cur_match; |
| 1438 |
|
|
| 1439 |
|
/* Skip to next match if the match length cannot increase |
| 1440 |
|
* or if the match length is less than 2. Note that the checks below |
| 1441 |
|
* for insufficient lookahead only occur occasionally for performance |
| 1442 |
|
* reasons. Therefore uninitialized memory will be accessed, and |
| 1443 |
|
* conditional jumps will be made that depend on those values. |
| 1444 |
|
* However the length of the match is limited to the lookahead, so |
| 1445 |
|
* the output of deflate is not affected by the uninitialized values. |
| 1446 |
|
*/ |
| 1447 |
|
#if (defined(UNALIGNED_OK) && MAX_MATCH == 258) |
| 1448 |
|
/* This code assumes sizeof(unsigned short) == 2. Do not use |
| 1449 |
|
* UNALIGNED_OK if your compiler uses a different size. |
| 1450 |
|
*/ |
| 1451 |
|
if (*(ushf*)(match+best_len-1) != scan_end || |
| 1452 |
|
*(ushf*)match != scan_start) continue; |
| 1453 |
|
|
| 1454 |
|
/* It is not necessary to compare scan[2] and match[2] since they are |
| 1455 |
|
* always equal when the other bytes match, given that the hash keys |
| 1456 |
|
* are equal and that HASH_BITS >= 8. Compare 2 bytes at a time at |
| 1457 |
|
* strstart + 3, + 5, up to strstart + 257. We check for insufficient |
| 1458 |
|
* lookahead only every 4th comparison; the 128th check will be made |
| 1459 |
|
* at strstart+257. If MAX_MATCH-2 is not a multiple of 8, it is |
| 1460 |
|
* necessary to put more guard bytes at the end of the window, or |
| 1461 |
|
* to check more often for insufficient lookahead. |
| 1462 |
|
*/ |
| 1463 |
|
Assert(scan[2] == match[2], "scan[2]?"); |
| 1464 |
|
scan++, match++; |
| 1465 |
|
do { |
| 1466 |
|
} while (*(ushf*)(scan+=2) == *(ushf*)(match+=2) && |
| 1467 |
|
*(ushf*)(scan+=2) == *(ushf*)(match+=2) && |
| 1468 |
|
*(ushf*)(scan+=2) == *(ushf*)(match+=2) && |
| 1469 |
|
*(ushf*)(scan+=2) == *(ushf*)(match+=2) && |
| 1470 |
|
scan < strend); |
| 1471 |
|
/* The funny "do {}" generates better code on most compilers */ |
| 1472 |
|
|
| 1473 |
|
/* Here, scan <= window+strstart+257 */ |
| 1474 |
|
Assert(scan <= s->window + (unsigned)(s->window_size - 1), |
| 1475 |
|
"wild scan"); |
| 1476 |
|
if (*scan == *match) scan++; |
| 1477 |
|
|
| 1478 |
|
len = (MAX_MATCH - 1) - (int)(strend-scan); |
| 1479 |
|
scan = strend - (MAX_MATCH-1); |
| 1480 |
|
|
| 1481 |
|
#else /* UNALIGNED_OK */ |
| 1482 |
|
|
| 1483 |
1336034 |
if (match[best_len] != scan_end || |
| 1484 |
117218 |
match[best_len-1] != scan_end1 || |
| 1485 |
15872 |
*match != *scan || |
| 1486 |
1329483 |
*++match != scan[1]) continue; |
| 1487 |
|
|
| 1488 |
|
/* The check at best_len-1 can be removed because it will be made |
| 1489 |
|
* again later. (This heuristic is not always a win.) |
| 1490 |
|
* It is not necessary to compare scan[2] and match[2] since they |
| 1491 |
|
* are always equal when the other bytes match, given that |
| 1492 |
|
* the hash keys are equal and that HASH_BITS >= 8. |
| 1493 |
|
*/ |
| 1494 |
6551 |
scan += 2, match++; |
| 1495 |
|
Assert(*scan == *match, "match[2]?"); |
| 1496 |
|
|
| 1497 |
|
/* We check for insufficient lookahead only every 8th comparison; |
| 1498 |
|
* the 256th check will be made at strstart+258. |
| 1499 |
|
*/ |
| 1500 |
6551 |
do { |
| 1501 |
38982 |
} while (*++scan == *++match && *++scan == *++match && |
| 1502 |
28520 |
*++scan == *++match && *++scan == *++match && |
| 1503 |
27200 |
*++scan == *++match && *++scan == *++match && |
| 1504 |
26520 |
*++scan == *++match && *++scan == *++match && |
| 1505 |
26280 |
scan < strend); |
| 1506 |
|
|
| 1507 |
|
Assert(scan <= s->window + (unsigned)(s->window_size - 1), |
| 1508 |
|
"wild scan"); |
| 1509 |
|
|
| 1510 |
6551 |
len = MAX_MATCH - (int)(strend - scan); |
| 1511 |
6551 |
scan = strend - MAX_MATCH; |
| 1512 |
|
|
| 1513 |
|
#endif /* UNALIGNED_OK */ |
| 1514 |
|
|
| 1515 |
6551 |
if (len > best_len) { |
| 1516 |
6551 |
s->match_start = cur_match; |
| 1517 |
6551 |
best_len = len; |
| 1518 |
6551 |
if (len >= nice_match) break; |
| 1519 |
|
#ifdef UNALIGNED_OK |
| 1520 |
|
scan_end = *(ushf*)(scan+best_len-1); |
| 1521 |
|
#else |
| 1522 |
5151 |
scan_end1 = scan[best_len-1]; |
| 1523 |
5151 |
scan_end = scan[best_len]; |
| 1524 |
|
#endif |
| 1525 |
5151 |
} |
| 1526 |
2496237 |
} while ((cur_match = prev[cur_match & wmask]) > limit |
| 1527 |
1328083 |
&& --chain_length != 0); |
| 1528 |
|
|
| 1529 |
161329 |
if ((uInt)best_len <= s->lookahead) return (uInt)best_len; |
| 1530 |
160 |
return s->lookahead; |
| 1531 |
161329 |
} |
| 1532 |
|
|
| 1533 |
|
#else /* FASTEST */ |
| 1534 |
|
|
| 1535 |
|
/* --------------------------------------------------------------------------- |
| 1536 |
|
* Optimized version for FASTEST only |
| 1537 |
|
*/ |
| 1538 |
|
local uInt longest_match(deflate_state *s, IPos cur_match) { |
| 1539 |
|
register Bytef *scan = s->window + s->strstart; /* current string */ |
| 1540 |
|
register Bytef *match; /* matched string */ |
| 1541 |
|
register int len; /* length of current match */ |
| 1542 |
|
register Bytef *strend = s->window + s->strstart + MAX_MATCH; |
| 1543 |
|
|
| 1544 |
|
/* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16. |
| 1545 |
|
* It is easy to get rid of this optimization if necessary. |
| 1546 |
|
*/ |
| 1547 |
|
Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever"); |
| 1548 |
|
|
| 1549 |
|
Assert((ulg)s->strstart <= s->window_size - MIN_LOOKAHEAD, |
| 1550 |
|
"need lookahead"); |
| 1551 |
|
|
| 1552 |
|
Assert(cur_match < s->strstart, "no future"); |
| 1553 |
|
|
| 1554 |
|
match = s->window + cur_match; |
| 1555 |
|
|
| 1556 |
|
/* Return failure if the match length is less than 2: |
| 1557 |
|
*/ |
| 1558 |
|
if (match[0] != scan[0] || match[1] != scan[1]) return MIN_MATCH-1; |
| 1559 |
|
|
| 1560 |
|
/* The check at best_len-1 can be removed because it will be made |
| 1561 |
|
* again later. (This heuristic is not always a win.) |
| 1562 |
|
* It is not necessary to compare scan[2] and match[2] since they |
| 1563 |
|
* are always equal when the other bytes match, given that |
| 1564 |
|
* the hash keys are equal and that HASH_BITS >= 8. |
| 1565 |
|
*/ |
| 1566 |
|
scan += 2, match += 2; |
| 1567 |
|
Assert(*scan == *match, "match[2]?"); |
| 1568 |
|
|
| 1569 |
|
/* We check for insufficient lookahead only every 8th comparison; |
| 1570 |
|
* the 256th check will be made at strstart+258. |
| 1571 |
|
*/ |
| 1572 |
|
do { |
| 1573 |
|
} while (*++scan == *++match && *++scan == *++match && |
| 1574 |
|
*++scan == *++match && *++scan == *++match && |
| 1575 |
|
*++scan == *++match && *++scan == *++match && |
| 1576 |
|
*++scan == *++match && *++scan == *++match && |
| 1577 |
|
scan < strend); |
| 1578 |
|
|
| 1579 |
|
Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan"); |
| 1580 |
|
|
| 1581 |
|
len = MAX_MATCH - (int)(strend - scan); |
| 1582 |
|
|
| 1583 |
|
if (len < MIN_MATCH) return MIN_MATCH - 1; |
| 1584 |
|
|
| 1585 |
|
s->match_start = cur_match; |
| 1586 |
|
return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead; |
| 1587 |
|
} |
| 1588 |
|
|
| 1589 |
|
#endif /* FASTEST */ |
| 1590 |
|
|
| 1591 |
|
#ifdef ZLIB_DEBUG |
| 1592 |
|
|
| 1593 |
|
#define EQUAL 0 |
| 1594 |
|
/* result of memcmp for equal strings */ |
| 1595 |
|
|
| 1596 |
|
/* =========================================================================== |
| 1597 |
|
* Check that the match at match_start is indeed a match. |
| 1598 |
|
*/ |
| 1599 |
|
local void check_match(deflate_state *s, IPos start, IPos match, int length) { |
| 1600 |
|
/* check that the match is indeed a match */ |
| 1601 |
|
Bytef *back = s->window + (int)match, *here = s->window + start; |
| 1602 |
|
IPos len = length; |
| 1603 |
|
if (match == (IPos)-1) { |
| 1604 |
|
/* match starts one byte before the current window -- just compare the |
| 1605 |
|
subsequent length-1 bytes */ |
| 1606 |
|
back++; |
| 1607 |
|
here++; |
| 1608 |
|
len--; |
| 1609 |
|
} |
| 1610 |
|
if (zmemcmp(back, here, len) != EQUAL) { |
| 1611 |
|
fprintf(stderr, " start %u, match %d, length %d\n", |
| 1612 |
|
start, (int)match, length); |
| 1613 |
|
do { |
| 1614 |
|
fprintf(stderr, "(%02x %02x)", *back++, *here++); |
| 1615 |
|
} while (--len != 0); |
| 1616 |
|
z_error("invalid match"); |
| 1617 |
|
} |
| 1618 |
|
if (z_verbose > 1) { |
| 1619 |
|
fprintf(stderr,"\\[%d,%d]", start-match, length); |
| 1620 |
|
do { putc(s->window[start++], stderr); } while (--length != 0); |
| 1621 |
|
} |
| 1622 |
|
} |
| 1623 |
|
#else |
| 1624 |
|
# define check_match(s, start, match, length) |
| 1625 |
|
#endif /* ZLIB_DEBUG */ |
| 1626 |
|
|
| 1627 |
|
/* =========================================================================== |
| 1628 |
|
* Flush the current block, with given end-of-file flag. |
| 1629 |
|
* IN assertion: strstart is set to the end of the current match. |
| 1630 |
|
*/ |
| 1631 |
|
#define FLUSH_BLOCK_ONLY(s, last) { \ |
| 1632 |
|
_tr_flush_block(s, (s->block_start >= 0L ? \ |
| 1633 |
|
(charf *)&s->window[(unsigned)s->block_start] : \ |
| 1634 |
|
(charf *)Z_NULL), \ |
| 1635 |
|
(ulg)((long)s->strstart - s->block_start), \ |
| 1636 |
|
(last)); \ |
| 1637 |
|
s->block_start = s->strstart; \ |
| 1638 |
|
flush_pending(s->strm); \ |
| 1639 |
|
Tracev((stderr,"[FLUSH]")); \ |
| 1640 |
|
} |
| 1641 |
|
|
| 1642 |
|
/* Same but force premature exit if necessary. */ |
| 1643 |
|
#define FLUSH_BLOCK(s, last) { \ |
| 1644 |
|
FLUSH_BLOCK_ONLY(s, last); \ |
| 1645 |
|
if (s->strm->avail_out == 0) return (last) ? finish_started : need_more; \ |
| 1646 |
|
} |
| 1647 |
|
|
| 1648 |
|
/* Maximum stored block length in deflate format (not including header). */ |
| 1649 |
|
#define MAX_STORED 65535 |
| 1650 |
|
|
| 1651 |
|
/* Minimum of a and b. */ |
| 1652 |
|
#define MIN(a, b) ((a) > (b) ? (b) : (a)) |
| 1653 |
|
|
| 1654 |
|
/* =========================================================================== |
| 1655 |
|
* Copy without compression as much as possible from the input stream, return |
| 1656 |
|
* the current block state. |
| 1657 |
|
* |
| 1658 |
|
* In case deflateParams() is used to later switch to a non-zero compression |
| 1659 |
|
* level, s->matches (otherwise unused when storing) keeps track of the number |
| 1660 |
|
* of hash table slides to perform. If s->matches is 1, then one hash table |
| 1661 |
|
* slide will be done when switching. If s->matches is 2, the maximum value |
| 1662 |
|
* allowed here, then the hash table will be cleared, since two or more slides |
| 1663 |
|
* is the same as a clear. |
| 1664 |
|
* |
| 1665 |
|
* deflate_stored() is written to minimize the number of times an input byte is |
| 1666 |
|
* copied. It is most efficient with large input and output buffers, which |
| 1667 |
|
* maximizes the opportunities to have a single copy from next_in to next_out. |
| 1668 |
|
*/ |
| 1669 |
12720 |
local block_state deflate_stored(deflate_state *s, int flush) { |
| 1670 |
|
/* Smallest worthy block size when not flushing or finishing. By default |
| 1671 |
|
* this is 32K. This can be as small as 507 bytes for memLevel == 1. For |
| 1672 |
|
* large input and output buffers, the stored block size will be larger. |
| 1673 |
|
*/ |
| 1674 |
12720 |
unsigned min_block = MIN(s->pending_buf_size - 5, s->w_size); |
| 1675 |
|
|
| 1676 |
|
/* Copy as many min_block or larger stored blocks directly to next_out as |
| 1677 |
|
* possible. If flushing, copy the remaining available input to next_out as |
| 1678 |
|
* stored blocks, if there is enough space. |
| 1679 |
|
*/ |
| 1680 |
12720 |
int last = 0; |
| 1681 |
|
unsigned len, left, have; |
| 1682 |
12720 |
unsigned used = s->strm->avail_in; |
| 1683 |
12720 |
do { |
| 1684 |
|
/* Set len to the maximum size block that we can copy directly with the |
| 1685 |
|
* available input data and output space. Set left to how much of that |
| 1686 |
|
* would be copied from what's left in the window. |
| 1687 |
|
*/ |
| 1688 |
16240 |
len = MAX_STORED; /* maximum deflate stored block length */ |
| 1689 |
16240 |
have = (s->bi_valid + 42) >> 3; /* number of header bytes */ |
| 1690 |
16240 |
if (s->strm->avail_out < have) /* need room for header */ |
| 1691 |
0 |
break; |
| 1692 |
|
/* maximum stored block length that will fit in avail_out: */ |
| 1693 |
16240 |
have = s->strm->avail_out - have; |
| 1694 |
16240 |
left = s->strstart - s->block_start; /* bytes left in window */ |
| 1695 |
16240 |
if (len > (ulg)left + s->strm->avail_in) |
| 1696 |
16240 |
len = left + s->strm->avail_in; /* limit len to the input */ |
| 1697 |
16240 |
if (len > have) |
| 1698 |
2040 |
len = have; /* limit len to the output */ |
| 1699 |
|
|
| 1700 |
|
/* If the stored block would be less than min_block in length, or if |
| 1701 |
|
* unable to copy all of the available input when flushing, then try |
| 1702 |
|
* copying to the window and the pending buffer instead. Also don't |
| 1703 |
|
* write an empty block when flushing -- deflate() does that. |
| 1704 |
|
*/ |
| 1705 |
25400 |
if (len < min_block && ((len == 0 && flush != Z_FINISH) || |
| 1706 |
15080 |
flush == Z_NO_FLUSH || |
| 1707 |
9160 |
len != left + s->strm->avail_in)) |
| 1708 |
6320 |
break; |
| 1709 |
|
|
| 1710 |
|
/* Make a dummy stored block in pending to get the header bytes, |
| 1711 |
|
* including any pending bits. This also updates the debugging counts. |
| 1712 |
|
*/ |
| 1713 |
9920 |
last = flush == Z_FINISH && len == left + s->strm->avail_in ? 1 : 0; |
| 1714 |
9920 |
_tr_stored_block(s, (char *)0, 0L, last); |
| 1715 |
|
|
| 1716 |
|
/* Replace the lengths in the dummy stored block with len. */ |
| 1717 |
9920 |
s->pending_buf[s->pending - 4] = (Bytef)len; |
| 1718 |
9920 |
s->pending_buf[s->pending - 3] = (Bytef)(len >> 8); |
| 1719 |
9920 |
s->pending_buf[s->pending - 2] = (Bytef)~len; |
| 1720 |
9920 |
s->pending_buf[s->pending - 1] = (Bytef)(~len >> 8); |
| 1721 |
|
|
| 1722 |
|
/* Write the stored block header bytes. */ |
| 1723 |
9920 |
flush_pending(s->strm); |
| 1724 |
|
|
| 1725 |
|
#ifdef ZLIB_DEBUG |
| 1726 |
|
/* Update debugging counts for the data about to be copied. */ |
| 1727 |
|
s->compressed_len += len << 3; |
| 1728 |
|
s->bits_sent += len << 3; |
| 1729 |
|
#endif |
| 1730 |
|
|
| 1731 |
|
/* Copy uncompressed bytes from the window to next_out. */ |
| 1732 |
9920 |
if (left) { |
| 1733 |
200 |
if (left > len) |
| 1734 |
0 |
left = len; |
| 1735 |
200 |
zmemcpy(s->strm->next_out, s->window + s->block_start, left); |
| 1736 |
200 |
s->strm->next_out += left; |
| 1737 |
200 |
s->strm->avail_out -= left; |
| 1738 |
200 |
s->strm->total_out += left; |
| 1739 |
200 |
s->block_start += left; |
| 1740 |
200 |
len -= left; |
| 1741 |
200 |
} |
| 1742 |
|
|
| 1743 |
|
/* Copy uncompressed bytes directly from next_in to next_out, updating |
| 1744 |
|
* the check value. |
| 1745 |
|
*/ |
| 1746 |
9920 |
if (len) { |
| 1747 |
9640 |
read_buf(s->strm, s->strm->next_out, len); |
| 1748 |
9640 |
s->strm->next_out += len; |
| 1749 |
9640 |
s->strm->avail_out -= len; |
| 1750 |
9640 |
s->strm->total_out += len; |
| 1751 |
9640 |
} |
| 1752 |
9920 |
} while (last == 0); |
| 1753 |
12720 |
if (last) |
| 1754 |
6400 |
s->strm->stop_bit = |
| 1755 |
6400 |
(s->strm->total_out + s->pending) * 8 + s->bi_valid; |
| 1756 |
|
|
| 1757 |
|
/* Update the sliding window with the last s->w_size bytes of the copied |
| 1758 |
|
* data, or append all of the copied data to the existing window if less |
| 1759 |
|
* than s->w_size bytes were copied. Also update the number of bytes to |
| 1760 |
|
* insert in the hash tables, in the event that deflateParams() switches to |
| 1761 |
|
* a non-zero compression level. |
| 1762 |
|
*/ |
| 1763 |
12720 |
used -= s->strm->avail_in; /* number of input bytes directly copied */ |
| 1764 |
12720 |
if (used) { |
| 1765 |
|
/* If any input was used, then no unused input remains in the window, |
| 1766 |
|
* therefore s->block_start == s->strstart. |
| 1767 |
|
*/ |
| 1768 |
9640 |
if (used >= s->w_size) { /* supplant the previous history */ |
| 1769 |
1160 |
s->matches = 2; /* clear hash */ |
| 1770 |
1160 |
zmemcpy(s->window, s->strm->next_in - s->w_size, s->w_size); |
| 1771 |
1160 |
s->strstart = s->w_size; |
| 1772 |
1160 |
s->insert = s->strstart; |
| 1773 |
1160 |
} |
| 1774 |
|
else { |
| 1775 |
8480 |
if (s->window_size - s->strstart <= used) { |
| 1776 |
|
/* Slide the window down. */ |
| 1777 |
0 |
s->strstart -= s->w_size; |
| 1778 |
0 |
zmemcpy(s->window, s->window + s->w_size, s->strstart); |
| 1779 |
0 |
if (s->matches < 2) |
| 1780 |
0 |
s->matches++; /* add a pending slide_hash() */ |
| 1781 |
0 |
if (s->insert > s->strstart) |
| 1782 |
0 |
s->insert = s->strstart; |
| 1783 |
0 |
} |
| 1784 |
8480 |
zmemcpy(s->window + s->strstart, s->strm->next_in - used, used); |
| 1785 |
8480 |
s->strstart += used; |
| 1786 |
8480 |
s->insert += MIN(used, s->w_size - s->insert); |
| 1787 |
|
} |
| 1788 |
9640 |
s->block_start = s->strstart; |
| 1789 |
9640 |
} |
| 1790 |
12720 |
if (s->high_water < s->strstart) |
| 1791 |
8520 |
s->high_water = s->strstart; |
| 1792 |
|
|
| 1793 |
|
/* If the last block was written to next_out, then done. */ |
| 1794 |
12720 |
if (last) |
| 1795 |
6400 |
return finish_done; |
| 1796 |
|
|
| 1797 |
|
/* If flushing and all input has been consumed, then done. */ |
| 1798 |
9240 |
if (flush != Z_NO_FLUSH && flush != Z_FINISH && |
| 1799 |
3120 |
s->strm->avail_in == 0 && (long)s->strstart == s->block_start) |
| 1800 |
2800 |
return block_done; |
| 1801 |
|
|
| 1802 |
|
/* Fill the window with any remaining input. */ |
| 1803 |
3520 |
have = s->window_size - s->strstart; |
| 1804 |
3520 |
if (s->strm->avail_in > have && s->block_start >= (long)s->w_size) { |
| 1805 |
|
/* Slide the window down. */ |
| 1806 |
1160 |
s->block_start -= s->w_size; |
| 1807 |
1160 |
s->strstart -= s->w_size; |
| 1808 |
1160 |
zmemcpy(s->window, s->window + s->w_size, s->strstart); |
| 1809 |
1160 |
if (s->matches < 2) |
| 1810 |
80 |
s->matches++; /* add a pending slide_hash() */ |
| 1811 |
1160 |
have += s->w_size; /* more space now */ |
| 1812 |
1160 |
if (s->insert > s->strstart) |
| 1813 |
1160 |
s->insert = s->strstart; |
| 1814 |
1160 |
} |
| 1815 |
3520 |
if (have > s->strm->avail_in) |
| 1816 |
3400 |
have = s->strm->avail_in; |
| 1817 |
3520 |
if (have) { |
| 1818 |
2240 |
read_buf(s->strm, s->window + s->strstart, have); |
| 1819 |
2240 |
s->strstart += have; |
| 1820 |
2240 |
s->insert += MIN(have, s->w_size - s->insert); |
| 1821 |
2240 |
} |
| 1822 |
3520 |
if (s->high_water < s->strstart) |
| 1823 |
880 |
s->high_water = s->strstart; |
| 1824 |
|
|
| 1825 |
|
/* There was not enough avail_out to write a complete worthy or flushed |
| 1826 |
|
* stored block to next_out. Write a stored block to pending instead, if we |
| 1827 |
|
* have enough input for a worthy block, or if flushing and there is enough |
| 1828 |
|
* room for the remaining input as a stored block in the pending buffer. |
| 1829 |
|
*/ |
| 1830 |
3520 |
have = (s->bi_valid + 42) >> 3; /* number of header bytes */ |
| 1831 |
|
/* maximum stored block length that will fit in pending: */ |
| 1832 |
3520 |
have = MIN(s->pending_buf_size - have, MAX_STORED); |
| 1833 |
3520 |
min_block = MIN(have, s->w_size); |
| 1834 |
3520 |
left = s->strstart - s->block_start; |
| 1835 |
3920 |
if (left >= min_block || |
| 1836 |
2160 |
((left || flush == Z_FINISH) && flush != Z_NO_FLUSH && |
| 1837 |
400 |
s->strm->avail_in == 0 && left <= have)) { |
| 1838 |
1760 |
len = MIN(left, have); |
| 1839 |
1840 |
last = flush == Z_FINISH && s->strm->avail_in == 0 && |
| 1840 |
80 |
len == left ? 1 : 0; |
| 1841 |
1760 |
_tr_stored_block(s, (charf *)s->window + s->block_start, len, last); |
| 1842 |
1760 |
s->block_start += len; |
| 1843 |
1760 |
flush_pending(s->strm); |
| 1844 |
1760 |
} |
| 1845 |
|
|
| 1846 |
|
/* We've done all we can with the available input and output. */ |
| 1847 |
3520 |
return last ? finish_started : need_more; |
| 1848 |
12720 |
} |
| 1849 |
|
|
| 1850 |
|
/* =========================================================================== |
| 1851 |
|
* Compress as much as possible from the input stream, return the current |
| 1852 |
|
* block state. |
| 1853 |
|
* This function does not perform lazy evaluation of matches and inserts |
| 1854 |
|
* new strings in the dictionary only for unmatched strings or for short |
| 1855 |
|
* matches. It is used only for the fast compression options. |
| 1856 |
|
*/ |
| 1857 |
0 |
local block_state deflate_fast(deflate_state *s, int flush) { |
| 1858 |
|
IPos hash_head; /* head of the hash chain */ |
| 1859 |
|
int bflush; /* set if current block must be flushed */ |
| 1860 |
|
|
| 1861 |
0 |
for (;;) { |
| 1862 |
|
/* Make sure that we always have enough lookahead, except |
| 1863 |
|
* at the end of the input file. We need MAX_MATCH bytes |
| 1864 |
|
* for the next match, plus MIN_MATCH bytes to insert the |
| 1865 |
|
* string following the next match. |
| 1866 |
|
*/ |
| 1867 |
0 |
if (s->lookahead < MIN_LOOKAHEAD) { |
| 1868 |
0 |
fill_window(s); |
| 1869 |
0 |
if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) { |
| 1870 |
0 |
return need_more; |
| 1871 |
|
} |
| 1872 |
0 |
if (s->lookahead == 0) break; /* flush the current block */ |
| 1873 |
0 |
} |
| 1874 |
|
|
| 1875 |
|
/* Insert the string window[strstart .. strstart+2] in the |
| 1876 |
|
* dictionary, and set hash_head to the head of the hash chain: |
| 1877 |
|
*/ |
| 1878 |
0 |
hash_head = NIL; |
| 1879 |
0 |
if (s->lookahead >= MIN_MATCH) { |
| 1880 |
0 |
INSERT_STRING(s, s->strstart, hash_head); |
| 1881 |
0 |
} |
| 1882 |
|
|
| 1883 |
|
/* Find the longest match, discarding those <= prev_length. |
| 1884 |
|
* At this point we have always match_length < MIN_MATCH |
| 1885 |
|
*/ |
| 1886 |
0 |
if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) { |
| 1887 |
|
/* To simplify the code, we prevent matches with the string |
| 1888 |
|
* of window index 0 (in particular we have to avoid a match |
| 1889 |
|
* of the string with itself at the start of the input file). |
| 1890 |
|
*/ |
| 1891 |
0 |
s->match_length = longest_match (s, hash_head); |
| 1892 |
|
/* longest_match() sets match_start */ |
| 1893 |
0 |
} |
| 1894 |
0 |
if (s->match_length >= MIN_MATCH) { |
| 1895 |
|
check_match(s, s->strstart, s->match_start, s->match_length); |
| 1896 |
|
|
| 1897 |
0 |
_tr_tally_dist(s, s->strstart - s->match_start, |
| 1898 |
|
s->match_length - MIN_MATCH, bflush); |
| 1899 |
|
|
| 1900 |
0 |
s->lookahead -= s->match_length; |
| 1901 |
|
|
| 1902 |
|
/* Insert new strings in the hash table only if the match length |
| 1903 |
|
* is not too large. This saves time but degrades compression. |
| 1904 |
|
*/ |
| 1905 |
|
#ifndef FASTEST |
| 1906 |
0 |
if (s->match_length <= s->max_insert_length && |
| 1907 |
0 |
s->lookahead >= MIN_MATCH) { |
| 1908 |
0 |
s->match_length--; /* string at strstart already in table */ |
| 1909 |
0 |
do { |
| 1910 |
0 |
s->strstart++; |
| 1911 |
0 |
INSERT_STRING(s, s->strstart, hash_head); |
| 1912 |
|
/* strstart never exceeds WSIZE-MAX_MATCH, so there are |
| 1913 |
|
* always MIN_MATCH bytes ahead. |
| 1914 |
|
*/ |
| 1915 |
0 |
} while (--s->match_length != 0); |
| 1916 |
0 |
s->strstart++; |
| 1917 |
0 |
} else |
| 1918 |
|
#endif |
| 1919 |
|
{ |
| 1920 |
0 |
s->strstart += s->match_length; |
| 1921 |
0 |
s->match_length = 0; |
| 1922 |
0 |
s->ins_h = s->window[s->strstart]; |
| 1923 |
0 |
UPDATE_HASH(s, s->ins_h, s->window[s->strstart+1]); |
| 1924 |
|
#if MIN_MATCH != 3 |
| 1925 |
|
Call UPDATE_HASH() MIN_MATCH-3 more times |
| 1926 |
|
#endif |
| 1927 |
|
/* If lookahead < MIN_MATCH, ins_h is garbage, but it does not |
| 1928 |
|
* matter since it will be recomputed at next deflate call. |
| 1929 |
|
*/ |
| 1930 |
|
} |
| 1931 |
0 |
} else { |
| 1932 |
|
/* No match, output a literal byte */ |
| 1933 |
|
Tracevv((stderr,"%c", s->window[s->strstart])); |
| 1934 |
0 |
_tr_tally_lit (s, s->window[s->strstart], bflush); |
| 1935 |
0 |
s->lookahead--; |
| 1936 |
0 |
s->strstart++; |
| 1937 |
|
} |
| 1938 |
0 |
if (bflush) FLUSH_BLOCK(s, 0); |
| 1939 |
|
} |
| 1940 |
0 |
s->insert = s->strstart < MIN_MATCH-1 ? s->strstart : MIN_MATCH-1; |
| 1941 |
0 |
if (flush == Z_FINISH) { |
| 1942 |
0 |
FLUSH_BLOCK(s, 1); |
| 1943 |
0 |
return finish_done; |
| 1944 |
|
} |
| 1945 |
0 |
if (s->sym_next) |
| 1946 |
0 |
FLUSH_BLOCK(s, 0); |
| 1947 |
0 |
return block_done; |
| 1948 |
0 |
} |
| 1949 |
|
|
| 1950 |
|
#ifndef FASTEST |
| 1951 |
|
/* =========================================================================== |
| 1952 |
|
* Same as above, but achieves better compression. We use a lazy |
| 1953 |
|
* evaluation for matches: a match is finally adopted only if there is |
| 1954 |
|
* no better match at the next window position. |
| 1955 |
|
*/ |
| 1956 |
37347 |
local block_state deflate_slow(deflate_state *s, int flush) { |
| 1957 |
|
IPos hash_head; /* head of hash chain */ |
| 1958 |
|
int bflush; /* set if current block must be flushed */ |
| 1959 |
|
|
| 1960 |
|
/* Process the input block. */ |
| 1961 |
331753 |
for (;;) { |
| 1962 |
|
/* Make sure that we always have enough lookahead, except |
| 1963 |
|
* at the end of the input file. We need MAX_MATCH bytes |
| 1964 |
|
* for the next match, plus MIN_MATCH bytes to insert the |
| 1965 |
|
* string following the next match. |
| 1966 |
|
*/ |
| 1967 |
331753 |
if (s->lookahead < MIN_LOOKAHEAD) { |
| 1968 |
170290 |
fill_window(s); |
| 1969 |
170290 |
if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) { |
| 1970 |
24307 |
return need_more; |
| 1971 |
|
} |
| 1972 |
145983 |
if (s->lookahead == 0) break; /* flush the current block */ |
| 1973 |
132983 |
} |
| 1974 |
|
|
| 1975 |
|
/* Insert the string window[strstart .. strstart+2] in the |
| 1976 |
|
* dictionary, and set hash_head to the head of the hash chain: |
| 1977 |
|
*/ |
| 1978 |
294446 |
hash_head = NIL; |
| 1979 |
294446 |
if (s->lookahead >= MIN_MATCH) { |
| 1980 |
283166 |
INSERT_STRING(s, s->strstart, hash_head); |
| 1981 |
283166 |
} |
| 1982 |
|
|
| 1983 |
|
/* Find the longest match, discarding those <= prev_length. |
| 1984 |
|
*/ |
| 1985 |
294446 |
s->prev_length = s->match_length, s->prev_match = s->match_start; |
| 1986 |
294446 |
s->match_length = MIN_MATCH-1; |
| 1987 |
|
|
| 1988 |
294446 |
if (hash_head != NIL && s->prev_length < s->max_lazy_match && |
| 1989 |
161329 |
s->strstart - hash_head <= MAX_DIST(s)) { |
| 1990 |
|
/* To simplify the code, we prevent matches with the string |
| 1991 |
|
* of window index 0 (in particular we have to avoid a match |
| 1992 |
|
* of the string with itself at the start of the input file). |
| 1993 |
|
*/ |
| 1994 |
161329 |
s->match_length = longest_match (s, hash_head); |
| 1995 |
|
/* longest_match() sets match_start */ |
| 1996 |
|
|
| 1997 |
164058 |
if (s->match_length <= 5 && (s->strategy == Z_FILTERED |
| 1998 |
|
#if TOO_FAR <= 32767 |
| 1999 |
157489 |
|| (s->match_length == MIN_MATCH && |
| 2000 |
2729 |
s->strstart - s->match_start > TOO_FAR) |
| 2001 |
|
#endif |
| 2002 |
|
)) { |
| 2003 |
|
|
| 2004 |
|
/* If prev_match is also MIN_MATCH, match_start is garbage |
| 2005 |
|
* but we will ignore the current match anyway. |
| 2006 |
|
*/ |
| 2007 |
0 |
s->match_length = MIN_MATCH-1; |
| 2008 |
0 |
} |
| 2009 |
161329 |
} |
| 2010 |
|
/* If there was a match at the previous step and the current |
| 2011 |
|
* match is not better, output the previous match: |
| 2012 |
|
*/ |
| 2013 |
294446 |
if (s->prev_length >= MIN_MATCH && s->match_length <= s->prev_length) { |
| 2014 |
5631 |
uInt max_insert = s->strstart + s->lookahead - MIN_MATCH; |
| 2015 |
|
/* Do not insert strings in hash table beyond this. */ |
| 2016 |
|
|
| 2017 |
|
check_match(s, s->strstart-1, s->prev_match, s->prev_length); |
| 2018 |
|
|
| 2019 |
5631 |
_tr_tally_dist(s, s->strstart -1 - s->prev_match, |
| 2020 |
|
s->prev_length - MIN_MATCH, bflush); |
| 2021 |
|
|
| 2022 |
|
/* Insert in hash table all strings up to the end of the match. |
| 2023 |
|
* strstart-1 and strstart are already inserted. If there is not |
| 2024 |
|
* enough lookahead, the last two strings are not inserted in |
| 2025 |
|
* the hash table. |
| 2026 |
|
*/ |
| 2027 |
5631 |
s->lookahead -= s->prev_length-1; |
| 2028 |
5631 |
s->prev_length -= 2; |
| 2029 |
5631 |
do { |
| 2030 |
206194 |
if (++s->strstart <= max_insert) { |
| 2031 |
204634 |
INSERT_STRING(s, s->strstart, hash_head); |
| 2032 |
204634 |
} |
| 2033 |
206194 |
} while (--s->prev_length != 0); |
| 2034 |
5631 |
s->match_available = 0; |
| 2035 |
5631 |
s->match_length = MIN_MATCH-1; |
| 2036 |
5631 |
s->strstart++; |
| 2037 |
|
|
| 2038 |
5631 |
if (bflush) FLUSH_BLOCK(s, 0); |
| 2039 |
|
|
| 2040 |
294446 |
} else if (s->match_available) { |
| 2041 |
|
/* If there was no match at the previous position, output a |
| 2042 |
|
* single literal. If there was a match but the current match |
| 2043 |
|
* is longer, truncate the previous match to a single literal. |
| 2044 |
|
*/ |
| 2045 |
|
Tracevv((stderr,"%c", s->window[s->strstart-1])); |
| 2046 |
277624 |
_tr_tally_lit(s, s->window[s->strstart-1], bflush); |
| 2047 |
277624 |
if (bflush) { |
| 2048 |
1279 |
FLUSH_BLOCK_ONLY(s, 0); |
| 2049 |
1279 |
} |
| 2050 |
277624 |
s->strstart++; |
| 2051 |
277624 |
s->lookahead--; |
| 2052 |
277624 |
if (s->strm->avail_out == 0) return need_more; |
| 2053 |
277584 |
} else { |
| 2054 |
|
/* There is no previous match to compare with, wait for |
| 2055 |
|
* the next step to decide. |
| 2056 |
|
*/ |
| 2057 |
11191 |
s->match_available = 1; |
| 2058 |
11191 |
s->strstart++; |
| 2059 |
11191 |
s->lookahead--; |
| 2060 |
|
} |
| 2061 |
|
} |
| 2062 |
|
Assert (flush != Z_NO_FLUSH, "no flush?"); |
| 2063 |
13000 |
if (s->match_available) { |
| 2064 |
|
Tracevv((stderr,"%c", s->window[s->strstart-1])); |
| 2065 |
5560 |
_tr_tally_lit(s, s->window[s->strstart-1], bflush); |
| 2066 |
5560 |
s->match_available = 0; |
| 2067 |
5560 |
} |
| 2068 |
13000 |
s->insert = s->strstart < MIN_MATCH-1 ? s->strstart : MIN_MATCH-1; |
| 2069 |
13000 |
if (flush == Z_FINISH) { |
| 2070 |
3640 |
FLUSH_BLOCK(s, 1); |
| 2071 |
2040 |
return finish_done; |
| 2072 |
|
} |
| 2073 |
9360 |
if (s->sym_next) |
| 2074 |
5680 |
FLUSH_BLOCK(s, 0); |
| 2075 |
8960 |
return block_done; |
| 2076 |
37347 |
} |
| 2077 |
|
#endif /* FASTEST */ |
| 2078 |
|
|
| 2079 |
|
#ifdef NOVGZ |
| 2080 |
|
|
| 2081 |
|
/* =========================================================================== |
| 2082 |
|
* For Z_RLE, simply look for runs of bytes, generate matches only of distance |
| 2083 |
|
* one. Do not maintain a hash table. (It will be regenerated if this run of |
| 2084 |
|
* deflate switches away from Z_RLE.) |
| 2085 |
|
*/ |
| 2086 |
|
local block_state deflate_rle(deflate_state *s, int flush) { |
| 2087 |
|
int bflush; /* set if current block must be flushed */ |
| 2088 |
|
uInt prev; /* byte at distance one to match */ |
| 2089 |
|
Bytef *scan, *strend; /* scan goes up to strend for length of run */ |
| 2090 |
|
|
| 2091 |
|
for (;;) { |
| 2092 |
|
/* Make sure that we always have enough lookahead, except |
| 2093 |
|
* at the end of the input file. We need MAX_MATCH bytes |
| 2094 |
|
* for the longest run, plus one for the unrolled loop. |
| 2095 |
|
*/ |
| 2096 |
|
if (s->lookahead <= MAX_MATCH) { |
| 2097 |
|
fill_window(s); |
| 2098 |
|
if (s->lookahead <= MAX_MATCH && flush == Z_NO_FLUSH) { |
| 2099 |
|
return need_more; |
| 2100 |
|
} |
| 2101 |
|
if (s->lookahead == 0) break; /* flush the current block */ |
| 2102 |
|
} |
| 2103 |
|
|
| 2104 |
|
/* See how many times the previous byte repeats */ |
| 2105 |
|
s->match_length = 0; |
| 2106 |
|
if (s->lookahead >= MIN_MATCH && s->strstart > 0) { |
| 2107 |
|
scan = s->window + s->strstart - 1; |
| 2108 |
|
prev = *scan; |
| 2109 |
|
if (prev == *++scan && prev == *++scan && prev == *++scan) { |
| 2110 |
|
strend = s->window + s->strstart + MAX_MATCH; |
| 2111 |
|
do { |
| 2112 |
|
} while (prev == *++scan && prev == *++scan && |
| 2113 |
|
prev == *++scan && prev == *++scan && |
| 2114 |
|
prev == *++scan && prev == *++scan && |
| 2115 |
|
prev == *++scan && prev == *++scan && |
| 2116 |
|
scan < strend); |
| 2117 |
|
s->match_length = MAX_MATCH - (uInt)(strend - scan); |
| 2118 |
|
if (s->match_length > s->lookahead) |
| 2119 |
|
s->match_length = s->lookahead; |
| 2120 |
|
} |
| 2121 |
|
Assert(scan <= s->window + (uInt)(s->window_size - 1), |
| 2122 |
|
"wild scan"); |
| 2123 |
|
} |
| 2124 |
|
|
| 2125 |
|
/* Emit match if have run of MIN_MATCH or longer, else emit literal */ |
| 2126 |
|
if (s->match_length >= MIN_MATCH) { |
| 2127 |
|
check_match(s, s->strstart, s->strstart - 1, s->match_length); |
| 2128 |
|
|
| 2129 |
|
_tr_tally_dist(s, 1, s->match_length - MIN_MATCH, bflush); |
| 2130 |
|
|
| 2131 |
|
s->lookahead -= s->match_length; |
| 2132 |
|
s->strstart += s->match_length; |
| 2133 |
|
s->match_length = 0; |
| 2134 |
|
} else { |
| 2135 |
|
/* No match, output a literal byte */ |
| 2136 |
|
Tracevv((stderr,"%c", s->window[s->strstart])); |
| 2137 |
|
_tr_tally_lit (s, s->window[s->strstart], bflush); |
| 2138 |
|
s->lookahead--; |
| 2139 |
|
s->strstart++; |
| 2140 |
|
} |
| 2141 |
|
if (bflush) FLUSH_BLOCK(s, 0); |
| 2142 |
|
} |
| 2143 |
|
s->insert = 0; |
| 2144 |
|
if (flush == Z_FINISH) { |
| 2145 |
|
FLUSH_BLOCK(s, 1); |
| 2146 |
|
return finish_done; |
| 2147 |
|
} |
| 2148 |
|
if (s->sym_next) |
| 2149 |
|
FLUSH_BLOCK(s, 0); |
| 2150 |
|
return block_done; |
| 2151 |
|
} |
| 2152 |
|
|
| 2153 |
|
/* =========================================================================== |
| 2154 |
|
* For Z_HUFFMAN_ONLY, do not look for matches. Do not maintain a hash table. |
| 2155 |
|
* (It will be regenerated if this run of deflate switches away from Huffman.) |
| 2156 |
|
*/ |
| 2157 |
|
local block_state deflate_huff(deflate_state *s, int flush) { |
| 2158 |
|
int bflush; /* set if current block must be flushed */ |
| 2159 |
|
|
| 2160 |
|
for (;;) { |
| 2161 |
|
/* Make sure that we have a literal to write. */ |
| 2162 |
|
if (s->lookahead == 0) { |
| 2163 |
|
fill_window(s); |
| 2164 |
|
if (s->lookahead == 0) { |
| 2165 |
|
if (flush == Z_NO_FLUSH) |
| 2166 |
|
return need_more; |
| 2167 |
|
break; /* flush the current block */ |
| 2168 |
|
} |
| 2169 |
|
} |
| 2170 |
|
|
| 2171 |
|
/* Output a literal byte */ |
| 2172 |
|
s->match_length = 0; |
| 2173 |
|
Tracevv((stderr,"%c", s->window[s->strstart])); |
| 2174 |
|
_tr_tally_lit (s, s->window[s->strstart], bflush); |
| 2175 |
|
s->lookahead--; |
| 2176 |
|
s->strstart++; |
| 2177 |
|
if (bflush) FLUSH_BLOCK(s, 0); |
| 2178 |
|
} |
| 2179 |
|
s->insert = 0; |
| 2180 |
|
if (flush == Z_FINISH) { |
| 2181 |
|
FLUSH_BLOCK(s, 1); |
| 2182 |
|
return finish_done; |
| 2183 |
|
} |
| 2184 |
|
if (s->sym_next) |
| 2185 |
|
FLUSH_BLOCK(s, 0); |
| 2186 |
|
return block_done; |
| 2187 |
|
} |
| 2188 |
|
|
| 2189 |
|
#endif /* NOVGZ */ |