/src/skia/third_party/externals/zlib/compress.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* compress.c -- compress a memory buffer |
2 | | * Copyright (C) 1995-2005, 2014, 2016 Jean-loup Gailly, Mark Adler |
3 | | * For conditions of distribution and use, see copyright notice in zlib.h |
4 | | */ |
5 | | |
6 | | /* @(#) $Id$ */ |
7 | | |
8 | | #define ZLIB_INTERNAL |
9 | | #include "zlib.h" |
10 | | |
11 | | /* =========================================================================== |
12 | | Compresses the source buffer into the destination buffer. The level |
13 | | parameter has the same meaning as in deflateInit. sourceLen is the byte |
14 | | length of the source buffer. Upon entry, destLen is the total size of the |
15 | | destination buffer, which must be at least 0.1% larger than sourceLen plus |
16 | | 12 bytes. Upon exit, destLen is the actual size of the compressed buffer. |
17 | | |
18 | | compress2 returns Z_OK if success, Z_MEM_ERROR if there was not enough |
19 | | memory, Z_BUF_ERROR if there was not enough room in the output buffer, |
20 | | Z_STREAM_ERROR if the level parameter is invalid. |
21 | | */ |
22 | | int ZEXPORT compress2(Bytef *dest, uLongf *destLen, const Bytef *source, |
23 | 0 | uLong sourceLen, int level) { |
24 | 0 | z_stream stream; |
25 | 0 | int err; |
26 | 0 | const uInt max = (uInt)-1; |
27 | 0 | uLong left; |
28 | |
|
29 | 0 | left = *destLen; |
30 | 0 | *destLen = 0; |
31 | |
|
32 | 0 | stream.zalloc = (alloc_func)0; |
33 | 0 | stream.zfree = (free_func)0; |
34 | 0 | stream.opaque = (voidpf)0; |
35 | |
|
36 | 0 | err = deflateInit(&stream, level); |
37 | 0 | if (err != Z_OK) return err; |
38 | | |
39 | 0 | stream.next_out = dest; |
40 | 0 | stream.avail_out = 0; |
41 | 0 | stream.next_in = (z_const Bytef *)source; |
42 | 0 | stream.avail_in = 0; |
43 | |
|
44 | 0 | do { |
45 | 0 | if (stream.avail_out == 0) { |
46 | 0 | stream.avail_out = left > (uLong)max ? max : (uInt)left; |
47 | 0 | left -= stream.avail_out; |
48 | 0 | } |
49 | 0 | if (stream.avail_in == 0) { |
50 | 0 | stream.avail_in = sourceLen > (uLong)max ? max : (uInt)sourceLen; |
51 | 0 | sourceLen -= stream.avail_in; |
52 | 0 | } |
53 | 0 | err = deflate(&stream, sourceLen ? Z_NO_FLUSH : Z_FINISH); |
54 | 0 | } while (err == Z_OK); |
55 | |
|
56 | 0 | *destLen = stream.total_out; |
57 | 0 | deflateEnd(&stream); |
58 | 0 | return err == Z_STREAM_END ? Z_OK : err; |
59 | 0 | } |
60 | | |
61 | | /* =========================================================================== |
62 | | */ |
63 | | int ZEXPORT compress(Bytef *dest, uLongf *destLen, const Bytef *source, |
64 | 0 | uLong sourceLen) { |
65 | 0 | return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION); |
66 | 0 | } |
67 | | |
68 | | /* =========================================================================== |
69 | | If the default memLevel or windowBits for deflateInit() is changed, then |
70 | | this function needs to be updated. |
71 | | */ |
72 | 0 | uLong ZEXPORT compressBound(uLong sourceLen) { |
73 | 0 | sourceLen = sourceLen + (sourceLen >> 12) + (sourceLen >> 14) + |
74 | 0 | (sourceLen >> 25) + 13; |
75 | | /* FIXME(cavalcantii): usage of CRC32 Castagnoli as a hash function |
76 | | * for the hash table of symbols used for compression has a side effect |
77 | | * where for compression level [4, 5] it will increase the output buffer size |
78 | | * by 0.1% (i.e. less than 1%) for a high entropy input (i.e. random data). |
79 | | * To avoid a scenario where client code would fail, for safety we increase |
80 | | * the expected output size by 0.8% (i.e. 8x more than the worst scenario). |
81 | | * See: http://crbug.com/990489 |
82 | | */ |
83 | 0 | sourceLen += sourceLen >> 7; // Equivalent to 1.0078125 |
84 | 0 | return sourceLen; |
85 | 0 | } |