2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* file_access_unix.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 12:16:55 +00:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
2019-01-01 11:53:14 +00:00
|
|
|
/* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2019 Godot Engine contributors (cf. AUTHORS.md) */
|
2014-02-10 01:10:30 +00:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
2018-01-04 23:50:27 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#include "file_access_unix.h"
|
|
|
|
|
|
|
|
#if defined(UNIX_ENABLED) || defined(LIBC_FILEIO_ENABLED)
|
|
|
|
|
|
|
|
#include "core/os/os.h"
|
2018-09-11 16:13:45 +00:00
|
|
|
#include "core/print_string.h"
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2019-08-20 11:59:46 +00:00
|
|
|
#include <errno.h>
|
|
|
|
|
2017-09-04 19:29:59 +00:00
|
|
|
#if defined(UNIX_ENABLED)
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#ifndef ANDROID_ENABLED
|
|
|
|
#include <sys/statvfs.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef MSVC
|
2017-03-05 15:44:50 +00:00
|
|
|
#define S_ISREG(m) ((m)&_S_IFREG)
|
2017-09-04 19:29:59 +00:00
|
|
|
#include <io.h>
|
2014-02-10 01:10:30 +00:00
|
|
|
#endif
|
|
|
|
#ifndef S_ISREG
|
2017-03-05 15:44:50 +00:00
|
|
|
#define S_ISREG(m) ((m)&S_IFREG)
|
2014-02-10 01:10:30 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
void FileAccessUnix::check_errors() const {
|
|
|
|
|
|
|
|
ERR_FAIL_COND(!f);
|
|
|
|
|
|
|
|
if (feof(f)) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
last_error = ERR_FILE_EOF;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Error FileAccessUnix::_open(const String &p_path, int p_mode_flags) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
if (f)
|
|
|
|
fclose(f);
|
2017-03-05 15:44:50 +00:00
|
|
|
f = NULL;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2018-03-09 14:45:21 +00:00
|
|
|
path_src = p_path;
|
2017-03-05 15:44:50 +00:00
|
|
|
path = fix_path(p_path);
|
2014-09-15 14:33:30 +00:00
|
|
|
//printf("opening %ls, %i\n", path.c_str(), Memory::get_static_mem_usage());
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ERR_FAIL_COND_V(f, ERR_ALREADY_IN_USE);
|
|
|
|
const char *mode_string;
|
|
|
|
|
|
|
|
if (p_mode_flags == READ)
|
|
|
|
mode_string = "rb";
|
|
|
|
else if (p_mode_flags == WRITE)
|
|
|
|
mode_string = "wb";
|
|
|
|
else if (p_mode_flags == READ_WRITE)
|
|
|
|
mode_string = "rb+";
|
|
|
|
else if (p_mode_flags == WRITE_READ)
|
|
|
|
mode_string = "wb+";
|
2014-02-10 01:10:30 +00:00
|
|
|
else
|
|
|
|
return ERR_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
/* pretty much every implementation that uses fopen as primary
|
|
|
|
backend (unix-compatible mostly) supports utf8 encoding */
|
|
|
|
|
|
|
|
//printf("opening %s as %s\n", p_path.utf8().get_data(), path.utf8().get_data());
|
|
|
|
struct stat st;
|
2017-09-04 19:29:59 +00:00
|
|
|
int err = stat(path.utf8().get_data(), &st);
|
2017-09-04 23:14:14 +00:00
|
|
|
if (!err) {
|
|
|
|
switch (st.st_mode & S_IFMT) {
|
|
|
|
case S_IFLNK:
|
|
|
|
case S_IFREG:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return ERR_FILE_CANT_OPEN;
|
|
|
|
}
|
2017-09-04 19:29:59 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-09-04 19:29:59 +00:00
|
|
|
if (is_backup_save_enabled() && (p_mode_flags & WRITE) && !(p_mode_flags & READ)) {
|
2017-03-05 15:44:50 +00:00
|
|
|
save_path = path;
|
|
|
|
path = path + ".tmp";
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
f = fopen(path.utf8().get_data(), mode_string);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (f == NULL) {
|
2019-08-20 11:59:46 +00:00
|
|
|
switch (errno) {
|
|
|
|
case ENOENT: {
|
|
|
|
last_error = ERR_FILE_NOT_FOUND;
|
|
|
|
} break;
|
|
|
|
default: {
|
|
|
|
last_error = ERR_FILE_CANT_OPEN;
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
return last_error;
|
2014-02-10 01:10:30 +00:00
|
|
|
} else {
|
2017-03-05 15:44:50 +00:00
|
|
|
last_error = OK;
|
|
|
|
flags = p_mode_flags;
|
2014-02-10 01:10:30 +00:00
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
}
|
2017-09-04 19:29:59 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
void FileAccessUnix::close() {
|
|
|
|
|
|
|
|
if (!f)
|
|
|
|
return;
|
2017-09-04 19:29:59 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
fclose(f);
|
|
|
|
f = NULL;
|
2017-09-04 19:29:59 +00:00
|
|
|
|
2015-09-12 13:54:47 +00:00
|
|
|
if (close_notification_func) {
|
2017-03-05 15:44:50 +00:00
|
|
|
close_notification_func(path, flags);
|
2015-09-12 13:54:47 +00:00
|
|
|
}
|
2017-09-04 19:29:59 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (save_path != "") {
|
|
|
|
int rename_error = rename((save_path + ".tmp").utf8().get_data(), save_path.utf8().get_data());
|
2016-06-13 13:10:50 +00:00
|
|
|
|
|
|
|
if (rename_error && close_fail_notify) {
|
|
|
|
close_fail_notify(save_path);
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
save_path = "";
|
|
|
|
ERR_FAIL_COND(rename_error != 0);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
2017-09-04 19:29:59 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
bool FileAccessUnix::is_open() const {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
return (f != NULL);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2017-09-04 19:29:59 +00:00
|
|
|
|
2018-03-09 14:45:21 +00:00
|
|
|
String FileAccessUnix::get_path() const {
|
|
|
|
|
|
|
|
return path_src;
|
|
|
|
}
|
|
|
|
|
|
|
|
String FileAccessUnix::get_path_absolute() const {
|
|
|
|
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
void FileAccessUnix::seek(size_t p_position) {
|
|
|
|
|
|
|
|
ERR_FAIL_COND(!f);
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
last_error = OK;
|
|
|
|
if (fseek(f, p_position, SEEK_SET))
|
2014-02-10 01:10:30 +00:00
|
|
|
check_errors();
|
|
|
|
}
|
2017-09-04 19:29:59 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void FileAccessUnix::seek_end(int64_t p_position) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
ERR_FAIL_COND(!f);
|
2017-09-04 19:29:59 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (fseek(f, p_position, SEEK_END))
|
2014-02-10 01:10:30 +00:00
|
|
|
check_errors();
|
|
|
|
}
|
2017-09-04 19:29:59 +00:00
|
|
|
|
2017-09-10 13:37:49 +00:00
|
|
|
size_t FileAccessUnix::get_position() const {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-09-04 19:29:59 +00:00
|
|
|
ERR_FAIL_COND_V(!f, 0);
|
|
|
|
|
2018-04-23 13:20:38 +00:00
|
|
|
long pos = ftell(f);
|
2017-09-04 19:29:59 +00:00
|
|
|
if (pos < 0) {
|
2014-02-10 01:10:30 +00:00
|
|
|
check_errors();
|
2017-09-04 19:29:59 +00:00
|
|
|
ERR_FAIL_V(0);
|
|
|
|
}
|
|
|
|
return pos;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2017-09-04 19:29:59 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
size_t FileAccessUnix::get_len() const {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ERR_FAIL_COND_V(!f, 0);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2018-04-23 13:20:38 +00:00
|
|
|
long pos = ftell(f);
|
2017-09-04 19:29:59 +00:00
|
|
|
ERR_FAIL_COND_V(pos < 0, 0);
|
|
|
|
ERR_FAIL_COND_V(fseek(f, 0, SEEK_END), 0);
|
2018-04-23 13:20:38 +00:00
|
|
|
long size = ftell(f);
|
2017-09-04 19:29:59 +00:00
|
|
|
ERR_FAIL_COND_V(size < 0, 0);
|
|
|
|
ERR_FAIL_COND_V(fseek(f, pos, SEEK_SET), 0);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
bool FileAccessUnix::eof_reached() const {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
return last_error == ERR_FILE_EOF;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
uint8_t FileAccessUnix::get_8() const {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ERR_FAIL_COND_V(!f, 0);
|
2014-02-10 01:10:30 +00:00
|
|
|
uint8_t b;
|
2017-03-05 15:44:50 +00:00
|
|
|
if (fread(&b, 1, 1, f) == 0) {
|
2014-02-10 01:10:30 +00:00
|
|
|
check_errors();
|
2017-09-06 22:15:11 +00:00
|
|
|
b = '\0';
|
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
|
|
|
int FileAccessUnix::get_buffer(uint8_t *p_dst, int p_length) const {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ERR_FAIL_COND_V(!f, -1);
|
2014-02-10 01:10:30 +00:00
|
|
|
int read = fread(p_dst, 1, p_length, f);
|
|
|
|
check_errors();
|
|
|
|
return read;
|
|
|
|
};
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Error FileAccessUnix::get_error() const {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
return last_error;
|
|
|
|
}
|
|
|
|
|
2017-09-22 05:56:02 +00:00
|
|
|
void FileAccessUnix::flush() {
|
|
|
|
|
|
|
|
ERR_FAIL_COND(!f);
|
|
|
|
fflush(f);
|
|
|
|
}
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
void FileAccessUnix::store_8(uint8_t p_dest) {
|
|
|
|
|
|
|
|
ERR_FAIL_COND(!f);
|
2017-09-04 19:29:59 +00:00
|
|
|
ERR_FAIL_COND(fwrite(&p_dest, 1, 1, f) != 1);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2018-02-04 12:23:23 +00:00
|
|
|
void FileAccessUnix::store_buffer(const uint8_t *p_src, int p_length) {
|
|
|
|
ERR_FAIL_COND(!f);
|
2019-02-21 19:57:39 +00:00
|
|
|
ERR_FAIL_COND((int)fwrite(p_src, 1, p_length, f) != p_length);
|
2018-02-04 12:23:23 +00:00
|
|
|
}
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
bool FileAccessUnix::file_exists(const String &p_path) {
|
|
|
|
|
2017-09-04 19:29:59 +00:00
|
|
|
int err;
|
|
|
|
struct stat st;
|
2017-03-05 15:44:50 +00:00
|
|
|
String filename = fix_path(p_path);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-09-04 19:29:59 +00:00
|
|
|
// Does the name exist at all?
|
|
|
|
err = stat(filename.utf8().get_data(), &st);
|
|
|
|
if (err)
|
2014-02-10 01:10:30 +00:00
|
|
|
return false;
|
|
|
|
|
2017-09-04 19:29:59 +00:00
|
|
|
#ifdef UNIX_ENABLED
|
|
|
|
// See if we have access to the file
|
|
|
|
if (access(filename.utf8().get_data(), F_OK))
|
|
|
|
return false;
|
|
|
|
#else
|
|
|
|
if (_access(filename.utf8().get_data(), 4) == -1)
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// See if this is a regular file
|
|
|
|
switch (st.st_mode & S_IFMT) {
|
|
|
|
case S_IFLNK:
|
|
|
|
case S_IFREG:
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t FileAccessUnix::_get_modified_time(const String &p_file) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
String file = fix_path(p_file);
|
2014-02-10 01:10:30 +00:00
|
|
|
struct stat flags;
|
2017-09-04 19:29:59 +00:00
|
|
|
int err = stat(file.utf8().get_data(), &flags);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-09-04 19:29:59 +00:00
|
|
|
if (!err) {
|
2014-02-10 01:10:30 +00:00
|
|
|
return flags.st_mtime;
|
|
|
|
} else {
|
2019-08-15 02:57:49 +00:00
|
|
|
ERR_FAIL_V_MSG(0, "Failed to get modified time for: " + p_file + ".");
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-04-07 18:46:52 +00:00
|
|
|
uint32_t FileAccessUnix::_get_unix_permissions(const String &p_file) {
|
|
|
|
|
|
|
|
String file = fix_path(p_file);
|
|
|
|
struct stat flags;
|
|
|
|
int err = stat(file.utf8().get_data(), &flags);
|
|
|
|
|
|
|
|
if (!err) {
|
|
|
|
return flags.st_mode & 0x7FF; //only permissions
|
|
|
|
} else {
|
2019-08-15 02:57:49 +00:00
|
|
|
ERR_FAIL_V_MSG(0, "Failed to get unix permissions for: " + p_file + ".");
|
2019-04-07 18:46:52 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
Error FileAccessUnix::_set_unix_permissions(const String &p_file, uint32_t p_permissions) {
|
|
|
|
|
|
|
|
String file = fix_path(p_file);
|
|
|
|
|
|
|
|
int err = chmod(file.utf8().get_data(), p_permissions);
|
2017-09-17 17:40:58 +00:00
|
|
|
if (!err) {
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FAILED;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
FileAccess *FileAccessUnix::create_libc() {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
return memnew(FileAccessUnix);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
CloseNotificationFunc FileAccessUnix::close_notification_func = NULL;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2018-12-08 20:07:33 +00:00
|
|
|
FileAccessUnix::FileAccessUnix() :
|
|
|
|
f(NULL),
|
|
|
|
flags(0),
|
|
|
|
last_error(OK) {
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2017-09-04 19:29:59 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
FileAccessUnix::~FileAccessUnix() {
|
|
|
|
|
|
|
|
close();
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|