2017-10-05 23:32:57 -07:00
|
|
|
/* mz_strm_posix.c -- Stream for filesystem access for posix/linux
|
2017-10-05 07:34:59 -07:00
|
|
|
Version 2.0.0, October 4th, 2017
|
2017-10-04 22:06:33 -07:00
|
|
|
part of the MiniZip project
|
|
|
|
|
|
|
|
Copyright (C) 2012-2017 Nathan Moinvaziri
|
|
|
|
https://github.com/nmoinvaz/minizip
|
|
|
|
Modifications for Zip64 support
|
|
|
|
Copyright (C) 2009-2010 Mathias Svensson
|
|
|
|
http://result42.com
|
|
|
|
Copyright (C) 1998-2010 Gilles Vollant
|
|
|
|
http://www.winimage.com/zLibDll/minizip.html
|
|
|
|
|
|
|
|
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 <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
#if defined unix || defined __APPLE__
|
|
|
|
# include <unistd.h>
|
|
|
|
# include <utime.h>
|
|
|
|
# include <fcntl.h>
|
|
|
|
#endif
|
|
|
|
|
2017-10-05 23:32:57 -07:00
|
|
|
#include "mz_error.h"
|
2017-10-04 22:10:11 -07:00
|
|
|
#include "mz_strm.h"
|
|
|
|
#include "mz_strm_posix.h"
|
2017-10-04 22:06:33 -07:00
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
#if defined(USE_FILE32API)
|
|
|
|
# define fopen64 fopen
|
|
|
|
# define ftello64 ftell
|
|
|
|
# define fseeko64 fseek
|
|
|
|
#else
|
|
|
|
# if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__DragonFly__) || \
|
|
|
|
defined(__OpenBSD__) || defined(__APPLE__) || defined(__ANDROID__)
|
|
|
|
# define fopen64 fopen
|
|
|
|
# define ftello64 ftello
|
|
|
|
# define fseeko64 fseeko
|
|
|
|
# endif
|
|
|
|
# ifdef _MSC_VER
|
|
|
|
# define fopen64 fopen
|
|
|
|
# if (_MSC_VER >= 1400) && (!(defined(NO_MSCVER_FILE64_FUNC)))
|
|
|
|
# define ftello64 _ftelli64
|
|
|
|
# define fseeko64 _fseeki64
|
|
|
|
# else /* old MSC */
|
|
|
|
# define ftello64 ftell
|
|
|
|
# define fseeko64 fseek
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2017-10-08 21:48:28 -07:00
|
|
|
mz_stream_vtbl mz_stream_posix_vtbl = {
|
|
|
|
mz_stream_posix_open,
|
|
|
|
mz_stream_posix_is_open,
|
|
|
|
mz_stream_posix_read,
|
|
|
|
mz_stream_posix_write,
|
|
|
|
mz_stream_posix_tell,
|
|
|
|
mz_stream_posix_seek,
|
|
|
|
mz_stream_posix_close,
|
|
|
|
mz_stream_posix_error,
|
|
|
|
mz_stream_posix_create,
|
|
|
|
mz_stream_posix_delete
|
|
|
|
};
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2017-10-04 22:06:33 -07:00
|
|
|
typedef struct mz_stream_posix_s
|
|
|
|
{
|
2017-10-08 23:39:26 -07:00
|
|
|
mz_stream stream;
|
2017-10-04 22:06:33 -07:00
|
|
|
FILE *handle;
|
2017-10-05 08:33:29 -07:00
|
|
|
int16_t error;
|
2017-10-04 22:06:33 -07:00
|
|
|
} mz_stream_posix;
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2017-10-05 21:26:34 -07:00
|
|
|
int32_t mz_stream_posix_open(void *stream, const char *path, int32_t mode)
|
2017-10-04 22:06:33 -07:00
|
|
|
{
|
|
|
|
mz_stream_posix *posix = (mz_stream_posix *)stream;
|
|
|
|
const char *mode_fopen = NULL;
|
|
|
|
|
|
|
|
if (path == NULL)
|
|
|
|
return MZ_STREAM_ERROR;
|
|
|
|
|
|
|
|
if ((mode & MZ_STREAM_MODE_READWRITE) == MZ_STREAM_MODE_READ)
|
|
|
|
mode_fopen = "rb";
|
|
|
|
else if (mode & MZ_STREAM_MODE_APPEND)
|
2017-10-05 00:25:34 -07:00
|
|
|
mode_fopen = "ab";
|
2017-10-04 22:06:33 -07:00
|
|
|
else if (mode & MZ_STREAM_MODE_CREATE)
|
|
|
|
mode_fopen = "wb";
|
|
|
|
else
|
|
|
|
return MZ_STREAM_ERROR;
|
|
|
|
|
|
|
|
posix->handle = fopen64(path, mode_fopen);
|
2017-10-05 08:33:29 -07:00
|
|
|
if (posix->handle == NULL)
|
|
|
|
{
|
|
|
|
posix->error = errno;
|
|
|
|
return MZ_STREAM_ERROR;
|
|
|
|
}
|
2017-10-04 22:06:33 -07:00
|
|
|
|
|
|
|
return MZ_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t mz_stream_posix_is_open(void *stream)
|
|
|
|
{
|
|
|
|
mz_stream_posix *posix = (mz_stream_posix*)stream;
|
|
|
|
if (posix->handle == NULL)
|
|
|
|
return MZ_STREAM_ERROR;
|
|
|
|
return MZ_OK;
|
|
|
|
}
|
|
|
|
|
2017-10-05 21:26:34 -07:00
|
|
|
int32_t mz_stream_posix_read(void *stream, void *buf, int32_t size)
|
2017-10-04 22:06:33 -07:00
|
|
|
{
|
|
|
|
mz_stream_posix *posix = (mz_stream_posix*)stream;
|
2017-10-05 21:02:36 -07:00
|
|
|
int32_t read = (int32_t)fread(buf, 1, (size_t)size, posix->handle);
|
2017-10-05 08:33:29 -07:00
|
|
|
if (read < 0)
|
|
|
|
{
|
|
|
|
posix->error = ferror(posix->handle);
|
|
|
|
return MZ_STREAM_ERROR;
|
|
|
|
}
|
|
|
|
return read;
|
2017-10-04 22:06:33 -07:00
|
|
|
}
|
|
|
|
|
2017-10-05 21:26:34 -07:00
|
|
|
int32_t mz_stream_posix_write(void *stream, const void *buf, int32_t size)
|
2017-10-04 22:06:33 -07:00
|
|
|
{
|
|
|
|
mz_stream_posix *posix = (mz_stream_posix*)stream;
|
2017-10-05 21:02:36 -07:00
|
|
|
int32_t written = (int32_t)fwrite(buf, 1, (size_t)size, posix->handle);
|
2017-10-05 08:33:29 -07:00
|
|
|
if (written < 0)
|
|
|
|
{
|
|
|
|
posix->error = ferror(posix->handle);
|
|
|
|
return MZ_STREAM_ERROR;
|
|
|
|
}
|
|
|
|
return written;
|
2017-10-04 22:06:33 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
int64_t mz_stream_posix_tell(void *stream)
|
|
|
|
{
|
|
|
|
mz_stream_posix *posix = (mz_stream_posix*)stream;
|
2017-10-05 08:33:29 -07:00
|
|
|
int64_t position = ftello64(posix->handle);
|
|
|
|
if (position == -1)
|
|
|
|
{
|
|
|
|
posix->error = ferror(posix->handle);
|
|
|
|
return MZ_STREAM_ERROR;
|
|
|
|
}
|
|
|
|
return position;
|
2017-10-04 22:06:33 -07:00
|
|
|
}
|
|
|
|
|
2017-10-05 21:26:34 -07:00
|
|
|
int32_t mz_stream_posix_seek(void *stream, int64_t offset, int32_t origin)
|
2017-10-04 22:06:33 -07:00
|
|
|
{
|
|
|
|
mz_stream_posix *posix = (mz_stream_posix*)stream;
|
2017-10-05 21:26:34 -07:00
|
|
|
int32_t fseek_origin = 0;
|
2017-10-04 22:06:33 -07:00
|
|
|
|
|
|
|
switch (origin)
|
|
|
|
{
|
|
|
|
case MZ_STREAM_SEEK_CUR:
|
|
|
|
fseek_origin = SEEK_CUR;
|
|
|
|
break;
|
|
|
|
case MZ_STREAM_SEEK_END:
|
|
|
|
fseek_origin = SEEK_END;
|
|
|
|
break;
|
|
|
|
case MZ_STREAM_SEEK_SET:
|
|
|
|
fseek_origin = SEEK_SET;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return MZ_STREAM_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fseeko64(posix->handle, offset, fseek_origin) != 0)
|
2017-10-05 08:33:29 -07:00
|
|
|
{
|
|
|
|
posix->error = ferror(posix->handle);
|
2017-10-04 22:06:33 -07:00
|
|
|
return MZ_STREAM_ERROR;
|
2017-10-05 08:33:29 -07:00
|
|
|
}
|
2017-10-04 22:06:33 -07:00
|
|
|
|
|
|
|
return MZ_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t mz_stream_posix_close(void *stream)
|
|
|
|
{
|
|
|
|
mz_stream_posix *posix = (mz_stream_posix*)stream;
|
2017-10-05 08:33:29 -07:00
|
|
|
int32_t closed = fclose(posix->handle);
|
2017-10-04 22:06:33 -07:00
|
|
|
posix->handle = NULL;
|
|
|
|
if (closed != 0)
|
2017-10-05 08:33:29 -07:00
|
|
|
{
|
|
|
|
posix->error = errno;
|
2017-10-04 22:06:33 -07:00
|
|
|
return MZ_STREAM_ERROR;
|
2017-10-05 08:33:29 -07:00
|
|
|
}
|
2017-10-04 22:06:33 -07:00
|
|
|
return MZ_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t mz_stream_posix_error(void *stream)
|
|
|
|
{
|
|
|
|
mz_stream_posix *posix = (mz_stream_posix*)stream;
|
2017-10-05 08:33:29 -07:00
|
|
|
return posix->error;
|
2017-10-04 22:06:33 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void *mz_stream_posix_create(void **stream)
|
|
|
|
{
|
|
|
|
mz_stream_posix *posix = NULL;
|
|
|
|
|
|
|
|
posix = (mz_stream_posix *)malloc(sizeof(mz_stream_posix));
|
|
|
|
if (posix != NULL)
|
2017-10-08 23:39:26 -07:00
|
|
|
posix->stream.vtbl = &mz_stream_posix_vtbl;
|
2017-10-04 22:06:33 -07:00
|
|
|
if (stream != NULL)
|
|
|
|
*stream = posix;
|
|
|
|
|
|
|
|
return posix;
|
|
|
|
}
|
|
|
|
|
|
|
|
void mz_stream_posix_delete(void **stream)
|
|
|
|
{
|
|
|
|
mz_stream_posix *posix = NULL;
|
|
|
|
if (stream == NULL)
|
|
|
|
return;
|
|
|
|
posix = (mz_stream_posix *)*stream;
|
|
|
|
if (posix != NULL)
|
|
|
|
free(posix);
|
2017-10-05 18:45:23 -07:00
|
|
|
*stream = NULL;
|
2017-10-04 22:06:33 -07:00
|
|
|
}
|
2017-10-08 21:48:28 -07:00
|
|
|
|
|
|
|
void *mz_stream_posix_get_interface(void)
|
|
|
|
{
|
2017-10-08 23:39:26 -07:00
|
|
|
return (void *)&mz_stream_posix_vtbl;
|
2017-10-08 21:48:28 -07:00
|
|
|
}
|