minizip-ng/src/mz_strm_win32.c

293 lines
7.6 KiB
C
Raw Normal View History

/* mz_strm_win32.c -- Stream for filesystem access for windows
2017-10-22 14:50:43 -07:00
Version 2.2.0, October 22nd, 2017
part of the MiniZip project
2012-01-21 14:53:44 -07:00
2017-09-16 17:35:23 +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
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.
2012-01-21 14:53:44 -07:00
*/
#include <stdlib.h>
#include <windows.h>
2012-01-21 14:53:44 -07:00
#include "mz.h"
2017-10-04 22:10:11 -07:00
#include "mz_strm.h"
#include "mz_strm_win32.h"
2012-01-21 14:53:44 -07:00
2017-10-03 21:56:07 -07:00
/***************************************************************************/
2012-01-21 14:53:44 -07:00
#ifndef INVALID_HANDLE_VALUE
2014-01-07 19:13:14 -07:00
# define INVALID_HANDLE_VALUE (0xFFFFFFFF)
2012-01-21 14:53:44 -07:00
#endif
#ifndef INVALID_SET_FILE_POINTER
2014-01-07 19:13:14 -07:00
# define INVALID_SET_FILE_POINTER ((DWORD)-1)
2012-01-21 14:53:44 -07:00
#endif
#if defined(WINAPI_FAMILY_PARTITION) && (!(defined(MZ_USING_WINRT_API)))
# if !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
# define MZ_USING_WINRT_API 1
# endif
#endif
2014-01-04 22:23:51 -07:00
2017-10-03 21:56:07 -07:00
/***************************************************************************/
mz_stream_vtbl mz_stream_win32_vtbl = {
mz_stream_win32_open,
mz_stream_win32_is_open,
mz_stream_win32_read,
mz_stream_win32_write,
mz_stream_win32_tell,
mz_stream_win32_seek,
mz_stream_win32_close,
mz_stream_win32_error,
mz_stream_win32_create,
mz_stream_win32_delete
};
/***************************************************************************/
2017-10-01 21:43:24 -07:00
typedef struct mz_stream_win32_s
2012-01-21 14:53:44 -07:00
{
mz_stream stream;
HANDLE handle;
int32_t error;
2017-10-01 21:43:24 -07:00
} mz_stream_win32;
2017-09-29 21:02:09 -07:00
2017-10-03 21:56:07 -07:00
/***************************************************************************/
2017-10-05 21:26:34 -07:00
int32_t mz_stream_win32_open(void *stream, const char *path, int32_t mode)
2012-01-21 14:53:44 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_win32 *win32 = (mz_stream_win32 *)stream;
2017-09-29 21:02:09 -07:00
uint32_t desired_access = 0;
uint32_t creation_disposition = 0;
uint32_t share_mode = FILE_SHARE_READ;
2017-09-29 21:02:09 -07:00
uint32_t flags_attribs = FILE_ATTRIBUTE_NORMAL;
wchar_t *path_wide = NULL;
uint32_t path_wide_size = 0;
2017-09-29 21:02:09 -07:00
if (path == NULL)
2017-10-03 21:56:07 -07:00
return MZ_STREAM_ERROR;
2017-09-29 21:02:09 -07:00
if ((mode & MZ_STREAM_MODE_READWRITE) == MZ_STREAM_MODE_READ)
2012-01-21 14:53:44 -07:00
{
2017-09-29 21:02:09 -07:00
desired_access = GENERIC_READ;
creation_disposition = OPEN_EXISTING;
share_mode &= FILE_SHARE_WRITE;
2012-01-21 14:53:44 -07:00
}
else if (mode & MZ_STREAM_MODE_APPEND)
2012-01-21 14:53:44 -07:00
{
2017-09-29 21:02:09 -07:00
desired_access = GENERIC_WRITE | GENERIC_READ;
creation_disposition = OPEN_EXISTING;
2012-01-21 14:53:44 -07:00
}
2017-10-01 21:43:24 -07:00
else if (mode & MZ_STREAM_MODE_CREATE)
2012-01-21 14:53:44 -07:00
{
2017-09-29 21:02:09 -07:00
desired_access = GENERIC_WRITE | GENERIC_READ;
creation_disposition = CREATE_ALWAYS;
2012-01-21 14:53:44 -07:00
}
2017-09-29 21:02:09 -07:00
else
2012-01-21 14:53:44 -07:00
{
2017-10-03 21:56:07 -07:00
return MZ_STREAM_ERROR;
2012-01-21 14:53:44 -07:00
}
path_wide_size = MultiByteToWideChar(CP_UTF8, 0, path, -1, NULL, 0);
path_wide = (wchar_t *)malloc((path_wide_size + 1) * sizeof(wchar_t));
memset(path_wide, 0, sizeof(wchar_t) * (path_wide_size + 1));
2012-01-21 14:53:44 -07:00
MultiByteToWideChar(CP_UTF8, 0, path, -1, path_wide, path_wide_size);
2015-11-25 01:35:03 -07:00
#ifdef MZ_USING_WINRT_API
2017-10-03 21:56:07 -07:00
win32->handle = CreateFile2W(path_wide, desired_access, share_mode, creation_disposition, NULL);
2014-01-04 22:23:51 -07:00
#else
win32->handle = CreateFileW(path_wide, desired_access, share_mode, NULL, creation_disposition, flags_attribs, NULL);
2014-01-04 22:23:51 -07:00
#endif
2012-01-21 14:53:44 -07:00
free(path_wide);
2012-01-21 14:53:44 -07:00
2017-10-03 21:56:07 -07:00
if (mz_stream_win32_is_open(stream) != MZ_OK)
{
win32->error = GetLastError();
2017-10-10 19:18:05 -07:00
if (win32->error == ERROR_FILE_NOT_FOUND)
return MZ_EXIST_ERROR;
2017-10-03 21:56:07 -07:00
return MZ_STREAM_ERROR;
}
2012-01-21 14:53:44 -07:00
if (mode & MZ_STREAM_MODE_APPEND)
return mz_stream_win32_seek(stream, 0, MZ_STREAM_SEEK_END);
2017-10-03 21:56:07 -07:00
return MZ_OK;
2012-01-21 14:53:44 -07:00
}
int32_t mz_stream_win32_is_open(void *stream)
2012-01-21 14:53:44 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_win32 *win32 = (mz_stream_win32 *)stream;
2017-09-29 21:02:09 -07:00
if (win32->handle == NULL || win32->handle == INVALID_HANDLE_VALUE)
2017-10-03 21:56:07 -07:00
return MZ_STREAM_ERROR;
return MZ_OK;
2012-01-21 14:53:44 -07:00
}
2017-10-05 21:26:34 -07:00
int32_t mz_stream_win32_read(void *stream, void *buf, int32_t size)
2012-01-21 14:53:44 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_win32 *win32 = (mz_stream_win32 *)stream;
2017-09-29 21:02:09 -07:00
uint32_t read = 0;
2012-01-21 14:53:44 -07:00
2017-10-03 21:56:07 -07:00
if (mz_stream_win32_is_open(stream) != MZ_OK)
return MZ_STREAM_ERROR;
2012-01-21 14:53:44 -07:00
if (!ReadFile(win32->handle, buf, size, (DWORD *)&read, NULL))
2014-01-04 22:23:51 -07:00
{
2017-09-29 21:02:09 -07:00
win32->error = GetLastError();
if (win32->error == ERROR_HANDLE_EOF)
win32->error = 0;
2014-01-04 22:23:51 -07:00
}
2012-01-21 14:53:44 -07:00
2017-09-29 21:02:09 -07:00
return read;
2012-01-21 14:53:44 -07:00
}
2017-10-05 21:26:34 -07:00
int32_t mz_stream_win32_write(void *stream, const void *buf, int32_t size)
2012-01-21 15:10:18 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_win32 *win32 = (mz_stream_win32 *)stream;
2017-09-29 21:02:09 -07:00
uint32_t written = 0;
2012-01-21 15:10:18 -07:00
2017-10-03 21:56:07 -07:00
if (mz_stream_win32_is_open(stream) != MZ_OK)
return MZ_STREAM_ERROR;
2012-01-21 15:10:18 -07:00
if (!WriteFile(win32->handle, buf, size, (DWORD *)&written, NULL))
2012-01-21 15:10:18 -07:00
{
2017-09-29 21:02:09 -07:00
win32->error = GetLastError();
if (win32->error == ERROR_HANDLE_EOF)
win32->error = 0;
2012-01-21 15:10:18 -07:00
}
2017-09-29 21:02:09 -07:00
return written;
2012-01-21 15:10:18 -07:00
}
2017-10-01 21:43:24 -07:00
static int32_t mz_stream_win32_seekinternal(HANDLE handle, LARGE_INTEGER large_pos, LARGE_INTEGER *new_pos, uint32_t move_method)
2012-01-21 15:10:18 -07:00
{
#ifdef MZ_USING_WINRT_API
2017-09-29 21:02:09 -07:00
return SetFilePointerEx(handle, pos, newPos, dwMoveMethod);
#else
LONG high_part = large_pos.HighPart;
uint32_t pos = SetFilePointer(handle, large_pos.LowPart, &high_part, move_method);
2012-01-21 14:53:44 -07:00
2017-09-29 21:02:09 -07:00
if ((pos == INVALID_SET_FILE_POINTER) && (GetLastError() != NO_ERROR))
2017-10-03 21:56:07 -07:00
return MZ_STREAM_ERROR;
2012-01-21 14:53:44 -07:00
2017-09-29 21:02:09 -07:00
if (new_pos != NULL)
2012-01-21 14:53:44 -07:00
{
2017-09-29 21:02:09 -07:00
new_pos->LowPart = pos;
new_pos->HighPart = high_part;
2012-01-21 14:53:44 -07:00
}
2017-10-03 21:56:07 -07:00
return MZ_OK;
2017-09-29 21:02:09 -07:00
#endif
2012-01-21 14:53:44 -07:00
}
int64_t mz_stream_win32_tell(void *stream)
2012-01-21 14:53:44 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_win32 *win32 = (mz_stream_win32 *)stream;
2017-09-29 21:02:09 -07:00
LARGE_INTEGER large_pos;
2012-01-21 14:53:44 -07:00
2017-10-03 21:56:07 -07:00
if (mz_stream_win32_is_open(stream) != MZ_OK)
return MZ_STREAM_ERROR;
2012-01-21 14:53:44 -07:00
2017-09-29 21:02:09 -07:00
large_pos.QuadPart = 0;
2012-01-21 14:53:44 -07:00
2017-10-03 21:56:07 -07:00
if (mz_stream_win32_seekinternal(win32->handle, large_pos, &large_pos, FILE_CURRENT) != MZ_OK)
win32->error = GetLastError();
2014-01-04 22:23:51 -07:00
return large_pos.QuadPart;
2012-01-21 14:53:44 -07:00
}
2017-10-05 21:26:34 -07:00
int32_t mz_stream_win32_seek(void *stream, int64_t offset, int32_t origin)
2012-01-21 14:53:44 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_win32 *win32 = (mz_stream_win32 *)stream;
2017-09-29 21:02:09 -07:00
uint32_t move_method = 0xFFFFFFFF;
LARGE_INTEGER large_pos;
2012-01-21 14:53:44 -07:00
2017-10-03 21:56:07 -07:00
if (mz_stream_win32_is_open(stream) == MZ_STREAM_ERROR)
return MZ_STREAM_ERROR;
2013-12-20 13:59:33 -07:00
2012-01-21 14:53:44 -07:00
switch (origin)
{
2017-10-01 21:43:24 -07:00
case MZ_STREAM_SEEK_CUR:
2017-09-29 21:02:09 -07:00
move_method = FILE_CURRENT;
2013-12-20 13:59:33 -07:00
break;
2017-10-01 21:43:24 -07:00
case MZ_STREAM_SEEK_END:
2017-09-29 21:02:09 -07:00
move_method = FILE_END;
2013-12-20 13:59:33 -07:00
break;
2017-10-01 21:43:24 -07:00
case MZ_STREAM_SEEK_SET:
2017-09-29 21:02:09 -07:00
move_method = FILE_BEGIN;
2013-12-20 13:59:33 -07:00
break;
default:
2017-10-03 21:56:07 -07:00
return MZ_STREAM_ERROR;
2012-01-21 14:53:44 -07:00
}
2017-09-29 21:02:09 -07:00
large_pos.QuadPart = offset;
2012-01-21 14:53:44 -07:00
2017-10-03 21:56:07 -07:00
if (mz_stream_win32_seekinternal(win32->handle, large_pos, NULL, move_method) != MZ_OK)
2012-01-21 14:53:44 -07:00
{
win32->error = GetLastError();
2017-10-03 21:56:07 -07:00
return MZ_STREAM_ERROR;
2012-01-21 14:53:44 -07:00
}
2017-10-03 21:56:07 -07:00
return MZ_OK;
2012-01-21 14:53:44 -07:00
}
int mz_stream_win32_close(void *stream)
2012-01-21 14:53:44 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_win32 *win32 = (mz_stream_win32 *)stream;
2017-09-29 21:02:09 -07:00
if (win32->handle != NULL)
CloseHandle(win32->handle);
win32->handle = NULL;
2017-10-03 21:56:07 -07:00
return MZ_OK;
2012-01-21 14:53:44 -07:00
}
int mz_stream_win32_error(void *stream)
2012-01-21 14:53:44 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_win32 *win32 = (mz_stream_win32 *)stream;
2017-09-29 21:02:09 -07:00
return win32->error;
2012-01-21 14:53:44 -07:00
}
void *mz_stream_win32_create(void **stream)
2012-01-21 14:53:44 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_win32 *win32 = NULL;
2012-01-21 14:53:44 -07:00
2017-10-01 21:43:24 -07:00
win32 = (mz_stream_win32 *)malloc(sizeof(mz_stream_win32));
if (win32 != NULL)
{
memset(win32, 0, sizeof(mz_stream_win32));
win32->stream.vtbl = &mz_stream_win32_vtbl;
2017-10-01 21:43:24 -07:00
}
if (stream != NULL)
*stream = win32;
2017-09-29 21:02:09 -07:00
return win32;
2012-01-21 14:53:44 -07:00
}
void mz_stream_win32_delete(void **stream)
2012-01-21 14:53:44 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_win32 *win32 = NULL;
if (stream == NULL)
return;
win32 = (mz_stream_win32 *)*stream;
2017-09-29 21:02:09 -07:00
if (win32 != NULL)
free(win32);
*stream = NULL;
}
void *mz_stream_win32_get_interface(void)
{
return (void *)&mz_stream_win32_vtbl;
}