2017-10-05 23:32:57 -07:00
|
|
|
/* mz_os.h -- System functions
|
2021-01-23 16:18:11 -08:00
|
|
|
part of the minizip-ng project
|
2017-10-05 23:32:57 -07:00
|
|
|
|
2021-01-23 16:18:11 -08:00
|
|
|
Copyright (C) 2010-2021 Nathan Moinvaziri
|
|
|
|
https://github.com/zlib-ng/minizip-ng
|
2017-10-05 23:32:57 -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.
|
|
|
|
*/
|
|
|
|
|
2018-05-09 09:42:31 -07:00
|
|
|
#ifndef MZ_OS_H
|
|
|
|
#define MZ_OS_H
|
2017-10-05 23:32:57 -07:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
#if defined(__APPLE__)
|
2019-05-08 23:41:47 -07:00
|
|
|
# define MZ_VERSION_MADEBY_HOST_SYSTEM (MZ_HOST_SYSTEM_OSX_DARWIN)
|
2019-08-06 14:14:14 +01:00
|
|
|
#elif defined(__riscos__)
|
|
|
|
# define MZ_VERSION_MADEBY_HOST_SYSTEM (MZ_HOST_SYSTEM_RISCOS)
|
2018-10-24 09:50:16 -07:00
|
|
|
#elif defined(_WIN32)
|
2019-05-08 23:41:47 -07:00
|
|
|
# define MZ_VERSION_MADEBY_HOST_SYSTEM (MZ_HOST_SYSTEM_WINDOWS_NTFS)
|
2020-11-18 11:21:17 +00:00
|
|
|
#else
|
|
|
|
# define MZ_VERSION_MADEBY_HOST_SYSTEM (MZ_HOST_SYSTEM_UNIX)
|
2017-10-05 23:32:57 -07:00
|
|
|
#endif
|
|
|
|
|
2020-10-25 14:50:53 -07:00
|
|
|
#if defined(HAVE_LZMA) || defined(HAVE_LIBCOMP)
|
2019-05-08 23:41:47 -07:00
|
|
|
# define MZ_VERSION_MADEBY_ZIP_VERSION (63)
|
2019-10-04 18:33:13 -07:00
|
|
|
#elif defined(HAVE_WZAES)
|
2019-05-08 23:41:47 -07:00
|
|
|
# define MZ_VERSION_MADEBY_ZIP_VERSION (51)
|
2019-10-04 18:33:13 -07:00
|
|
|
#elif defined(HAVE_BZIP2)
|
2019-05-08 23:41:47 -07:00
|
|
|
# define MZ_VERSION_MADEBY_ZIP_VERSION (46)
|
2018-02-08 13:12:37 -03:00
|
|
|
#else
|
2019-05-08 23:41:47 -07:00
|
|
|
# define MZ_VERSION_MADEBY_ZIP_VERSION (45)
|
2018-02-08 13:12:37 -03:00
|
|
|
#endif
|
|
|
|
|
2019-05-08 23:41:47 -07:00
|
|
|
#define MZ_VERSION_MADEBY ((MZ_VERSION_MADEBY_HOST_SYSTEM << 8) | \
|
|
|
|
(MZ_VERSION_MADEBY_ZIP_VERSION))
|
|
|
|
|
|
|
|
#define MZ_PATH_SLASH_UNIX ('/')
|
|
|
|
#if defined(_WIN32)
|
|
|
|
# define MZ_PATH_SLASH_PLATFORM ('\\')
|
|
|
|
#else
|
2019-05-09 12:47:40 -07:00
|
|
|
# define MZ_PATH_SLASH_PLATFORM (MZ_PATH_SLASH_UNIX)
|
2019-05-08 23:41:47 -07:00
|
|
|
#endif
|
2018-02-08 13:12:37 -03:00
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
#if defined(_WIN32)
|
|
|
|
struct dirent {
|
|
|
|
char d_name[256];
|
|
|
|
};
|
|
|
|
typedef void* DIR;
|
2018-10-25 21:21:58 -07:00
|
|
|
#else
|
|
|
|
#include <dirent.h>
|
2018-10-24 09:50:16 -07:00
|
|
|
#endif
|
2018-08-27 08:17:16 -07:00
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
/***************************************************************************/
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Shared functions */
|
2018-10-25 08:39:48 -07:00
|
|
|
|
|
|
|
int32_t mz_path_combine(char *path, const char *join, int32_t max_path);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Combines two paths */
|
2018-10-25 08:39:48 -07:00
|
|
|
|
2019-05-08 23:41:47 -07:00
|
|
|
int32_t mz_path_append_slash(char *path, int32_t max_path, char slash);
|
|
|
|
/* Appends a path slash on to the end of the path */
|
2019-05-02 21:07:39 -07:00
|
|
|
|
|
|
|
int32_t mz_path_remove_slash(char *path);
|
|
|
|
/* Removes a path slash from the end of the path */
|
|
|
|
|
|
|
|
int32_t mz_path_has_slash(const char *path);
|
|
|
|
/* Returns whether or not the path ends with slash */
|
|
|
|
|
2019-05-08 23:41:47 -07:00
|
|
|
int32_t mz_path_convert_slashes(char *path, char slash);
|
2019-05-08 19:24:09 -07:00
|
|
|
/* Converts the slashes in a path */
|
|
|
|
|
2018-10-25 08:39:48 -07:00
|
|
|
int32_t mz_path_compare_wc(const char *path, const char *wildcard, uint8_t ignore_case);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Compare two paths with wildcard */
|
2018-10-25 08:39:48 -07:00
|
|
|
|
|
|
|
int32_t mz_path_resolve(const char *path, char *target, int32_t max_target);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Resolves path */
|
2018-10-25 08:39:48 -07:00
|
|
|
|
|
|
|
int32_t mz_path_remove_filename(char *path);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Remove the filename from a path */
|
2018-10-25 08:39:48 -07:00
|
|
|
|
2019-04-28 09:23:56 -07:00
|
|
|
int32_t mz_path_remove_extension(char *path);
|
|
|
|
/* Remove the extension from a path */
|
|
|
|
|
2018-10-25 08:39:48 -07:00
|
|
|
int32_t mz_path_get_filename(const char *path, const char **filename);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Get the filename from a path */
|
2018-10-25 08:39:48 -07:00
|
|
|
|
|
|
|
int32_t mz_dir_make(const char *path);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Creates a directory recursively */
|
2018-10-25 08:39:48 -07:00
|
|
|
|
|
|
|
int32_t mz_file_get_crc(const char *path, uint32_t *result_crc);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Gets the crc32 hash of a file */
|
2018-10-25 08:39:48 -07:00
|
|
|
|
|
|
|
/***************************************************************************/
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Platform specific functions */
|
2017-10-23 22:12:07 -07:00
|
|
|
|
2018-10-30 13:59:17 -07:00
|
|
|
wchar_t *mz_os_unicode_string_create(const char *string, int32_t encoding);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Create unicode string from a utf8 string */
|
2018-10-25 08:39:48 -07:00
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
void mz_os_unicode_string_delete(wchar_t **string);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Delete a unicode string that was created */
|
2018-10-24 09:50:16 -07:00
|
|
|
|
2018-10-30 13:59:17 -07:00
|
|
|
uint8_t *mz_os_utf8_string_create(const char *string, int32_t encoding);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Create a utf8 string from a string with another encoding */
|
2018-10-30 13:59:17 -07:00
|
|
|
|
|
|
|
void mz_os_utf8_string_delete(uint8_t **string);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Delete a utf8 string that was created */
|
2018-10-30 13:59:17 -07:00
|
|
|
|
2018-10-25 19:35:50 -07:00
|
|
|
int32_t mz_os_rand(uint8_t *buf, int32_t size);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Random number generator (not cryptographically secure) */
|
2018-10-25 19:35:50 -07:00
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
int32_t mz_os_rename(const char *source_path, const char *target_path);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Rename a file */
|
2018-10-25 08:39:48 -07:00
|
|
|
|
2019-05-02 21:07:39 -07:00
|
|
|
int32_t mz_os_unlink(const char *path);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Delete an existing file */
|
2018-10-25 08:39:48 -07:00
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
int32_t mz_os_file_exists(const char *path);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Check to see if a file exists */
|
2018-10-25 08:39:48 -07:00
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
int64_t mz_os_get_file_size(const char *path);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Gets the length of a file */
|
2018-10-25 08:39:48 -07:00
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
int32_t mz_os_get_file_date(const char *path, time_t *modified_date, time_t *accessed_date, time_t *creation_date);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Gets a file's modified, access, and creation dates if supported */
|
2018-10-25 08:39:48 -07:00
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
int32_t mz_os_set_file_date(const char *path, time_t modified_date, time_t accessed_date, time_t creation_date);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Sets a file's modified, access, and creation dates if supported */
|
2018-10-25 08:39:48 -07:00
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
int32_t mz_os_get_file_attribs(const char *path, uint32_t *attributes);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Gets a file's attributes */
|
2018-10-25 08:39:48 -07:00
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
int32_t mz_os_set_file_attribs(const char *path, uint32_t attributes);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Sets a file's attributes */
|
2018-10-25 08:39:48 -07:00
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
int32_t mz_os_make_dir(const char *path);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Recursively creates a directory */
|
2018-10-25 08:39:48 -07:00
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
DIR* mz_os_open_dir(const char *path);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Opens a directory for listing */
|
2018-10-24 09:50:16 -07:00
|
|
|
struct
|
|
|
|
dirent* mz_os_read_dir(DIR *dir);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Reads a directory listing entry */
|
2018-10-25 08:39:48 -07:00
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
int32_t mz_os_close_dir(DIR *dir);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Closes a directory that has been opened for listing */
|
2018-10-25 08:39:48 -07:00
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
int32_t mz_os_is_dir(const char *path);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Checks to see if path is a directory */
|
2018-10-25 08:39:48 -07:00
|
|
|
|
2019-05-02 21:07:39 -07:00
|
|
|
int32_t mz_os_is_symlink(const char *path);
|
|
|
|
/* Checks to see if path is a symbolic link */
|
|
|
|
|
|
|
|
int32_t mz_os_make_symlink(const char *path, const char *target_path);
|
|
|
|
/* Creates a symbolic link pointing to a target */
|
|
|
|
|
|
|
|
int32_t mz_os_read_symlink(const char *path, char *target_path, int32_t max_target_path);
|
|
|
|
/* Gets the target path for a symbolic link */
|
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
uint64_t mz_os_ms_time(void);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Gets the time in milliseconds */
|
2018-10-24 09:50:16 -07:00
|
|
|
|
2017-10-05 23:32:57 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|