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