xref: /openbsd-src/lib/libz/compress.c (revision 4e1ee0786f11cc571bd0be17d38e46f635c719fc)
1 /*	$OpenBSD: compress.c,v 1.7 2021/07/04 14:24:49 tb Exp $ */
2 /* compress.c -- compress a memory buffer
3  * Copyright (C) 1995-2005, 2014, 2016 Jean-loup Gailly, Mark Adler
4  * For conditions of distribution and use, see copyright notice in zlib.h
5  */
6 
7 #define ZLIB_INTERNAL
8 #include "zlib.h"
9 
10 /* ===========================================================================
11      Compresses the source buffer into the destination buffer. The level
12    parameter has the same meaning as in deflateInit.  sourceLen is the byte
13    length of the source buffer. Upon entry, destLen is the total size of the
14    destination buffer, which must be at least 0.1% larger than sourceLen plus
15    12 bytes. Upon exit, destLen is the actual size of the compressed buffer.
16 
17      compress2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
18    memory, Z_BUF_ERROR if there was not enough room in the output buffer,
19    Z_STREAM_ERROR if the level parameter is invalid.
20 */
21 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
22     Bytef *dest;
23     uLongf *destLen;
24     const Bytef *source;
25     uLong sourceLen;
26     int level;
27 {
28     z_stream stream;
29     int err;
30     const uInt max = (uInt)-1;
31     uLong left;
32 
33     left = *destLen;
34     *destLen = 0;
35 
36     stream.zalloc = (alloc_func)0;
37     stream.zfree = (free_func)0;
38     stream.opaque = (voidpf)0;
39 
40     err = deflateInit(&stream, level);
41     if (err != Z_OK) return err;
42 
43     stream.next_out = dest;
44     stream.avail_out = 0;
45     stream.next_in = (z_const Bytef *)source;
46     stream.avail_in = 0;
47 
48     do {
49         if (stream.avail_out == 0) {
50             stream.avail_out = left > (uLong)max ? max : (uInt)left;
51             left -= stream.avail_out;
52         }
53         if (stream.avail_in == 0) {
54             stream.avail_in = sourceLen > (uLong)max ? max : (uInt)sourceLen;
55             sourceLen -= stream.avail_in;
56         }
57         err = deflate(&stream, sourceLen ? Z_NO_FLUSH : Z_FINISH);
58     } while (err == Z_OK);
59 
60     *destLen = stream.total_out;
61     deflateEnd(&stream);
62     return err == Z_STREAM_END ? Z_OK : err;
63 }
64 
65 /* ===========================================================================
66  */
67 int ZEXPORT compress (dest, destLen, source, sourceLen)
68     Bytef *dest;
69     uLongf *destLen;
70     const Bytef *source;
71     uLong sourceLen;
72 {
73     return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
74 }
75 
76 /* ===========================================================================
77      If the default memLevel or windowBits for deflateInit() is changed, then
78    this function needs to be updated.
79  */
80 uLong ZEXPORT compressBound (sourceLen)
81     uLong sourceLen;
82 {
83     return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) +
84            (sourceLen >> 25) + 13;
85 }
86