12 #include <sys/utsname.h> 30 std::wstring_convert<std::codecvt_utf8_utf16<wchar_t>,
wchar_t> utf8_cvt;
31 return ::_wfopen(p.wstring().c_str(), utf8_cvt.from_bytes(mode).c_str());
37 assert(base.is_absolute());
38 return path.empty() ? base :
fs::path(base / path);
50 fd = open(file.c_str(), O_RDWR);
65 struct utsname uname_data;
66 return uname(&uname_data) == 0 && std::string(uname_data.version).find(
"Microsoft") != std::string::npos;
77 static const bool is_wsl =
IsWSL();
79 if (flock(
fd, LOCK_EX | LOCK_NB) == -1) {
85 lock.l_type = F_WRLCK;
86 lock.l_whence = SEEK_SET;
89 if (fcntl(
fd, F_SETLK, &lock) == -1) {
101 FormatMessageW(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
102 nullptr, GetLastError(), MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), reinterpret_cast<WCHAR*>(&err), 0,
nullptr);
103 std::wstring err_str(err);
105 return std::wstring_convert<std::codecvt_utf8_utf16<wchar_t>>().to_bytes(err_str);
110 hFile = CreateFileW(file.wstring().c_str(), GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
111 nullptr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL,
nullptr);
112 if (hFile == INVALID_HANDLE_VALUE) {
119 if (hFile != INVALID_HANDLE_VALUE) {
126 if (hFile == INVALID_HANDLE_VALUE) {
129 _OVERLAPPED overlapped = {};
130 if (!LockFileEx(hFile, LOCKFILE_EXCLUSIVE_LOCK | LOCKFILE_FAIL_IMMEDIATELY, 0, std::numeric_limits<DWORD>::max(), std::numeric_limits<DWORD>::max(), &overlapped)) {
144 std::string mb_string(e.what());
145 int size = MultiByteToWideChar(CP_ACP, 0, mb_string.data(), mb_string.size(),
nullptr, 0);
147 std::wstring utf16_string(size, L
'\0');
148 MultiByteToWideChar(CP_ACP, 0, mb_string.data(), mb_string.size(), &*utf16_string.begin(), size);
150 return std::wstring_convert<std::codecvt_utf8_utf16<wchar_t>,
wchar_t>().to_bytes(utf16_string);
fs::path AbsPathJoin(const fs::path &base, const fs::path &path)
Helper function for joining two paths.
FILE * fopen(const fs::path &p, const char *mode)
Bridge operations to C stdio.
std::string SysErrorString(int err)
Return system error string from errno value.
static std::string GetErrorReason()
std::string get_filesystem_error_message(const fs::filesystem_error &e)
Path class wrapper to block calls to the fs::path(std::string) implicit constructor and the fs::path:...