2015-04-24 21:38:11 +00:00
|
|
|
#include "File.h"
|
2017-01-24 20:19:52 +00:00
|
|
|
#include "mutex.h"
|
2016-02-01 21:55:43 +00:00
|
|
|
#include "StrFmt.h"
|
2016-07-11 19:00:12 +00:00
|
|
|
#include "BEType.h"
|
|
|
|
#include "Crypto/sha1.h"
|
2016-04-25 10:49:12 +00:00
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
#include <unordered_map>
|
2016-04-25 10:49:12 +00:00
|
|
|
#include <algorithm>
|
2017-04-16 01:31:58 +00:00
|
|
|
#include <cstring>
|
2016-04-26 22:27:24 +00:00
|
|
|
#include <cerrno>
|
2017-09-16 17:36:53 +00:00
|
|
|
#include <typeinfo>
|
2018-08-12 22:06:03 +00:00
|
|
|
#include <map>
|
2014-07-11 17:06:59 +00:00
|
|
|
|
2017-04-16 01:31:58 +00:00
|
|
|
using namespace std::literals::string_literals;
|
|
|
|
|
2014-07-11 17:06:59 +00:00
|
|
|
#ifdef _WIN32
|
2016-01-05 23:52:48 +00:00
|
|
|
|
|
|
|
#include <cwchar>
|
2014-08-28 22:49:26 +00:00
|
|
|
#include <Windows.h>
|
2015-04-15 14:27:37 +00:00
|
|
|
|
2015-12-16 19:50:45 +00:00
|
|
|
static std::unique_ptr<wchar_t[]> to_wchar(const std::string& source)
|
2015-04-13 18:10:31 +00:00
|
|
|
{
|
2016-08-14 17:22:07 +00:00
|
|
|
// String size + null terminator
|
|
|
|
const std::size_t buf_size = source.size() + 1;
|
2015-04-15 14:27:37 +00:00
|
|
|
|
2016-08-14 17:22:07 +00:00
|
|
|
// Safe size
|
|
|
|
const int size = narrow<int>(buf_size, "to_wchar" HERE);
|
2015-04-15 14:27:37 +00:00
|
|
|
|
2016-08-14 17:22:07 +00:00
|
|
|
// Buffer for max possible output length
|
|
|
|
std::unique_ptr<wchar_t[]> buffer(new wchar_t[buf_size]);
|
2015-04-15 14:27:37 +00:00
|
|
|
|
2016-08-14 00:22:19 +00:00
|
|
|
verify("to_wchar" HERE), MultiByteToWideChar(CP_UTF8, 0, source.c_str(), size, buffer.get(), size);
|
2015-04-15 14:27:37 +00:00
|
|
|
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
2016-08-14 17:22:07 +00:00
|
|
|
static void to_utf8(std::string& out, const wchar_t* source)
|
2015-04-25 19:15:53 +00:00
|
|
|
{
|
2016-08-14 17:22:07 +00:00
|
|
|
// String size
|
|
|
|
const std::size_t length = std::wcslen(source);
|
2015-04-25 19:15:53 +00:00
|
|
|
|
2016-08-14 17:22:07 +00:00
|
|
|
// Safe buffer size for max possible output length (including null terminator)
|
|
|
|
const int buf_size = narrow<int>(length * 3 + 1, "to_utf8" HERE);
|
2015-05-08 09:45:21 +00:00
|
|
|
|
2016-08-14 17:22:07 +00:00
|
|
|
// Resize buffer
|
|
|
|
out.resize(buf_size - 1);
|
2015-05-08 09:45:21 +00:00
|
|
|
|
2016-08-14 17:22:07 +00:00
|
|
|
const int result = WideCharToMultiByte(CP_UTF8, 0, source, static_cast<int>(length) + 1, &out.front(), buf_size, NULL, NULL);
|
2016-08-14 00:22:19 +00:00
|
|
|
|
2016-08-14 17:22:07 +00:00
|
|
|
// Fix the size
|
2016-08-15 10:18:47 +00:00
|
|
|
out.resize(verify("to_utf8" HERE, result) - 1);
|
2015-04-25 19:15:53 +00:00
|
|
|
}
|
|
|
|
|
2015-12-16 19:50:45 +00:00
|
|
|
static time_t to_time(const ULARGE_INTEGER& ft)
|
2015-04-19 17:57:04 +00:00
|
|
|
{
|
|
|
|
return ft.QuadPart / 10000000ULL - 11644473600ULL;
|
|
|
|
}
|
|
|
|
|
2015-12-16 19:50:45 +00:00
|
|
|
static time_t to_time(const LARGE_INTEGER& ft)
|
2015-04-19 19:25:04 +00:00
|
|
|
{
|
|
|
|
ULARGE_INTEGER v;
|
|
|
|
v.LowPart = ft.LowPart;
|
|
|
|
v.HighPart = ft.HighPart;
|
|
|
|
|
2015-12-16 19:50:45 +00:00
|
|
|
return to_time(v);
|
2015-04-19 19:25:04 +00:00
|
|
|
}
|
|
|
|
|
2015-12-16 19:50:45 +00:00
|
|
|
static time_t to_time(const FILETIME& ft)
|
2015-04-15 14:27:37 +00:00
|
|
|
{
|
2015-04-19 19:25:04 +00:00
|
|
|
ULARGE_INTEGER v;
|
2015-04-15 14:27:37 +00:00
|
|
|
v.LowPart = ft.dwLowDateTime;
|
|
|
|
v.HighPart = ft.dwHighDateTime;
|
|
|
|
|
2015-12-16 19:50:45 +00:00
|
|
|
return to_time(v);
|
2014-07-11 17:06:59 +00:00
|
|
|
}
|
2015-04-15 14:27:37 +00:00
|
|
|
|
2017-01-26 12:01:21 +00:00
|
|
|
static FILETIME from_time(s64 _time)
|
|
|
|
{
|
|
|
|
FILETIME result;
|
2017-11-23 19:18:38 +00:00
|
|
|
|
|
|
|
if (_time <= -11644473600ll)
|
|
|
|
{
|
|
|
|
result.dwLowDateTime = 0;
|
|
|
|
result.dwHighDateTime = 0;
|
|
|
|
}
|
|
|
|
else if (_time > INT64_MAX / 10000000ll - 11644473600ll)
|
|
|
|
{
|
|
|
|
result.dwLowDateTime = 0xffffffff;
|
|
|
|
result.dwHighDateTime = 0x7fffffff;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const ullong wtime = (_time + 11644473600ull) * 10000000ull;
|
|
|
|
result.dwLowDateTime = static_cast<DWORD>(wtime);
|
|
|
|
result.dwHighDateTime = static_cast<DWORD>(wtime >> 32);
|
|
|
|
}
|
|
|
|
|
2017-01-26 12:01:21 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2016-05-13 14:01:48 +00:00
|
|
|
static fs::error to_error(DWORD e)
|
|
|
|
{
|
|
|
|
switch (e)
|
|
|
|
{
|
|
|
|
case ERROR_FILE_NOT_FOUND: return fs::error::noent;
|
|
|
|
case ERROR_PATH_NOT_FOUND: return fs::error::noent;
|
2017-02-11 23:52:20 +00:00
|
|
|
case ERROR_ACCESS_DENIED: return fs::error::acces;
|
2016-05-13 14:01:48 +00:00
|
|
|
case ERROR_ALREADY_EXISTS: return fs::error::exist;
|
|
|
|
case ERROR_FILE_EXISTS: return fs::error::exist;
|
|
|
|
case ERROR_NEGATIVE_SEEK: return fs::error::inval;
|
2016-06-02 15:16:01 +00:00
|
|
|
case ERROR_DIRECTORY: return fs::error::inval;
|
|
|
|
case ERROR_INVALID_NAME: return fs::error::inval;
|
2017-08-27 13:09:34 +00:00
|
|
|
case ERROR_SHARING_VIOLATION: return fs::error::acces;
|
2017-09-12 17:05:38 +00:00
|
|
|
case ERROR_DIR_NOT_EMPTY: return fs::error::notempty;
|
2017-10-28 22:48:48 +00:00
|
|
|
case ERROR_NOT_READY: return fs::error::noent;
|
2017-11-20 15:10:35 +00:00
|
|
|
//case ERROR_INVALID_PARAMETER: return fs::error::inval;
|
2016-08-08 16:01:06 +00:00
|
|
|
default: fmt::throw_exception("Unknown Win32 error: %u.", e);
|
2016-05-13 14:01:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-13 14:46:10 +00:00
|
|
|
#else
|
2016-01-05 23:52:48 +00:00
|
|
|
|
2015-11-01 10:33:28 +00:00
|
|
|
#include <sys/mman.h>
|
2015-04-19 16:02:35 +00:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
2017-04-24 15:45:58 +00:00
|
|
|
#include <sys/statvfs.h>
|
2017-11-19 13:44:06 +00:00
|
|
|
#include <sys/file.h>
|
2015-04-25 20:21:06 +00:00
|
|
|
#include <dirent.h>
|
2015-04-13 14:46:10 +00:00
|
|
|
#include <fcntl.h>
|
2015-12-24 07:22:09 +00:00
|
|
|
#include <libgen.h>
|
|
|
|
#include <string.h>
|
2015-04-13 14:46:10 +00:00
|
|
|
#include <unistd.h>
|
2017-01-26 12:01:21 +00:00
|
|
|
#include <utime.h>
|
2016-01-05 23:52:48 +00:00
|
|
|
|
Improve portability for BSDs (#2813)
* sys_net: don't use fds_bits from a system header on FreeBSD
rpcs3/Emu/Cell/Modules/sys_net.cpp:137:14: error: no member named '__fds_bits' in
'sys_net::fd_set'; did you mean 'fds_bits'?
if (src->fds_bits[i] & (1 << bit))
^~~~~~~~
fds_bits
/usr/include/sys/select.h:75:18: note: expanded from macro 'fds_bits'
#define fds_bits __fds_bits
^
rpcs3/Emu/Cell/Modules/sys_net.h:114:13: note: 'fds_bits' declared here
be_t<u32> fds_bits[32];
^
* GUI: fallback to xdg-open on other Unices
rpcs3/Gui/GameViewer.cpp:289:26: error: use of undeclared identifier 'command'
wxExecute(fmt::FromUTF8(command));
^
* File: FreeBSD never supported copyfile(3) but sendfile(2) works fine
Utilities/File.cpp:114:10: fatal error: 'copyfile.h' file not found
#include <copyfile.h>
^~~~~~~~~~~~
* Thread: add signal handling for BSDs
Utilities/Thread.cpp:761:23: error: use of undeclared identifier 'REG_RAX'
static const decltype(REG_RAX) reg_table[] =
^
Utilities/Thread.cpp:763:2: error: use of undeclared identifier 'REG_RAX'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:11: error: use of undeclared identifier 'REG_RCX'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:20: error: use of undeclared identifier 'REG_RDX'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:29: error: use of undeclared identifier 'REG_RBX'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:38: error: use of undeclared identifier 'REG_RSP'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:47: error: use of undeclared identifier 'REG_RBP'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:56: error: use of undeclared identifier 'REG_RSI'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:65: error: use of undeclared identifier 'REG_RDI'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:764:2: error: use of undeclared identifier 'REG_R8'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:10: error: use of undeclared identifier 'REG_R9'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:18: error: use of undeclared identifier 'REG_R10'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:27: error: use of undeclared identifier 'REG_R11'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:36: error: use of undeclared identifier 'REG_R12'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:45: error: use of undeclared identifier 'REG_R13'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:54: error: use of undeclared identifier 'REG_R14'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:63: error: use of undeclared identifier 'REG_R15'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:72: error: use of undeclared identifier 'REG_RIP'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:792:26: error: no member named 'gregs' in '__mcontext'
const u64 reg_value = *X64REG(context, reg - X64R_RAX);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:804:21: error: no member named 'gregs' in '__mcontext'
out_value = (u8)(*X64REG(context, reg - X64R_AL));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:809:21: error: no member named 'gregs' in '__mcontext'
out_value = (u8)(*X64REG(context, reg - X64R_AH) >> 8);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:815:31: error: no member named 'gregs' in '__mcontext'
const s8 imm_value = *(s8*)(RIP(context) + i_size - 1);
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:827:33: error: no member named 'gregs' in '__mcontext'
const s16 imm_value = *(s16*)(RIP(context) + i_size - 2);
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:836:33: error: no member named 'gregs' in '__mcontext'
const s32 imm_value = *(s32*)(RIP(context) + i_size - 4);
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:846:20: error: no member named 'gregs' in '__mcontext'
out_value = (u32)RCX(context);
^~~~~~~~~~~~
Utilities/Thread.cpp:779:18: note: expanded from macro 'RCX'
#define RCX(c) (*X64REG((c), 1))
^~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:851:19: error: no member named 'gregs' in '__mcontext'
const u32 _cf = EFLAGS(context) & 0x1;
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:851:19: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:852:19: error: no member named 'gregs' in '__mcontext'
const u32 _zf = EFLAGS(context) & 0x40;
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:852:19: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:853:19: error: no member named 'gregs' in '__mcontext'
const u32 _sf = EFLAGS(context) & 0x80;
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:853:19: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:854:19: error: no member named 'gregs' in '__mcontext'
const u32 _of = EFLAGS(context) & 0x800;
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:854:19: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:855:19: error: no member named 'gregs' in '__mcontext'
const u32 _pf = EFLAGS(context) & 0x4;
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:855:19: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:885:12: error: no member named 'gregs' in '__mcontext'
case 1: *X64REG(context, reg - X64R_RAX) = value & 0xff | *X64REG(context, re...
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:885:62: error: no member named 'gregs' in '__mcontext'
...*X64REG(context, reg - X64R_RAX) = value & 0xff | *X64REG(context, reg - X64R_RAX) & 0xffffff...
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:886:12: error: no member named 'gregs' in '__mcontext'
case 2: *X64REG(context, reg - X64R_RAX) = value & 0xffff | *X64REG(context, ...
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:886:64: error: no member named 'gregs' in '__mcontext'
...reg - X64R_RAX) = value & 0xffff | *X64REG(context, reg - X64R_RAX) & 0xffff0000; return true;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:887:12: error: no member named 'gregs' in '__mcontext'
case 4: *X64REG(context, reg - X64R_RAX) = value & 0xffffffff; return true;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:888:12: error: no member named 'gregs' in '__mcontext'
case 8: *X64REG(context, reg - X64R_RAX) = value; return true;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:913:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x1; // set CF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:913:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:917:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x1; // clear CF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:917:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:922:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x40; // set ZF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:922:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:926:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x40; // clear ZF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:926:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:931:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x80; // set SF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:931:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:935:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x80; // clear SF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:935:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:940:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x800; // set OF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:940:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:944:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x800; // clear OF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:944:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:953:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x4; // set PF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:953:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:957:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x4; // clear PF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:957:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:962:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x10; // set AF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:962:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:966:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x10; // clear AF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:966:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:976:7: error: no member named 'gregs' in '__mcontext'
if (EFLAGS(context) & 0x400 /* direction flag */)
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:976:7: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:1020:25: error: no member named 'gregs' in '__mcontext'
auto code = (const u8*)RIP(context);
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:1146:3: error: no member named 'gregs' in '__mcontext'
RIP(context) += i_size;
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:1368:47: error: no member named 'gregs' in '__mcontext'
const bool is_writing = context->uc_mcontext.gregs[REG_ERR] & 0x2;
~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:1368:53: error: use of undeclared identifier 'REG_ERR'
const bool is_writing = context->uc_mcontext.gregs[REG_ERR] & 0x2;
^
Utilities/Thread.cpp:1393:89: error: no member named 'gregs' in '__mcontext'
...%s location %p at %p.", cause, info->si_addr, RIP(context)));
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
* Thread: add explict casts for incomplete pthread_t on some platforms
Utilities/Thread.cpp:1467:17: error: no viable overloaded '='
ctrl->m_thread = thread;
~~~~~~~~~~~~~~ ^ ~~~~~~
Utilities/Atomic.h:776:12: note: candidate function not viable: cannot convert argument of
incomplete type 'pthread_t' (aka 'pthread *') to 'const atomic_t<unsigned long>' for 1st
argument
atomic_t& operator =(const atomic_t&) = delete;
^
Utilities/Atomic.h:902:7: note: candidate function not viable: cannot convert argument of
incomplete type 'pthread_t' (aka 'pthread *') to 'const type' (aka 'const unsigned long') for
1st argument
type operator =(const type& rhs)
^
Utilities/Thread.cpp:1656:3: error: no matching function for call to 'pthread_detach'
pthread_detach(m_thread.raw());
^~~~~~~~~~~~~~
/usr/include/pthread.h:218:6: note: candidate function not viable: no known conversion from 'type'
(aka 'unsigned long') to 'pthread_t' (aka 'pthread *') for 1st argument
int pthread_detach(pthread_t);
^
* build: dlopen() maybe in libc
/usr/bin/ld: cannot find -ldl
c++: error: linker command failed with exit code 1 (use -v to see invocation)
* build: iconv() maybe available on some BSDs in libc
/usr/bin/ld: cannot find -liconv
c++: error: linker command failed with exit code 1 (use -v to see invocation)
* build: hidapi-hidraw is only built on Linux
/usr/bin/ld: cannot find -lhidapi-hidraw
c++: error: linker command failed with exit code 1 (use -v to see invocation)
* Thread: use getrusage() on more POSIX-like systems
* Qt: don't return NULL handle on other platforms
rpcs3/rpcs3qt/gs_frame.cpp:120:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^
* build: properly disable Vulkan on other platforms
In file included from rpcs3/rpcs3_app.cpp:40:
In file included from rpcs3/Emu/RSX/VK/VKGSRender.h:3:
rpcs3/Emu/RSX/VK/VKHelpers.h:1209:42: error: unknown type name 'device_queues'
std::vector<VkBool32> supportsPresent(device_queues);
^
rpcs3/Emu/RSX/VK/VKHelpers.h:1211:4: error: expected member name or ';' after declaration specifiers
for (u32 index = 0; index < device_queues; index++)
^
rpcs3/Emu/RSX/VK/VKHelpers.h:1221:4: error: expected member name or ';' after declaration specifiers
for (u32 i = 0; i < device_queues; i++)
^
rpcs3/Emu/RSX/VK/VKHelpers.h:1256:4: error: expected member name or ';' after declaration specifiers
if (graphicsQueueNodeIndex != presentQueueNodeIndex)
^
rpcs3/Emu/RSX/VK/VKHelpers.h:1261:4: error: expected member name or ';' after declaration specifiers
CHECK_RESULT(vkGetPhysicalDeviceSurfaceFormatsKHR(dev, surface, &formatCount, nullptr));
^
[...]
/usr/bin/ld: cannot find -lvulkan
c++: error: linker command failed with exit code 1 (use -v to see invocation)
* build: make install/strip work by moving commands
* Qt: create surface for GL context if it wasn't ready
#0 strlen (str=0x0) at /usr/src/lib/libc/string/strlen.c:100
#1 0x000000000090f02e in std::__1::char_traits<char>::length (__s=0x0)
at /usr/include/c++/v1/__string:215
#2 std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::basic_string (__s=0x0, this=<optimized out>) at /usr/include/c++/v1/string:1547
#3 gl::capabilities::initialize (this=0x2ba32a0 <gl::g_driver_caps>)
at rpcs3/Emu/RSX/GL/GLHelpers.h:133
#4 0x000000000090d3dd in gl::get_driver_caps () at rpcs3/Emu/RSX/GL/GLHelpers.cpp:56
#5 0x00000000008fa511 in GLGSRender::on_init_thread (this=0x838d30018)
at rpcs3/Emu/RSX/GL/GLGSRender.cpp:484
#6 0x0000000000938f9e in rsx::thread::on_task (this=0x838d30018)
at rpcs3/Emu/RSX/RSXThread.cpp:334
#7 0x0000000000abc329 in task_stack::task_type<named_thread::start_thread(std::__1::shared_ptr<void> const&)::$_10>::invoke() ()
#8 0x0000000000abc114 in thread_ctrl::start(std::__1::shared_ptr<thread_ctrl> const&, task_stack)::$_7::__invoke(void*) ()
#9 0x0000000801e60c35 in thread_start (curthread=0x843650a00)
at /usr/src/lib/libthr/thread/thr_create.c:289
#10 0x0000000000000000 in ?? ()
* build: don't abort without git metadata
-- Found Git: /usr/local/bin/git (found version "2.13.1")
fatal: Not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
CMake Warning at git-version.cmake:12 (message):
git rev-list failed, unable to include version.
* build: non-parallel needs git-version.h earlier
rpcs3/rpcs3_version.cpp:3:10: fatal error: 'git-version.h' file not found
#include "git-version.h"
^~~~~~~~~~~~~~~
1 error generated.
2017-06-22 18:03:41 +00:00
|
|
|
#if defined(__APPLE__)
|
2015-04-13 14:46:10 +00:00
|
|
|
#include <copyfile.h>
|
2015-12-16 19:50:45 +00:00
|
|
|
#include <mach-o/dyld.h>
|
Improve portability for BSDs (#2813)
* sys_net: don't use fds_bits from a system header on FreeBSD
rpcs3/Emu/Cell/Modules/sys_net.cpp:137:14: error: no member named '__fds_bits' in
'sys_net::fd_set'; did you mean 'fds_bits'?
if (src->fds_bits[i] & (1 << bit))
^~~~~~~~
fds_bits
/usr/include/sys/select.h:75:18: note: expanded from macro 'fds_bits'
#define fds_bits __fds_bits
^
rpcs3/Emu/Cell/Modules/sys_net.h:114:13: note: 'fds_bits' declared here
be_t<u32> fds_bits[32];
^
* GUI: fallback to xdg-open on other Unices
rpcs3/Gui/GameViewer.cpp:289:26: error: use of undeclared identifier 'command'
wxExecute(fmt::FromUTF8(command));
^
* File: FreeBSD never supported copyfile(3) but sendfile(2) works fine
Utilities/File.cpp:114:10: fatal error: 'copyfile.h' file not found
#include <copyfile.h>
^~~~~~~~~~~~
* Thread: add signal handling for BSDs
Utilities/Thread.cpp:761:23: error: use of undeclared identifier 'REG_RAX'
static const decltype(REG_RAX) reg_table[] =
^
Utilities/Thread.cpp:763:2: error: use of undeclared identifier 'REG_RAX'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:11: error: use of undeclared identifier 'REG_RCX'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:20: error: use of undeclared identifier 'REG_RDX'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:29: error: use of undeclared identifier 'REG_RBX'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:38: error: use of undeclared identifier 'REG_RSP'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:47: error: use of undeclared identifier 'REG_RBP'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:56: error: use of undeclared identifier 'REG_RSI'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:65: error: use of undeclared identifier 'REG_RDI'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:764:2: error: use of undeclared identifier 'REG_R8'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:10: error: use of undeclared identifier 'REG_R9'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:18: error: use of undeclared identifier 'REG_R10'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:27: error: use of undeclared identifier 'REG_R11'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:36: error: use of undeclared identifier 'REG_R12'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:45: error: use of undeclared identifier 'REG_R13'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:54: error: use of undeclared identifier 'REG_R14'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:63: error: use of undeclared identifier 'REG_R15'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:72: error: use of undeclared identifier 'REG_RIP'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:792:26: error: no member named 'gregs' in '__mcontext'
const u64 reg_value = *X64REG(context, reg - X64R_RAX);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:804:21: error: no member named 'gregs' in '__mcontext'
out_value = (u8)(*X64REG(context, reg - X64R_AL));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:809:21: error: no member named 'gregs' in '__mcontext'
out_value = (u8)(*X64REG(context, reg - X64R_AH) >> 8);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:815:31: error: no member named 'gregs' in '__mcontext'
const s8 imm_value = *(s8*)(RIP(context) + i_size - 1);
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:827:33: error: no member named 'gregs' in '__mcontext'
const s16 imm_value = *(s16*)(RIP(context) + i_size - 2);
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:836:33: error: no member named 'gregs' in '__mcontext'
const s32 imm_value = *(s32*)(RIP(context) + i_size - 4);
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:846:20: error: no member named 'gregs' in '__mcontext'
out_value = (u32)RCX(context);
^~~~~~~~~~~~
Utilities/Thread.cpp:779:18: note: expanded from macro 'RCX'
#define RCX(c) (*X64REG((c), 1))
^~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:851:19: error: no member named 'gregs' in '__mcontext'
const u32 _cf = EFLAGS(context) & 0x1;
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:851:19: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:852:19: error: no member named 'gregs' in '__mcontext'
const u32 _zf = EFLAGS(context) & 0x40;
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:852:19: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:853:19: error: no member named 'gregs' in '__mcontext'
const u32 _sf = EFLAGS(context) & 0x80;
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:853:19: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:854:19: error: no member named 'gregs' in '__mcontext'
const u32 _of = EFLAGS(context) & 0x800;
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:854:19: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:855:19: error: no member named 'gregs' in '__mcontext'
const u32 _pf = EFLAGS(context) & 0x4;
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:855:19: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:885:12: error: no member named 'gregs' in '__mcontext'
case 1: *X64REG(context, reg - X64R_RAX) = value & 0xff | *X64REG(context, re...
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:885:62: error: no member named 'gregs' in '__mcontext'
...*X64REG(context, reg - X64R_RAX) = value & 0xff | *X64REG(context, reg - X64R_RAX) & 0xffffff...
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:886:12: error: no member named 'gregs' in '__mcontext'
case 2: *X64REG(context, reg - X64R_RAX) = value & 0xffff | *X64REG(context, ...
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:886:64: error: no member named 'gregs' in '__mcontext'
...reg - X64R_RAX) = value & 0xffff | *X64REG(context, reg - X64R_RAX) & 0xffff0000; return true;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:887:12: error: no member named 'gregs' in '__mcontext'
case 4: *X64REG(context, reg - X64R_RAX) = value & 0xffffffff; return true;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:888:12: error: no member named 'gregs' in '__mcontext'
case 8: *X64REG(context, reg - X64R_RAX) = value; return true;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:913:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x1; // set CF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:913:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:917:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x1; // clear CF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:917:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:922:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x40; // set ZF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:922:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:926:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x40; // clear ZF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:926:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:931:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x80; // set SF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:931:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:935:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x80; // clear SF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:935:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:940:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x800; // set OF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:940:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:944:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x800; // clear OF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:944:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:953:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x4; // set PF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:953:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:957:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x4; // clear PF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:957:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:962:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x10; // set AF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:962:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:966:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x10; // clear AF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:966:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:976:7: error: no member named 'gregs' in '__mcontext'
if (EFLAGS(context) & 0x400 /* direction flag */)
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:976:7: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:1020:25: error: no member named 'gregs' in '__mcontext'
auto code = (const u8*)RIP(context);
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:1146:3: error: no member named 'gregs' in '__mcontext'
RIP(context) += i_size;
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:1368:47: error: no member named 'gregs' in '__mcontext'
const bool is_writing = context->uc_mcontext.gregs[REG_ERR] & 0x2;
~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:1368:53: error: use of undeclared identifier 'REG_ERR'
const bool is_writing = context->uc_mcontext.gregs[REG_ERR] & 0x2;
^
Utilities/Thread.cpp:1393:89: error: no member named 'gregs' in '__mcontext'
...%s location %p at %p.", cause, info->si_addr, RIP(context)));
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
* Thread: add explict casts for incomplete pthread_t on some platforms
Utilities/Thread.cpp:1467:17: error: no viable overloaded '='
ctrl->m_thread = thread;
~~~~~~~~~~~~~~ ^ ~~~~~~
Utilities/Atomic.h:776:12: note: candidate function not viable: cannot convert argument of
incomplete type 'pthread_t' (aka 'pthread *') to 'const atomic_t<unsigned long>' for 1st
argument
atomic_t& operator =(const atomic_t&) = delete;
^
Utilities/Atomic.h:902:7: note: candidate function not viable: cannot convert argument of
incomplete type 'pthread_t' (aka 'pthread *') to 'const type' (aka 'const unsigned long') for
1st argument
type operator =(const type& rhs)
^
Utilities/Thread.cpp:1656:3: error: no matching function for call to 'pthread_detach'
pthread_detach(m_thread.raw());
^~~~~~~~~~~~~~
/usr/include/pthread.h:218:6: note: candidate function not viable: no known conversion from 'type'
(aka 'unsigned long') to 'pthread_t' (aka 'pthread *') for 1st argument
int pthread_detach(pthread_t);
^
* build: dlopen() maybe in libc
/usr/bin/ld: cannot find -ldl
c++: error: linker command failed with exit code 1 (use -v to see invocation)
* build: iconv() maybe available on some BSDs in libc
/usr/bin/ld: cannot find -liconv
c++: error: linker command failed with exit code 1 (use -v to see invocation)
* build: hidapi-hidraw is only built on Linux
/usr/bin/ld: cannot find -lhidapi-hidraw
c++: error: linker command failed with exit code 1 (use -v to see invocation)
* Thread: use getrusage() on more POSIX-like systems
* Qt: don't return NULL handle on other platforms
rpcs3/rpcs3qt/gs_frame.cpp:120:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^
* build: properly disable Vulkan on other platforms
In file included from rpcs3/rpcs3_app.cpp:40:
In file included from rpcs3/Emu/RSX/VK/VKGSRender.h:3:
rpcs3/Emu/RSX/VK/VKHelpers.h:1209:42: error: unknown type name 'device_queues'
std::vector<VkBool32> supportsPresent(device_queues);
^
rpcs3/Emu/RSX/VK/VKHelpers.h:1211:4: error: expected member name or ';' after declaration specifiers
for (u32 index = 0; index < device_queues; index++)
^
rpcs3/Emu/RSX/VK/VKHelpers.h:1221:4: error: expected member name or ';' after declaration specifiers
for (u32 i = 0; i < device_queues; i++)
^
rpcs3/Emu/RSX/VK/VKHelpers.h:1256:4: error: expected member name or ';' after declaration specifiers
if (graphicsQueueNodeIndex != presentQueueNodeIndex)
^
rpcs3/Emu/RSX/VK/VKHelpers.h:1261:4: error: expected member name or ';' after declaration specifiers
CHECK_RESULT(vkGetPhysicalDeviceSurfaceFormatsKHR(dev, surface, &formatCount, nullptr));
^
[...]
/usr/bin/ld: cannot find -lvulkan
c++: error: linker command failed with exit code 1 (use -v to see invocation)
* build: make install/strip work by moving commands
* Qt: create surface for GL context if it wasn't ready
#0 strlen (str=0x0) at /usr/src/lib/libc/string/strlen.c:100
#1 0x000000000090f02e in std::__1::char_traits<char>::length (__s=0x0)
at /usr/include/c++/v1/__string:215
#2 std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::basic_string (__s=0x0, this=<optimized out>) at /usr/include/c++/v1/string:1547
#3 gl::capabilities::initialize (this=0x2ba32a0 <gl::g_driver_caps>)
at rpcs3/Emu/RSX/GL/GLHelpers.h:133
#4 0x000000000090d3dd in gl::get_driver_caps () at rpcs3/Emu/RSX/GL/GLHelpers.cpp:56
#5 0x00000000008fa511 in GLGSRender::on_init_thread (this=0x838d30018)
at rpcs3/Emu/RSX/GL/GLGSRender.cpp:484
#6 0x0000000000938f9e in rsx::thread::on_task (this=0x838d30018)
at rpcs3/Emu/RSX/RSXThread.cpp:334
#7 0x0000000000abc329 in task_stack::task_type<named_thread::start_thread(std::__1::shared_ptr<void> const&)::$_10>::invoke() ()
#8 0x0000000000abc114 in thread_ctrl::start(std::__1::shared_ptr<thread_ctrl> const&, task_stack)::$_7::__invoke(void*) ()
#9 0x0000000801e60c35 in thread_start (curthread=0x843650a00)
at /usr/src/lib/libthr/thread/thr_create.c:289
#10 0x0000000000000000 in ?? ()
* build: don't abort without git metadata
-- Found Git: /usr/local/bin/git (found version "2.13.1")
fatal: Not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
CMake Warning at git-version.cmake:12 (message):
git rev-list failed, unable to include version.
* build: non-parallel needs git-version.h earlier
rpcs3/rpcs3_version.cpp:3:10: fatal error: 'git-version.h' file not found
#include "git-version.h"
^~~~~~~~~~~~~~~
1 error generated.
2017-06-22 18:03:41 +00:00
|
|
|
#elif defined(__DragonFly__) || defined(__FreeBSD__)
|
|
|
|
#include <sys/socket.h> // sendfile
|
|
|
|
#elif defined(__linux__) || defined(__sun)
|
2015-04-13 14:46:10 +00:00
|
|
|
#include <sys/sendfile.h>
|
|
|
|
#endif
|
2014-05-02 06:30:32 +00:00
|
|
|
|
2016-05-13 14:01:48 +00:00
|
|
|
static fs::error to_error(int e)
|
|
|
|
{
|
|
|
|
switch (e)
|
|
|
|
{
|
|
|
|
case ENOENT: return fs::error::noent;
|
|
|
|
case EEXIST: return fs::error::exist;
|
|
|
|
case EINVAL: return fs::error::inval;
|
2017-02-11 23:52:20 +00:00
|
|
|
case EACCES: return fs::error::acces;
|
2017-09-12 17:05:38 +00:00
|
|
|
case ENOTEMPTY: return fs::error::notempty;
|
2016-08-08 16:01:06 +00:00
|
|
|
default: fmt::throw_exception("Unknown system error: %d.", e);
|
2016-05-13 14:01:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-05 23:52:48 +00:00
|
|
|
#endif
|
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
namespace fs
|
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
thread_local error g_tls_error = error::ok;
|
2016-04-26 22:27:24 +00:00
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
class device_manager final
|
|
|
|
{
|
|
|
|
mutable shared_mutex m_mutex;
|
|
|
|
|
|
|
|
std::unordered_map<std::string, std::shared_ptr<device_base>> m_map;
|
|
|
|
|
|
|
|
public:
|
2016-04-25 10:49:12 +00:00
|
|
|
std::shared_ptr<device_base> get_device(const std::string& path);
|
2016-02-01 21:55:43 +00:00
|
|
|
std::shared_ptr<device_base> set_device(const std::string& name, const std::shared_ptr<device_base>&);
|
|
|
|
};
|
|
|
|
|
|
|
|
static device_manager& get_device_manager()
|
|
|
|
{
|
|
|
|
// Use magic static
|
|
|
|
static device_manager instance;
|
|
|
|
return instance;
|
|
|
|
}
|
2017-01-24 23:22:19 +00:00
|
|
|
|
|
|
|
file_base::~file_base()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-04-24 15:43:27 +00:00
|
|
|
stat_t file_base::stat()
|
|
|
|
{
|
|
|
|
fmt::throw_exception("fs::file::stat() not supported for %s", typeid(*this).name());
|
|
|
|
}
|
|
|
|
|
|
|
|
void file_base::sync()
|
|
|
|
{
|
|
|
|
// Do notning
|
|
|
|
}
|
|
|
|
|
2017-01-24 23:22:19 +00:00
|
|
|
dir_base::~dir_base()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
device_base::~device_base()
|
|
|
|
{
|
|
|
|
}
|
2016-02-01 21:55:43 +00:00
|
|
|
}
|
|
|
|
|
2016-04-25 10:49:12 +00:00
|
|
|
std::shared_ptr<fs::device_base> fs::device_manager::get_device(const std::string& path)
|
2016-02-01 21:55:43 +00:00
|
|
|
{
|
|
|
|
reader_lock lock(m_mutex);
|
|
|
|
|
2016-04-25 10:49:12 +00:00
|
|
|
const auto found = m_map.find(path.substr(0, path.find_first_of('/', 2)));
|
2016-02-01 21:55:43 +00:00
|
|
|
|
|
|
|
if (found == m_map.end())
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return found->second;
|
|
|
|
}
|
|
|
|
|
2016-04-25 10:49:12 +00:00
|
|
|
std::shared_ptr<fs::device_base> fs::device_manager::set_device(const std::string& name, const std::shared_ptr<device_base>& device)
|
2016-02-01 21:55:43 +00:00
|
|
|
{
|
2018-09-03 19:28:33 +00:00
|
|
|
std::lock_guard lock(m_mutex);
|
2016-02-01 21:55:43 +00:00
|
|
|
|
|
|
|
return m_map[name] = device;
|
|
|
|
}
|
|
|
|
|
2016-04-25 10:49:12 +00:00
|
|
|
std::shared_ptr<fs::device_base> fs::get_virtual_device(const std::string& path)
|
2016-02-01 21:55:43 +00:00
|
|
|
{
|
|
|
|
// Every virtual device path must have "//" at the beginning
|
2016-04-25 10:49:12 +00:00
|
|
|
if (path.size() > 2 && reinterpret_cast<const u16&>(path.front()) == "//"_u16)
|
2016-02-01 21:55:43 +00:00
|
|
|
{
|
2016-04-25 10:49:12 +00:00
|
|
|
return get_device_manager().get_device(path);
|
2016-02-01 21:55:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2016-04-25 10:49:12 +00:00
|
|
|
std::shared_ptr<fs::device_base> fs::set_virtual_device(const std::string& name, const std::shared_ptr<device_base>& device)
|
2016-02-01 21:55:43 +00:00
|
|
|
{
|
2016-08-15 13:29:38 +00:00
|
|
|
verify(HERE), name.size() > 2, name[0] == '/', name[1] == '/', name.find('/', 2) == -1;
|
2016-02-01 21:55:43 +00:00
|
|
|
|
|
|
|
return get_device_manager().set_device(name, device);
|
|
|
|
}
|
|
|
|
|
2016-01-05 23:52:48 +00:00
|
|
|
std::string fs::get_parent_dir(const std::string& path)
|
|
|
|
{
|
|
|
|
// Search upper bound (set to the last character, npos for empty string)
|
|
|
|
auto last = path.size() - 1;
|
2015-04-15 14:27:37 +00:00
|
|
|
|
2016-01-05 23:52:48 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
const auto& delim = "/\\";
|
|
|
|
#else
|
|
|
|
const auto& delim = "/";
|
2014-10-24 13:24:09 +00:00
|
|
|
#endif
|
|
|
|
|
2016-01-05 23:52:48 +00:00
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
const auto pos = path.find_last_of(delim, last, sizeof(delim) - 1);
|
2015-08-12 01:52:26 +00:00
|
|
|
|
2016-01-05 23:52:48 +00:00
|
|
|
// Contiguous slashes are ignored at the end
|
|
|
|
if (std::exchange(last, pos - 1) != pos)
|
|
|
|
{
|
|
|
|
// Return empty string if the path doesn't contain at least 2 elements
|
|
|
|
return path.substr(0, pos != -1 && path.find_last_not_of(delim, pos, sizeof(delim) - 1) != -1 ? pos : 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool fs::stat(const std::string& path, stat_t& info)
|
|
|
|
{
|
2016-02-01 21:55:43 +00:00
|
|
|
if (auto device = get_virtual_device(path))
|
|
|
|
{
|
|
|
|
return device->stat(path, info);
|
|
|
|
}
|
|
|
|
|
2014-07-31 18:20:00 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
WIN32_FILE_ATTRIBUTE_DATA attrs;
|
2015-06-18 11:55:11 +00:00
|
|
|
if (!GetFileAttributesExW(to_wchar(path).get(), GetFileExInfoStandard, &attrs))
|
2015-04-15 14:27:37 +00:00
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = to_error(GetLastError());
|
2014-07-31 18:20:00 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-04-15 14:27:37 +00:00
|
|
|
|
2015-04-24 21:38:11 +00:00
|
|
|
info.is_directory = (attrs.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0;
|
|
|
|
info.is_writable = (attrs.dwFileAttributes & FILE_ATTRIBUTE_READONLY) == 0;
|
2015-04-25 19:15:53 +00:00
|
|
|
info.size = (u64)attrs.nFileSizeLow | ((u64)attrs.nFileSizeHigh << 32);
|
2015-12-16 19:50:45 +00:00
|
|
|
info.atime = to_time(attrs.ftLastAccessTime);
|
|
|
|
info.mtime = to_time(attrs.ftLastWriteTime);
|
2018-11-16 11:31:28 +00:00
|
|
|
info.ctime = info.mtime;
|
2014-07-31 18:20:00 +00:00
|
|
|
#else
|
2016-01-05 23:52:48 +00:00
|
|
|
struct ::stat file_info;
|
|
|
|
if (::stat(path.c_str(), &file_info) != 0)
|
2015-04-15 14:27:37 +00:00
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = to_error(errno);
|
2014-07-31 18:20:00 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-04-24 21:38:11 +00:00
|
|
|
info.is_directory = S_ISDIR(file_info.st_mode);
|
|
|
|
info.is_writable = file_info.st_mode & 0200; // HACK: approximation
|
2015-04-15 14:27:37 +00:00
|
|
|
info.size = file_info.st_size;
|
|
|
|
info.atime = file_info.st_atime;
|
|
|
|
info.mtime = file_info.st_mtime;
|
2018-11-16 11:31:28 +00:00
|
|
|
info.ctime = info.mtime;
|
2014-07-31 18:20:00 +00:00
|
|
|
#endif
|
2015-04-25 19:15:53 +00:00
|
|
|
|
2018-11-16 11:34:34 +00:00
|
|
|
if (info.atime < info.mtime)
|
|
|
|
info.atime = info.mtime;
|
|
|
|
|
2014-07-31 18:20:00 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-04-24 21:38:11 +00:00
|
|
|
bool fs::exists(const std::string& path)
|
2015-04-20 15:53:31 +00:00
|
|
|
{
|
2016-02-01 21:55:43 +00:00
|
|
|
if (auto device = get_virtual_device(path))
|
|
|
|
{
|
|
|
|
stat_t info;
|
|
|
|
return device->stat(path, info);
|
|
|
|
}
|
|
|
|
|
2015-04-20 15:53:31 +00:00
|
|
|
#ifdef _WIN32
|
2016-01-05 23:52:48 +00:00
|
|
|
if (GetFileAttributesW(to_wchar(path).get()) == INVALID_FILE_ATTRIBUTES)
|
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = to_error(GetLastError());
|
2016-01-05 23:52:48 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2015-04-20 15:53:31 +00:00
|
|
|
#else
|
2016-01-05 23:52:48 +00:00
|
|
|
struct ::stat file_info;
|
2016-04-26 22:27:24 +00:00
|
|
|
if (::stat(path.c_str(), &file_info) != 0)
|
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = to_error(errno);
|
2016-04-26 22:27:24 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2015-04-20 15:53:31 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-01-05 23:52:48 +00:00
|
|
|
bool fs::is_file(const std::string& path)
|
2015-04-20 15:53:31 +00:00
|
|
|
{
|
2016-02-01 21:55:43 +00:00
|
|
|
if (auto device = get_virtual_device(path))
|
|
|
|
{
|
|
|
|
stat_t info;
|
|
|
|
if (!device->stat(path, info))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (info.is_directory)
|
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = error::exist;
|
2016-02-01 21:55:43 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-04-20 15:53:31 +00:00
|
|
|
#ifdef _WIN32
|
2016-01-05 23:52:48 +00:00
|
|
|
const DWORD attrs = GetFileAttributesW(to_wchar(path).get());
|
|
|
|
if (attrs == INVALID_FILE_ATTRIBUTES)
|
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = to_error(GetLastError());
|
2016-01-05 23:52:48 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
struct ::stat file_info;
|
|
|
|
if (::stat(path.c_str(), &file_info) != 0)
|
2015-04-20 15:53:31 +00:00
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = to_error(errno);
|
2015-04-20 15:53:31 +00:00
|
|
|
return false;
|
|
|
|
}
|
2016-01-05 23:52:48 +00:00
|
|
|
#endif
|
2015-04-20 15:53:31 +00:00
|
|
|
|
2016-01-05 23:52:48 +00:00
|
|
|
// TODO: correct file type check
|
|
|
|
#ifdef _WIN32
|
|
|
|
if ((attrs & FILE_ATTRIBUTE_DIRECTORY) != 0)
|
2015-04-20 15:53:31 +00:00
|
|
|
#else
|
2016-01-05 23:52:48 +00:00
|
|
|
if (S_ISDIR(file_info.st_mode))
|
|
|
|
#endif
|
2015-04-20 15:53:31 +00:00
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = error::exist;
|
2015-04-20 15:53:31 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-01-05 23:52:48 +00:00
|
|
|
return true;
|
2015-04-20 15:53:31 +00:00
|
|
|
}
|
|
|
|
|
2016-01-05 23:52:48 +00:00
|
|
|
bool fs::is_dir(const std::string& path)
|
2015-04-15 14:27:37 +00:00
|
|
|
{
|
2016-02-01 21:55:43 +00:00
|
|
|
if (auto device = get_virtual_device(path))
|
|
|
|
{
|
|
|
|
stat_t info;
|
|
|
|
if (!device->stat(path, info))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (info.is_directory == false)
|
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = error::exist;
|
2016-02-01 21:55:43 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-04-15 14:27:37 +00:00
|
|
|
#ifdef _WIN32
|
2016-01-05 23:52:48 +00:00
|
|
|
const DWORD attrs = GetFileAttributesW(to_wchar(path).get());
|
|
|
|
if (attrs == INVALID_FILE_ATTRIBUTES)
|
2015-04-15 14:27:37 +00:00
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = to_error(GetLastError());
|
2015-04-15 14:27:37 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#else
|
2016-01-05 23:52:48 +00:00
|
|
|
struct ::stat file_info;
|
|
|
|
if (::stat(path.c_str(), &file_info) != 0)
|
2015-04-15 14:27:37 +00:00
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = to_error(errno);
|
2015-04-15 14:27:37 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
2015-08-12 01:52:26 +00:00
|
|
|
|
2014-08-29 13:06:58 +00:00
|
|
|
#ifdef _WIN32
|
2016-01-05 23:52:48 +00:00
|
|
|
if ((attrs & FILE_ATTRIBUTE_DIRECTORY) == 0)
|
2014-08-29 13:06:58 +00:00
|
|
|
#else
|
2016-01-05 23:52:48 +00:00
|
|
|
if (!S_ISDIR(file_info.st_mode))
|
2014-08-29 13:06:58 +00:00
|
|
|
#endif
|
2015-04-18 13:38:42 +00:00
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = error::exist;
|
2015-04-18 13:38:42 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2014-07-31 18:20:00 +00:00
|
|
|
}
|
|
|
|
|
2017-04-24 15:45:58 +00:00
|
|
|
bool fs::statfs(const std::string& path, fs::device_stat& info)
|
|
|
|
{
|
|
|
|
if (auto device = get_virtual_device(path))
|
|
|
|
{
|
|
|
|
return device->statfs(path, info);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
ULARGE_INTEGER avail_free;
|
|
|
|
ULARGE_INTEGER total_size;
|
|
|
|
ULARGE_INTEGER total_free;
|
|
|
|
|
|
|
|
if (!GetDiskFreeSpaceExW(to_wchar(path).get(), &avail_free, &total_size, &total_free))
|
|
|
|
{
|
|
|
|
g_tls_error = to_error(GetLastError());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
info.block_size = 4096; // TODO
|
|
|
|
info.total_size = total_size.QuadPart;
|
|
|
|
info.total_free = total_free.QuadPart;
|
|
|
|
info.avail_free = avail_free.QuadPart;
|
|
|
|
#else
|
|
|
|
struct ::statvfs buf;
|
2017-05-14 20:45:22 +00:00
|
|
|
if (::statvfs(path.c_str(), &buf) != 0)
|
2017-04-24 15:45:58 +00:00
|
|
|
{
|
|
|
|
g_tls_error = to_error(errno);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
info.block_size = buf.f_frsize;
|
|
|
|
info.total_size = info.block_size * buf.f_blocks;
|
|
|
|
info.total_free = info.block_size * buf.f_bfree;
|
|
|
|
info.avail_free = info.block_size * buf.f_bavail;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-01-05 23:52:48 +00:00
|
|
|
bool fs::create_dir(const std::string& path)
|
2014-07-31 18:20:00 +00:00
|
|
|
{
|
2016-02-01 21:55:43 +00:00
|
|
|
if (auto device = get_virtual_device(path))
|
|
|
|
{
|
|
|
|
return device->create_dir(path);
|
|
|
|
}
|
|
|
|
|
2015-12-24 07:22:09 +00:00
|
|
|
#ifdef _WIN32
|
2016-01-05 23:52:48 +00:00
|
|
|
if (!CreateDirectoryW(to_wchar(path).get(), NULL))
|
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = to_error(GetLastError());
|
2016-01-05 23:52:48 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2015-12-24 07:22:09 +00:00
|
|
|
#else
|
2016-04-26 22:27:24 +00:00
|
|
|
if (::mkdir(path.c_str(), S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) != 0)
|
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = to_error(errno);
|
2016-04-26 22:27:24 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2015-12-24 07:22:09 +00:00
|
|
|
#endif
|
2016-01-05 23:52:48 +00:00
|
|
|
}
|
2015-04-20 15:53:31 +00:00
|
|
|
|
2016-01-05 23:52:48 +00:00
|
|
|
bool fs::create_path(const std::string& path)
|
|
|
|
{
|
2018-05-04 20:48:45 +00:00
|
|
|
const std::string parent = get_parent_dir(path);
|
2016-01-05 23:52:48 +00:00
|
|
|
|
2018-05-04 20:48:45 +00:00
|
|
|
if (!parent.empty() && !create_path(parent))
|
2016-01-05 23:52:48 +00:00
|
|
|
{
|
2015-12-24 07:22:09 +00:00
|
|
|
return false;
|
2016-01-05 23:52:48 +00:00
|
|
|
}
|
2015-12-24 07:22:09 +00:00
|
|
|
|
2018-05-04 20:48:45 +00:00
|
|
|
if (!create_dir(path) && g_tls_error != error::exist)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2014-07-31 18:20:00 +00:00
|
|
|
}
|
|
|
|
|
2016-01-05 23:52:48 +00:00
|
|
|
bool fs::remove_dir(const std::string& path)
|
2014-07-31 18:20:00 +00:00
|
|
|
{
|
2018-09-11 16:02:19 +00:00
|
|
|
if (path.empty())
|
|
|
|
{
|
|
|
|
// Don't allow removing empty path (TODO)
|
|
|
|
g_tls_error = fs::error::noent;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
if (auto device = get_virtual_device(path))
|
|
|
|
{
|
|
|
|
return device->remove_dir(path);
|
|
|
|
}
|
|
|
|
|
2014-07-31 18:20:00 +00:00
|
|
|
#ifdef _WIN32
|
2016-01-05 23:52:48 +00:00
|
|
|
if (!RemoveDirectoryW(to_wchar(path).get()))
|
2014-10-24 13:24:09 +00:00
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = to_error(GetLastError());
|
2014-07-31 18:20:00 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-04-13 14:46:10 +00:00
|
|
|
|
2014-07-31 18:20:00 +00:00
|
|
|
return true;
|
2016-01-05 23:52:48 +00:00
|
|
|
#else
|
2016-04-26 22:27:24 +00:00
|
|
|
if (::rmdir(path.c_str()) != 0)
|
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = to_error(errno);
|
2016-04-26 22:27:24 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2016-01-05 23:52:48 +00:00
|
|
|
#endif
|
2014-07-31 18:20:00 +00:00
|
|
|
}
|
|
|
|
|
2017-08-30 14:14:30 +00:00
|
|
|
bool fs::rename(const std::string& from, const std::string& to, bool overwrite)
|
2014-07-31 18:20:00 +00:00
|
|
|
{
|
2018-09-11 16:02:19 +00:00
|
|
|
if (from.empty() || to.empty())
|
|
|
|
{
|
|
|
|
// Don't allow opening empty path (TODO)
|
|
|
|
g_tls_error = fs::error::noent;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
const auto device = get_virtual_device(from);
|
|
|
|
|
|
|
|
if (device != get_virtual_device(to))
|
|
|
|
{
|
2016-08-08 16:01:06 +00:00
|
|
|
fmt::throw_exception("fs::rename() between different devices not implemented.\nFrom: %s\nTo: %s", from, to);
|
2016-02-01 21:55:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (device)
|
|
|
|
{
|
|
|
|
return device->rename(from, to);
|
|
|
|
}
|
|
|
|
|
2014-07-31 18:20:00 +00:00
|
|
|
#ifdef _WIN32
|
2017-08-30 14:14:30 +00:00
|
|
|
const auto ws1 = to_wchar(from);
|
|
|
|
const auto ws2 = to_wchar(to);
|
|
|
|
|
|
|
|
if (!MoveFileExW(ws1.get(), ws2.get(), overwrite ? MOVEFILE_REPLACE_EXISTING : 0))
|
2015-04-13 14:46:10 +00:00
|
|
|
{
|
2017-08-30 14:14:30 +00:00
|
|
|
DWORD error1 = GetLastError();
|
|
|
|
|
|
|
|
if (overwrite && error1 == ERROR_ACCESS_DENIED && is_dir(from) && is_dir(to))
|
|
|
|
{
|
|
|
|
if (RemoveDirectoryW(ws2.get()))
|
|
|
|
{
|
|
|
|
if (MoveFileW(ws1.get(), ws2.get()))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
error1 = GetLastError();
|
|
|
|
CreateDirectoryW(ws2.get(), NULL); // TODO
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
error1 = GetLastError();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
g_tls_error = to_error(error1);
|
2015-04-13 14:46:10 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2016-01-05 23:52:48 +00:00
|
|
|
#else
|
2017-08-30 14:14:30 +00:00
|
|
|
if (!overwrite && exists(to))
|
|
|
|
{
|
|
|
|
g_tls_error = fs::error::exist;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-04-26 22:27:24 +00:00
|
|
|
if (::rename(from.c_str(), to.c_str()) != 0)
|
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = to_error(errno);
|
2016-04-26 22:27:24 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2016-01-05 23:52:48 +00:00
|
|
|
#endif
|
2015-04-13 14:46:10 +00:00
|
|
|
}
|
|
|
|
|
2016-01-05 23:52:48 +00:00
|
|
|
bool fs::copy_file(const std::string& from, const std::string& to, bool overwrite)
|
2015-04-13 14:46:10 +00:00
|
|
|
{
|
2016-02-01 21:55:43 +00:00
|
|
|
const auto device = get_virtual_device(from);
|
|
|
|
|
|
|
|
if (device != get_virtual_device(to) || device) // TODO
|
|
|
|
{
|
2016-08-08 16:01:06 +00:00
|
|
|
fmt::throw_exception("fs::copy_file() for virtual devices not implemented.\nFrom: %s\nTo: %s", from, to);
|
2016-02-01 21:55:43 +00:00
|
|
|
}
|
|
|
|
|
2016-01-05 23:52:48 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
if (!CopyFileW(to_wchar(from).get(), to_wchar(to).get(), !overwrite))
|
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = to_error(GetLastError());
|
2016-01-05 23:52:48 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
#else
|
2015-11-01 10:33:28 +00:00
|
|
|
/* Source: http://stackoverflow.com/questions/2180079/how-can-i-copy-a-file-on-unix-using-c */
|
2015-04-13 14:46:10 +00:00
|
|
|
|
2016-01-05 23:52:48 +00:00
|
|
|
const int input = ::open(from.c_str(), O_RDONLY);
|
2015-11-01 10:33:28 +00:00
|
|
|
if (input == -1)
|
2015-04-13 14:46:10 +00:00
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = to_error(errno);
|
2016-01-05 23:52:48 +00:00
|
|
|
return false;
|
2015-04-13 14:46:10 +00:00
|
|
|
}
|
2015-11-01 10:33:28 +00:00
|
|
|
|
2016-01-05 23:52:48 +00:00
|
|
|
const int output = ::open(to.c_str(), O_WRONLY | O_CREAT | (overwrite ? O_TRUNC : O_EXCL), S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
|
2015-11-01 10:33:28 +00:00
|
|
|
if (output == -1)
|
2015-04-13 14:46:10 +00:00
|
|
|
{
|
2016-01-05 23:52:48 +00:00
|
|
|
const int err = errno;
|
|
|
|
|
|
|
|
::close(input);
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = to_error(err);
|
2016-01-05 23:52:48 +00:00
|
|
|
return false;
|
2015-04-13 14:46:10 +00:00
|
|
|
}
|
|
|
|
|
2016-01-05 23:52:48 +00:00
|
|
|
// Here we use kernel-space copying for performance reasons
|
Improve portability for BSDs (#2813)
* sys_net: don't use fds_bits from a system header on FreeBSD
rpcs3/Emu/Cell/Modules/sys_net.cpp:137:14: error: no member named '__fds_bits' in
'sys_net::fd_set'; did you mean 'fds_bits'?
if (src->fds_bits[i] & (1 << bit))
^~~~~~~~
fds_bits
/usr/include/sys/select.h:75:18: note: expanded from macro 'fds_bits'
#define fds_bits __fds_bits
^
rpcs3/Emu/Cell/Modules/sys_net.h:114:13: note: 'fds_bits' declared here
be_t<u32> fds_bits[32];
^
* GUI: fallback to xdg-open on other Unices
rpcs3/Gui/GameViewer.cpp:289:26: error: use of undeclared identifier 'command'
wxExecute(fmt::FromUTF8(command));
^
* File: FreeBSD never supported copyfile(3) but sendfile(2) works fine
Utilities/File.cpp:114:10: fatal error: 'copyfile.h' file not found
#include <copyfile.h>
^~~~~~~~~~~~
* Thread: add signal handling for BSDs
Utilities/Thread.cpp:761:23: error: use of undeclared identifier 'REG_RAX'
static const decltype(REG_RAX) reg_table[] =
^
Utilities/Thread.cpp:763:2: error: use of undeclared identifier 'REG_RAX'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:11: error: use of undeclared identifier 'REG_RCX'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:20: error: use of undeclared identifier 'REG_RDX'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:29: error: use of undeclared identifier 'REG_RBX'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:38: error: use of undeclared identifier 'REG_RSP'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:47: error: use of undeclared identifier 'REG_RBP'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:56: error: use of undeclared identifier 'REG_RSI'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:65: error: use of undeclared identifier 'REG_RDI'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:764:2: error: use of undeclared identifier 'REG_R8'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:10: error: use of undeclared identifier 'REG_R9'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:18: error: use of undeclared identifier 'REG_R10'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:27: error: use of undeclared identifier 'REG_R11'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:36: error: use of undeclared identifier 'REG_R12'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:45: error: use of undeclared identifier 'REG_R13'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:54: error: use of undeclared identifier 'REG_R14'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:63: error: use of undeclared identifier 'REG_R15'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:72: error: use of undeclared identifier 'REG_RIP'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:792:26: error: no member named 'gregs' in '__mcontext'
const u64 reg_value = *X64REG(context, reg - X64R_RAX);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:804:21: error: no member named 'gregs' in '__mcontext'
out_value = (u8)(*X64REG(context, reg - X64R_AL));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:809:21: error: no member named 'gregs' in '__mcontext'
out_value = (u8)(*X64REG(context, reg - X64R_AH) >> 8);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:815:31: error: no member named 'gregs' in '__mcontext'
const s8 imm_value = *(s8*)(RIP(context) + i_size - 1);
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:827:33: error: no member named 'gregs' in '__mcontext'
const s16 imm_value = *(s16*)(RIP(context) + i_size - 2);
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:836:33: error: no member named 'gregs' in '__mcontext'
const s32 imm_value = *(s32*)(RIP(context) + i_size - 4);
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:846:20: error: no member named 'gregs' in '__mcontext'
out_value = (u32)RCX(context);
^~~~~~~~~~~~
Utilities/Thread.cpp:779:18: note: expanded from macro 'RCX'
#define RCX(c) (*X64REG((c), 1))
^~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:851:19: error: no member named 'gregs' in '__mcontext'
const u32 _cf = EFLAGS(context) & 0x1;
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:851:19: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:852:19: error: no member named 'gregs' in '__mcontext'
const u32 _zf = EFLAGS(context) & 0x40;
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:852:19: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:853:19: error: no member named 'gregs' in '__mcontext'
const u32 _sf = EFLAGS(context) & 0x80;
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:853:19: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:854:19: error: no member named 'gregs' in '__mcontext'
const u32 _of = EFLAGS(context) & 0x800;
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:854:19: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:855:19: error: no member named 'gregs' in '__mcontext'
const u32 _pf = EFLAGS(context) & 0x4;
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:855:19: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:885:12: error: no member named 'gregs' in '__mcontext'
case 1: *X64REG(context, reg - X64R_RAX) = value & 0xff | *X64REG(context, re...
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:885:62: error: no member named 'gregs' in '__mcontext'
...*X64REG(context, reg - X64R_RAX) = value & 0xff | *X64REG(context, reg - X64R_RAX) & 0xffffff...
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:886:12: error: no member named 'gregs' in '__mcontext'
case 2: *X64REG(context, reg - X64R_RAX) = value & 0xffff | *X64REG(context, ...
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:886:64: error: no member named 'gregs' in '__mcontext'
...reg - X64R_RAX) = value & 0xffff | *X64REG(context, reg - X64R_RAX) & 0xffff0000; return true;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:887:12: error: no member named 'gregs' in '__mcontext'
case 4: *X64REG(context, reg - X64R_RAX) = value & 0xffffffff; return true;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:888:12: error: no member named 'gregs' in '__mcontext'
case 8: *X64REG(context, reg - X64R_RAX) = value; return true;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:913:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x1; // set CF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:913:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:917:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x1; // clear CF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:917:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:922:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x40; // set ZF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:922:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:926:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x40; // clear ZF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:926:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:931:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x80; // set SF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:931:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:935:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x80; // clear SF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:935:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:940:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x800; // set OF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:940:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:944:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x800; // clear OF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:944:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:953:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x4; // set PF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:953:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:957:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x4; // clear PF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:957:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:962:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x10; // set AF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:962:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:966:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x10; // clear AF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:966:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:976:7: error: no member named 'gregs' in '__mcontext'
if (EFLAGS(context) & 0x400 /* direction flag */)
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:976:7: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:1020:25: error: no member named 'gregs' in '__mcontext'
auto code = (const u8*)RIP(context);
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:1146:3: error: no member named 'gregs' in '__mcontext'
RIP(context) += i_size;
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:1368:47: error: no member named 'gregs' in '__mcontext'
const bool is_writing = context->uc_mcontext.gregs[REG_ERR] & 0x2;
~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:1368:53: error: use of undeclared identifier 'REG_ERR'
const bool is_writing = context->uc_mcontext.gregs[REG_ERR] & 0x2;
^
Utilities/Thread.cpp:1393:89: error: no member named 'gregs' in '__mcontext'
...%s location %p at %p.", cause, info->si_addr, RIP(context)));
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
* Thread: add explict casts for incomplete pthread_t on some platforms
Utilities/Thread.cpp:1467:17: error: no viable overloaded '='
ctrl->m_thread = thread;
~~~~~~~~~~~~~~ ^ ~~~~~~
Utilities/Atomic.h:776:12: note: candidate function not viable: cannot convert argument of
incomplete type 'pthread_t' (aka 'pthread *') to 'const atomic_t<unsigned long>' for 1st
argument
atomic_t& operator =(const atomic_t&) = delete;
^
Utilities/Atomic.h:902:7: note: candidate function not viable: cannot convert argument of
incomplete type 'pthread_t' (aka 'pthread *') to 'const type' (aka 'const unsigned long') for
1st argument
type operator =(const type& rhs)
^
Utilities/Thread.cpp:1656:3: error: no matching function for call to 'pthread_detach'
pthread_detach(m_thread.raw());
^~~~~~~~~~~~~~
/usr/include/pthread.h:218:6: note: candidate function not viable: no known conversion from 'type'
(aka 'unsigned long') to 'pthread_t' (aka 'pthread *') for 1st argument
int pthread_detach(pthread_t);
^
* build: dlopen() maybe in libc
/usr/bin/ld: cannot find -ldl
c++: error: linker command failed with exit code 1 (use -v to see invocation)
* build: iconv() maybe available on some BSDs in libc
/usr/bin/ld: cannot find -liconv
c++: error: linker command failed with exit code 1 (use -v to see invocation)
* build: hidapi-hidraw is only built on Linux
/usr/bin/ld: cannot find -lhidapi-hidraw
c++: error: linker command failed with exit code 1 (use -v to see invocation)
* Thread: use getrusage() on more POSIX-like systems
* Qt: don't return NULL handle on other platforms
rpcs3/rpcs3qt/gs_frame.cpp:120:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^
* build: properly disable Vulkan on other platforms
In file included from rpcs3/rpcs3_app.cpp:40:
In file included from rpcs3/Emu/RSX/VK/VKGSRender.h:3:
rpcs3/Emu/RSX/VK/VKHelpers.h:1209:42: error: unknown type name 'device_queues'
std::vector<VkBool32> supportsPresent(device_queues);
^
rpcs3/Emu/RSX/VK/VKHelpers.h:1211:4: error: expected member name or ';' after declaration specifiers
for (u32 index = 0; index < device_queues; index++)
^
rpcs3/Emu/RSX/VK/VKHelpers.h:1221:4: error: expected member name or ';' after declaration specifiers
for (u32 i = 0; i < device_queues; i++)
^
rpcs3/Emu/RSX/VK/VKHelpers.h:1256:4: error: expected member name or ';' after declaration specifiers
if (graphicsQueueNodeIndex != presentQueueNodeIndex)
^
rpcs3/Emu/RSX/VK/VKHelpers.h:1261:4: error: expected member name or ';' after declaration specifiers
CHECK_RESULT(vkGetPhysicalDeviceSurfaceFormatsKHR(dev, surface, &formatCount, nullptr));
^
[...]
/usr/bin/ld: cannot find -lvulkan
c++: error: linker command failed with exit code 1 (use -v to see invocation)
* build: make install/strip work by moving commands
* Qt: create surface for GL context if it wasn't ready
#0 strlen (str=0x0) at /usr/src/lib/libc/string/strlen.c:100
#1 0x000000000090f02e in std::__1::char_traits<char>::length (__s=0x0)
at /usr/include/c++/v1/__string:215
#2 std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::basic_string (__s=0x0, this=<optimized out>) at /usr/include/c++/v1/string:1547
#3 gl::capabilities::initialize (this=0x2ba32a0 <gl::g_driver_caps>)
at rpcs3/Emu/RSX/GL/GLHelpers.h:133
#4 0x000000000090d3dd in gl::get_driver_caps () at rpcs3/Emu/RSX/GL/GLHelpers.cpp:56
#5 0x00000000008fa511 in GLGSRender::on_init_thread (this=0x838d30018)
at rpcs3/Emu/RSX/GL/GLGSRender.cpp:484
#6 0x0000000000938f9e in rsx::thread::on_task (this=0x838d30018)
at rpcs3/Emu/RSX/RSXThread.cpp:334
#7 0x0000000000abc329 in task_stack::task_type<named_thread::start_thread(std::__1::shared_ptr<void> const&)::$_10>::invoke() ()
#8 0x0000000000abc114 in thread_ctrl::start(std::__1::shared_ptr<thread_ctrl> const&, task_stack)::$_7::__invoke(void*) ()
#9 0x0000000801e60c35 in thread_start (curthread=0x843650a00)
at /usr/src/lib/libthr/thread/thr_create.c:289
#10 0x0000000000000000 in ?? ()
* build: don't abort without git metadata
-- Found Git: /usr/local/bin/git (found version "2.13.1")
fatal: Not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
CMake Warning at git-version.cmake:12 (message):
git rev-list failed, unable to include version.
* build: non-parallel needs git-version.h earlier
rpcs3/rpcs3_version.cpp:3:10: fatal error: 'git-version.h' file not found
#include "git-version.h"
^~~~~~~~~~~~~~~
1 error generated.
2017-06-22 18:03:41 +00:00
|
|
|
#if defined(__APPLE__)
|
|
|
|
// fcopyfile works on OS X 10.5+
|
2016-01-05 23:52:48 +00:00
|
|
|
if (::fcopyfile(input, output, 0, COPYFILE_ALL))
|
Improve portability for BSDs (#2813)
* sys_net: don't use fds_bits from a system header on FreeBSD
rpcs3/Emu/Cell/Modules/sys_net.cpp:137:14: error: no member named '__fds_bits' in
'sys_net::fd_set'; did you mean 'fds_bits'?
if (src->fds_bits[i] & (1 << bit))
^~~~~~~~
fds_bits
/usr/include/sys/select.h:75:18: note: expanded from macro 'fds_bits'
#define fds_bits __fds_bits
^
rpcs3/Emu/Cell/Modules/sys_net.h:114:13: note: 'fds_bits' declared here
be_t<u32> fds_bits[32];
^
* GUI: fallback to xdg-open on other Unices
rpcs3/Gui/GameViewer.cpp:289:26: error: use of undeclared identifier 'command'
wxExecute(fmt::FromUTF8(command));
^
* File: FreeBSD never supported copyfile(3) but sendfile(2) works fine
Utilities/File.cpp:114:10: fatal error: 'copyfile.h' file not found
#include <copyfile.h>
^~~~~~~~~~~~
* Thread: add signal handling for BSDs
Utilities/Thread.cpp:761:23: error: use of undeclared identifier 'REG_RAX'
static const decltype(REG_RAX) reg_table[] =
^
Utilities/Thread.cpp:763:2: error: use of undeclared identifier 'REG_RAX'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:11: error: use of undeclared identifier 'REG_RCX'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:20: error: use of undeclared identifier 'REG_RDX'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:29: error: use of undeclared identifier 'REG_RBX'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:38: error: use of undeclared identifier 'REG_RSP'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:47: error: use of undeclared identifier 'REG_RBP'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:56: error: use of undeclared identifier 'REG_RSI'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:65: error: use of undeclared identifier 'REG_RDI'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:764:2: error: use of undeclared identifier 'REG_R8'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:10: error: use of undeclared identifier 'REG_R9'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:18: error: use of undeclared identifier 'REG_R10'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:27: error: use of undeclared identifier 'REG_R11'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:36: error: use of undeclared identifier 'REG_R12'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:45: error: use of undeclared identifier 'REG_R13'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:54: error: use of undeclared identifier 'REG_R14'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:63: error: use of undeclared identifier 'REG_R15'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:72: error: use of undeclared identifier 'REG_RIP'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:792:26: error: no member named 'gregs' in '__mcontext'
const u64 reg_value = *X64REG(context, reg - X64R_RAX);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:804:21: error: no member named 'gregs' in '__mcontext'
out_value = (u8)(*X64REG(context, reg - X64R_AL));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:809:21: error: no member named 'gregs' in '__mcontext'
out_value = (u8)(*X64REG(context, reg - X64R_AH) >> 8);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:815:31: error: no member named 'gregs' in '__mcontext'
const s8 imm_value = *(s8*)(RIP(context) + i_size - 1);
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:827:33: error: no member named 'gregs' in '__mcontext'
const s16 imm_value = *(s16*)(RIP(context) + i_size - 2);
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:836:33: error: no member named 'gregs' in '__mcontext'
const s32 imm_value = *(s32*)(RIP(context) + i_size - 4);
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:846:20: error: no member named 'gregs' in '__mcontext'
out_value = (u32)RCX(context);
^~~~~~~~~~~~
Utilities/Thread.cpp:779:18: note: expanded from macro 'RCX'
#define RCX(c) (*X64REG((c), 1))
^~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:851:19: error: no member named 'gregs' in '__mcontext'
const u32 _cf = EFLAGS(context) & 0x1;
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:851:19: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:852:19: error: no member named 'gregs' in '__mcontext'
const u32 _zf = EFLAGS(context) & 0x40;
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:852:19: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:853:19: error: no member named 'gregs' in '__mcontext'
const u32 _sf = EFLAGS(context) & 0x80;
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:853:19: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:854:19: error: no member named 'gregs' in '__mcontext'
const u32 _of = EFLAGS(context) & 0x800;
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:854:19: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:855:19: error: no member named 'gregs' in '__mcontext'
const u32 _pf = EFLAGS(context) & 0x4;
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:855:19: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:885:12: error: no member named 'gregs' in '__mcontext'
case 1: *X64REG(context, reg - X64R_RAX) = value & 0xff | *X64REG(context, re...
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:885:62: error: no member named 'gregs' in '__mcontext'
...*X64REG(context, reg - X64R_RAX) = value & 0xff | *X64REG(context, reg - X64R_RAX) & 0xffffff...
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:886:12: error: no member named 'gregs' in '__mcontext'
case 2: *X64REG(context, reg - X64R_RAX) = value & 0xffff | *X64REG(context, ...
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:886:64: error: no member named 'gregs' in '__mcontext'
...reg - X64R_RAX) = value & 0xffff | *X64REG(context, reg - X64R_RAX) & 0xffff0000; return true;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:887:12: error: no member named 'gregs' in '__mcontext'
case 4: *X64REG(context, reg - X64R_RAX) = value & 0xffffffff; return true;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:888:12: error: no member named 'gregs' in '__mcontext'
case 8: *X64REG(context, reg - X64R_RAX) = value; return true;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:913:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x1; // set CF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:913:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:917:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x1; // clear CF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:917:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:922:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x40; // set ZF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:922:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:926:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x40; // clear ZF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:926:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:931:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x80; // set SF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:931:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:935:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x80; // clear SF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:935:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:940:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x800; // set OF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:940:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:944:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x800; // clear OF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:944:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:953:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x4; // set PF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:953:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:957:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x4; // clear PF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:957:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:962:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x10; // set AF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:962:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:966:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x10; // clear AF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:966:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:976:7: error: no member named 'gregs' in '__mcontext'
if (EFLAGS(context) & 0x400 /* direction flag */)
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:976:7: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:1020:25: error: no member named 'gregs' in '__mcontext'
auto code = (const u8*)RIP(context);
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:1146:3: error: no member named 'gregs' in '__mcontext'
RIP(context) += i_size;
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:1368:47: error: no member named 'gregs' in '__mcontext'
const bool is_writing = context->uc_mcontext.gregs[REG_ERR] & 0x2;
~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:1368:53: error: use of undeclared identifier 'REG_ERR'
const bool is_writing = context->uc_mcontext.gregs[REG_ERR] & 0x2;
^
Utilities/Thread.cpp:1393:89: error: no member named 'gregs' in '__mcontext'
...%s location %p at %p.", cause, info->si_addr, RIP(context)));
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
* Thread: add explict casts for incomplete pthread_t on some platforms
Utilities/Thread.cpp:1467:17: error: no viable overloaded '='
ctrl->m_thread = thread;
~~~~~~~~~~~~~~ ^ ~~~~~~
Utilities/Atomic.h:776:12: note: candidate function not viable: cannot convert argument of
incomplete type 'pthread_t' (aka 'pthread *') to 'const atomic_t<unsigned long>' for 1st
argument
atomic_t& operator =(const atomic_t&) = delete;
^
Utilities/Atomic.h:902:7: note: candidate function not viable: cannot convert argument of
incomplete type 'pthread_t' (aka 'pthread *') to 'const type' (aka 'const unsigned long') for
1st argument
type operator =(const type& rhs)
^
Utilities/Thread.cpp:1656:3: error: no matching function for call to 'pthread_detach'
pthread_detach(m_thread.raw());
^~~~~~~~~~~~~~
/usr/include/pthread.h:218:6: note: candidate function not viable: no known conversion from 'type'
(aka 'unsigned long') to 'pthread_t' (aka 'pthread *') for 1st argument
int pthread_detach(pthread_t);
^
* build: dlopen() maybe in libc
/usr/bin/ld: cannot find -ldl
c++: error: linker command failed with exit code 1 (use -v to see invocation)
* build: iconv() maybe available on some BSDs in libc
/usr/bin/ld: cannot find -liconv
c++: error: linker command failed with exit code 1 (use -v to see invocation)
* build: hidapi-hidraw is only built on Linux
/usr/bin/ld: cannot find -lhidapi-hidraw
c++: error: linker command failed with exit code 1 (use -v to see invocation)
* Thread: use getrusage() on more POSIX-like systems
* Qt: don't return NULL handle on other platforms
rpcs3/rpcs3qt/gs_frame.cpp:120:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^
* build: properly disable Vulkan on other platforms
In file included from rpcs3/rpcs3_app.cpp:40:
In file included from rpcs3/Emu/RSX/VK/VKGSRender.h:3:
rpcs3/Emu/RSX/VK/VKHelpers.h:1209:42: error: unknown type name 'device_queues'
std::vector<VkBool32> supportsPresent(device_queues);
^
rpcs3/Emu/RSX/VK/VKHelpers.h:1211:4: error: expected member name or ';' after declaration specifiers
for (u32 index = 0; index < device_queues; index++)
^
rpcs3/Emu/RSX/VK/VKHelpers.h:1221:4: error: expected member name or ';' after declaration specifiers
for (u32 i = 0; i < device_queues; i++)
^
rpcs3/Emu/RSX/VK/VKHelpers.h:1256:4: error: expected member name or ';' after declaration specifiers
if (graphicsQueueNodeIndex != presentQueueNodeIndex)
^
rpcs3/Emu/RSX/VK/VKHelpers.h:1261:4: error: expected member name or ';' after declaration specifiers
CHECK_RESULT(vkGetPhysicalDeviceSurfaceFormatsKHR(dev, surface, &formatCount, nullptr));
^
[...]
/usr/bin/ld: cannot find -lvulkan
c++: error: linker command failed with exit code 1 (use -v to see invocation)
* build: make install/strip work by moving commands
* Qt: create surface for GL context if it wasn't ready
#0 strlen (str=0x0) at /usr/src/lib/libc/string/strlen.c:100
#1 0x000000000090f02e in std::__1::char_traits<char>::length (__s=0x0)
at /usr/include/c++/v1/__string:215
#2 std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::basic_string (__s=0x0, this=<optimized out>) at /usr/include/c++/v1/string:1547
#3 gl::capabilities::initialize (this=0x2ba32a0 <gl::g_driver_caps>)
at rpcs3/Emu/RSX/GL/GLHelpers.h:133
#4 0x000000000090d3dd in gl::get_driver_caps () at rpcs3/Emu/RSX/GL/GLHelpers.cpp:56
#5 0x00000000008fa511 in GLGSRender::on_init_thread (this=0x838d30018)
at rpcs3/Emu/RSX/GL/GLGSRender.cpp:484
#6 0x0000000000938f9e in rsx::thread::on_task (this=0x838d30018)
at rpcs3/Emu/RSX/RSXThread.cpp:334
#7 0x0000000000abc329 in task_stack::task_type<named_thread::start_thread(std::__1::shared_ptr<void> const&)::$_10>::invoke() ()
#8 0x0000000000abc114 in thread_ctrl::start(std::__1::shared_ptr<thread_ctrl> const&, task_stack)::$_7::__invoke(void*) ()
#9 0x0000000801e60c35 in thread_start (curthread=0x843650a00)
at /usr/src/lib/libthr/thread/thr_create.c:289
#10 0x0000000000000000 in ?? ()
* build: don't abort without git metadata
-- Found Git: /usr/local/bin/git (found version "2.13.1")
fatal: Not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
CMake Warning at git-version.cmake:12 (message):
git rev-list failed, unable to include version.
* build: non-parallel needs git-version.h earlier
rpcs3/rpcs3_version.cpp:3:10: fatal error: 'git-version.h' file not found
#include "git-version.h"
^~~~~~~~~~~~~~~
1 error generated.
2017-06-22 18:03:41 +00:00
|
|
|
#elif defined(__DragonFly__) || defined(__FreeBSD__)
|
|
|
|
if (::sendfile(input, output, 0, 0, NULL, NULL, 0))
|
|
|
|
#elif defined(__linux__) || defined(__sun)
|
2016-01-05 23:52:48 +00:00
|
|
|
// sendfile will work with non-socket output (i.e. regular file) on Linux 2.6.33+
|
|
|
|
off_t bytes_copied = 0;
|
|
|
|
struct ::stat fileinfo = { 0 };
|
|
|
|
if (::fstat(input, &fileinfo) || ::sendfile(output, input, &bytes_copied, fileinfo.st_size))
|
Improve portability for BSDs (#2813)
* sys_net: don't use fds_bits from a system header on FreeBSD
rpcs3/Emu/Cell/Modules/sys_net.cpp:137:14: error: no member named '__fds_bits' in
'sys_net::fd_set'; did you mean 'fds_bits'?
if (src->fds_bits[i] & (1 << bit))
^~~~~~~~
fds_bits
/usr/include/sys/select.h:75:18: note: expanded from macro 'fds_bits'
#define fds_bits __fds_bits
^
rpcs3/Emu/Cell/Modules/sys_net.h:114:13: note: 'fds_bits' declared here
be_t<u32> fds_bits[32];
^
* GUI: fallback to xdg-open on other Unices
rpcs3/Gui/GameViewer.cpp:289:26: error: use of undeclared identifier 'command'
wxExecute(fmt::FromUTF8(command));
^
* File: FreeBSD never supported copyfile(3) but sendfile(2) works fine
Utilities/File.cpp:114:10: fatal error: 'copyfile.h' file not found
#include <copyfile.h>
^~~~~~~~~~~~
* Thread: add signal handling for BSDs
Utilities/Thread.cpp:761:23: error: use of undeclared identifier 'REG_RAX'
static const decltype(REG_RAX) reg_table[] =
^
Utilities/Thread.cpp:763:2: error: use of undeclared identifier 'REG_RAX'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:11: error: use of undeclared identifier 'REG_RCX'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:20: error: use of undeclared identifier 'REG_RDX'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:29: error: use of undeclared identifier 'REG_RBX'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:38: error: use of undeclared identifier 'REG_RSP'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:47: error: use of undeclared identifier 'REG_RBP'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:56: error: use of undeclared identifier 'REG_RSI'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:763:65: error: use of undeclared identifier 'REG_RDI'
REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI,
^
Utilities/Thread.cpp:764:2: error: use of undeclared identifier 'REG_R8'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:10: error: use of undeclared identifier 'REG_R9'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:18: error: use of undeclared identifier 'REG_R10'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:27: error: use of undeclared identifier 'REG_R11'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:36: error: use of undeclared identifier 'REG_R12'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:45: error: use of undeclared identifier 'REG_R13'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:54: error: use of undeclared identifier 'REG_R14'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:63: error: use of undeclared identifier 'REG_R15'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:764:72: error: use of undeclared identifier 'REG_RIP'
REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, REG_RIP
^
Utilities/Thread.cpp:792:26: error: no member named 'gregs' in '__mcontext'
const u64 reg_value = *X64REG(context, reg - X64R_RAX);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:804:21: error: no member named 'gregs' in '__mcontext'
out_value = (u8)(*X64REG(context, reg - X64R_AL));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:809:21: error: no member named 'gregs' in '__mcontext'
out_value = (u8)(*X64REG(context, reg - X64R_AH) >> 8);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:815:31: error: no member named 'gregs' in '__mcontext'
const s8 imm_value = *(s8*)(RIP(context) + i_size - 1);
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:827:33: error: no member named 'gregs' in '__mcontext'
const s16 imm_value = *(s16*)(RIP(context) + i_size - 2);
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:836:33: error: no member named 'gregs' in '__mcontext'
const s32 imm_value = *(s32*)(RIP(context) + i_size - 4);
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:846:20: error: no member named 'gregs' in '__mcontext'
out_value = (u32)RCX(context);
^~~~~~~~~~~~
Utilities/Thread.cpp:779:18: note: expanded from macro 'RCX'
#define RCX(c) (*X64REG((c), 1))
^~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:851:19: error: no member named 'gregs' in '__mcontext'
const u32 _cf = EFLAGS(context) & 0x1;
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:851:19: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:852:19: error: no member named 'gregs' in '__mcontext'
const u32 _zf = EFLAGS(context) & 0x40;
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:852:19: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:853:19: error: no member named 'gregs' in '__mcontext'
const u32 _sf = EFLAGS(context) & 0x80;
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:853:19: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:854:19: error: no member named 'gregs' in '__mcontext'
const u32 _of = EFLAGS(context) & 0x800;
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:854:19: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:855:19: error: no member named 'gregs' in '__mcontext'
const u32 _pf = EFLAGS(context) & 0x4;
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:855:19: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:885:12: error: no member named 'gregs' in '__mcontext'
case 1: *X64REG(context, reg - X64R_RAX) = value & 0xff | *X64REG(context, re...
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:885:62: error: no member named 'gregs' in '__mcontext'
...*X64REG(context, reg - X64R_RAX) = value & 0xff | *X64REG(context, reg - X64R_RAX) & 0xffffff...
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:886:12: error: no member named 'gregs' in '__mcontext'
case 2: *X64REG(context, reg - X64R_RAX) = value & 0xffff | *X64REG(context, ...
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:886:64: error: no member named 'gregs' in '__mcontext'
...reg - X64R_RAX) = value & 0xffff | *X64REG(context, reg - X64R_RAX) & 0xffff0000; return true;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:887:12: error: no member named 'gregs' in '__mcontext'
case 4: *X64REG(context, reg - X64R_RAX) = value & 0xffffffff; return true;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:888:12: error: no member named 'gregs' in '__mcontext'
case 8: *X64REG(context, reg - X64R_RAX) = value; return true;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:913:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x1; // set CF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:913:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:917:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x1; // clear CF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:917:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:922:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x40; // set ZF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:922:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:926:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x40; // clear ZF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:926:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:931:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x80; // set SF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:931:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:935:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x80; // clear SF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:935:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:940:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x800; // set OF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:940:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:944:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x800; // clear OF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:944:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:953:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x4; // set PF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:953:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:957:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x4; // clear PF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:957:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:962:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) |= 0x10; // set AF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:962:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:966:3: error: no member named 'gregs' in '__mcontext'
EFLAGS(context) &= ~0x10; // clear AF
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:966:3: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:976:7: error: no member named 'gregs' in '__mcontext'
if (EFLAGS(context) & 0x400 /* direction flag */)
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:769:49: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:976:7: error: use of undeclared identifier 'REG_EFL'
Utilities/Thread.cpp:769:55: note: expanded from macro 'EFLAGS'
#define EFLAGS(context) ((context)->uc_mcontext.gregs[REG_EFL])
^
Utilities/Thread.cpp:1020:25: error: no member named 'gregs' in '__mcontext'
auto code = (const u8*)RIP(context);
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:1146:3: error: no member named 'gregs' in '__mcontext'
RIP(context) += i_size;
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:1368:47: error: no member named 'gregs' in '__mcontext'
const bool is_writing = context->uc_mcontext.gregs[REG_ERR] & 0x2;
~~~~~~~~~~~~~~~~~~~~ ^
Utilities/Thread.cpp:1368:53: error: use of undeclared identifier 'REG_ERR'
const bool is_writing = context->uc_mcontext.gregs[REG_ERR] & 0x2;
^
Utilities/Thread.cpp:1393:89: error: no member named 'gregs' in '__mcontext'
...%s location %p at %p.", cause, info->si_addr, RIP(context)));
^~~~~~~~~~~~
Utilities/Thread.cpp:784:18: note: expanded from macro 'RIP'
#define RIP(c) (*X64REG((c), 16))
^~~~~~~~~~~~~~~
Utilities/Thread.cpp:767:55: note: expanded from macro 'X64REG'
#define X64REG(context, reg) (&(context)->uc_mcontext.gregs[reg_table[reg]])
~~~~~~~~~~~~~~~~~~~~~~ ^
* Thread: add explict casts for incomplete pthread_t on some platforms
Utilities/Thread.cpp:1467:17: error: no viable overloaded '='
ctrl->m_thread = thread;
~~~~~~~~~~~~~~ ^ ~~~~~~
Utilities/Atomic.h:776:12: note: candidate function not viable: cannot convert argument of
incomplete type 'pthread_t' (aka 'pthread *') to 'const atomic_t<unsigned long>' for 1st
argument
atomic_t& operator =(const atomic_t&) = delete;
^
Utilities/Atomic.h:902:7: note: candidate function not viable: cannot convert argument of
incomplete type 'pthread_t' (aka 'pthread *') to 'const type' (aka 'const unsigned long') for
1st argument
type operator =(const type& rhs)
^
Utilities/Thread.cpp:1656:3: error: no matching function for call to 'pthread_detach'
pthread_detach(m_thread.raw());
^~~~~~~~~~~~~~
/usr/include/pthread.h:218:6: note: candidate function not viable: no known conversion from 'type'
(aka 'unsigned long') to 'pthread_t' (aka 'pthread *') for 1st argument
int pthread_detach(pthread_t);
^
* build: dlopen() maybe in libc
/usr/bin/ld: cannot find -ldl
c++: error: linker command failed with exit code 1 (use -v to see invocation)
* build: iconv() maybe available on some BSDs in libc
/usr/bin/ld: cannot find -liconv
c++: error: linker command failed with exit code 1 (use -v to see invocation)
* build: hidapi-hidraw is only built on Linux
/usr/bin/ld: cannot find -lhidapi-hidraw
c++: error: linker command failed with exit code 1 (use -v to see invocation)
* Thread: use getrusage() on more POSIX-like systems
* Qt: don't return NULL handle on other platforms
rpcs3/rpcs3qt/gs_frame.cpp:120:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^
* build: properly disable Vulkan on other platforms
In file included from rpcs3/rpcs3_app.cpp:40:
In file included from rpcs3/Emu/RSX/VK/VKGSRender.h:3:
rpcs3/Emu/RSX/VK/VKHelpers.h:1209:42: error: unknown type name 'device_queues'
std::vector<VkBool32> supportsPresent(device_queues);
^
rpcs3/Emu/RSX/VK/VKHelpers.h:1211:4: error: expected member name or ';' after declaration specifiers
for (u32 index = 0; index < device_queues; index++)
^
rpcs3/Emu/RSX/VK/VKHelpers.h:1221:4: error: expected member name or ';' after declaration specifiers
for (u32 i = 0; i < device_queues; i++)
^
rpcs3/Emu/RSX/VK/VKHelpers.h:1256:4: error: expected member name or ';' after declaration specifiers
if (graphicsQueueNodeIndex != presentQueueNodeIndex)
^
rpcs3/Emu/RSX/VK/VKHelpers.h:1261:4: error: expected member name or ';' after declaration specifiers
CHECK_RESULT(vkGetPhysicalDeviceSurfaceFormatsKHR(dev, surface, &formatCount, nullptr));
^
[...]
/usr/bin/ld: cannot find -lvulkan
c++: error: linker command failed with exit code 1 (use -v to see invocation)
* build: make install/strip work by moving commands
* Qt: create surface for GL context if it wasn't ready
#0 strlen (str=0x0) at /usr/src/lib/libc/string/strlen.c:100
#1 0x000000000090f02e in std::__1::char_traits<char>::length (__s=0x0)
at /usr/include/c++/v1/__string:215
#2 std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::basic_string (__s=0x0, this=<optimized out>) at /usr/include/c++/v1/string:1547
#3 gl::capabilities::initialize (this=0x2ba32a0 <gl::g_driver_caps>)
at rpcs3/Emu/RSX/GL/GLHelpers.h:133
#4 0x000000000090d3dd in gl::get_driver_caps () at rpcs3/Emu/RSX/GL/GLHelpers.cpp:56
#5 0x00000000008fa511 in GLGSRender::on_init_thread (this=0x838d30018)
at rpcs3/Emu/RSX/GL/GLGSRender.cpp:484
#6 0x0000000000938f9e in rsx::thread::on_task (this=0x838d30018)
at rpcs3/Emu/RSX/RSXThread.cpp:334
#7 0x0000000000abc329 in task_stack::task_type<named_thread::start_thread(std::__1::shared_ptr<void> const&)::$_10>::invoke() ()
#8 0x0000000000abc114 in thread_ctrl::start(std::__1::shared_ptr<thread_ctrl> const&, task_stack)::$_7::__invoke(void*) ()
#9 0x0000000801e60c35 in thread_start (curthread=0x843650a00)
at /usr/src/lib/libthr/thread/thr_create.c:289
#10 0x0000000000000000 in ?? ()
* build: don't abort without git metadata
-- Found Git: /usr/local/bin/git (found version "2.13.1")
fatal: Not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
CMake Warning at git-version.cmake:12 (message):
git rev-list failed, unable to include version.
* build: non-parallel needs git-version.h earlier
rpcs3/rpcs3_version.cpp:3:10: fatal error: 'git-version.h' file not found
#include "git-version.h"
^~~~~~~~~~~~~~~
1 error generated.
2017-06-22 18:03:41 +00:00
|
|
|
#else // NetBSD, OpenBSD, etc.
|
|
|
|
fmt::throw_exception("fs::copy_file() isn't implemented for this platform.\nFrom: %s\nTo: %s", from, to);
|
|
|
|
errno = 0;
|
|
|
|
if (true)
|
2015-04-13 14:46:10 +00:00
|
|
|
#endif
|
2016-01-05 23:52:48 +00:00
|
|
|
{
|
|
|
|
const int err = errno;
|
2015-04-13 14:46:10 +00:00
|
|
|
|
2016-01-05 23:52:48 +00:00
|
|
|
::close(input);
|
|
|
|
::close(output);
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = to_error(err);
|
2016-01-05 23:52:48 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-04-13 14:46:10 +00:00
|
|
|
|
2016-01-05 23:52:48 +00:00
|
|
|
::close(input);
|
|
|
|
::close(output);
|
|
|
|
return true;
|
2015-04-13 14:46:10 +00:00
|
|
|
#endif
|
2016-01-05 23:52:48 +00:00
|
|
|
}
|
2015-04-13 14:46:10 +00:00
|
|
|
|
2016-01-05 23:52:48 +00:00
|
|
|
bool fs::remove_file(const std::string& path)
|
2015-04-13 14:46:10 +00:00
|
|
|
{
|
2016-02-01 21:55:43 +00:00
|
|
|
if (auto device = get_virtual_device(path))
|
|
|
|
{
|
|
|
|
return device->remove(path);
|
|
|
|
}
|
|
|
|
|
2015-04-13 14:46:10 +00:00
|
|
|
#ifdef _WIN32
|
2016-01-05 23:52:48 +00:00
|
|
|
if (!DeleteFileW(to_wchar(path).get()))
|
2015-03-16 16:20:02 +00:00
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = to_error(GetLastError());
|
2015-03-16 16:20:02 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-04-13 14:46:10 +00:00
|
|
|
|
2015-03-16 16:20:02 +00:00
|
|
|
return true;
|
2016-01-05 23:52:48 +00:00
|
|
|
#else
|
2016-04-26 22:27:24 +00:00
|
|
|
if (::unlink(path.c_str()) != 0)
|
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = to_error(errno);
|
2016-04-26 22:27:24 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2016-01-05 23:52:48 +00:00
|
|
|
#endif
|
2014-07-31 18:20:00 +00:00
|
|
|
}
|
|
|
|
|
2016-01-05 23:52:48 +00:00
|
|
|
bool fs::truncate_file(const std::string& path, u64 length)
|
2014-07-31 18:20:00 +00:00
|
|
|
{
|
2016-02-01 21:55:43 +00:00
|
|
|
if (auto device = get_virtual_device(path))
|
|
|
|
{
|
|
|
|
return device->trunc(path, length);
|
|
|
|
}
|
|
|
|
|
2014-07-31 18:20:00 +00:00
|
|
|
#ifdef _WIN32
|
2016-01-05 23:52:48 +00:00
|
|
|
// Open the file
|
2017-09-08 14:14:47 +00:00
|
|
|
const auto handle = CreateFileW(to_wchar(path).get(), GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
|
2016-01-05 23:52:48 +00:00
|
|
|
if (handle == INVALID_HANDLE_VALUE)
|
2014-10-24 13:24:09 +00:00
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = to_error(GetLastError());
|
2014-08-03 23:52:36 +00:00
|
|
|
return false;
|
2014-07-31 18:20:00 +00:00
|
|
|
}
|
2015-04-18 13:38:42 +00:00
|
|
|
|
2017-09-03 22:55:03 +00:00
|
|
|
FILE_END_OF_FILE_INFO _eof;
|
|
|
|
_eof.EndOfFile.QuadPart = length;
|
2015-08-12 01:52:26 +00:00
|
|
|
|
2017-09-03 22:55:03 +00:00
|
|
|
if (!SetFileInformationByHandle(handle, FileEndOfFileInfo, &_eof, sizeof(_eof)))
|
2015-04-18 13:38:42 +00:00
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = to_error(GetLastError());
|
2016-01-05 23:52:48 +00:00
|
|
|
CloseHandle(handle);
|
2015-04-18 13:38:42 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-01-05 23:52:48 +00:00
|
|
|
CloseHandle(handle);
|
2014-08-03 23:52:36 +00:00
|
|
|
return true;
|
2016-01-05 23:52:48 +00:00
|
|
|
#else
|
2016-04-26 22:27:24 +00:00
|
|
|
if (::truncate(path.c_str(), length) != 0)
|
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = to_error(errno);
|
2016-04-26 22:27:24 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2016-01-05 23:52:48 +00:00
|
|
|
#endif
|
2014-07-31 18:20:00 +00:00
|
|
|
}
|
|
|
|
|
2017-01-26 12:01:21 +00:00
|
|
|
bool fs::utime(const std::string& path, s64 atime, s64 mtime)
|
|
|
|
{
|
|
|
|
if (auto device = get_virtual_device(path))
|
|
|
|
{
|
|
|
|
return device->utime(path, atime, mtime);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
// Open the file
|
2017-09-08 14:14:47 +00:00
|
|
|
const auto handle = CreateFileW(to_wchar(path).get(), FILE_WRITE_ATTRIBUTES, FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
|
2017-01-26 12:01:21 +00:00
|
|
|
if (handle == INVALID_HANDLE_VALUE)
|
|
|
|
{
|
|
|
|
g_tls_error = to_error(GetLastError());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
FILETIME _atime = from_time(atime);
|
|
|
|
FILETIME _mtime = from_time(mtime);
|
|
|
|
if (!SetFileTime(handle, nullptr, &_atime, &_mtime))
|
|
|
|
{
|
|
|
|
g_tls_error = to_error(GetLastError());
|
|
|
|
CloseHandle(handle);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
CloseHandle(handle);
|
|
|
|
return true;
|
|
|
|
#else
|
|
|
|
::utimbuf buf;
|
|
|
|
buf.actime = atime;
|
|
|
|
buf.modtime = mtime;
|
|
|
|
|
|
|
|
if (::utime(path.c_str(), &buf) != 0)
|
|
|
|
{
|
|
|
|
g_tls_error = to_error(errno);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
void fs::file::xnull() const
|
2014-05-02 06:30:32 +00:00
|
|
|
{
|
2016-08-08 16:01:06 +00:00
|
|
|
fmt::throw_exception<std::logic_error>("fs::file is null");
|
2015-04-19 16:02:35 +00:00
|
|
|
}
|
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
void fs::file::xfail() const
|
2014-05-02 06:30:32 +00:00
|
|
|
{
|
2016-08-08 16:01:06 +00:00
|
|
|
fmt::throw_exception("Unexpected fs::error %s", g_tls_error);
|
2016-02-01 21:55:43 +00:00
|
|
|
}
|
2014-05-02 06:30:32 +00:00
|
|
|
|
2017-01-28 10:11:06 +00:00
|
|
|
fs::file::file(const std::string& path, bs_t<open_mode> mode)
|
2016-02-01 21:55:43 +00:00
|
|
|
{
|
2018-09-11 16:02:19 +00:00
|
|
|
if (path.empty())
|
|
|
|
{
|
|
|
|
// Don't allow opening empty path (TODO)
|
|
|
|
g_tls_error = fs::error::noent;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
if (auto device = get_virtual_device(path))
|
2015-08-12 01:52:26 +00:00
|
|
|
{
|
2016-02-01 21:55:43 +00:00
|
|
|
if (auto&& _file = device->open(path, mode))
|
|
|
|
{
|
|
|
|
m_file = std::move(_file);
|
2017-01-28 10:11:06 +00:00
|
|
|
return;
|
2016-02-01 21:55:43 +00:00
|
|
|
}
|
|
|
|
|
2017-01-28 10:11:06 +00:00
|
|
|
return;
|
2015-04-19 16:02:35 +00:00
|
|
|
}
|
2014-05-02 06:30:32 +00:00
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
DWORD access = 0;
|
2018-09-02 17:22:35 +00:00
|
|
|
if (mode & fs::read) access |= GENERIC_READ;
|
|
|
|
if (mode & fs::write) access |= DELETE | (mode & fs::append ? FILE_APPEND_DATA : GENERIC_WRITE);
|
2016-02-01 21:55:43 +00:00
|
|
|
|
2015-04-19 13:19:24 +00:00
|
|
|
DWORD disp = 0;
|
2018-09-02 17:22:35 +00:00
|
|
|
if (mode & fs::create)
|
2015-04-19 13:19:24 +00:00
|
|
|
{
|
2016-02-01 21:55:43 +00:00
|
|
|
disp =
|
2018-09-02 17:22:35 +00:00
|
|
|
mode & fs::excl ? CREATE_NEW :
|
|
|
|
mode & fs::trunc ? CREATE_ALWAYS : OPEN_ALWAYS;
|
2016-02-01 21:55:43 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-09-02 17:22:35 +00:00
|
|
|
if (mode & fs::excl)
|
2016-02-01 21:55:43 +00:00
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = error::inval;
|
2017-01-28 10:11:06 +00:00
|
|
|
return;
|
2016-02-01 21:55:43 +00:00
|
|
|
}
|
|
|
|
|
2018-09-02 17:22:35 +00:00
|
|
|
disp = mode & fs::trunc ? TRUNCATE_EXISTING : OPEN_EXISTING;
|
2015-04-19 16:02:35 +00:00
|
|
|
}
|
|
|
|
|
2018-03-16 21:34:16 +00:00
|
|
|
DWORD share = 0;
|
2018-09-02 17:22:35 +00:00
|
|
|
if (!(mode & fs::unread) || !(mode & fs::write))
|
2018-03-16 21:34:16 +00:00
|
|
|
{
|
|
|
|
share |= FILE_SHARE_READ;
|
|
|
|
}
|
|
|
|
|
2018-09-02 17:22:35 +00:00
|
|
|
if (!(mode & (fs::lock + fs::unread)) || !(mode & fs::write))
|
2017-08-23 17:44:31 +00:00
|
|
|
{
|
2017-08-29 14:09:06 +00:00
|
|
|
share |= FILE_SHARE_WRITE | FILE_SHARE_DELETE;
|
2017-08-23 17:44:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const HANDLE handle = CreateFileW(to_wchar(path).get(), access, share, NULL, disp, FILE_ATTRIBUTE_NORMAL, NULL);
|
2016-01-05 23:52:48 +00:00
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
if (handle == INVALID_HANDLE_VALUE)
|
2015-04-19 13:19:24 +00:00
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = to_error(GetLastError());
|
2017-01-28 10:11:06 +00:00
|
|
|
return;
|
2015-04-19 13:19:24 +00:00
|
|
|
}
|
2014-05-02 06:30:32 +00:00
|
|
|
|
2017-08-22 18:05:51 +00:00
|
|
|
class windows_file final : public file_base, public get_native_handle
|
2015-04-19 16:02:35 +00:00
|
|
|
{
|
2016-02-01 21:55:43 +00:00
|
|
|
const HANDLE m_handle;
|
2015-04-19 16:02:35 +00:00
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
public:
|
|
|
|
windows_file(HANDLE handle)
|
|
|
|
: m_handle(handle)
|
2016-01-05 23:52:48 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
~windows_file() override
|
2016-01-05 23:52:48 +00:00
|
|
|
{
|
2016-02-01 21:55:43 +00:00
|
|
|
CloseHandle(m_handle);
|
2016-01-05 23:52:48 +00:00
|
|
|
}
|
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
stat_t stat() override
|
|
|
|
{
|
|
|
|
FILE_BASIC_INFO basic_info;
|
2016-08-14 00:22:19 +00:00
|
|
|
verify("file::stat" HERE), GetFileInformationByHandleEx(m_handle, FileBasicInfo, &basic_info, sizeof(FILE_BASIC_INFO));
|
2016-02-01 21:55:43 +00:00
|
|
|
|
|
|
|
stat_t info;
|
|
|
|
info.is_directory = (basic_info.FileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0;
|
|
|
|
info.is_writable = (basic_info.FileAttributes & FILE_ATTRIBUTE_READONLY) == 0;
|
|
|
|
info.size = this->size();
|
|
|
|
info.atime = to_time(basic_info.LastAccessTime);
|
|
|
|
info.mtime = to_time(basic_info.ChangeTime);
|
2018-11-16 11:31:28 +00:00
|
|
|
info.ctime = info.mtime;
|
2016-02-01 21:55:43 +00:00
|
|
|
|
2018-11-16 11:34:34 +00:00
|
|
|
if (info.atime < info.mtime)
|
|
|
|
info.atime = info.mtime;
|
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
return info;
|
|
|
|
}
|
2016-01-05 23:52:48 +00:00
|
|
|
|
2017-04-24 15:43:27 +00:00
|
|
|
void sync() override
|
|
|
|
{
|
|
|
|
verify("file::sync" HERE), FlushFileBuffers(m_handle);
|
|
|
|
}
|
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
bool trunc(u64 length) override
|
2016-01-05 23:52:48 +00:00
|
|
|
{
|
2017-09-03 22:55:03 +00:00
|
|
|
FILE_END_OF_FILE_INFO _eof;
|
|
|
|
_eof.EndOfFile.QuadPart = length;
|
2016-02-01 21:55:43 +00:00
|
|
|
|
2017-09-03 22:55:03 +00:00
|
|
|
if (!SetFileInformationByHandle(m_handle, FileEndOfFileInfo, &_eof, sizeof(_eof)))
|
2016-02-01 21:55:43 +00:00
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = to_error(GetLastError());
|
2016-02-01 21:55:43 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-08-14 00:22:19 +00:00
|
|
|
return true;
|
2016-01-05 23:52:48 +00:00
|
|
|
}
|
2015-04-19 17:57:04 +00:00
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
u64 read(void* buffer, u64 count) override
|
2016-01-05 23:52:48 +00:00
|
|
|
{
|
2016-02-01 21:55:43 +00:00
|
|
|
// TODO (call ReadFile multiple times if count is too big)
|
2016-08-14 17:22:07 +00:00
|
|
|
const int size = narrow<int>(count, "file::read" HERE);
|
2016-02-01 21:55:43 +00:00
|
|
|
|
|
|
|
DWORD nread;
|
2016-08-14 00:22:19 +00:00
|
|
|
verify("file::read" HERE), ReadFile(m_handle, buffer, size, &nread, NULL);
|
2016-02-01 21:55:43 +00:00
|
|
|
|
|
|
|
return nread;
|
2016-01-05 23:52:48 +00:00
|
|
|
}
|
2015-04-19 13:19:24 +00:00
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
u64 write(const void* buffer, u64 count) override
|
|
|
|
{
|
|
|
|
// TODO (call WriteFile multiple times if count is too big)
|
2016-08-14 17:22:07 +00:00
|
|
|
const int size = narrow<int>(count, "file::write" HERE);
|
2016-02-01 21:55:43 +00:00
|
|
|
|
|
|
|
DWORD nwritten;
|
2016-08-14 00:22:19 +00:00
|
|
|
verify("file::write" HERE), WriteFile(m_handle, buffer, size, &nwritten, NULL);
|
2016-02-01 21:55:43 +00:00
|
|
|
|
|
|
|
return nwritten;
|
|
|
|
}
|
2014-05-02 06:30:32 +00:00
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
u64 seek(s64 offset, seek_mode whence) override
|
2016-01-05 23:52:48 +00:00
|
|
|
{
|
2016-02-01 21:55:43 +00:00
|
|
|
LARGE_INTEGER pos;
|
|
|
|
pos.QuadPart = offset;
|
|
|
|
|
|
|
|
const DWORD mode =
|
|
|
|
whence == seek_set ? FILE_BEGIN :
|
|
|
|
whence == seek_cur ? FILE_CURRENT :
|
|
|
|
whence == seek_end ? FILE_END :
|
2016-08-08 16:01:06 +00:00
|
|
|
(fmt::throw_exception("Invalid whence (0x%x)" HERE, whence), 0);
|
2016-02-01 21:55:43 +00:00
|
|
|
|
2017-03-23 18:32:59 +00:00
|
|
|
if (!SetFilePointerEx(m_handle, pos, &pos, mode))
|
|
|
|
{
|
|
|
|
g_tls_error = to_error(GetLastError());
|
|
|
|
return -1;
|
|
|
|
}
|
2016-02-01 21:55:43 +00:00
|
|
|
|
|
|
|
return pos.QuadPart;
|
2016-01-05 23:52:48 +00:00
|
|
|
}
|
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
u64 size() override
|
|
|
|
{
|
|
|
|
LARGE_INTEGER size;
|
2016-08-14 00:22:19 +00:00
|
|
|
verify("file::size" HERE), GetFileSizeEx(m_handle, &size);
|
2016-02-01 21:55:43 +00:00
|
|
|
|
|
|
|
return size.QuadPart;
|
|
|
|
}
|
2017-08-22 18:05:51 +00:00
|
|
|
|
|
|
|
native_handle get() override
|
|
|
|
{
|
|
|
|
return m_handle;
|
|
|
|
}
|
2016-02-01 21:55:43 +00:00
|
|
|
};
|
2015-04-19 17:57:04 +00:00
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
m_file = std::make_unique<windows_file>(handle);
|
2015-04-19 17:57:04 +00:00
|
|
|
#else
|
2016-02-01 21:55:43 +00:00
|
|
|
int flags = 0;
|
2015-04-25 19:15:53 +00:00
|
|
|
|
2018-09-02 17:22:35 +00:00
|
|
|
if (mode & fs::read && mode & fs::write) flags |= O_RDWR;
|
|
|
|
else if (mode & fs::read) flags |= O_RDONLY;
|
|
|
|
else if (mode & fs::write) flags |= O_WRONLY;
|
2015-04-19 17:57:04 +00:00
|
|
|
|
2018-09-02 17:22:35 +00:00
|
|
|
if (mode & fs::append) flags |= O_APPEND;
|
|
|
|
if (mode & fs::create) flags |= O_CREAT;
|
|
|
|
if (mode & fs::trunc && !(mode & (fs::lock + fs::unread))) flags |= O_TRUNC;
|
|
|
|
if (mode & fs::excl) flags |= O_EXCL;
|
2015-04-24 14:06:30 +00:00
|
|
|
|
2018-03-16 21:34:16 +00:00
|
|
|
int perm = S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH;
|
|
|
|
|
2018-09-02 17:22:35 +00:00
|
|
|
if (mode & fs::write && mode & fs::unread)
|
2018-03-16 21:34:16 +00:00
|
|
|
{
|
|
|
|
perm = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const int fd = ::open(path.c_str(), flags, perm);
|
2015-04-24 14:06:30 +00:00
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
if (fd == -1)
|
2016-01-05 23:52:48 +00:00
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = to_error(errno);
|
2017-01-28 10:11:06 +00:00
|
|
|
return;
|
2016-01-05 23:52:48 +00:00
|
|
|
}
|
2016-02-01 21:55:43 +00:00
|
|
|
|
2018-09-02 17:22:35 +00:00
|
|
|
if (mode & fs::write && mode & (fs::lock + fs::unread) && ::flock(fd, LOCK_EX | LOCK_NB) != 0)
|
2017-11-19 13:44:06 +00:00
|
|
|
{
|
|
|
|
g_tls_error = errno == EWOULDBLOCK ? fs::error::acces : to_error(errno);
|
|
|
|
::close(fd);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-09-02 17:22:35 +00:00
|
|
|
if (mode & fs::trunc && mode & (fs::lock + fs::unread))
|
2018-03-16 21:34:16 +00:00
|
|
|
{
|
|
|
|
// Postpone truncation in order to avoid using O_TRUNC on a locked file
|
|
|
|
::ftruncate(fd, 0);
|
|
|
|
}
|
|
|
|
|
2017-08-22 18:05:51 +00:00
|
|
|
class unix_file final : public file_base, public get_native_handle
|
2016-01-05 23:52:48 +00:00
|
|
|
{
|
2016-02-01 21:55:43 +00:00
|
|
|
const int m_fd;
|
2014-05-02 06:30:32 +00:00
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
public:
|
|
|
|
unix_file(int fd)
|
|
|
|
: m_fd(fd)
|
|
|
|
{
|
|
|
|
}
|
2015-06-18 11:55:11 +00:00
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
~unix_file() override
|
2016-01-05 23:52:48 +00:00
|
|
|
{
|
2016-02-01 21:55:43 +00:00
|
|
|
::close(m_fd);
|
2016-01-05 23:52:48 +00:00
|
|
|
}
|
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
stat_t stat() override
|
|
|
|
{
|
|
|
|
struct ::stat file_info;
|
2016-08-14 00:22:19 +00:00
|
|
|
verify("file::stat" HERE), ::fstat(m_fd, &file_info) == 0;
|
2016-02-01 21:55:43 +00:00
|
|
|
|
|
|
|
stat_t info;
|
|
|
|
info.is_directory = S_ISDIR(file_info.st_mode);
|
|
|
|
info.is_writable = file_info.st_mode & 0200; // HACK: approximation
|
|
|
|
info.size = file_info.st_size;
|
|
|
|
info.atime = file_info.st_atime;
|
|
|
|
info.mtime = file_info.st_mtime;
|
2018-11-16 11:31:28 +00:00
|
|
|
info.ctime = info.mtime;
|
2016-02-01 21:55:43 +00:00
|
|
|
|
2018-11-16 11:34:34 +00:00
|
|
|
if (info.atime < info.mtime)
|
|
|
|
info.atime = info.mtime;
|
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
return info;
|
|
|
|
}
|
2015-04-19 13:19:24 +00:00
|
|
|
|
2017-04-24 15:43:27 +00:00
|
|
|
void sync() override
|
|
|
|
{
|
|
|
|
verify("file::sync" HERE), ::fsync(m_fd) == 0;
|
|
|
|
}
|
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
bool trunc(u64 length) override
|
|
|
|
{
|
|
|
|
if (::ftruncate(m_fd, length) != 0)
|
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = to_error(errno);
|
2016-02-01 21:55:43 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-06-18 11:55:11 +00:00
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
u64 read(void* buffer, u64 count) override
|
2016-01-05 23:52:48 +00:00
|
|
|
{
|
2016-02-01 21:55:43 +00:00
|
|
|
const auto result = ::read(m_fd, buffer, count);
|
2016-08-14 00:22:19 +00:00
|
|
|
verify("file::read" HERE), result != -1;
|
2016-02-01 21:55:43 +00:00
|
|
|
|
|
|
|
return result;
|
2016-01-05 23:52:48 +00:00
|
|
|
}
|
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
u64 write(const void* buffer, u64 count) override
|
|
|
|
{
|
|
|
|
const auto result = ::write(m_fd, buffer, count);
|
2016-08-14 00:22:19 +00:00
|
|
|
verify("file::write" HERE), result != -1;
|
2016-02-01 21:55:43 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2015-04-19 13:19:24 +00:00
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
u64 seek(s64 offset, seek_mode whence) override
|
|
|
|
{
|
|
|
|
const int mode =
|
|
|
|
whence == seek_set ? SEEK_SET :
|
|
|
|
whence == seek_cur ? SEEK_CUR :
|
|
|
|
whence == seek_end ? SEEK_END :
|
2016-08-08 16:01:06 +00:00
|
|
|
(fmt::throw_exception("Invalid whence (0x%x)" HERE, whence), 0);
|
2016-02-01 21:55:43 +00:00
|
|
|
|
|
|
|
const auto result = ::lseek(m_fd, offset, mode);
|
2018-02-03 02:00:18 +00:00
|
|
|
|
2017-03-23 18:32:59 +00:00
|
|
|
if (result == -1)
|
|
|
|
{
|
|
|
|
g_tls_error = to_error(errno);
|
|
|
|
return -1;
|
|
|
|
}
|
2016-02-01 21:55:43 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
u64 size() override
|
|
|
|
{
|
|
|
|
struct ::stat file_info;
|
2016-08-14 00:22:19 +00:00
|
|
|
verify("file::size" HERE), ::fstat(m_fd, &file_info) == 0;
|
2016-02-01 21:55:43 +00:00
|
|
|
|
|
|
|
return file_info.st_size;
|
|
|
|
}
|
2017-08-22 18:05:51 +00:00
|
|
|
|
|
|
|
native_handle get() override
|
|
|
|
{
|
|
|
|
return m_fd;
|
|
|
|
}
|
2016-02-01 21:55:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
m_file = std::make_unique<unix_file>(fd);
|
2015-04-19 13:19:24 +00:00
|
|
|
#endif
|
2014-05-02 06:30:32 +00:00
|
|
|
}
|
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
fs::file::file(const void* ptr, std::size_t size)
|
2014-05-02 06:30:32 +00:00
|
|
|
{
|
2016-04-25 10:49:12 +00:00
|
|
|
class memory_stream : public file_base
|
2016-01-05 23:52:48 +00:00
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
u64 m_pos{};
|
2015-08-12 01:52:26 +00:00
|
|
|
|
2016-04-25 10:49:12 +00:00
|
|
|
const char* const m_ptr;
|
|
|
|
const u64 m_size;
|
2016-02-01 21:55:43 +00:00
|
|
|
|
2016-04-25 10:49:12 +00:00
|
|
|
public:
|
|
|
|
memory_stream(const void* ptr, u64 size)
|
|
|
|
: m_ptr(static_cast<const char*>(ptr))
|
|
|
|
, m_size(size)
|
2016-01-05 23:52:48 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
bool trunc(u64 length) override
|
|
|
|
{
|
2017-02-11 16:27:49 +00:00
|
|
|
return false;
|
2016-02-01 21:55:43 +00:00
|
|
|
}
|
2015-08-12 01:52:26 +00:00
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
u64 read(void* buffer, u64 count) override
|
|
|
|
{
|
2017-02-11 16:27:49 +00:00
|
|
|
if (m_pos < m_size)
|
|
|
|
{
|
|
|
|
// Get readable size
|
|
|
|
if (const u64 result = std::min<u64>(count, m_size - m_pos))
|
|
|
|
{
|
|
|
|
std::memcpy(buffer, m_ptr + m_pos, result);
|
|
|
|
m_pos += result;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2016-02-01 21:55:43 +00:00
|
|
|
}
|
2014-05-02 06:30:32 +00:00
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
u64 write(const void* buffer, u64 count) override
|
2016-01-05 23:52:48 +00:00
|
|
|
{
|
2017-02-11 16:27:49 +00:00
|
|
|
return 0;
|
2016-01-05 23:52:48 +00:00
|
|
|
}
|
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
u64 seek(s64 offset, fs::seek_mode whence) override
|
|
|
|
{
|
2017-03-23 18:32:59 +00:00
|
|
|
const s64 new_pos =
|
|
|
|
whence == fs::seek_set ? offset :
|
|
|
|
whence == fs::seek_cur ? offset + m_pos :
|
|
|
|
whence == fs::seek_end ? offset + size() :
|
2017-02-11 16:27:49 +00:00
|
|
|
(fmt::raw_error("fs::file::memory_stream::seek(): invalid whence"), 0);
|
2017-03-23 18:32:59 +00:00
|
|
|
|
|
|
|
if (new_pos < 0)
|
|
|
|
{
|
|
|
|
fs::g_tls_error = fs::error::inval;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_pos = new_pos;
|
|
|
|
return m_pos;
|
2016-02-01 21:55:43 +00:00
|
|
|
}
|
2015-04-19 13:19:24 +00:00
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
u64 size() override
|
|
|
|
{
|
|
|
|
return m_size;
|
|
|
|
}
|
|
|
|
};
|
2015-04-19 13:19:24 +00:00
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
m_file = std::make_unique<memory_stream>(ptr, size);
|
2014-05-02 06:30:32 +00:00
|
|
|
}
|
|
|
|
|
2017-08-22 18:05:51 +00:00
|
|
|
fs::native_handle fs::file::get_handle() const
|
|
|
|
{
|
|
|
|
if (auto getter = dynamic_cast<get_native_handle*>(m_file.get()))
|
|
|
|
{
|
|
|
|
return getter->get();
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
return INVALID_HANDLE_VALUE;
|
|
|
|
#else
|
|
|
|
return -1;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
void fs::dir::xnull() const
|
2014-08-05 22:34:26 +00:00
|
|
|
{
|
2016-08-08 16:01:06 +00:00
|
|
|
fmt::throw_exception<std::logic_error>("fs::dir is null");
|
2014-08-05 22:34:26 +00:00
|
|
|
}
|
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
bool fs::dir::open(const std::string& path)
|
2014-05-02 06:30:32 +00:00
|
|
|
{
|
2018-09-11 16:02:19 +00:00
|
|
|
if (path.empty())
|
|
|
|
{
|
|
|
|
// Don't allow opening empty path (TODO)
|
|
|
|
g_tls_error = fs::error::noent;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
if (auto device = get_virtual_device(path))
|
2015-04-25 19:15:53 +00:00
|
|
|
{
|
2016-02-01 21:55:43 +00:00
|
|
|
if (auto&& _dir = device->open_dir(path))
|
|
|
|
{
|
|
|
|
m_dir = std::move(_dir);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-04-25 19:15:53 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
WIN32_FIND_DATAW found;
|
2016-08-18 12:14:08 +00:00
|
|
|
const auto handle = FindFirstFileExW(to_wchar(path + "/*").get(), FindExInfoBasic, &found, FindExSearchNameMatch, NULL, FIND_FIRST_EX_CASE_SENSITIVE | FIND_FIRST_EX_LARGE_FETCH);
|
2015-04-25 19:15:53 +00:00
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
if (handle == INVALID_HANDLE_VALUE)
|
2015-04-25 20:55:15 +00:00
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = to_error(GetLastError());
|
2016-02-01 21:55:43 +00:00
|
|
|
return false;
|
2016-01-05 23:52:48 +00:00
|
|
|
}
|
2015-08-12 01:52:26 +00:00
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
class windows_dir final : public dir_base
|
2016-01-05 23:52:48 +00:00
|
|
|
{
|
2016-02-01 21:55:43 +00:00
|
|
|
std::vector<dir_entry> m_entries;
|
|
|
|
std::size_t m_pos = 0;
|
|
|
|
|
|
|
|
void add_entry(const WIN32_FIND_DATAW& found)
|
2016-01-05 23:52:48 +00:00
|
|
|
{
|
2016-02-01 21:55:43 +00:00
|
|
|
dir_entry info;
|
|
|
|
|
|
|
|
to_utf8(info.name, found.cFileName);
|
|
|
|
info.is_directory = (found.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0;
|
|
|
|
info.is_writable = (found.dwFileAttributes & FILE_ATTRIBUTE_READONLY) == 0;
|
|
|
|
info.size = ((u64)found.nFileSizeHigh << 32) | (u64)found.nFileSizeLow;
|
|
|
|
info.atime = to_time(found.ftLastAccessTime);
|
|
|
|
info.mtime = to_time(found.ftLastWriteTime);
|
2018-11-16 11:31:28 +00:00
|
|
|
info.ctime = info.mtime;
|
2016-02-01 21:55:43 +00:00
|
|
|
|
2018-11-16 11:34:34 +00:00
|
|
|
if (info.atime < info.mtime)
|
|
|
|
info.atime = info.mtime;
|
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
m_entries.emplace_back(std::move(info));
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
2016-08-18 12:14:08 +00:00
|
|
|
windows_dir(HANDLE handle, WIN32_FIND_DATAW& found)
|
2015-09-26 20:46:04 +00:00
|
|
|
{
|
2016-02-01 21:55:43 +00:00
|
|
|
add_entry(found);
|
2016-01-05 23:52:48 +00:00
|
|
|
|
2016-08-18 12:14:08 +00:00
|
|
|
while (FindNextFileW(handle, &found))
|
|
|
|
{
|
|
|
|
add_entry(found);
|
|
|
|
}
|
|
|
|
|
|
|
|
verify("dir::read" HERE), ERROR_NO_MORE_FILES == GetLastError();
|
|
|
|
FindClose(handle);
|
2016-01-05 23:52:48 +00:00
|
|
|
}
|
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
bool read(dir_entry& out) override
|
|
|
|
{
|
2016-08-18 12:14:08 +00:00
|
|
|
if (m_pos >= m_entries.size())
|
2016-02-01 21:55:43 +00:00
|
|
|
{
|
2016-08-18 12:14:08 +00:00
|
|
|
return false;
|
2016-02-01 21:55:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
out = m_entries[m_pos++];
|
|
|
|
return true;
|
|
|
|
}
|
2015-04-25 19:15:53 +00:00
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
void rewind() override
|
|
|
|
{
|
|
|
|
m_pos = 0;
|
|
|
|
}
|
|
|
|
};
|
2015-04-25 19:15:53 +00:00
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
m_dir = std::make_unique<windows_dir>(handle, found);
|
2015-04-25 19:15:53 +00:00
|
|
|
#else
|
2016-02-01 21:55:43 +00:00
|
|
|
::DIR* const ptr = ::opendir(path.c_str());
|
2015-04-25 19:15:53 +00:00
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
if (!ptr)
|
2015-04-25 19:15:53 +00:00
|
|
|
{
|
2016-05-13 14:01:48 +00:00
|
|
|
g_tls_error = to_error(errno);
|
2015-04-25 19:15:53 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
class unix_dir final : public dir_base
|
|
|
|
{
|
|
|
|
::DIR* m_dd;
|
2015-04-25 19:15:53 +00:00
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
public:
|
|
|
|
unix_dir(::DIR* dd)
|
|
|
|
: m_dd(dd)
|
|
|
|
{
|
|
|
|
}
|
2015-04-25 19:15:53 +00:00
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
~unix_dir() override
|
|
|
|
{
|
|
|
|
::closedir(m_dd);
|
|
|
|
}
|
2015-12-16 19:50:45 +00:00
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
bool read(dir_entry& info) override
|
|
|
|
{
|
|
|
|
const auto found = ::readdir(m_dd);
|
|
|
|
if (!found)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ::stat file_info;
|
2018-02-03 02:00:18 +00:00
|
|
|
|
|
|
|
if (::fstatat(::dirfd(m_dd), found->d_name, &file_info, 0) != 0)
|
|
|
|
{
|
|
|
|
//failed metadata (broken symlink?), ignore and skip to next file
|
|
|
|
return read(info);
|
|
|
|
}
|
2016-02-01 21:55:43 +00:00
|
|
|
|
|
|
|
info.name = found->d_name;
|
|
|
|
info.is_directory = S_ISDIR(file_info.st_mode);
|
|
|
|
info.is_writable = file_info.st_mode & 0200; // HACK: approximation
|
|
|
|
info.size = file_info.st_size;
|
|
|
|
info.atime = file_info.st_atime;
|
|
|
|
info.mtime = file_info.st_mtime;
|
2018-11-16 11:31:28 +00:00
|
|
|
info.ctime = info.mtime;
|
2016-02-01 21:55:43 +00:00
|
|
|
|
2018-11-16 11:34:34 +00:00
|
|
|
if (info.atime < info.mtime)
|
|
|
|
info.atime = info.mtime;
|
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void rewind() override
|
|
|
|
{
|
|
|
|
::rewinddir(m_dd);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
m_dir = std::make_unique<unix_dir>(ptr);
|
2015-12-22 19:24:35 +00:00
|
|
|
#endif
|
|
|
|
|
2016-02-01 21:55:43 +00:00
|
|
|
return true;
|
2015-12-22 19:24:35 +00:00
|
|
|
}
|
|
|
|
|
2016-01-05 23:52:48 +00:00
|
|
|
const std::string& fs::get_config_dir()
|
2015-12-16 19:50:45 +00:00
|
|
|
{
|
2016-02-01 21:55:43 +00:00
|
|
|
// Use magic static
|
2015-12-16 19:50:45 +00:00
|
|
|
static const std::string s_dir = []
|
|
|
|
{
|
|
|
|
std::string dir;
|
|
|
|
|
2017-02-22 13:08:53 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
wchar_t buf[2048];
|
|
|
|
if (GetModuleFileName(NULL, buf, ::size32(buf)) - 1 >= ::size32(buf) - 1)
|
|
|
|
{
|
|
|
|
MessageBoxA(0, fmt::format("GetModuleFileName() failed: error %u.", GetLastError()).c_str(), "fs::get_config_dir()", MB_ICONERROR);
|
|
|
|
return dir; // empty
|
|
|
|
}
|
|
|
|
|
|
|
|
to_utf8(dir, buf); // Convert to UTF-8
|
|
|
|
|
|
|
|
std::replace(dir.begin(), dir.end(), '\\', '/');
|
|
|
|
|
|
|
|
dir.resize(dir.rfind('/') + 1);
|
|
|
|
#else
|
2018-11-24 00:27:33 +00:00
|
|
|
|
|
|
|
#ifdef __APPLE__
|
|
|
|
if (const char* home = ::getenv("HOME"))
|
|
|
|
dir = home + "/Library/Application Support"s;
|
|
|
|
#else
|
2015-12-16 19:50:45 +00:00
|
|
|
if (const char* home = ::getenv("XDG_CONFIG_HOME"))
|
|
|
|
dir = home;
|
|
|
|
else if (const char* home = ::getenv("HOME"))
|
|
|
|
dir = home + "/.config"s;
|
2018-11-24 00:27:33 +00:00
|
|
|
#endif
|
2015-12-16 19:50:45 +00:00
|
|
|
else // Just in case
|
|
|
|
dir = "./config";
|
|
|
|
|
|
|
|
dir += "/rpcs3/";
|
|
|
|
|
2018-05-04 20:48:45 +00:00
|
|
|
if (!create_path(dir))
|
2015-12-16 19:50:45 +00:00
|
|
|
{
|
|
|
|
std::printf("Failed to create configuration directory '%s' (%d).\n", dir.c_str(), errno);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return dir;
|
|
|
|
}();
|
|
|
|
|
|
|
|
return s_dir;
|
|
|
|
}
|
2016-02-01 21:55:43 +00:00
|
|
|
|
2016-07-11 19:00:12 +00:00
|
|
|
std::string fs::get_data_dir(const std::string& prefix, const std::string& location, const std::string& suffix)
|
|
|
|
{
|
|
|
|
static const std::string s_dir = []
|
|
|
|
{
|
2018-05-04 20:48:45 +00:00
|
|
|
const std::string dir = get_config_dir() + "data/";
|
2016-07-11 19:00:12 +00:00
|
|
|
|
2018-05-04 20:48:45 +00:00
|
|
|
if (!create_path(dir))
|
2016-07-11 19:00:12 +00:00
|
|
|
{
|
|
|
|
return get_config_dir();
|
|
|
|
}
|
|
|
|
|
|
|
|
return dir;
|
|
|
|
}();
|
|
|
|
|
|
|
|
std::vector<u8> buf;
|
|
|
|
buf.reserve(location.size() + 1);
|
|
|
|
|
|
|
|
// Normalize location
|
|
|
|
for (char c : location)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
if (c == '/' || c == '\\')
|
|
|
|
#else
|
|
|
|
if (c == '/')
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
if (buf.empty() || buf.back() != '/')
|
|
|
|
{
|
|
|
|
buf.push_back('/');
|
|
|
|
}
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
2018-02-03 02:00:18 +00:00
|
|
|
|
2016-07-11 19:00:12 +00:00
|
|
|
buf.push_back(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Calculate hash
|
|
|
|
u8 hash[20];
|
|
|
|
sha1(buf.data(), buf.size(), hash);
|
|
|
|
|
|
|
|
// Concatenate
|
2018-05-04 20:48:45 +00:00
|
|
|
std::string result = fmt::format("%s%s/%016llx%08x-%s/", s_dir, prefix, reinterpret_cast<be_t<u64>&>(hash[0]), reinterpret_cast<be_t<u32>&>(hash[8]), suffix);
|
2016-07-11 19:00:12 +00:00
|
|
|
|
2018-05-04 20:48:45 +00:00
|
|
|
// Create dir if necessary
|
|
|
|
if (create_path(result))
|
2016-07-11 19:00:12 +00:00
|
|
|
{
|
2018-05-04 20:48:45 +00:00
|
|
|
// Acknowledge original location
|
|
|
|
file(result + ".location", rewrite).write(buf);
|
2016-07-11 19:00:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string fs::get_data_dir(const std::string& prefix, const std::string& path)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
const auto& delim = "/\\";
|
|
|
|
#else
|
|
|
|
const auto& delim = "/";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Extract file name and location
|
|
|
|
const std::string& location = fs::get_parent_dir(path);
|
|
|
|
const std::size_t name_pos = path.find_first_not_of(delim, location.size());
|
|
|
|
|
|
|
|
return fs::get_data_dir(prefix, location, name_pos == -1 ? std::string{} : path.substr(name_pos));
|
|
|
|
}
|
|
|
|
|
2016-06-27 18:53:56 +00:00
|
|
|
void fs::remove_all(const std::string& path, bool remove_root)
|
2016-02-01 21:55:43 +00:00
|
|
|
{
|
|
|
|
for (const auto& entry : dir(path))
|
|
|
|
{
|
|
|
|
if (entry.name == "." || entry.name == "..")
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (entry.is_directory == false)
|
|
|
|
{
|
|
|
|
remove_file(path + '/' + entry.name);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (entry.is_directory == true)
|
|
|
|
{
|
|
|
|
remove_all(path + '/' + entry.name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-27 18:53:56 +00:00
|
|
|
if (remove_root)
|
|
|
|
{
|
|
|
|
remove_dir(path);
|
|
|
|
}
|
2016-02-01 21:55:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
u64 fs::get_dir_size(const std::string& path)
|
|
|
|
{
|
|
|
|
u64 result = 0;
|
|
|
|
|
|
|
|
for (const auto entry : dir(path))
|
|
|
|
{
|
|
|
|
if (entry.name == "." || entry.name == "..")
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (entry.is_directory == false)
|
|
|
|
{
|
|
|
|
result += entry.size;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (entry.is_directory == true)
|
|
|
|
{
|
|
|
|
result += get_dir_size(path + '/' + entry.name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2016-08-03 20:51:05 +00:00
|
|
|
|
2018-08-12 22:06:03 +00:00
|
|
|
fs::file fs::make_gather(std::vector<fs::file> files)
|
|
|
|
{
|
|
|
|
struct gather_stream : file_base
|
|
|
|
{
|
|
|
|
u64 pos = 0;
|
|
|
|
u64 end = 0;
|
|
|
|
std::vector<file> files;
|
|
|
|
std::map<u64, u64> ends; // Fragment End Offset -> Index
|
|
|
|
|
|
|
|
gather_stream(std::vector<fs::file> arg)
|
|
|
|
: files(std::move(arg))
|
|
|
|
{
|
|
|
|
// Preprocess files
|
|
|
|
for (auto&& f : files)
|
|
|
|
{
|
|
|
|
end += f.size();
|
|
|
|
ends.emplace(end, ends.size());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
~gather_stream() override
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
fs::stat_t stat() override
|
|
|
|
{
|
|
|
|
fs::stat_t result{};
|
|
|
|
|
|
|
|
if (!files.empty())
|
|
|
|
{
|
|
|
|
result = files[0].stat();
|
|
|
|
}
|
|
|
|
|
|
|
|
result.is_directory = false;
|
|
|
|
result.is_writable = false;
|
|
|
|
result.size = end;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool trunc(u64 length) override
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
u64 read(void* buffer, u64 size) override
|
|
|
|
{
|
|
|
|
if (pos < end)
|
|
|
|
{
|
|
|
|
// Current pos
|
|
|
|
const u64 start = pos;
|
|
|
|
|
|
|
|
// Get readable size
|
|
|
|
if (const u64 max = std::min<u64>(size, end - pos))
|
|
|
|
{
|
|
|
|
u8* buf_out = static_cast<u8*>(buffer);
|
|
|
|
u64 buf_max = max;
|
|
|
|
|
|
|
|
for (auto it = ends.upper_bound(pos); it != ends.end(); ++it)
|
|
|
|
{
|
|
|
|
// Set position for the fragment
|
|
|
|
files[it->second].seek(pos - it->first, fs::seek_end);
|
|
|
|
|
|
|
|
const u64 count = std::min<u64>(it->first - pos, buf_max);
|
|
|
|
const u64 read = files[it->second].read(buf_out, count);
|
|
|
|
|
|
|
|
buf_out += count;
|
|
|
|
buf_max -= count;
|
|
|
|
pos += read;
|
|
|
|
|
|
|
|
if (read < count || buf_max == 0)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return pos - start;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
u64 write(const void* buffer, u64 size) override
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
u64 seek(s64 offset, seek_mode whence) override
|
|
|
|
{
|
|
|
|
const s64 new_pos =
|
|
|
|
whence == fs::seek_set ? offset :
|
|
|
|
whence == fs::seek_cur ? offset + pos :
|
|
|
|
whence == fs::seek_end ? offset + end :
|
|
|
|
(fmt::raw_error("fs::gather_stream::seek(): invalid whence"), 0);
|
|
|
|
|
|
|
|
if (new_pos < 0)
|
|
|
|
{
|
|
|
|
fs::g_tls_error = fs::error::inval;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
pos = new_pos;
|
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
u64 size() override
|
|
|
|
{
|
|
|
|
return end;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
fs::file result;
|
|
|
|
result.reset(std::make_unique<gather_stream>(std::move(files)));
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2016-08-03 20:51:05 +00:00
|
|
|
template<>
|
|
|
|
void fmt_class_string<fs::seek_mode>::format(std::string& out, u64 arg)
|
|
|
|
{
|
|
|
|
format_enum(out, arg, [](auto arg)
|
|
|
|
{
|
|
|
|
switch (arg)
|
|
|
|
{
|
|
|
|
STR_CASE(fs::seek_mode::seek_set);
|
|
|
|
STR_CASE(fs::seek_mode::seek_cur);
|
|
|
|
STR_CASE(fs::seek_mode::seek_end);
|
|
|
|
}
|
|
|
|
|
|
|
|
return unknown;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
template<>
|
|
|
|
void fmt_class_string<fs::error>::format(std::string& out, u64 arg)
|
|
|
|
{
|
|
|
|
format_enum(out, arg, [](auto arg)
|
|
|
|
{
|
|
|
|
switch (arg)
|
|
|
|
{
|
|
|
|
case fs::error::ok: return "OK";
|
|
|
|
|
|
|
|
case fs::error::inval: return "Invalid arguments";
|
|
|
|
case fs::error::noent: return "Not found";
|
|
|
|
case fs::error::exist: return "Already exists";
|
2017-03-23 18:32:59 +00:00
|
|
|
case fs::error::acces: return "Access violation";
|
2017-09-12 17:05:38 +00:00
|
|
|
case fs::error::notempty: return "Not empty";
|
2016-08-03 20:51:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return unknown;
|
|
|
|
});
|
|
|
|
}
|