2017-10-01 22:42:35 -07:00
|
|
|
/* mzstrm_zlib.c -- Stream for zlib inflate/deflate
|
|
|
|
part of MiniZip project
|
2017-09-29 21:02:09 -07:00
|
|
|
|
|
|
|
Copyright (C) 2012-2017 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 <stdio.h>
|
|
|
|
#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-01 22:42:35 -07:00
|
|
|
#include "mzstrm.h"
|
|
|
|
#include "mzstrm_zlib.h"
|
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-01 21:43:24 -07:00
|
|
|
typedef struct mz_stream_zlib_s {
|
|
|
|
mz_stream stream;
|
2017-09-29 21:02:09 -07:00
|
|
|
z_stream zstream;
|
|
|
|
uint8_t buffer[UINT16_MAX];
|
|
|
|
int32_t buffer_len;
|
|
|
|
uint64_t total_in;
|
|
|
|
uint64_t total_out;
|
|
|
|
int8_t initialized;
|
|
|
|
int16_t level;
|
|
|
|
int16_t window_bits;
|
|
|
|
int16_t mem_level;
|
|
|
|
int16_t strategy;
|
|
|
|
int16_t mode;
|
|
|
|
int16_t error;
|
2017-10-01 21:43:24 -07:00
|
|
|
} mz_stream_zlib;
|
2017-09-29 21:02:09 -07:00
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
int32_t mz_stream_zlib_open(void *stream, const char *path, int 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
|
|
|
int16_t window_bits = 0;
|
|
|
|
|
|
|
|
|
|
|
|
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-01 21:43:24 -07:00
|
|
|
if (mode & MZ_STREAM_MODE_READ)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
|
|
|
zlib->zstream.next_in = zlib->buffer;
|
|
|
|
zlib->zstream.avail_in = 0;
|
|
|
|
|
|
|
|
zlib->error = inflateInit2(&zlib->zstream, -MAX_WBITS);
|
|
|
|
}
|
2017-10-01 21:43:24 -07:00
|
|
|
else if (mode & MZ_STREAM_MODE_WRITE)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
|
|
|
window_bits = zlib->window_bits;
|
|
|
|
if (window_bits > 0)
|
|
|
|
window_bits = -window_bits;
|
|
|
|
|
|
|
|
zlib->zstream.next_out = zlib->buffer;
|
|
|
|
zlib->zstream.avail_out = UINT16_MAX;
|
|
|
|
|
|
|
|
zlib->error = deflateInit2(&zlib->zstream, zlib->level, Z_DEFLATED, window_bits, zlib->mem_level, zlib->strategy);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (zlib->error != Z_OK)
|
2017-10-01 21:43:24 -07:00
|
|
|
return MZ_STREAM_ERR;
|
2017-09-29 21:02:09 -07:00
|
|
|
|
|
|
|
zlib->initialized = 1;
|
|
|
|
zlib->mode = mode;
|
2017-10-01 21:43:24 -07:00
|
|
|
return MZ_STREAM_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-01 21:43:24 -07:00
|
|
|
return MZ_STREAM_ERR;
|
|
|
|
return MZ_STREAM_OK;
|
2017-09-29 21:02:09 -07:00
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
int32_t mz_stream_zlib_read(void *stream, void *buf, uint32_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;
|
2017-09-29 21:02:09 -07:00
|
|
|
uint32_t total_out_before = 0;
|
|
|
|
uint32_t total_out_after = 0;
|
|
|
|
uint32_t out_bytes = 0;
|
|
|
|
uint32_t total_out = 0;
|
|
|
|
int32_t bytes_read = 0;
|
|
|
|
|
|
|
|
zlib->zstream.next_out = (uint8_t*)buf;
|
|
|
|
zlib->zstream.avail_out = (uint16_t)size;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if (zlib->zstream.avail_in == 0)
|
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
bytes_read = mz_stream_read(zlib->stream.base, zlib->buffer, UINT16_MAX);
|
|
|
|
if (mz_stream_error(zlib->stream.base))
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
|
|
|
zlib->error = Z_STREAM_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (bytes_read == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
zlib->total_in += bytes_read;
|
|
|
|
|
|
|
|
zlib->zstream.next_in = zlib->buffer;
|
|
|
|
zlib->zstream.avail_in = bytes_read;
|
|
|
|
}
|
|
|
|
|
|
|
|
total_out_before = zlib->zstream.total_out;
|
|
|
|
|
|
|
|
zlib->error = inflate(&zlib->zstream, Z_SYNC_FLUSH);
|
|
|
|
if ((zlib->error >= Z_OK) && (zlib->zstream.msg != NULL))
|
|
|
|
{
|
|
|
|
zlib->error = Z_DATA_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
total_out_after = zlib->zstream.total_out;
|
|
|
|
|
|
|
|
out_bytes = total_out_after - total_out_before;
|
|
|
|
total_out += out_bytes;
|
|
|
|
}
|
|
|
|
while (zlib->zstream.avail_out > 0);
|
|
|
|
|
|
|
|
zlib->total_out += total_out;
|
|
|
|
|
|
|
|
return total_out;
|
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
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)
|
|
|
|
return MZ_STREAM_ERR;
|
|
|
|
return MZ_STREAM_OK;
|
2017-09-29 21:02:09 -07:00
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
uint32_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-09-29 21:02:09 -07:00
|
|
|
uint32_t total_out_before = 0;
|
|
|
|
uint32_t total_out_after = 0;
|
|
|
|
uint32_t out_bytes = 0;
|
|
|
|
|
|
|
|
total_out_before = zlib->zstream.total_out;
|
|
|
|
zlib->error = deflate(&zlib->zstream, flush);
|
|
|
|
total_out_after = zlib->zstream.total_out;
|
|
|
|
|
|
|
|
out_bytes = (uint32_t)(total_out_after - total_out_before);
|
|
|
|
|
|
|
|
return out_bytes;
|
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
int32_t mz_stream_zlib_write(void *stream, const void *buf, uint32_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;
|
2017-09-29 21:02:09 -07:00
|
|
|
uint32_t out_bytes = 0;
|
|
|
|
uint32_t total_out = 0;
|
|
|
|
|
|
|
|
|
|
|
|
zlib->zstream.next_in = (uint8_t*)buf;
|
|
|
|
zlib->zstream.avail_in = size;
|
|
|
|
|
|
|
|
while ((zlib->error == Z_OK) && (zlib->zstream.avail_in > 0))
|
|
|
|
{
|
|
|
|
if (zlib->zstream.avail_out == 0)
|
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
if (mz_stream_zlib_flush(zlib) == MZ_STREAM_ERR)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
|
|
|
zlib->error = Z_STREAM_ERROR;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
zlib->zstream.avail_out = UINT32_MAX;
|
|
|
|
zlib->zstream.next_out = zlib->buffer;
|
|
|
|
|
|
|
|
zlib->buffer_len = 0;
|
|
|
|
}
|
|
|
|
|
2017-10-01 21:43:24 -07:00
|
|
|
out_bytes = mz_stream_zlib_deflate(stream, Z_NO_FLUSH);
|
2017-09-29 21:02:09 -07:00
|
|
|
|
|
|
|
total_out += out_bytes;
|
|
|
|
zlib->buffer_len += out_bytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
zlib->total_in += size;
|
|
|
|
zlib->total_out += total_out;
|
|
|
|
|
|
|
|
return total_out;
|
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
int64_t mz_stream_zlib_tell(void *stream)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_zlib *mem = (mz_stream_zlib *)stream;
|
|
|
|
return MZ_STREAM_ERR;
|
2017-09-29 21:02:09 -07:00
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
int32_t mz_stream_zlib_seek(void *stream, uint64_t offset, int origin)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_zlib *zlib = (mz_stream_zlib *)stream;
|
|
|
|
return MZ_STREAM_ERR;
|
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-09-29 21:02:09 -07:00
|
|
|
uint32_t out_bytes = 0;
|
|
|
|
|
2017-10-01 21:43:24 -07:00
|
|
|
if (zlib->mode & MZ_STREAM_MODE_READ)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
|
|
|
inflateEnd(&zlib->zstream);
|
|
|
|
}
|
2017-10-01 21:43:24 -07:00
|
|
|
else if (zlib->mode & MZ_STREAM_MODE_WRITE)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
out_bytes = mz_stream_zlib_deflate(stream, Z_FINISH);
|
2017-09-29 21:02:09 -07:00
|
|
|
|
|
|
|
zlib->buffer_len += out_bytes;
|
|
|
|
zlib->total_out += out_bytes;
|
|
|
|
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_zlib_flush(stream);
|
2017-09-29 21:02:09 -07:00
|
|
|
|
|
|
|
zlib->error = deflateEnd(&zlib->zstream);
|
|
|
|
}
|
|
|
|
|
|
|
|
zlib->initialized = 0;
|
|
|
|
if (zlib->error != Z_OK)
|
2017-10-01 21:43:24 -07:00
|
|
|
return MZ_STREAM_ERR;
|
|
|
|
return MZ_STREAM_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-01 22:42:35 -07:00
|
|
|
void mz_stream_zlib_set_level(void *stream, int16_t level)
|
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
|
|
|
zlib->level = level;
|
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
void mz_stream_zlib_set_window_bits(void *stream, int16_t window_bits)
|
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
|
|
|
zlib->window_bits = window_bits;
|
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
void mz_stream_zlib_set_mem_level(void *stream, int16_t mem_level)
|
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
|
|
|
zlib->mem_level = mem_level;
|
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
void mz_stream_zlib_set_strategy(void *stream, int16_t strategy)
|
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
|
|
|
zlib->strategy = strategy;
|
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
uint64_t mz_stream_zlib_get_total_in(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->total_in;
|
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
uint64_t mz_stream_zlib_get_total_out(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->total_out;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
zlib = (mz_stream_zlib *)malloc(sizeof(mz_stream_zlib));
|
|
|
|
if (zlib != NULL)
|
|
|
|
{
|
|
|
|
memset(zlib, 0, sizeof(mz_stream_zlib));
|
|
|
|
|
|
|
|
zlib->stream.open = mz_stream_zlib_open;
|
|
|
|
zlib->stream.is_open = mz_stream_zlib_is_open;
|
|
|
|
zlib->stream.read = mz_stream_zlib_read;
|
|
|
|
zlib->stream.write = mz_stream_zlib_write;
|
|
|
|
zlib->stream.tell = mz_stream_zlib_tell;
|
|
|
|
zlib->stream.seek = mz_stream_zlib_seek;
|
|
|
|
zlib->stream.close = mz_stream_zlib_close;
|
|
|
|
zlib->stream.error = mz_stream_zlib_error;
|
|
|
|
zlib->stream.create = mz_stream_zlib_create;
|
|
|
|
zlib->stream.delete = mz_stream_zlib_delete;
|
|
|
|
zlib->level = Z_DEFAULT_COMPRESSION;
|
|
|
|
zlib->window_bits = -MAX_WBITS;
|
|
|
|
zlib->mem_level = DEF_MEM_LEVEL;
|
|
|
|
zlib->strategy = Z_DEFAULT_STRATEGY;
|
|
|
|
}
|
|
|
|
if (stream != NULL)
|
|
|
|
*stream = zlib;
|
2017-09-29 21:02:09 -07:00
|
|
|
|
|
|
|
return (voidpf)zlib;
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
free(zlib);
|
|
|
|
}
|
|
|
|
|
2017-10-01 21:43:24 -07:00
|
|
|
typedef struct mz_stream_crc32_s {
|
|
|
|
mz_stream stream;
|
2017-09-29 21:02:09 -07:00
|
|
|
int8_t initialized;
|
|
|
|
uint32_t value;
|
2017-10-01 21:43:24 -07:00
|
|
|
} mz_stream_crc32;
|
2017-09-29 21:02:09 -07:00
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
int32_t mz_stream_crc32_open(void *stream, const char *path, int mode)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_crc32 *crc32 = (mz_stream_crc32 *)stream;
|
2017-09-29 21:02:09 -07:00
|
|
|
crc32->initialized = 1;
|
|
|
|
crc32->value = 0;
|
2017-10-01 21:43:24 -07:00
|
|
|
return MZ_STREAM_OK;
|
2017-09-29 21:02:09 -07:00
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
int32_t mz_stream_crc32_is_open(void *stream)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_crc32 *crc32 = (mz_stream_crc32 *)stream;
|
2017-09-29 21:02:09 -07:00
|
|
|
if (crc32->initialized != 1)
|
2017-10-01 21:43:24 -07:00
|
|
|
return MZ_STREAM_ERR;
|
|
|
|
return MZ_STREAM_OK;
|
2017-09-29 21:02:09 -07:00
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
int32_t mz_stream_crc32_read(void *stream, void *buf, uint32_t size)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_crc32 *crc32x = (mz_stream_crc32 *)stream;
|
|
|
|
int32_t read = mz_stream_read(crc32x->stream.base, buf, size);
|
2017-09-29 21:02:09 -07:00
|
|
|
if (read > 0)
|
|
|
|
crc32x->value = crc32(crc32x->value, buf, read);
|
|
|
|
return read;
|
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
int32_t mz_stream_crc32_write(void *stream, const void *buf, uint32_t size)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_crc32 *crc32x = (mz_stream_crc32 *)stream;
|
2017-09-29 21:02:09 -07:00
|
|
|
crc32x->value = crc32(crc32x->value, buf, size);
|
2017-10-01 21:43:24 -07:00
|
|
|
return mz_stream_write(crc32x->stream.base, buf, size);
|
2017-09-29 21:02:09 -07:00
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
int64_t mz_stream_crc32_tell(void *stream)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_crc32 *crc32 = (mz_stream_crc32 *)stream;
|
|
|
|
return mz_stream_tell(crc32->stream.base);
|
2017-09-29 21:02:09 -07:00
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
int32_t mz_stream_crc32_seek(void *stream, uint64_t offset, int origin)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_crc32 *crc32 = (mz_stream_crc32 *)stream;
|
|
|
|
return mz_stream_seek(crc32->stream.base, offset, origin);
|
2017-09-29 21:02:09 -07:00
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
int32_t mz_stream_crc32_close(void *stream)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_crc32 *crc32 = (mz_stream_crc32 *)stream;
|
2017-09-29 21:02:09 -07:00
|
|
|
crc32->initialized = 0;
|
2017-10-01 21:43:24 -07:00
|
|
|
return MZ_STREAM_OK;
|
2017-09-29 21:02:09 -07:00
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
int32_t mz_stream_crc32_error(void *stream)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_crc32 *crc32 = (mz_stream_crc32 *)stream;
|
|
|
|
return mz_stream_error(crc32->stream.base);
|
2017-09-29 21:02:09 -07:00
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
uint32_t mz_stream_crc32_get_value(void *stream)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_crc32 *crc32 = (mz_stream_crc32 *)stream;
|
2017-09-29 21:02:09 -07:00
|
|
|
return crc32->value;
|
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
void *mz_stream_crc32_create(void **stream)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_crc32 *crc32 = NULL;
|
2017-09-29 21:02:09 -07:00
|
|
|
|
2017-10-01 21:43:24 -07:00
|
|
|
crc32 = (mz_stream_crc32 *)malloc(sizeof(mz_stream_crc32));
|
|
|
|
if (crc32 != NULL)
|
|
|
|
{
|
|
|
|
memset(crc32, 0, sizeof(mz_stream_crc32));
|
|
|
|
|
|
|
|
crc32->stream.open = mz_stream_crc32_open;
|
|
|
|
crc32->stream.is_open = mz_stream_crc32_is_open;
|
|
|
|
crc32->stream.read = mz_stream_crc32_read;
|
|
|
|
crc32->stream.write = mz_stream_crc32_write;
|
|
|
|
crc32->stream.tell = mz_stream_crc32_tell;
|
|
|
|
crc32->stream.seek = mz_stream_crc32_seek;
|
|
|
|
crc32->stream.close = mz_stream_crc32_close;
|
|
|
|
crc32->stream.error = mz_stream_crc32_error;
|
|
|
|
crc32->stream.create = mz_stream_crc32_create;
|
|
|
|
crc32->stream.delete = mz_stream_crc32_delete;
|
|
|
|
}
|
|
|
|
if (stream != NULL)
|
|
|
|
*stream = crc32;
|
2017-09-29 21:02:09 -07:00
|
|
|
|
|
|
|
return (voidpf)crc32;
|
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
void mz_stream_crc32_delete(void **stream)
|
2017-09-29 21:02:09 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_crc32 *crc32 = NULL;
|
|
|
|
if (stream == NULL)
|
|
|
|
return;
|
|
|
|
crc32 = (mz_stream_crc32 *)*stream;
|
2017-09-29 21:02:09 -07:00
|
|
|
if (crc32 != NULL)
|
|
|
|
free(crc32);
|
|
|
|
}
|