1 //===- llvm/Support/Windows/Path.inc - Windows Path Impl --------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements the Windows specific implementation of the Path API.
12 //===----------------------------------------------------------------------===//
14 //===----------------------------------------------------------------------===//
15 //=== WARNING: Implementation here must contain only generic Windows code that
16 //=== is guaranteed to work on *all* Windows variants.
17 //===----------------------------------------------------------------------===//
19 #include "llvm/ADT/STLExtras.h"
20 #include "llvm/Support/WindowsError.h"
24 #include <sys/types.h>
26 // These two headers must be included last, and make sure shlobj is required
27 // after Windows.h to make sure it picks up our definition of _WIN32_WINNT
28 #include "WindowsSupport.h"
33 // MinGW doesn't define this.
34 #ifndef _ERRNO_T_DEFINED
35 #define _ERRNO_T_DEFINED
40 # pragma comment(lib, "advapi32.lib") // This provides CryptAcquireContextW.
45 using llvm::sys::windows::UTF8ToUTF16;
46 using llvm::sys::windows::UTF16ToUTF8;
47 using llvm::sys::path::widenPath;
49 static bool is_separator(const wchar_t value) {
63 // Convert a UTF-8 path to UTF-16. Also, if the absolute equivalent of the
64 // path is longer than CreateDirectory can tolerate, make it absolute and
65 // prefixed by '\\?\'.
66 std::error_code widenPath(const Twine &Path8,
67 SmallVectorImpl<wchar_t> &Path16) {
68 const size_t MaxDirLen = MAX_PATH - 12; // Must leave room for 8.3 filename.
70 // Several operations would convert Path8 to SmallString; more efficient to
71 // do it once up front.
72 SmallString<128> Path8Str;
73 Path8.toVector(Path8Str);
75 // If we made this path absolute, how much longer would it get?
77 if (llvm::sys::path::is_absolute(Twine(Path8Str)))
78 CurPathLen = 0; // No contribution from current_path needed.
80 CurPathLen = ::GetCurrentDirectoryW(0, NULL);
82 return mapWindowsError(::GetLastError());
85 // Would the absolute path be longer than our limit?
86 if ((Path8Str.size() + CurPathLen) >= MaxDirLen &&
87 !Path8Str.startswith("\\\\?\\")) {
88 SmallString<2*MAX_PATH> FullPath("\\\\?\\");
90 SmallString<80> CurPath;
91 if (std::error_code EC = llvm::sys::fs::current_path(CurPath))
93 FullPath.append(CurPath);
95 // Traverse the requested path, canonicalizing . and .. as we go (because
96 // the \\?\ prefix is documented to treat them as real components).
97 // The iterators don't report separators and append() always attaches
98 // preferred_separator so we don't need to call native() on the result.
99 for (llvm::sys::path::const_iterator I = llvm::sys::path::begin(Path8Str),
100 E = llvm::sys::path::end(Path8Str);
102 if (I->size() == 1 && *I == ".")
104 if (I->size() == 2 && *I == "..")
105 llvm::sys::path::remove_filename(FullPath);
107 llvm::sys::path::append(FullPath, *I);
109 return UTF8ToUTF16(FullPath, Path16);
112 // Just use the caller's original path.
113 return UTF8ToUTF16(Path8Str, Path16);
115 } // end namespace path
119 std::string getMainExecutable(const char *argv0, void *MainExecAddr) {
120 SmallVector<wchar_t, MAX_PATH> PathName;
121 DWORD Size = ::GetModuleFileNameW(NULL, PathName.data(), PathName.capacity());
123 // A zero return value indicates a failure other than insufficient space.
127 // Insufficient space is determined by a return value equal to the size of
128 // the buffer passed in.
129 if (Size == PathName.capacity())
132 // On success, GetModuleFileNameW returns the number of characters written to
133 // the buffer not including the NULL terminator.
134 PathName.set_size(Size);
136 // Convert the result from UTF-16 to UTF-8.
137 SmallVector<char, MAX_PATH> PathNameUTF8;
138 if (UTF16ToUTF8(PathName.data(), PathName.size(), PathNameUTF8))
141 return std::string(PathNameUTF8.data());
144 UniqueID file_status::getUniqueID() const {
145 // The file is uniquely identified by the volume serial number along
146 // with the 64-bit file identifier.
147 uint64_t FileID = (static_cast<uint64_t>(FileIndexHigh) << 32ULL) |
148 static_cast<uint64_t>(FileIndexLow);
150 return UniqueID(VolumeSerialNumber, FileID);
153 TimeValue file_status::getLastModificationTime() const {
155 UI.LowPart = LastWriteTimeLow;
156 UI.HighPart = LastWriteTimeHigh;
159 Ret.fromWin32Time(UI.QuadPart);
163 std::error_code current_path(SmallVectorImpl<char> &result) {
164 SmallVector<wchar_t, MAX_PATH> cur_path;
165 DWORD len = MAX_PATH;
168 cur_path.reserve(len);
169 len = ::GetCurrentDirectoryW(cur_path.capacity(), cur_path.data());
171 // A zero return value indicates a failure other than insufficient space.
173 return mapWindowsError(::GetLastError());
175 // If there's insufficient space, the len returned is larger than the len
177 } while (len > cur_path.capacity());
179 // On success, GetCurrentDirectoryW returns the number of characters not
180 // including the null-terminator.
181 cur_path.set_size(len);
182 return UTF16ToUTF8(cur_path.begin(), cur_path.size(), result);
185 std::error_code create_directory(const Twine &path, bool IgnoreExisting,
187 SmallVector<wchar_t, 128> path_utf16;
189 if (std::error_code ec = widenPath(path, path_utf16))
192 if (!::CreateDirectoryW(path_utf16.begin(), NULL)) {
193 DWORD LastError = ::GetLastError();
194 if (LastError != ERROR_ALREADY_EXISTS || !IgnoreExisting)
195 return mapWindowsError(LastError);
198 return std::error_code();
201 // We can't use symbolic links for windows.
202 std::error_code create_link(const Twine &to, const Twine &from) {
203 // Convert to utf-16.
204 SmallVector<wchar_t, 128> wide_from;
205 SmallVector<wchar_t, 128> wide_to;
206 if (std::error_code ec = widenPath(from, wide_from))
208 if (std::error_code ec = widenPath(to, wide_to))
211 if (!::CreateHardLinkW(wide_from.begin(), wide_to.begin(), NULL))
212 return mapWindowsError(::GetLastError());
214 return std::error_code();
217 std::error_code remove(const Twine &path, bool IgnoreNonExisting) {
218 SmallVector<wchar_t, 128> path_utf16;
221 if (std::error_code EC = status(path, ST)) {
222 if (EC != errc::no_such_file_or_directory || !IgnoreNonExisting)
224 return std::error_code();
227 if (std::error_code ec = widenPath(path, path_utf16))
230 if (ST.type() == file_type::directory_file) {
231 if (!::RemoveDirectoryW(c_str(path_utf16))) {
232 std::error_code EC = mapWindowsError(::GetLastError());
233 if (EC != errc::no_such_file_or_directory || !IgnoreNonExisting)
236 return std::error_code();
238 if (!::DeleteFileW(c_str(path_utf16))) {
239 std::error_code EC = mapWindowsError(::GetLastError());
240 if (EC != errc::no_such_file_or_directory || !IgnoreNonExisting)
243 return std::error_code();
246 std::error_code rename(const Twine &from, const Twine &to) {
247 // Convert to utf-16.
248 SmallVector<wchar_t, 128> wide_from;
249 SmallVector<wchar_t, 128> wide_to;
250 if (std::error_code ec = widenPath(from, wide_from))
252 if (std::error_code ec = widenPath(to, wide_to))
255 std::error_code ec = std::error_code();
257 // Retry while we see ERROR_ACCESS_DENIED.
258 // System scanners (eg. indexer) might open the source file when it is written
261 for (int i = 0; i < 2000; i++) {
262 // Try ReplaceFile first, as it is able to associate a new data stream with
263 // the destination even if the destination file is currently open.
264 if (::ReplaceFileW(wide_to.begin(), wide_from.begin(), NULL, 0, NULL, NULL))
265 return std::error_code();
267 // We get ERROR_FILE_NOT_FOUND if the destination file is missing.
268 // MoveFileEx can handle this case.
269 DWORD ReplaceError = ::GetLastError();
270 ec = mapWindowsError(ReplaceError);
271 if (ReplaceError != ERROR_ACCESS_DENIED &&
272 ReplaceError != ERROR_FILE_NOT_FOUND &&
273 ReplaceError != ERROR_SHARING_VIOLATION)
276 if (::MoveFileExW(wide_from.begin(), wide_to.begin(),
277 MOVEFILE_COPY_ALLOWED | MOVEFILE_REPLACE_EXISTING))
278 return std::error_code();
280 DWORD MoveError = ::GetLastError();
281 ec = mapWindowsError(MoveError);
282 if (MoveError != ERROR_ACCESS_DENIED) break;
290 std::error_code resize_file(int FD, uint64_t Size) {
291 #ifdef HAVE__CHSIZE_S
292 errno_t error = ::_chsize_s(FD, Size);
294 errno_t error = ::_chsize(FD, Size);
296 return std::error_code(error, std::generic_category());
299 std::error_code access(const Twine &Path, AccessMode Mode) {
300 SmallVector<wchar_t, 128> PathUtf16;
302 if (std::error_code EC = widenPath(Path, PathUtf16))
305 DWORD Attributes = ::GetFileAttributesW(PathUtf16.begin());
307 if (Attributes == INVALID_FILE_ATTRIBUTES) {
308 // See if the file didn't actually exist.
309 DWORD LastError = ::GetLastError();
310 if (LastError != ERROR_FILE_NOT_FOUND &&
311 LastError != ERROR_PATH_NOT_FOUND)
312 return mapWindowsError(LastError);
313 return errc::no_such_file_or_directory;
316 if (Mode == AccessMode::Write && (Attributes & FILE_ATTRIBUTE_READONLY))
317 return errc::permission_denied;
319 return std::error_code();
322 bool can_execute(const Twine &Path) {
323 return !access(Path, AccessMode::Execute) ||
324 !access(Path + ".exe", AccessMode::Execute);
327 bool equivalent(file_status A, file_status B) {
328 assert(status_known(A) && status_known(B));
329 return A.FileIndexHigh == B.FileIndexHigh &&
330 A.FileIndexLow == B.FileIndexLow &&
331 A.FileSizeHigh == B.FileSizeHigh &&
332 A.FileSizeLow == B.FileSizeLow &&
333 A.LastWriteTimeHigh == B.LastWriteTimeHigh &&
334 A.LastWriteTimeLow == B.LastWriteTimeLow &&
335 A.VolumeSerialNumber == B.VolumeSerialNumber;
338 std::error_code equivalent(const Twine &A, const Twine &B, bool &result) {
339 file_status fsA, fsB;
340 if (std::error_code ec = status(A, fsA))
342 if (std::error_code ec = status(B, fsB))
344 result = equivalent(fsA, fsB);
345 return std::error_code();
348 static bool isReservedName(StringRef path) {
349 // This list of reserved names comes from MSDN, at:
350 // http://msdn.microsoft.com/en-us/library/aa365247%28v=vs.85%29.aspx
351 static const char *const sReservedNames[] = { "nul", "con", "prn", "aux",
352 "com1", "com2", "com3", "com4",
353 "com5", "com6", "com7", "com8",
354 "com9", "lpt1", "lpt2", "lpt3",
355 "lpt4", "lpt5", "lpt6", "lpt7",
358 // First, check to see if this is a device namespace, which always
359 // starts with \\.\, since device namespaces are not legal file paths.
360 if (path.startswith("\\\\.\\"))
363 // Then compare against the list of ancient reserved names
364 for (size_t i = 0; i < array_lengthof(sReservedNames); ++i) {
365 if (path.equals_lower(sReservedNames[i]))
369 // The path isn't what we consider reserved.
373 static std::error_code getStatus(HANDLE FileHandle, file_status &Result) {
374 if (FileHandle == INVALID_HANDLE_VALUE)
375 goto handle_status_error;
377 switch (::GetFileType(FileHandle)) {
379 llvm_unreachable("Don't know anything about this file type");
380 case FILE_TYPE_UNKNOWN: {
381 DWORD Err = ::GetLastError();
383 return mapWindowsError(Err);
384 Result = file_status(file_type::type_unknown);
385 return std::error_code();
390 Result = file_status(file_type::character_file);
391 return std::error_code();
393 Result = file_status(file_type::fifo_file);
394 return std::error_code();
397 BY_HANDLE_FILE_INFORMATION Info;
398 if (!::GetFileInformationByHandle(FileHandle, &Info))
399 goto handle_status_error;
402 file_type Type = (Info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
403 ? file_type::directory_file
404 : file_type::regular_file;
406 file_status(Type, Info.ftLastWriteTime.dwHighDateTime,
407 Info.ftLastWriteTime.dwLowDateTime,
408 Info.dwVolumeSerialNumber, Info.nFileSizeHigh,
409 Info.nFileSizeLow, Info.nFileIndexHigh, Info.nFileIndexLow);
410 return std::error_code();
414 DWORD LastError = ::GetLastError();
415 if (LastError == ERROR_FILE_NOT_FOUND ||
416 LastError == ERROR_PATH_NOT_FOUND)
417 Result = file_status(file_type::file_not_found);
418 else if (LastError == ERROR_SHARING_VIOLATION)
419 Result = file_status(file_type::type_unknown);
421 Result = file_status(file_type::status_error);
422 return mapWindowsError(LastError);
425 std::error_code status(const Twine &path, file_status &result) {
426 SmallString<128> path_storage;
427 SmallVector<wchar_t, 128> path_utf16;
429 StringRef path8 = path.toStringRef(path_storage);
430 if (isReservedName(path8)) {
431 result = file_status(file_type::character_file);
432 return std::error_code();
435 if (std::error_code ec = widenPath(path8, path_utf16))
438 DWORD attr = ::GetFileAttributesW(path_utf16.begin());
439 if (attr == INVALID_FILE_ATTRIBUTES)
440 return getStatus(INVALID_HANDLE_VALUE, result);
442 // Handle reparse points.
443 if (attr & FILE_ATTRIBUTE_REPARSE_POINT) {
445 ::CreateFileW(path_utf16.begin(),
446 0, // Attributes only.
447 FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE,
450 FILE_FLAG_BACKUP_SEMANTICS,
453 return getStatus(INVALID_HANDLE_VALUE, result);
457 ::CreateFileW(path_utf16.begin(), 0, // Attributes only.
458 FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE,
459 NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, 0));
461 return getStatus(INVALID_HANDLE_VALUE, result);
463 return getStatus(h, result);
466 std::error_code status(int FD, file_status &Result) {
467 HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
468 return getStatus(FileHandle, Result);
471 std::error_code setLastModificationAndAccessTime(int FD, TimeValue Time) {
473 UI.QuadPart = Time.toWin32Time();
475 FT.dwLowDateTime = UI.LowPart;
476 FT.dwHighDateTime = UI.HighPart;
477 HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
478 if (!SetFileTime(FileHandle, NULL, &FT, &FT))
479 return mapWindowsError(::GetLastError());
480 return std::error_code();
483 std::error_code mapped_file_region::init(int FD, uint64_t Offset,
485 // Make sure that the requested size fits within SIZE_T.
486 if (Size > std::numeric_limits<SIZE_T>::max())
487 return make_error_code(errc::invalid_argument);
489 HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
490 if (FileHandle == INVALID_HANDLE_VALUE)
491 return make_error_code(errc::bad_file_descriptor);
495 case readonly: flprotect = PAGE_READONLY; break;
496 case readwrite: flprotect = PAGE_READWRITE; break;
497 case priv: flprotect = PAGE_WRITECOPY; break;
500 HANDLE FileMappingHandle =
501 ::CreateFileMappingW(FileHandle, 0, flprotect,
502 (Offset + Size) >> 32,
503 (Offset + Size) & 0xffffffff,
505 if (FileMappingHandle == NULL) {
506 std::error_code ec = mapWindowsError(GetLastError());
510 DWORD dwDesiredAccess;
512 case readonly: dwDesiredAccess = FILE_MAP_READ; break;
513 case readwrite: dwDesiredAccess = FILE_MAP_WRITE; break;
514 case priv: dwDesiredAccess = FILE_MAP_COPY; break;
516 Mapping = ::MapViewOfFile(FileMappingHandle,
521 if (Mapping == NULL) {
522 std::error_code ec = mapWindowsError(GetLastError());
523 ::CloseHandle(FileMappingHandle);
528 MEMORY_BASIC_INFORMATION mbi;
529 SIZE_T Result = VirtualQuery(Mapping, &mbi, sizeof(mbi));
531 std::error_code ec = mapWindowsError(GetLastError());
532 ::UnmapViewOfFile(Mapping);
533 ::CloseHandle(FileMappingHandle);
536 Size = mbi.RegionSize;
539 // Close all the handles except for the view. It will keep the other handles
541 ::CloseHandle(FileMappingHandle);
542 return std::error_code();
545 mapped_file_region::mapped_file_region(int fd, mapmode mode, uint64_t length,
546 uint64_t offset, std::error_code &ec)
547 : Size(length), Mapping() {
548 ec = init(fd, offset, mode);
553 mapped_file_region::~mapped_file_region() {
555 ::UnmapViewOfFile(Mapping);
558 uint64_t mapped_file_region::size() const {
559 assert(Mapping && "Mapping failed but used anyway!");
563 char *mapped_file_region::data() const {
564 assert(Mapping && "Mapping failed but used anyway!");
565 return reinterpret_cast<char*>(Mapping);
568 const char *mapped_file_region::const_data() const {
569 assert(Mapping && "Mapping failed but used anyway!");
570 return reinterpret_cast<const char*>(Mapping);
573 int mapped_file_region::alignment() {
575 ::GetSystemInfo(&SysInfo);
576 return SysInfo.dwAllocationGranularity;
579 std::error_code detail::directory_iterator_construct(detail::DirIterState &it,
581 SmallVector<wchar_t, 128> path_utf16;
583 if (std::error_code ec = widenPath(path, path_utf16))
586 // Convert path to the format that Windows is happy with.
587 if (path_utf16.size() > 0 &&
588 !is_separator(path_utf16[path.size() - 1]) &&
589 path_utf16[path.size() - 1] != L':') {
590 path_utf16.push_back(L'\\');
591 path_utf16.push_back(L'*');
593 path_utf16.push_back(L'*');
596 // Get the first directory entry.
597 WIN32_FIND_DATAW FirstFind;
598 ScopedFindHandle FindHandle(::FindFirstFileW(c_str(path_utf16), &FirstFind));
600 return mapWindowsError(::GetLastError());
602 size_t FilenameLen = ::wcslen(FirstFind.cFileName);
603 while ((FilenameLen == 1 && FirstFind.cFileName[0] == L'.') ||
604 (FilenameLen == 2 && FirstFind.cFileName[0] == L'.' &&
605 FirstFind.cFileName[1] == L'.'))
606 if (!::FindNextFileW(FindHandle, &FirstFind)) {
607 DWORD LastError = ::GetLastError();
609 if (LastError == ERROR_NO_MORE_FILES)
610 return detail::directory_iterator_destruct(it);
611 return mapWindowsError(LastError);
613 FilenameLen = ::wcslen(FirstFind.cFileName);
615 // Construct the current directory entry.
616 SmallString<128> directory_entry_name_utf8;
617 if (std::error_code ec =
618 UTF16ToUTF8(FirstFind.cFileName, ::wcslen(FirstFind.cFileName),
619 directory_entry_name_utf8))
622 it.IterationHandle = intptr_t(FindHandle.take());
623 SmallString<128> directory_entry_path(path);
624 path::append(directory_entry_path, directory_entry_name_utf8);
625 it.CurrentEntry = directory_entry(directory_entry_path);
627 return std::error_code();
630 std::error_code detail::directory_iterator_destruct(detail::DirIterState &it) {
631 if (it.IterationHandle != 0)
632 // Closes the handle if it's valid.
633 ScopedFindHandle close(HANDLE(it.IterationHandle));
634 it.IterationHandle = 0;
635 it.CurrentEntry = directory_entry();
636 return std::error_code();
639 std::error_code detail::directory_iterator_increment(detail::DirIterState &it) {
640 WIN32_FIND_DATAW FindData;
641 if (!::FindNextFileW(HANDLE(it.IterationHandle), &FindData)) {
642 DWORD LastError = ::GetLastError();
644 if (LastError == ERROR_NO_MORE_FILES)
645 return detail::directory_iterator_destruct(it);
646 return mapWindowsError(LastError);
649 size_t FilenameLen = ::wcslen(FindData.cFileName);
650 if ((FilenameLen == 1 && FindData.cFileName[0] == L'.') ||
651 (FilenameLen == 2 && FindData.cFileName[0] == L'.' &&
652 FindData.cFileName[1] == L'.'))
653 return directory_iterator_increment(it);
655 SmallString<128> directory_entry_path_utf8;
656 if (std::error_code ec =
657 UTF16ToUTF8(FindData.cFileName, ::wcslen(FindData.cFileName),
658 directory_entry_path_utf8))
661 it.CurrentEntry.replace_filename(Twine(directory_entry_path_utf8));
662 return std::error_code();
665 std::error_code openFileForRead(const Twine &Name, int &ResultFD) {
666 SmallVector<wchar_t, 128> PathUTF16;
668 if (std::error_code EC = widenPath(Name, PathUTF16))
672 ::CreateFileW(PathUTF16.begin(), GENERIC_READ,
673 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
674 NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
675 if (H == INVALID_HANDLE_VALUE) {
676 DWORD LastError = ::GetLastError();
677 std::error_code EC = mapWindowsError(LastError);
678 // Provide a better error message when trying to open directories.
679 // This only runs if we failed to open the file, so there is probably
680 // no performances issues.
681 if (LastError != ERROR_ACCESS_DENIED)
683 if (is_directory(Name))
684 return make_error_code(errc::is_a_directory);
688 int FD = ::_open_osfhandle(intptr_t(H), 0);
691 return mapWindowsError(ERROR_INVALID_HANDLE);
695 return std::error_code();
698 std::error_code openFileForWrite(const Twine &Name, int &ResultFD,
699 sys::fs::OpenFlags Flags, unsigned Mode) {
700 // Verify that we don't have both "append" and "excl".
701 assert((!(Flags & sys::fs::F_Excl) || !(Flags & sys::fs::F_Append)) &&
702 "Cannot specify both 'excl' and 'append' file creation flags!");
704 SmallVector<wchar_t, 128> PathUTF16;
706 if (std::error_code EC = widenPath(Name, PathUTF16))
709 DWORD CreationDisposition;
711 CreationDisposition = CREATE_NEW;
712 else if (Flags & F_Append)
713 CreationDisposition = OPEN_ALWAYS;
715 CreationDisposition = CREATE_ALWAYS;
717 DWORD Access = GENERIC_WRITE;
719 Access |= GENERIC_READ;
721 HANDLE H = ::CreateFileW(PathUTF16.begin(), Access,
722 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
723 CreationDisposition, FILE_ATTRIBUTE_NORMAL, NULL);
725 if (H == INVALID_HANDLE_VALUE) {
726 DWORD LastError = ::GetLastError();
727 std::error_code EC = mapWindowsError(LastError);
728 // Provide a better error message when trying to open directories.
729 // This only runs if we failed to open the file, so there is probably
730 // no performances issues.
731 if (LastError != ERROR_ACCESS_DENIED)
733 if (is_directory(Name))
734 return make_error_code(errc::is_a_directory);
739 if (Flags & F_Append)
740 OpenFlags |= _O_APPEND;
743 OpenFlags |= _O_TEXT;
745 int FD = ::_open_osfhandle(intptr_t(H), OpenFlags);
748 return mapWindowsError(ERROR_INVALID_HANDLE);
752 return std::error_code();
754 } // end namespace fs
757 static bool getKnownFolderPath(KNOWNFOLDERID folderId,
758 SmallVectorImpl<char> &result) {
759 wchar_t *path = nullptr;
760 if (::SHGetKnownFolderPath(folderId, KF_FLAG_CREATE, nullptr, &path) != S_OK)
763 bool ok = !UTF16ToUTF8(path, ::wcslen(path), result);
764 ::CoTaskMemFree(path);
768 bool getUserCacheDir(SmallVectorImpl<char> &Result) {
769 return getKnownFolderPath(FOLDERID_LocalAppData, Result);
772 bool home_directory(SmallVectorImpl<char> &result) {
773 return getKnownFolderPath(FOLDERID_Profile, result);
776 static bool getTempDirEnvVar(const wchar_t *Var, SmallVectorImpl<char> &Res) {
777 SmallVector<wchar_t, 1024> Buf;
781 Size = GetEnvironmentVariableW(Var, Buf.data(), Buf.capacity());
785 // Try again with larger buffer.
786 } while (Size > Buf.capacity());
789 return !windows::UTF16ToUTF8(Buf.data(), Size, Res);
792 static bool getTempDirEnvVar(SmallVectorImpl<char> &Res) {
793 const wchar_t *EnvironmentVariables[] = {L"TMP", L"TEMP", L"USERPROFILE"};
794 for (auto *Env : EnvironmentVariables) {
795 if (getTempDirEnvVar(Env, Res))
801 void system_temp_directory(bool ErasedOnReboot, SmallVectorImpl<char> &Result) {
802 (void)ErasedOnReboot;
805 // Check whether the temporary directory is specified by an environment var.
806 // This matches GetTempPath logic to some degree. GetTempPath is not used
807 // directly as it cannot handle evn var longer than 130 chars on Windows 7
808 // (fixed on Windows 8).
809 if (getTempDirEnvVar(Result)) {
810 assert(!Result.empty() && "Unexpected empty path");
811 native(Result); // Some Unix-like shells use Unix path separator in $TMP.
812 fs::make_absolute(Result); // Make it absolute if not already.
816 // Fall back to a system default.
817 const char *DefaultResult = "C:\\Temp";
818 Result.append(DefaultResult, DefaultResult + strlen(DefaultResult));
820 } // end namespace path
823 std::error_code UTF8ToUTF16(llvm::StringRef utf8,
824 llvm::SmallVectorImpl<wchar_t> &utf16) {
826 int len = ::MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, utf8.begin(),
827 utf8.size(), utf16.begin(), 0);
830 return mapWindowsError(::GetLastError());
832 utf16.reserve(len + 1);
835 len = ::MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, utf8.begin(),
836 utf8.size(), utf16.begin(), utf16.size());
839 return mapWindowsError(::GetLastError());
842 // Make utf16 null terminated.
846 return std::error_code();
850 std::error_code UTF16ToCodePage(unsigned codepage, const wchar_t *utf16,
852 llvm::SmallVectorImpl<char> &utf8) {
855 int len = ::WideCharToMultiByte(codepage, 0, utf16, utf16_len, utf8.begin(),
859 return mapWindowsError(::GetLastError());
864 // Now do the actual conversion.
865 len = ::WideCharToMultiByte(codepage, 0, utf16, utf16_len, utf8.data(),
866 utf8.size(), NULL, NULL);
869 return mapWindowsError(::GetLastError());
872 // Make utf8 null terminated.
876 return std::error_code();
879 std::error_code UTF16ToUTF8(const wchar_t *utf16, size_t utf16_len,
880 llvm::SmallVectorImpl<char> &utf8) {
881 return UTF16ToCodePage(CP_UTF8, utf16, utf16_len, utf8);
884 std::error_code UTF16ToCurCP(const wchar_t *utf16, size_t utf16_len,
885 llvm::SmallVectorImpl<char> &utf8) {
886 return UTF16ToCodePage(CP_ACP, utf16, utf16_len, utf8);
888 } // end namespace windows
889 } // end namespace sys
890 } // end namespace llvm