2017-10-01 22:42:35 -07:00
|
|
|
/* mzstrm.h -- Stream interface
|
2017-10-05 08:38:23 -07:00
|
|
|
Version 2.0.0, October 4th, 2017
|
2014-01-12 14:04:54 -07:00
|
|
|
part of the MiniZip project
|
2012-01-21 14:53:44 -07:00
|
|
|
|
2017-09-16 13:25:02 +08:00
|
|
|
Copyright (C) 2012-2017 Nathan Moinvaziri
|
|
|
|
https://github.com/nmoinvaz/minizip
|
|
|
|
Copyright (C) 2009-2010 Mathias Svensson
|
|
|
|
Modifications for Zip64 support
|
|
|
|
http://result42.com
|
2014-01-12 14:04:54 -07:00
|
|
|
Copyright (C) 1998-2010 Gilles Vollant
|
|
|
|
http://www.winimage.com/zLibDll/minizip.html
|
2012-01-21 14:53:44 -07:00
|
|
|
|
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-01-21 14:53:44 -07:00
|
|
|
*/
|
|
|
|
|
2017-10-01 21:43:24 -07:00
|
|
|
#ifndef _MZ_STREAM_H
|
|
|
|
#define _MZ_STREAM_H
|
2012-01-21 14:53:44 -07:00
|
|
|
|
2016-10-09 20:09:50 -07:00
|
|
|
#include <stdint.h>
|
2017-04-10 23:26:30 -07:00
|
|
|
|
2012-01-21 14:53:44 -07:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2017-10-02 22:11:03 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
#define MZ_STREAM_SEEK_CUR (1)
|
|
|
|
#define MZ_STREAM_SEEK_END (2)
|
|
|
|
#define MZ_STREAM_SEEK_SET (0)
|
|
|
|
|
2017-10-04 21:59:39 -07:00
|
|
|
#define MZ_STREAM_MODE_READ (0x01)
|
|
|
|
#define MZ_STREAM_MODE_WRITE (0x02)
|
|
|
|
#define MZ_STREAM_MODE_READWRITE (MZ_STREAM_MODE_READ | MZ_STREAM_MODE_WRITE)
|
|
|
|
#define MZ_STREAM_MODE_APPEND (0x04)
|
|
|
|
#define MZ_STREAM_MODE_CREATE (0x08)
|
|
|
|
#define MZ_STREAM_MODE_EXISTING (0x10)
|
|
|
|
|
2017-10-03 21:56:07 -07:00
|
|
|
#ifndef MZ_RETURN
|
|
|
|
# define MZ_OK (0)
|
|
|
|
# define MZ_EOF (MZ_OK)
|
|
|
|
# define MZ_STREAM_ERROR (-1)
|
|
|
|
# define MZ_END_OF_LIST (-100)
|
|
|
|
# define MZ_PARAM_ERROR (-102)
|
|
|
|
# define MZ_FORMAT_ERROR (-103)
|
|
|
|
# define MZ_INTERNAL_ERROR (-104)
|
|
|
|
# define MZ_CRC_ERROR (-105)
|
|
|
|
# define MZ_CRYPT_ERROR (-106)
|
|
|
|
#endif
|
2017-10-02 22:11:03 -07:00
|
|
|
|
|
|
|
/***************************************************************************/
|
2017-10-01 22:42:35 -07:00
|
|
|
|
2017-10-05 21:26:34 -07:00
|
|
|
typedef int32_t (*mz_stream_open_cb) (void *stream, const char *path, int32_t mode);
|
2017-10-02 22:11:03 -07:00
|
|
|
typedef int32_t (*mz_stream_is_open_cb) (void *stream);
|
2017-10-05 21:26:34 -07:00
|
|
|
typedef int32_t (*mz_stream_read_cb) (void *stream, void *buf, int32_t size);
|
|
|
|
typedef int32_t (*mz_stream_write_cb) (void *stream, const void *buf, int32_t size);
|
2017-10-02 22:11:03 -07:00
|
|
|
typedef int64_t (*mz_stream_tell_cb) (void *stream);
|
2017-10-05 21:26:34 -07:00
|
|
|
typedef int32_t (*mz_stream_seek_cb) (void *stream, int64_t offset, int32_t origin);
|
2017-10-02 22:11:03 -07:00
|
|
|
typedef int32_t (*mz_stream_close_cb) (void *stream);
|
|
|
|
typedef int32_t (*mz_stream_error_cb) (void *stream);
|
|
|
|
typedef void* (*mz_stream_create_cb) (void **stream);
|
|
|
|
typedef void (*mz_stream_delete_cb) (void **stream);
|
|
|
|
typedef int64_t (*mz_stream_get_total_in_cb) (void *stream);
|
|
|
|
typedef int64_t (*mz_stream_get_total_out_cb) (void *stream);
|
|
|
|
|
|
|
|
/***************************************************************************/
|
2017-10-01 21:43:24 -07:00
|
|
|
|
|
|
|
typedef struct mz_stream_s
|
2012-01-21 14:53:44 -07:00
|
|
|
{
|
2017-10-02 22:11:03 -07:00
|
|
|
struct mz_stream_s *base;
|
|
|
|
mz_stream_open_cb open;
|
|
|
|
mz_stream_is_open_cb is_open;
|
|
|
|
mz_stream_read_cb read;
|
|
|
|
mz_stream_write_cb write;
|
|
|
|
mz_stream_tell_cb tell;
|
|
|
|
mz_stream_seek_cb seek;
|
|
|
|
mz_stream_close_cb close;
|
|
|
|
mz_stream_error_cb error;
|
|
|
|
mz_stream_create_cb create;
|
|
|
|
mz_stream_delete_cb delete;
|
|
|
|
mz_stream_get_total_in_cb get_total_in;
|
|
|
|
mz_stream_get_total_out_cb get_total_out;
|
2017-10-01 21:43:24 -07:00
|
|
|
} mz_stream;
|
|
|
|
|
2017-10-02 22:11:03 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
2017-10-05 21:26:34 -07:00
|
|
|
int32_t mz_stream_open(void *stream, const char *path, int32_t mode);
|
2017-10-01 22:42:35 -07:00
|
|
|
int32_t mz_stream_is_open(void *stream);
|
2017-10-05 21:26:34 -07:00
|
|
|
int32_t mz_stream_read(void *stream, void *buf, int32_t size);
|
2017-10-02 00:44:51 -07:00
|
|
|
int32_t mz_stream_read_uint8(void *stream, uint8_t *value);
|
|
|
|
int32_t mz_stream_read_uint16(void *stream, uint16_t *value);
|
|
|
|
int32_t mz_stream_read_uint32(void *stream, uint32_t *value);
|
|
|
|
int32_t mz_stream_read_uint64(void *stream, uint64_t *value);
|
2017-10-05 21:26:34 -07:00
|
|
|
int32_t mz_stream_write(void *stream, const void *buf, int32_t size);
|
2017-10-02 22:11:03 -07:00
|
|
|
int32_t mz_stream_write_uint8(void *stream, uint8_t value);
|
|
|
|
int32_t mz_stream_write_uint16(void *stream, uint16_t value);
|
|
|
|
int32_t mz_stream_write_uint32(void *stream, uint32_t value);
|
|
|
|
int32_t mz_stream_write_uint64(void *stream, uint64_t value);
|
|
|
|
int32_t mz_stream_copy(void *target, void *source, int32_t len);
|
2017-10-01 22:42:35 -07:00
|
|
|
int64_t mz_stream_tell(void *stream);
|
2017-10-05 21:26:34 -07:00
|
|
|
int32_t mz_stream_seek(void *stream, int64_t offset, int32_t origin);
|
2017-10-01 22:42:35 -07:00
|
|
|
int32_t mz_stream_close(void *stream);
|
|
|
|
int32_t mz_stream_error(void *stream);
|
2017-10-01 21:43:24 -07:00
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
int32_t mz_stream_set_base(void *stream, void *base);
|
2017-10-02 22:11:03 -07:00
|
|
|
int64_t mz_stream_get_total_in(void *stream);
|
|
|
|
int64_t mz_stream_get_total_out(void *stream);
|
2017-09-29 21:02:09 -07:00
|
|
|
|
2017-10-02 00:44:51 -07:00
|
|
|
void* mz_stream_create(void **stream);
|
|
|
|
void mz_stream_delete(void **stream);
|
|
|
|
|
|
|
|
void* mz_stream_passthru_create(void **stream);
|
|
|
|
void mz_stream_passthru_delete(void **stream);
|
|
|
|
|
2017-10-02 22:11:03 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
#if !defined(_WIN32) && !defined(USEWIN32IOAPI)
|
2017-10-04 22:10:11 -07:00
|
|
|
#include "mz_strm_posix.h"
|
2017-10-01 21:43:24 -07:00
|
|
|
|
|
|
|
#define mz_stream_os_open mz_stream_posix_open
|
|
|
|
#define mz_stream_os_is_open mz_stream_posix_is_open
|
|
|
|
#define mz_stream_os_read mz_stream_posix_read
|
|
|
|
#define mz_stream_os_write mz_stream_posix_write
|
|
|
|
#define mz_stream_os_tell mz_stream_posix_tell
|
|
|
|
#define mz_stream_os_seek mz_stream_posix_seek
|
|
|
|
#define mz_stream_os_close mz_stream_posix_close
|
|
|
|
#define mz_stream_os_error mz_stream_posix_error
|
|
|
|
|
|
|
|
#define mz_stream_os_create mz_stream_posix_create
|
|
|
|
#define mz_stream_os_delete mz_stream_posix_delete
|
|
|
|
|
|
|
|
#define mz_os_rand mz_posix_rand
|
2017-10-03 23:19:37 -07:00
|
|
|
#define mz_os_get_file_date mz_posix_get_file_date
|
|
|
|
#define mz_os_set_file_date mz_posix_set_file_date
|
|
|
|
#define mz_os_change_dir mz_posix_change_dir
|
|
|
|
#define mz_os_make_dir mz_posix_make_dir
|
2017-09-29 21:02:09 -07:00
|
|
|
#else
|
2017-10-04 22:10:11 -07:00
|
|
|
#include "mz_strm_win32.h"
|
2017-10-01 20:33:01 -07:00
|
|
|
|
2017-10-01 21:43:24 -07:00
|
|
|
#define mz_stream_os_open mz_stream_win32_open
|
|
|
|
#define mz_stream_os_is_open mz_stream_win32_is_open
|
|
|
|
#define mz_stream_os_read mz_stream_win32_read
|
|
|
|
#define mz_stream_os_write mz_stream_win32_write
|
|
|
|
#define mz_stream_os_tell mz_stream_win32_tell
|
|
|
|
#define mz_stream_os_seek mz_stream_win32_seek
|
|
|
|
#define mz_stream_os_close mz_stream_win32_close
|
|
|
|
#define mz_stream_os_error mz_stream_win32_error
|
2017-09-29 21:02:09 -07:00
|
|
|
|
2017-10-01 21:43:24 -07:00
|
|
|
#define mz_stream_os_create mz_stream_win32_create
|
|
|
|
#define mz_stream_os_delete mz_stream_win32_delete
|
2017-10-01 20:33:01 -07:00
|
|
|
|
2017-10-01 21:43:24 -07:00
|
|
|
#define mz_os_rand mz_win32_rand
|
2017-10-03 23:19:37 -07:00
|
|
|
#define mz_os_get_file_date mz_win32_get_file_date
|
|
|
|
#define mz_os_set_file_date mz_win32_set_file_date
|
|
|
|
#define mz_os_change_dir mz_win32_change_dir
|
|
|
|
#define mz_os_make_dir mz_win32_make_dir
|
2017-09-29 21:02:09 -07:00
|
|
|
#endif
|
2012-01-21 14:53:44 -07:00
|
|
|
|
2017-10-03 23:19:37 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
int32_t mz_os_file_exists(const char *path);
|
2017-10-03 23:19:37 -07:00
|
|
|
int64_t mz_os_file_get_size(const char *path);
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
int32_t mz_dosdate_to_tm(uint64_t dos_date, struct tm *ptm);
|
|
|
|
// Convert dos date/time format to struct tm
|
|
|
|
time_t mz_dosdate_to_time_t(uint64_t dos_date);
|
|
|
|
// Convert dos date/time format to time_t
|
|
|
|
uint32_t mz_tm_to_dosdate(const struct tm *ptm);
|
|
|
|
// Convert struct tm to dos date/time format
|
2017-10-01 22:42:35 -07:00
|
|
|
|
2017-10-02 22:11:03 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
2012-01-21 14:53:44 -07:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|