sl@0
|
1 |
/* uncompr.c -- decompress a memory buffer
|
sl@0
|
2 |
* Copyright (C) 1995-1998 Jean-loup Gailly.
|
sl@0
|
3 |
* For conditions of distribution and use, see copyright notice in zlib.h
|
sl@0
|
4 |
*/
|
sl@0
|
5 |
|
sl@0
|
6 |
/* @(#) $Id$ */
|
sl@0
|
7 |
|
sl@0
|
8 |
#include "zlib.h"
|
sl@0
|
9 |
|
sl@0
|
10 |
/* ===========================================================================
|
sl@0
|
11 |
Decompresses the source buffer into the destination buffer. sourceLen is
|
sl@0
|
12 |
the byte length of the source buffer. Upon entry, destLen is the total
|
sl@0
|
13 |
size of the destination buffer, which must be large enough to hold the
|
sl@0
|
14 |
entire uncompressed data. (The size of the uncompressed data must have
|
sl@0
|
15 |
been saved previously by the compressor and transmitted to the decompressor
|
sl@0
|
16 |
by some mechanism outside the scope of this compression library.)
|
sl@0
|
17 |
Upon exit, destLen is the actual size of the compressed buffer.
|
sl@0
|
18 |
This function can be used to decompress a whole file at once if the
|
sl@0
|
19 |
input file is mmap'ed.
|
sl@0
|
20 |
|
sl@0
|
21 |
uncompress returns Z_OK if success, Z_MEM_ERROR if there was not
|
sl@0
|
22 |
enough memory, Z_BUF_ERROR if there was not enough room in the output
|
sl@0
|
23 |
buffer, or Z_DATA_ERROR if the input data was corrupted.
|
sl@0
|
24 |
*/
|
sl@0
|
25 |
int ZEXPORT uncompress (Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen)
|
sl@0
|
26 |
{
|
sl@0
|
27 |
z_stream stream;
|
sl@0
|
28 |
int err;
|
sl@0
|
29 |
|
sl@0
|
30 |
stream.next_in = (Bytef*)source;
|
sl@0
|
31 |
stream.avail_in = (uInt)sourceLen;
|
sl@0
|
32 |
/* Check for source > 64K on 16-bit machine: */
|
sl@0
|
33 |
if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
|
sl@0
|
34 |
|
sl@0
|
35 |
stream.next_out = dest;
|
sl@0
|
36 |
stream.avail_out = (uInt)*destLen;
|
sl@0
|
37 |
if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
|
sl@0
|
38 |
|
sl@0
|
39 |
stream.zalloc = (alloc_func)0;
|
sl@0
|
40 |
stream.zfree = (free_func)0;
|
sl@0
|
41 |
|
sl@0
|
42 |
err = inflateInit(&stream);
|
sl@0
|
43 |
if (err != Z_OK) return err;
|
sl@0
|
44 |
|
sl@0
|
45 |
err = inflate(&stream, Z_FINISH);
|
sl@0
|
46 |
if (err != Z_STREAM_END) {
|
sl@0
|
47 |
inflateEnd(&stream);
|
sl@0
|
48 |
return err == Z_OK ? Z_BUF_ERROR : err;
|
sl@0
|
49 |
}
|
sl@0
|
50 |
*destLen = stream.total_out;
|
sl@0
|
51 |
|
sl@0
|
52 |
err = inflateEnd(&stream);
|
sl@0
|
53 |
return err;
|
sl@0
|
54 |
}
|