2014-12-17 06:38:14 +01:00
|
|
|
|
// Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project
|
|
|
|
|
// Licensed under GPLv2 or any later version
|
2013-09-05 02:17:46 +02:00
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
2018-07-22 05:04:24 +02:00
|
|
|
|
#include <array>
|
2020-03-25 20:33:37 +01:00
|
|
|
|
#include <limits>
|
2018-07-22 05:04:24 +02:00
|
|
|
|
#include <memory>
|
2019-09-08 00:11:35 +02:00
|
|
|
|
#include <sstream>
|
2018-07-21 21:52:42 +02:00
|
|
|
|
#include <unordered_map>
|
2023-03-23 14:30:52 +01:00
|
|
|
|
#include <boost/iostreams/device/file_descriptor.hpp>
|
|
|
|
|
#include <boost/iostreams/stream.hpp>
|
2015-05-06 09:06:12 +02:00
|
|
|
|
#include "common/assert.h"
|
|
|
|
|
#include "common/common_funcs.h"
|
|
|
|
|
#include "common/common_paths.h"
|
2016-09-21 08:52:38 +02:00
|
|
|
|
#include "common/file_util.h"
|
2015-05-06 09:06:12 +02:00
|
|
|
|
#include "common/logging/log.h"
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
2016-09-18 02:38:01 +02:00
|
|
|
|
#include <windows.h>
|
2016-09-21 09:13:46 +02:00
|
|
|
|
// windows.h needs to be included before other windows headers
|
2018-10-13 17:57:21 +02:00
|
|
|
|
#include <direct.h> // getcwd
|
2016-09-18 02:38:01 +02:00
|
|
|
|
#include <io.h>
|
|
|
|
|
#include <shellapi.h>
|
|
|
|
|
#include <shlobj.h> // for SHGetFolderPath
|
|
|
|
|
#include <tchar.h>
|
|
|
|
|
#include "common/string_util.h"
|
|
|
|
|
|
2018-10-13 17:57:21 +02:00
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
|
// 64 bit offsets for MSVC
|
2016-09-18 02:38:01 +02:00
|
|
|
|
#define fseeko _fseeki64
|
|
|
|
|
#define ftello _ftelli64
|
2018-10-13 17:57:21 +02:00
|
|
|
|
#define fileno _fileno
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
// 64 bit offsets for MSVC and MinGW. MinGW also needs this for using _wstat64
|
2022-11-04 23:32:57 +01:00
|
|
|
|
#ifndef __MINGW64__
|
2016-07-17 12:30:00 +02:00
|
|
|
|
#define stat _stat64
|
|
|
|
|
#define fstat _fstat64
|
2022-11-04 23:32:57 +01:00
|
|
|
|
#endif
|
2018-10-13 17:57:21 +02:00
|
|
|
|
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#else
|
2016-09-18 02:38:01 +02:00
|
|
|
|
#ifdef __APPLE__
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
|
#endif
|
|
|
|
|
#include <cctype>
|
|
|
|
|
#include <cerrno>
|
|
|
|
|
#include <cstdlib>
|
|
|
|
|
#include <cstring>
|
|
|
|
|
#include <dirent.h>
|
|
|
|
|
#include <pwd.h>
|
|
|
|
|
#include <unistd.h>
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if defined(__APPLE__)
|
2016-12-13 18:58:50 +01:00
|
|
|
|
// CFURL contains __attribute__ directives that gcc does not know how to parse, so we need to just
|
|
|
|
|
// ignore them if we're not using clang. The macro is only used to prevent linking against
|
|
|
|
|
// functions that don't exist on older versions of macOS, and the worst case scenario is a linker
|
|
|
|
|
// error, so this is perfectly safe, just inconvenient.
|
|
|
|
|
#ifndef __clang__
|
|
|
|
|
#define availability(...)
|
|
|
|
|
#endif
|
2016-09-18 02:38:01 +02:00
|
|
|
|
#include <CoreFoundation/CFBundle.h>
|
|
|
|
|
#include <CoreFoundation/CFString.h>
|
|
|
|
|
#include <CoreFoundation/CFURL.h>
|
2016-12-13 18:58:50 +01:00
|
|
|
|
#ifdef availability
|
|
|
|
|
#undef availability
|
|
|
|
|
#endif
|
|
|
|
|
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
2023-03-23 14:30:52 +01:00
|
|
|
|
#ifdef ANDROID
|
|
|
|
|
#include "common/android_storage.h"
|
|
|
|
|
#include "common/string_util.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#include <algorithm>
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
|
|
#ifndef S_ISDIR
|
2016-09-18 02:38:01 +02:00
|
|
|
|
#define S_ISDIR(m) (((m)&S_IFMT) == S_IFDIR)
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
// This namespace has various generic functions related to files and paths.
|
|
|
|
|
// The code still needs a ton of cleanup.
|
|
|
|
|
// REMEMBER: strdup considered harmful!
|
2016-09-18 02:38:01 +02:00
|
|
|
|
namespace FileUtil {
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
|
|
|
|
// Remove any ending forward slashes from directory paths
|
|
|
|
|
// Modifies argument.
|
2016-09-18 02:38:01 +02:00
|
|
|
|
static void StripTailDirSlashes(std::string& fname) {
|
Port yuzu-emu/yuzu#2511: "common/file_util: Minor cleanup" (#4782)
* common/file_util: Make IOFile's WriteString take a std::string_view
We don't need to force the usage of a std::string here, and can instead
use a std::string_view, which allows writing out other forms of strings
(e.g. C-style strings) without any unnecessary heap allocations.
* common/file_util: Remove unnecessary c_str() calls
The file stream open functions have supported std::string overloads
since C++11, so we don't need to use c_str() here. Same behavior, less
code.
* common/file_util: Make ReadFileToString and WriteStringToFile consistent
Makes the parameter ordering consistent, and also makes the filename
parameter a std::string. A std::string would be constructed anyways with
the previous code, as IOFile's only constructor with a filepath is one
taking a std::string.
We can also make WriteStringToFile's string parameter utilize a
std::string_view for the string, making use of our previous changes to
IOFile.
* common/file_util: Remove duplicated documentation comments
These are already present within the header, so they don't need to be
repeated in the cpp file.
* common/file_util: Make GetCurrentDir() return a std::optional
nullptr was being returned in the error case, which, at a glance may
seem perfectly OK... until you realize that std::string has the
invariant that it may not be constructed from a null pointer. This
means that if this error case was ever hit, then the application would
most likely crash from a thrown exception in std::string's constructor.
Instead, we can change the function to return an optional value,
indicating if a failure occurred.
* common/file_util: Remove unnecessary return at end of void StripTailDirSlashes()
While we're at it, also invert the conditional into a guard clause.
2019-06-08 00:23:57 +02:00
|
|
|
|
if (fname.length() <= 1) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::size_t i = fname.length();
|
|
|
|
|
while (i > 0 && fname[i - 1] == DIR_SEP_CHR) {
|
|
|
|
|
--i;
|
2014-04-02 00:20:08 +02:00
|
|
|
|
}
|
Port yuzu-emu/yuzu#2511: "common/file_util: Minor cleanup" (#4782)
* common/file_util: Make IOFile's WriteString take a std::string_view
We don't need to force the usage of a std::string here, and can instead
use a std::string_view, which allows writing out other forms of strings
(e.g. C-style strings) without any unnecessary heap allocations.
* common/file_util: Remove unnecessary c_str() calls
The file stream open functions have supported std::string overloads
since C++11, so we don't need to use c_str() here. Same behavior, less
code.
* common/file_util: Make ReadFileToString and WriteStringToFile consistent
Makes the parameter ordering consistent, and also makes the filename
parameter a std::string. A std::string would be constructed anyways with
the previous code, as IOFile's only constructor with a filepath is one
taking a std::string.
We can also make WriteStringToFile's string parameter utilize a
std::string_view for the string, making use of our previous changes to
IOFile.
* common/file_util: Remove duplicated documentation comments
These are already present within the header, so they don't need to be
repeated in the cpp file.
* common/file_util: Make GetCurrentDir() return a std::optional
nullptr was being returned in the error case, which, at a glance may
seem perfectly OK... until you realize that std::string has the
invariant that it may not be constructed from a null pointer. This
means that if this error case was ever hit, then the application would
most likely crash from a thrown exception in std::string's constructor.
Instead, we can change the function to return an optional value,
indicating if a failure occurred.
* common/file_util: Remove unnecessary return at end of void StripTailDirSlashes()
While we're at it, also invert the conditional into a guard clause.
2019-06-08 00:23:57 +02:00
|
|
|
|
fname.resize(i);
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
|
bool Exists(const std::string& filename) {
|
2016-07-17 12:30:00 +02:00
|
|
|
|
struct stat file_info;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
|
std::string copy(filename);
|
|
|
|
|
StripTailDirSlashes(copy);
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
2016-04-15 10:50:50 +02:00
|
|
|
|
// Windows needs a slash to identify a driver root
|
|
|
|
|
if (copy.size() != 0 && copy.back() == ':')
|
|
|
|
|
copy += DIR_SEP_CHR;
|
|
|
|
|
|
2016-03-31 12:58:37 +02:00
|
|
|
|
int result = _wstat64(Common::UTF8ToUTF16W(copy).c_str(), &file_info);
|
2023-03-23 14:30:52 +01:00
|
|
|
|
#elif ANDROID
|
|
|
|
|
int result = AndroidStorage::FileExists(filename) ? 0 : -1;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#else
|
2016-07-17 12:30:00 +02:00
|
|
|
|
int result = stat(copy.c_str(), &file_info);
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return (result == 0);
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
|
bool IsDirectory(const std::string& filename) {
|
2023-03-23 14:30:52 +01:00
|
|
|
|
#ifdef ANDROID
|
|
|
|
|
return AndroidStorage::IsDirectory(filename);
|
|
|
|
|
#endif
|
|
|
|
|
|
2016-07-17 12:30:00 +02:00
|
|
|
|
struct stat file_info;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
|
std::string copy(filename);
|
|
|
|
|
StripTailDirSlashes(copy);
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
2016-04-15 10:50:50 +02:00
|
|
|
|
// Windows needs a slash to identify a driver root
|
|
|
|
|
if (copy.size() != 0 && copy.back() == ':')
|
|
|
|
|
copy += DIR_SEP_CHR;
|
|
|
|
|
|
2016-03-31 12:58:37 +02:00
|
|
|
|
int result = _wstat64(Common::UTF8ToUTF16W(copy).c_str(), &file_info);
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#else
|
2016-07-17 12:30:00 +02:00
|
|
|
|
int result = stat(copy.c_str(), &file_info);
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
|
if (result < 0) {
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_DEBUG(Common_Filesystem, "stat failed on {}: {}", filename, GetLastErrorMsg());
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return S_ISDIR(file_info.st_mode);
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
|
bool Delete(const std::string& filename) {
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_TRACE(Common_Filesystem, "file {}", filename);
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2014-11-19 09:49:13 +01:00
|
|
|
|
// Return true because we care about the file no
|
2014-04-02 00:20:08 +02:00
|
|
|
|
// being there, not the actual delete.
|
2016-09-18 02:38:01 +02:00
|
|
|
|
if (!Exists(filename)) {
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_DEBUG(Common_Filesystem, "{} does not exist", filename);
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
|
// We can't delete a directory
|
2016-09-18 02:38:01 +02:00
|
|
|
|
if (IsDirectory(filename)) {
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_ERROR(Common_Filesystem, "Failed: {} is a directory", filename);
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
2016-09-18 02:38:01 +02:00
|
|
|
|
if (!DeleteFileW(Common::UTF8ToUTF16W(filename).c_str())) {
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_ERROR(Common_Filesystem, "DeleteFile failed on {}: {}", filename, GetLastErrorMsg());
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2023-03-23 14:30:52 +01:00
|
|
|
|
#elif ANDROID
|
|
|
|
|
if (!AndroidStorage::DeleteDocument(filename)) {
|
|
|
|
|
LOG_ERROR(Common_Filesystem, "unlink failed on {}", filename);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#else
|
2014-04-02 00:20:08 +02:00
|
|
|
|
if (unlink(filename.c_str()) == -1) {
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_ERROR(Common_Filesystem, "unlink failed on {}: {}", filename, GetLastErrorMsg());
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return true;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
|
bool CreateDir(const std::string& path) {
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_TRACE(Common_Filesystem, "directory {}", path);
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#ifdef _WIN32
|
2016-03-31 12:58:37 +02:00
|
|
|
|
if (::CreateDirectoryW(Common::UTF8ToUTF16W(path).c_str(), nullptr))
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return true;
|
|
|
|
|
DWORD error = GetLastError();
|
2016-09-18 02:38:01 +02:00
|
|
|
|
if (error == ERROR_ALREADY_EXISTS) {
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_DEBUG(Common_Filesystem, "CreateDirectory failed on {}: already exists", path);
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_ERROR(Common_Filesystem, "CreateDirectory failed on {}: {}", path, error);
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return false;
|
2023-03-23 14:30:52 +01:00
|
|
|
|
#elif ANDROID
|
|
|
|
|
std::string directory = path;
|
|
|
|
|
std::string filename = path;
|
|
|
|
|
if (Common::EndsWith(path, "/")) {
|
|
|
|
|
directory = GetParentPath(path);
|
|
|
|
|
filename = GetParentPath(path);
|
|
|
|
|
}
|
|
|
|
|
directory = GetParentPath(directory);
|
|
|
|
|
filename = GetFilename(filename);
|
|
|
|
|
// If directory path is empty, set it to root.
|
|
|
|
|
if (directory.empty()) {
|
|
|
|
|
directory = "/";
|
|
|
|
|
}
|
|
|
|
|
if (!AndroidStorage::CreateDir(directory, filename)) {
|
|
|
|
|
LOG_ERROR(Common_Filesystem, "mkdir failed on {}", path);
|
|
|
|
|
return false;
|
|
|
|
|
};
|
|
|
|
|
return true;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#else
|
2014-04-02 00:20:08 +02:00
|
|
|
|
if (mkdir(path.c_str(), 0755) == 0)
|
|
|
|
|
return true;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
|
int err = errno;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
|
if (err == EEXIST) {
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_DEBUG(Common_Filesystem, "mkdir failed on {}: already exists", path);
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_ERROR(Common_Filesystem, "mkdir failed on {}: {}", path, strerror(err));
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return false;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
|
bool CreateFullPath(const std::string& fullPath) {
|
2014-04-02 00:20:08 +02:00
|
|
|
|
int panicCounter = 100;
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_TRACE(Common_Filesystem, "path {}", fullPath);
|
2016-03-31 14:29:39 +02:00
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
|
if (FileUtil::Exists(fullPath)) {
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_DEBUG(Common_Filesystem, "path exists {}", fullPath);
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2018-09-06 22:03:28 +02:00
|
|
|
|
std::size_t position = 0;
|
2016-09-18 02:38:01 +02:00
|
|
|
|
while (true) {
|
2014-04-02 00:20:08 +02:00
|
|
|
|
// Find next sub path
|
|
|
|
|
position = fullPath.find(DIR_SEP_CHR, position);
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
|
// we're done, yay!
|
|
|
|
|
if (position == fullPath.npos)
|
|
|
|
|
return true;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
|
// Include the '/' so the first call is CreateDir("/") rather than CreateDir("")
|
|
|
|
|
std::string const subPath(fullPath.substr(0, position + 1));
|
2014-10-10 08:27:47 +02:00
|
|
|
|
if (!FileUtil::IsDirectory(subPath) && !FileUtil::CreateDir(subPath)) {
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_ERROR(Common, "CreateFullPath: directory creation failed");
|
2014-10-10 08:27:47 +02:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
|
// A safety check
|
|
|
|
|
panicCounter--;
|
2016-09-18 02:38:01 +02:00
|
|
|
|
if (panicCounter <= 0) {
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_ERROR(Common, "CreateFullPath: directory structure is too deep");
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
position++;
|
|
|
|
|
}
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
|
bool DeleteDir(const std::string& filename) {
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_TRACE(Common_Filesystem, "directory {}", filename);
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
|
// check if a directory
|
2016-09-18 02:38:01 +02:00
|
|
|
|
if (!FileUtil::IsDirectory(filename)) {
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_ERROR(Common_Filesystem, "Not a directory {}", filename);
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
2016-03-31 12:58:37 +02:00
|
|
|
|
if (::RemoveDirectoryW(Common::UTF8ToUTF16W(filename).c_str()))
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return true;
|
2023-03-23 14:30:52 +01:00
|
|
|
|
#elif ANDROID
|
|
|
|
|
if (AndroidStorage::DeleteDocument(filename))
|
|
|
|
|
return true;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#else
|
2014-04-02 00:20:08 +02:00
|
|
|
|
if (rmdir(filename.c_str()) == 0)
|
|
|
|
|
return true;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#endif
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_ERROR(Common_Filesystem, "failed {}: {}", filename, GetLastErrorMsg());
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return false;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
|
bool Rename(const std::string& srcFilename, const std::string& destFilename) {
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_TRACE(Common_Filesystem, "{} --> {}", srcFilename, destFilename);
|
2016-03-31 12:58:37 +02:00
|
|
|
|
#ifdef _WIN32
|
2016-09-18 02:38:01 +02:00
|
|
|
|
if (_wrename(Common::UTF8ToUTF16W(srcFilename).c_str(),
|
|
|
|
|
Common::UTF8ToUTF16W(destFilename).c_str()) == 0)
|
2016-03-31 12:58:37 +02:00
|
|
|
|
return true;
|
2023-03-23 14:30:52 +01:00
|
|
|
|
#elif ANDROID
|
|
|
|
|
if (AndroidStorage::RenameFile(srcFilename, std::string(GetFilename(destFilename))))
|
|
|
|
|
return true;
|
2016-03-31 12:58:37 +02:00
|
|
|
|
#else
|
2014-04-02 00:20:08 +02:00
|
|
|
|
if (rename(srcFilename.c_str(), destFilename.c_str()) == 0)
|
|
|
|
|
return true;
|
2016-03-31 12:58:37 +02:00
|
|
|
|
#endif
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_ERROR(Common_Filesystem, "failed {} --> {}: {}", srcFilename, destFilename,
|
2018-06-29 15:56:12 +02:00
|
|
|
|
GetLastErrorMsg());
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return false;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
|
bool Copy(const std::string& srcFilename, const std::string& destFilename) {
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_TRACE(Common_Filesystem, "{} --> {}", srcFilename, destFilename);
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#ifdef _WIN32
|
2016-09-18 02:38:01 +02:00
|
|
|
|
if (CopyFileW(Common::UTF8ToUTF16W(srcFilename).c_str(),
|
|
|
|
|
Common::UTF8ToUTF16W(destFilename).c_str(), FALSE))
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return true;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_ERROR(Common_Filesystem, "failed {} --> {}: {}", srcFilename, destFilename,
|
2018-06-29 15:56:12 +02:00
|
|
|
|
GetLastErrorMsg());
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return false;
|
2023-03-23 14:30:52 +01:00
|
|
|
|
#elif ANDROID
|
|
|
|
|
return AndroidStorage::CopyFile(srcFilename, std::string(GetParentPath(destFilename)),
|
|
|
|
|
std::string(GetFilename(destFilename)));
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#else
|
2018-07-22 05:04:24 +02:00
|
|
|
|
using CFilePointer = std::unique_ptr<FILE, decltype(&std::fclose)>;
|
2014-04-02 00:20:08 +02:00
|
|
|
|
|
|
|
|
|
// Open input file
|
2018-07-22 05:04:24 +02:00
|
|
|
|
CFilePointer input{fopen(srcFilename.c_str(), "rb"), std::fclose};
|
2016-09-18 02:38:01 +02:00
|
|
|
|
if (!input) {
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_ERROR(Common_Filesystem, "opening input failed {} --> {}: {}", srcFilename,
|
2018-06-29 15:56:12 +02:00
|
|
|
|
destFilename, GetLastErrorMsg());
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// open output file
|
2018-07-22 05:04:24 +02:00
|
|
|
|
CFilePointer output{fopen(destFilename.c_str(), "wb"), std::fclose};
|
2016-09-18 02:38:01 +02:00
|
|
|
|
if (!output) {
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_ERROR(Common_Filesystem, "opening output failed {} --> {}: {}", srcFilename,
|
2018-06-29 15:56:12 +02:00
|
|
|
|
destFilename, GetLastErrorMsg());
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// copy loop
|
2018-07-22 05:04:24 +02:00
|
|
|
|
std::array<char, 1024> buffer;
|
|
|
|
|
while (!feof(input.get())) {
|
2014-04-02 00:20:08 +02:00
|
|
|
|
// read input
|
2018-09-06 22:03:28 +02:00
|
|
|
|
std::size_t rnum = fread(buffer.data(), sizeof(char), buffer.size(), input.get());
|
2018-07-22 05:04:24 +02:00
|
|
|
|
if (rnum != buffer.size()) {
|
|
|
|
|
if (ferror(input.get()) != 0) {
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_ERROR(Common_Filesystem, "failed reading from source, {} --> {}: {}",
|
2018-06-29 15:56:12 +02:00
|
|
|
|
srcFilename, destFilename, GetLastErrorMsg());
|
2018-07-22 05:04:24 +02:00
|
|
|
|
return false;
|
2014-04-02 00:20:08 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// write output
|
2018-09-06 22:03:28 +02:00
|
|
|
|
std::size_t wnum = fwrite(buffer.data(), sizeof(char), rnum, output.get());
|
2016-09-18 02:38:01 +02:00
|
|
|
|
if (wnum != rnum) {
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_ERROR(Common_Filesystem, "failed writing to output, {} --> {}: {}", srcFilename,
|
2018-06-29 15:56:12 +02:00
|
|
|
|
destFilename, GetLastErrorMsg());
|
2018-07-22 05:04:24 +02:00
|
|
|
|
return false;
|
2014-04-02 00:20:08 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-07-22 05:04:24 +02:00
|
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return true;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
|
u64 GetSize(const std::string& filename) {
|
|
|
|
|
if (!Exists(filename)) {
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_ERROR(Common_Filesystem, "failed {}: No such file", filename);
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
|
if (IsDirectory(filename)) {
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_ERROR(Common_Filesystem, "failed {}: is a directory", filename);
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
2014-11-19 09:49:13 +01:00
|
|
|
|
|
2016-07-17 12:30:00 +02:00
|
|
|
|
struct stat buf;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#ifdef _WIN32
|
2016-03-31 12:58:37 +02:00
|
|
|
|
if (_wstat64(Common::UTF8ToUTF16W(filename).c_str(), &buf) == 0)
|
2023-03-23 14:30:52 +01:00
|
|
|
|
#elif ANDROID
|
|
|
|
|
u64 result = AndroidStorage::GetSize(filename);
|
|
|
|
|
LOG_TRACE(Common_Filesystem, "{}: {}", filename, result);
|
|
|
|
|
return result;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#else
|
2016-07-17 12:30:00 +02:00
|
|
|
|
if (stat(filename.c_str(), &buf) == 0)
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#endif
|
2014-04-02 00:20:08 +02:00
|
|
|
|
{
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_TRACE(Common_Filesystem, "{}: {}", filename, buf.st_size);
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return buf.st_size;
|
|
|
|
|
}
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_ERROR(Common_Filesystem, "Stat failed {}: {}", filename, GetLastErrorMsg());
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return 0;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
|
u64 GetSize(const int fd) {
|
2016-07-17 12:30:00 +02:00
|
|
|
|
struct stat buf;
|
|
|
|
|
if (fstat(fd, &buf) != 0) {
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_ERROR(Common_Filesystem, "GetSize: stat failed {}: {}", fd, GetLastErrorMsg());
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
return buf.st_size;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
|
u64 GetSize(FILE* f) {
|
2014-04-02 00:20:08 +02:00
|
|
|
|
// can't use off_t here because it can be 32-bit
|
|
|
|
|
u64 pos = ftello(f);
|
|
|
|
|
if (fseeko(f, 0, SEEK_END) != 0) {
|
2019-09-08 00:11:35 +02:00
|
|
|
|
LOG_ERROR(Common_Filesystem, "GetSize: seek failed {}: {}", fmt::ptr(f), GetLastErrorMsg());
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
u64 size = ftello(f);
|
|
|
|
|
if ((size != pos) && (fseeko(f, pos, SEEK_SET) != 0)) {
|
2019-09-08 00:11:35 +02:00
|
|
|
|
LOG_ERROR(Common_Filesystem, "GetSize: seek failed {}: {}", fmt::ptr(f), GetLastErrorMsg());
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
return size;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
|
bool CreateEmptyFile(const std::string& filename) {
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_TRACE(Common_Filesystem, "{}", filename);
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2019-09-08 00:11:35 +02:00
|
|
|
|
if (!FileUtil::IOFile(filename, "wb").IsOpen()) {
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_ERROR(Common_Filesystem, "failed {}: {}", filename, GetLastErrorMsg());
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return true;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-22 04:36:19 +02:00
|
|
|
|
bool ForeachDirectoryEntry(u64* num_entries_out, const std::string& directory,
|
2016-09-18 02:38:01 +02:00
|
|
|
|
DirectoryEntryCallable callback) {
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_TRACE(Common_Filesystem, "directory {}", directory);
|
2015-11-26 09:34:26 +01:00
|
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
|
// How many files + directories we found
|
2018-07-22 04:36:19 +02:00
|
|
|
|
u64 found_entries = 0;
|
2015-11-26 09:34:26 +01:00
|
|
|
|
|
2015-12-23 09:26:38 +01:00
|
|
|
|
// Save the status of callback function
|
|
|
|
|
bool callback_error = false;
|
|
|
|
|
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#ifdef _WIN32
|
2014-04-02 00:20:08 +02:00
|
|
|
|
// Find the first file in the directory.
|
2016-03-31 12:58:37 +02:00
|
|
|
|
WIN32_FIND_DATAW ffd;
|
2014-04-02 00:20:08 +02:00
|
|
|
|
|
2016-03-31 12:58:37 +02:00
|
|
|
|
HANDLE handle_find = FindFirstFileW(Common::UTF8ToUTF16W(directory + "\\*").c_str(), &ffd);
|
2015-09-01 03:29:23 +02:00
|
|
|
|
if (handle_find == INVALID_HANDLE_VALUE) {
|
|
|
|
|
FindClose(handle_find);
|
2015-11-26 09:34:26 +01:00
|
|
|
|
return false;
|
2014-04-02 00:20:08 +02:00
|
|
|
|
}
|
|
|
|
|
// windows loop
|
2015-09-01 03:29:23 +02:00
|
|
|
|
do {
|
2016-03-31 12:58:37 +02:00
|
|
|
|
const std::string virtual_name(Common::UTF16ToUTF8(ffd.cFileName));
|
2023-03-23 14:30:52 +01:00
|
|
|
|
#elif ANDROID
|
|
|
|
|
// android loop
|
|
|
|
|
auto result = AndroidStorage::GetFilesName(directory);
|
|
|
|
|
for (auto virtual_name : result) {
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#else
|
2016-09-18 02:38:01 +02:00
|
|
|
|
DIR* dirp = opendir(directory.c_str());
|
2014-04-02 00:20:08 +02:00
|
|
|
|
if (!dirp)
|
2015-11-26 09:34:26 +01:00
|
|
|
|
return false;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
|
// non windows loop
|
2016-09-11 06:02:45 +02:00
|
|
|
|
while (struct dirent* result = readdir(dirp)) {
|
2015-09-01 03:29:23 +02:00
|
|
|
|
const std::string virtual_name(result->d_name);
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#endif
|
2015-11-26 09:34:26 +01:00
|
|
|
|
|
|
|
|
|
if (virtual_name == "." || virtual_name == "..")
|
2014-04-02 00:20:08 +02:00
|
|
|
|
continue;
|
|
|
|
|
|
2018-07-22 04:36:19 +02:00
|
|
|
|
u64 ret_entries = 0;
|
2016-06-19 09:09:16 +02:00
|
|
|
|
if (!callback(&ret_entries, directory, virtual_name)) {
|
2015-12-23 09:26:38 +01:00
|
|
|
|
callback_error = true;
|
2015-09-01 03:29:23 +02:00
|
|
|
|
break;
|
2015-12-23 09:26:38 +01:00
|
|
|
|
}
|
2015-11-26 09:34:26 +01:00
|
|
|
|
found_entries += ret_entries;
|
2015-09-01 03:29:23 +02:00
|
|
|
|
|
2014-11-19 09:49:13 +01:00
|
|
|
|
#ifdef _WIN32
|
2016-03-31 12:58:37 +02:00
|
|
|
|
} while (FindNextFileW(handle_find, &ffd) != 0);
|
2015-09-01 03:29:23 +02:00
|
|
|
|
FindClose(handle_find);
|
2023-03-23 14:30:52 +01:00
|
|
|
|
#elif ANDROID
|
|
|
|
|
}
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#else
|
2014-04-02 00:20:08 +02:00
|
|
|
|
}
|
|
|
|
|
closedir(dirp);
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#endif
|
2015-11-26 09:34:26 +01:00
|
|
|
|
|
2015-09-06 08:59:04 +02:00
|
|
|
|
if (callback_error)
|
2015-12-23 09:26:38 +01:00
|
|
|
|
return false;
|
2015-09-06 08:59:04 +02:00
|
|
|
|
|
|
|
|
|
// num_entries_out is allowed to be specified nullptr, in which case we shouldn't try to set it
|
|
|
|
|
if (num_entries_out != nullptr)
|
|
|
|
|
*num_entries_out = found_entries;
|
|
|
|
|
return true;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-22 04:36:19 +02:00
|
|
|
|
u64 ScanDirectoryTree(const std::string& directory, FSTEntry& parent_entry,
|
|
|
|
|
unsigned int recursion) {
|
|
|
|
|
const auto callback = [recursion, &parent_entry](u64* num_entries_out,
|
2016-06-19 09:09:16 +02:00
|
|
|
|
const std::string& directory,
|
|
|
|
|
const std::string& virtual_name) -> bool {
|
2015-09-01 03:29:23 +02:00
|
|
|
|
FSTEntry entry;
|
|
|
|
|
entry.virtualName = virtual_name;
|
|
|
|
|
entry.physicalName = directory + DIR_SEP + virtual_name;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2015-09-01 03:29:23 +02:00
|
|
|
|
if (IsDirectory(entry.physicalName)) {
|
|
|
|
|
entry.isDirectory = true;
|
2015-09-06 08:59:04 +02:00
|
|
|
|
// is a directory, lets go inside if we didn't recurse to often
|
|
|
|
|
if (recursion > 0) {
|
|
|
|
|
entry.size = ScanDirectoryTree(entry.physicalName, entry, recursion - 1);
|
2018-07-22 04:36:19 +02:00
|
|
|
|
*num_entries_out += entry.size;
|
2015-09-06 08:59:04 +02:00
|
|
|
|
} else {
|
|
|
|
|
entry.size = 0;
|
|
|
|
|
}
|
2015-09-01 03:29:23 +02:00
|
|
|
|
} else { // is a file
|
|
|
|
|
entry.isDirectory = false;
|
|
|
|
|
entry.size = GetSize(entry.physicalName);
|
|
|
|
|
}
|
2015-11-26 09:34:26 +01:00
|
|
|
|
(*num_entries_out)++;
|
|
|
|
|
|
2015-09-01 03:29:23 +02:00
|
|
|
|
// Push into the tree
|
2018-07-22 04:31:41 +02:00
|
|
|
|
parent_entry.children.push_back(std::move(entry));
|
2015-11-26 09:34:26 +01:00
|
|
|
|
return true;
|
2015-09-01 03:29:23 +02:00
|
|
|
|
};
|
2014-04-02 00:20:08 +02:00
|
|
|
|
|
2018-07-22 04:36:19 +02:00
|
|
|
|
u64 num_entries;
|
2016-06-19 09:09:16 +02:00
|
|
|
|
return ForeachDirectoryEntry(&num_entries, directory, callback) ? num_entries : 0;
|
2015-09-01 03:29:23 +02:00
|
|
|
|
}
|
2014-04-02 00:20:08 +02:00
|
|
|
|
|
2019-08-17 04:34:22 +02:00
|
|
|
|
void GetAllFilesFromNestedEntries(FSTEntry& directory, std::vector<FSTEntry>& output) {
|
|
|
|
|
std::vector<FSTEntry> files;
|
|
|
|
|
for (auto& entry : directory.children) {
|
|
|
|
|
if (entry.isDirectory) {
|
|
|
|
|
GetAllFilesFromNestedEntries(entry, output);
|
|
|
|
|
} else {
|
|
|
|
|
output.push_back(entry);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
|
bool DeleteDirRecursively(const std::string& directory, unsigned int recursion) {
|
2018-07-22 04:36:19 +02:00
|
|
|
|
const auto callback = [recursion](u64* num_entries_out, const std::string& directory,
|
2016-06-19 09:09:16 +02:00
|
|
|
|
const std::string& virtual_name) -> bool {
|
2015-09-01 03:29:23 +02:00
|
|
|
|
std::string new_path = directory + DIR_SEP_CHR + virtual_name;
|
2015-11-26 09:34:26 +01:00
|
|
|
|
|
2015-09-06 08:59:04 +02:00
|
|
|
|
if (IsDirectory(new_path)) {
|
|
|
|
|
if (recursion == 0)
|
|
|
|
|
return false;
|
|
|
|
|
return DeleteDirRecursively(new_path, recursion - 1);
|
|
|
|
|
}
|
2015-11-26 09:34:26 +01:00
|
|
|
|
return Delete(new_path);
|
2015-09-01 03:29:23 +02:00
|
|
|
|
};
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2016-06-19 09:09:16 +02:00
|
|
|
|
if (!ForeachDirectoryEntry(nullptr, directory, callback))
|
2015-09-01 03:29:23 +02:00
|
|
|
|
return false;
|
2014-11-19 09:49:13 +01:00
|
|
|
|
|
2015-11-26 09:34:26 +01:00
|
|
|
|
// Delete the outermost directory
|
|
|
|
|
FileUtil::DeleteDir(directory);
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return true;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
|
void CopyDir(const std::string& source_path, const std::string& dest_path) {
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#ifndef _WIN32
|
2016-09-18 02:38:01 +02:00
|
|
|
|
if (source_path == dest_path)
|
|
|
|
|
return;
|
|
|
|
|
if (!FileUtil::Exists(source_path))
|
|
|
|
|
return;
|
|
|
|
|
if (!FileUtil::Exists(dest_path))
|
|
|
|
|
FileUtil::CreateFullPath(dest_path);
|
|
|
|
|
|
2023-03-23 14:30:52 +01:00
|
|
|
|
#ifdef ANDROID
|
|
|
|
|
auto result = AndroidStorage::GetFilesName(source_path);
|
|
|
|
|
for (auto virtualName : result) {
|
|
|
|
|
#else
|
2016-09-18 02:38:01 +02:00
|
|
|
|
DIR* dirp = opendir(source_path.c_str());
|
|
|
|
|
if (!dirp)
|
|
|
|
|
return;
|
2014-04-02 00:20:08 +02:00
|
|
|
|
|
2016-09-11 06:02:45 +02:00
|
|
|
|
while (struct dirent* result = readdir(dirp)) {
|
2014-04-02 00:20:08 +02:00
|
|
|
|
const std::string virtualName(result->d_name);
|
2023-03-23 14:30:52 +01:00
|
|
|
|
#endif // ANDROID
|
|
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
|
// check for "." and ".."
|
|
|
|
|
if (((virtualName[0] == '.') && (virtualName[1] == '\0')) ||
|
2016-09-18 02:38:01 +02:00
|
|
|
|
((virtualName[0] == '.') && (virtualName[1] == '.') && (virtualName[2] == '\0')))
|
2014-04-02 00:20:08 +02:00
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
std::string source, dest;
|
|
|
|
|
source = source_path + virtualName;
|
|
|
|
|
dest = dest_path + virtualName;
|
2016-09-18 02:38:01 +02:00
|
|
|
|
if (IsDirectory(source)) {
|
2014-04-02 00:20:08 +02:00
|
|
|
|
source += '/';
|
|
|
|
|
dest += '/';
|
2016-09-18 02:38:01 +02:00
|
|
|
|
if (!FileUtil::Exists(dest))
|
|
|
|
|
FileUtil::CreateFullPath(dest);
|
2014-04-02 00:20:08 +02:00
|
|
|
|
CopyDir(source, dest);
|
2016-09-18 02:38:01 +02:00
|
|
|
|
} else if (!FileUtil::Exists(dest))
|
|
|
|
|
FileUtil::Copy(source, dest);
|
2014-04-02 00:20:08 +02:00
|
|
|
|
}
|
2023-03-23 14:30:52 +01:00
|
|
|
|
|
|
|
|
|
#ifndef ANDROID
|
2014-04-02 00:20:08 +02:00
|
|
|
|
closedir(dirp);
|
2023-03-23 14:30:52 +01:00
|
|
|
|
#endif // ANDROID
|
|
|
|
|
#endif // _WIN32
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
Port yuzu-emu/yuzu#2511: "common/file_util: Minor cleanup" (#4782)
* common/file_util: Make IOFile's WriteString take a std::string_view
We don't need to force the usage of a std::string here, and can instead
use a std::string_view, which allows writing out other forms of strings
(e.g. C-style strings) without any unnecessary heap allocations.
* common/file_util: Remove unnecessary c_str() calls
The file stream open functions have supported std::string overloads
since C++11, so we don't need to use c_str() here. Same behavior, less
code.
* common/file_util: Make ReadFileToString and WriteStringToFile consistent
Makes the parameter ordering consistent, and also makes the filename
parameter a std::string. A std::string would be constructed anyways with
the previous code, as IOFile's only constructor with a filepath is one
taking a std::string.
We can also make WriteStringToFile's string parameter utilize a
std::string_view for the string, making use of our previous changes to
IOFile.
* common/file_util: Remove duplicated documentation comments
These are already present within the header, so they don't need to be
repeated in the cpp file.
* common/file_util: Make GetCurrentDir() return a std::optional
nullptr was being returned in the error case, which, at a glance may
seem perfectly OK... until you realize that std::string has the
invariant that it may not be constructed from a null pointer. This
means that if this error case was ever hit, then the application would
most likely crash from a thrown exception in std::string's constructor.
Instead, we can change the function to return an optional value,
indicating if a failure occurred.
* common/file_util: Remove unnecessary return at end of void StripTailDirSlashes()
While we're at it, also invert the conditional into a guard clause.
2019-06-08 00:23:57 +02:00
|
|
|
|
std::optional<std::string> GetCurrentDir() {
|
2016-09-18 02:38:01 +02:00
|
|
|
|
// Get the current working directory (getcwd uses malloc)
|
2016-03-31 13:21:03 +02:00
|
|
|
|
#ifdef _WIN32
|
2020-03-25 20:33:37 +01:00
|
|
|
|
wchar_t* dir = _wgetcwd(nullptr, 0);
|
|
|
|
|
if (!dir) {
|
2016-03-31 13:21:03 +02:00
|
|
|
|
#else
|
2020-03-25 20:33:37 +01:00
|
|
|
|
char* dir = getcwd(nullptr, 0);
|
|
|
|
|
if (!dir) {
|
2016-03-31 13:21:03 +02:00
|
|
|
|
#endif
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_ERROR(Common_Filesystem, "GetCurrentDirectory failed: {}", GetLastErrorMsg());
|
Port yuzu-emu/yuzu#2511: "common/file_util: Minor cleanup" (#4782)
* common/file_util: Make IOFile's WriteString take a std::string_view
We don't need to force the usage of a std::string here, and can instead
use a std::string_view, which allows writing out other forms of strings
(e.g. C-style strings) without any unnecessary heap allocations.
* common/file_util: Remove unnecessary c_str() calls
The file stream open functions have supported std::string overloads
since C++11, so we don't need to use c_str() here. Same behavior, less
code.
* common/file_util: Make ReadFileToString and WriteStringToFile consistent
Makes the parameter ordering consistent, and also makes the filename
parameter a std::string. A std::string would be constructed anyways with
the previous code, as IOFile's only constructor with a filepath is one
taking a std::string.
We can also make WriteStringToFile's string parameter utilize a
std::string_view for the string, making use of our previous changes to
IOFile.
* common/file_util: Remove duplicated documentation comments
These are already present within the header, so they don't need to be
repeated in the cpp file.
* common/file_util: Make GetCurrentDir() return a std::optional
nullptr was being returned in the error case, which, at a glance may
seem perfectly OK... until you realize that std::string has the
invariant that it may not be constructed from a null pointer. This
means that if this error case was ever hit, then the application would
most likely crash from a thrown exception in std::string's constructor.
Instead, we can change the function to return an optional value,
indicating if a failure occurred.
* common/file_util: Remove unnecessary return at end of void StripTailDirSlashes()
While we're at it, also invert the conditional into a guard clause.
2019-06-08 00:23:57 +02:00
|
|
|
|
return {};
|
2014-04-02 00:20:08 +02:00
|
|
|
|
}
|
2016-03-31 13:21:03 +02:00
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
std::string strDir = Common::UTF16ToUTF8(dir);
|
|
|
|
|
#else
|
2014-04-02 00:20:08 +02:00
|
|
|
|
std::string strDir = dir;
|
2016-03-31 13:21:03 +02:00
|
|
|
|
#endif
|
2014-04-02 00:20:08 +02:00
|
|
|
|
free(dir);
|
|
|
|
|
return strDir;
|
2020-01-16 05:10:37 +01:00
|
|
|
|
} // namespace FileUtil
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
|
bool SetCurrentDir(const std::string& directory) {
|
2016-03-31 13:21:03 +02:00
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
return _wchdir(Common::UTF8ToUTF16W(directory).c_str()) == 0;
|
|
|
|
|
#else
|
2015-05-07 03:59:59 +02:00
|
|
|
|
return chdir(directory.c_str()) == 0;
|
2016-03-31 13:21:03 +02:00
|
|
|
|
#endif
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#if defined(__APPLE__)
|
2016-09-18 02:38:01 +02:00
|
|
|
|
std::string GetBundleDirectory() {
|
2014-04-02 00:20:08 +02:00
|
|
|
|
CFURLRef BundleRef;
|
|
|
|
|
char AppBundlePath[MAXPATHLEN];
|
|
|
|
|
// Get the main bundle for the app
|
|
|
|
|
BundleRef = CFBundleCopyBundleURL(CFBundleGetMainBundle());
|
|
|
|
|
CFStringRef BundlePath = CFURLCopyFileSystemPath(BundleRef, kCFURLPOSIXPathStyle);
|
|
|
|
|
CFStringGetFileSystemRepresentation(BundlePath, AppBundlePath, sizeof(AppBundlePath));
|
|
|
|
|
CFRelease(BundleRef);
|
|
|
|
|
CFRelease(BundlePath);
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return AppBundlePath;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
2018-07-19 07:27:27 +02:00
|
|
|
|
const std::string& GetExeDirectory() {
|
2015-02-20 17:53:22 +01:00
|
|
|
|
static std::string exe_path;
|
2016-09-18 02:38:01 +02:00
|
|
|
|
if (exe_path.empty()) {
|
2016-03-31 13:21:03 +02:00
|
|
|
|
wchar_t wchar_exe_path[2048];
|
|
|
|
|
GetModuleFileNameW(nullptr, wchar_exe_path, 2048);
|
|
|
|
|
exe_path = Common::UTF16ToUTF8(wchar_exe_path);
|
2015-02-20 17:53:22 +01:00
|
|
|
|
exe_path = exe_path.substr(0, exe_path.find_last_of('\\'));
|
2014-04-02 00:20:08 +02:00
|
|
|
|
}
|
2015-02-20 17:53:22 +01:00
|
|
|
|
return exe_path;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
2016-11-17 01:33:16 +01:00
|
|
|
|
|
2016-11-24 16:42:31 +01:00
|
|
|
|
std::string AppDataRoamingDirectory() {
|
2016-11-17 12:29:57 +01:00
|
|
|
|
PWSTR pw_local_path = nullptr;
|
|
|
|
|
// Only supported by Windows Vista or later
|
2016-11-24 16:42:31 +01:00
|
|
|
|
SHGetKnownFolderPath(FOLDERID_RoamingAppData, 0, nullptr, &pw_local_path);
|
2016-11-17 12:29:57 +01:00
|
|
|
|
std::string local_path = Common::UTF16ToUTF8(pw_local_path);
|
|
|
|
|
CoTaskMemFree(pw_local_path);
|
2016-11-17 01:33:16 +01:00
|
|
|
|
return local_path;
|
|
|
|
|
}
|
2015-02-16 04:15:34 +01:00
|
|
|
|
#else
|
|
|
|
|
/**
|
|
|
|
|
* @return The user’s home directory on POSIX systems
|
|
|
|
|
*/
|
|
|
|
|
static const std::string& GetHomeDirectory() {
|
|
|
|
|
static std::string home_path;
|
|
|
|
|
if (home_path.empty()) {
|
|
|
|
|
const char* envvar = getenv("HOME");
|
|
|
|
|
if (envvar) {
|
|
|
|
|
home_path = envvar;
|
|
|
|
|
} else {
|
|
|
|
|
auto pw = getpwuid(getuid());
|
2016-09-18 02:38:01 +02:00
|
|
|
|
ASSERT_MSG(pw,
|
|
|
|
|
"$HOME isn’t defined, and the current user can’t be found in /etc/passwd.");
|
2015-02-16 04:15:34 +01:00
|
|
|
|
home_path = pw->pw_dir;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return home_path;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Follows the XDG Base Directory Specification to get a directory path
|
|
|
|
|
* @param envvar The XDG environment variable to get the value from
|
|
|
|
|
* @return The directory path
|
|
|
|
|
* @sa http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
|
|
|
|
|
*/
|
|
|
|
|
static const std::string GetUserDirectory(const std::string& envvar) {
|
|
|
|
|
const char* directory = getenv(envvar.c_str());
|
|
|
|
|
|
|
|
|
|
std::string user_dir;
|
|
|
|
|
if (directory) {
|
|
|
|
|
user_dir = directory;
|
|
|
|
|
} else {
|
|
|
|
|
std::string subdirectory;
|
|
|
|
|
if (envvar == "XDG_DATA_HOME")
|
|
|
|
|
subdirectory = DIR_SEP ".local" DIR_SEP "share";
|
|
|
|
|
else if (envvar == "XDG_CONFIG_HOME")
|
|
|
|
|
subdirectory = DIR_SEP ".config";
|
|
|
|
|
else if (envvar == "XDG_CACHE_HOME")
|
|
|
|
|
subdirectory = DIR_SEP ".cache";
|
|
|
|
|
else
|
2018-03-27 17:28:42 +02:00
|
|
|
|
ASSERT_MSG(false, "Unknown XDG variable {}.", envvar);
|
2015-02-16 04:15:34 +01:00
|
|
|
|
user_dir = GetHomeDirectory() + subdirectory;
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-27 17:28:42 +02:00
|
|
|
|
ASSERT_MSG(!user_dir.empty(), "User directory {} musn’t be empty.", envvar);
|
|
|
|
|
ASSERT_MSG(user_dir[0] == '/', "User directory {} must be absolute.", envvar);
|
2015-02-16 04:15:34 +01:00
|
|
|
|
|
|
|
|
|
return user_dir;
|
|
|
|
|
}
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
|
std::string GetSysDirectory() {
|
2014-04-02 00:20:08 +02:00
|
|
|
|
std::string sysDir;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
|
#if defined(__APPLE__)
|
2014-04-02 00:20:08 +02:00
|
|
|
|
sysDir = GetBundleDirectory();
|
|
|
|
|
sysDir += DIR_SEP;
|
|
|
|
|
sysDir += SYSDATA_DIR;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#else
|
2014-04-02 00:20:08 +02:00
|
|
|
|
sysDir = SYSDATA_DIR;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#endif
|
2014-04-02 00:20:08 +02:00
|
|
|
|
sysDir += DIR_SEP;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_DEBUG(Common_Filesystem, "Setting to {}:", sysDir);
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return sysDir;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-01-25 02:37:50 +01:00
|
|
|
|
namespace {
|
|
|
|
|
std::unordered_map<UserPath, std::string> g_paths;
|
2022-04-30 11:15:15 +02:00
|
|
|
|
std::unordered_map<UserPath, std::string> g_default_paths;
|
|
|
|
|
} // namespace
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2019-01-25 02:37:50 +01:00
|
|
|
|
void SetUserPath(const std::string& path) {
|
|
|
|
|
std::string& user_path = g_paths[UserPath::UserDir];
|
|
|
|
|
|
|
|
|
|
if (!path.empty() && CreateFullPath(path)) {
|
|
|
|
|
LOG_INFO(Common_Filesystem, "Using {} as the user directory", path);
|
|
|
|
|
user_path = path;
|
|
|
|
|
g_paths.emplace(UserPath::ConfigDir, user_path + CONFIG_DIR DIR_SEP);
|
|
|
|
|
g_paths.emplace(UserPath::CacheDir, user_path + CACHE_DIR DIR_SEP);
|
|
|
|
|
} else {
|
2013-09-09 02:42:03 +02:00
|
|
|
|
#ifdef _WIN32
|
2018-07-21 21:52:42 +02:00
|
|
|
|
user_path = GetExeDirectory() + DIR_SEP USERDATA_DIR DIR_SEP;
|
|
|
|
|
if (!FileUtil::IsDirectory(user_path)) {
|
|
|
|
|
user_path = AppDataRoamingDirectory() + DIR_SEP EMU_DATA_DIR DIR_SEP;
|
2017-03-11 17:31:17 +01:00
|
|
|
|
} else {
|
2018-06-29 13:18:07 +02:00
|
|
|
|
LOG_INFO(Common_Filesystem, "Using the local user directory");
|
2016-11-17 01:33:16 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-01-25 02:37:50 +01:00
|
|
|
|
g_paths.emplace(UserPath::ConfigDir, user_path + CONFIG_DIR DIR_SEP);
|
|
|
|
|
g_paths.emplace(UserPath::CacheDir, user_path + CACHE_DIR DIR_SEP);
|
2019-01-16 02:12:43 +01:00
|
|
|
|
#elif ANDROID
|
2023-03-23 14:30:52 +01:00
|
|
|
|
user_path = "/";
|
|
|
|
|
g_paths.emplace(UserPath::ConfigDir, user_path + CONFIG_DIR DIR_SEP);
|
|
|
|
|
g_paths.emplace(UserPath::CacheDir, user_path + CACHE_DIR DIR_SEP);
|
2013-09-09 02:42:03 +02:00
|
|
|
|
#else
|
2015-02-16 04:15:34 +01:00
|
|
|
|
if (FileUtil::Exists(ROOT_DIR DIR_SEP USERDATA_DIR)) {
|
2018-07-21 21:52:42 +02:00
|
|
|
|
user_path = ROOT_DIR DIR_SEP USERDATA_DIR DIR_SEP;
|
2019-01-25 02:37:50 +01:00
|
|
|
|
g_paths.emplace(UserPath::ConfigDir, user_path + CONFIG_DIR DIR_SEP);
|
|
|
|
|
g_paths.emplace(UserPath::CacheDir, user_path + CACHE_DIR DIR_SEP);
|
2015-02-16 04:15:34 +01:00
|
|
|
|
} else {
|
2023-01-23 10:50:50 +01:00
|
|
|
|
std::string data_dir = GetUserDirectory("XDG_DATA_HOME") + DIR_SEP EMU_DATA_DIR DIR_SEP;
|
|
|
|
|
std::string config_dir =
|
|
|
|
|
GetUserDirectory("XDG_CONFIG_HOME") + DIR_SEP EMU_DATA_DIR DIR_SEP;
|
|
|
|
|
std::string cache_dir =
|
|
|
|
|
GetUserDirectory("XDG_CACHE_HOME") + DIR_SEP EMU_DATA_DIR DIR_SEP;
|
2015-02-16 04:15:34 +01:00
|
|
|
|
|
2023-01-23 10:50:50 +01:00
|
|
|
|
#if defined(__APPLE__)
|
|
|
|
|
// If XDG directories don't already exist from a previous setup, use standard macOS
|
|
|
|
|
// paths.
|
|
|
|
|
if (!FileUtil::Exists(data_dir) && !FileUtil::Exists(config_dir) &&
|
|
|
|
|
!FileUtil::Exists(cache_dir)) {
|
|
|
|
|
data_dir = GetHomeDirectory() + DIR_SEP MACOS_EMU_DATA_DIR DIR_SEP;
|
|
|
|
|
config_dir = data_dir + CONFIG_DIR DIR_SEP;
|
|
|
|
|
cache_dir = data_dir + CACHE_DIR DIR_SEP;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
user_path = data_dir;
|
|
|
|
|
g_paths.emplace(UserPath::ConfigDir, config_dir);
|
|
|
|
|
g_paths.emplace(UserPath::CacheDir, cache_dir);
|
2015-02-16 04:15:34 +01:00
|
|
|
|
}
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#endif
|
2014-04-02 00:20:08 +02:00
|
|
|
|
}
|
2021-04-10 20:48:28 +02:00
|
|
|
|
|
2022-04-30 11:15:15 +02:00
|
|
|
|
g_paths.emplace(UserPath::SDMCDir, user_path + SDMC_DIR DIR_SEP);
|
|
|
|
|
g_paths.emplace(UserPath::NANDDir, user_path + NAND_DIR DIR_SEP);
|
2019-01-25 02:37:50 +01:00
|
|
|
|
g_paths.emplace(UserPath::SysDataDir, user_path + SYSDATA_DIR DIR_SEP);
|
|
|
|
|
// TODO: Put the logs in a better location for each OS
|
|
|
|
|
g_paths.emplace(UserPath::LogDir, user_path + LOG_DIR DIR_SEP);
|
|
|
|
|
g_paths.emplace(UserPath::CheatsDir, user_path + CHEATS_DIR DIR_SEP);
|
|
|
|
|
g_paths.emplace(UserPath::DLLDir, user_path + DLL_DIR DIR_SEP);
|
2019-08-09 20:00:47 +02:00
|
|
|
|
g_paths.emplace(UserPath::ShaderDir, user_path + SHADER_DIR DIR_SEP);
|
2019-04-03 03:29:36 +02:00
|
|
|
|
g_paths.emplace(UserPath::DumpDir, user_path + DUMP_DIR DIR_SEP);
|
2019-08-06 14:43:24 +02:00
|
|
|
|
g_paths.emplace(UserPath::LoadDir, user_path + LOAD_DIR DIR_SEP);
|
2020-02-18 06:19:52 +01:00
|
|
|
|
g_paths.emplace(UserPath::StatesDir, user_path + STATES_DIR DIR_SEP);
|
2022-04-30 11:15:15 +02:00
|
|
|
|
g_default_paths = g_paths;
|
2019-01-25 02:37:50 +01:00
|
|
|
|
}
|
2014-11-19 09:49:13 +01:00
|
|
|
|
|
2020-04-05 01:20:59 +02:00
|
|
|
|
std::string g_currentRomPath{};
|
|
|
|
|
|
|
|
|
|
void SetCurrentRomPath(const std::string& path) {
|
|
|
|
|
g_currentRomPath = path;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool StringReplace(std::string& haystack, const std::string& a, const std::string& b, bool swap) {
|
|
|
|
|
const auto& needle = swap ? b : a;
|
|
|
|
|
const auto& replacement = swap ? a : b;
|
|
|
|
|
if (needle.empty()) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
auto index = haystack.find(needle, 0);
|
|
|
|
|
if (index == std::string::npos) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
haystack.replace(index, needle.size(), replacement);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::string SerializePath(const std::string& input, bool is_saving) {
|
|
|
|
|
auto result = input;
|
|
|
|
|
StringReplace(result, "%CITRA_ROM_FILE%", g_currentRomPath, is_saving);
|
|
|
|
|
StringReplace(result, "%CITRA_USER_DIR%", GetUserPath(UserPath::UserDir), is_saving);
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-25 02:37:50 +01:00
|
|
|
|
const std::string& GetUserPath(UserPath path) {
|
|
|
|
|
// Set up all paths and files on the first run
|
|
|
|
|
if (g_paths.empty())
|
|
|
|
|
SetUserPath();
|
|
|
|
|
return g_paths[path];
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
2021-04-10 20:48:28 +02:00
|
|
|
|
|
2022-04-30 11:15:15 +02:00
|
|
|
|
const std::string& GetDefaultUserPath(UserPath path) {
|
|
|
|
|
// Set up all paths and files on the first run
|
|
|
|
|
if (g_default_paths.empty())
|
|
|
|
|
SetUserPath();
|
|
|
|
|
return g_default_paths[path];
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-10 20:48:28 +02:00
|
|
|
|
const void UpdateUserPath(UserPath path, const std::string& filename) {
|
2022-10-22 15:39:47 +02:00
|
|
|
|
if (filename.empty()) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2022-04-30 11:15:15 +02:00
|
|
|
|
if (!FileUtil::IsDirectory(filename)) {
|
|
|
|
|
LOG_ERROR(Common_Filesystem, "Path is not a directory. UserPath: {} filename: {}", path,
|
|
|
|
|
filename);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
g_paths[path] = SanitizePath(filename) + DIR_SEP;
|
2021-04-10 20:48:28 +02:00
|
|
|
|
}
|
|
|
|
|
|
Port yuzu-emu/yuzu#2511: "common/file_util: Minor cleanup" (#4782)
* common/file_util: Make IOFile's WriteString take a std::string_view
We don't need to force the usage of a std::string here, and can instead
use a std::string_view, which allows writing out other forms of strings
(e.g. C-style strings) without any unnecessary heap allocations.
* common/file_util: Remove unnecessary c_str() calls
The file stream open functions have supported std::string overloads
since C++11, so we don't need to use c_str() here. Same behavior, less
code.
* common/file_util: Make ReadFileToString and WriteStringToFile consistent
Makes the parameter ordering consistent, and also makes the filename
parameter a std::string. A std::string would be constructed anyways with
the previous code, as IOFile's only constructor with a filepath is one
taking a std::string.
We can also make WriteStringToFile's string parameter utilize a
std::string_view for the string, making use of our previous changes to
IOFile.
* common/file_util: Remove duplicated documentation comments
These are already present within the header, so they don't need to be
repeated in the cpp file.
* common/file_util: Make GetCurrentDir() return a std::optional
nullptr was being returned in the error case, which, at a glance may
seem perfectly OK... until you realize that std::string has the
invariant that it may not be constructed from a null pointer. This
means that if this error case was ever hit, then the application would
most likely crash from a thrown exception in std::string's constructor.
Instead, we can change the function to return an optional value,
indicating if a failure occurred.
* common/file_util: Remove unnecessary return at end of void StripTailDirSlashes()
While we're at it, also invert the conditional into a guard clause.
2019-06-08 00:23:57 +02:00
|
|
|
|
std::size_t WriteStringToFile(bool text_file, const std::string& filename, std::string_view str) {
|
|
|
|
|
return IOFile(filename, text_file ? "w" : "wb").WriteString(str);
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
Port yuzu-emu/yuzu#2511: "common/file_util: Minor cleanup" (#4782)
* common/file_util: Make IOFile's WriteString take a std::string_view
We don't need to force the usage of a std::string here, and can instead
use a std::string_view, which allows writing out other forms of strings
(e.g. C-style strings) without any unnecessary heap allocations.
* common/file_util: Remove unnecessary c_str() calls
The file stream open functions have supported std::string overloads
since C++11, so we don't need to use c_str() here. Same behavior, less
code.
* common/file_util: Make ReadFileToString and WriteStringToFile consistent
Makes the parameter ordering consistent, and also makes the filename
parameter a std::string. A std::string would be constructed anyways with
the previous code, as IOFile's only constructor with a filepath is one
taking a std::string.
We can also make WriteStringToFile's string parameter utilize a
std::string_view for the string, making use of our previous changes to
IOFile.
* common/file_util: Remove duplicated documentation comments
These are already present within the header, so they don't need to be
repeated in the cpp file.
* common/file_util: Make GetCurrentDir() return a std::optional
nullptr was being returned in the error case, which, at a glance may
seem perfectly OK... until you realize that std::string has the
invariant that it may not be constructed from a null pointer. This
means that if this error case was ever hit, then the application would
most likely crash from a thrown exception in std::string's constructor.
Instead, we can change the function to return an optional value,
indicating if a failure occurred.
* common/file_util: Remove unnecessary return at end of void StripTailDirSlashes()
While we're at it, also invert the conditional into a guard clause.
2019-06-08 00:23:57 +02:00
|
|
|
|
std::size_t ReadFileToString(bool text_file, const std::string& filename, std::string& str) {
|
2016-04-14 01:29:16 +02:00
|
|
|
|
IOFile file(filename, text_file ? "r" : "rb");
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2019-09-08 00:11:35 +02:00
|
|
|
|
if (!file.IsOpen())
|
|
|
|
|
return 0;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2016-04-14 01:29:16 +02:00
|
|
|
|
str.resize(static_cast<u32>(file.GetSize()));
|
2021-07-14 11:01:14 +02:00
|
|
|
|
return file.ReadArray(str.data(), str.size());
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2014-09-29 10:34:37 +02:00
|
|
|
|
void SplitFilename83(const std::string& filename, std::array<char, 9>& short_name,
|
|
|
|
|
std::array<char, 4>& extension) {
|
|
|
|
|
const std::string forbidden_characters = ".\"/\\[]:;=, ";
|
|
|
|
|
|
|
|
|
|
// On a FAT32 partition, 8.3 names are stored as a 11 bytes array, filled with spaces.
|
2015-09-16 14:38:12 +02:00
|
|
|
|
short_name = {{' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', '\0'}};
|
|
|
|
|
extension = {{' ', ' ', ' ', '\0'}};
|
2014-09-29 10:34:37 +02:00
|
|
|
|
|
|
|
|
|
std::string::size_type point = filename.rfind('.');
|
|
|
|
|
if (point == filename.size() - 1)
|
|
|
|
|
point = filename.rfind('.', point);
|
|
|
|
|
|
|
|
|
|
// Get short name.
|
|
|
|
|
int j = 0;
|
|
|
|
|
for (char letter : filename.substr(0, point)) {
|
|
|
|
|
if (forbidden_characters.find(letter, 0) != std::string::npos)
|
|
|
|
|
continue;
|
|
|
|
|
if (j == 8) {
|
|
|
|
|
// TODO(Link Mauve): also do that for filenames containing a space.
|
|
|
|
|
// TODO(Link Mauve): handle multiple files having the same short name.
|
|
|
|
|
short_name[6] = '~';
|
|
|
|
|
short_name[7] = '1';
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
short_name[j++] = toupper(letter);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Get extension.
|
|
|
|
|
if (point != std::string::npos) {
|
|
|
|
|
j = 0;
|
|
|
|
|
for (char letter : filename.substr(point + 1, 3))
|
|
|
|
|
extension[j++] = toupper(letter);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-08 00:11:35 +02:00
|
|
|
|
std::vector<std::string> SplitPathComponents(std::string_view filename) {
|
|
|
|
|
std::string copy(filename);
|
|
|
|
|
std::replace(copy.begin(), copy.end(), '\\', '/');
|
|
|
|
|
std::vector<std::string> out;
|
|
|
|
|
|
|
|
|
|
std::stringstream stream(copy);
|
|
|
|
|
std::string item;
|
|
|
|
|
while (std::getline(stream, item, '/')) {
|
|
|
|
|
out.push_back(std::move(item));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::string_view GetParentPath(std::string_view path) {
|
|
|
|
|
const auto name_bck_index = path.rfind('\\');
|
|
|
|
|
const auto name_fwd_index = path.rfind('/');
|
|
|
|
|
std::size_t name_index;
|
|
|
|
|
|
|
|
|
|
if (name_bck_index == std::string_view::npos || name_fwd_index == std::string_view::npos) {
|
|
|
|
|
name_index = std::min(name_bck_index, name_fwd_index);
|
|
|
|
|
} else {
|
|
|
|
|
name_index = std::max(name_bck_index, name_fwd_index);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return path.substr(0, name_index);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::string_view GetPathWithoutTop(std::string_view path) {
|
|
|
|
|
if (path.empty()) {
|
|
|
|
|
return path;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while (path[0] == '\\' || path[0] == '/') {
|
|
|
|
|
path.remove_prefix(1);
|
|
|
|
|
if (path.empty()) {
|
|
|
|
|
return path;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const auto name_bck_index = path.find('\\');
|
|
|
|
|
const auto name_fwd_index = path.find('/');
|
|
|
|
|
return path.substr(std::min(name_bck_index, name_fwd_index) + 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::string_view GetFilename(std::string_view path) {
|
|
|
|
|
const auto name_index = path.find_last_of("\\/");
|
|
|
|
|
|
|
|
|
|
if (name_index == std::string_view::npos) {
|
2023-04-27 06:38:28 +02:00
|
|
|
|
return path;
|
2019-09-08 00:11:35 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return path.substr(name_index + 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::string_view GetExtensionFromFilename(std::string_view name) {
|
|
|
|
|
const std::size_t index = name.rfind('.');
|
|
|
|
|
|
|
|
|
|
if (index == std::string_view::npos) {
|
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return name.substr(index + 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::string_view RemoveTrailingSlash(std::string_view path) {
|
|
|
|
|
if (path.empty()) {
|
|
|
|
|
return path;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (path.back() == '\\' || path.back() == '/') {
|
|
|
|
|
path.remove_suffix(1);
|
|
|
|
|
return path;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return path;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::string SanitizePath(std::string_view path_, DirectorySeparator directory_separator) {
|
|
|
|
|
std::string path(path_);
|
2023-03-23 14:30:52 +01:00
|
|
|
|
#ifdef ANDROID
|
|
|
|
|
return std::string(RemoveTrailingSlash(path));
|
|
|
|
|
#endif
|
2019-09-08 00:11:35 +02:00
|
|
|
|
char type1 = directory_separator == DirectorySeparator::BackwardSlash ? '/' : '\\';
|
|
|
|
|
char type2 = directory_separator == DirectorySeparator::BackwardSlash ? '\\' : '/';
|
|
|
|
|
|
|
|
|
|
if (directory_separator == DirectorySeparator::PlatformDefault) {
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
type1 = '/';
|
|
|
|
|
type2 = '\\';
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::replace(path.begin(), path.end(), type1, type2);
|
2020-04-09 19:48:28 +02:00
|
|
|
|
|
|
|
|
|
auto start = path.begin();
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
// allow network paths which start with a double backslash (e.g. \\server\share)
|
|
|
|
|
if (start != path.end())
|
|
|
|
|
++start;
|
|
|
|
|
#endif
|
|
|
|
|
path.erase(std::unique(start, path.end(),
|
2019-09-08 00:11:35 +02:00
|
|
|
|
[type2](char c1, char c2) { return c1 == type2 && c2 == type2; }),
|
|
|
|
|
path.end());
|
|
|
|
|
return std::string(RemoveTrailingSlash(path));
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-16 12:17:30 +02:00
|
|
|
|
IOFile::IOFile() = default;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2020-01-16 01:53:20 +01:00
|
|
|
|
IOFile::IOFile(const std::string& filename, const char openmode[], int flags)
|
|
|
|
|
: filename(filename), openmode(openmode), flags(flags) {
|
2020-12-30 17:56:19 +01:00
|
|
|
|
Open();
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
|
IOFile::~IOFile() {
|
2014-04-02 00:20:08 +02:00
|
|
|
|
Close();
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-25 20:33:37 +01:00
|
|
|
|
IOFile::IOFile(IOFile&& other) noexcept {
|
2014-04-02 00:20:08 +02:00
|
|
|
|
Swap(other);
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-25 20:33:37 +01:00
|
|
|
|
IOFile& IOFile::operator=(IOFile&& other) noexcept {
|
2014-04-02 00:20:08 +02:00
|
|
|
|
Swap(other);
|
|
|
|
|
return *this;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-25 20:33:37 +01:00
|
|
|
|
void IOFile::Swap(IOFile& other) noexcept {
|
2014-04-02 00:20:08 +02:00
|
|
|
|
std::swap(m_file, other.m_file);
|
2023-03-23 14:30:52 +01:00
|
|
|
|
std::swap(m_fd, other.m_fd);
|
2014-04-02 00:20:08 +02:00
|
|
|
|
std::swap(m_good, other.m_good);
|
2020-01-08 23:13:56 +01:00
|
|
|
|
std::swap(filename, other.filename);
|
|
|
|
|
std::swap(openmode, other.openmode);
|
|
|
|
|
std::swap(flags, other.flags);
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-16 01:53:20 +01:00
|
|
|
|
bool IOFile::Open() {
|
2014-04-02 00:20:08 +02:00
|
|
|
|
Close();
|
2020-01-08 23:13:56 +01:00
|
|
|
|
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#ifdef _WIN32
|
2018-02-20 01:51:27 +01:00
|
|
|
|
if (flags != 0) {
|
|
|
|
|
m_file = _wfsopen(Common::UTF8ToUTF16W(filename).c_str(),
|
|
|
|
|
Common::UTF8ToUTF16W(openmode).c_str(), flags);
|
2020-03-25 20:33:37 +01:00
|
|
|
|
m_good = m_file != nullptr;
|
2018-02-20 01:51:27 +01:00
|
|
|
|
} else {
|
2020-03-25 20:33:37 +01:00
|
|
|
|
m_good = _wfopen_s(&m_file, Common::UTF8ToUTF16W(filename).c_str(),
|
|
|
|
|
Common::UTF8ToUTF16W(openmode).c_str()) == 0;
|
2018-02-20 01:51:27 +01:00
|
|
|
|
}
|
2023-03-23 14:30:52 +01:00
|
|
|
|
#elif ANDROID
|
|
|
|
|
// Check whether filepath is startsWith content
|
|
|
|
|
AndroidStorage::AndroidOpenMode android_open_mode = AndroidStorage::ParseOpenmode(openmode);
|
|
|
|
|
if (android_open_mode == AndroidStorage::AndroidOpenMode::WRITE ||
|
|
|
|
|
android_open_mode == AndroidStorage::AndroidOpenMode::READ_WRITE ||
|
|
|
|
|
android_open_mode == AndroidStorage::AndroidOpenMode::WRITE_APPEND ||
|
|
|
|
|
android_open_mode == AndroidStorage::AndroidOpenMode::WRITE_TRUNCATE ||
|
|
|
|
|
android_open_mode == AndroidStorage::AndroidOpenMode::READ_WRITE_TRUNCATE ||
|
|
|
|
|
android_open_mode == AndroidStorage::AndroidOpenMode::READ_WRITE_APPEND) {
|
|
|
|
|
if (!FileUtil::Exists(filename)) {
|
|
|
|
|
std::string directory(GetParentPath(filename));
|
|
|
|
|
std::string display_name(GetFilename(filename));
|
|
|
|
|
if (!AndroidStorage::CreateFile(directory, display_name)) {
|
|
|
|
|
m_good = m_file != nullptr;
|
|
|
|
|
return m_good;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
m_fd = AndroidStorage::OpenContentUri(filename, android_open_mode);
|
|
|
|
|
if (m_fd != -1) {
|
|
|
|
|
int error_num = 0;
|
|
|
|
|
m_file = fdopen(m_fd, openmode.c_str());
|
|
|
|
|
error_num = errno;
|
|
|
|
|
if (error_num != 0 && m_file == nullptr) {
|
|
|
|
|
LOG_ERROR(Common_Filesystem, "Error on file: {}, error: {}", filename,
|
|
|
|
|
strerror(error_num));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_good = m_file != nullptr;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#else
|
2020-03-28 13:33:21 +01:00
|
|
|
|
m_file = std::fopen(filename.c_str(), openmode.c_str());
|
2020-03-25 20:33:37 +01:00
|
|
|
|
m_good = m_file != nullptr;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return m_good;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
|
bool IOFile::Close() {
|
2014-04-02 00:20:08 +02:00
|
|
|
|
if (!IsOpen() || 0 != std::fclose(m_file))
|
|
|
|
|
m_good = false;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2014-12-03 19:57:57 +01:00
|
|
|
|
m_file = nullptr;
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return m_good;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
|
u64 IOFile::GetSize() const {
|
2014-04-02 00:20:08 +02:00
|
|
|
|
if (IsOpen())
|
2014-09-12 00:17:15 +02:00
|
|
|
|
return FileUtil::GetSize(m_file);
|
2016-04-14 01:38:01 +02:00
|
|
|
|
|
|
|
|
|
return 0;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
|
bool IOFile::Seek(s64 off, int origin) {
|
2014-04-02 00:20:08 +02:00
|
|
|
|
if (!IsOpen() || 0 != fseeko(m_file, off, origin))
|
|
|
|
|
m_good = false;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return m_good;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
|
u64 IOFile::Tell() const {
|
2014-04-02 00:20:08 +02:00
|
|
|
|
if (IsOpen())
|
|
|
|
|
return ftello(m_file);
|
2016-04-14 01:38:01 +02:00
|
|
|
|
|
2020-03-25 20:33:37 +01:00
|
|
|
|
return std::numeric_limits<u64>::max();
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
|
bool IOFile::Flush() {
|
2014-04-02 00:20:08 +02:00
|
|
|
|
if (!IsOpen() || 0 != std::fflush(m_file))
|
|
|
|
|
m_good = false;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return m_good;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-15 20:21:22 +02:00
|
|
|
|
std::size_t IOFile::ReadImpl(void* data, std::size_t length, std::size_t data_size) {
|
|
|
|
|
if (!IsOpen()) {
|
|
|
|
|
m_good = false;
|
|
|
|
|
return std::numeric_limits<std::size_t>::max();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (length == 0) {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DEBUG_ASSERT(data != nullptr);
|
|
|
|
|
|
|
|
|
|
return std::fread(data, data_size, length, m_file);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::size_t IOFile::WriteImpl(const void* data, std::size_t length, std::size_t data_size) {
|
|
|
|
|
if (!IsOpen()) {
|
|
|
|
|
m_good = false;
|
|
|
|
|
return std::numeric_limits<std::size_t>::max();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (length == 0) {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DEBUG_ASSERT(data != nullptr);
|
|
|
|
|
|
|
|
|
|
return std::fwrite(data, data_size, length, m_file);
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
|
bool IOFile::Resize(u64 size) {
|
2018-03-09 18:54:43 +01:00
|
|
|
|
if (!IsOpen() || 0 !=
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#ifdef _WIN32
|
2018-03-09 18:54:43 +01:00
|
|
|
|
// ector: _chsize sucks, not 64-bit safe
|
|
|
|
|
// F|RES: changed to _chsize_s. i think it is 64-bit safe
|
|
|
|
|
_chsize_s(_fileno(m_file), size)
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#else
|
2018-03-09 18:54:43 +01:00
|
|
|
|
// TODO: handle 64bit and growing
|
|
|
|
|
ftruncate(fileno(m_file), size)
|
2013-09-05 02:17:46 +02:00
|
|
|
|
#endif
|
2018-03-09 18:54:43 +01:00
|
|
|
|
)
|
2014-04-02 00:20:08 +02:00
|
|
|
|
m_good = false;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
|
return m_good;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-23 14:30:52 +01:00
|
|
|
|
template <typename T>
|
|
|
|
|
using boost_iostreams = boost::iostreams::stream<T>;
|
|
|
|
|
|
|
|
|
|
template <>
|
|
|
|
|
void OpenFStream<std::ios_base::in>(
|
|
|
|
|
boost_iostreams<boost::iostreams::file_descriptor_source>& fstream,
|
|
|
|
|
const std::string& filename) {
|
|
|
|
|
IOFile file(filename, "r");
|
2023-03-24 15:50:48 +01:00
|
|
|
|
if (file.GetFd() == -1)
|
|
|
|
|
return;
|
2023-03-23 14:30:52 +01:00
|
|
|
|
int fd = dup(file.GetFd());
|
|
|
|
|
if (fd == -1)
|
|
|
|
|
return;
|
|
|
|
|
boost::iostreams::file_descriptor_source file_descriptor_source(fd,
|
|
|
|
|
boost::iostreams::close_handle);
|
|
|
|
|
fstream.open(file_descriptor_source);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <>
|
|
|
|
|
void OpenFStream<std::ios_base::out>(
|
|
|
|
|
boost_iostreams<boost::iostreams::file_descriptor_sink>& fstream, const std::string& filename) {
|
|
|
|
|
IOFile file(filename, "w");
|
2023-03-24 15:50:48 +01:00
|
|
|
|
if (file.GetFd() == -1)
|
|
|
|
|
return;
|
2023-03-23 14:30:52 +01:00
|
|
|
|
int fd = dup(file.GetFd());
|
|
|
|
|
if (fd == -1)
|
|
|
|
|
return;
|
|
|
|
|
boost::iostreams::file_descriptor_sink file_descriptor_sink(fd, boost::iostreams::close_handle);
|
|
|
|
|
fstream.open(file_descriptor_sink);
|
|
|
|
|
}
|
2018-03-09 18:54:43 +01:00
|
|
|
|
} // namespace FileUtil
|