12 #include <sys/utsname.h>
24 FILE *
fopen(
const fs::path& p,
const char *mode)
29 std::wstring_convert<std::codecvt_utf8_utf16<wchar_t>,
wchar_t> utf8_cvt;
30 return ::_wfopen(p.wstring().c_str(), utf8_cvt.from_bytes(mode).c_str());
38 return std::strerror(errno);
43 fd = open(file.string().c_str(), O_RDWR);
58 struct utsname uname_data;
59 return uname(&uname_data) == 0 && std::string(uname_data.version).find(
"Microsoft") != std::string::npos;
70 static const bool is_wsl =
IsWSL();
72 if (flock(
fd, LOCK_EX | LOCK_NB) == -1) {
78 lock.l_type = F_WRLCK;
79 lock.l_whence = SEEK_SET;
82 if (fcntl(
fd, F_SETLK, &lock) == -1) {
94 FormatMessageW(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
95 nullptr, GetLastError(), MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), reinterpret_cast<WCHAR*>(&err), 0,
nullptr);
96 std::wstring err_str(err);
98 return std::wstring_convert<std::codecvt_utf8_utf16<wchar_t>>().to_bytes(err_str);
103 hFile = CreateFileW(file.wstring().c_str(), GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
104 nullptr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL,
nullptr);
105 if (hFile == INVALID_HANDLE_VALUE) {
112 if (hFile != INVALID_HANDLE_VALUE) {
119 if (hFile == INVALID_HANDLE_VALUE) {
122 _OVERLAPPED overlapped = {0};
123 if (!LockFileEx(hFile, LOCKFILE_EXCLUSIVE_LOCK | LOCKFILE_FAIL_IMMEDIATELY, 0, std::numeric_limits<DWORD>::max(), std::numeric_limits<DWORD>::max(), &overlapped)) {
137 std::string mb_string(e.what());
138 int size = MultiByteToWideChar(CP_ACP, 0, mb_string.data(), mb_string.size(),
nullptr, 0);
140 std::wstring utf16_string(size, L
'\0');
141 MultiByteToWideChar(CP_ACP, 0, mb_string.data(), mb_string.size(), &*utf16_string.begin(), size);
143 return std::wstring_convert<std::codecvt_utf8_utf16<wchar_t>,
wchar_t>().to_bytes(utf16_string);
152 static std::string openmodeToStr(std::ios_base::openmode mode)
154 switch (mode & ~std::ios_base::ate) {
155 case std::ios_base::out:
156 case std::ios_base::out | std::ios_base::trunc:
158 case std::ios_base::out | std::ios_base::app:
159 case std::ios_base::app:
161 case std::ios_base::in:
163 case std::ios_base::in | std::ios_base::out:
165 case std::ios_base::in | std::ios_base::out | std::ios_base::trunc:
167 case std::ios_base::in | std::ios_base::out | std::ios_base::app:
168 case std::ios_base::in | std::ios_base::app:
170 case std::ios_base::out | std::ios_base::binary:
171 case std::ios_base::out | std::ios_base::trunc | std::ios_base::binary:
173 case std::ios_base::out | std::ios_base::app | std::ios_base::binary:
174 case std::ios_base::app | std::ios_base::binary:
176 case std::ios_base::in | std::ios_base::binary:
178 case std::ios_base::in | std::ios_base::out | std::ios_base::binary:
180 case std::ios_base::in | std::ios_base::out | std::ios_base::trunc | std::ios_base::binary:
182 case std::ios_base::in | std::ios_base::out | std::ios_base::app | std::ios_base::binary:
183 case std::ios_base::in | std::ios_base::app | std::ios_base::binary:
186 return std::string();
190 void ifstream::open(
const fs::path& p, std::ios_base::openmode mode)
193 mode |= std::ios_base::in;
195 if (m_file ==
nullptr) {
198 m_filebuf = __gnu_cxx::stdio_filebuf<char>(m_file, mode);
200 if (mode & std::ios_base::ate) {
201 seekg(0, std::ios_base::end);
205 void ifstream::close()
207 if (m_file !=
nullptr) {
214 void ofstream::open(
const fs::path& p, std::ios_base::openmode mode)
217 mode |= std::ios_base::out;
219 if (m_file ==
nullptr) {
222 m_filebuf = __gnu_cxx::stdio_filebuf<char>(m_file, mode);
224 if (mode & std::ios_base::ate) {
225 seekp(0, std::ios_base::end);
229 void ofstream::close()
231 if (m_file !=
nullptr) {
239 static_assert(
sizeof(*fs::path().BOOST_FILESYSTEM_C_STR) ==
sizeof(
wchar_t),
240 "Warning: This build is using boost::filesystem ofstream and ifstream "
241 "implementations which will fail to open paths containing multibyte "
242 "characters. You should delete this static_assert to ignore this warning, "
243 "or switch to a different C++ standard library like the Microsoft C++ "
244 "Standard Library (where boost uses non-standard extensions to construct "
245 "stream objects with wide filenames), or the GNU libstdc++ library (where "
246 "a more complicated workaround has been implemented above).");
248 #endif // __GLIBCXX__
FILE * fopen(const fs::path &p, const char *mode)
Filesystem operations and types.
static std::string GetErrorReason()
std::string get_filesystem_error_message(const fs::filesystem_error &e)