1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/compressionlibs/ziplib/test/oldezlib/EZLib/compress.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,68 @@
1.4 +/* compress.c -- compress 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 + Compresses the source buffer into the destination buffer. The level
1.15 + parameter has the same meaning as in deflateInit. sourceLen is the byte
1.16 + length of the source buffer. Upon entry, destLen is the total size of the
1.17 + destination buffer, which must be at least 0.1% larger than sourceLen plus
1.18 + 12 bytes. Upon exit, destLen is the actual size of the compressed buffer.
1.19 +
1.20 + compress2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
1.21 + memory, Z_BUF_ERROR if there was not enough room in the output buffer,
1.22 + Z_STREAM_ERROR if the level parameter is invalid.
1.23 +*/
1.24 +EXPORT_C int ZEXPORT compress2 (
1.25 + Bytef *dest,
1.26 + uLongf *destLen,
1.27 + const Bytef *source,
1.28 + uLong sourceLen,
1.29 + int level)
1.30 +{
1.31 + z_stream stream;
1.32 + int err;
1.33 +
1.34 + stream.next_in = (Bytef*)source;
1.35 + stream.avail_in = (uInt)sourceLen;
1.36 +#ifdef MAXSEG_64K
1.37 + /* Check for source > 64K on 16-bit machine: */
1.38 + if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
1.39 +#endif
1.40 + stream.next_out = dest;
1.41 + stream.avail_out = (uInt)*destLen;
1.42 +// if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR; Commented out by Markr to alleviate warnings
1.43 +
1.44 + stream.zalloc = (alloc_func)0;
1.45 + stream.zfree = (free_func)0;
1.46 + stream.opaque = (voidpf)0;
1.47 +
1.48 + err = deflateInit(&stream, level);
1.49 + if (err != Z_OK) return err;
1.50 +
1.51 + err = deflate(&stream, Z_FINISH);
1.52 + if (err != Z_STREAM_END) {
1.53 + deflateEnd(&stream);
1.54 + return err == Z_OK ? Z_BUF_ERROR : err;
1.55 + }
1.56 + *destLen = stream.total_out;
1.57 +
1.58 + err = deflateEnd(&stream);
1.59 + return err;
1.60 +}
1.61 +
1.62 +/* ===========================================================================
1.63 + */
1.64 +EXPORT_C int ZEXPORT compress (
1.65 + Bytef *dest,
1.66 + uLongf *destLen,
1.67 + const Bytef *source,
1.68 + uLong sourceLen)
1.69 +{
1.70 + return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
1.71 +}