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