minizip-ng/mz_strm_bzip.c

350 lines
9.4 KiB
C
Raw Normal View History

/* mz_strm_bzip.c -- Stream for bzip inflate/deflate
2021-01-23 16:18:11 -08:00
part of the minizip-ng project
2023-02-16 13:14:21 -08:00
Copyright (C) Nathan Moinvaziri
2021-01-23 16:18:11 -08:00
https://github.com/zlib-ng/minizip-ng
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.
*/
#include "mz.h"
2017-10-04 22:10:11 -07:00
#include "mz_strm.h"
#include "mz_strm_bzip.h"
2018-11-19 21:34:35 -08:00
#include "bzlib.h"
2017-10-03 21:56:07 -07:00
/***************************************************************************/
static mz_stream_vtbl mz_stream_bzip_vtbl = {
2024-11-01 16:30:39 -07:00
mz_stream_bzip_open, mz_stream_bzip_is_open, mz_stream_bzip_read, mz_stream_bzip_write,
mz_stream_bzip_tell, mz_stream_bzip_seek, mz_stream_bzip_close, mz_stream_bzip_error,
mz_stream_bzip_create, mz_stream_bzip_delete, mz_stream_bzip_get_prop_int64, mz_stream_bzip_set_prop_int64};
/***************************************************************************/
typedef struct mz_stream_bzip_s {
2024-11-01 16:30:39 -07:00
mz_stream stream;
bz_stream bzstream;
int32_t mode;
int32_t error;
uint8_t buffer[INT16_MAX];
int32_t buffer_len;
int16_t stream_end;
int64_t total_in;
int64_t total_out;
int64_t max_total_in;
int8_t initialized;
int16_t level;
} mz_stream_bzip;
2017-10-03 21:56:07 -07:00
/***************************************************************************/
2020-06-14 15:19:14 -07:00
int32_t mz_stream_bzip_open(void *stream, const char *path, int32_t mode) {
mz_stream_bzip *bzip = (mz_stream_bzip *)stream;
2018-05-02 20:07:45 -07:00
MZ_UNUSED(path);
bzip->bzstream.bzalloc = 0;
bzip->bzstream.bzfree = 0;
bzip->bzstream.opaque = 0;
bzip->bzstream.total_in_lo32 = 0;
bzip->bzstream.total_in_hi32 = 0;
bzip->bzstream.total_out_lo32 = 0;
bzip->bzstream.total_out_hi32 = 0;
bzip->total_in = 0;
bzip->total_out = 0;
2020-06-14 15:19:14 -07:00
if (mode & MZ_OPEN_MODE_WRITE) {
#ifdef MZ_ZIP_NO_COMPRESSION
return MZ_SUPPORT_ERROR;
#else
bzip->bzstream.next_out = (char *)bzip->buffer;
bzip->bzstream.avail_out = sizeof(bzip->buffer);
bzip->error = BZ2_bzCompressInit(&bzip->bzstream, bzip->level, 0, 0);
#endif
2020-06-14 15:19:14 -07:00
} else if (mode & MZ_OPEN_MODE_READ) {
#ifdef MZ_ZIP_NO_DECOMPRESSION
return MZ_SUPPORT_ERROR;
#else
bzip->bzstream.next_in = (char *)bzip->buffer;
bzip->bzstream.avail_in = 0;
bzip->error = BZ2_bzDecompressInit(&bzip->bzstream, 0, 0);
#endif
}
if (bzip->error != BZ_OK)
return MZ_OPEN_ERROR;
bzip->initialized = 1;
bzip->stream_end = 0;
bzip->mode = mode;
2017-10-03 21:56:07 -07:00
return MZ_OK;
}
2020-06-14 15:19:14 -07:00
int32_t mz_stream_bzip_is_open(void *stream) {
mz_stream_bzip *bzip = (mz_stream_bzip *)stream;
if (bzip->initialized != 1)
return MZ_OPEN_ERROR;
2017-10-03 21:56:07 -07:00
return MZ_OK;
}
2020-06-14 15:19:14 -07:00
int32_t mz_stream_bzip_read(void *stream, void *buf, int32_t size) {
#ifdef MZ_ZIP_NO_DECOMPRESSION
MZ_UNUSED(stream);
MZ_UNUSED(buf);
MZ_UNUSED(size);
return MZ_SUPPORT_ERROR;
#else
mz_stream_bzip *bzip = (mz_stream_bzip *)stream;
uint64_t total_in_before = 0;
uint64_t total_out_before = 0;
uint64_t total_in_after = 0;
uint64_t total_out_after = 0;
2018-10-08 23:31:21 -07:00
int32_t total_out = 0;
int32_t in_bytes = 0;
int32_t out_bytes = 0;
2018-11-22 09:02:10 -08:00
int32_t bytes_to_read = sizeof(bzip->buffer);
int32_t read = 0;
int32_t err = BZ_OK;
if (bzip->stream_end)
return 0;
bzip->bzstream.next_out = (char *)buf;
bzip->bzstream.avail_out = (unsigned int)size;
2020-06-14 15:19:14 -07:00
do {
if (bzip->bzstream.avail_in == 0) {
if (bzip->max_total_in > 0) {
2018-11-22 09:02:10 -08:00
if ((int64_t)bytes_to_read > (bzip->max_total_in - bzip->total_in))
2017-10-03 21:56:07 -07:00
bytes_to_read = (int32_t)(bzip->max_total_in - bzip->total_in);
2018-04-24 10:02:39 +00:00
}
2017-10-03 21:56:07 -07:00
read = mz_stream_read(bzip->stream.base, bzip->buffer, bytes_to_read);
if (read < 0)
return read;
bzip->bzstream.next_in = (char *)bzip->buffer;
2018-10-08 23:31:21 -07:00
bzip->bzstream.avail_in = (uint32_t)read;
}
total_in_before = bzip->bzstream.avail_in;
2024-11-01 16:30:39 -07:00
total_out_before = bzip->bzstream.total_out_lo32 + (((uint64_t)bzip->bzstream.total_out_hi32) << 32);
err = BZ2_bzDecompress(&bzip->bzstream);
total_in_after = bzip->bzstream.avail_in;
2024-11-01 16:30:39 -07:00
total_out_after = bzip->bzstream.total_out_lo32 + (((uint64_t)bzip->bzstream.total_out_hi32) << 32);
2018-10-08 23:31:21 -07:00
in_bytes = (int32_t)(total_in_before - total_in_after);
out_bytes = (int32_t)(total_out_after - total_out_before);
total_out += out_bytes;
bzip->total_in += in_bytes;
bzip->total_out += out_bytes;
2020-06-14 15:19:14 -07:00
if (err == BZ_STREAM_END) {
bzip->stream_end = 1;
break;
}
2020-06-14 15:19:14 -07:00
if (err != BZ_OK && err != BZ_RUN_OK) {
bzip->error = err;
break;
}
2020-06-14 15:19:14 -07:00
} while (bzip->bzstream.avail_out > 0);
if (bzip->error != 0)
return MZ_DATA_ERROR;
return total_out;
#endif
}
#ifndef MZ_ZIP_NO_COMPRESSION
2020-06-14 15:19:14 -07:00
static int32_t mz_stream_bzip_flush(void *stream) {
mz_stream_bzip *bzip = (mz_stream_bzip *)stream;
if (mz_stream_write(bzip->stream.base, bzip->buffer, bzip->buffer_len) != bzip->buffer_len)
return MZ_WRITE_ERROR;
2017-10-03 21:56:07 -07:00
return MZ_OK;
}
2020-06-14 15:19:14 -07:00
static int32_t mz_stream_bzip_compress(void *stream, int flush) {
mz_stream_bzip *bzip = (mz_stream_bzip *)stream;
uint64_t total_out_before = 0;
uint64_t total_out_after = 0;
uint32_t out_bytes = 0;
int32_t err = BZ_OK;
2020-06-14 15:19:14 -07:00
do {
if (bzip->bzstream.avail_out == 0) {
err = mz_stream_bzip_flush(bzip);
if (err != MZ_OK)
return err;
bzip->bzstream.avail_out = sizeof(bzip->buffer);
bzip->bzstream.next_out = (char *)bzip->buffer;
bzip->buffer_len = 0;
}
2024-11-01 16:30:39 -07:00
total_out_before = bzip->bzstream.total_out_lo32 + (((uint64_t)bzip->bzstream.total_out_hi32) << 32);
err = BZ2_bzCompress(&bzip->bzstream, flush);
2024-11-01 16:30:39 -07:00
total_out_after = bzip->bzstream.total_out_lo32 + (((uint64_t)bzip->bzstream.total_out_hi32) << 32);
out_bytes = (uint32_t)(total_out_after - total_out_before);
bzip->buffer_len += out_bytes;
bzip->total_out += out_bytes;
if (err == BZ_STREAM_END)
break;
2020-06-14 15:19:14 -07:00
if (err < 0) {
bzip->error = err;
return MZ_DATA_ERROR;
}
2020-06-14 15:19:14 -07:00
} while ((bzip->bzstream.avail_in > 0) || (flush == BZ_FINISH && err == BZ_FINISH_OK));
return MZ_OK;
}
#endif
2020-06-14 15:19:14 -07:00
int32_t mz_stream_bzip_write(void *stream, const void *buf, int32_t size) {
#ifdef MZ_ZIP_NO_COMPRESSION
MZ_UNUSED(stream);
MZ_UNUSED(buf);
MZ_UNUSED(size);
return MZ_SUPPORT_ERROR;
#else
mz_stream_bzip *bzip = (mz_stream_bzip *)stream;
int32_t err = MZ_OK;
2018-05-09 09:42:31 -07:00
bzip->bzstream.next_in = (char *)(intptr_t)buf;
bzip->bzstream.avail_in = (unsigned int)size;
err = mz_stream_bzip_compress(stream, BZ_RUN);
if (err != MZ_OK) {
return err;
}
bzip->total_in += size;
return size;
#endif
}
2020-06-14 15:19:14 -07:00
int64_t mz_stream_bzip_tell(void *stream) {
2018-05-02 20:07:45 -07:00
MZ_UNUSED(stream);
return MZ_TELL_ERROR;
}
2020-06-14 15:19:14 -07:00
int32_t mz_stream_bzip_seek(void *stream, int64_t offset, int32_t origin) {
2018-05-02 20:07:45 -07:00
MZ_UNUSED(stream);
MZ_UNUSED(offset);
MZ_UNUSED(origin);
return MZ_SEEK_ERROR;
}
2020-06-14 15:19:14 -07:00
int32_t mz_stream_bzip_close(void *stream) {
mz_stream_bzip *bzip = (mz_stream_bzip *)stream;
2020-06-14 15:19:14 -07:00
if (bzip->mode & MZ_OPEN_MODE_WRITE) {
#ifdef MZ_ZIP_NO_COMPRESSION
return MZ_SUPPORT_ERROR;
#else
mz_stream_bzip_compress(stream, BZ_FINISH);
mz_stream_bzip_flush(stream);
BZ2_bzCompressEnd(&bzip->bzstream);
#endif
2020-06-14 15:19:14 -07:00
} else if (bzip->mode & MZ_OPEN_MODE_READ) {
#ifdef MZ_ZIP_NO_DECOMPRESSION
return MZ_SUPPORT_ERROR;
#else
BZ2_bzDecompressEnd(&bzip->bzstream);
#endif
}
bzip->initialized = 0;
if (bzip->error != BZ_OK)
return MZ_CLOSE_ERROR;
2017-10-03 21:56:07 -07:00
return MZ_OK;
}
2020-06-14 15:19:14 -07:00
int32_t mz_stream_bzip_error(void *stream) {
mz_stream_bzip *bzip = (mz_stream_bzip *)stream;
return bzip->error;
}
2020-06-14 15:19:14 -07:00
int32_t mz_stream_bzip_get_prop_int64(void *stream, int32_t prop, int64_t *value) {
mz_stream_bzip *bzip = (mz_stream_bzip *)stream;
2020-06-14 15:19:14 -07:00
switch (prop) {
case MZ_STREAM_PROP_TOTAL_IN:
*value = bzip->total_in;
2018-07-11 15:34:45 -07:00
break;
case MZ_STREAM_PROP_TOTAL_IN_MAX:
*value = bzip->max_total_in;
2018-07-11 15:34:45 -07:00
break;
case MZ_STREAM_PROP_TOTAL_OUT:
*value = bzip->total_out;
2018-07-11 15:34:45 -07:00
break;
case MZ_STREAM_PROP_HEADER_SIZE:
*value = 0;
2018-07-11 15:34:45 -07:00
break;
default:
return MZ_EXIST_ERROR;
}
2018-07-11 15:34:45 -07:00
return MZ_OK;
}
2020-06-14 15:19:14 -07:00
int32_t mz_stream_bzip_set_prop_int64(void *stream, int32_t prop, int64_t value) {
2017-10-03 21:56:07 -07:00
mz_stream_bzip *bzip = (mz_stream_bzip *)stream;
2020-06-14 15:19:14 -07:00
switch (prop) {
case MZ_STREAM_PROP_COMPRESS_LEVEL:
if (value == MZ_COMPRESS_LEVEL_DEFAULT)
bzip->level = 6;
else
bzip->level = (int16_t)value;
return MZ_OK;
case MZ_STREAM_PROP_TOTAL_IN_MAX:
bzip->max_total_in = value;
return MZ_OK;
}
return MZ_EXIST_ERROR;
2017-10-03 21:56:07 -07:00
}
void *mz_stream_bzip_create(void) {
mz_stream_bzip *bzip = (mz_stream_bzip *)calloc(1, sizeof(mz_stream_bzip));
2023-02-19 11:17:54 -08:00
if (bzip) {
bzip->stream.vtbl = &mz_stream_bzip_vtbl;
bzip->level = 6;
}
return bzip;
}
2020-06-14 15:19:14 -07:00
void mz_stream_bzip_delete(void **stream) {
mz_stream_bzip *bzip = NULL;
2023-02-19 11:17:54 -08:00
if (!stream)
return;
bzip = (mz_stream_bzip *)*stream;
free(bzip);
*stream = NULL;
}
2017-10-03 21:56:07 -07:00
2020-06-14 15:19:14 -07:00
void *mz_stream_bzip_get_interface(void) {
return (void *)&mz_stream_bzip_vtbl;
}
2020-06-14 15:19:14 -07:00
extern void bz_internal_error(int errcode) {
2018-05-02 20:07:45 -07:00
MZ_UNUSED(errcode);
}