rpcs3/Utilities/File.cpp

1358 lines
27 KiB
C++
Raw Normal View History

2015-04-24 21:38:11 +00:00
#include "File.h"
#include "mutex.h"
2016-02-01 21:55:43 +00:00
#include "StrFmt.h"
2016-07-11 19:00:12 +00:00
#include "BEType.h"
#include "Crypto/sha1.h"
2016-02-01 21:55:43 +00:00
#include <unordered_map>
#include <algorithm>
2017-04-16 01:31:58 +00:00
#include <cstring>
#include <cerrno>
2014-07-11 17:06:59 +00:00
2017-04-16 01:31:58 +00:00
using namespace std::literals::string_literals;
2014-07-11 17:06:59 +00:00
#ifdef _WIN32
2016-01-05 23:52:48 +00:00
#include <cwchar>
#include <Windows.h>
2015-04-15 14:27:37 +00:00
static std::unique_ptr<wchar_t[]> to_wchar(const std::string& source)
2015-04-13 18:10:31 +00:00
{
2016-08-14 17:22:07 +00:00
// String size + null terminator
const std::size_t buf_size = source.size() + 1;
2015-04-15 14:27:37 +00:00
2016-08-14 17:22:07 +00:00
// Safe size
const int size = narrow<int>(buf_size, "to_wchar" HERE);
2015-04-15 14:27:37 +00:00
2016-08-14 17:22:07 +00:00
// Buffer for max possible output length
std::unique_ptr<wchar_t[]> buffer(new wchar_t[buf_size]);
2015-04-15 14:27:37 +00:00
2016-08-14 00:22:19 +00:00
verify("to_wchar" HERE), MultiByteToWideChar(CP_UTF8, 0, source.c_str(), size, buffer.get(), size);
2015-04-15 14:27:37 +00:00
return buffer;
}
2016-08-14 17:22:07 +00:00
static void to_utf8(std::string& out, const wchar_t* source)
2015-04-25 19:15:53 +00:00
{
2016-08-14 17:22:07 +00:00
// String size
const std::size_t length = std::wcslen(source);
2015-04-25 19:15:53 +00:00
2016-08-14 17:22:07 +00:00
// Safe buffer size for max possible output length (including null terminator)
const int buf_size = narrow<int>(length * 3 + 1, "to_utf8" HERE);
2015-05-08 09:45:21 +00:00
2016-08-14 17:22:07 +00:00
// Resize buffer
out.resize(buf_size - 1);
2015-05-08 09:45:21 +00:00
2016-08-14 17:22:07 +00:00
const int result = WideCharToMultiByte(CP_UTF8, 0, source, static_cast<int>(length) + 1, &out.front(), buf_size, NULL, NULL);
2016-08-14 00:22:19 +00:00
2016-08-14 17:22:07 +00:00
// Fix the size
2016-08-15 10:18:47 +00:00
out.resize(verify("to_utf8" HERE, result) - 1);
2015-04-25 19:15:53 +00:00
}
static time_t to_time(const ULARGE_INTEGER& ft)
2015-04-19 17:57:04 +00:00
{
return ft.QuadPart / 10000000ULL - 11644473600ULL;
}
static time_t to_time(const LARGE_INTEGER& ft)
2015-04-19 19:25:04 +00:00
{
ULARGE_INTEGER v;
v.LowPart = ft.LowPart;
v.HighPart = ft.HighPart;
return to_time(v);
2015-04-19 19:25:04 +00:00
}
static time_t to_time(const FILETIME& ft)
2015-04-15 14:27:37 +00:00
{
2015-04-19 19:25:04 +00:00
ULARGE_INTEGER v;
2015-04-15 14:27:37 +00:00
v.LowPart = ft.dwLowDateTime;
v.HighPart = ft.dwHighDateTime;
return to_time(v);
2014-07-11 17:06:59 +00:00
}
2015-04-15 14:27:37 +00:00
2017-01-26 12:01:21 +00:00
static FILETIME from_time(s64 _time)
{
const ullong wtime = (_time + 11644473600ULL) * 10000000ULL;
FILETIME result;
result.dwLowDateTime = static_cast<DWORD>(wtime);
result.dwHighDateTime = static_cast<DWORD>(wtime >> 32);
return result;
}
2016-05-13 14:01:48 +00:00
static fs::error to_error(DWORD e)
{
switch (e)
{
case ERROR_FILE_NOT_FOUND: return fs::error::noent;
case ERROR_PATH_NOT_FOUND: return fs::error::noent;
2017-02-11 23:52:20 +00:00
case ERROR_ACCESS_DENIED: return fs::error::acces;
2016-05-13 14:01:48 +00:00
case ERROR_ALREADY_EXISTS: return fs::error::exist;
case ERROR_FILE_EXISTS: return fs::error::exist;
case ERROR_NEGATIVE_SEEK: return fs::error::inval;
2016-06-02 15:16:01 +00:00
case ERROR_DIRECTORY: return fs::error::inval;
case ERROR_INVALID_NAME: return fs::error::inval;
default: fmt::throw_exception("Unknown Win32 error: %u.", e);
2016-05-13 14:01:48 +00:00
}
}
2015-04-13 14:46:10 +00:00
#else
2016-01-05 23:52:48 +00:00
#include <sys/mman.h>
2015-04-19 16:02:35 +00:00
#include <sys/stat.h>
#include <sys/types.h>
2015-04-25 20:21:06 +00:00
#include <dirent.h>
2015-04-13 14:46:10 +00:00
#include <fcntl.h>
#include <libgen.h>
#include <string.h>
2015-04-13 14:46:10 +00:00
#include <unistd.h>
2017-01-26 12:01:21 +00:00
#include <utime.h>
2016-01-05 23:52:48 +00:00
2015-04-13 14:46:10 +00:00
#if defined(__APPLE__) || defined(__FreeBSD__)
#include <copyfile.h>
#include <mach-o/dyld.h>
2015-04-13 14:46:10 +00:00
#else
#include <sys/sendfile.h>
#endif
2016-05-13 14:01:48 +00:00
static fs::error to_error(int e)
{
switch (e)
{
case ENOENT: return fs::error::noent;
case EEXIST: return fs::error::exist;
case EINVAL: return fs::error::inval;
2017-02-11 23:52:20 +00:00
case EACCES: return fs::error::acces;
default: fmt::throw_exception("Unknown system error: %d.", e);
2016-05-13 14:01:48 +00:00
}
}
2016-01-05 23:52:48 +00:00
#endif
2016-02-01 21:55:43 +00:00
namespace fs
{
2016-05-13 14:01:48 +00:00
thread_local error g_tls_error = error::ok;
2016-02-01 21:55:43 +00:00
class device_manager final
{
mutable shared_mutex m_mutex;
std::unordered_map<std::string, std::shared_ptr<device_base>> m_map;
public:
std::shared_ptr<device_base> get_device(const std::string& path);
2016-02-01 21:55:43 +00:00
std::shared_ptr<device_base> set_device(const std::string& name, const std::shared_ptr<device_base>&);
};
static device_manager& get_device_manager()
{
// Use magic static
static device_manager instance;
return instance;
}
2017-01-24 23:22:19 +00:00
file_base::~file_base()
{
}
stat_t file_base::stat()
{
fmt::throw_exception("fs::file::stat() not supported for %s", typeid(*this).name());
}
void file_base::sync()
{
// Do notning
}
2017-01-24 23:22:19 +00:00
dir_base::~dir_base()
{
}
device_base::~device_base()
{
}
2016-02-01 21:55:43 +00:00
}
std::shared_ptr<fs::device_base> fs::device_manager::get_device(const std::string& path)
2016-02-01 21:55:43 +00:00
{
reader_lock lock(m_mutex);
const auto found = m_map.find(path.substr(0, path.find_first_of('/', 2)));
2016-02-01 21:55:43 +00:00
if (found == m_map.end())
{
return nullptr;
}
return found->second;
}
std::shared_ptr<fs::device_base> fs::device_manager::set_device(const std::string& name, const std::shared_ptr<device_base>& device)
2016-02-01 21:55:43 +00:00
{
writer_lock lock(m_mutex);
2016-02-01 21:55:43 +00:00
return m_map[name] = device;
}
std::shared_ptr<fs::device_base> fs::get_virtual_device(const std::string& path)
2016-02-01 21:55:43 +00:00
{
// Every virtual device path must have "//" at the beginning
if (path.size() > 2 && reinterpret_cast<const u16&>(path.front()) == "//"_u16)
2016-02-01 21:55:43 +00:00
{
return get_device_manager().get_device(path);
2016-02-01 21:55:43 +00:00
}
return nullptr;
}
std::shared_ptr<fs::device_base> fs::set_virtual_device(const std::string& name, const std::shared_ptr<device_base>& device)
2016-02-01 21:55:43 +00:00
{
2016-08-15 13:29:38 +00:00
verify(HERE), name.size() > 2, name[0] == '/', name[1] == '/', name.find('/', 2) == -1;
2016-02-01 21:55:43 +00:00
return get_device_manager().set_device(name, device);
}
2016-01-05 23:52:48 +00:00
std::string fs::get_parent_dir(const std::string& path)
{
// Search upper bound (set to the last character, npos for empty string)
auto last = path.size() - 1;
2015-04-15 14:27:37 +00:00
2016-01-05 23:52:48 +00:00
#ifdef _WIN32
const auto& delim = "/\\";
#else
const auto& delim = "/";
2014-10-24 13:24:09 +00:00
#endif
2016-01-05 23:52:48 +00:00
while (true)
{
const auto pos = path.find_last_of(delim, last, sizeof(delim) - 1);
2016-01-05 23:52:48 +00:00
// Contiguous slashes are ignored at the end
if (std::exchange(last, pos - 1) != pos)
{
// Return empty string if the path doesn't contain at least 2 elements
return path.substr(0, pos != -1 && path.find_last_not_of(delim, pos, sizeof(delim) - 1) != -1 ? pos : 0);
}
}
}
bool fs::stat(const std::string& path, stat_t& info)
{
2016-02-01 21:55:43 +00:00
if (auto device = get_virtual_device(path))
{
return device->stat(path, info);
}
#ifdef _WIN32
WIN32_FILE_ATTRIBUTE_DATA attrs;
if (!GetFileAttributesExW(to_wchar(path).get(), GetFileExInfoStandard, &attrs))
2015-04-15 14:27:37 +00:00
{
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(GetLastError());
return false;
}
2015-04-15 14:27:37 +00:00
2015-04-24 21:38:11 +00:00
info.is_directory = (attrs.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0;
info.is_writable = (attrs.dwFileAttributes & FILE_ATTRIBUTE_READONLY) == 0;
2015-04-25 19:15:53 +00:00
info.size = (u64)attrs.nFileSizeLow | ((u64)attrs.nFileSizeHigh << 32);
info.atime = to_time(attrs.ftLastAccessTime);
info.mtime = to_time(attrs.ftLastWriteTime);
info.ctime = to_time(attrs.ftCreationTime);
#else
2016-01-05 23:52:48 +00:00
struct ::stat file_info;
if (::stat(path.c_str(), &file_info) != 0)
2015-04-15 14:27:37 +00:00
{
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(errno);
return false;
}
2015-04-24 21:38:11 +00:00
info.is_directory = S_ISDIR(file_info.st_mode);
info.is_writable = file_info.st_mode & 0200; // HACK: approximation
2015-04-15 14:27:37 +00:00
info.size = file_info.st_size;
info.atime = file_info.st_atime;
info.mtime = file_info.st_mtime;
info.ctime = file_info.st_ctime;
#endif
2015-04-25 19:15:53 +00:00
return true;
}
2015-04-24 21:38:11 +00:00
bool fs::exists(const std::string& path)
2015-04-20 15:53:31 +00:00
{
2016-02-01 21:55:43 +00:00
if (auto device = get_virtual_device(path))
{
stat_t info;
return device->stat(path, info);
}
2015-04-20 15:53:31 +00:00
#ifdef _WIN32
2016-01-05 23:52:48 +00:00
if (GetFileAttributesW(to_wchar(path).get()) == INVALID_FILE_ATTRIBUTES)
{
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(GetLastError());
2016-01-05 23:52:48 +00:00
return false;
}
return true;
2015-04-20 15:53:31 +00:00
#else
2016-01-05 23:52:48 +00:00
struct ::stat file_info;
if (::stat(path.c_str(), &file_info) != 0)
{
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(errno);
return false;
}
return true;
2015-04-20 15:53:31 +00:00
#endif
}
2016-01-05 23:52:48 +00:00
bool fs::is_file(const std::string& path)
2015-04-20 15:53:31 +00:00
{
2016-02-01 21:55:43 +00:00
if (auto device = get_virtual_device(path))
{
stat_t info;
if (!device->stat(path, info))
{
return false;
}
if (info.is_directory)
{
2016-05-13 14:01:48 +00:00
g_tls_error = error::exist;
2016-02-01 21:55:43 +00:00
return false;
}
return true;
}
2015-04-20 15:53:31 +00:00
#ifdef _WIN32
2016-01-05 23:52:48 +00:00
const DWORD attrs = GetFileAttributesW(to_wchar(path).get());
if (attrs == INVALID_FILE_ATTRIBUTES)
{
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(GetLastError());
2016-01-05 23:52:48 +00:00
return false;
}
#else
struct ::stat file_info;
if (::stat(path.c_str(), &file_info) != 0)
2015-04-20 15:53:31 +00:00
{
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(errno);
2015-04-20 15:53:31 +00:00
return false;
}
2016-01-05 23:52:48 +00:00
#endif
2015-04-20 15:53:31 +00:00
2016-01-05 23:52:48 +00:00
// TODO: correct file type check
#ifdef _WIN32
if ((attrs & FILE_ATTRIBUTE_DIRECTORY) != 0)
2015-04-20 15:53:31 +00:00
#else
2016-01-05 23:52:48 +00:00
if (S_ISDIR(file_info.st_mode))
#endif
2015-04-20 15:53:31 +00:00
{
2016-05-13 14:01:48 +00:00
g_tls_error = error::exist;
2015-04-20 15:53:31 +00:00
return false;
}
2016-01-05 23:52:48 +00:00
return true;
2015-04-20 15:53:31 +00:00
}
2016-01-05 23:52:48 +00:00
bool fs::is_dir(const std::string& path)
2015-04-15 14:27:37 +00:00
{
2016-02-01 21:55:43 +00:00
if (auto device = get_virtual_device(path))
{
stat_t info;
if (!device->stat(path, info))
{
return false;
}
if (info.is_directory == false)
{
2016-05-13 14:01:48 +00:00
g_tls_error = error::exist;
2016-02-01 21:55:43 +00:00
return false;
}
return true;
}
2015-04-15 14:27:37 +00:00
#ifdef _WIN32
2016-01-05 23:52:48 +00:00
const DWORD attrs = GetFileAttributesW(to_wchar(path).get());
if (attrs == INVALID_FILE_ATTRIBUTES)
2015-04-15 14:27:37 +00:00
{
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(GetLastError());
2015-04-15 14:27:37 +00:00
return false;
}
#else
2016-01-05 23:52:48 +00:00
struct ::stat file_info;
if (::stat(path.c_str(), &file_info) != 0)
2015-04-15 14:27:37 +00:00
{
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(errno);
2015-04-15 14:27:37 +00:00
return false;
}
#endif
2014-08-29 13:06:58 +00:00
#ifdef _WIN32
2016-01-05 23:52:48 +00:00
if ((attrs & FILE_ATTRIBUTE_DIRECTORY) == 0)
2014-08-29 13:06:58 +00:00
#else
2016-01-05 23:52:48 +00:00
if (!S_ISDIR(file_info.st_mode))
2014-08-29 13:06:58 +00:00
#endif
2015-04-18 13:38:42 +00:00
{
2016-05-13 14:01:48 +00:00
g_tls_error = error::exist;
2015-04-18 13:38:42 +00:00
return false;
}
return true;
}
2016-01-05 23:52:48 +00:00
bool fs::create_dir(const std::string& path)
{
2016-02-01 21:55:43 +00:00
if (auto device = get_virtual_device(path))
{
return device->create_dir(path);
}
#ifdef _WIN32
2016-01-05 23:52:48 +00:00
if (!CreateDirectoryW(to_wchar(path).get(), NULL))
{
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(GetLastError());
2016-01-05 23:52:48 +00:00
return false;
}
return true;
#else
if (::mkdir(path.c_str(), S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) != 0)
{
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(errno);
return false;
}
return true;
#endif
2016-01-05 23:52:48 +00:00
}
2015-04-20 15:53:31 +00:00
2016-01-05 23:52:48 +00:00
bool fs::create_path(const std::string& path)
{
const auto& parent = get_parent_dir(path);
if (!parent.empty() && !is_dir(parent) && !create_path(parent))
{
return false;
2016-01-05 23:52:48 +00:00
}
return create_dir(path);
}
2016-01-05 23:52:48 +00:00
bool fs::remove_dir(const std::string& path)
{
2016-02-01 21:55:43 +00:00
if (auto device = get_virtual_device(path))
{
return device->remove_dir(path);
}
#ifdef _WIN32
2016-01-05 23:52:48 +00:00
if (!RemoveDirectoryW(to_wchar(path).get()))
2014-10-24 13:24:09 +00:00
{
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(GetLastError());
return false;
}
2015-04-13 14:46:10 +00:00
return true;
2016-01-05 23:52:48 +00:00
#else
if (::rmdir(path.c_str()) != 0)
{
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(errno);
return false;
}
return true;
2016-01-05 23:52:48 +00:00
#endif
}
2015-04-24 21:38:11 +00:00
bool fs::rename(const std::string& from, const std::string& to)
{
2016-02-01 21:55:43 +00:00
const auto device = get_virtual_device(from);
if (device != get_virtual_device(to))
{
fmt::throw_exception("fs::rename() between different devices not implemented.\nFrom: %s\nTo: %s", from, to);
2016-02-01 21:55:43 +00:00
}
if (device)
{
return device->rename(from, to);
}
#ifdef _WIN32
if (!MoveFileW(to_wchar(from).get(), to_wchar(to).get()))
2015-04-13 14:46:10 +00:00
{
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(GetLastError());
2015-04-13 14:46:10 +00:00
return false;
}
return true;
2016-01-05 23:52:48 +00:00
#else
if (::rename(from.c_str(), to.c_str()) != 0)
{
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(errno);
return false;
}
return true;
2016-01-05 23:52:48 +00:00
#endif
2015-04-13 14:46:10 +00:00
}
2016-01-05 23:52:48 +00:00
bool fs::copy_file(const std::string& from, const std::string& to, bool overwrite)
2015-04-13 14:46:10 +00:00
{
2016-02-01 21:55:43 +00:00
const auto device = get_virtual_device(from);
if (device != get_virtual_device(to) || device) // TODO
{
fmt::throw_exception("fs::copy_file() for virtual devices not implemented.\nFrom: %s\nTo: %s", from, to);
2016-02-01 21:55:43 +00:00
}
2016-01-05 23:52:48 +00:00
#ifdef _WIN32
if (!CopyFileW(to_wchar(from).get(), to_wchar(to).get(), !overwrite))
{
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(GetLastError());
2016-01-05 23:52:48 +00:00
return false;
}
return true;
#else
/* Source: http://stackoverflow.com/questions/2180079/how-can-i-copy-a-file-on-unix-using-c */
2015-04-13 14:46:10 +00:00
2016-01-05 23:52:48 +00:00
const int input = ::open(from.c_str(), O_RDONLY);
if (input == -1)
2015-04-13 14:46:10 +00:00
{
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(errno);
2016-01-05 23:52:48 +00:00
return false;
2015-04-13 14:46:10 +00:00
}
2016-01-05 23:52:48 +00:00
const int output = ::open(to.c_str(), O_WRONLY | O_CREAT | (overwrite ? O_TRUNC : O_EXCL), S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
if (output == -1)
2015-04-13 14:46:10 +00:00
{
2016-01-05 23:52:48 +00:00
const int err = errno;
::close(input);
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(err);
2016-01-05 23:52:48 +00:00
return false;
2015-04-13 14:46:10 +00:00
}
2016-01-05 23:52:48 +00:00
// Here we use kernel-space copying for performance reasons
2015-04-13 14:46:10 +00:00
#if defined(__APPLE__) || defined(__FreeBSD__)
2016-01-05 23:52:48 +00:00
// fcopyfile works on FreeBSD and OS X 10.5+
if (::fcopyfile(input, output, 0, COPYFILE_ALL))
2015-04-13 14:46:10 +00:00
#else
2016-01-05 23:52:48 +00:00
// sendfile will work with non-socket output (i.e. regular file) on Linux 2.6.33+
off_t bytes_copied = 0;
struct ::stat fileinfo = { 0 };
if (::fstat(input, &fileinfo) || ::sendfile(output, input, &bytes_copied, fileinfo.st_size))
2015-04-13 14:46:10 +00:00
#endif
2016-01-05 23:52:48 +00:00
{
const int err = errno;
2015-04-13 14:46:10 +00:00
2016-01-05 23:52:48 +00:00
::close(input);
::close(output);
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(err);
2016-01-05 23:52:48 +00:00
return false;
}
2015-04-13 14:46:10 +00:00
2016-01-05 23:52:48 +00:00
::close(input);
::close(output);
return true;
2015-04-13 14:46:10 +00:00
#endif
2016-01-05 23:52:48 +00:00
}
2015-04-13 14:46:10 +00:00
2016-01-05 23:52:48 +00:00
bool fs::remove_file(const std::string& path)
2015-04-13 14:46:10 +00:00
{
2016-02-01 21:55:43 +00:00
if (auto device = get_virtual_device(path))
{
return device->remove(path);
}
2015-04-13 14:46:10 +00:00
#ifdef _WIN32
2016-01-05 23:52:48 +00:00
if (!DeleteFileW(to_wchar(path).get()))
2015-03-16 16:20:02 +00:00
{
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(GetLastError());
2015-03-16 16:20:02 +00:00
return false;
}
2015-04-13 14:46:10 +00:00
2015-03-16 16:20:02 +00:00
return true;
2016-01-05 23:52:48 +00:00
#else
if (::unlink(path.c_str()) != 0)
{
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(errno);
return false;
}
return true;
2016-01-05 23:52:48 +00:00
#endif
}
2016-01-05 23:52:48 +00:00
bool fs::truncate_file(const std::string& path, u64 length)
{
2016-02-01 21:55:43 +00:00
if (auto device = get_virtual_device(path))
{
return device->trunc(path, length);
}
#ifdef _WIN32
2016-01-05 23:52:48 +00:00
// Open the file
const auto handle = CreateFileW(to_wchar(path).get(), GENERIC_WRITE, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
if (handle == INVALID_HANDLE_VALUE)
2014-10-24 13:24:09 +00:00
{
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(GetLastError());
2014-08-03 23:52:36 +00:00
return false;
}
2015-04-18 13:38:42 +00:00
2016-01-05 23:52:48 +00:00
LARGE_INTEGER distance;
distance.QuadPart = length;
2016-01-05 23:52:48 +00:00
// Seek and truncate
if (!SetFilePointerEx(handle, distance, NULL, FILE_BEGIN) || !SetEndOfFile(handle))
2015-04-18 13:38:42 +00:00
{
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(GetLastError());
2016-01-05 23:52:48 +00:00
CloseHandle(handle);
2015-04-18 13:38:42 +00:00
return false;
}
2016-01-05 23:52:48 +00:00
CloseHandle(handle);
2014-08-03 23:52:36 +00:00
return true;
2016-01-05 23:52:48 +00:00
#else
if (::truncate(path.c_str(), length) != 0)
{
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(errno);
return false;
}
return true;
2016-01-05 23:52:48 +00:00
#endif
}
2017-01-26 12:01:21 +00:00
bool fs::utime(const std::string& path, s64 atime, s64 mtime)
{
if (auto device = get_virtual_device(path))
{
return device->utime(path, atime, mtime);
}
#ifdef _WIN32
// Open the file
const auto handle = CreateFileW(to_wchar(path).get(), FILE_WRITE_ATTRIBUTES, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
if (handle == INVALID_HANDLE_VALUE)
{
g_tls_error = to_error(GetLastError());
return false;
}
FILETIME _atime = from_time(atime);
FILETIME _mtime = from_time(mtime);
if (!SetFileTime(handle, nullptr, &_atime, &_mtime))
{
g_tls_error = to_error(GetLastError());
CloseHandle(handle);
return false;
}
CloseHandle(handle);
return true;
#else
::utimbuf buf;
buf.actime = atime;
buf.modtime = mtime;
if (::utime(path.c_str(), &buf) != 0)
{
g_tls_error = to_error(errno);
return false;
}
return true;
#endif
}
2016-02-01 21:55:43 +00:00
void fs::file::xnull() const
{
fmt::throw_exception<std::logic_error>("fs::file is null");
2015-04-19 16:02:35 +00:00
}
2016-02-01 21:55:43 +00:00
void fs::file::xfail() const
{
fmt::throw_exception("Unexpected fs::error %s", g_tls_error);
2016-02-01 21:55:43 +00:00
}
2017-01-28 10:11:06 +00:00
fs::file::file(const std::string& path, bs_t<open_mode> mode)
2016-02-01 21:55:43 +00:00
{
if (auto device = get_virtual_device(path))
{
2016-02-01 21:55:43 +00:00
if (auto&& _file = device->open(path, mode))
{
m_file = std::move(_file);
2017-01-28 10:11:06 +00:00
return;
2016-02-01 21:55:43 +00:00
}
2017-01-28 10:11:06 +00:00
return;
2015-04-19 16:02:35 +00:00
}
2016-02-01 21:55:43 +00:00
#ifdef _WIN32
DWORD access = 0;
2016-08-07 19:01:27 +00:00
if (test(mode & fs::read)) access |= GENERIC_READ;
if (test(mode & fs::write)) access |= test(mode & fs::append) ? FILE_APPEND_DATA : GENERIC_WRITE;
2016-02-01 21:55:43 +00:00
2015-04-19 13:19:24 +00:00
DWORD disp = 0;
2016-08-07 19:01:27 +00:00
if (test(mode & fs::create))
2015-04-19 13:19:24 +00:00
{
2016-02-01 21:55:43 +00:00
disp =
2016-08-07 19:01:27 +00:00
test(mode & fs::excl) ? CREATE_NEW :
test(mode & fs::trunc) ? CREATE_ALWAYS : OPEN_ALWAYS;
2016-02-01 21:55:43 +00:00
}
else
{
2016-08-07 19:01:27 +00:00
if (test(mode & fs::excl))
2016-02-01 21:55:43 +00:00
{
2016-05-13 14:01:48 +00:00
g_tls_error = error::inval;
2017-01-28 10:11:06 +00:00
return;
2016-02-01 21:55:43 +00:00
}
2016-08-07 19:01:27 +00:00
disp = test(mode & fs::trunc) ? TRUNCATE_EXISTING : OPEN_EXISTING;
2015-04-19 16:02:35 +00:00
}
2016-02-01 21:55:43 +00:00
const HANDLE handle = CreateFileW(to_wchar(path).get(), access, FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, NULL, disp, FILE_ATTRIBUTE_NORMAL, NULL);
2016-01-05 23:52:48 +00:00
2016-02-01 21:55:43 +00:00
if (handle == INVALID_HANDLE_VALUE)
2015-04-19 13:19:24 +00:00
{
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(GetLastError());
2017-01-28 10:11:06 +00:00
return;
2015-04-19 13:19:24 +00:00
}
2016-02-01 21:55:43 +00:00
class windows_file final : public file_base
2015-04-19 16:02:35 +00:00
{
2016-02-01 21:55:43 +00:00
const HANDLE m_handle;
2015-04-19 16:02:35 +00:00
2016-02-01 21:55:43 +00:00
public:
windows_file(HANDLE handle)
: m_handle(handle)
2016-01-05 23:52:48 +00:00
{
}
2016-02-01 21:55:43 +00:00
~windows_file() override
2016-01-05 23:52:48 +00:00
{
2016-02-01 21:55:43 +00:00
CloseHandle(m_handle);
2016-01-05 23:52:48 +00:00
}
2016-02-01 21:55:43 +00:00
stat_t stat() override
{
FILE_BASIC_INFO basic_info;
2016-08-14 00:22:19 +00:00
verify("file::stat" HERE), GetFileInformationByHandleEx(m_handle, FileBasicInfo, &basic_info, sizeof(FILE_BASIC_INFO));
2016-02-01 21:55:43 +00:00
stat_t info;
info.is_directory = (basic_info.FileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0;
info.is_writable = (basic_info.FileAttributes & FILE_ATTRIBUTE_READONLY) == 0;
info.size = this->size();
info.atime = to_time(basic_info.LastAccessTime);
info.mtime = to_time(basic_info.ChangeTime);
info.ctime = to_time(basic_info.CreationTime);
return info;
}
2016-01-05 23:52:48 +00:00
void sync() override
{
verify("file::sync" HERE), FlushFileBuffers(m_handle);
}
2016-02-01 21:55:43 +00:00
bool trunc(u64 length) override
2016-01-05 23:52:48 +00:00
{
2016-02-01 21:55:43 +00:00
LARGE_INTEGER old, pos;
pos.QuadPart = 0;
if (!SetFilePointerEx(m_handle, pos, &old, FILE_CURRENT)) // get old position
{
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(GetLastError());
2016-02-01 21:55:43 +00:00
return false;
}
pos.QuadPart = length;
if (!SetFilePointerEx(m_handle, pos, NULL, FILE_BEGIN)) // set new position
{
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(GetLastError());
2016-02-01 21:55:43 +00:00
return false;
}
2016-08-14 00:22:19 +00:00
verify("file::trunc" HERE), SetEndOfFile(m_handle), SetFilePointerEx(m_handle, old, NULL, FILE_BEGIN);
return true;
2016-01-05 23:52:48 +00:00
}
2015-04-19 17:57:04 +00:00
2016-02-01 21:55:43 +00:00
u64 read(void* buffer, u64 count) override
2016-01-05 23:52:48 +00:00
{
2016-02-01 21:55:43 +00:00
// TODO (call ReadFile multiple times if count is too big)
2016-08-14 17:22:07 +00:00
const int size = narrow<int>(count, "file::read" HERE);
2016-02-01 21:55:43 +00:00
DWORD nread;
2016-08-14 00:22:19 +00:00
verify("file::read" HERE), ReadFile(m_handle, buffer, size, &nread, NULL);
2016-02-01 21:55:43 +00:00
return nread;
2016-01-05 23:52:48 +00:00
}
2015-04-19 13:19:24 +00:00
2016-02-01 21:55:43 +00:00
u64 write(const void* buffer, u64 count) override
{
// TODO (call WriteFile multiple times if count is too big)
2016-08-14 17:22:07 +00:00
const int size = narrow<int>(count, "file::write" HERE);
2016-02-01 21:55:43 +00:00
DWORD nwritten;
2016-08-14 00:22:19 +00:00
verify("file::write" HERE), WriteFile(m_handle, buffer, size, &nwritten, NULL);
2016-02-01 21:55:43 +00:00
return nwritten;
}
2016-02-01 21:55:43 +00:00
u64 seek(s64 offset, seek_mode whence) override
2016-01-05 23:52:48 +00:00
{
2016-02-01 21:55:43 +00:00
LARGE_INTEGER pos;
pos.QuadPart = offset;
const DWORD mode =
whence == seek_set ? FILE_BEGIN :
whence == seek_cur ? FILE_CURRENT :
whence == seek_end ? FILE_END :
(fmt::throw_exception("Invalid whence (0x%x)" HERE, whence), 0);
2016-02-01 21:55:43 +00:00
2017-03-23 18:32:59 +00:00
if (!SetFilePointerEx(m_handle, pos, &pos, mode))
{
g_tls_error = to_error(GetLastError());
return -1;
}
2016-02-01 21:55:43 +00:00
return pos.QuadPart;
2016-01-05 23:52:48 +00:00
}
2016-02-01 21:55:43 +00:00
u64 size() override
{
LARGE_INTEGER size;
2016-08-14 00:22:19 +00:00
verify("file::size" HERE), GetFileSizeEx(m_handle, &size);
2016-02-01 21:55:43 +00:00
return size.QuadPart;
}
};
2015-04-19 17:57:04 +00:00
2016-02-01 21:55:43 +00:00
m_file = std::make_unique<windows_file>(handle);
2015-04-19 17:57:04 +00:00
#else
2016-02-01 21:55:43 +00:00
int flags = 0;
2015-04-25 19:15:53 +00:00
2016-08-07 19:01:27 +00:00
if (test(mode & fs::read) && test(mode & fs::write)) flags |= O_RDWR;
else if (test(mode & fs::read)) flags |= O_RDONLY;
else if (test(mode & fs::write)) flags |= O_WRONLY;
2015-04-19 17:57:04 +00:00
2016-08-07 19:01:27 +00:00
if (test(mode & fs::append)) flags |= O_APPEND;
if (test(mode & fs::create)) flags |= O_CREAT;
if (test(mode & fs::trunc)) flags |= O_TRUNC;
if (test(mode & fs::excl)) flags |= O_EXCL;
2015-04-24 14:06:30 +00:00
2016-02-01 21:55:43 +00:00
const int fd = ::open(path.c_str(), flags, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
2015-04-24 14:06:30 +00:00
2016-02-01 21:55:43 +00:00
if (fd == -1)
2016-01-05 23:52:48 +00:00
{
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(errno);
2017-01-28 10:11:06 +00:00
return;
2016-01-05 23:52:48 +00:00
}
2016-02-01 21:55:43 +00:00
class unix_file final : public file_base
2016-01-05 23:52:48 +00:00
{
2016-02-01 21:55:43 +00:00
const int m_fd;
2016-02-01 21:55:43 +00:00
public:
unix_file(int fd)
: m_fd(fd)
{
}
2016-02-01 21:55:43 +00:00
~unix_file() override
2016-01-05 23:52:48 +00:00
{
2016-02-01 21:55:43 +00:00
::close(m_fd);
2016-01-05 23:52:48 +00:00
}
2016-02-01 21:55:43 +00:00
stat_t stat() override
{
struct ::stat file_info;
2016-08-14 00:22:19 +00:00
verify("file::stat" HERE), ::fstat(m_fd, &file_info) == 0;
2016-02-01 21:55:43 +00:00
stat_t info;
info.is_directory = S_ISDIR(file_info.st_mode);
info.is_writable = file_info.st_mode & 0200; // HACK: approximation
info.size = file_info.st_size;
info.atime = file_info.st_atime;
info.mtime = file_info.st_mtime;
info.ctime = file_info.st_ctime;
return info;
}
2015-04-19 13:19:24 +00:00
void sync() override
{
verify("file::sync" HERE), ::fsync(m_fd) == 0;
}
2016-02-01 21:55:43 +00:00
bool trunc(u64 length) override
{
if (::ftruncate(m_fd, length) != 0)
{
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(errno);
2016-02-01 21:55:43 +00:00
return false;
}
2016-02-01 21:55:43 +00:00
return true;
}
u64 read(void* buffer, u64 count) override
2016-01-05 23:52:48 +00:00
{
2016-02-01 21:55:43 +00:00
const auto result = ::read(m_fd, buffer, count);
2016-08-14 00:22:19 +00:00
verify("file::read" HERE), result != -1;
2016-02-01 21:55:43 +00:00
return result;
2016-01-05 23:52:48 +00:00
}
2016-02-01 21:55:43 +00:00
u64 write(const void* buffer, u64 count) override
{
const auto result = ::write(m_fd, buffer, count);
2016-08-14 00:22:19 +00:00
verify("file::write" HERE), result != -1;
2016-02-01 21:55:43 +00:00
return result;
}
2015-04-19 13:19:24 +00:00
2016-02-01 21:55:43 +00:00
u64 seek(s64 offset, seek_mode whence) override
{
const int mode =
whence == seek_set ? SEEK_SET :
whence == seek_cur ? SEEK_CUR :
whence == seek_end ? SEEK_END :
(fmt::throw_exception("Invalid whence (0x%x)" HERE, whence), 0);
2016-02-01 21:55:43 +00:00
const auto result = ::lseek(m_fd, offset, mode);
2017-03-23 18:32:59 +00:00
if (result == -1)
{
g_tls_error = to_error(errno);
return -1;
}
2016-02-01 21:55:43 +00:00
return result;
}
u64 size() override
{
struct ::stat file_info;
2016-08-14 00:22:19 +00:00
verify("file::size" HERE), ::fstat(m_fd, &file_info) == 0;
2016-02-01 21:55:43 +00:00
return file_info.st_size;
}
};
m_file = std::make_unique<unix_file>(fd);
2015-04-19 13:19:24 +00:00
#endif
}
2016-02-01 21:55:43 +00:00
fs::file::file(const void* ptr, std::size_t size)
{
class memory_stream : public file_base
2016-01-05 23:52:48 +00:00
{
2016-05-13 14:01:48 +00:00
u64 m_pos{};
const char* const m_ptr;
const u64 m_size;
2016-02-01 21:55:43 +00:00
public:
memory_stream(const void* ptr, u64 size)
: m_ptr(static_cast<const char*>(ptr))
, m_size(size)
2016-01-05 23:52:48 +00:00
{
}
2016-02-01 21:55:43 +00:00
bool trunc(u64 length) override
{
return false;
2016-02-01 21:55:43 +00:00
}
2016-02-01 21:55:43 +00:00
u64 read(void* buffer, u64 count) override
{
if (m_pos < m_size)
{
// Get readable size
if (const u64 result = std::min<u64>(count, m_size - m_pos))
{
std::memcpy(buffer, m_ptr + m_pos, result);
m_pos += result;
return result;
}
}
return 0;
2016-02-01 21:55:43 +00:00
}
2016-02-01 21:55:43 +00:00
u64 write(const void* buffer, u64 count) override
2016-01-05 23:52:48 +00:00
{
return 0;
2016-01-05 23:52:48 +00:00
}
2016-02-01 21:55:43 +00:00
u64 seek(s64 offset, fs::seek_mode whence) override
{
2017-03-23 18:32:59 +00:00
const s64 new_pos =
whence == fs::seek_set ? offset :
whence == fs::seek_cur ? offset + m_pos :
whence == fs::seek_end ? offset + size() :
(fmt::raw_error("fs::file::memory_stream::seek(): invalid whence"), 0);
2017-03-23 18:32:59 +00:00
if (new_pos < 0)
{
fs::g_tls_error = fs::error::inval;
return -1;
}
m_pos = new_pos;
return m_pos;
2016-02-01 21:55:43 +00:00
}
2015-04-19 13:19:24 +00:00
2016-02-01 21:55:43 +00:00
u64 size() override
{
return m_size;
}
};
2015-04-19 13:19:24 +00:00
2016-02-01 21:55:43 +00:00
m_file = std::make_unique<memory_stream>(ptr, size);
}
2016-02-01 21:55:43 +00:00
void fs::dir::xnull() const
2014-08-05 22:34:26 +00:00
{
fmt::throw_exception<std::logic_error>("fs::dir is null");
2014-08-05 22:34:26 +00:00
}
2016-02-01 21:55:43 +00:00
bool fs::dir::open(const std::string& path)
{
2016-02-01 21:55:43 +00:00
if (auto device = get_virtual_device(path))
2015-04-25 19:15:53 +00:00
{
2016-02-01 21:55:43 +00:00
if (auto&& _dir = device->open_dir(path))
{
m_dir = std::move(_dir);
return true;
}
2015-04-25 19:15:53 +00:00
return false;
}
#ifdef _WIN32
WIN32_FIND_DATAW found;
const auto handle = FindFirstFileExW(to_wchar(path + "/*").get(), FindExInfoBasic, &found, FindExSearchNameMatch, NULL, FIND_FIRST_EX_CASE_SENSITIVE | FIND_FIRST_EX_LARGE_FETCH);
2015-04-25 19:15:53 +00:00
2016-02-01 21:55:43 +00:00
if (handle == INVALID_HANDLE_VALUE)
2015-04-25 20:55:15 +00:00
{
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(GetLastError());
2016-02-01 21:55:43 +00:00
return false;
2016-01-05 23:52:48 +00:00
}
2016-02-01 21:55:43 +00:00
class windows_dir final : public dir_base
2016-01-05 23:52:48 +00:00
{
2016-02-01 21:55:43 +00:00
std::vector<dir_entry> m_entries;
std::size_t m_pos = 0;
void add_entry(const WIN32_FIND_DATAW& found)
2016-01-05 23:52:48 +00:00
{
2016-02-01 21:55:43 +00:00
dir_entry info;
to_utf8(info.name, found.cFileName);
info.is_directory = (found.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0;
info.is_writable = (found.dwFileAttributes & FILE_ATTRIBUTE_READONLY) == 0;
info.size = ((u64)found.nFileSizeHigh << 32) | (u64)found.nFileSizeLow;
info.atime = to_time(found.ftLastAccessTime);
info.mtime = to_time(found.ftLastWriteTime);
info.ctime = to_time(found.ftCreationTime);
m_entries.emplace_back(std::move(info));
}
public:
windows_dir(HANDLE handle, WIN32_FIND_DATAW& found)
{
2016-02-01 21:55:43 +00:00
add_entry(found);
2016-01-05 23:52:48 +00:00
while (FindNextFileW(handle, &found))
{
add_entry(found);
}
verify("dir::read" HERE), ERROR_NO_MORE_FILES == GetLastError();
FindClose(handle);
2016-01-05 23:52:48 +00:00
}
2016-02-01 21:55:43 +00:00
bool read(dir_entry& out) override
{
if (m_pos >= m_entries.size())
2016-02-01 21:55:43 +00:00
{
return false;
2016-02-01 21:55:43 +00:00
}
out = m_entries[m_pos++];
return true;
}
2015-04-25 19:15:53 +00:00
2016-02-01 21:55:43 +00:00
void rewind() override
{
m_pos = 0;
}
};
2015-04-25 19:15:53 +00:00
2016-02-01 21:55:43 +00:00
m_dir = std::make_unique<windows_dir>(handle, found);
2015-04-25 19:15:53 +00:00
#else
2016-02-01 21:55:43 +00:00
::DIR* const ptr = ::opendir(path.c_str());
2015-04-25 19:15:53 +00:00
2016-02-01 21:55:43 +00:00
if (!ptr)
2015-04-25 19:15:53 +00:00
{
2016-05-13 14:01:48 +00:00
g_tls_error = to_error(errno);
2015-04-25 19:15:53 +00:00
return false;
}
2016-02-01 21:55:43 +00:00
class unix_dir final : public dir_base
{
::DIR* m_dd;
2015-04-25 19:15:53 +00:00
2016-02-01 21:55:43 +00:00
public:
unix_dir(::DIR* dd)
: m_dd(dd)
{
}
2015-04-25 19:15:53 +00:00
2016-02-01 21:55:43 +00:00
~unix_dir() override
{
::closedir(m_dd);
}
2016-02-01 21:55:43 +00:00
bool read(dir_entry& info) override
{
const auto found = ::readdir(m_dd);
if (!found)
{
return false;
}
struct ::stat file_info;
2016-08-14 00:22:19 +00:00
verify("dir::read" HERE), ::fstatat(::dirfd(m_dd), found->d_name, &file_info, 0) == 0;
2016-02-01 21:55:43 +00:00
info.name = found->d_name;
info.is_directory = S_ISDIR(file_info.st_mode);
info.is_writable = file_info.st_mode & 0200; // HACK: approximation
info.size = file_info.st_size;
info.atime = file_info.st_atime;
info.mtime = file_info.st_mtime;
info.ctime = file_info.st_ctime;
return true;
}
void rewind() override
{
::rewinddir(m_dd);
}
};
m_dir = std::make_unique<unix_dir>(ptr);
#endif
2016-02-01 21:55:43 +00:00
return true;
}
2016-01-05 23:52:48 +00:00
const std::string& fs::get_config_dir()
{
2016-02-01 21:55:43 +00:00
// Use magic static
static const std::string s_dir = []
{
std::string dir;
2017-02-22 13:08:53 +00:00
#ifdef _WIN32
wchar_t buf[2048];
if (GetModuleFileName(NULL, buf, ::size32(buf)) - 1 >= ::size32(buf) - 1)
{
MessageBoxA(0, fmt::format("GetModuleFileName() failed: error %u.", GetLastError()).c_str(), "fs::get_config_dir()", MB_ICONERROR);
return dir; // empty
}
to_utf8(dir, buf); // Convert to UTF-8
std::replace(dir.begin(), dir.end(), '\\', '/');
dir.resize(dir.rfind('/') + 1);
#else
if (const char* home = ::getenv("XDG_CONFIG_HOME"))
dir = home;
else if (const char* home = ::getenv("HOME"))
dir = home + "/.config"s;
else // Just in case
dir = "./config";
dir += "/rpcs3/";
if (!is_dir(dir) && !create_path(dir))
{
std::printf("Failed to create configuration directory '%s' (%d).\n", dir.c_str(), errno);
}
#endif
return dir;
}();
return s_dir;
}
2016-02-01 21:55:43 +00:00
2016-07-11 19:00:12 +00:00
std::string fs::get_data_dir(const std::string& prefix, const std::string& location, const std::string& suffix)
{
static const std::string s_dir = []
{
2017-02-23 15:08:52 +00:00
const std::string& dir = get_config_dir() + "data/";
2016-07-11 19:00:12 +00:00
if (!is_dir(dir) && !create_path(dir))
{
return get_config_dir();
}
return dir;
}();
std::vector<u8> buf;
buf.reserve(location.size() + 1);
// Normalize location
for (char c : location)
{
#ifdef _WIN32
if (c == '/' || c == '\\')
#else
if (c == '/')
#endif
{
if (buf.empty() || buf.back() != '/')
{
buf.push_back('/');
}
continue;
}
buf.push_back(c);
}
// Calculate hash
u8 hash[20];
sha1(buf.data(), buf.size(), hash);
// Concatenate
std::string&& result = fmt::format("%s%s/%016llx%08x-%s/", s_dir, prefix, reinterpret_cast<be_t<u64>&>(hash[0]), reinterpret_cast<be_t<u32>&>(hash[8]), suffix);
if (!is_dir(result))
{
// Create dir if necessary
if (create_path(result))
{
// Acknowledge original location
file(result + ".location", rewrite).write(buf);
}
}
return result;
}
std::string fs::get_data_dir(const std::string& prefix, const std::string& path)
{
#ifdef _WIN32
const auto& delim = "/\\";
#else
const auto& delim = "/";
#endif
// Extract file name and location
const std::string& location = fs::get_parent_dir(path);
const std::size_t name_pos = path.find_first_not_of(delim, location.size());
return fs::get_data_dir(prefix, location, name_pos == -1 ? std::string{} : path.substr(name_pos));
}
2016-06-27 18:53:56 +00:00
void fs::remove_all(const std::string& path, bool remove_root)
2016-02-01 21:55:43 +00:00
{
for (const auto& entry : dir(path))
{
if (entry.name == "." || entry.name == "..")
{
continue;
}
if (entry.is_directory == false)
{
remove_file(path + '/' + entry.name);
}
if (entry.is_directory == true)
{
remove_all(path + '/' + entry.name);
}
}
2016-06-27 18:53:56 +00:00
if (remove_root)
{
remove_dir(path);
}
2016-02-01 21:55:43 +00:00
}
u64 fs::get_dir_size(const std::string& path)
{
u64 result = 0;
for (const auto entry : dir(path))
{
if (entry.name == "." || entry.name == "..")
{
continue;
}
if (entry.is_directory == false)
{
result += entry.size;
}
if (entry.is_directory == true)
{
result += get_dir_size(path + '/' + entry.name);
}
}
return result;
}
template<>
void fmt_class_string<fs::seek_mode>::format(std::string& out, u64 arg)
{
format_enum(out, arg, [](auto arg)
{
switch (arg)
{
STR_CASE(fs::seek_mode::seek_set);
STR_CASE(fs::seek_mode::seek_cur);
STR_CASE(fs::seek_mode::seek_end);
}
return unknown;
});
}
template<>
void fmt_class_string<fs::error>::format(std::string& out, u64 arg)
{
format_enum(out, arg, [](auto arg)
{
switch (arg)
{
case fs::error::ok: return "OK";
case fs::error::inval: return "Invalid arguments";
case fs::error::noent: return "Not found";
case fs::error::exist: return "Already exists";
2017-03-23 18:32:59 +00:00
case fs::error::acces: return "Access violation";
}
return unknown;
});
}