sl@0
|
1 |
/* Portions Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
* All rights reserved.
|
sl@0
|
3 |
*/
|
sl@0
|
4 |
|
sl@0
|
5 |
/* compress.cpp -- compress a memory buffer
|
sl@0
|
6 |
* Copyright (C) 1995-2003 Jean-loup Gailly.
|
sl@0
|
7 |
* For conditions of distribution and use, see copyright notice in zlib.h
|
sl@0
|
8 |
*/
|
sl@0
|
9 |
|
sl@0
|
10 |
/* @(#) $Id$ */
|
sl@0
|
11 |
|
sl@0
|
12 |
#define ZLIB_INTERNAL
|
sl@0
|
13 |
#include "libzcore.h"
|
sl@0
|
14 |
|
sl@0
|
15 |
/* ===========================================================================
|
sl@0
|
16 |
Compresses the source buffer into the destination buffer. The level
|
sl@0
|
17 |
parameter has the same meaning as in deflateInit. sourceLen is the byte
|
sl@0
|
18 |
length of the source buffer. Upon entry, destLen is the total size of the
|
sl@0
|
19 |
destination buffer, which must be at least 0.1% larger than sourceLen plus
|
sl@0
|
20 |
12 bytes. Upon exit, destLen is the actual size of the compressed buffer.
|
sl@0
|
21 |
|
sl@0
|
22 |
compress2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
|
sl@0
|
23 |
memory, Z_BUF_ERROR if there was not enough room in the output buffer,
|
sl@0
|
24 |
Z_STREAM_ERROR if the level parameter is invalid.
|
sl@0
|
25 |
*/
|
sl@0
|
26 |
|
sl@0
|
27 |
#ifdef __SYMBIAN32__
|
sl@0
|
28 |
EXPORT_C int compress2_r (Bytef * dest, uLongf * destLen,const Bytef * source,uLong sourceLen,int level)
|
sl@0
|
29 |
#else
|
sl@0
|
30 |
int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
|
sl@0
|
31 |
Bytef *dest;
|
sl@0
|
32 |
uLongf *destLen;
|
sl@0
|
33 |
const Bytef *source;
|
sl@0
|
34 |
uLong sourceLen;
|
sl@0
|
35 |
int level;
|
sl@0
|
36 |
#endif //__SYMBIAN32__
|
sl@0
|
37 |
{
|
sl@0
|
38 |
z_stream stream;
|
sl@0
|
39 |
int err;
|
sl@0
|
40 |
|
sl@0
|
41 |
stream.next_in = (Bytef*)source;
|
sl@0
|
42 |
stream.avail_in = (uInt)sourceLen;
|
sl@0
|
43 |
#ifdef MAXSEG_64K
|
sl@0
|
44 |
/* Check for source > 64K on 16-bit machine: */
|
sl@0
|
45 |
if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
|
sl@0
|
46 |
#endif
|
sl@0
|
47 |
stream.next_out = dest;
|
sl@0
|
48 |
stream.avail_out = (uInt)*destLen;
|
sl@0
|
49 |
if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
|
sl@0
|
50 |
|
sl@0
|
51 |
stream.zalloc = (alloc_func)0;
|
sl@0
|
52 |
stream.zfree = (free_func)0;
|
sl@0
|
53 |
stream.opaque = (voidpf)0;
|
sl@0
|
54 |
|
sl@0
|
55 |
err = deflateInit_r(&stream, level);
|
sl@0
|
56 |
if (err != Z_OK) return err;
|
sl@0
|
57 |
|
sl@0
|
58 |
err = deflate_r(&stream, Z_FINISH);
|
sl@0
|
59 |
if (err != Z_STREAM_END) {
|
sl@0
|
60 |
deflateEnd_r(&stream);
|
sl@0
|
61 |
return err == Z_OK ? Z_BUF_ERROR : err;
|
sl@0
|
62 |
}
|
sl@0
|
63 |
*destLen = stream.total_out;
|
sl@0
|
64 |
|
sl@0
|
65 |
err = deflateEnd_r(&stream);
|
sl@0
|
66 |
return err;
|
sl@0
|
67 |
}
|
sl@0
|
68 |
|
sl@0
|
69 |
/* ===========================================================================
|
sl@0
|
70 |
*/
|
sl@0
|
71 |
|
sl@0
|
72 |
#ifdef __SYMBIAN32__
|
sl@0
|
73 |
EXPORT_C int compress_r (Bytef * dest, uLongf * destLen, const Bytef * source, uLong sourceLen)
|
sl@0
|
74 |
#else
|
sl@0
|
75 |
int ZEXPORT compress (dest, destLen, source, sourceLen)
|
sl@0
|
76 |
Bytef *dest;
|
sl@0
|
77 |
uLongf *destLen;
|
sl@0
|
78 |
const Bytef *source;
|
sl@0
|
79 |
uLong sourceLen;
|
sl@0
|
80 |
#endif //__SYMBIAN32__
|
sl@0
|
81 |
{
|
sl@0
|
82 |
return compress2_r(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
|
sl@0
|
83 |
}
|
sl@0
|
84 |
|
sl@0
|
85 |
|
sl@0
|
86 |
/* ===========================================================================
|
sl@0
|
87 |
If the default memLevel or windowBits for deflateInit() is changed, then
|
sl@0
|
88 |
this function needs to be updated.
|
sl@0
|
89 |
*/
|
sl@0
|
90 |
|
sl@0
|
91 |
|
sl@0
|
92 |
#ifdef __SYMBIAN32__
|
sl@0
|
93 |
EXPORT_C uLong compressBound_r (uLong sourceLen)
|
sl@0
|
94 |
#else
|
sl@0
|
95 |
uLong ZEXPORT compressBound (sourceLen)
|
sl@0
|
96 |
uLong sourceLen;
|
sl@0
|
97 |
#endif //__SYMBIAN32__
|
sl@0
|
98 |
{
|
sl@0
|
99 |
return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) + 11;
|
sl@0
|
100 |
}
|
sl@0
|
101 |
|
sl@0
|
102 |
|
sl@0
|
103 |
|