1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/compressionlibs/ziplib/src/zlib/uncompr.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,72 @@
1.4 +/* Portions Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 + * All rights reserved.
1.6 + */
1.7 +
1.8 +/* uncompr.cpp -- decompress a memory buffer
1.9 + * Copyright (C) 1995-2003 Jean-loup Gailly.
1.10 + * For conditions of distribution and use, see copyright notice in zlib.h
1.11 + */
1.12 +
1.13 +/* @(#) $Id$ */
1.14 +
1.15 +#define ZLIB_INTERNAL
1.16 +#include "libzcore.h"
1.17 +
1.18 +/* ===========================================================================
1.19 + Decompresses the source buffer into the destination buffer. sourceLen is
1.20 + the byte length of the source buffer. Upon entry, destLen is the total
1.21 + size of the destination buffer, which must be large enough to hold the
1.22 + entire uncompressed data. (The size of the uncompressed data must have
1.23 + been saved previously by the compressor and transmitted to the decompressor
1.24 + by some mechanism outside the scope of this compression library.)
1.25 + Upon exit, destLen is the actual size of the compressed buffer.
1.26 + This function can be used to decompress a whole file at once if the
1.27 + input file is mmap'ed.
1.28 +
1.29 + uncompress returns Z_OK if success, Z_MEM_ERROR if there was not
1.30 + enough memory, Z_BUF_ERROR if there was not enough room in the output
1.31 + buffer, or Z_DATA_ERROR if the input data was corrupted.
1.32 +*/
1.33 +#ifdef __SYMBIAN32__
1.34 +EXPORT_C int uncompress_r ( Bytef * dest,uLongf * destLen, const Bytef * source,uLong sourceLen)
1.35 +#else
1.36 +int ZEXPORT uncompress (dest, destLen, source, sourceLen)
1.37 + Bytef *dest;
1.38 + uLongf *destLen;
1.39 + const Bytef *source;
1.40 + uLong sourceLen;
1.41 +#endif //__SYMBIAN32__
1.42 +{
1.43 + z_stream stream;
1.44 + int err;
1.45 +
1.46 + stream.next_in = (Bytef*)source;
1.47 + stream.avail_in = (uInt)sourceLen;
1.48 + /* Check for source > 64K on 16-bit machine: */
1.49 + if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
1.50 +
1.51 + stream.next_out = dest;
1.52 + stream.avail_out = (uInt)*destLen;
1.53 + if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
1.54 +
1.55 + stream.zalloc = (alloc_func)0;
1.56 + stream.zfree = (free_func)0;
1.57 +
1.58 + err = inflateInit_r(&stream);
1.59 + if (err != Z_OK) return err;
1.60 +
1.61 + err = inflate_r(&stream, Z_FINISH);
1.62 + if (err != Z_STREAM_END) {
1.63 + inflateEnd_r(&stream);
1.64 + if (err == Z_NEED_DICT || (err == Z_BUF_ERROR && stream.avail_in == 0))
1.65 + return Z_DATA_ERROR;
1.66 + return err;
1.67 + }
1.68 + *destLen = stream.total_out;
1.69 +
1.70 + err = inflateEnd_r(&stream);
1.71 + return err;
1.72 +}
1.73 +
1.74 +
1.75 +