2017-10-05 23:32:57 -07:00
|
|
|
/* mz_os.c -- System functions
|
2018-08-05 10:33:42 -07:00
|
|
|
Version 2.4.0, August 5, 2018
|
2017-10-05 23:32:57 -07:00
|
|
|
part of the MiniZip project
|
|
|
|
|
2018-01-06 08:49:03 -08:00
|
|
|
Copyright (C) 2010-2018 Nathan Moinvaziri
|
2017-10-05 23:32:57 -07:00
|
|
|
https://github.com/nmoinvaz/minizip
|
2017-10-23 22:17:03 -07:00
|
|
|
Copyright (C) 1998-2010 Gilles Vollant
|
|
|
|
http://www.winimage.com/zLibDll/minizip.html
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
2018-07-31 12:48:31 -07:00
|
|
|
#include <ctype.h>
|
2017-10-05 23:32:57 -07:00
|
|
|
|
2017-10-16 07:37:11 -07:00
|
|
|
#include "mz.h"
|
2017-10-05 23:32:57 -07:00
|
|
|
#include "mz_os.h"
|
2017-10-23 22:12:07 -07:00
|
|
|
#include "mz_strm.h"
|
2018-07-11 09:56:23 -07:00
|
|
|
#include "mz_strm_crc32.h"
|
2017-10-05 23:32:57 -07:00
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2017-10-20 07:59:39 -07:00
|
|
|
int32_t mz_make_dir(const char *path)
|
2017-10-09 00:40:53 -07:00
|
|
|
{
|
2017-10-20 07:59:39 -07:00
|
|
|
int32_t err = MZ_OK;
|
2017-10-09 00:40:53 -07:00
|
|
|
int16_t len = 0;
|
|
|
|
char *current_dir = NULL;
|
|
|
|
char *match = NULL;
|
|
|
|
char hold = 0;
|
|
|
|
|
|
|
|
|
|
|
|
len = (int16_t)strlen(path);
|
|
|
|
if (len <= 0)
|
|
|
|
return 0;
|
|
|
|
|
2018-05-02 20:01:35 -07:00
|
|
|
current_dir = (char *)MZ_ALLOC(len + 1);
|
2017-10-09 00:40:53 -07:00
|
|
|
if (current_dir == NULL)
|
|
|
|
return MZ_MEM_ERROR;
|
|
|
|
|
|
|
|
strcpy(current_dir, path);
|
|
|
|
|
|
|
|
if (current_dir[len - 1] == '/')
|
|
|
|
current_dir[len - 1] = 0;
|
|
|
|
|
|
|
|
err = mz_os_make_dir(current_dir);
|
|
|
|
if (err != MZ_OK)
|
|
|
|
{
|
|
|
|
match = current_dir + 1;
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
while (*match != 0 && *match != '\\' && *match != '/')
|
|
|
|
match += 1;
|
|
|
|
hold = *match;
|
|
|
|
*match = 0;
|
|
|
|
|
|
|
|
err = mz_os_make_dir(current_dir);
|
|
|
|
if (err != MZ_OK)
|
|
|
|
break;
|
|
|
|
if (hold == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
*match = hold;
|
|
|
|
match += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-02 20:01:35 -07:00
|
|
|
MZ_FREE(current_dir);
|
2017-10-09 00:40:53 -07:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-10-16 14:50:31 -07:00
|
|
|
int32_t mz_path_combine(char *path, const char *join, int32_t max_path)
|
|
|
|
{
|
|
|
|
int32_t path_len = 0;
|
|
|
|
|
|
|
|
if (path == NULL || join == NULL || max_path == 0)
|
|
|
|
return MZ_PARAM_ERROR;
|
|
|
|
|
|
|
|
path_len = strlen(path);
|
|
|
|
|
|
|
|
if (path_len == 0)
|
|
|
|
{
|
|
|
|
strncpy(path, join, max_path);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (path[path_len - 1] != '\\' && path[path_len - 1] != '/')
|
|
|
|
strncat(path, "/", max_path - path_len - 1);
|
|
|
|
strncat(path, join, max_path - path_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
return MZ_OK;
|
|
|
|
}
|
2017-10-23 22:12:07 -07:00
|
|
|
|
2018-07-31 12:48:31 -07:00
|
|
|
int32_t mz_path_compare_wc(const char *path, const char *wildcard, uint8_t ignore_case)
|
|
|
|
{
|
|
|
|
while (*path != 0)
|
|
|
|
{
|
|
|
|
switch (*wildcard)
|
|
|
|
{
|
|
|
|
case '*':
|
|
|
|
|
|
|
|
if (*(wildcard + 1) == 0)
|
|
|
|
return MZ_OK;
|
|
|
|
|
|
|
|
while (*path != 0)
|
|
|
|
{
|
|
|
|
if (mz_path_compare_wc(path, (wildcard + 1), ignore_case) == MZ_OK)
|
|
|
|
return MZ_OK;
|
|
|
|
|
|
|
|
path += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return MZ_EXIST_ERROR;
|
|
|
|
|
|
|
|
default:
|
|
|
|
// Ignore differences in path slashes on platforms
|
|
|
|
if ((*path == '\\' && *wildcard == '/') || (*path == '/' && *wildcard == '\\'))
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (ignore_case)
|
|
|
|
{
|
|
|
|
if (tolower(*path) != tolower(*wildcard))
|
|
|
|
return MZ_EXIST_ERROR;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (*path != *wildcard)
|
|
|
|
return MZ_EXIST_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
path += 1;
|
|
|
|
wildcard += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((*wildcard != 0) && (*wildcard != '*'))
|
|
|
|
return MZ_EXIST_ERROR;
|
|
|
|
|
|
|
|
return MZ_OK;
|
|
|
|
}
|
|
|
|
|
2018-06-11 07:38:58 -07:00
|
|
|
int32_t mz_path_resolve(const char *path, char *output, int32_t max_output)
|
|
|
|
{
|
|
|
|
const char *source = path;
|
2018-06-19 09:44:06 -07:00
|
|
|
const char *check = output;
|
2018-06-11 07:38:58 -07:00
|
|
|
char *target = output;
|
|
|
|
|
|
|
|
if (max_output <= 0)
|
|
|
|
return MZ_PARAM_ERROR;
|
|
|
|
|
|
|
|
while (*source != 0 && max_output > 1)
|
|
|
|
{
|
2018-06-19 09:44:06 -07:00
|
|
|
check = source;
|
|
|
|
if ((*check == '\\') || (*check == '/'))
|
|
|
|
check += 1;
|
|
|
|
|
|
|
|
if ((source == path) || (check != source) || (*target == 0))
|
2018-06-11 07:38:58 -07:00
|
|
|
{
|
2018-06-19 09:44:06 -07:00
|
|
|
// Skip double paths
|
|
|
|
if ((*check == '\\') || (*check == '/'))
|
2018-06-11 07:38:58 -07:00
|
|
|
{
|
|
|
|
source += 1;
|
2018-06-19 09:44:06 -07:00
|
|
|
continue;
|
2018-06-11 07:38:58 -07:00
|
|
|
}
|
2018-06-19 09:44:06 -07:00
|
|
|
if ((*check != 0) && (*check == '.'))
|
2018-06-11 07:38:58 -07:00
|
|
|
{
|
2018-06-19 09:44:06 -07:00
|
|
|
check += 1;
|
|
|
|
|
|
|
|
// Remove current directory . if at end of stirng
|
|
|
|
if ((*check == 0) && (source != path))
|
2018-06-11 07:38:58 -07:00
|
|
|
{
|
2018-06-19 09:44:06 -07:00
|
|
|
// Copy last slash
|
|
|
|
*target = *source;
|
|
|
|
target += 1;
|
|
|
|
max_output -= 1;
|
|
|
|
source += (check - source);
|
|
|
|
continue;
|
2018-06-11 07:38:58 -07:00
|
|
|
}
|
|
|
|
|
2018-06-19 09:44:06 -07:00
|
|
|
// Remove current directory . if not at end of stirng
|
|
|
|
if ((*check == 0) || (*check == '\\' || *check == '/'))
|
|
|
|
{
|
|
|
|
// Only proceed if .\ is not entire string
|
|
|
|
if (check[1] != 0 || (path != source))
|
|
|
|
{
|
|
|
|
source += (check - source);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2018-06-11 07:38:58 -07:00
|
|
|
|
2018-06-19 09:44:06 -07:00
|
|
|
// Go to parent directory ..
|
|
|
|
if ((*check != 0) || (*check == '.'))
|
|
|
|
{
|
|
|
|
check += 1;
|
|
|
|
if ((*check == 0) || (*check == '\\' || *check == '/'))
|
|
|
|
{
|
|
|
|
source += (check - source);
|
|
|
|
|
|
|
|
// Search backwards for previous slash
|
|
|
|
if (target != output)
|
|
|
|
{
|
|
|
|
target -= 1;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if ((*target == '\\') || (*target == '/'))
|
|
|
|
break;
|
|
|
|
|
|
|
|
target -= 1;
|
|
|
|
max_output += 1;
|
|
|
|
}
|
|
|
|
while (target > output);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((target == output) && (*source != 0))
|
|
|
|
source += 1;
|
|
|
|
if ((*target == '\\' || *target == '/') && (*source == 0))
|
|
|
|
target += 1;
|
|
|
|
|
|
|
|
*target = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2018-06-11 07:38:58 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*target = *source;
|
|
|
|
|
|
|
|
source += 1;
|
|
|
|
target += 1;
|
|
|
|
max_output -= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
*target = 0;
|
|
|
|
|
|
|
|
if (*path == 0)
|
|
|
|
return MZ_INTERNAL_ERROR;
|
|
|
|
|
|
|
|
return MZ_OK;
|
|
|
|
}
|
|
|
|
|
2018-05-09 20:03:26 -07:00
|
|
|
int32_t mz_path_remove_filename(const char *path)
|
2018-05-06 16:59:31 -07:00
|
|
|
{
|
|
|
|
char *path_ptr = NULL;
|
|
|
|
|
|
|
|
if (path == NULL)
|
|
|
|
return MZ_PARAM_ERROR;
|
|
|
|
|
2018-05-09 20:03:26 -07:00
|
|
|
path_ptr = (char *)(path + strlen(path) - 1);
|
2018-05-06 16:59:31 -07:00
|
|
|
|
|
|
|
while (path_ptr > path)
|
|
|
|
{
|
|
|
|
if ((*path_ptr == '/') || (*path_ptr == '\\'))
|
|
|
|
{
|
|
|
|
*path_ptr = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
path_ptr -= 1;
|
|
|
|
}
|
|
|
|
return MZ_OK;
|
|
|
|
}
|
|
|
|
|
2018-05-09 20:03:26 -07:00
|
|
|
int32_t mz_path_get_filename(const char *path, const char **filename)
|
|
|
|
{
|
|
|
|
const char *match = NULL;
|
|
|
|
|
|
|
|
if (path == NULL || filename == NULL)
|
|
|
|
return MZ_PARAM_ERROR;
|
|
|
|
|
|
|
|
*filename = NULL;
|
|
|
|
|
|
|
|
for (match = path; *match != 0; match += 1)
|
|
|
|
{
|
|
|
|
if ((*match == '\\') || (*match == '/'))
|
|
|
|
*filename = match + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*filename == NULL)
|
|
|
|
return MZ_EXIST_ERROR;
|
|
|
|
|
|
|
|
return MZ_OK;
|
|
|
|
}
|
|
|
|
|
2017-10-23 22:12:07 -07:00
|
|
|
int32_t mz_get_file_crc(const char *path, uint32_t *result_crc)
|
|
|
|
{
|
|
|
|
void *stream = NULL;
|
|
|
|
void *crc32_stream = NULL;
|
2017-10-26 17:52:36 -07:00
|
|
|
int32_t read = 0;
|
2017-10-23 22:12:07 -07:00
|
|
|
int32_t err = MZ_OK;
|
2017-10-26 17:52:36 -07:00
|
|
|
uint8_t buf[INT16_MAX];
|
2017-10-23 22:12:07 -07:00
|
|
|
|
|
|
|
mz_stream_os_create(&stream);
|
|
|
|
|
|
|
|
err = mz_stream_os_open(stream, path, MZ_OPEN_MODE_READ);
|
|
|
|
|
|
|
|
mz_stream_crc32_create(&crc32_stream);
|
|
|
|
mz_stream_crc32_open(crc32_stream, NULL, MZ_OPEN_MODE_READ);
|
|
|
|
|
|
|
|
mz_stream_set_base(crc32_stream, stream);
|
|
|
|
|
|
|
|
if (err == MZ_OK)
|
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
|
|
|
read = mz_stream_crc32_read(crc32_stream, buf, sizeof(buf));
|
|
|
|
|
|
|
|
if (read < 0)
|
|
|
|
{
|
|
|
|
err = read;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while ((err == MZ_OK) && (read > 0));
|
|
|
|
|
|
|
|
mz_stream_os_close(stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
mz_stream_crc32_close(crc32_stream);
|
|
|
|
*result_crc = mz_stream_crc32_get_value(crc32_stream);
|
|
|
|
mz_stream_crc32_delete(&crc32_stream);
|
|
|
|
|
|
|
|
mz_stream_os_delete(&stream);
|
|
|
|
|
|
|
|
return err;
|
2018-05-02 19:59:38 +00:00
|
|
|
}
|