sl@0
|
1 |
/* compress.c -- compress a memory buffer
|
sl@0
|
2 |
* Copyright (C) 1995-1998 Jean-loup Gailly.
|
sl@0
|
3 |
* For conditions of distribution and use, see copyright notice in zlib.h
|
sl@0
|
4 |
*/
|
sl@0
|
5 |
|
sl@0
|
6 |
/* @(#) $Id$ */
|
sl@0
|
7 |
|
sl@0
|
8 |
#include "OldEZlib.h"
|
sl@0
|
9 |
|
sl@0
|
10 |
/* ===========================================================================
|
sl@0
|
11 |
Compresses the source buffer into the destination buffer. The level
|
sl@0
|
12 |
parameter has the same meaning as in deflateInit. sourceLen is the byte
|
sl@0
|
13 |
length of the source buffer. Upon entry, destLen is the total size of the
|
sl@0
|
14 |
destination buffer, which must be at least 0.1% larger than sourceLen plus
|
sl@0
|
15 |
12 bytes. Upon exit, destLen is the actual size of the compressed buffer.
|
sl@0
|
16 |
|
sl@0
|
17 |
compress2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
|
sl@0
|
18 |
memory, Z_BUF_ERROR if there was not enough room in the output buffer,
|
sl@0
|
19 |
Z_STREAM_ERROR if the level parameter is invalid.
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
EXPORT_C int ZEXPORT compress2 (
|
sl@0
|
22 |
Bytef *dest,
|
sl@0
|
23 |
uLongf *destLen,
|
sl@0
|
24 |
const Bytef *source,
|
sl@0
|
25 |
uLong sourceLen,
|
sl@0
|
26 |
int level)
|
sl@0
|
27 |
{
|
sl@0
|
28 |
z_stream stream;
|
sl@0
|
29 |
int err;
|
sl@0
|
30 |
|
sl@0
|
31 |
stream.next_in = (Bytef*)source;
|
sl@0
|
32 |
stream.avail_in = (uInt)sourceLen;
|
sl@0
|
33 |
#ifdef MAXSEG_64K
|
sl@0
|
34 |
/* Check for source > 64K on 16-bit machine: */
|
sl@0
|
35 |
if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
|
sl@0
|
36 |
#endif
|
sl@0
|
37 |
stream.next_out = dest;
|
sl@0
|
38 |
stream.avail_out = (uInt)*destLen;
|
sl@0
|
39 |
// if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR; Commented out by Markr to alleviate warnings
|
sl@0
|
40 |
|
sl@0
|
41 |
stream.zalloc = (alloc_func)0;
|
sl@0
|
42 |
stream.zfree = (free_func)0;
|
sl@0
|
43 |
stream.opaque = (voidpf)0;
|
sl@0
|
44 |
|
sl@0
|
45 |
err = deflateInit(&stream, level);
|
sl@0
|
46 |
if (err != Z_OK) return err;
|
sl@0
|
47 |
|
sl@0
|
48 |
err = deflate(&stream, Z_FINISH);
|
sl@0
|
49 |
if (err != Z_STREAM_END) {
|
sl@0
|
50 |
deflateEnd(&stream);
|
sl@0
|
51 |
return err == Z_OK ? Z_BUF_ERROR : err;
|
sl@0
|
52 |
}
|
sl@0
|
53 |
*destLen = stream.total_out;
|
sl@0
|
54 |
|
sl@0
|
55 |
err = deflateEnd(&stream);
|
sl@0
|
56 |
return err;
|
sl@0
|
57 |
}
|
sl@0
|
58 |
|
sl@0
|
59 |
/* ===========================================================================
|
sl@0
|
60 |
*/
|
sl@0
|
61 |
EXPORT_C int ZEXPORT compress (
|
sl@0
|
62 |
Bytef *dest,
|
sl@0
|
63 |
uLongf *destLen,
|
sl@0
|
64 |
const Bytef *source,
|
sl@0
|
65 |
uLong sourceLen)
|
sl@0
|
66 |
{
|
sl@0
|
67 |
return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
|
sl@0
|
68 |
}
|