8 #ifndef TINFL_HEADER_INCLUDED 9 #define TINFL_HEADER_INCLUDED 21 #if defined(_M_IX86) || defined(_M_X64) 23 #define MINIZ_USE_UNALIGNED_LOADS_AND_STORES 1 25 #define MINIZ_LITTLE_ENDIAN 1 28 #if defined(_WIN64) || defined(__MINGW64__) || defined(_LP64) || defined(__LP64__) 30 #define MINIZ_HAS_64BIT_REGISTERS 1 35 #define MZ_MACRO_END while (0, 0) 37 #define MZ_MACRO_END while (0) 68 #define TINFL_DECOMPRESS_MEM_TO_MEM_FAILED ((size_t)(-1)) 79 #define TINFL_LZ_DICT_SIZE 32768 93 #define tinfl_init(r) do { (r)->m_state = 0; } MZ_MACRO_END 94 #define tinfl_get_adler32(r) (r)->m_check_adler32 113 #if MINIZ_HAS_64BIT_REGISTERS 114 #define TINFL_USE_64BIT_BITBUF 1 117 #if TINFL_USE_64BIT_BITBUF 119 #define TINFL_BITBUF_SIZE (64) 122 #define TINFL_BITBUF_SIZE (32) 127 mz_uint32 m_state,
m_num_bits,
m_zhdr0,
m_zhdr1,
m_z_adler32,
m_final,
m_type,
m_check_adler32,
m_dist,
m_counter,
m_num_extra,
m_table_sizes[
TINFL_MAX_HUFF_TABLES];
134 #endif // #ifdef TINFL_HEADER_INCLUDED 138 #ifndef TINFL_HEADER_FILE_ONLY 143 #ifdef MINIZ_NO_MALLOC 144 #define MZ_MALLOC(x) NULL 145 #define MZ_FREE(x) x, ((void)0) 146 #define MZ_REALLOC(p, x) NULL 148 #define MZ_MALLOC(x) malloc(x) 149 #define MZ_FREE(x) free(x) 150 #define MZ_REALLOC(p, x) realloc(p, x) 153 #define MZ_MAX(a,b) (((a)>(b))?(a):(b)) 154 #define MZ_MIN(a,b) (((a)<(b))?(a):(b)) 155 #define MZ_CLEAR_OBJ(obj) memset(&(obj), 0, sizeof(obj)) 157 #if MINIZ_USE_UNALIGNED_LOADS_AND_STORES && MINIZ_LITTLE_ENDIAN 158 #define MZ_READ_LE16(p) *((const mz_uint16 *)(p)) 159 #define MZ_READ_LE32(p) *((const mz_uint32 *)(p)) 161 #define MZ_READ_LE16(p) ((mz_uint32)(((const mz_uint8 *)(p))[0]) | ((mz_uint32)(((const mz_uint8 *)(p))[1]) << 8U)) 162 #define MZ_READ_LE32(p) ((mz_uint32)(((const mz_uint8 *)(p))[0]) | ((mz_uint32)(((const mz_uint8 *)(p))[1]) << 8U) | ((mz_uint32)(((const mz_uint8 *)(p))[2]) << 16U) | ((mz_uint32)(((const mz_uint8 *)(p))[3]) << 24U)) 165 #define TINFL_MEMCPY(d, s, l) memcpy(d, s, l) 166 #define TINFL_MEMSET(p, c, l) memset(p, c, l) 168 #define TINFL_CR_BEGIN switch(r->m_state) { case 0: 169 #define TINFL_CR_RETURN(state_index, result) do { status = result; r->m_state = state_index; goto common_exit; case state_index:; } MZ_MACRO_END 170 #define TINFL_CR_RETURN_FOREVER(state_index, result) do { for ( ; ; ) { TINFL_CR_RETURN(state_index, result); } } MZ_MACRO_END 171 #define TINFL_CR_FINISH } 175 #define TINFL_GET_BYTE(state_index, c) do { \ 176 if (pIn_buf_cur >= pIn_buf_end) { \ 178 if (decomp_flags & TINFL_FLAG_HAS_MORE_INPUT) { \ 179 TINFL_CR_RETURN(state_index, TINFL_STATUS_NEEDS_MORE_INPUT); \ 180 if (pIn_buf_cur < pIn_buf_end) { \ 181 c = *pIn_buf_cur++; \ 189 } else c = *pIn_buf_cur++; } MZ_MACRO_END 191 #define TINFL_NEED_BITS(state_index, n) do { mz_uint c; TINFL_GET_BYTE(state_index, c); bit_buf |= (((tinfl_bit_buf_t)c) << num_bits); num_bits += 8; } while (num_bits < (mz_uint)(n)) 192 #define TINFL_SKIP_BITS(state_index, n) do { if (num_bits < (mz_uint)(n)) { TINFL_NEED_BITS(state_index, n); } bit_buf >>= (n); num_bits -= (n); } MZ_MACRO_END 193 #define TINFL_GET_BITS(state_index, b, n) do { if (num_bits < (mz_uint)(n)) { TINFL_NEED_BITS(state_index, n); } b = bit_buf & ((1 << (n)) - 1); bit_buf >>= (n); num_bits -= (n); } MZ_MACRO_END 199 #define TINFL_HUFF_BITBUF_FILL(state_index, pHuff) \ 201 temp = (pHuff)->m_look_up[bit_buf & (TINFL_FAST_LOOKUP_SIZE - 1)]; \ 203 code_len = temp >> 9; \ 204 if ((code_len) && (num_bits >= code_len)) \ 206 } else if (num_bits > TINFL_FAST_LOOKUP_BITS) { \ 207 code_len = TINFL_FAST_LOOKUP_BITS; \ 209 temp = (pHuff)->m_tree[~temp + ((bit_buf >> code_len++) & 1)]; \ 210 } while ((temp < 0) && (num_bits >= (code_len + 1))); if (temp >= 0) break; \ 211 } TINFL_GET_BYTE(state_index, c); bit_buf |= (((tinfl_bit_buf_t)c) << num_bits); num_bits += 8; \ 212 } while (num_bits < 15); 218 #define TINFL_HUFF_DECODE(state_index, sym, pHuff) do { \ 219 int temp; mz_uint code_len, c; \ 220 if (num_bits < 15) { \ 221 if ((pIn_buf_end - pIn_buf_cur) < 2) { \ 222 TINFL_HUFF_BITBUF_FILL(state_index, pHuff); \ 224 bit_buf |= (((tinfl_bit_buf_t)pIn_buf_cur[0]) << num_bits) | (((tinfl_bit_buf_t)pIn_buf_cur[1]) << (num_bits + 8)); pIn_buf_cur += 2; num_bits += 16; \ 227 if ((temp = (pHuff)->m_look_up[bit_buf & (TINFL_FAST_LOOKUP_SIZE - 1)]) >= 0) \ 228 code_len = temp >> 9, temp &= 511; \ 230 code_len = TINFL_FAST_LOOKUP_BITS; do { temp = (pHuff)->m_tree[~temp + ((bit_buf >> code_len++) & 1)]; } while (temp < 0); \ 231 } sym = temp; bit_buf >>= code_len; num_bits -= code_len; } MZ_MACRO_END 235 static const int s_length_base[31] = { 3,4,5,6,7,8,9,10,11,13, 15,17,19,23,27,31,35,43,51,59, 67,83,99,115,131,163,195,227,258,0,0 };
236 static const int s_length_extra[31]= { 0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0,0,0 };
237 static const int s_dist_base[32] = { 1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193, 257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0};
238 static const int s_dist_extra[32] = { 0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13};
239 static const mz_uint8 s_length_dezigzag[19] = { 16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15 };
240 static const int s_min_table_sizes[3] = { 257, 1, 4 };
243 const mz_uint8 *pIn_buf_cur = pIn_buf_next, *
const pIn_buf_end = pIn_buf_next + *pIn_buf_size;
244 mz_uint8 *pOut_buf_cur = pOut_buf_next, *
const pOut_buf_end = pOut_buf_next + *pOut_buf_size;
248 if (((out_buf_size_mask + 1) & out_buf_size_mask) || (pOut_buf_next < pOut_buf_start)) { *pIn_buf_size = *pOut_buf_size = 0;
return TINFL_STATUS_BAD_PARAM; }
270 while ((counter) && (num_bits))
281 while (pIn_buf_cur >= pIn_buf_end)
292 n =
MZ_MIN(
MZ_MIN((
size_t)(pOut_buf_end - pOut_buf_cur), (
size_t)(pIn_buf_end - pIn_buf_cur)), counter);
293 TINFL_MEMCPY(pOut_buf_cur, pIn_buf_cur, n); pIn_buf_cur += n; pOut_buf_cur += n; counter -= (
mz_uint)n;
306 for ( i = 0; i <= 143; ++i) *p++ = 8;
for ( ; i <= 255; ++i) *p++ = 9;
for ( ; i <= 279; ++i) *p++ = 7;
for ( ; i <= 287; ++i) *p++ = 8;
320 used_syms = 0, total = 0; next_code[0] = next_code[1] = 0;
321 for (i = 1; i <= 15; ++i) { used_syms += total_syms[i]; next_code[i + 1] = (total = ((total + total_syms[i]) << 1)); }
322 if ((65536 != total) && (used_syms > 1))
328 mz_uint rev_code = 0, l, cur_code, code_size = pTable->
m_code_size[sym_index];
if (!code_size)
continue;
329 cur_code = next_code[code_size]++;
for (l = code_size; l > 0; l--, cur_code >>= 1) rev_code = (rev_code << 1) | (cur_code & 1);
336 tree_cur -= ((rev_code >>= 1) & 1);
337 if (!pTable->
m_tree[-tree_cur - 1]) { pTable->
m_tree[-tree_cur - 1] = (
mz_int16)tree_next; tree_cur = tree_next; tree_next -= 2; }
else tree_cur = pTable->
m_tree[-tree_cur - 1];
339 tree_cur -= ((rev_code >>= 1) & 1); pTable->
m_tree[-tree_cur - 1] = (
mz_int16)sym_index;
346 if ((dist == 16) && (!counter))
350 num_extra =
"\02\03\07"[dist - 16];
TINFL_GET_BITS(18, s, num_extra); s +=
"\03\03\013"[dist - 16];
367 if (((pIn_buf_end - pIn_buf_cur) < 4) || ((pOut_buf_end - pOut_buf_cur) < 2))
373 *pOut_buf_cur++ = (
mz_uint8)counter;
378 #if TINFL_USE_64BIT_BITBUF 384 code_len = sym2 >> 9;
389 counter = sym2; bit_buf >>= code_len; num_bits -= code_len;
393 #if !TINFL_USE_64BIT_BITBUF 397 code_len = sym2 >> 9;
402 bit_buf >>= code_len; num_bits -= code_len;
404 pOut_buf_cur[0] = (
mz_uint8)counter;
415 if ((counter &= 511) == 256)
break;
417 num_extra = s_length_extra[counter - 257]; counter = s_length_base[counter - 257];
418 if (num_extra) {
mz_uint extra_bits;
TINFL_GET_BITS(25, extra_bits, num_extra); counter += extra_bits; }
421 num_extra = s_dist_extra[dist]; dist = s_dist_base[dist];
422 if (num_extra) {
mz_uint extra_bits;
TINFL_GET_BITS(27, extra_bits, num_extra); dist += extra_bits; }
424 dist_from_out_buf_start = pOut_buf_cur - pOut_buf_start;
430 pSrc = pOut_buf_start + ((dist_from_out_buf_start - dist) & out_buf_size_mask);
432 if ((
MZ_MAX(pOut_buf_cur, pSrc) + counter) > pOut_buf_end)
438 *pOut_buf_cur++ = pOut_buf_start[(dist_from_out_buf_start++ - dist) & out_buf_size_mask];
442 #if MINIZ_USE_UNALIGNED_LOADS_AND_STORES 443 else if ((counter >= 9) && (counter <= dist))
445 const mz_uint8 *pSrc_end = pSrc + (counter & ~7);
452 }
while ((pSrc += 8) < pSrc_end);
453 if ((counter &= 7) < 3)
457 pOut_buf_cur[0] = pSrc[0];
459 pOut_buf_cur[1] = pSrc[1];
460 pOut_buf_cur += counter;
469 pOut_buf_cur[0] = pSrc[0];
470 pOut_buf_cur[1] = pSrc[1];
471 pOut_buf_cur[2] = pSrc[2];
472 pOut_buf_cur += 3; pSrc += 3;
473 }
while ((
int)(counter -= 3) > 2);
474 if ((
int)counter > 0)
476 pOut_buf_cur[0] = pSrc[0];
477 if ((
int)counter > 1)
478 pOut_buf_cur[1] = pSrc[1];
479 pOut_buf_cur += counter;
484 if (decomp_flags & TINFL_FLAG_PARSE_ZLIB_HEADER)
494 *pIn_buf_size = pIn_buf_cur - pIn_buf_next; *pOut_buf_size = pOut_buf_cur - pOut_buf_next;
497 const mz_uint8 *ptr = pOut_buf_next;
size_t buf_len = *pOut_buf_size;
502 for (i = 0; i + 7 < block_len; i += 8, ptr += 8)
504 s1 += ptr[0], s2 += s1; s1 += ptr[1], s2 += s1; s1 += ptr[2], s2 += s1; s1 += ptr[3], s2 += s1;
505 s1 += ptr[4], s2 += s1; s1 += ptr[5], s2 += s1; s1 += ptr[6], s2 += s1; s1 += ptr[7], s2 += s1;
507 for ( ; i < block_len; ++i) s1 += *ptr++, s2 += s1;
508 s1 %= 65521U, s2 %= 65521U; buf_len -= block_len; block_len = 5552;
518 tinfl_decompressor decomp;
void *pBuf = NULL, *pNew_buf;
size_t src_buf_ofs = 0, out_buf_capacity = 0;
523 size_t src_buf_size = src_buf_len - src_buf_ofs, dst_buf_size = out_buf_capacity - *pOut_len, new_out_buf_capacity;
528 MZ_FREE(pBuf); *pOut_len = 0;
return NULL;
530 src_buf_ofs += src_buf_size;
531 *pOut_len += dst_buf_size;
533 new_out_buf_capacity = out_buf_capacity * 2;
if (new_out_buf_capacity < 128) new_out_buf_capacity = 128;
534 pNew_buf =
MZ_REALLOC(pBuf, new_out_buf_capacity);
537 MZ_FREE(pBuf); *pOut_len = 0;
return NULL;
539 pBuf = pNew_buf; out_buf_capacity = new_out_buf_capacity;
561 size_t in_buf_size = *pIn_buf_size - in_buf_ofs, dst_buf_size =
TINFL_LZ_DICT_SIZE - dict_ofs;
564 in_buf_ofs += in_buf_size;
565 if ((dst_buf_size) && (!(*pPut_buf_func)(pDict + dict_ofs, (
int)dst_buf_size, pPut_buf_user)))
575 *pIn_buf_size = in_buf_ofs;
581 printf(
"tinflDiag()\n");
583 #ifdef MINIZ_LITTLE_ENDIAN 584 printf(
"MINIZ_LITTLE_ENDIAN.\n");
587 #ifdef MINIZ_USE_UNALIGNED_LOADS_AND_STORES 588 printf(
"MINIZ_USE_UNALIGNED_LOADS_AND_STORES.\n");
591 #ifdef MINIZ_HAS_64BIT_REGISTERS 592 printf(
"MINIZ_HAS_64BIT_REGISTERS.\n");
596 #endif // #ifndef TINFL_HEADER_FILE_ONLY
#define TINFL_CR_RETURN_FOREVER(state_index, result)
#define TINFL_DECOMPRESS_MEM_TO_MEM_FAILED
tinfl_status tinfl_decompress(tinfl_decompressor *r, const mz_uint8 *pIn_buf_next, size_t *pIn_buf_size, mz_uint8 *pOut_buf_start, mz_uint8 *pOut_buf_next, size_t *pOut_buf_size, const mz_uint32 decomp_flags)
#define TINFL_HUFF_DECODE(state_index, sym, pHuff)
#define TINFL_MEMSET(p, c, l)
#define TINFL_GET_BYTE(state_index, c)
mz_int16 m_tree[TINFL_MAX_HUFF_SYMBOLS_0 *2]
int(* tinfl_put_buf_func_ptr)(const void *pBuf, int len, void *pUser)
#define TINFL_SKIP_BITS(state_index, n)
mz_int16 m_look_up[TINFL_FAST_LOOKUP_SIZE]
#define TINFL_LZ_DICT_SIZE
size_t m_dist_from_out_buf_start
tinfl_huff_table m_tables[TINFL_MAX_HUFF_TABLES]
mz_uint8 m_len_codes[TINFL_MAX_HUFF_SYMBOLS_0+TINFL_MAX_HUFF_SYMBOLS_1+137]
mz_uint8 m_code_size[TINFL_MAX_HUFF_SYMBOLS_0]
#define TINFL_MEMCPY(d, s, l)
size_t tinfl_decompress_mem_to_mem(void *pOut_buf, size_t out_buf_len, const void *pSrc_buf, size_t src_buf_len, int flags)
#define TINFL_GET_BITS(state_index, b, n)
tinfl_bit_buf_t m_bit_buf
mz_uint32 m_check_adler32
mz_uint32 m_table_sizes[TINFL_MAX_HUFF_TABLES]
int tinfl_decompress_mem_to_callback(const void *pIn_buf, size_t *pIn_buf_size, tinfl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags)
#define TINFL_CR_RETURN(state_index, result)
#define MZ_CLEAR_OBJ(obj)
void * tinfl_decompress_mem_to_heap(const void *pSrc_buf, size_t src_buf_len, size_t *pOut_len, int flags)
mz_uint32 tinfl_bit_buf_t