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