2017-10-05 23:32:57 -07:00
|
|
|
/* mz_strm_zlib.c -- Stream for zlib inflate/deflate
|
2018-09-30 10:44:16 -07:00
|
|
|
Version 2.5.4, September 30, 2018
|
2017-10-05 07:34:59 -07:00
|
|
|
part of the MiniZip project
|
2017-09-29 21:02:09 -07:00
|
|
|
|
2018-01-06 08:49:03 -08:00
|
|
|
Copyright (C) 2010-2018 Nathan Moinvaziri
|
2017-10-01 22:42:35 -07:00
|
|
|
https://github.com/nmoinvaz/minizip
|
2017-09-29 21:02:09 -07:00
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
This program is distributed under the terms of the same license as zlib.
|
|
|
|
See the accompanying LICENSE file for the full text of the license.
|
2017-09-29 21:02:09 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2017-10-01 22:42:35 -07:00
|
|
|
#include <stdint.h>
|
2017-09-29 21:02:09 -07:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "zlib.h"
|
|
|
|
|
2017-10-16 07:37:11 -07:00
|
|
|
#include "mz.h"
|
2017-10-04 22:10:11 -07:00
|
|
|
#include "mz_strm.h"
|
|
|
|
#include "mz_strm_zlib.h"
|
2017-09-29 21:02:09 -07:00
|
|
|
|
2017-10-03 21:56:07 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
2018-07-11 14:54:14 -07:00
|
|
|
// Define z_crc_t in zlib 1.2.5 and less or if using zlib-ng
|
|
|
|
#if defined(ZLIBNG_VERNUM)
|
|
|
|
typedef uint32_t z_crc_t;
|
2018-09-04 15:06:53 +00:00
|
|
|
#elif (ZLIB_VERNUM < 0x1270)
|
2018-07-11 14:54:14 -07:00
|
|
|
typedef unsigned long z_crc_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2017-09-29 21:02:09 -07:00
|
|
|
#ifndef DEF_MEM_LEVEL
|
|
|
|
# if MAX_MEM_LEVEL >= 8
|
|
|
|
# define DEF_MEM_LEVEL 8
|
|
|
|
# else
|
|
|
|
# define DEF_MEM_LEVEL MAX_MEM_LEVEL
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2017-10-03 21:56:07 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
2018-05-02 21:34:22 +00:00
|
|
|
static mz_stream_vtbl mz_stream_zlib_vtbl = {
|
2017-10-08 21:48:28 -07:00
|
|
|
mz_stream_zlib_open,
|
|
|
|
mz_stream_zlib_is_open,
|
|
|
|
mz_stream_zlib_read,
|
|
|
|
mz_stream_zlib_write,
|
|
|
|
mz_stream_zlib_tell,
|
|
|
|
mz_stream_zlib_seek,
|
|
|
|
mz_stream_zlib_close,
|
|
|
|
mz_stream_zlib_error,
|
|
|
|
mz_stream_zlib_create,
|
|
|
|
mz_stream_zlib_delete,
|
2017-10-09 23:36:30 -07:00
|
|
|
mz_stream_zlib_get_prop_int64,
|
|
|
|
mz_stream_zlib_set_prop_int64
|
2017-10-08 21:48:28 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2017-10-01 21:43:24 -07:00
|
|
|
typedef struct mz_stream_zlib_s {
|
2017-10-02 00:44:51 -07:00
|
|
|
mz_stream stream;
|
2017-09-29 21:02:09 -07:00
|
|
|
z_stream zstream;
|
2017-10-15 22:22:19 -07:00
|
|
|
uint8_t buffer[INT16_MAX];
|
2017-09-29 21:02:09 -07:00
|
|
|
int32_t buffer_len;
|
2017-10-02 22:11:03 -07:00
|
|
|
int64_t total_in;
|
|
|
|
int64_t total_out;
|
2017-10-03 21:56:07 -07:00
|
|
|
int64_t max_total_in;
|
2017-09-29 21:02:09 -07:00
|
|
|
int8_t initialized;
|
|
|
|
int16_t level;
|
2017-10-20 07:59:39 -07:00
|
|
|
int32_t mode;
|
|
|
|
int32_t error;
|
2017-10-01 21:43:24 -07:00
|
|
|
} mz_stream_zlib;
|
2017-09-29 21:02:09 -07:00
|
|
|
|
2017-10-03 21:56:07 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
2017-10-05 21:26:34 -07:00
|
|
|
int32_t mz_stream_zlib_open(void *stream, const char *path, int32_t mode)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_zlib *zlib = (mz_stream_zlib *)stream;
|
2017-09-29 21:02:09 -07:00
|
|
|
|
2018-05-02 20:07:45 -07:00
|
|
|
MZ_UNUSED(path);
|
2017-09-29 21:02:09 -07:00
|
|
|
|
|
|
|
zlib->zstream.data_type = Z_BINARY;
|
|
|
|
zlib->zstream.zalloc = Z_NULL;
|
|
|
|
zlib->zstream.zfree = Z_NULL;
|
|
|
|
zlib->zstream.opaque = Z_NULL;
|
|
|
|
zlib->zstream.total_in = 0;
|
|
|
|
zlib->zstream.total_out = 0;
|
|
|
|
|
|
|
|
zlib->total_in = 0;
|
|
|
|
zlib->total_out = 0;
|
|
|
|
|
2017-10-23 17:22:36 -07:00
|
|
|
if (mode & MZ_OPEN_MODE_WRITE)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2018-07-22 10:35:49 -07:00
|
|
|
#ifdef MZ_ZIP_NO_COMPRESSION
|
2018-06-19 11:59:07 -07:00
|
|
|
return MZ_SUPPORT_ERROR;
|
|
|
|
#else
|
2017-09-29 21:02:09 -07:00
|
|
|
zlib->zstream.next_out = zlib->buffer;
|
2017-10-04 20:06:25 -07:00
|
|
|
zlib->zstream.avail_out = sizeof(zlib->buffer);
|
2017-09-29 21:02:09 -07:00
|
|
|
|
2017-10-18 11:36:35 -07:00
|
|
|
zlib->error = deflateInit2(&zlib->zstream, (int8_t)zlib->level, Z_DEFLATED, -MAX_WBITS, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY);
|
2018-06-19 11:59:07 -07:00
|
|
|
#endif
|
2017-09-29 21:02:09 -07:00
|
|
|
}
|
2017-10-23 17:22:36 -07:00
|
|
|
else if (mode & MZ_OPEN_MODE_READ)
|
2017-10-17 23:20:14 -07:00
|
|
|
{
|
2018-07-22 10:35:49 -07:00
|
|
|
#ifdef MZ_ZIP_NO_DECOMPRESSION
|
2018-06-19 11:59:07 -07:00
|
|
|
return MZ_SUPPORT_ERROR;
|
|
|
|
#else
|
2017-10-17 23:20:14 -07:00
|
|
|
zlib->zstream.next_in = zlib->buffer;
|
|
|
|
zlib->zstream.avail_in = 0;
|
|
|
|
|
2017-10-18 11:36:35 -07:00
|
|
|
zlib->error = inflateInit2(&zlib->zstream, -MAX_WBITS);
|
2018-06-19 11:59:07 -07:00
|
|
|
#endif
|
2017-10-17 23:20:14 -07:00
|
|
|
}
|
2017-09-29 21:02:09 -07:00
|
|
|
|
|
|
|
if (zlib->error != Z_OK)
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_STREAM_ERROR;
|
2017-09-29 21:02:09 -07:00
|
|
|
|
|
|
|
zlib->initialized = 1;
|
|
|
|
zlib->mode = mode;
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_OK;
|
2017-09-29 21:02:09 -07:00
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
int32_t mz_stream_zlib_is_open(void *stream)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_zlib *zlib = (mz_stream_zlib *)stream;
|
2017-09-29 21:02:09 -07:00
|
|
|
if (zlib->initialized != 1)
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_STREAM_ERROR;
|
|
|
|
return MZ_OK;
|
2017-09-29 21:02:09 -07:00
|
|
|
}
|
|
|
|
|
2017-10-05 21:26:34 -07:00
|
|
|
int32_t mz_stream_zlib_read(void *stream, void *buf, int32_t size)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2018-07-22 10:35:49 -07:00
|
|
|
#ifdef MZ_ZIP_NO_DECOMPRESSION
|
2018-06-19 11:59:07 -07:00
|
|
|
return MZ_SUPPORT_ERROR;
|
|
|
|
#else
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_zlib *zlib = (mz_stream_zlib *)stream;
|
2017-10-17 23:20:14 -07:00
|
|
|
uint64_t total_in_before = 0;
|
|
|
|
uint64_t total_in_after = 0;
|
2017-10-05 00:02:07 -07:00
|
|
|
uint64_t total_out_before = 0;
|
|
|
|
uint64_t total_out_after = 0;
|
2017-10-17 23:20:14 -07:00
|
|
|
uint32_t total_in = 0;
|
2017-09-29 21:02:09 -07:00
|
|
|
uint32_t total_out = 0;
|
2017-10-18 15:46:06 -07:00
|
|
|
uint32_t in_bytes = 0;
|
|
|
|
uint32_t out_bytes = 0;
|
2017-10-03 21:56:07 -07:00
|
|
|
int32_t bytes_to_read = 0;
|
2017-10-02 00:44:51 -07:00
|
|
|
int32_t read = 0;
|
2017-10-20 07:59:39 -07:00
|
|
|
int32_t err = Z_OK;
|
2017-09-29 21:02:09 -07:00
|
|
|
|
2017-10-03 21:56:07 -07:00
|
|
|
|
2018-01-22 08:51:07 -08:00
|
|
|
zlib->zstream.next_out = (Bytef*)buf;
|
|
|
|
zlib->zstream.avail_out = (uInt)size;
|
2017-09-29 21:02:09 -07:00
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if (zlib->zstream.avail_in == 0)
|
|
|
|
{
|
2017-10-03 23:19:37 -07:00
|
|
|
bytes_to_read = sizeof(zlib->buffer);
|
2017-10-03 21:56:07 -07:00
|
|
|
if (zlib->max_total_in > 0)
|
|
|
|
{
|
2018-05-09 00:31:25 -07:00
|
|
|
if ((zlib->max_total_in - zlib->total_in) < (int64_t)sizeof(zlib->buffer))
|
2017-10-03 21:56:07 -07:00
|
|
|
bytes_to_read = (int32_t)(zlib->max_total_in - zlib->total_in);
|
2017-10-18 11:36:35 -07:00
|
|
|
}
|
2017-10-18 15:46:06 -07:00
|
|
|
|
2017-10-03 21:56:07 -07:00
|
|
|
read = mz_stream_read(zlib->stream.base, zlib->buffer, bytes_to_read);
|
|
|
|
|
|
|
|
if (read < 0)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
|
|
|
zlib->error = Z_STREAM_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
2017-10-02 00:44:51 -07:00
|
|
|
if (read == 0)
|
2017-09-29 21:02:09 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
zlib->zstream.next_in = zlib->buffer;
|
2017-10-02 00:44:51 -07:00
|
|
|
zlib->zstream.avail_in = read;
|
2017-09-29 21:02:09 -07:00
|
|
|
}
|
|
|
|
|
2017-10-17 23:20:14 -07:00
|
|
|
total_in_before = zlib->zstream.avail_in;
|
2017-09-29 21:02:09 -07:00
|
|
|
total_out_before = zlib->zstream.total_out;
|
|
|
|
|
2017-10-02 00:44:51 -07:00
|
|
|
err = inflate(&zlib->zstream, Z_SYNC_FLUSH);
|
|
|
|
if ((err >= Z_OK) && (zlib->zstream.msg != NULL))
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
|
|
|
zlib->error = Z_DATA_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-10-17 23:20:14 -07:00
|
|
|
total_in_after = zlib->zstream.avail_in;
|
2017-09-29 21:02:09 -07:00
|
|
|
total_out_after = zlib->zstream.total_out;
|
|
|
|
|
2017-10-18 15:46:06 -07:00
|
|
|
in_bytes = (uint32_t)(total_in_before - total_in_after);
|
|
|
|
out_bytes = (uint32_t)(total_out_after - total_out_before);
|
|
|
|
|
|
|
|
total_in += in_bytes;
|
|
|
|
total_out += out_bytes;
|
|
|
|
|
|
|
|
zlib->total_in += in_bytes;
|
|
|
|
zlib->total_out += out_bytes;
|
2017-10-02 00:44:51 -07:00
|
|
|
|
|
|
|
if (err == Z_STREAM_END)
|
|
|
|
break;
|
2018-04-24 10:02:39 +00:00
|
|
|
|
2017-10-02 00:44:51 -07:00
|
|
|
if (err != Z_OK)
|
|
|
|
{
|
|
|
|
zlib->error = err;
|
|
|
|
break;
|
|
|
|
}
|
2017-09-29 21:02:09 -07:00
|
|
|
}
|
|
|
|
while (zlib->zstream.avail_out > 0);
|
|
|
|
|
2017-10-17 23:20:14 -07:00
|
|
|
if (zlib->error != 0)
|
|
|
|
return zlib->error;
|
|
|
|
|
2017-09-29 21:02:09 -07:00
|
|
|
return total_out;
|
2018-06-19 11:59:07 -07:00
|
|
|
#endif
|
2017-09-29 21:02:09 -07:00
|
|
|
}
|
|
|
|
|
2017-12-26 12:40:30 -08:00
|
|
|
static int32_t mz_stream_zlib_flush(void *stream)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_zlib *zlib = (mz_stream_zlib *)stream;
|
|
|
|
if (mz_stream_write(zlib->stream.base, zlib->buffer, zlib->buffer_len) != zlib->buffer_len)
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_STREAM_ERROR;
|
|
|
|
return MZ_OK;
|
2017-09-29 21:02:09 -07:00
|
|
|
}
|
|
|
|
|
2017-12-26 12:40:30 -08:00
|
|
|
static int32_t mz_stream_zlib_deflate(void *stream, int flush)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_zlib *zlib = (mz_stream_zlib *)stream;
|
2017-10-05 00:02:07 -07:00
|
|
|
uint64_t total_out_before = 0;
|
|
|
|
uint64_t total_out_after = 0;
|
2017-10-09 23:36:30 -07:00
|
|
|
int32_t out_bytes = 0;
|
2017-10-20 07:59:39 -07:00
|
|
|
int32_t err = Z_OK;
|
2017-09-29 21:02:09 -07:00
|
|
|
|
2017-10-09 23:36:30 -07:00
|
|
|
|
2017-10-18 15:46:06 -07:00
|
|
|
do
|
2017-10-09 23:36:30 -07:00
|
|
|
{
|
2017-10-18 15:46:06 -07:00
|
|
|
if (zlib->zstream.avail_out == 0)
|
2017-10-09 23:36:30 -07:00
|
|
|
{
|
2017-10-18 15:46:06 -07:00
|
|
|
if (mz_stream_zlib_flush(zlib) != MZ_OK)
|
|
|
|
{
|
|
|
|
zlib->error = Z_STREAM_ERROR;
|
|
|
|
return MZ_STREAM_ERROR;
|
|
|
|
}
|
2017-10-09 23:36:30 -07:00
|
|
|
|
2017-10-18 15:46:06 -07:00
|
|
|
zlib->zstream.avail_out = sizeof(zlib->buffer);
|
|
|
|
zlib->zstream.next_out = zlib->buffer;
|
2017-10-09 23:36:30 -07:00
|
|
|
|
2017-10-18 15:46:06 -07:00
|
|
|
zlib->buffer_len = 0;
|
|
|
|
}
|
2017-10-09 23:36:30 -07:00
|
|
|
|
2017-10-18 15:46:06 -07:00
|
|
|
total_out_before = zlib->zstream.total_out;
|
|
|
|
err = deflate(&zlib->zstream, flush);
|
|
|
|
total_out_after = zlib->zstream.total_out;
|
2017-09-29 21:02:09 -07:00
|
|
|
|
2017-10-18 15:46:06 -07:00
|
|
|
out_bytes = (uint32_t)(total_out_after - total_out_before);
|
2017-09-29 21:02:09 -07:00
|
|
|
|
2018-01-03 10:08:34 -08:00
|
|
|
zlib->buffer_len += out_bytes;
|
|
|
|
zlib->total_out += out_bytes;
|
|
|
|
|
|
|
|
if (err == Z_STREAM_END)
|
|
|
|
break;
|
|
|
|
if (err != Z_OK)
|
2017-10-18 15:46:06 -07:00
|
|
|
{
|
|
|
|
zlib->error = err;
|
|
|
|
return MZ_STREAM_ERROR;
|
|
|
|
}
|
|
|
|
}
|
2018-01-03 10:08:34 -08:00
|
|
|
while ((zlib->zstream.avail_in > 0) || (flush == Z_FINISH && err == Z_OK));
|
2017-10-09 23:36:30 -07:00
|
|
|
|
|
|
|
return MZ_OK;
|
2017-09-29 21:02:09 -07:00
|
|
|
}
|
|
|
|
|
2017-10-05 21:26:34 -07:00
|
|
|
int32_t mz_stream_zlib_write(void *stream, const void *buf, int32_t size)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_zlib *zlib = (mz_stream_zlib *)stream;
|
2018-06-19 11:59:07 -07:00
|
|
|
int32_t err = size;
|
2017-09-29 21:02:09 -07:00
|
|
|
|
2018-07-22 10:35:49 -07:00
|
|
|
#ifdef MZ_ZIP_NO_COMPRESSION
|
2018-06-19 11:59:07 -07:00
|
|
|
MZ_UNUSED(zlib);
|
|
|
|
err = MZ_SUPPORT_ERROR;
|
|
|
|
#else
|
2018-05-09 09:42:31 -07:00
|
|
|
zlib->zstream.next_in = (Bytef*)(intptr_t)buf;
|
2018-01-22 08:51:07 -08:00
|
|
|
zlib->zstream.avail_in = (uInt)size;
|
2017-09-29 21:02:09 -07:00
|
|
|
|
2017-10-18 15:46:06 -07:00
|
|
|
mz_stream_zlib_deflate(stream, Z_NO_FLUSH);
|
2017-09-29 21:02:09 -07:00
|
|
|
|
|
|
|
zlib->total_in += size;
|
2018-06-19 11:59:07 -07:00
|
|
|
#endif
|
|
|
|
return err;
|
2017-09-29 21:02:09 -07:00
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
int64_t mz_stream_zlib_tell(void *stream)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2018-05-02 20:07:45 -07:00
|
|
|
MZ_UNUSED(stream);
|
2018-05-02 21:34:22 +00:00
|
|
|
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_STREAM_ERROR;
|
2017-09-29 21:02:09 -07:00
|
|
|
}
|
|
|
|
|
2017-10-05 21:26:34 -07:00
|
|
|
int32_t mz_stream_zlib_seek(void *stream, int64_t offset, int32_t origin)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2018-05-02 20:07:45 -07:00
|
|
|
MZ_UNUSED(stream);
|
|
|
|
MZ_UNUSED(offset);
|
|
|
|
MZ_UNUSED(origin);
|
2018-05-02 21:34:22 +00:00
|
|
|
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_STREAM_ERROR;
|
2017-09-29 21:02:09 -07:00
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
int32_t mz_stream_zlib_close(void *stream)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_zlib *zlib = (mz_stream_zlib *)stream;
|
2017-10-09 23:36:30 -07:00
|
|
|
|
2017-09-29 21:02:09 -07:00
|
|
|
|
2017-10-23 17:22:36 -07:00
|
|
|
if (zlib->mode & MZ_OPEN_MODE_WRITE)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2018-07-22 10:35:49 -07:00
|
|
|
#ifdef MZ_ZIP_NO_COMPRESSION
|
2018-06-19 11:59:07 -07:00
|
|
|
return MZ_SUPPORT_ERROR;
|
|
|
|
#else
|
2018-07-11 14:54:14 -07:00
|
|
|
mz_stream_zlib_deflate(stream, Z_FINISH);
|
|
|
|
mz_stream_zlib_flush(stream);
|
2017-09-29 21:02:09 -07:00
|
|
|
|
2017-10-09 23:36:30 -07:00
|
|
|
deflateEnd(&zlib->zstream);
|
2018-06-19 11:59:07 -07:00
|
|
|
#endif
|
2017-09-29 21:02:09 -07:00
|
|
|
}
|
2017-10-23 17:22:36 -07:00
|
|
|
else if (zlib->mode & MZ_OPEN_MODE_READ)
|
2017-10-17 23:20:14 -07:00
|
|
|
{
|
2018-07-22 10:35:49 -07:00
|
|
|
#ifdef MZ_ZIP_NO_DECOMPRESSION
|
2018-06-19 11:59:07 -07:00
|
|
|
return MZ_SUPPORT_ERROR;
|
|
|
|
#else
|
2017-10-17 23:20:14 -07:00
|
|
|
inflateEnd(&zlib->zstream);
|
2018-06-19 11:59:07 -07:00
|
|
|
#endif
|
2017-10-17 23:20:14 -07:00
|
|
|
}
|
2017-09-29 21:02:09 -07:00
|
|
|
|
|
|
|
zlib->initialized = 0;
|
2017-10-02 00:44:51 -07:00
|
|
|
|
2017-09-29 21:02:09 -07:00
|
|
|
if (zlib->error != Z_OK)
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_STREAM_ERROR;
|
|
|
|
return MZ_OK;
|
2017-09-29 21:02:09 -07:00
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
int32_t mz_stream_zlib_error(void *stream)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_zlib *zlib = (mz_stream_zlib *)stream;
|
2017-09-29 21:02:09 -07:00
|
|
|
return zlib->error;
|
|
|
|
}
|
|
|
|
|
2017-10-09 23:36:30 -07:00
|
|
|
int32_t mz_stream_zlib_get_prop_int64(void *stream, int32_t prop, int64_t *value)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_zlib *zlib = (mz_stream_zlib *)stream;
|
2017-10-09 23:36:30 -07:00
|
|
|
switch (prop)
|
|
|
|
{
|
|
|
|
case MZ_STREAM_PROP_TOTAL_IN:
|
|
|
|
*value = zlib->total_in;
|
2018-07-11 15:34:45 -07:00
|
|
|
break;
|
2018-07-08 19:23:56 -07:00
|
|
|
case MZ_STREAM_PROP_TOTAL_IN_MAX:
|
|
|
|
*value = zlib->max_total_in;
|
2018-07-11 15:34:45 -07:00
|
|
|
break;
|
2017-10-09 23:36:30 -07:00
|
|
|
case MZ_STREAM_PROP_TOTAL_OUT:
|
|
|
|
*value = zlib->total_out;
|
2018-07-11 15:34:45 -07:00
|
|
|
break;
|
2017-10-18 11:36:35 -07:00
|
|
|
case MZ_STREAM_PROP_HEADER_SIZE:
|
|
|
|
*value = 0;
|
2018-07-11 15:34:45 -07:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return MZ_EXIST_ERROR;
|
2017-10-09 23:36:30 -07:00
|
|
|
}
|
2018-07-11 15:34:45 -07:00
|
|
|
return MZ_OK;
|
2017-09-29 21:02:09 -07:00
|
|
|
}
|
|
|
|
|
2017-10-09 23:36:30 -07:00
|
|
|
int32_t mz_stream_zlib_set_prop_int64(void *stream, int32_t prop, int64_t value)
|
2017-10-03 21:56:07 -07:00
|
|
|
{
|
|
|
|
mz_stream_zlib *zlib = (mz_stream_zlib *)stream;
|
2017-10-09 23:36:30 -07:00
|
|
|
switch (prop)
|
|
|
|
{
|
|
|
|
case MZ_STREAM_PROP_COMPRESS_LEVEL:
|
|
|
|
zlib->level = (int16_t)value;
|
2018-07-11 15:34:45 -07:00
|
|
|
break;
|
2017-10-09 23:36:30 -07:00
|
|
|
case MZ_STREAM_PROP_TOTAL_IN_MAX:
|
|
|
|
zlib->max_total_in = value;
|
2018-07-11 15:34:45 -07:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return MZ_EXIST_ERROR;
|
2017-10-09 23:36:30 -07:00
|
|
|
}
|
2018-07-11 15:34:45 -07:00
|
|
|
return MZ_OK;
|
2017-10-03 21:56:07 -07:00
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
void *mz_stream_zlib_create(void **stream)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_zlib *zlib = NULL;
|
|
|
|
|
2018-05-02 20:01:35 -07:00
|
|
|
zlib = (mz_stream_zlib *)MZ_ALLOC(sizeof(mz_stream_zlib));
|
2017-10-01 21:43:24 -07:00
|
|
|
if (zlib != NULL)
|
|
|
|
{
|
|
|
|
memset(zlib, 0, sizeof(mz_stream_zlib));
|
2017-10-08 21:48:28 -07:00
|
|
|
zlib->stream.vtbl = &mz_stream_zlib_vtbl;
|
2017-10-01 21:43:24 -07:00
|
|
|
zlib->level = Z_DEFAULT_COMPRESSION;
|
|
|
|
}
|
|
|
|
if (stream != NULL)
|
|
|
|
*stream = zlib;
|
2017-09-29 21:02:09 -07:00
|
|
|
|
2017-10-02 22:11:03 -07:00
|
|
|
return zlib;
|
2017-09-29 21:02:09 -07:00
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
void mz_stream_zlib_delete(void **stream)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_zlib *zlib = NULL;
|
|
|
|
if (stream == NULL)
|
|
|
|
return;
|
|
|
|
zlib = (mz_stream_zlib *)*stream;
|
2017-09-29 21:02:09 -07:00
|
|
|
if (zlib != NULL)
|
2018-05-02 20:01:35 -07:00
|
|
|
MZ_FREE(zlib);
|
2017-10-05 18:45:23 -07:00
|
|
|
*stream = NULL;
|
2017-09-29 21:02:09 -07:00
|
|
|
}
|
|
|
|
|
2017-10-08 21:48:28 -07:00
|
|
|
void *mz_stream_zlib_get_interface(void)
|
|
|
|
{
|
|
|
|
return (void *)&mz_stream_zlib_vtbl;
|
|
|
|
}
|
|
|
|
|
2018-05-31 15:05:19 -07:00
|
|
|
static int64_t mz_stream_zlib_crc32(int64_t value, const void *buf, int32_t size)
|
2017-12-03 22:59:26 -08:00
|
|
|
{
|
2018-05-31 15:05:19 -07:00
|
|
|
return crc32((z_crc_t)value, buf, size);
|
2017-12-03 22:59:26 -08:00
|
|
|
}
|
|
|
|
|
2017-11-10 08:45:14 -08:00
|
|
|
void *mz_stream_zlib_get_crc32_update(void)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2017-12-03 22:59:26 -08:00
|
|
|
return (void *)mz_stream_zlib_crc32;
|
2018-01-21 20:32:26 -05:00
|
|
|
}
|