2017-10-05 23:32:57 -07:00
|
|
|
/* mz_strm.c -- Stream interface
|
2017-10-05 07:34:59 -07:00
|
|
|
Version 2.0.0, October 4th, 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-05 23:32:57 -07:00
|
|
|
#include "mz_error.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-02 00:44:51 -07:00
|
|
|
int32_t mz_stream_read_uint8(void *stream, uint8_t *value)
|
|
|
|
{
|
|
|
|
uint8_t c = 0;
|
|
|
|
|
|
|
|
if (mz_stream_read(stream, &c, 1) == 1)
|
|
|
|
*value = (uint8_t)c;
|
|
|
|
else if (mz_stream_error(stream))
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_STREAM_ERROR;
|
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
|
|
|
}
|
|
|
|
|
|
|
|
int32_t mz_stream_read_uint16(void *stream, uint16_t *value)
|
|
|
|
{
|
|
|
|
uint8_t c = 0;
|
|
|
|
|
|
|
|
*value = 0;
|
2017-10-03 21:56:07 -07:00
|
|
|
if (mz_stream_read_uint8(stream, &c) != MZ_OK)
|
|
|
|
return MZ_STREAM_ERROR;
|
2017-10-02 00:44:51 -07:00
|
|
|
*value = (uint16_t)c;
|
2017-10-03 21:56:07 -07:00
|
|
|
if (mz_stream_read_uint8(stream, &c) != MZ_OK)
|
|
|
|
return MZ_STREAM_ERROR;
|
2017-10-02 00:44:51 -07:00
|
|
|
*value += ((uint16_t)c) << 8;
|
|
|
|
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_OK;
|
2017-10-02 00:44:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
int32_t mz_stream_read_uint32(void *stream, uint32_t *value)
|
|
|
|
{
|
|
|
|
uint8_t c = 0;
|
|
|
|
|
|
|
|
*value = 0;
|
2017-10-03 21:56:07 -07:00
|
|
|
if (mz_stream_read_uint8(stream, &c) != MZ_OK)
|
|
|
|
return MZ_STREAM_ERROR;
|
2017-10-02 00:44:51 -07:00
|
|
|
*value = (uint32_t)c;
|
2017-10-03 21:56:07 -07:00
|
|
|
if (mz_stream_read_uint8(stream, &c) != MZ_OK)
|
|
|
|
return MZ_STREAM_ERROR;
|
2017-10-02 00:44:51 -07:00
|
|
|
*value += ((uint32_t)c) << 8;
|
2017-10-03 21:56:07 -07:00
|
|
|
if (mz_stream_read_uint8(stream, &c) != MZ_OK)
|
|
|
|
return MZ_STREAM_ERROR;
|
2017-10-02 00:44:51 -07:00
|
|
|
*value += ((uint32_t)c) << 16;
|
2017-10-03 21:56:07 -07:00
|
|
|
if (mz_stream_read_uint8(stream, &c) != MZ_OK)
|
|
|
|
return MZ_STREAM_ERROR;
|
2017-10-02 00:44:51 -07:00
|
|
|
*value += ((uint32_t)c) << 24;
|
|
|
|
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_OK;
|
2017-10-02 00:44:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
int32_t mz_stream_read_uint64(void *stream, uint64_t *value)
|
|
|
|
{
|
|
|
|
uint8_t c = 0;
|
|
|
|
|
2017-10-03 21:56:07 -07:00
|
|
|
if (mz_stream_read_uint8(stream, &c) != MZ_OK)
|
|
|
|
return MZ_STREAM_ERROR;
|
2017-10-02 00:44:51 -07:00
|
|
|
*value = (uint64_t)c;
|
2017-10-03 21:56:07 -07:00
|
|
|
if (mz_stream_read_uint8(stream, &c) != MZ_OK)
|
|
|
|
return MZ_STREAM_ERROR;
|
2017-10-02 00:44:51 -07:00
|
|
|
*value += ((uint64_t)c) << 8;
|
2017-10-03 21:56:07 -07:00
|
|
|
if (mz_stream_read_uint8(stream, &c) != MZ_OK)
|
|
|
|
return MZ_STREAM_ERROR;
|
2017-10-02 00:44:51 -07:00
|
|
|
*value += ((uint64_t)c) << 16;
|
2017-10-03 21:56:07 -07:00
|
|
|
if (mz_stream_read_uint8(stream, &c) != MZ_OK)
|
|
|
|
return MZ_STREAM_ERROR;
|
2017-10-02 00:44:51 -07:00
|
|
|
*value += ((uint64_t)c) << 24;
|
2017-10-03 21:56:07 -07:00
|
|
|
if (mz_stream_read_uint8(stream, &c) != MZ_OK)
|
|
|
|
return MZ_STREAM_ERROR;
|
2017-10-02 00:44:51 -07:00
|
|
|
*value += ((uint64_t)c) << 32;
|
2017-10-03 21:56:07 -07:00
|
|
|
if (mz_stream_read_uint8(stream, &c) != MZ_OK)
|
|
|
|
return MZ_STREAM_ERROR;
|
2017-10-02 00:44:51 -07:00
|
|
|
*value += ((uint64_t)c) << 40;
|
2017-10-03 21:56:07 -07:00
|
|
|
if (mz_stream_read_uint8(stream, &c) != MZ_OK)
|
|
|
|
return MZ_STREAM_ERROR;
|
2017-10-02 00:44:51 -07:00
|
|
|
*value += ((uint64_t)c) << 48;
|
2017-10-03 21:56:07 -07:00
|
|
|
if (mz_stream_read_uint8(stream, &c) != MZ_OK)
|
|
|
|
return MZ_STREAM_ERROR;
|
2017-10-02 00:44:51 -07:00
|
|
|
*value += ((uint64_t)c) << 56;
|
|
|
|
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_OK;
|
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-02 22:11:03 -07:00
|
|
|
static int32_t mz_stream_write_value(void *stream, uint64_t value, uint32_t len)
|
|
|
|
{
|
|
|
|
uint8_t buf[8];
|
|
|
|
uint32_t n = 0;
|
|
|
|
|
|
|
|
for (n = 0; n < len; n++)
|
|
|
|
{
|
|
|
|
buf[n] = (uint8_t)(value & 0xff);
|
|
|
|
value >>= 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (value != 0)
|
|
|
|
{
|
|
|
|
// Data overflow - hack for ZIP64 (X Roche)
|
|
|
|
for (n = 0; n < len; n++)
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2017-10-03 23:19:37 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
2017-10-02 00:44:51 -07:00
|
|
|
typedef struct mz_stream_passthru_s {
|
2017-10-02 22:11:03 -07:00
|
|
|
mz_stream stream;
|
|
|
|
int64_t total_in;
|
|
|
|
int64_t total_out;
|
2017-10-02 00:44:51 -07:00
|
|
|
} mz_stream_passthru;
|
|
|
|
|
2017-10-03 23:19:37 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
2017-10-05 21:26:34 -07:00
|
|
|
int32_t mz_stream_passthru_open(void *stream, const char *path, int32_t mode)
|
2017-10-02 00:44:51 -07:00
|
|
|
{
|
2017-10-05 18:45:23 -07:00
|
|
|
return MZ_OK;
|
2017-10-02 00:44:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
int32_t mz_stream_passthru_is_open(void *stream)
|
|
|
|
{
|
|
|
|
mz_stream_passthru *passthru = (mz_stream_passthru *)stream;
|
|
|
|
return mz_stream_is_open(passthru->stream.base);
|
|
|
|
}
|
|
|
|
|
2017-10-05 21:26:34 -07:00
|
|
|
int32_t mz_stream_passthru_read(void *stream, void *buf, int32_t size)
|
2017-10-02 00:44:51 -07:00
|
|
|
{
|
|
|
|
mz_stream_passthru *passthru = (mz_stream_passthru *)stream;
|
2017-10-02 22:11:03 -07:00
|
|
|
int32_t read = mz_stream_read(passthru->stream.base, buf, size);
|
|
|
|
if (read > 0)
|
|
|
|
passthru->total_in += read;
|
|
|
|
return read;
|
2017-10-02 00:44:51 -07:00
|
|
|
}
|
|
|
|
|
2017-10-05 21:26:34 -07:00
|
|
|
int32_t mz_stream_passthru_write(void *stream, const void *buf, int32_t size)
|
2017-10-02 00:44:51 -07:00
|
|
|
{
|
|
|
|
mz_stream_passthru *passthru = (mz_stream_passthru *)stream;
|
2017-10-02 22:11:03 -07:00
|
|
|
int32_t written = mz_stream_write(passthru->stream.base, buf, size);
|
|
|
|
if (written > 0)
|
|
|
|
passthru->total_out += written;
|
|
|
|
return written;
|
2017-10-02 00:44:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
int64_t mz_stream_passthru_tell(void *stream)
|
|
|
|
{
|
|
|
|
mz_stream_passthru *passthru = (mz_stream_passthru *)stream;
|
|
|
|
return mz_stream_tell(passthru->stream.base);
|
|
|
|
}
|
|
|
|
|
2017-10-05 21:26:34 -07:00
|
|
|
int32_t mz_stream_passthru_seek(void *stream, int64_t offset, int32_t origin)
|
2017-10-02 00:44:51 -07:00
|
|
|
{
|
|
|
|
mz_stream_passthru *passthru = (mz_stream_passthru *)stream;
|
|
|
|
return mz_stream_seek(passthru->stream.base, offset, origin);
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t mz_stream_passthru_close(void *stream)
|
|
|
|
{
|
2017-10-05 18:45:23 -07:00
|
|
|
return MZ_OK;
|
2017-10-02 00:44:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
int32_t mz_stream_passthru_error(void *stream)
|
|
|
|
{
|
|
|
|
mz_stream_passthru *passthru = (mz_stream_passthru *)stream;
|
2017-10-03 21:56:07 -07:00
|
|
|
return mz_stream_error(passthru->stream.base);
|
2017-10-02 00:44:51 -07:00
|
|
|
}
|
|
|
|
|
2017-10-09 23:36:30 -07:00
|
|
|
int32_t mz_stream_passthru_get_prop_int64(void *stream, int32_t prop, int64_t *value)
|
2017-10-02 22:11:03 -07:00
|
|
|
{
|
|
|
|
mz_stream_passthru *passthru = (mz_stream_passthru *)stream;
|
2017-10-09 23:36:30 -07:00
|
|
|
return mz_stream_get_prop_int64(passthru->stream.base, prop, value);
|
2017-10-02 22:11:03 -07:00
|
|
|
}
|
|
|
|
|
2017-10-09 23:36:30 -07:00
|
|
|
int32_t mz_stream_passthru_set_prop_int64(void *stream, int32_t prop, int64_t value)
|
2017-10-02 22:11:03 -07:00
|
|
|
{
|
|
|
|
mz_stream_passthru *passthru = (mz_stream_passthru *)stream;
|
2017-10-09 23:36:30 -07:00
|
|
|
return mz_stream_set_prop_int64(passthru->stream.base, prop, value);
|
2017-10-02 22:11:03 -07:00
|
|
|
}
|
|
|
|
|
2017-10-08 21:48:28 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
mz_stream_vtbl mz_stream_passthru_vtbl = {
|
|
|
|
mz_stream_passthru_open,
|
|
|
|
mz_stream_passthru_is_open,
|
|
|
|
mz_stream_passthru_read,
|
|
|
|
mz_stream_passthru_write,
|
|
|
|
mz_stream_passthru_tell,
|
|
|
|
mz_stream_passthru_seek,
|
|
|
|
mz_stream_passthru_close,
|
|
|
|
mz_stream_passthru_error,
|
|
|
|
mz_stream_passthru_create,
|
|
|
|
mz_stream_passthru_delete,
|
2017-10-09 23:36:30 -07:00
|
|
|
mz_stream_passthru_get_prop_int64,
|
|
|
|
mz_stream_passthru_set_prop_int64
|
2017-10-08 21:48:28 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2017-10-02 00:44:51 -07:00
|
|
|
void *mz_stream_passthru_create(void **stream)
|
|
|
|
{
|
|
|
|
mz_stream_passthru *passthru = NULL;
|
|
|
|
|
|
|
|
passthru = (mz_stream_passthru *)malloc(sizeof(mz_stream_passthru));
|
|
|
|
if (passthru != NULL)
|
|
|
|
{
|
|
|
|
memset(passthru, 0, sizeof(mz_stream_passthru));
|
2017-10-08 21:48:28 -07:00
|
|
|
passthru->stream.vtbl = &mz_stream_passthru_vtbl;
|
2017-10-02 00:44:51 -07:00
|
|
|
}
|
|
|
|
if (stream != NULL)
|
|
|
|
*stream = passthru;
|
|
|
|
|
|
|
|
return passthru;
|
|
|
|
}
|
|
|
|
|
|
|
|
void mz_stream_passthru_delete(void **stream)
|
|
|
|
{
|
|
|
|
mz_stream_passthru *passthru = NULL;
|
|
|
|
if (stream == NULL)
|
|
|
|
return;
|
|
|
|
passthru = (mz_stream_passthru *)*stream;
|
|
|
|
if (passthru != NULL)
|
|
|
|
free(passthru);
|
2017-10-05 18:45:23 -07:00
|
|
|
*stream = NULL;
|
2017-10-02 00:44:51 -07:00
|
|
|
}
|