2 * bzip2 is written by Julian Seward <jseward@bzip.org>.
3 * Adapted for busybox by Denys Vlasenko <vda.linux@googlemail.com>.
4 * See README and LICENSE files in this directory for more information.
7 /*-------------------------------------------------------------*/
8 /*--- Library top-level functions. ---*/
10 /*-------------------------------------------------------------*/
12 /* ------------------------------------------------------------------
13 This file is part of bzip2/libbzip2, a program and library for
14 lossless, block-sorting data compression.
16 bzip2/libbzip2 version 1.0.4 of 20 December 2006
17 Copyright (C) 1996-2006 Julian Seward <jseward@bzip.org>
19 Please read the WARNING, DISCLAIMER and PATENTS sections in the
22 This program is released under the terms of the license contained
24 ------------------------------------------------------------------ */
27 * 0.9.0 -- original version.
28 * 0.9.0a/b -- no changes in this file.
29 * 0.9.0c -- made zero-length BZ_FLUSH work correctly in bzCompress().
30 * fixed bzWrite/bzRead to ignore zero-length requests.
31 * fixed bzread to correctly handle read requests after EOF.
32 * wrong parameter order in call to bzDecompressInit in
33 * bzBuffToBuffDecompress. Fixed.
36 /* #include "bzlib_private.h" */
38 /*---------------------------------------------------*/
39 /*--- Compression stuff ---*/
40 /*---------------------------------------------------*/
42 /*---------------------------------------------------*/
45 void bz_assert_fail(int errcode)
47 /* if (errcode == 1007) bb_error_msg_and_die("probably bad RAM"); */
48 bb_error_msg_and_die("internal error %d", errcode);
52 /*---------------------------------------------------*/
54 void prepare_new_block(EState* s)
60 BZ_INITIALISE_CRC(s->blockCRC);
61 /* inlined memset would be nice to have here */
62 for (i = 0; i < 256; i++)
68 /*---------------------------------------------------*/
71 void init_RL(EState* s)
79 Bool isempty_RL(EState* s)
81 if (s->state_in_ch < 256 && s->state_in_len > 0)
87 /*---------------------------------------------------*/
89 void BZ2_bzCompressInit(bz_stream *strm, int blockSize100k)
94 s = xzalloc(sizeof(EState));
97 n = 100000 * blockSize100k;
98 s->arr1 = xmalloc(n * sizeof(uint32_t));
99 s->mtfv = (uint16_t*)s->arr1;
100 s->ptr = (uint32_t*)s->arr1;
101 s->arr2 = xmalloc((n + BZ_N_OVERSHOOT) * sizeof(uint32_t));
102 s->block = (uint8_t*)s->arr2;
103 s->ftab = xmalloc(65537 * sizeof(uint32_t));
105 s->crc32table = crc32_filltable(NULL, 1);
107 s->state = BZ_S_INPUT;
108 s->mode = BZ_M_RUNNING;
109 s->blockSize100k = blockSize100k;
110 s->nblockMAX = n - 19;
113 /*strm->total_in = 0;*/
116 prepare_new_block(s);
120 /*---------------------------------------------------*/
122 void add_pair_to_block(EState* s)
125 uint8_t ch = (uint8_t)(s->state_in_ch);
126 for (i = 0; i < s->state_in_len; i++) {
127 BZ_UPDATE_CRC(s, s->blockCRC, ch);
129 s->inUse[s->state_in_ch] = 1;
130 switch (s->state_in_len) {
132 s->block[s->nblock] = (uint8_t)ch; s->nblock++;
135 s->block[s->nblock] = (uint8_t)ch; s->nblock++;
138 s->block[s->nblock] = (uint8_t)ch; s->nblock++;
141 s->inUse[s->state_in_len - 4] = 1;
142 s->block[s->nblock] = (uint8_t)ch; s->nblock++;
143 s->block[s->nblock] = (uint8_t)ch; s->nblock++;
144 s->block[s->nblock] = (uint8_t)ch; s->nblock++;
145 s->block[s->nblock] = (uint8_t)ch; s->nblock++;
146 s->block[s->nblock] = (uint8_t)(s->state_in_len - 4);
153 /*---------------------------------------------------*/
155 void flush_RL(EState* s)
157 if (s->state_in_ch < 256) add_pair_to_block(s);
162 /*---------------------------------------------------*/
163 #define ADD_CHAR_TO_BLOCK(zs, zchh0) \
165 uint32_t zchh = (uint32_t)(zchh0); \
166 /*-- fast track the common case --*/ \
167 if (zchh != zs->state_in_ch && zs->state_in_len == 1) { \
168 uint8_t ch = (uint8_t)(zs->state_in_ch); \
169 BZ_UPDATE_CRC(zs, zs->blockCRC, ch); \
170 zs->inUse[zs->state_in_ch] = 1; \
171 zs->block[zs->nblock] = (uint8_t)ch; \
173 zs->state_in_ch = zchh; \
176 /*-- general, uncommon cases --*/ \
177 if (zchh != zs->state_in_ch || zs->state_in_len == 255) { \
178 if (zs->state_in_ch < 256) \
179 add_pair_to_block(zs); \
180 zs->state_in_ch = zchh; \
181 zs->state_in_len = 1; \
183 zs->state_in_len++; \
188 /*---------------------------------------------------*/
190 void /*Bool*/ copy_input_until_stop(EState* s)
192 /*Bool progress_in = False;*/
194 #ifdef SAME_CODE_AS_BELOW
195 if (s->mode == BZ_M_RUNNING) {
196 /*-- fast track the common case --*/
199 if (s->strm->avail_in == 0) break;
200 /*-- block full? --*/
201 if (s->nblock >= s->nblockMAX) break;
202 /*progress_in = True;*/
203 ADD_CHAR_TO_BLOCK(s, (uint32_t)(*(uint8_t*)(s->strm->next_in)));
206 /*s->strm->total_in++;*/
211 /*-- general, uncommon case --*/
214 if (s->strm->avail_in == 0) break;
215 /*-- block full? --*/
216 if (s->nblock >= s->nblockMAX) break;
217 //# /*-- flush/finish end? --*/
218 //# if (s->avail_in_expect == 0) break;
219 /*progress_in = True;*/
220 ADD_CHAR_TO_BLOCK(s, *(uint8_t*)(s->strm->next_in));
223 /*s->strm->total_in++;*/
224 //# s->avail_in_expect--;
227 /*return progress_in;*/
231 /*---------------------------------------------------*/
233 void /*Bool*/ copy_output_until_stop(EState* s)
235 /*Bool progress_out = False;*/
238 /*-- no output space? --*/
239 if (s->strm->avail_out == 0) break;
241 /*-- block done? --*/
242 if (s->state_out_pos >= s->numZ) break;
244 /*progress_out = True;*/
245 *(s->strm->next_out) = s->zbits[s->state_out_pos];
247 s->strm->avail_out--;
249 s->strm->total_out++;
251 /*return progress_out;*/
255 /*---------------------------------------------------*/
257 void /*Bool*/ handle_compress(bz_stream *strm)
259 /*Bool progress_in = False;*/
260 /*Bool progress_out = False;*/
261 EState* s = strm->state;
264 if (s->state == BZ_S_OUTPUT) {
265 /*progress_out |=*/ copy_output_until_stop(s);
266 if (s->state_out_pos < s->numZ) break;
267 if (s->mode == BZ_M_FINISHING
268 //# && s->avail_in_expect == 0
269 && s->strm->avail_in == 0
272 prepare_new_block(s);
273 s->state = BZ_S_INPUT;
274 #ifdef FLUSH_IS_UNUSED
275 if (s->mode == BZ_M_FLUSHING
276 && s->avail_in_expect == 0
282 if (s->state == BZ_S_INPUT) {
283 /*progress_in |=*/ copy_input_until_stop(s);
284 //#if (s->mode != BZ_M_RUNNING && s->avail_in_expect == 0) {
285 if (s->mode != BZ_M_RUNNING && s->strm->avail_in == 0) {
287 BZ2_compressBlock(s, (s->mode == BZ_M_FINISHING));
288 s->state = BZ_S_OUTPUT;
290 if (s->nblock >= s->nblockMAX) {
291 BZ2_compressBlock(s, 0);
292 s->state = BZ_S_OUTPUT;
294 if (s->strm->avail_in == 0) {
300 /*return progress_in || progress_out;*/
304 /*---------------------------------------------------*/
306 int BZ2_bzCompress(bz_stream *strm, int action)
315 if (action == BZ_RUN) {
316 /*progress =*/ handle_compress(strm);
317 /*return progress ? BZ_RUN_OK : BZ_PARAM_ERROR;*/
320 #ifdef FLUSH_IS_UNUSED
322 if (action == BZ_FLUSH) {
323 //#s->avail_in_expect = strm->avail_in;
324 s->mode = BZ_M_FLUSHING;
325 goto case_BZ_M_FLUSHING;
329 /*if (action == BZ_FINISH)*/ {
330 //#s->avail_in_expect = strm->avail_in;
331 s->mode = BZ_M_FINISHING;
332 goto case_BZ_M_FINISHING;
335 #ifdef FLUSH_IS_UNUSED
338 /*if (s->avail_in_expect != s->strm->avail_in)
339 return BZ_SEQUENCE_ERROR;*/
340 /*progress =*/ handle_compress(strm);
341 if (s->avail_in_expect > 0 || !isempty_RL(s) || s->state_out_pos < s->numZ)
343 s->mode = BZ_M_RUNNING;
348 /*case BZ_M_FINISHING:*/
350 /*if (s->avail_in_expect != s->strm->avail_in)
351 return BZ_SEQUENCE_ERROR;*/
352 /*progress =*/ handle_compress(strm);
353 /*if (!progress) return BZ_SEQUENCE_ERROR;*/
354 //#if (s->avail_in_expect > 0 || !isempty_RL(s) || s->state_out_pos < s->numZ)
355 //# return BZ_FINISH_OK;
356 if (s->strm->avail_in > 0 || !isempty_RL(s) || s->state_out_pos < s->numZ)
358 /*s->mode = BZ_M_IDLE;*/
359 return BZ_STREAM_END;
361 /* return BZ_OK; --not reached--*/
365 /*---------------------------------------------------*/
367 void BZ2_bzCompressEnd(bz_stream *strm)
380 /*---------------------------------------------------*/
381 /*--- Misc convenience stuff ---*/
382 /*---------------------------------------------------*/
384 /*---------------------------------------------------*/
385 #ifdef EXAMPLE_CODE_FOR_MEM_TO_MEM_COMPRESSION
387 int BZ2_bzBuffToBuffCompress(char* dest,
388 unsigned int* destLen,
390 unsigned int sourceLen,
396 if (dest == NULL || destLen == NULL ||
398 blockSize100k < 1 || blockSize100k > 9)
399 return BZ_PARAM_ERROR;
401 BZ2_bzCompressInit(&strm, blockSize100k);
403 strm.next_in = source;
404 strm.next_out = dest;
405 strm.avail_in = sourceLen;
406 strm.avail_out = *destLen;
408 ret = BZ2_bzCompress(&strm, BZ_FINISH);
409 if (ret == BZ_FINISH_OK) goto output_overflow;
410 if (ret != BZ_STREAM_END) goto errhandler;
412 /* normal termination */
413 *destLen -= strm.avail_out;
414 BZ2_bzCompressEnd(&strm);
418 BZ2_bzCompressEnd(&strm);
419 return BZ_OUTBUFF_FULL;
422 BZ2_bzCompressEnd(&strm);
427 /*-------------------------------------------------------------*/
428 /*--- end bzlib.c ---*/
429 /*-------------------------------------------------------------*/