sl@0: /* Portions Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: */ sl@0: sl@0: /* uncompr.cpp -- decompress a memory buffer sl@0: * Copyright (C) 1995-2003 Jean-loup Gailly. sl@0: * For conditions of distribution and use, see copyright notice in zlib.h sl@0: */ sl@0: sl@0: /* @(#) $Id$ */ sl@0: sl@0: #define ZLIB_INTERNAL sl@0: #include "libzcore.h" sl@0: sl@0: /* =========================================================================== sl@0: Decompresses the source buffer into the destination buffer. sourceLen is sl@0: the byte length of the source buffer. Upon entry, destLen is the total sl@0: size of the destination buffer, which must be large enough to hold the sl@0: entire uncompressed data. (The size of the uncompressed data must have sl@0: been saved previously by the compressor and transmitted to the decompressor sl@0: by some mechanism outside the scope of this compression library.) sl@0: Upon exit, destLen is the actual size of the compressed buffer. sl@0: This function can be used to decompress a whole file at once if the sl@0: input file is mmap'ed. sl@0: sl@0: uncompress returns Z_OK if success, Z_MEM_ERROR if there was not sl@0: enough memory, Z_BUF_ERROR if there was not enough room in the output sl@0: buffer, or Z_DATA_ERROR if the input data was corrupted. sl@0: */ sl@0: #ifdef __SYMBIAN32__ sl@0: EXPORT_C int uncompress_r ( Bytef * dest,uLongf * destLen, const Bytef * source,uLong sourceLen) sl@0: #else sl@0: int ZEXPORT uncompress (dest, destLen, source, sourceLen) sl@0: Bytef *dest; sl@0: uLongf *destLen; sl@0: const Bytef *source; sl@0: uLong sourceLen; sl@0: #endif //__SYMBIAN32__ sl@0: { sl@0: z_stream stream; sl@0: int err; sl@0: sl@0: stream.next_in = (Bytef*)source; sl@0: stream.avail_in = (uInt)sourceLen; sl@0: /* Check for source > 64K on 16-bit machine: */ sl@0: if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR; sl@0: sl@0: stream.next_out = dest; sl@0: stream.avail_out = (uInt)*destLen; sl@0: if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR; sl@0: sl@0: stream.zalloc = (alloc_func)0; sl@0: stream.zfree = (free_func)0; sl@0: sl@0: err = inflateInit_r(&stream); sl@0: if (err != Z_OK) return err; sl@0: sl@0: err = inflate_r(&stream, Z_FINISH); sl@0: if (err != Z_STREAM_END) { sl@0: inflateEnd_r(&stream); sl@0: if (err == Z_NEED_DICT || (err == Z_BUF_ERROR && stream.avail_in == 0)) sl@0: return Z_DATA_ERROR; sl@0: return err; sl@0: } sl@0: *destLen = stream.total_out; sl@0: sl@0: err = inflateEnd_r(&stream); sl@0: return err; sl@0: } sl@0: sl@0: sl@0: