[llvm] r318583 - Split realPathFromHandle in two.
Rafael Espindola via llvm-commits
llvm-commits at lists.llvm.org
Fri Nov 17 18:05:59 PST 2017
Author: rafael
Date: Fri Nov 17 18:05:59 2017
New Revision: 318583
URL: http://llvm.org/viewvc/llvm-project?rev=318583&view=rev
Log:
Split realPathFromHandle in two.
By having an UTF-16 version we avoid some code duplication in calling
GetFinalPathNameByHandleW.
Modified:
llvm/trunk/lib/Support/Windows/Path.inc
Modified: llvm/trunk/lib/Support/Windows/Path.inc
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Windows/Path.inc?rev=318583&r1=318582&r2=318583&view=diff
==============================================================================
--- llvm/trunk/lib/Support/Windows/Path.inc (original)
+++ llvm/trunk/lib/Support/Windows/Path.inc Fri Nov 17 18:05:59 2017
@@ -344,20 +344,15 @@ std::error_code is_local(const Twine &pa
return is_local_internal(WidePath, result);
}
+static std::error_code realPathFromHandle(HANDLE H,
+ SmallVectorImpl<wchar_t> &Buffer);
+
std::error_code is_local(int FD, bool &Result) {
SmallVector<wchar_t, 128> FinalPath;
HANDLE Handle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
- size_t Len = 128;
- do {
- FinalPath.reserve(Len);
- Len = ::GetFinalPathNameByHandleW(Handle, FinalPath.data(),
- FinalPath.capacity() - 1, VOLUME_NAME_NT);
- if (Len == 0)
- return mapWindowsError(::GetLastError());
- } while (Len > FinalPath.capacity());
-
- FinalPath.set_size(Len);
+ if (std::error_code EC = realPathFromHandle(Handle, FinalPath))
+ return EC;
return is_local_internal(FinalPath, Result);
}
@@ -917,9 +912,7 @@ ErrorOr<basic_file_status> directory_ent
}
static std::error_code realPathFromHandle(HANDLE H,
- SmallVectorImpl<char> &RealPath) {
- RealPath.clear();
- llvm::SmallVector<wchar_t, MAX_PATH> Buffer;
+ SmallVectorImpl<wchar_t> &Buffer) {
DWORD CountChars = ::GetFinalPathNameByHandleW(
H, Buffer.begin(), Buffer.capacity() - 1, FILE_NAME_NORMALIZED);
if (CountChars > Buffer.capacity()) {
@@ -931,8 +924,19 @@ static std::error_code realPathFromHandl
}
if (CountChars == 0)
return mapWindowsError(GetLastError());
+ Buffer.set_size(CountChars);
+ return std::error_code();
+}
+
+static std::error_code realPathFromHandle(HANDLE H,
+ SmallVectorImpl<char> &RealPath) {
+ RealPath.clear();
+ SmallVector<wchar_t, MAX_PATH> Buffer;
+ if (std::error_code EC = realPathFromHandle(H, Buffer))
+ return EC;
const wchar_t *Data = Buffer.data();
+ DWORD CountChars = Buffer.size();
if (CountChars >= 4) {
if (0 == ::memcmp(Data, L"\\\\?\\", 8)) {
CountChars -= 4;
More information about the llvm-commits
mailing list