2017-10-05 23:32:57 -07:00
|
|
|
/* mz_strm.c -- Stream interface
|
2017-10-23 17:35:22 -07:00
|
|
|
Version 2.2.1, October 23rd, 2017
|
2014-01-12 14:04:54 -07:00
|
|
|
part of the MiniZip project
|
2012-02-25 23:28:28 -07:00
|
|
|
|
2017-09-16 13:25:02 +08:00
|
|
|
Copyright (C) 2012-2017 Nathan Moinvaziri
|
|
|
|
https://github.com/nmoinvaz/minizip
|
2014-01-12 14:04:54 -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.
|
2012-02-25 23:28:28 -07:00
|
|
|
*/
|
|
|
|
|
2012-10-21 15:20:13 -07:00
|
|
|
#include <stdlib.h>
|
2017-10-01 22:42:35 -07:00
|
|
|
#include <stdint.h>
|
2017-10-02 00:44:51 -07:00
|
|
|
#include <string.h>
|
2017-03-04 10:01:10 -08:00
|
|
|
|
2017-10-03 23:19:37 -07:00
|
|
|
#include <time.h>
|
|
|
|
|
2017-10-16 07:37:11 -07:00
|
|
|
#include "mz.h"
|
2017-10-04 22:10:11 -07:00
|
|
|
#include "mz_strm.h"
|
2012-10-21 15:20:13 -07:00
|
|
|
|
2017-10-03 23:19:37 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
2017-10-05 21:26:34 -07:00
|
|
|
int32_t mz_stream_open(void *stream, const char *path, int32_t mode)
|
2012-02-25 23:28:28 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream *strm = (mz_stream *)stream;
|
2017-10-08 21:48:28 -07:00
|
|
|
if (strm == NULL || strm->vtbl == NULL || strm->vtbl->open == NULL)
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_STREAM_ERROR;
|
2017-10-08 21:48:28 -07:00
|
|
|
return strm->vtbl->open(strm, path, mode);
|
2012-02-25 23:28:28 -07:00
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
int32_t mz_stream_is_open(void *stream)
|
2012-02-25 23:28:28 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream *strm = (mz_stream *)stream;
|
2017-10-08 21:48:28 -07:00
|
|
|
if (strm == NULL || strm->vtbl == NULL || strm->vtbl->is_open == NULL)
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_STREAM_ERROR;
|
2017-10-08 21:48:28 -07:00
|
|
|
return strm->vtbl->is_open(strm);
|
2012-02-25 23:28:28 -07:00
|
|
|
}
|
|
|
|
|
2017-10-05 21:26:34 -07:00
|
|
|
int32_t mz_stream_read(void *stream, void *buf, int32_t size)
|
2012-02-25 23:28:28 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream *strm = (mz_stream *)stream;
|
2017-10-08 21:48:28 -07:00
|
|
|
if (strm == NULL || strm->vtbl == NULL || strm->vtbl->read == NULL)
|
|
|
|
return MZ_PARAM_ERROR;
|
|
|
|
if (mz_stream_is_open(stream) != MZ_OK)
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_STREAM_ERROR;
|
2017-10-08 21:48:28 -07:00
|
|
|
return strm->vtbl->read(strm, buf, size);
|
2012-02-25 23:28:28 -07:00
|
|
|
}
|
|
|
|
|
2017-10-21 09:37:18 -07:00
|
|
|
static int32_t mz_stream_read_value(void *stream, uint64_t *value, int32_t len)
|
2017-10-02 00:44:51 -07:00
|
|
|
{
|
2017-10-21 09:37:18 -07:00
|
|
|
uint8_t buf[8];
|
|
|
|
int32_t n = 0;
|
|
|
|
int32_t i = 0;
|
|
|
|
|
|
|
|
*value = 0;
|
|
|
|
if (mz_stream_read(stream, buf, len) == len)
|
|
|
|
{
|
|
|
|
for (n = 0; n < len; n += 1, i += 8)
|
|
|
|
*value += ((uint64_t)buf[n]) << i;
|
|
|
|
}
|
2017-10-02 00:44:51 -07:00
|
|
|
else if (mz_stream_error(stream))
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_STREAM_ERROR;
|
2017-10-21 09:37:18 -07:00
|
|
|
else
|
|
|
|
return MZ_END_OF_STREAM;
|
2017-10-02 00:44:51 -07:00
|
|
|
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_OK;
|
2017-10-02 00:44:51 -07:00
|
|
|
}
|
|
|
|
|
2017-10-21 09:37:18 -07:00
|
|
|
int32_t mz_stream_read_uint8(void *stream, uint8_t *value)
|
2017-10-02 00:44:51 -07:00
|
|
|
{
|
2017-10-21 09:37:18 -07:00
|
|
|
int32_t err = MZ_OK;
|
|
|
|
uint64_t value64 = 0;
|
2017-10-02 00:44:51 -07:00
|
|
|
|
|
|
|
*value = 0;
|
2017-10-21 09:37:18 -07:00
|
|
|
err = mz_stream_read_value(stream, &value64, sizeof(uint8_t));
|
|
|
|
if (err == MZ_OK)
|
|
|
|
*value = (uint8_t)value64;
|
|
|
|
return err;
|
|
|
|
}
|
2017-10-02 00:44:51 -07:00
|
|
|
|
2017-10-21 09:37:18 -07:00
|
|
|
int32_t mz_stream_read_uint16(void *stream, uint16_t *value)
|
|
|
|
{
|
|
|
|
int32_t err = MZ_OK;
|
|
|
|
uint64_t value64 = 0;
|
|
|
|
|
|
|
|
*value = 0;
|
|
|
|
err = mz_stream_read_value(stream, &value64, sizeof(uint16_t));
|
|
|
|
if (err == MZ_OK)
|
|
|
|
*value = (uint16_t)value64;
|
|
|
|
return err;
|
2017-10-02 00:44:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
int32_t mz_stream_read_uint32(void *stream, uint32_t *value)
|
|
|
|
{
|
2017-10-21 09:37:18 -07:00
|
|
|
int32_t err = MZ_OK;
|
|
|
|
uint64_t value64 = 0;
|
2017-10-02 00:44:51 -07:00
|
|
|
|
|
|
|
*value = 0;
|
2017-10-21 09:37:18 -07:00
|
|
|
err = mz_stream_read_value(stream, &value64, sizeof(uint32_t));
|
|
|
|
if (err == MZ_OK)
|
|
|
|
*value = (uint32_t)value64;
|
|
|
|
return err;
|
2017-10-02 00:44:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
int32_t mz_stream_read_uint64(void *stream, uint64_t *value)
|
|
|
|
{
|
2017-10-21 09:37:18 -07:00
|
|
|
return mz_stream_read_value(stream, value, sizeof(uint64_t));
|
2017-10-02 00:44:51 -07:00
|
|
|
}
|
|
|
|
|
2017-10-05 21:26:34 -07:00
|
|
|
int32_t mz_stream_write(void *stream, const void *buf, int32_t size)
|
2012-02-25 23:28:28 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream *strm = (mz_stream *)stream;
|
2017-10-02 22:11:03 -07:00
|
|
|
if (size == 0)
|
|
|
|
return size;
|
2017-10-08 21:48:28 -07:00
|
|
|
if (strm == NULL || strm->vtbl == NULL || strm->vtbl->write == NULL)
|
|
|
|
return MZ_PARAM_ERROR;
|
|
|
|
if (mz_stream_is_open(stream) != MZ_OK)
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_STREAM_ERROR;
|
2017-10-08 21:48:28 -07:00
|
|
|
return strm->vtbl->write(strm, buf, size);
|
2012-02-25 23:28:28 -07:00
|
|
|
}
|
|
|
|
|
2017-10-20 07:59:39 -07:00
|
|
|
static int32_t mz_stream_write_value(void *stream, uint64_t value, int32_t len)
|
2017-10-02 22:11:03 -07:00
|
|
|
{
|
|
|
|
uint8_t buf[8];
|
2017-10-20 07:59:39 -07:00
|
|
|
int32_t n = 0;
|
2017-10-02 22:11:03 -07:00
|
|
|
|
2017-10-20 07:59:39 -07:00
|
|
|
for (n = 0; n < len; n += 1)
|
2017-10-02 22:11:03 -07:00
|
|
|
{
|
|
|
|
buf[n] = (uint8_t)(value & 0xff);
|
|
|
|
value >>= 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (value != 0)
|
|
|
|
{
|
|
|
|
// Data overflow - hack for ZIP64 (X Roche)
|
2017-10-20 07:59:39 -07:00
|
|
|
for (n = 0; n < len; n += 1)
|
2017-10-02 22:11:03 -07:00
|
|
|
buf[n] = 0xff;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mz_stream_write(stream, buf, len) != len)
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_STREAM_ERROR;
|
2017-10-02 22:11:03 -07:00
|
|
|
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_OK;
|
2017-10-02 22:11:03 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
int32_t mz_stream_write_uint8(void *stream, uint8_t value)
|
|
|
|
{
|
|
|
|
return mz_stream_write_value(stream, value, sizeof(uint8_t));
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t mz_stream_write_uint16(void *stream, uint16_t value)
|
|
|
|
{
|
|
|
|
return mz_stream_write_value(stream, value, sizeof(uint16_t));
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t mz_stream_write_uint32(void *stream, uint32_t value)
|
|
|
|
{
|
|
|
|
return mz_stream_write_value(stream, value, sizeof(uint32_t));
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t mz_stream_write_uint64(void *stream, uint64_t value)
|
|
|
|
{
|
|
|
|
return mz_stream_write_value(stream, value, sizeof(uint64_t));
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t mz_stream_copy(void *target, void *source, int32_t len)
|
|
|
|
{
|
2017-10-15 22:22:19 -07:00
|
|
|
uint8_t buf[INT16_MAX];
|
2017-10-02 22:11:03 -07:00
|
|
|
int32_t bytes_to_copy = 0;
|
|
|
|
int32_t read = 0;
|
|
|
|
int32_t written = 0;
|
|
|
|
|
|
|
|
while (len > 0)
|
|
|
|
{
|
|
|
|
bytes_to_copy = len;
|
2017-10-15 22:22:19 -07:00
|
|
|
if (bytes_to_copy > sizeof(buf))
|
|
|
|
bytes_to_copy = sizeof(buf);
|
2017-10-02 22:11:03 -07:00
|
|
|
read = mz_stream_read(source, buf, bytes_to_copy);
|
2017-10-03 21:56:07 -07:00
|
|
|
if (read < 0)
|
|
|
|
return MZ_STREAM_ERROR;
|
2017-10-02 22:11:03 -07:00
|
|
|
written = mz_stream_write(target, buf, read);
|
|
|
|
if (written != read)
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_STREAM_ERROR;
|
2017-10-02 22:11:03 -07:00
|
|
|
len -= read;
|
|
|
|
}
|
|
|
|
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_OK;
|
2017-10-02 22:11:03 -07:00
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
int64_t mz_stream_tell(void *stream)
|
2012-02-25 23:28:28 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream *strm = (mz_stream *)stream;
|
2017-10-08 21:48:28 -07:00
|
|
|
if (strm == NULL || strm->vtbl == NULL || strm->vtbl->tell == NULL)
|
|
|
|
return MZ_PARAM_ERROR;
|
|
|
|
if (mz_stream_is_open(stream) != MZ_OK)
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_STREAM_ERROR;
|
2017-10-08 21:48:28 -07:00
|
|
|
return strm->vtbl->tell(strm);
|
2012-02-25 23:28:28 -07:00
|
|
|
}
|
|
|
|
|
2017-10-05 21:26:34 -07:00
|
|
|
int32_t mz_stream_seek(void *stream, int64_t offset, int32_t origin)
|
2012-02-25 23:28:28 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream *strm = (mz_stream *)stream;
|
2017-10-08 21:48:28 -07:00
|
|
|
if (strm == NULL || strm->vtbl == NULL || strm->vtbl->seek == NULL)
|
|
|
|
return MZ_PARAM_ERROR;
|
|
|
|
if (mz_stream_is_open(stream) != MZ_OK)
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_STREAM_ERROR;
|
2017-10-08 21:48:28 -07:00
|
|
|
return strm->vtbl->seek(strm, offset, origin);
|
2017-09-29 21:02:09 -07:00
|
|
|
}
|
2012-02-25 23:28:28 -07:00
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
int32_t mz_stream_close(void *stream)
|
2012-02-25 23:28:28 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream *strm = (mz_stream *)stream;
|
2017-10-08 21:48:28 -07:00
|
|
|
if (strm == NULL || strm->vtbl == NULL || strm->vtbl->close == NULL)
|
|
|
|
return MZ_PARAM_ERROR;
|
|
|
|
if (mz_stream_is_open(stream) != MZ_OK)
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_STREAM_ERROR;
|
2017-10-08 21:48:28 -07:00
|
|
|
return strm->vtbl->close(strm);
|
2012-02-25 23:28:28 -07:00
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
int32_t mz_stream_error(void *stream)
|
2012-02-25 23:28:28 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream *strm = (mz_stream *)stream;
|
2017-10-08 21:48:28 -07:00
|
|
|
if (strm == NULL || strm->vtbl == NULL || strm->vtbl->error == NULL)
|
|
|
|
return MZ_PARAM_ERROR;
|
|
|
|
return strm->vtbl->error(strm);
|
2012-02-25 23:28:28 -07:00
|
|
|
}
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
int32_t mz_stream_set_base(void *stream, void *base)
|
2012-02-25 23:28:28 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream *strm = (mz_stream *)stream;
|
|
|
|
strm->base = (mz_stream *)base;
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_OK;
|
2012-02-25 23:28:28 -07:00
|
|
|
}
|
2017-10-01 22:42:35 -07:00
|
|
|
|
2017-10-09 23:36:30 -07:00
|
|
|
int32_t mz_stream_get_prop_int64(void *stream, int32_t prop, int64_t *value)
|
2017-10-02 22:11:03 -07:00
|
|
|
{
|
|
|
|
mz_stream *strm = (mz_stream *)stream;
|
2017-10-09 23:36:30 -07:00
|
|
|
if (strm == NULL || strm->vtbl == NULL || strm->vtbl->get_prop_int64 == NULL)
|
2017-10-08 21:48:28 -07:00
|
|
|
return MZ_PARAM_ERROR;
|
2017-10-09 23:36:30 -07:00
|
|
|
return strm->vtbl->get_prop_int64(stream, prop, value);
|
2017-10-02 22:11:03 -07:00
|
|
|
}
|
|
|
|
|
2017-10-09 23:36:30 -07:00
|
|
|
int32_t mz_stream_set_prop_int64(void *stream, int32_t prop, int64_t value)
|
2017-10-02 22:11:03 -07:00
|
|
|
{
|
|
|
|
mz_stream *strm = (mz_stream *)stream;
|
2017-10-09 23:36:30 -07:00
|
|
|
if (strm == NULL || strm->vtbl == NULL || strm->vtbl->set_prop_int64 == NULL)
|
2017-10-08 21:48:28 -07:00
|
|
|
return MZ_PARAM_ERROR;
|
2017-10-09 23:36:30 -07:00
|
|
|
return strm->vtbl->set_prop_int64(stream, prop, value);
|
2017-10-02 22:11:03 -07:00
|
|
|
}
|
|
|
|
|
2017-10-08 23:26:17 -07:00
|
|
|
void *mz_stream_create(void **stream, mz_stream_vtbl *vtbl)
|
2017-10-02 00:44:51 -07:00
|
|
|
{
|
|
|
|
if (stream == NULL)
|
|
|
|
return NULL;
|
2017-10-08 23:26:17 -07:00
|
|
|
if (vtbl == NULL || vtbl->create == NULL)
|
2017-10-08 21:48:28 -07:00
|
|
|
return NULL;
|
2017-10-08 23:26:17 -07:00
|
|
|
return vtbl->create(stream);
|
2017-10-02 00:44:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void mz_stream_delete(void **stream)
|
|
|
|
{
|
|
|
|
mz_stream *strm = NULL;
|
|
|
|
if (stream == NULL)
|
|
|
|
return;
|
|
|
|
strm = (mz_stream *)*stream;
|
2017-10-08 21:48:28 -07:00
|
|
|
if (strm != NULL && strm->vtbl != NULL && strm->vtbl->delete != NULL)
|
|
|
|
strm->vtbl->delete(stream);
|
2017-10-05 18:45:23 -07:00
|
|
|
*stream = NULL;
|
2017-10-02 00:44:51 -07:00
|
|
|
}
|