mirror of
https://github.com/cuberite/libdeflate.git
synced 2025-08-04 10:16:44 -04:00

* Bring in common headers and program code from xpack project * Move program code to programs/ * Move library code to lib/ * GNU89 and MSVC2010 compatibility * Other changes
79 lines
1.9 KiB
C
79 lines
1.9 KiB
C
/*
|
|
* gzip_compress.c - compress with a gzip wrapper
|
|
*
|
|
* Written in 2014-2016 by Eric Biggers <ebiggers3@gmail.com>
|
|
*
|
|
* To the extent possible under law, the author(s) have dedicated all copyright
|
|
* and related and neighboring rights to this software to the public domain
|
|
* worldwide. This software is distributed without any warranty.
|
|
*
|
|
* You should have received a copy of the CC0 Public Domain Dedication along
|
|
* with this software. If not, see
|
|
* <http://creativecommons.org/publicdomain/zero/1.0/>.
|
|
*/
|
|
|
|
#include "crc32.h"
|
|
#include "deflate_compress.h"
|
|
#include "gzip_constants.h"
|
|
#include "unaligned.h"
|
|
|
|
#include "libdeflate.h"
|
|
|
|
LIBEXPORT size_t
|
|
gzip_compress(struct deflate_compressor *c, const void *in, size_t in_size,
|
|
void *out, size_t out_nbytes_avail)
|
|
{
|
|
u8 *out_next = out;
|
|
unsigned compression_level;
|
|
u8 xfl;
|
|
size_t deflate_size;
|
|
|
|
if (out_nbytes_avail <= GZIP_MIN_OVERHEAD)
|
|
return 0;
|
|
|
|
/* ID1 */
|
|
*out_next++ = GZIP_ID1;
|
|
/* ID2 */
|
|
*out_next++ = GZIP_ID2;
|
|
/* CM */
|
|
*out_next++ = GZIP_CM_DEFLATE;
|
|
/* FLG */
|
|
*out_next++ = 0;
|
|
/* MTIME */
|
|
put_unaligned_le32(GZIP_MTIME_UNAVAILABLE, out_next);
|
|
out_next += 4;
|
|
/* XFL */
|
|
xfl = 0;
|
|
compression_level = deflate_get_compression_level(c);
|
|
if (compression_level < 2)
|
|
xfl |= GZIP_XFL_FASTEST_COMRESSION;
|
|
else if (compression_level >= 8)
|
|
xfl |= GZIP_XFL_SLOWEST_COMRESSION;
|
|
*out_next++ = xfl;
|
|
/* OS */
|
|
*out_next++ = GZIP_OS_UNKNOWN; /* OS */
|
|
|
|
/* Compressed data */
|
|
deflate_size = deflate_compress(c, in, in_size, out_next,
|
|
out_nbytes_avail - GZIP_MIN_OVERHEAD);
|
|
if (deflate_size == 0)
|
|
return 0;
|
|
out_next += deflate_size;
|
|
|
|
/* CRC32 */
|
|
put_unaligned_le32(crc32_gzip(in, in_size), out_next);
|
|
out_next += 4;
|
|
|
|
/* ISIZE */
|
|
put_unaligned_le32((u32)in_size, out_next);
|
|
out_next += 4;
|
|
|
|
return out_next - (u8 *)out;
|
|
}
|
|
|
|
LIBEXPORT size_t
|
|
gzip_compress_bound(struct deflate_compressor *c, size_t in_nbytes)
|
|
{
|
|
return GZIP_MIN_OVERHEAD + deflate_compress_bound(c, in_nbytes);
|
|
}
|