minizip-ng/mz_strm_posix.c

226 lines
5.7 KiB
C
Raw Normal View History

/* mz_strm_posix.c -- Stream for filesystem access for posix/linux
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
#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
/***************************************************************************/
typedef struct mz_stream_posix_s
{
mz_stream stream;
FILE *handle;
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);
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;
int32_t read = (int32_t)fread(buf, 1, (size_t)size, posix->handle);
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;
int32_t written = (int32_t)fwrite(buf, 1, (size_t)size, posix->handle);
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;
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)
{
posix->error = ferror(posix->handle);
2017-10-04 22:06:33 -07:00
return MZ_STREAM_ERROR;
}
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;
int32_t closed = fclose(posix->handle);
2017-10-04 22:06:33 -07:00
posix->handle = NULL;
if (closed != 0)
{
posix->error = errno;
2017-10-04 22:06:33 -07:00
return MZ_STREAM_ERROR;
}
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;
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)
{
posix->stream.open = mz_stream_posix_open;
posix->stream.is_open = mz_stream_posix_is_open;
posix->stream.read = mz_stream_posix_read;
posix->stream.write = mz_stream_posix_write;
posix->stream.tell = mz_stream_posix_tell;
posix->stream.seek = mz_stream_posix_seek;
posix->stream.close = mz_stream_posix_close;
posix->stream.error = mz_stream_posix_error;
posix->stream.create = mz_stream_posix_create;
posix->stream.delete = mz_stream_posix_delete;
}
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);
*stream = NULL;
2017-10-04 22:06:33 -07:00
}