2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2021-12-10 02:22:16 +00:00
|
|
|
#include "Common/FileUtil.h"
|
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include <algorithm>
|
2020-11-15 00:49:25 +00:00
|
|
|
#include <chrono>
|
2014-02-20 03:11:52 +00:00
|
|
|
#include <cstddef>
|
2022-08-06 00:54:56 +00:00
|
|
|
#include <cstdint>
|
2014-02-20 03:11:52 +00:00
|
|
|
#include <cstdio>
|
|
|
|
#include <cstring>
|
2014-02-19 00:54:11 +00:00
|
|
|
#include <fcntl.h>
|
2022-08-06 00:54:56 +00:00
|
|
|
#include <filesystem>
|
2017-08-21 10:00:25 +00:00
|
|
|
#include <fstream>
|
2014-02-20 03:11:52 +00:00
|
|
|
#include <limits.h>
|
2023-01-10 13:13:18 +00:00
|
|
|
#include <stack>
|
2014-02-20 03:11:52 +00:00
|
|
|
#include <string>
|
2014-02-17 10:18:15 +00:00
|
|
|
#include <sys/stat.h>
|
2022-08-06 00:54:56 +00:00
|
|
|
#include <system_error>
|
2020-11-15 00:49:25 +00:00
|
|
|
#include <thread>
|
2014-02-20 03:11:52 +00:00
|
|
|
#include <vector>
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2017-09-09 09:27:24 +00:00
|
|
|
#include "Common/Assert.h"
|
2015-09-28 15:57:16 +00:00
|
|
|
#include "Common/Common.h"
|
2015-09-26 21:13:07 +00:00
|
|
|
#include "Common/CommonFuncs.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/CommonPaths.h"
|
2014-09-08 01:06:58 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2020-06-29 17:53:34 +00:00
|
|
|
#ifdef __APPLE__
|
|
|
|
#include "Common/DynamicLibrary.h"
|
|
|
|
#endif
|
2020-09-15 10:29:41 +00:00
|
|
|
#include "Common/IOFile.h"
|
2015-09-26 21:13:07 +00:00
|
|
|
#include "Common/Logging/Log.h"
|
2021-11-22 02:00:15 +00:00
|
|
|
#include "Common/StringUtil.h"
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2008-07-21 01:27:13 +00:00
|
|
|
#ifdef _WIN32
|
2022-08-06 00:54:56 +00:00
|
|
|
#include <Windows.h>
|
2018-05-04 21:43:32 +00:00
|
|
|
#include <Shlwapi.h>
|
2013-10-19 22:58:02 +00:00
|
|
|
#include <commdlg.h> // for GetSaveFileName
|
|
|
|
#include <direct.h> // getcwd
|
2014-02-19 00:54:11 +00:00
|
|
|
#include <io.h>
|
2014-11-18 01:59:14 +00:00
|
|
|
#include <objbase.h> // guid stuff
|
2014-02-19 00:54:11 +00:00
|
|
|
#include <shellapi.h>
|
2008-07-27 20:51:02 +00:00
|
|
|
#else
|
2008-11-20 13:37:57 +00:00
|
|
|
#include <dirent.h>
|
2008-09-05 11:59:28 +00:00
|
|
|
#include <errno.h>
|
2013-10-15 06:52:06 +00:00
|
|
|
#include <libgen.h>
|
2016-11-24 19:57:27 +00:00
|
|
|
#include <stdlib.h>
|
2014-02-20 03:11:52 +00:00
|
|
|
#include <unistd.h>
|
2008-07-21 01:27:13 +00:00
|
|
|
#endif
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2009-02-28 23:21:51 +00:00
|
|
|
#if defined(__APPLE__)
|
2014-02-19 00:54:11 +00:00
|
|
|
#include <CoreFoundation/CFBundle.h>
|
2009-02-28 23:21:51 +00:00
|
|
|
#include <CoreFoundation/CFString.h>
|
2010-05-06 10:06:15 +00:00
|
|
|
#include <CoreFoundation/CFURL.h>
|
2019-01-20 01:24:26 +00:00
|
|
|
#include <mach-o/dyld.h>
|
2014-02-20 03:11:52 +00:00
|
|
|
#include <sys/param.h>
|
2009-02-28 23:21:51 +00:00
|
|
|
#endif
|
|
|
|
|
2020-06-27 09:04:48 +00:00
|
|
|
#ifdef ANDROID
|
|
|
|
#include "jni/AndroidCommon/AndroidCommon.h"
|
|
|
|
#endif
|
|
|
|
|
2022-08-06 00:54:56 +00:00
|
|
|
namespace fs = std::filesystem;
|
2009-03-28 08:57:34 +00:00
|
|
|
|
2008-09-23 22:23:38 +00:00
|
|
|
namespace File
|
|
|
|
{
|
2017-09-09 09:27:24 +00:00
|
|
|
#ifdef ANDROID
|
|
|
|
static std::string s_android_sys_directory;
|
2023-05-31 22:05:06 +00:00
|
|
|
static std::string s_android_driver_directory;
|
|
|
|
static std::string s_android_lib_directory;
|
2017-09-09 09:27:24 +00:00
|
|
|
#endif
|
|
|
|
|
2020-06-29 17:53:34 +00:00
|
|
|
#ifdef __APPLE__
|
|
|
|
static Common::DynamicLibrary s_security_framework;
|
|
|
|
|
|
|
|
using DolSecTranslocateIsTranslocatedURL = Boolean (*)(CFURLRef path, bool* isTranslocated,
|
|
|
|
CFErrorRef* __nullable error);
|
|
|
|
using DolSecTranslocateCreateOriginalPathForURL = CFURLRef
|
|
|
|
__nullable (*)(CFURLRef translocatedPath, CFErrorRef* __nullable error);
|
|
|
|
|
|
|
|
static DolSecTranslocateIsTranslocatedURL s_is_translocated_url;
|
|
|
|
static DolSecTranslocateCreateOriginalPathForURL s_create_orig_path;
|
|
|
|
#endif
|
|
|
|
|
2017-06-29 09:20:38 +00:00
|
|
|
FileInfo::FileInfo(const std::string& path) : FileInfo(path.c_str())
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
FileInfo::FileInfo(const char* path)
|
|
|
|
{
|
2020-11-05 18:47:23 +00:00
|
|
|
#ifdef ANDROID
|
|
|
|
if (IsPathAndroidContent(path))
|
2023-01-10 13:13:18 +00:00
|
|
|
{
|
|
|
|
const jlong result = GetAndroidContentSizeAndIsDirectory(path);
|
|
|
|
m_status.type((result == -2) ? fs::file_type::directory : fs::file_type::regular);
|
|
|
|
m_size = (result >= 0) ? result : 0;
|
|
|
|
m_exists = result != -1;
|
|
|
|
}
|
2020-11-05 18:47:23 +00:00
|
|
|
else
|
|
|
|
#endif
|
2022-08-06 00:54:56 +00:00
|
|
|
{
|
2023-01-10 13:13:18 +00:00
|
|
|
const auto fs_path = StringToPath(path);
|
2022-08-06 00:54:56 +00:00
|
|
|
std::error_code error;
|
2023-01-10 13:13:18 +00:00
|
|
|
m_status = fs::status(fs_path, error);
|
|
|
|
m_size = fs::file_size(fs_path, error);
|
|
|
|
if (error)
|
|
|
|
m_size = 0;
|
2022-08-06 00:54:56 +00:00
|
|
|
m_exists = fs::exists(m_status);
|
|
|
|
}
|
2008-07-20 12:26:32 +00:00
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2017-06-29 09:20:38 +00:00
|
|
|
bool FileInfo::Exists() const
|
2008-09-22 19:48:12 +00:00
|
|
|
{
|
2017-06-29 09:20:38 +00:00
|
|
|
return m_exists;
|
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2017-06-29 09:20:38 +00:00
|
|
|
bool FileInfo::IsDirectory() const
|
|
|
|
{
|
2022-08-06 00:54:56 +00:00
|
|
|
return fs::is_directory(m_status);
|
2017-06-29 09:20:38 +00:00
|
|
|
}
|
2009-02-28 01:26:56 +00:00
|
|
|
|
2017-06-29 09:20:38 +00:00
|
|
|
bool FileInfo::IsFile() const
|
|
|
|
{
|
2022-08-06 00:54:56 +00:00
|
|
|
return Exists() ? !fs::is_directory(m_status) : false;
|
2017-06-29 09:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
u64 FileInfo::GetSize() const
|
|
|
|
{
|
2022-08-06 00:54:56 +00:00
|
|
|
if (!IsFile())
|
|
|
|
return 0;
|
2023-01-10 13:13:18 +00:00
|
|
|
return m_size;
|
2017-06-29 09:20:38 +00:00
|
|
|
}
|
2009-02-28 01:26:56 +00:00
|
|
|
|
2017-06-29 09:20:38 +00:00
|
|
|
// Returns true if the path exists
|
|
|
|
bool Exists(const std::string& path)
|
|
|
|
{
|
|
|
|
return FileInfo(path).Exists();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns true if the path exists and is a directory
|
|
|
|
bool IsDirectory(const std::string& path)
|
|
|
|
{
|
|
|
|
return FileInfo(path).IsDirectory();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns true if the path exists and is a file
|
|
|
|
bool IsFile(const std::string& path)
|
|
|
|
{
|
|
|
|
return FileInfo(path).IsFile();
|
2008-07-20 15:12:12 +00:00
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
// Deletes a given filename, return true on success
|
|
|
|
// Doesn't supports deleting a directory
|
2020-12-03 21:13:16 +00:00
|
|
|
bool Delete(const std::string& filename, IfAbsentBehavior behavior)
|
2008-09-22 19:48:12 +00:00
|
|
|
{
|
2022-08-06 00:54:56 +00:00
|
|
|
DEBUG_LOG_FMT(COMMON, "{}: file {}", __func__, filename);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2020-06-27 09:04:48 +00:00
|
|
|
#ifdef ANDROID
|
2023-01-24 19:25:49 +00:00
|
|
|
if (filename.starts_with("content://"))
|
2020-06-27 09:04:48 +00:00
|
|
|
{
|
|
|
|
const bool success = DeleteAndroidContent(filename);
|
|
|
|
if (!success)
|
2022-08-06 00:54:56 +00:00
|
|
|
WARN_LOG_FMT(COMMON, "{} failed on {}", __func__, filename);
|
2020-06-27 09:04:48 +00:00
|
|
|
return success;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-08-06 00:54:56 +00:00
|
|
|
auto native_path = StringToPath(filename);
|
|
|
|
std::error_code error;
|
|
|
|
auto status = fs::status(native_path, error);
|
2017-06-29 09:20:38 +00:00
|
|
|
|
2020-06-27 09:04:48 +00:00
|
|
|
// Return true because we care about the file not being there, not the actual delete.
|
2022-08-06 00:54:56 +00:00
|
|
|
if (!fs::exists(status))
|
2011-03-01 03:06:14 +00:00
|
|
|
{
|
2020-12-03 21:13:16 +00:00
|
|
|
if (behavior == IfAbsentBehavior::ConsoleWarning)
|
|
|
|
{
|
2022-08-06 00:54:56 +00:00
|
|
|
WARN_LOG_FMT(COMMON, "{}: {} does not exist", __func__, filename);
|
2020-12-03 21:13:16 +00:00
|
|
|
}
|
2009-02-28 01:26:56 +00:00
|
|
|
return true;
|
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2022-08-06 00:54:56 +00:00
|
|
|
// fs::remove can only delete an empty directory. Legacy dolphin behavior is just to bail.
|
|
|
|
if (fs::is_directory(status))
|
2011-03-01 03:06:14 +00:00
|
|
|
{
|
2022-08-06 00:54:56 +00:00
|
|
|
WARN_LOG_FMT(COMMON, "{} failed: {} is a directory", __func__, filename);
|
2009-02-28 01:26:56 +00:00
|
|
|
return false;
|
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2022-08-06 00:54:56 +00:00
|
|
|
if (!fs::remove(native_path, error))
|
2011-03-01 03:06:14 +00:00
|
|
|
{
|
2022-08-06 00:54:56 +00:00
|
|
|
WARN_LOG_FMT(COMMON, "{}: failed on {}: {}", __func__, filename, error.message());
|
2009-02-28 01:26:56 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2008-07-20 12:26:32 +00:00
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2016-01-21 20:27:56 +00:00
|
|
|
bool CreateDir(const std::string& path)
|
2008-07-20 21:20:22 +00:00
|
|
|
{
|
2022-08-06 00:54:56 +00:00
|
|
|
DEBUG_LOG_FMT(COMMON, "{}: directory {}", __func__, path);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2022-08-06 00:54:56 +00:00
|
|
|
std::error_code error;
|
|
|
|
auto native_path = StringToPath(path);
|
|
|
|
bool success = fs::create_directory(native_path, error);
|
|
|
|
// If the path was not created, check if it was a pre-existing directory
|
2023-02-22 20:03:23 +00:00
|
|
|
std::error_code error_ignored;
|
|
|
|
if (!success && fs::is_directory(native_path, error_ignored))
|
2022-08-06 00:54:56 +00:00
|
|
|
success = true;
|
|
|
|
if (!success)
|
|
|
|
ERROR_LOG_FMT(COMMON, "{}: failed on {}: {}", __func__, path, error.message());
|
|
|
|
return success;
|
2008-08-17 19:28:24 +00:00
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2023-02-22 01:31:06 +00:00
|
|
|
bool CreateDirs(std::string_view path)
|
|
|
|
{
|
|
|
|
DEBUG_LOG_FMT(COMMON, "{}: directory {}", __func__, path);
|
|
|
|
|
|
|
|
std::error_code error;
|
|
|
|
auto native_path = StringToPath(path);
|
|
|
|
bool success = fs::create_directories(native_path, error);
|
|
|
|
// If the path was not created, check if it was a pre-existing directory
|
|
|
|
std::error_code error_ignored;
|
|
|
|
if (!success && fs::is_directory(native_path, error_ignored))
|
|
|
|
success = true;
|
|
|
|
if (!success)
|
|
|
|
ERROR_LOG_FMT(COMMON, "{}: failed on {}: {}", __func__, path, error.message());
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2023-02-15 01:13:47 +00:00
|
|
|
bool CreateFullPath(std::string_view fullPath)
|
2008-11-29 09:54:39 +00:00
|
|
|
{
|
2022-08-06 00:54:56 +00:00
|
|
|
DEBUG_LOG_FMT(COMMON, "{}: path {}", __func__, fullPath);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2022-08-06 00:54:56 +00:00
|
|
|
std::error_code error;
|
2023-02-15 01:13:47 +00:00
|
|
|
auto native_path = StringToPath(fullPath).parent_path();
|
2022-08-06 00:54:56 +00:00
|
|
|
bool success = fs::create_directories(native_path, error);
|
|
|
|
// If the path was not created, check if it was a pre-existing directory
|
2023-02-22 20:03:23 +00:00
|
|
|
std::error_code error_ignored;
|
|
|
|
if (!success && fs::is_directory(native_path, error_ignored))
|
2022-08-06 00:54:56 +00:00
|
|
|
success = true;
|
|
|
|
if (!success)
|
|
|
|
ERROR_LOG_FMT(COMMON, "{}: failed on {}: {}", __func__, fullPath, error.message());
|
|
|
|
return success;
|
2008-11-29 09:54:39 +00:00
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
// Deletes a directory filename, returns true on success
|
2020-12-03 21:13:16 +00:00
|
|
|
bool DeleteDir(const std::string& filename, IfAbsentBehavior behavior)
|
2008-11-02 14:43:22 +00:00
|
|
|
{
|
2022-08-06 00:54:56 +00:00
|
|
|
DEBUG_LOG_FMT(COMMON, "{}: directory {}", __func__, filename);
|
|
|
|
|
|
|
|
auto native_path = StringToPath(filename);
|
|
|
|
std::error_code error;
|
|
|
|
auto status = fs::status(native_path, error);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2020-12-03 21:07:17 +00:00
|
|
|
// Return true because we care about the directory not being there, not the actual delete.
|
2022-08-06 00:54:56 +00:00
|
|
|
if (!fs::exists(status))
|
2020-12-03 21:07:17 +00:00
|
|
|
{
|
2020-12-03 21:13:16 +00:00
|
|
|
if (behavior == IfAbsentBehavior::ConsoleWarning)
|
|
|
|
{
|
2022-08-06 00:54:56 +00:00
|
|
|
WARN_LOG_FMT(COMMON, "{}: {} does not exist", __func__, filename);
|
2020-12-03 21:13:16 +00:00
|
|
|
}
|
2020-12-03 21:07:17 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
// check if a directory
|
2022-08-06 00:54:56 +00:00
|
|
|
if (!fs::is_directory(status))
|
2011-03-01 03:06:14 +00:00
|
|
|
{
|
2022-08-06 00:54:56 +00:00
|
|
|
ERROR_LOG_FMT(COMMON, "{}: Not a directory {}", __func__, filename);
|
2008-11-02 14:43:22 +00:00
|
|
|
return false;
|
2009-02-28 01:26:56 +00:00
|
|
|
}
|
|
|
|
|
2022-08-06 00:54:56 +00:00
|
|
|
if (!fs::remove(native_path, error))
|
|
|
|
{
|
|
|
|
WARN_LOG_FMT(COMMON, "{}: failed on {}: {}", __func__, filename, error.message());
|
|
|
|
return false;
|
|
|
|
}
|
2009-02-28 01:26:56 +00:00
|
|
|
|
2022-08-06 00:54:56 +00:00
|
|
|
return true;
|
2008-11-02 14:43:22 +00:00
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
// renames file srcFilename to destFilename, returns true on success
|
2016-01-21 20:27:56 +00:00
|
|
|
bool Rename(const std::string& srcFilename, const std::string& destFilename)
|
2008-11-06 22:01:09 +00:00
|
|
|
{
|
2022-08-06 00:54:56 +00:00
|
|
|
DEBUG_LOG_FMT(COMMON, "{}: {} --> {}", __func__, srcFilename, destFilename);
|
2022-10-30 02:30:15 +00:00
|
|
|
std::error_code error;
|
2022-08-06 00:54:56 +00:00
|
|
|
std::filesystem::rename(StringToPath(srcFilename), StringToPath(destFilename), error);
|
2022-10-30 02:30:15 +00:00
|
|
|
if (error)
|
|
|
|
{
|
2022-08-06 00:54:56 +00:00
|
|
|
ERROR_LOG_FMT(COMMON, "{} failed: {} --> {}: {}", __func__, srcFilename, destFilename,
|
2022-10-30 02:30:15 +00:00
|
|
|
error.message());
|
|
|
|
}
|
2022-08-06 00:54:56 +00:00
|
|
|
return !error;
|
2008-11-06 22:01:09 +00:00
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2013-10-15 06:52:06 +00:00
|
|
|
#ifndef _WIN32
|
2016-01-21 19:46:25 +00:00
|
|
|
static void FSyncPath(const char* path)
|
2013-10-15 06:52:06 +00:00
|
|
|
{
|
|
|
|
int fd = open(path, O_RDONLY);
|
|
|
|
if (fd != -1)
|
|
|
|
{
|
|
|
|
fsync(fd);
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-01-21 20:27:56 +00:00
|
|
|
bool RenameSync(const std::string& srcFilename, const std::string& destFilename)
|
2013-10-15 06:52:06 +00:00
|
|
|
{
|
|
|
|
if (!Rename(srcFilename, destFilename))
|
|
|
|
return false;
|
|
|
|
#ifdef _WIN32
|
2022-08-06 00:54:56 +00:00
|
|
|
int fd = -1;
|
|
|
|
// XXX is this really needed?
|
|
|
|
errno_t err = _wsopen_s(&fd, UTF8ToWString(srcFilename).c_str(), _O_RDONLY, _SH_DENYNO,
|
|
|
|
_S_IREAD | _S_IWRITE);
|
|
|
|
if (!err && fd >= 0)
|
|
|
|
{
|
|
|
|
if (_commit(fd) != 0)
|
|
|
|
ERROR_LOG_FMT(COMMON, "{} sync failed on {}: {}", __func__, srcFilename, err);
|
2013-10-15 06:52:06 +00:00
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
#else
|
2016-01-21 19:46:25 +00:00
|
|
|
char* path = strdup(srcFilename.c_str());
|
2013-10-15 06:52:06 +00:00
|
|
|
FSyncPath(path);
|
|
|
|
FSyncPath(dirname(path));
|
|
|
|
free(path);
|
|
|
|
path = strdup(destFilename.c_str());
|
|
|
|
FSyncPath(dirname(path));
|
|
|
|
free(path);
|
|
|
|
#endif
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-02-22 00:54:41 +00:00
|
|
|
bool CopyRegularFile(std::string_view source_path, std::string_view destination_path)
|
2008-11-29 08:49:22 +00:00
|
|
|
{
|
2022-08-06 00:54:56 +00:00
|
|
|
DEBUG_LOG_FMT(COMMON, "{}: {} --> {}", __func__, source_path, destination_path);
|
2022-07-05 19:13:20 +00:00
|
|
|
|
2022-08-06 00:54:56 +00:00
|
|
|
auto src_path = StringToPath(source_path);
|
|
|
|
auto dst_path = StringToPath(destination_path);
|
|
|
|
std::error_code error;
|
|
|
|
bool copied = fs::copy_file(src_path, dst_path, fs::copy_options::overwrite_existing, error);
|
|
|
|
if (!copied)
|
2022-07-05 19:13:20 +00:00
|
|
|
{
|
2022-08-06 00:54:56 +00:00
|
|
|
ERROR_LOG_FMT(COMMON, "{}: failed {} --> {}: {}", __func__, source_path, destination_path,
|
|
|
|
error.message());
|
2022-07-05 19:13:20 +00:00
|
|
|
}
|
2022-08-06 00:54:56 +00:00
|
|
|
return copied;
|
2008-09-05 13:12:47 +00:00
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2017-06-29 09:20:38 +00:00
|
|
|
// Returns the size of a file (or returns 0 if the path isn't a file that exists)
|
|
|
|
u64 GetSize(const std::string& path)
|
2008-09-22 19:48:12 +00:00
|
|
|
{
|
2017-06-29 09:20:38 +00:00
|
|
|
return FileInfo(path).GetSize();
|
2008-09-23 23:27:38 +00:00
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2010-12-03 12:42:01 +00:00
|
|
|
// Overloaded GetSize, accepts FILE*
|
2016-01-21 20:16:51 +00:00
|
|
|
u64 GetSize(FILE* f)
|
2010-12-03 12:42:01 +00:00
|
|
|
{
|
2010-12-31 10:40:49 +00:00
|
|
|
// can't use off_t here because it can be 32-bit
|
2020-10-23 18:41:30 +00:00
|
|
|
const u64 pos = ftello(f);
|
2014-08-30 20:14:56 +00:00
|
|
|
if (fseeko(f, 0, SEEK_END) != 0)
|
|
|
|
{
|
2023-04-18 16:50:31 +00:00
|
|
|
ERROR_LOG_FMT(COMMON, "GetSize: seek failed {}: {}", fmt::ptr(f), Common::LastStrerrorString());
|
2010-12-21 18:03:44 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2020-10-23 18:41:30 +00:00
|
|
|
const u64 size = ftello(f);
|
2014-08-30 20:14:56 +00:00
|
|
|
if ((size != pos) && (fseeko(f, pos, SEEK_SET) != 0))
|
|
|
|
{
|
2023-04-18 16:50:31 +00:00
|
|
|
ERROR_LOG_FMT(COMMON, "GetSize: seek failed {}: {}", fmt::ptr(f), Common::LastStrerrorString());
|
2010-12-21 18:03:44 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2010-12-21 18:03:44 +00:00
|
|
|
return size;
|
2010-12-03 12:42:01 +00:00
|
|
|
}
|
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
// creates an empty file filename, returns true on success
|
2016-01-21 20:27:56 +00:00
|
|
|
bool CreateEmptyFile(const std::string& filename)
|
2008-09-23 23:27:38 +00:00
|
|
|
{
|
2022-03-08 22:07:37 +00:00
|
|
|
DEBUG_LOG_FMT(COMMON, "CreateEmptyFile: {}", filename);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2013-02-28 01:43:29 +00:00
|
|
|
if (!File::IOFile(filename, "wb"))
|
|
|
|
{
|
2023-04-18 16:50:31 +00:00
|
|
|
ERROR_LOG_FMT(COMMON, "CreateEmptyFile: failed {}: {}", filename, Common::LastStrerrorString());
|
2009-02-28 01:26:56 +00:00
|
|
|
return false;
|
2008-09-23 23:27:38 +00:00
|
|
|
}
|
2013-02-28 01:43:29 +00:00
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
return true;
|
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2023-01-10 13:13:18 +00:00
|
|
|
#ifdef ANDROID
|
|
|
|
static FSTEntry ScanDirectoryTreeAndroidContent(std::string directory, bool recursive)
|
2008-09-23 23:27:38 +00:00
|
|
|
{
|
2014-11-15 20:46:40 +00:00
|
|
|
FSTEntry parent_entry;
|
|
|
|
parent_entry.physicalName = directory;
|
|
|
|
parent_entry.isDirectory = true;
|
|
|
|
parent_entry.size = 0;
|
2020-11-08 15:57:49 +00:00
|
|
|
|
2023-01-10 13:13:18 +00:00
|
|
|
for (const auto& child_name : GetAndroidContentChildNames(directory))
|
2020-11-08 15:57:49 +00:00
|
|
|
{
|
2023-01-10 13:13:18 +00:00
|
|
|
const auto physical_name = directory + DIR_SEP + child_name;
|
2017-06-29 09:20:38 +00:00
|
|
|
const FileInfo file_info(physical_name);
|
2023-01-10 13:13:18 +00:00
|
|
|
FSTEntry entry;
|
|
|
|
|
2017-06-29 09:20:38 +00:00
|
|
|
entry.isDirectory = file_info.IsDirectory();
|
2014-11-15 20:46:40 +00:00
|
|
|
if (entry.isDirectory)
|
|
|
|
{
|
|
|
|
if (recursive)
|
2023-01-10 13:13:18 +00:00
|
|
|
entry = ScanDirectoryTreeAndroidContent(physical_name, true);
|
2014-11-15 20:46:40 +00:00
|
|
|
else
|
|
|
|
entry.size = 0;
|
2015-08-26 17:21:09 +00:00
|
|
|
parent_entry.size += entry.size;
|
2014-11-15 20:46:40 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-06-29 09:20:38 +00:00
|
|
|
entry.size = file_info.GetSize();
|
2014-11-15 20:46:40 +00:00
|
|
|
}
|
2023-01-10 13:13:18 +00:00
|
|
|
entry.virtualName = child_name;
|
2014-11-15 20:46:40 +00:00
|
|
|
entry.physicalName = physical_name;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2014-11-15 20:46:40 +00:00
|
|
|
++parent_entry.size;
|
|
|
|
parent_entry.children.push_back(entry);
|
2008-12-29 02:11:56 +00:00
|
|
|
}
|
2016-12-25 20:57:33 +00:00
|
|
|
|
2014-11-15 20:46:40 +00:00
|
|
|
return parent_entry;
|
2008-11-01 15:59:06 +00:00
|
|
|
}
|
2023-01-10 13:13:18 +00:00
|
|
|
#endif
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2023-01-10 13:13:18 +00:00
|
|
|
// Recursive or non-recursive list of files and directories under directory.
|
|
|
|
FSTEntry ScanDirectoryTree(std::string directory, bool recursive)
|
2008-11-02 14:43:22 +00:00
|
|
|
{
|
2023-01-10 13:13:18 +00:00
|
|
|
DEBUG_LOG_FMT(COMMON, "{}: directory {}", __func__, directory);
|
2016-04-25 06:03:39 +00:00
|
|
|
|
2023-01-10 13:13:18 +00:00
|
|
|
#ifdef ANDROID
|
|
|
|
if (IsPathAndroidContent(directory))
|
|
|
|
return ScanDirectoryTreeAndroidContent(directory, recursive);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
auto path_to_physical_name = [](const fs::path& path) {
|
2008-11-02 14:43:22 +00:00
|
|
|
#ifdef _WIN32
|
2023-01-10 13:13:18 +00:00
|
|
|
// TODO Ideally this would not be needed - dolphin really should not have code directly mucking
|
|
|
|
// about with directory separators (for host paths - emulated paths may require it) and instead
|
|
|
|
// use fs::path to interact with them.
|
|
|
|
auto wpath = path.wstring();
|
|
|
|
std::replace(wpath.begin(), wpath.end(), L'\\', L'/');
|
|
|
|
return WStringToUTF8(wpath);
|
2009-02-28 01:26:56 +00:00
|
|
|
#else
|
2023-01-10 13:13:18 +00:00
|
|
|
return PathToString(path);
|
2008-09-23 23:27:38 +00:00
|
|
|
#endif
|
2023-01-10 13:13:18 +00:00
|
|
|
};
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2023-01-10 13:13:18 +00:00
|
|
|
auto dirent_to_fstent = [&](const fs::directory_entry& entry) {
|
|
|
|
return FSTEntry{
|
|
|
|
.isDirectory = entry.is_directory(),
|
2023-09-25 02:36:15 +00:00
|
|
|
.size = entry.is_directory() || entry.is_fifo() ? 0 : entry.file_size(),
|
2023-01-10 13:13:18 +00:00
|
|
|
.physicalName = path_to_physical_name(entry.path()),
|
|
|
|
.virtualName = PathToString(entry.path().filename()),
|
|
|
|
};
|
|
|
|
};
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2023-01-10 13:13:18 +00:00
|
|
|
auto calc_dir_size = [](FSTEntry* dir) {
|
|
|
|
dir->size += dir->children.size();
|
|
|
|
for (auto& child : dir->children)
|
|
|
|
if (child.isDirectory)
|
|
|
|
dir->size += child.size;
|
|
|
|
};
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2023-01-10 13:13:18 +00:00
|
|
|
const auto directory_path = StringToPath(directory);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2023-01-10 13:13:18 +00:00
|
|
|
FSTEntry parent_entry;
|
|
|
|
parent_entry.physicalName = path_to_physical_name(directory_path);
|
|
|
|
parent_entry.isDirectory = fs::is_directory(directory_path);
|
|
|
|
parent_entry.size = 0;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2023-01-10 13:13:18 +00:00
|
|
|
std::error_code error;
|
|
|
|
if (recursive)
|
|
|
|
{
|
|
|
|
int prev_depth = 0;
|
|
|
|
std::stack<FSTEntry*> dir_fsts;
|
|
|
|
dir_fsts.push(&parent_entry);
|
|
|
|
for (auto it = fs::recursive_directory_iterator(directory_path, error);
|
|
|
|
it != fs::recursive_directory_iterator(); it.increment(error))
|
2011-03-01 03:06:14 +00:00
|
|
|
{
|
2023-01-10 13:13:18 +00:00
|
|
|
const int cur_depth = it.depth();
|
|
|
|
if (cur_depth > prev_depth)
|
2013-01-24 13:21:08 +00:00
|
|
|
{
|
2023-01-10 13:13:18 +00:00
|
|
|
dir_fsts.push(&dir_fsts.top()->children.back());
|
2013-01-24 13:21:08 +00:00
|
|
|
}
|
2023-01-10 13:13:18 +00:00
|
|
|
else if (cur_depth < prev_depth)
|
2013-01-24 13:21:08 +00:00
|
|
|
{
|
2023-03-23 17:28:44 +00:00
|
|
|
while (dir_fsts.size() != static_cast<size_t>(cur_depth) + 1u)
|
2023-01-10 13:13:18 +00:00
|
|
|
{
|
|
|
|
calc_dir_size(dir_fsts.top());
|
|
|
|
dir_fsts.pop();
|
|
|
|
}
|
2013-01-24 13:21:08 +00:00
|
|
|
}
|
2023-01-10 13:13:18 +00:00
|
|
|
dir_fsts.top()->children.emplace_back(dirent_to_fstent(*it));
|
|
|
|
prev_depth = cur_depth;
|
|
|
|
}
|
|
|
|
while (dir_fsts.size())
|
|
|
|
{
|
|
|
|
calc_dir_size(dir_fsts.top());
|
|
|
|
dir_fsts.pop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (auto it = fs::directory_iterator(directory_path, error); it != fs::directory_iterator();
|
|
|
|
it.increment(error))
|
|
|
|
{
|
|
|
|
parent_entry.children.emplace_back(dirent_to_fstent(*it));
|
2009-02-28 01:26:56 +00:00
|
|
|
}
|
2023-01-10 13:13:18 +00:00
|
|
|
calc_dir_size(&parent_entry);
|
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2023-01-10 13:13:18 +00:00
|
|
|
if (error)
|
|
|
|
{
|
|
|
|
// NOTE Possibly partial file list still returned
|
|
|
|
ERROR_LOG_FMT(COMMON, "{} error on {}: {}", __func__, directory, error.message());
|
2009-02-28 01:26:56 +00:00
|
|
|
}
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2014-11-15 20:46:40 +00:00
|
|
|
return parent_entry;
|
2008-11-01 15:59:06 +00:00
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2011-03-01 03:06:14 +00:00
|
|
|
// Deletes the given directory and anything under it. Returns true on success.
|
2016-01-21 20:27:56 +00:00
|
|
|
bool DeleteDirRecursively(const std::string& directory)
|
2008-11-02 14:43:22 +00:00
|
|
|
{
|
2022-08-06 00:54:56 +00:00
|
|
|
DEBUG_LOG_FMT(COMMON, "{}: {}", __func__, directory);
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2022-08-06 00:54:56 +00:00
|
|
|
std::error_code error;
|
|
|
|
const std::uintmax_t num_removed = std::filesystem::remove_all(StringToPath(directory), error);
|
|
|
|
const bool success = num_removed != 0 && !error;
|
|
|
|
if (!success)
|
|
|
|
ERROR_LOG_FMT(COMMON, "{}: {} failed {}", __func__, directory, error.message());
|
2016-04-25 06:03:39 +00:00
|
|
|
return success;
|
2008-11-02 14:43:22 +00:00
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2023-02-22 01:17:11 +00:00
|
|
|
bool Copy(std::string_view source_path, std::string_view dest_path, bool overwrite_existing)
|
|
|
|
{
|
|
|
|
DEBUG_LOG_FMT(COMMON, "{}: {} --> {} ({})", __func__, source_path, dest_path,
|
|
|
|
overwrite_existing ? "overwrite" : "preserve");
|
|
|
|
|
|
|
|
auto src_path = StringToPath(source_path);
|
|
|
|
auto dst_path = StringToPath(dest_path);
|
|
|
|
std::error_code error;
|
|
|
|
auto options = fs::copy_options::recursive;
|
|
|
|
if (overwrite_existing)
|
|
|
|
options |= fs::copy_options::overwrite_existing;
|
|
|
|
fs::copy(src_path, dst_path, options, error);
|
|
|
|
if (error)
|
|
|
|
{
|
|
|
|
std::error_code error_ignored;
|
|
|
|
if (fs::equivalent(src_path, dst_path, error_ignored))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
ERROR_LOG_FMT(COMMON, "{}: failed {} --> {} ({}): {}", __func__, source_path, dest_path,
|
|
|
|
overwrite_existing ? "overwrite" : "preserve", error.message());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-02-24 20:39:02 +00:00
|
|
|
static bool MoveWithOverwrite(const std::filesystem::path& src, const std::filesystem::path& dst,
|
|
|
|
std::error_code& error)
|
|
|
|
{
|
|
|
|
fs::rename(src, dst, error);
|
|
|
|
if (!error)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// rename failed, try fallbacks
|
|
|
|
|
|
|
|
if (!fs::is_directory(src))
|
|
|
|
{
|
|
|
|
// src is not a directory (ie, probably a file), try to copy file + delete
|
|
|
|
if (!fs::copy_file(src, dst, fs::copy_options::overwrite_existing, error))
|
|
|
|
return false;
|
|
|
|
if (!fs::remove(src, error))
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// src is a directory, recurse into it and try to move all sub-elements one by one
|
|
|
|
// this usually happens because the target is a non-empty directory
|
|
|
|
for (fs::directory_iterator it(src, error); it != fs::directory_iterator(); it.increment(error))
|
|
|
|
{
|
|
|
|
if (error)
|
|
|
|
return false;
|
|
|
|
if (!MoveWithOverwrite(it->path(), dst / it->path().filename(), error))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (error)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// all sub-elements moved, remove top directory
|
|
|
|
if (!fs::remove(src, error))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MoveWithOverwrite(std::string_view source_path, std::string_view dest_path)
|
|
|
|
{
|
|
|
|
DEBUG_LOG_FMT(COMMON, "{}: {} --> {}", __func__, source_path, dest_path);
|
|
|
|
auto src_path = StringToPath(source_path);
|
|
|
|
auto dst_path = StringToPath(dest_path);
|
|
|
|
std::error_code error;
|
|
|
|
if (!MoveWithOverwrite(src_path, dst_path, error))
|
|
|
|
{
|
|
|
|
ERROR_LOG_FMT(COMMON, "{}: failed {} --> {}: {}", __func__, source_path, dest_path,
|
|
|
|
error.message());
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-08-06 06:18:22 +00:00
|
|
|
// Returns the current directory
|
|
|
|
std::string GetCurrentDir()
|
2008-12-01 06:46:50 +00:00
|
|
|
{
|
2022-08-06 00:54:56 +00:00
|
|
|
std::error_code error;
|
|
|
|
auto directory = PathToString(fs::current_path(error));
|
|
|
|
if (error)
|
2014-08-30 20:14:56 +00:00
|
|
|
{
|
2022-08-06 00:54:56 +00:00
|
|
|
ERROR_LOG_FMT(COMMON, "{} failed: {}", __func__, error.message());
|
|
|
|
return {};
|
2009-02-28 01:26:56 +00:00
|
|
|
}
|
2022-08-06 00:54:56 +00:00
|
|
|
return directory;
|
2008-12-01 06:46:50 +00:00
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
// Sets the current directory to the given directory
|
2016-01-21 20:27:56 +00:00
|
|
|
bool SetCurrentDir(const std::string& directory)
|
2009-02-24 07:18:08 +00:00
|
|
|
{
|
2022-08-06 00:54:56 +00:00
|
|
|
std::error_code error;
|
|
|
|
fs::current_path(StringToPath(directory), error);
|
|
|
|
if (error)
|
|
|
|
{
|
|
|
|
ERROR_LOG_FMT(COMMON, "{} failed: {}", __func__, error.message());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
2009-02-24 07:18:08 +00:00
|
|
|
}
|
|
|
|
|
2014-11-18 01:59:14 +00:00
|
|
|
std::string CreateTempDir()
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
TCHAR temp[MAX_PATH];
|
|
|
|
if (!GetTempPath(MAX_PATH, temp))
|
|
|
|
return "";
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2014-11-18 01:59:14 +00:00
|
|
|
GUID guid;
|
2020-08-18 00:24:03 +00:00
|
|
|
if (FAILED(CoCreateGuid(&guid)))
|
|
|
|
{
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
OLECHAR tguid[40]{};
|
|
|
|
if (!StringFromGUID2(guid, tguid, _countof(tguid)))
|
|
|
|
{
|
|
|
|
return "";
|
|
|
|
}
|
2014-11-18 01:59:14 +00:00
|
|
|
std::string dir = TStrToUTF8(temp) + "/" + TStrToUTF8(tguid);
|
|
|
|
if (!CreateDir(dir))
|
|
|
|
return "";
|
|
|
|
dir = ReplaceAll(dir, "\\", DIR_SEP);
|
|
|
|
return dir;
|
|
|
|
#else
|
|
|
|
const char* base = getenv("TMPDIR") ?: "/tmp";
|
|
|
|
std::string path = std::string(base) + "/DolphinWii.XXXXXX";
|
|
|
|
if (!mkdtemp(&path[0]))
|
|
|
|
return "";
|
|
|
|
return path;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2019-10-06 19:37:51 +00:00
|
|
|
std::string GetTempFilenameForAtomicWrite(std::string path)
|
2013-10-15 06:52:06 +00:00
|
|
|
{
|
2022-08-06 00:54:56 +00:00
|
|
|
std::error_code error;
|
|
|
|
auto absolute_path = fs::absolute(StringToPath(path), error);
|
|
|
|
if (!error)
|
|
|
|
path = PathToString(absolute_path);
|
2019-10-06 19:37:51 +00:00
|
|
|
return std::move(path) + ".xxx";
|
2013-10-15 06:52:06 +00:00
|
|
|
}
|
|
|
|
|
2009-02-28 23:21:51 +00:00
|
|
|
#if defined(__APPLE__)
|
|
|
|
std::string GetBundleDirectory()
|
|
|
|
{
|
2020-06-29 17:53:34 +00:00
|
|
|
CFURLRef bundle_ref = CFBundleCopyBundleURL(CFBundleGetMainBundle());
|
|
|
|
|
|
|
|
// Starting in macOS Sierra, apps downloaded from the Internet may be
|
|
|
|
// "translocated" to a read-only DMG and executed from there. This is
|
|
|
|
// done to prevent a scenario where an attacker can replace a trusted
|
|
|
|
// app's resources to load untrusted code.
|
|
|
|
//
|
|
|
|
// We should return Dolphin's actual location on the filesystem in
|
|
|
|
// this function, so bundle_ref will be untranslocated if necessary.
|
|
|
|
//
|
|
|
|
// More information: https://objective-see.com/blog/blog_0x15.html
|
|
|
|
|
2021-08-17 18:04:33 +00:00
|
|
|
// The APIs to deal with translocated paths are private, so we have
|
|
|
|
// to dynamically load them from the Security framework.
|
|
|
|
//
|
|
|
|
// The headers can be found under "Security" on opensource.apple.com:
|
|
|
|
// Security/OSX/libsecurity_translocate/lib/SecTranslocate.h
|
|
|
|
if (!s_security_framework.IsOpen())
|
|
|
|
{
|
|
|
|
s_security_framework.Open("/System/Library/Frameworks/Security.framework/Security");
|
|
|
|
s_security_framework.GetSymbol("SecTranslocateIsTranslocatedURL", &s_is_translocated_url);
|
|
|
|
s_security_framework.GetSymbol("SecTranslocateCreateOriginalPathForURL", &s_create_orig_path);
|
|
|
|
}
|
2020-06-29 17:53:34 +00:00
|
|
|
|
2021-08-17 18:04:33 +00:00
|
|
|
bool is_translocated = false;
|
|
|
|
s_is_translocated_url(bundle_ref, &is_translocated, nullptr);
|
|
|
|
|
|
|
|
if (is_translocated)
|
|
|
|
{
|
|
|
|
CFURLRef untranslocated_ref = s_create_orig_path(bundle_ref, nullptr);
|
|
|
|
CFRelease(bundle_ref);
|
|
|
|
bundle_ref = untranslocated_ref;
|
2020-06-29 17:53:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
char app_bundle_path[MAXPATHLEN];
|
|
|
|
CFStringRef bundle_path = CFURLCopyFileSystemPath(bundle_ref, kCFURLPOSIXPathStyle);
|
|
|
|
CFStringGetFileSystemRepresentation(bundle_path, app_bundle_path, sizeof(app_bundle_path));
|
|
|
|
CFRelease(bundle_ref);
|
|
|
|
CFRelease(bundle_path);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2020-06-29 17:53:34 +00:00
|
|
|
return app_bundle_path;
|
2009-02-28 23:21:51 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-03-22 23:29:03 +00:00
|
|
|
std::string GetExePath()
|
2011-06-11 20:45:09 +00:00
|
|
|
{
|
2015-11-07 18:50:47 +00:00
|
|
|
#ifdef _WIN32
|
2023-04-18 16:50:31 +00:00
|
|
|
auto exe_path = Common::GetModuleName(nullptr);
|
2022-08-06 00:54:56 +00:00
|
|
|
if (!exe_path)
|
|
|
|
return {};
|
|
|
|
std::error_code error;
|
|
|
|
auto exe_path_absolute = fs::absolute(exe_path.value(), error);
|
|
|
|
if (error)
|
|
|
|
return {};
|
|
|
|
return PathToString(exe_path_absolute);
|
2019-01-20 01:24:26 +00:00
|
|
|
#elif defined(__APPLE__)
|
2022-08-06 00:54:56 +00:00
|
|
|
return GetBundleDirectory();
|
2015-11-07 18:50:47 +00:00
|
|
|
#else
|
2022-08-06 00:54:56 +00:00
|
|
|
char dolphin_exe_path[PATH_MAX];
|
|
|
|
ssize_t len = ::readlink("/proc/self/exe", dolphin_exe_path, sizeof(dolphin_exe_path));
|
|
|
|
if (len == -1 || len == sizeof(dolphin_exe_path))
|
|
|
|
{
|
|
|
|
len = 0;
|
|
|
|
}
|
|
|
|
dolphin_exe_path[len] = '\0';
|
|
|
|
return dolphin_exe_path;
|
2015-11-07 18:50:47 +00:00
|
|
|
#endif
|
2018-03-22 23:29:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string GetExeDirectory()
|
|
|
|
{
|
2022-08-06 00:54:56 +00:00
|
|
|
return PathToString(StringToPath(GetExePath()).parent_path());
|
2011-06-11 20:45:09 +00:00
|
|
|
}
|
|
|
|
|
2022-05-27 21:25:43 +00:00
|
|
|
static std::string CreateSysDirectoryPath()
|
2009-02-28 23:21:51 +00:00
|
|
|
{
|
2017-09-09 16:53:55 +00:00
|
|
|
#if defined(_WIN32) || defined(LINUX_LOCAL_DEV)
|
|
|
|
#define SYSDATA_DIR "Sys"
|
|
|
|
#elif defined __APPLE__
|
|
|
|
#define SYSDATA_DIR "Contents/Resources/Sys"
|
|
|
|
#else
|
|
|
|
#ifdef DATA_DIR
|
|
|
|
#define SYSDATA_DIR DATA_DIR "sys"
|
|
|
|
#else
|
|
|
|
#define SYSDATA_DIR "sys"
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2009-02-28 23:21:51 +00:00
|
|
|
#if defined(__APPLE__)
|
2022-05-28 06:49:28 +00:00
|
|
|
const std::string sys_directory = GetBundleDirectory() + DIR_SEP SYSDATA_DIR DIR_SEP;
|
2015-11-07 18:50:47 +00:00
|
|
|
#elif defined(_WIN32) || defined(LINUX_LOCAL_DEV)
|
2022-05-28 06:49:28 +00:00
|
|
|
const std::string sys_directory = GetExeDirectory() + DIR_SEP SYSDATA_DIR DIR_SEP;
|
2017-09-09 09:27:24 +00:00
|
|
|
#elif defined ANDROID
|
2022-05-28 06:49:28 +00:00
|
|
|
const std::string sys_directory = s_android_sys_directory + DIR_SEP;
|
|
|
|
ASSERT_MSG(COMMON, !s_android_sys_directory.empty(), "Sys directory has not been set");
|
2009-02-28 23:21:51 +00:00
|
|
|
#else
|
2022-05-28 06:49:28 +00:00
|
|
|
const std::string sys_directory = SYSDATA_DIR DIR_SEP;
|
2009-02-28 23:21:51 +00:00
|
|
|
#endif
|
2010-06-05 18:52:56 +00:00
|
|
|
|
2022-05-28 06:49:28 +00:00
|
|
|
INFO_LOG_FMT(COMMON, "CreateSysDirectoryPath: Setting to {}", sys_directory);
|
|
|
|
return sys_directory;
|
2009-02-28 23:21:51 +00:00
|
|
|
}
|
2009-04-18 11:31:37 +00:00
|
|
|
|
2022-05-27 21:25:43 +00:00
|
|
|
const std::string& GetSysDirectory()
|
|
|
|
{
|
|
|
|
static const std::string sys_directory = CreateSysDirectoryPath();
|
|
|
|
return sys_directory;
|
|
|
|
}
|
|
|
|
|
2017-09-09 09:27:24 +00:00
|
|
|
#ifdef ANDROID
|
|
|
|
void SetSysDirectory(const std::string& path)
|
|
|
|
{
|
2020-10-23 18:41:30 +00:00
|
|
|
INFO_LOG_FMT(COMMON, "Setting Sys directory to {}", path);
|
2022-05-31 23:14:59 +00:00
|
|
|
ASSERT_MSG(COMMON, s_android_sys_directory.empty(), "Sys directory already set to {}",
|
|
|
|
s_android_sys_directory);
|
2017-09-09 09:27:24 +00:00
|
|
|
s_android_sys_directory = path;
|
|
|
|
}
|
2023-05-31 22:05:06 +00:00
|
|
|
|
|
|
|
void SetGpuDriverDirectories(const std::string& path, const std::string& lib_path)
|
|
|
|
{
|
|
|
|
INFO_LOG_FMT(COMMON, "Setting Driver directory to {} and library path to {}", path, lib_path);
|
|
|
|
ASSERT_MSG(COMMON, s_android_driver_directory.empty(), "Driver directory already set to {}",
|
|
|
|
s_android_driver_directory);
|
|
|
|
ASSERT_MSG(COMMON, s_android_lib_directory.empty(), "Library directory already set to {}",
|
|
|
|
s_android_lib_directory);
|
|
|
|
s_android_driver_directory = path;
|
|
|
|
s_android_lib_directory = lib_path;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string GetGpuDriverDirectory(unsigned int dir_index)
|
|
|
|
{
|
|
|
|
switch (dir_index)
|
|
|
|
{
|
|
|
|
case D_GPU_DRIVERS_EXTRACTED:
|
|
|
|
return s_android_driver_directory + DIR_SEP GPU_DRIVERS_EXTRACTED DIR_SEP;
|
|
|
|
case D_GPU_DRIVERS_TMP:
|
|
|
|
return s_android_driver_directory + DIR_SEP GPU_DRIVERS_TMP DIR_SEP;
|
|
|
|
case D_GPU_DRIVERS_HOOKS:
|
|
|
|
return s_android_lib_directory;
|
|
|
|
case D_GPU_DRIVERS_FILE_REDIRECT:
|
|
|
|
return s_android_driver_directory + DIR_SEP GPU_DRIVERS_FILE_REDIRECT DIR_SEP;
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2017-09-09 09:27:24 +00:00
|
|
|
#endif
|
|
|
|
|
2015-03-15 13:51:13 +00:00
|
|
|
static std::string s_user_paths[NUM_PATH_INDICES];
|
|
|
|
static void RebuildUserDirectories(unsigned int dir_index)
|
2009-02-28 23:21:51 +00:00
|
|
|
{
|
2015-03-15 13:51:13 +00:00
|
|
|
switch (dir_index)
|
|
|
|
{
|
|
|
|
case D_USER_IDX:
|
|
|
|
s_user_paths[D_GCUSER_IDX] = s_user_paths[D_USER_IDX] + GC_USER_DIR DIR_SEP;
|
2021-11-22 02:20:17 +00:00
|
|
|
s_user_paths[D_WIIROOT_IDX] = s_user_paths[D_USER_IDX] + WII_USER_DIR DIR_SEP;
|
2015-03-15 13:51:13 +00:00
|
|
|
s_user_paths[D_CONFIG_IDX] = s_user_paths[D_USER_IDX] + CONFIG_DIR DIR_SEP;
|
|
|
|
s_user_paths[D_GAMESETTINGS_IDX] = s_user_paths[D_USER_IDX] + GAMESETTINGS_DIR DIR_SEP;
|
|
|
|
s_user_paths[D_MAPS_IDX] = s_user_paths[D_USER_IDX] + MAPS_DIR DIR_SEP;
|
|
|
|
s_user_paths[D_CACHE_IDX] = s_user_paths[D_USER_IDX] + CACHE_DIR DIR_SEP;
|
2018-07-30 01:16:37 +00:00
|
|
|
s_user_paths[D_COVERCACHE_IDX] = s_user_paths[D_CACHE_IDX] + COVERCACHE_DIR DIR_SEP;
|
2019-08-23 11:20:09 +00:00
|
|
|
s_user_paths[D_REDUMPCACHE_IDX] = s_user_paths[D_CACHE_IDX] + REDUMPCACHE_DIR DIR_SEP;
|
2015-04-18 17:34:46 +00:00
|
|
|
s_user_paths[D_SHADERCACHE_IDX] = s_user_paths[D_CACHE_IDX] + SHADERCACHE_DIR DIR_SEP;
|
2015-03-15 13:51:13 +00:00
|
|
|
s_user_paths[D_SHADERS_IDX] = s_user_paths[D_USER_IDX] + SHADERS_DIR DIR_SEP;
|
|
|
|
s_user_paths[D_STATESAVES_IDX] = s_user_paths[D_USER_IDX] + STATESAVES_DIR DIR_SEP;
|
|
|
|
s_user_paths[D_SCREENSHOTS_IDX] = s_user_paths[D_USER_IDX] + SCREENSHOTS_DIR DIR_SEP;
|
|
|
|
s_user_paths[D_LOAD_IDX] = s_user_paths[D_USER_IDX] + LOAD_DIR DIR_SEP;
|
|
|
|
s_user_paths[D_HIRESTEXTURES_IDX] = s_user_paths[D_LOAD_IDX] + HIRES_TEXTURES_DIR DIR_SEP;
|
2021-09-26 04:16:55 +00:00
|
|
|
s_user_paths[D_RIIVOLUTION_IDX] = s_user_paths[D_LOAD_IDX] + RIIVOLUTION_DIR DIR_SEP;
|
2015-03-15 13:51:13 +00:00
|
|
|
s_user_paths[D_DUMP_IDX] = s_user_paths[D_USER_IDX] + DUMP_DIR DIR_SEP;
|
|
|
|
s_user_paths[D_DUMPFRAMES_IDX] = s_user_paths[D_DUMP_IDX] + DUMP_FRAMES_DIR DIR_SEP;
|
2018-06-06 12:42:41 +00:00
|
|
|
s_user_paths[D_DUMPOBJECTS_IDX] = s_user_paths[D_DUMP_IDX] + DUMP_OBJECTS_DIR DIR_SEP;
|
2015-03-15 13:51:13 +00:00
|
|
|
s_user_paths[D_DUMPAUDIO_IDX] = s_user_paths[D_DUMP_IDX] + DUMP_AUDIO_DIR DIR_SEP;
|
|
|
|
s_user_paths[D_DUMPTEXTURES_IDX] = s_user_paths[D_DUMP_IDX] + DUMP_TEXTURES_DIR DIR_SEP;
|
|
|
|
s_user_paths[D_DUMPDSP_IDX] = s_user_paths[D_DUMP_IDX] + DUMP_DSP_DIR DIR_SEP;
|
2015-07-11 08:31:03 +00:00
|
|
|
s_user_paths[D_DUMPSSL_IDX] = s_user_paths[D_DUMP_IDX] + DUMP_SSL_DIR DIR_SEP;
|
2023-12-07 17:36:02 +00:00
|
|
|
s_user_paths[D_DUMPDEBUG_IDX] = s_user_paths[D_DUMP_IDX] + DUMP_DEBUG_DIR DIR_SEP;
|
|
|
|
s_user_paths[D_DUMPDEBUG_BRANCHWATCH_IDX] =
|
|
|
|
s_user_paths[D_DUMPDEBUG_IDX] + DUMP_DEBUG_BRANCHWATCH_DIR DIR_SEP;
|
2024-04-05 23:21:10 +00:00
|
|
|
s_user_paths[D_DUMPDEBUG_JITBLOCKS_IDX] =
|
|
|
|
s_user_paths[D_DUMPDEBUG_IDX] + DUMP_DEBUG_JITBLOCKS_DIR DIR_SEP;
|
2015-03-15 13:51:13 +00:00
|
|
|
s_user_paths[D_LOGS_IDX] = s_user_paths[D_USER_IDX] + LOGS_DIR DIR_SEP;
|
|
|
|
s_user_paths[D_MAILLOGS_IDX] = s_user_paths[D_LOGS_IDX] + MAIL_LOGS_DIR DIR_SEP;
|
|
|
|
s_user_paths[D_THEMES_IDX] = s_user_paths[D_USER_IDX] + THEMES_DIR DIR_SEP;
|
2018-05-06 16:25:37 +00:00
|
|
|
s_user_paths[D_STYLES_IDX] = s_user_paths[D_USER_IDX] + STYLES_DIR DIR_SEP;
|
2015-10-25 03:20:03 +00:00
|
|
|
s_user_paths[D_PIPES_IDX] = s_user_paths[D_USER_IDX] + PIPES_DIR DIR_SEP;
|
2017-01-03 02:31:45 +00:00
|
|
|
s_user_paths[D_WFSROOT_IDX] = s_user_paths[D_USER_IDX] + WFSROOT_DIR DIR_SEP;
|
2016-12-24 01:37:23 +00:00
|
|
|
s_user_paths[D_BACKUP_IDX] = s_user_paths[D_USER_IDX] + BACKUP_DIR DIR_SEP;
|
2018-11-17 15:36:28 +00:00
|
|
|
s_user_paths[D_RESOURCEPACK_IDX] = s_user_paths[D_USER_IDX] + RESOURCEPACK_DIR DIR_SEP;
|
2019-08-17 19:40:58 +00:00
|
|
|
s_user_paths[D_DYNAMICINPUT_IDX] = s_user_paths[D_LOAD_IDX] + DYNAMICINPUT_DIR DIR_SEP;
|
2022-03-02 06:34:54 +00:00
|
|
|
s_user_paths[D_GRAPHICSMOD_IDX] = s_user_paths[D_LOAD_IDX] + GRAPHICSMOD_DIR DIR_SEP;
|
2022-04-17 02:10:36 +00:00
|
|
|
s_user_paths[D_WIISDCARDSYNCFOLDER_IDX] = s_user_paths[D_LOAD_IDX] + WIISDSYNC_DIR DIR_SEP;
|
2015-03-15 13:51:13 +00:00
|
|
|
s_user_paths[F_DOLPHINCONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + DOLPHIN_CONFIG;
|
2016-01-14 22:37:33 +00:00
|
|
|
s_user_paths[F_GCPADCONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + GCPAD_CONFIG;
|
|
|
|
s_user_paths[F_WIIPADCONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + WIIPAD_CONFIG;
|
|
|
|
s_user_paths[F_GCKEYBOARDCONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + GCKEYBOARD_CONFIG;
|
|
|
|
s_user_paths[F_GFXCONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + GFX_CONFIG;
|
2015-03-15 13:51:13 +00:00
|
|
|
s_user_paths[F_LOGGERCONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + LOGGER_CONFIG;
|
2019-10-26 16:05:16 +00:00
|
|
|
s_user_paths[F_DUALSHOCKUDPCLIENTCONFIG_IDX] =
|
|
|
|
s_user_paths[D_CONFIG_IDX] + DUALSHOCKUDPCLIENT_CONFIG;
|
2020-07-23 00:19:35 +00:00
|
|
|
s_user_paths[F_FREELOOKCONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + FREELOOK_CONFIG;
|
2023-03-16 13:06:24 +00:00
|
|
|
s_user_paths[F_RETROACHIEVEMENTSCONFIG_IDX] =
|
|
|
|
s_user_paths[D_CONFIG_IDX] + RETROACHIEVEMENTS_CONFIG;
|
2015-03-15 13:51:13 +00:00
|
|
|
s_user_paths[F_MAINLOG_IDX] = s_user_paths[D_LOGS_IDX] + MAIN_LOG;
|
2019-04-11 05:50:52 +00:00
|
|
|
s_user_paths[F_MEM1DUMP_IDX] = s_user_paths[D_DUMP_IDX] + MEM1_DUMP;
|
|
|
|
s_user_paths[F_MEM2DUMP_IDX] = s_user_paths[D_DUMP_IDX] + MEM2_DUMP;
|
2015-03-15 13:51:13 +00:00
|
|
|
s_user_paths[F_ARAMDUMP_IDX] = s_user_paths[D_DUMP_IDX] + ARAM_DUMP;
|
|
|
|
s_user_paths[F_FAKEVMEMDUMP_IDX] = s_user_paths[D_DUMP_IDX] + FAKEVMEM_DUMP;
|
|
|
|
s_user_paths[F_GCSRAM_IDX] = s_user_paths[D_GCUSER_IDX] + GC_SRAM;
|
2022-06-15 21:51:25 +00:00
|
|
|
s_user_paths[F_WIISDCARDIMAGE_IDX] = s_user_paths[D_LOAD_IDX] + WII_SD_CARD_IMAGE;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2019-05-03 19:46:37 +00:00
|
|
|
s_user_paths[D_MEMORYWATCHER_IDX] = s_user_paths[D_USER_IDX] + MEMORYWATCHER_DIR DIR_SEP;
|
|
|
|
s_user_paths[F_MEMORYWATCHERLOCATIONS_IDX] =
|
|
|
|
s_user_paths[D_MEMORYWATCHER_IDX] + MEMORYWATCHER_LOCATIONS;
|
|
|
|
s_user_paths[F_MEMORYWATCHERSOCKET_IDX] =
|
|
|
|
s_user_paths[D_MEMORYWATCHER_IDX] + MEMORYWATCHER_SOCKET;
|
|
|
|
|
2021-07-04 10:51:36 +00:00
|
|
|
s_user_paths[D_GBAUSER_IDX] = s_user_paths[D_USER_IDX] + GBA_USER_DIR DIR_SEP;
|
|
|
|
s_user_paths[D_GBASAVES_IDX] = s_user_paths[D_GBAUSER_IDX] + GBASAVES_DIR DIR_SEP;
|
|
|
|
s_user_paths[F_GBABIOS_IDX] = s_user_paths[D_GBAUSER_IDX] + GBA_BIOS;
|
|
|
|
|
2022-12-18 08:43:28 +00:00
|
|
|
s_user_paths[D_ASM_ROOT_IDX] = s_user_paths[D_USER_IDX] + ASSEMBLY_DIR DIR_SEP;
|
|
|
|
|
2015-04-18 17:34:46 +00:00
|
|
|
// The shader cache has moved to the cache directory, so remove the old one.
|
|
|
|
// TODO: remove that someday.
|
|
|
|
File::DeleteDirRecursively(s_user_paths[D_USER_IDX] + SHADERCACHE_LEGACY_DIR DIR_SEP);
|
2015-03-15 13:51:13 +00:00
|
|
|
break;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2015-03-15 13:51:13 +00:00
|
|
|
case D_CONFIG_IDX:
|
|
|
|
s_user_paths[F_DOLPHINCONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + DOLPHIN_CONFIG;
|
2016-01-14 22:37:33 +00:00
|
|
|
s_user_paths[F_GCPADCONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + GCPAD_CONFIG;
|
2021-06-04 08:16:56 +00:00
|
|
|
s_user_paths[F_GCKEYBOARDCONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + GCKEYBOARD_CONFIG;
|
2016-01-14 22:37:33 +00:00
|
|
|
s_user_paths[F_WIIPADCONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + WIIPAD_CONFIG;
|
|
|
|
s_user_paths[F_GFXCONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + GFX_CONFIG;
|
2015-03-15 13:51:13 +00:00
|
|
|
s_user_paths[F_LOGGERCONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + LOGGER_CONFIG;
|
2021-06-04 08:16:56 +00:00
|
|
|
s_user_paths[F_DUALSHOCKUDPCLIENTCONFIG_IDX] =
|
|
|
|
s_user_paths[D_CONFIG_IDX] + DUALSHOCKUDPCLIENT_CONFIG;
|
|
|
|
s_user_paths[F_FREELOOKCONFIG_IDX] = s_user_paths[D_CONFIG_IDX] + FREELOOK_CONFIG;
|
2015-03-15 13:51:13 +00:00
|
|
|
break;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2015-04-18 17:34:46 +00:00
|
|
|
case D_CACHE_IDX:
|
2018-07-30 01:16:37 +00:00
|
|
|
s_user_paths[D_COVERCACHE_IDX] = s_user_paths[D_CACHE_IDX] + COVERCACHE_DIR DIR_SEP;
|
2019-10-25 18:49:28 +00:00
|
|
|
s_user_paths[D_REDUMPCACHE_IDX] = s_user_paths[D_CACHE_IDX] + REDUMPCACHE_DIR DIR_SEP;
|
2015-04-18 17:34:46 +00:00
|
|
|
s_user_paths[D_SHADERCACHE_IDX] = s_user_paths[D_CACHE_IDX] + SHADERCACHE_DIR DIR_SEP;
|
|
|
|
break;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2015-03-15 13:51:13 +00:00
|
|
|
case D_GCUSER_IDX:
|
|
|
|
s_user_paths[F_GCSRAM_IDX] = s_user_paths[D_GCUSER_IDX] + GC_SRAM;
|
|
|
|
break;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2015-03-15 13:51:13 +00:00
|
|
|
case D_DUMP_IDX:
|
|
|
|
s_user_paths[D_DUMPFRAMES_IDX] = s_user_paths[D_DUMP_IDX] + DUMP_FRAMES_DIR DIR_SEP;
|
2018-06-06 12:42:41 +00:00
|
|
|
s_user_paths[D_DUMPOBJECTS_IDX] = s_user_paths[D_DUMP_IDX] + DUMP_OBJECTS_DIR DIR_SEP;
|
2015-03-15 13:51:13 +00:00
|
|
|
s_user_paths[D_DUMPAUDIO_IDX] = s_user_paths[D_DUMP_IDX] + DUMP_AUDIO_DIR DIR_SEP;
|
|
|
|
s_user_paths[D_DUMPTEXTURES_IDX] = s_user_paths[D_DUMP_IDX] + DUMP_TEXTURES_DIR DIR_SEP;
|
|
|
|
s_user_paths[D_DUMPDSP_IDX] = s_user_paths[D_DUMP_IDX] + DUMP_DSP_DIR DIR_SEP;
|
2015-07-11 08:31:03 +00:00
|
|
|
s_user_paths[D_DUMPSSL_IDX] = s_user_paths[D_DUMP_IDX] + DUMP_SSL_DIR DIR_SEP;
|
2023-12-07 17:36:02 +00:00
|
|
|
s_user_paths[D_DUMPDEBUG_IDX] = s_user_paths[D_DUMP_IDX] + DUMP_DEBUG_DIR DIR_SEP;
|
|
|
|
s_user_paths[D_DUMPDEBUG_BRANCHWATCH_IDX] =
|
2024-03-29 18:03:15 +00:00
|
|
|
s_user_paths[D_DUMPDEBUG_IDX] + DUMP_DEBUG_BRANCHWATCH_DIR DIR_SEP;
|
2024-04-05 23:21:10 +00:00
|
|
|
s_user_paths[D_DUMPDEBUG_JITBLOCKS_IDX] =
|
|
|
|
s_user_paths[D_DUMPDEBUG_IDX] + DUMP_DEBUG_JITBLOCKS_DIR DIR_SEP;
|
2019-04-11 05:50:52 +00:00
|
|
|
s_user_paths[F_MEM1DUMP_IDX] = s_user_paths[D_DUMP_IDX] + MEM1_DUMP;
|
|
|
|
s_user_paths[F_MEM2DUMP_IDX] = s_user_paths[D_DUMP_IDX] + MEM2_DUMP;
|
2015-03-15 13:51:13 +00:00
|
|
|
s_user_paths[F_ARAMDUMP_IDX] = s_user_paths[D_DUMP_IDX] + ARAM_DUMP;
|
|
|
|
s_user_paths[F_FAKEVMEMDUMP_IDX] = s_user_paths[D_DUMP_IDX] + FAKEVMEM_DUMP;
|
|
|
|
break;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2015-03-15 13:51:13 +00:00
|
|
|
case D_LOGS_IDX:
|
|
|
|
s_user_paths[D_MAILLOGS_IDX] = s_user_paths[D_LOGS_IDX] + MAIL_LOGS_DIR DIR_SEP;
|
|
|
|
s_user_paths[F_MAINLOG_IDX] = s_user_paths[D_LOGS_IDX] + MAIN_LOG;
|
|
|
|
break;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2015-03-15 13:51:13 +00:00
|
|
|
case D_LOAD_IDX:
|
|
|
|
s_user_paths[D_HIRESTEXTURES_IDX] = s_user_paths[D_LOAD_IDX] + HIRES_TEXTURES_DIR DIR_SEP;
|
2021-09-26 04:16:55 +00:00
|
|
|
s_user_paths[D_RIIVOLUTION_IDX] = s_user_paths[D_LOAD_IDX] + RIIVOLUTION_DIR DIR_SEP;
|
2019-08-17 19:40:58 +00:00
|
|
|
s_user_paths[D_DYNAMICINPUT_IDX] = s_user_paths[D_LOAD_IDX] + DYNAMICINPUT_DIR DIR_SEP;
|
2022-03-02 06:34:54 +00:00
|
|
|
s_user_paths[D_GRAPHICSMOD_IDX] = s_user_paths[D_LOAD_IDX] + GRAPHICSMOD_DIR DIR_SEP;
|
2015-03-15 13:51:13 +00:00
|
|
|
break;
|
2011-05-24 19:12:18 +00:00
|
|
|
}
|
2015-03-15 13:51:13 +00:00
|
|
|
}
|
2013-08-25 05:35:32 +00:00
|
|
|
|
2015-03-15 13:51:13 +00:00
|
|
|
// Gets a set user directory path
|
|
|
|
// Don't call prior to setting the base user directory
|
|
|
|
const std::string& GetUserPath(unsigned int dir_index)
|
|
|
|
{
|
|
|
|
return s_user_paths[dir_index];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sets a user directory path
|
|
|
|
// Rebuilds internal directory structure to compensate for the new directory
|
2021-11-22 02:00:15 +00:00
|
|
|
void SetUserPath(unsigned int dir_index, std::string path)
|
2015-03-15 13:51:13 +00:00
|
|
|
{
|
2015-03-18 02:27:40 +00:00
|
|
|
if (path.empty())
|
|
|
|
return;
|
|
|
|
|
2021-11-22 02:00:15 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
// On Windows, replace all '\' with '/' since we assume the latter in various places in the
|
|
|
|
// codebase.
|
|
|
|
for (char& c : path)
|
|
|
|
{
|
|
|
|
if (c == '\\')
|
|
|
|
c = '/';
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Directories should end with a separator, files should not.
|
2023-01-24 19:25:49 +00:00
|
|
|
while (path.ends_with('/'))
|
2021-11-22 02:00:15 +00:00
|
|
|
path.pop_back();
|
|
|
|
if (path.empty())
|
|
|
|
return;
|
|
|
|
const bool is_directory = dir_index < FIRST_FILE_USER_PATH_IDX;
|
|
|
|
if (is_directory)
|
|
|
|
path.push_back('/');
|
|
|
|
|
|
|
|
s_user_paths[dir_index] = std::move(path);
|
2015-03-15 13:51:13 +00:00
|
|
|
RebuildUserDirectories(dir_index);
|
2009-02-28 23:21:51 +00:00
|
|
|
}
|
|
|
|
|
2013-04-02 18:04:40 +00:00
|
|
|
std::string GetThemeDir(const std::string& theme_name)
|
2013-04-02 04:17:15 +00:00
|
|
|
{
|
2013-04-02 18:04:40 +00:00
|
|
|
std::string dir = File::GetUserPath(D_THEMES_IDX) + theme_name + "/";
|
2017-06-29 09:20:38 +00:00
|
|
|
if (Exists(dir))
|
2016-06-30 08:58:50 +00:00
|
|
|
return dir;
|
2013-04-02 04:17:15 +00:00
|
|
|
|
2016-06-30 08:58:50 +00:00
|
|
|
// If the theme doesn't exist in the user dir, load from shared directory
|
|
|
|
dir = GetSysDirectory() + THEMES_DIR "/" + theme_name + "/";
|
2017-06-29 09:20:38 +00:00
|
|
|
if (Exists(dir))
|
2016-06-30 08:58:50 +00:00
|
|
|
return dir;
|
2013-09-12 01:55:16 +00:00
|
|
|
|
2016-06-30 08:58:50 +00:00
|
|
|
// If the theme doesn't exist at all, load the default theme
|
|
|
|
return GetSysDirectory() + THEMES_DIR "/" DEFAULT_THEME_DIR "/";
|
2013-04-02 04:17:15 +00:00
|
|
|
}
|
|
|
|
|
2019-05-28 21:47:26 +00:00
|
|
|
bool WriteStringToFile(const std::string& filename, std::string_view str)
|
2009-04-12 10:21:40 +00:00
|
|
|
{
|
2013-11-04 11:33:41 +00:00
|
|
|
return File::IOFile(filename, "wb").WriteBytes(str.data(), str.size());
|
2009-04-12 10:21:40 +00:00
|
|
|
}
|
|
|
|
|
2016-01-21 20:27:56 +00:00
|
|
|
bool ReadFileToString(const std::string& filename, std::string& str)
|
2009-04-12 10:21:40 +00:00
|
|
|
{
|
2013-11-04 11:33:41 +00:00
|
|
|
File::IOFile file(filename, "rb");
|
2013-02-28 01:43:29 +00:00
|
|
|
|
2018-05-11 20:22:23 +00:00
|
|
|
if (!file)
|
2009-04-12 10:21:40 +00:00
|
|
|
return false;
|
2013-02-28 01:43:29 +00:00
|
|
|
|
2018-05-11 20:22:23 +00:00
|
|
|
str.resize(file.GetSize());
|
2019-05-28 21:49:54 +00:00
|
|
|
return file.ReadArray(str.data(), str.size());
|
2009-04-12 10:21:40 +00:00
|
|
|
}
|
|
|
|
|
2018-03-22 23:29:03 +00:00
|
|
|
} // namespace File
|