minizip-ng/mz_strm_os_win32.c

286 lines
7.6 KiB
C
Raw Normal View History

/* mz_strm_win32.c -- Stream for filesystem access for windows
2021-01-23 16:18:11 -08:00
part of the minizip-ng project
2012-01-21 14:53:44 -07:00
2023-02-16 13:14:21 -08:00
Copyright (C) Nathan Moinvaziri
2021-01-23 16:18:11 -08:00
https://github.com/zlib-ng/minizip-ng
2017-09-16 17:35:23 +08:00
Copyright (C) 2009-2010 Mathias Svensson
Modifications for Zip64 support
http://result42.com
Copyright (C) 1998-2010 Gilles Vollant
2018-10-17 22:39:01 +00:00
https://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 "mz.h"
#include "mz_os.h"
2017-10-04 22:10:11 -07:00
#include "mz_strm.h"
#include "mz_strm_os.h"
2012-01-21 14:53:44 -07:00
2018-11-19 21:34:35 -08:00
#include <windows.h>
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
2017-10-03 21:56:07 -07:00
/***************************************************************************/
static mz_stream_vtbl mz_stream_os_vtbl = {
mz_stream_os_open,
mz_stream_os_is_open,
mz_stream_os_read,
mz_stream_os_write,
mz_stream_os_tell,
mz_stream_os_seek,
mz_stream_os_close,
mz_stream_os_error,
mz_stream_os_create,
mz_stream_os_delete,
NULL,
NULL
};
/***************************************************************************/
2020-06-14 15:19:14 -07:00
typedef struct mz_stream_win32_s {
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
/***************************************************************************/
2018-11-07 20:24:59 -08:00
#if 0
# define mz_stream_os_print printf
#else
# define mz_stream_os_print(fmt, ...)
2018-11-07 20:24:59 -08:00
#endif
/***************************************************************************/
2020-06-14 15:19:14 -07:00
int32_t mz_stream_os_open(void *stream, const char *path, int32_t mode) {
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;
2023-02-19 11:17:54 -08:00
if (!path)
return MZ_PARAM_ERROR;
2017-09-29 21:02:09 -07:00
/* Some use cases require write sharing as well */
share_mode |= FILE_SHARE_WRITE;
2020-06-14 15:19:14 -07:00
if ((mode & MZ_OPEN_MODE_READWRITE) == MZ_OPEN_MODE_READ) {
2017-09-29 21:02:09 -07:00
desired_access = GENERIC_READ;
creation_disposition = OPEN_EXISTING;
2020-06-14 15:19:14 -07:00
} else if (mode & MZ_OPEN_MODE_APPEND) {
2017-09-29 21:02:09 -07:00
desired_access = GENERIC_WRITE | GENERIC_READ;
creation_disposition = OPEN_EXISTING;
2020-06-14 15:19:14 -07:00
} else if (mode & MZ_OPEN_MODE_CREATE) {
2017-09-29 21:02:09 -07:00
desired_access = GENERIC_WRITE | GENERIC_READ;
creation_disposition = CREATE_ALWAYS;
2020-06-14 15:19:14 -07:00
} else {
return MZ_PARAM_ERROR;
2012-01-21 14:53:44 -07:00
}
mz_stream_os_print("Win32 - Open - %s (mode %" PRId32 ")\n", path);
2018-11-07 20:24:59 -08:00
path_wide = mz_os_unicode_string_create(path, MZ_ENCODING_UTF8);
2023-02-19 11:17:54 -08:00
if (!path_wide)
return MZ_PARAM_ERROR;
2015-11-25 01:35:03 -07:00
#if _WIN32_WINNT >= _WIN32_WINNT_WIN8
win32->handle = CreateFile2(path_wide, desired_access, share_mode,
creation_disposition, NULL);
2014-01-04 22:23:51 -07:00
#else
2019-07-04 10:32:02 -07:00
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
mz_os_unicode_string_delete(&path_wide);
2012-01-21 14:53:44 -07:00
2020-06-14 15:19:14 -07:00
if (mz_stream_os_is_open(stream) != MZ_OK) {
win32->error = GetLastError();
return MZ_OPEN_ERROR;
}
2012-01-21 14:53:44 -07:00
if (mode & MZ_OPEN_MODE_APPEND)
return mz_stream_os_seek(stream, 0, MZ_SEEK_END);
2018-04-24 10:02:39 +00:00
return MZ_OK;
2012-01-21 14:53:44 -07:00
}
2020-06-14 15:19:14 -07:00
int32_t mz_stream_os_is_open(void *stream) {
2017-10-01 21:43:24 -07:00
mz_stream_win32 *win32 = (mz_stream_win32 *)stream;
2023-02-19 11:17:54 -08:00
if (!win32->handle || win32->handle == INVALID_HANDLE_VALUE)
return MZ_OPEN_ERROR;
2017-10-03 21:56:07 -07:00
return MZ_OK;
2012-01-21 14:53:44 -07:00
}
2020-06-14 15:19:14 -07:00
int32_t mz_stream_os_read(void *stream, void *buf, int32_t size) {
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
if (mz_stream_os_is_open(stream) != MZ_OK)
return MZ_OPEN_ERROR;
2012-01-21 14:53:44 -07:00
2020-06-14 15:19:14 -07:00
if (!ReadFile(win32->handle, buf, size, (DWORD *)&read, NULL)) {
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
mz_stream_os_print("Win32 - Read - %" PRId32 "\n", read);
2018-11-07 20:24:59 -08:00
2017-09-29 21:02:09 -07:00
return read;
2012-01-21 14:53:44 -07:00
}
2020-06-14 15:19:14 -07:00
int32_t mz_stream_os_write(void *stream, const void *buf, int32_t size) {
2017-10-01 21:43:24 -07:00
mz_stream_win32 *win32 = (mz_stream_win32 *)stream;
int32_t written = 0;
2012-01-21 15:10:18 -07:00
if (mz_stream_os_is_open(stream) != MZ_OK)
return MZ_OPEN_ERROR;
2012-01-21 15:10:18 -07:00
2020-06-14 15:19:14 -07:00
if (!WriteFile(win32->handle, buf, size, (DWORD *)&written, NULL)) {
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
}
mz_stream_os_print("Win32 - Write - %" PRId32 "\n", written);
2018-11-07 20:24:59 -08:00
2017-09-29 21:02:09 -07:00
return written;
2012-01-21 15:10:18 -07:00
}
2019-07-04 10:32:02 -07:00
static int32_t mz_stream_os_seekinternal(HANDLE handle, LARGE_INTEGER large_pos,
2020-06-14 15:19:14 -07:00
LARGE_INTEGER *new_pos, uint32_t move_method) {
#if _WIN32_WINNT >= _WIN32_WINNT_WINXP
BOOL success = FALSE;
success = SetFilePointerEx(handle, large_pos, new_pos, move_method);
if ((success == FALSE) && (GetLastError() != NO_ERROR))
return MZ_SEEK_ERROR;
return MZ_OK;
2017-09-29 21:02:09 -07:00
#else
LONG high_part = 0;
uint32_t pos = 0;
high_part = large_pos.HighPart;
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))
return MZ_SEEK_ERROR;
2012-01-21 14:53:44 -07:00
2023-02-19 11:17:54 -08:00
if (new_pos) {
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
}
2020-06-14 15:19:14 -07:00
int64_t mz_stream_os_tell(void *stream) {
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
if (mz_stream_os_is_open(stream) != MZ_OK)
return MZ_OPEN_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
if (mz_stream_os_seekinternal(win32->handle, large_pos, &large_pos, FILE_CURRENT) != MZ_OK)
win32->error = GetLastError();
2014-01-04 22:23:51 -07:00
mz_stream_os_print("Win32 - Tell - %" PRId64 "\n", large_pos.QuadPart);
2018-11-07 20:24:59 -08:00
return large_pos.QuadPart;
2012-01-21 14:53:44 -07:00
}
2020-06-14 15:19:14 -07:00
int32_t mz_stream_os_seek(void *stream, int64_t offset, int32_t origin) {
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;
int32_t err = MZ_OK;
2017-09-29 21:02:09 -07:00
LARGE_INTEGER large_pos;
2012-01-21 14:53:44 -07:00
if (mz_stream_os_is_open(stream) != MZ_OK)
return MZ_OPEN_ERROR;
2013-12-20 13:59:33 -07:00
2020-06-14 15:19:14 -07:00
switch (origin) {
case MZ_SEEK_CUR:
move_method = FILE_CURRENT;
break;
case MZ_SEEK_END:
move_method = FILE_END;
break;
case MZ_SEEK_SET:
move_method = FILE_BEGIN;
break;
default:
return MZ_SEEK_ERROR;
2012-01-21 14:53:44 -07:00
}
mz_stream_os_print("Win32 - Seek - %" PRId64 " (origin %" PRId32 ")\n", offset, origin);
2018-11-07 20:24:59 -08:00
2017-09-29 21:02:09 -07:00
large_pos.QuadPart = offset;
2012-01-21 14:53:44 -07:00
err = mz_stream_os_seekinternal(win32->handle, large_pos, NULL, move_method);
2020-06-14 15:19:14 -07:00
if (err != MZ_OK) {
win32->error = GetLastError();
return err;
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
}
2020-06-14 15:19:14 -07:00
int32_t mz_stream_os_close(void *stream) {
2017-10-01 21:43:24 -07:00
mz_stream_win32 *win32 = (mz_stream_win32 *)stream;
2017-09-29 21:02:09 -07:00
2023-02-19 11:17:54 -08:00
if (win32->handle)
2017-09-29 21:02:09 -07:00
CloseHandle(win32->handle);
2018-11-07 20:24:59 -08:00
mz_stream_os_print("Win32 - Close\n");
2017-09-29 21:02:09 -07:00
win32->handle = NULL;
2017-10-03 21:56:07 -07:00
return MZ_OK;
2012-01-21 14:53:44 -07:00
}
2020-06-14 15:19:14 -07:00
int32_t mz_stream_os_error(void *stream) {
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
}
2020-06-14 15:19:14 -07:00
void *mz_stream_os_create(void **stream) {
2017-10-01 21:43:24 -07:00
mz_stream_win32 *win32 = NULL;
2012-01-21 14:53:44 -07:00
win32 = (mz_stream_win32 *)calloc(1, sizeof(mz_stream_win32));
if (win32)
win32->stream.vtbl = &mz_stream_os_vtbl;
2023-02-19 11:17:54 -08:00
if (stream)
2017-10-01 21:43:24 -07:00
*stream = win32;
2017-09-29 21:02:09 -07:00
return win32;
2012-01-21 14:53:44 -07:00
}
2020-06-14 15:19:14 -07:00
void mz_stream_os_delete(void **stream) {
2017-10-01 21:43:24 -07:00
mz_stream_win32 *win32 = NULL;
2023-02-19 11:17:54 -08:00
if (!stream)
2017-10-01 21:43:24 -07:00
return;
win32 = (mz_stream_win32 *)*stream;
2023-02-19 11:17:54 -08:00
if (win32)
free(win32);
*stream = NULL;
}
2020-06-14 15:19:14 -07:00
void *mz_stream_os_get_interface(void) {
return (void *)&mz_stream_os_vtbl;
}