1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/compressionlibs/ziplib/src/zlib/compress.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,103 @@
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 +/* compress.cpp -- compress 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 + Compresses the source buffer into the destination buffer. The level
1.20 + parameter has the same meaning as in deflateInit. sourceLen is the byte
1.21 + length of the source buffer. Upon entry, destLen is the total size of the
1.22 + destination buffer, which must be at least 0.1% larger than sourceLen plus
1.23 + 12 bytes. Upon exit, destLen is the actual size of the compressed buffer.
1.24 +
1.25 + compress2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
1.26 + memory, Z_BUF_ERROR if there was not enough room in the output buffer,
1.27 + Z_STREAM_ERROR if the level parameter is invalid.
1.28 +*/
1.29 +
1.30 +#ifdef __SYMBIAN32__
1.31 +EXPORT_C int compress2_r (Bytef * dest, uLongf * destLen,const Bytef * source,uLong sourceLen,int level)
1.32 +#else
1.33 +int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
1.34 + Bytef *dest;
1.35 + uLongf *destLen;
1.36 + const Bytef *source;
1.37 + uLong sourceLen;
1.38 + int level;
1.39 +#endif //__SYMBIAN32__
1.40 +{
1.41 + z_stream stream;
1.42 + int err;
1.43 +
1.44 + stream.next_in = (Bytef*)source;
1.45 + stream.avail_in = (uInt)sourceLen;
1.46 +#ifdef MAXSEG_64K
1.47 + /* Check for source > 64K on 16-bit machine: */
1.48 + if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
1.49 +#endif
1.50 + stream.next_out = dest;
1.51 + stream.avail_out = (uInt)*destLen;
1.52 + if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
1.53 +
1.54 + stream.zalloc = (alloc_func)0;
1.55 + stream.zfree = (free_func)0;
1.56 + stream.opaque = (voidpf)0;
1.57 +
1.58 + err = deflateInit_r(&stream, level);
1.59 + if (err != Z_OK) return err;
1.60 +
1.61 + err = deflate_r(&stream, Z_FINISH);
1.62 + if (err != Z_STREAM_END) {
1.63 + deflateEnd_r(&stream);
1.64 + return err == Z_OK ? Z_BUF_ERROR : err;
1.65 + }
1.66 + *destLen = stream.total_out;
1.67 +
1.68 + err = deflateEnd_r(&stream);
1.69 + return err;
1.70 +}
1.71 +
1.72 +/* ===========================================================================
1.73 + */
1.74 +
1.75 +#ifdef __SYMBIAN32__
1.76 +EXPORT_C int compress_r (Bytef * dest, uLongf * destLen, const Bytef * source, uLong sourceLen)
1.77 +#else
1.78 +int ZEXPORT compress (dest, destLen, source, sourceLen)
1.79 + Bytef *dest;
1.80 + uLongf *destLen;
1.81 + const Bytef *source;
1.82 + uLong sourceLen;
1.83 +#endif //__SYMBIAN32__
1.84 +{
1.85 + return compress2_r(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
1.86 +}
1.87 +
1.88 +
1.89 +/* ===========================================================================
1.90 + If the default memLevel or windowBits for deflateInit() is changed, then
1.91 + this function needs to be updated.
1.92 + */
1.93 +
1.94 +
1.95 +#ifdef __SYMBIAN32__
1.96 +EXPORT_C uLong compressBound_r (uLong sourceLen)
1.97 +#else
1.98 +uLong ZEXPORT compressBound (sourceLen)
1.99 + uLong sourceLen;
1.100 +#endif //__SYMBIAN32__
1.101 +{
1.102 + return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) + 11;
1.103 +}
1.104 +
1.105 +
1.106 +