Rafael Espindola | f1fc382 | 2013-06-26 19:33:03 +0000 | [diff] [blame] | 1 | //===- llvm/Support/Windows/Path.inc - Windows Path Impl --------*- C++ -*-===// |
Michael J. Spencer | ebad2f9 | 2010-11-29 22:28:51 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Rafael Espindola | f1fc382 | 2013-06-26 19:33:03 +0000 | [diff] [blame] | 10 | // This file implements the Windows specific implementation of the Path API. |
Michael J. Spencer | ebad2f9 | 2010-11-29 22:28:51 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | //=== WARNING: Implementation here must contain only generic Windows code that |
| 16 | //=== is guaranteed to work on *all* Windows variants. |
| 17 | //===----------------------------------------------------------------------===// |
| 18 | |
Craig Topper | f18edae | 2013-07-15 07:15:05 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/STLExtras.h" |
Rafael Espindola | 5c4f829 | 2014-06-11 19:05:50 +0000 | [diff] [blame] | 20 | #include "llvm/Support/WindowsError.h" |
Michael J. Spencer | c20a032 | 2010-12-03 17:54:07 +0000 | [diff] [blame] | 21 | #include <fcntl.h> |
Michael J. Spencer | 4571040 | 2010-12-03 01:21:28 +0000 | [diff] [blame] | 22 | #include <io.h> |
Michael J. Spencer | c20a032 | 2010-12-03 17:54:07 +0000 | [diff] [blame] | 23 | #include <sys/stat.h> |
| 24 | #include <sys/types.h> |
Michael J. Spencer | ebad2f9 | 2010-11-29 22:28:51 +0000 | [diff] [blame] | 25 | |
NAKAMURA Takumi | 04d39d7 | 2014-02-12 11:50:22 +0000 | [diff] [blame] | 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 |
Reid Kleckner | d59e2fa | 2014-02-12 21:26:20 +0000 | [diff] [blame] | 28 | #include "WindowsSupport.h" |
NAKAMURA Takumi | 04d39d7 | 2014-02-12 11:50:22 +0000 | [diff] [blame] | 29 | #include <shlobj.h> |
Chandler Carruth | 8a8cd2b | 2014-01-07 11:48:04 +0000 | [diff] [blame] | 30 | |
Michael J. Spencer | ef2284f | 2012-08-15 19:05:47 +0000 | [diff] [blame] | 31 | #undef max |
| 32 | |
Michael J. Spencer | 6025247 | 2010-12-03 18:03:28 +0000 | [diff] [blame] | 33 | // MinGW doesn't define this. |
Michael J. Spencer | 521c321 | 2010-12-03 18:04:11 +0000 | [diff] [blame] | 34 | #ifndef _ERRNO_T_DEFINED |
| 35 | #define _ERRNO_T_DEFINED |
| 36 | typedef int errno_t; |
Michael J. Spencer | 6025247 | 2010-12-03 18:03:28 +0000 | [diff] [blame] | 37 | #endif |
| 38 | |
Reid Kleckner | 11da004 | 2013-08-07 20:19:31 +0000 | [diff] [blame] | 39 | #ifdef _MSC_VER |
| 40 | # pragma comment(lib, "advapi32.lib") // This provides CryptAcquireContextW. |
| 41 | #endif |
| 42 | |
Michael J. Spencer | 9fc1d9d | 2010-12-01 19:32:01 +0000 | [diff] [blame] | 43 | using namespace llvm; |
| 44 | |
Rui Ueyama | 471d0c5 | 2013-09-10 19:45:51 +0000 | [diff] [blame] | 45 | using llvm::sys::windows::UTF8ToUTF16; |
| 46 | using llvm::sys::windows::UTF16ToUTF8; |
Paul Robinson | c38deee | 2014-11-24 18:05:29 +0000 | [diff] [blame] | 47 | using llvm::sys::path::widenPath; |
Rui Ueyama | 471d0c5 | 2013-09-10 19:45:51 +0000 | [diff] [blame] | 48 | |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 49 | static std::error_code windows_error(DWORD E) { |
Rafael Espindola | 5c4f829 | 2014-06-11 19:05:50 +0000 | [diff] [blame] | 50 | return mapWindowsError(E); |
Rafael Espindola | a813d60 | 2014-06-11 03:58:34 +0000 | [diff] [blame] | 51 | } |
| 52 | |
Rafael Espindola | 37b012d | 2014-02-23 15:16:03 +0000 | [diff] [blame] | 53 | static bool is_separator(const wchar_t value) { |
| 54 | switch (value) { |
| 55 | case L'\\': |
| 56 | case L'/': |
| 57 | return true; |
| 58 | default: |
| 59 | return false; |
Michael J. Spencer | 7ecd94c | 2010-12-06 04:28:42 +0000 | [diff] [blame] | 60 | } |
Michael J. Spencer | 9fc1d9d | 2010-12-01 19:32:01 +0000 | [diff] [blame] | 61 | } |
| 62 | |
Paul Robinson | c38deee | 2014-11-24 18:05:29 +0000 | [diff] [blame] | 63 | namespace llvm { |
| 64 | namespace sys { |
| 65 | namespace path { |
| 66 | |
Paul Robinson | d9c4a9a | 2014-11-13 00:12:14 +0000 | [diff] [blame] | 67 | // Convert a UTF-8 path to UTF-16. Also, if the absolute equivalent of the |
| 68 | // path is longer than CreateDirectory can tolerate, make it absolute and |
| 69 | // prefixed by '\\?\'. |
Paul Robinson | c38deee | 2014-11-24 18:05:29 +0000 | [diff] [blame] | 70 | std::error_code widenPath(const Twine &Path8, |
| 71 | SmallVectorImpl<wchar_t> &Path16) { |
Paul Robinson | d9c4a9a | 2014-11-13 00:12:14 +0000 | [diff] [blame] | 72 | const size_t MaxDirLen = MAX_PATH - 12; // Must leave room for 8.3 filename. |
| 73 | |
| 74 | // Several operations would convert Path8 to SmallString; more efficient to |
| 75 | // do it once up front. |
| 76 | SmallString<128> Path8Str; |
| 77 | Path8.toVector(Path8Str); |
| 78 | |
| 79 | // If we made this path absolute, how much longer would it get? |
| 80 | size_t CurPathLen; |
| 81 | if (llvm::sys::path::is_absolute(Twine(Path8Str))) |
| 82 | CurPathLen = 0; // No contribution from current_path needed. |
| 83 | else { |
| 84 | CurPathLen = ::GetCurrentDirectoryW(0, NULL); |
| 85 | if (CurPathLen == 0) |
| 86 | return windows_error(::GetLastError()); |
| 87 | } |
| 88 | |
| 89 | // Would the absolute path be longer than our limit? |
| 90 | if ((Path8Str.size() + CurPathLen) >= MaxDirLen && |
| 91 | !Path8Str.startswith("\\\\?\\")) { |
| 92 | SmallString<2*MAX_PATH> FullPath("\\\\?\\"); |
| 93 | if (CurPathLen) { |
| 94 | SmallString<80> CurPath; |
| 95 | if (std::error_code EC = llvm::sys::fs::current_path(CurPath)) |
| 96 | return EC; |
| 97 | FullPath.append(CurPath); |
| 98 | } |
| 99 | // Traverse the requested path, canonicalizing . and .. as we go (because |
| 100 | // the \\?\ prefix is documented to treat them as real components). |
| 101 | // The iterators don't report separators and append() always attaches |
| 102 | // preferred_separator so we don't need to call native() on the result. |
| 103 | for (llvm::sys::path::const_iterator I = llvm::sys::path::begin(Path8Str), |
| 104 | E = llvm::sys::path::end(Path8Str); |
| 105 | I != E; ++I) { |
| 106 | if (I->size() == 1 && *I == ".") |
| 107 | continue; |
| 108 | if (I->size() == 2 && *I == "..") |
| 109 | llvm::sys::path::remove_filename(FullPath); |
| 110 | else |
| 111 | llvm::sys::path::append(FullPath, *I); |
| 112 | } |
| 113 | return UTF8ToUTF16(FullPath, Path16); |
| 114 | } |
| 115 | |
| 116 | // Just use the caller's original path. |
| 117 | return UTF8ToUTF16(Path8Str, Path16); |
| 118 | } |
Paul Robinson | c38deee | 2014-11-24 18:05:29 +0000 | [diff] [blame] | 119 | } // end namespace path |
Paul Robinson | d9c4a9a | 2014-11-13 00:12:14 +0000 | [diff] [blame] | 120 | |
Michael J. Spencer | 20daa28 | 2010-12-07 01:22:31 +0000 | [diff] [blame] | 121 | namespace fs { |
Michael J. Spencer | ebad2f9 | 2010-11-29 22:28:51 +0000 | [diff] [blame] | 122 | |
Rafael Espindola | e03dfd9 | 2013-06-26 05:01:35 +0000 | [diff] [blame] | 123 | std::string getMainExecutable(const char *argv0, void *MainExecAddr) { |
David Majnemer | 17a4496 | 2013-10-07 09:52:36 +0000 | [diff] [blame] | 124 | SmallVector<wchar_t, MAX_PATH> PathName; |
| 125 | DWORD Size = ::GetModuleFileNameW(NULL, PathName.data(), PathName.capacity()); |
| 126 | |
| 127 | // A zero return value indicates a failure other than insufficient space. |
| 128 | if (Size == 0) |
| 129 | return ""; |
| 130 | |
| 131 | // Insufficient space is determined by a return value equal to the size of |
| 132 | // the buffer passed in. |
| 133 | if (Size == PathName.capacity()) |
| 134 | return ""; |
| 135 | |
| 136 | // On success, GetModuleFileNameW returns the number of characters written to |
| 137 | // the buffer not including the NULL terminator. |
| 138 | PathName.set_size(Size); |
| 139 | |
| 140 | // Convert the result from UTF-16 to UTF-8. |
| 141 | SmallVector<char, MAX_PATH> PathNameUTF8; |
| 142 | if (UTF16ToUTF8(PathName.data(), PathName.size(), PathNameUTF8)) |
| 143 | return ""; |
| 144 | |
| 145 | return std::string(PathNameUTF8.data()); |
Rafael Espindola | e03dfd9 | 2013-06-26 05:01:35 +0000 | [diff] [blame] | 146 | } |
| 147 | |
Rafael Espindola | d123099 | 2013-07-29 21:55:38 +0000 | [diff] [blame] | 148 | UniqueID file_status::getUniqueID() const { |
Rafael Espindola | 7f822a9 | 2013-07-29 21:26:49 +0000 | [diff] [blame] | 149 | // The file is uniquely identified by the volume serial number along |
| 150 | // with the 64-bit file identifier. |
| 151 | uint64_t FileID = (static_cast<uint64_t>(FileIndexHigh) << 32ULL) | |
| 152 | static_cast<uint64_t>(FileIndexLow); |
| 153 | |
| 154 | return UniqueID(VolumeSerialNumber, FileID); |
| 155 | } |
Rafael Espindola | e03dfd9 | 2013-06-26 05:01:35 +0000 | [diff] [blame] | 156 | |
Rafael Espindola | be3ede7 | 2013-06-20 21:51:49 +0000 | [diff] [blame] | 157 | TimeValue file_status::getLastModificationTime() const { |
Rafael Espindola | db5d8fe | 2013-06-20 18:42:04 +0000 | [diff] [blame] | 158 | ULARGE_INTEGER UI; |
| 159 | UI.LowPart = LastWriteTimeLow; |
| 160 | UI.HighPart = LastWriteTimeHigh; |
| 161 | |
| 162 | TimeValue Ret; |
| 163 | Ret.fromWin32Time(UI.QuadPart); |
| 164 | return Ret; |
| 165 | } |
| 166 | |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 167 | std::error_code current_path(SmallVectorImpl<char> &result) { |
David Majnemer | 61eae2e | 2013-10-07 01:00:07 +0000 | [diff] [blame] | 168 | SmallVector<wchar_t, MAX_PATH> cur_path; |
| 169 | DWORD len = MAX_PATH; |
Michael J. Spencer | ebad2f9 | 2010-11-29 22:28:51 +0000 | [diff] [blame] | 170 | |
David Majnemer | 61eae2e | 2013-10-07 01:00:07 +0000 | [diff] [blame] | 171 | do { |
Michael J. Spencer | ebad2f9 | 2010-11-29 22:28:51 +0000 | [diff] [blame] | 172 | cur_path.reserve(len); |
David Majnemer | 61eae2e | 2013-10-07 01:00:07 +0000 | [diff] [blame] | 173 | len = ::GetCurrentDirectoryW(cur_path.capacity(), cur_path.data()); |
Michael J. Spencer | ebad2f9 | 2010-11-29 22:28:51 +0000 | [diff] [blame] | 174 | |
David Majnemer | 61eae2e | 2013-10-07 01:00:07 +0000 | [diff] [blame] | 175 | // A zero return value indicates a failure other than insufficient space. |
| 176 | if (len == 0) |
| 177 | return windows_error(::GetLastError()); |
| 178 | |
| 179 | // If there's insufficient space, the len returned is larger than the len |
| 180 | // given. |
| 181 | } while (len > cur_path.capacity()); |
| 182 | |
| 183 | // On success, GetCurrentDirectoryW returns the number of characters not |
| 184 | // including the null-terminator. |
Michael J. Spencer | ebad2f9 | 2010-11-29 22:28:51 +0000 | [diff] [blame] | 185 | cur_path.set_size(len); |
Aaron Ballman | b16cf53 | 2013-08-16 17:53:28 +0000 | [diff] [blame] | 186 | return UTF16ToUTF8(cur_path.begin(), cur_path.size(), result); |
Michael J. Spencer | ebad2f9 | 2010-11-29 22:28:51 +0000 | [diff] [blame] | 187 | } |
| 188 | |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 189 | std::error_code create_directory(const Twine &path, bool IgnoreExisting) { |
Michael J. Spencer | 31e310c | 2010-12-03 05:42:11 +0000 | [diff] [blame] | 190 | SmallVector<wchar_t, 128> path_utf16; |
| 191 | |
Paul Robinson | d9c4a9a | 2014-11-13 00:12:14 +0000 | [diff] [blame] | 192 | if (std::error_code ec = widenPath(path, path_utf16)) |
Michael J. Spencer | 31e310c | 2010-12-03 05:42:11 +0000 | [diff] [blame] | 193 | return ec; |
| 194 | |
| 195 | if (!::CreateDirectoryW(path_utf16.begin(), NULL)) { |
Rafael Espindola | a813d60 | 2014-06-11 03:58:34 +0000 | [diff] [blame] | 196 | DWORD LastError = ::GetLastError(); |
| 197 | if (LastError != ERROR_ALREADY_EXISTS || !IgnoreExisting) |
| 198 | return windows_error(LastError); |
Rafael Espindola | 5c20ac0 | 2014-02-23 13:56:14 +0000 | [diff] [blame] | 199 | } |
Michael J. Spencer | 31e310c | 2010-12-03 05:42:11 +0000 | [diff] [blame] | 200 | |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 201 | return std::error_code(); |
Michael J. Spencer | 31e310c | 2010-12-03 05:42:11 +0000 | [diff] [blame] | 202 | } |
| 203 | |
Rafael Espindola | 83f858e | 2014-03-11 18:40:24 +0000 | [diff] [blame] | 204 | // We can't use symbolic links for windows. |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 205 | std::error_code create_link(const Twine &to, const Twine &from) { |
Michael J. Spencer | e0c4560 | 2010-12-03 05:58:41 +0000 | [diff] [blame] | 206 | // Convert to utf-16. |
| 207 | SmallVector<wchar_t, 128> wide_from; |
| 208 | SmallVector<wchar_t, 128> wide_to; |
Paul Robinson | d9c4a9a | 2014-11-13 00:12:14 +0000 | [diff] [blame] | 209 | if (std::error_code ec = widenPath(from, wide_from)) |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 210 | return ec; |
Paul Robinson | d9c4a9a | 2014-11-13 00:12:14 +0000 | [diff] [blame] | 211 | if (std::error_code ec = widenPath(to, wide_to)) |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 212 | return ec; |
Michael J. Spencer | e0c4560 | 2010-12-03 05:58:41 +0000 | [diff] [blame] | 213 | |
| 214 | if (!::CreateHardLinkW(wide_from.begin(), wide_to.begin(), NULL)) |
Michael J. Spencer | 66a1f86 | 2010-12-04 18:45:32 +0000 | [diff] [blame] | 215 | return windows_error(::GetLastError()); |
Michael J. Spencer | e0c4560 | 2010-12-03 05:58:41 +0000 | [diff] [blame] | 216 | |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 217 | return std::error_code(); |
Michael J. Spencer | e0c4560 | 2010-12-03 05:58:41 +0000 | [diff] [blame] | 218 | } |
| 219 | |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 220 | std::error_code remove(const Twine &path, bool IgnoreNonExisting) { |
Michael J. Spencer | 6e74e11 | 2010-12-03 17:53:43 +0000 | [diff] [blame] | 221 | SmallVector<wchar_t, 128> path_utf16; |
| 222 | |
Rafael Espindola | 5c20ac0 | 2014-02-23 13:56:14 +0000 | [diff] [blame] | 223 | file_status ST; |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 224 | if (std::error_code EC = status(path, ST)) { |
Rafael Espindola | 2a826e4 | 2014-06-13 17:20:48 +0000 | [diff] [blame] | 225 | if (EC != errc::no_such_file_or_directory || !IgnoreNonExisting) |
Rafael Espindola | 5c20ac0 | 2014-02-23 13:56:14 +0000 | [diff] [blame] | 226 | return EC; |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 227 | return std::error_code(); |
Rafael Espindola | 107b74c | 2013-07-31 00:10:25 +0000 | [diff] [blame] | 228 | } |
Michael J. Spencer | 153749b | 2011-01-05 16:39:22 +0000 | [diff] [blame] | 229 | |
Paul Robinson | d9c4a9a | 2014-11-13 00:12:14 +0000 | [diff] [blame] | 230 | if (std::error_code ec = widenPath(path, path_utf16)) |
Michael J. Spencer | 6e74e11 | 2010-12-03 17:53:43 +0000 | [diff] [blame] | 231 | return ec; |
| 232 | |
Rafael Espindola | 5c20ac0 | 2014-02-23 13:56:14 +0000 | [diff] [blame] | 233 | if (ST.type() == file_type::directory_file) { |
Michael J. Spencer | 153749b | 2011-01-05 16:39:22 +0000 | [diff] [blame] | 234 | if (!::RemoveDirectoryW(c_str(path_utf16))) { |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 235 | std::error_code EC = windows_error(::GetLastError()); |
Rafael Espindola | 2a826e4 | 2014-06-13 17:20:48 +0000 | [diff] [blame] | 236 | if (EC != errc::no_such_file_or_directory || !IgnoreNonExisting) |
Rafael Espindola | 5c20ac0 | 2014-02-23 13:56:14 +0000 | [diff] [blame] | 237 | return EC; |
| 238 | } |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 239 | return std::error_code(); |
Michael J. Spencer | 153749b | 2011-01-05 16:39:22 +0000 | [diff] [blame] | 240 | } |
Rafael Espindola | 5c20ac0 | 2014-02-23 13:56:14 +0000 | [diff] [blame] | 241 | if (!::DeleteFileW(c_str(path_utf16))) { |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 242 | std::error_code EC = windows_error(::GetLastError()); |
Rafael Espindola | 2a826e4 | 2014-06-13 17:20:48 +0000 | [diff] [blame] | 243 | if (EC != errc::no_such_file_or_directory || !IgnoreNonExisting) |
Rafael Espindola | 5c20ac0 | 2014-02-23 13:56:14 +0000 | [diff] [blame] | 244 | return EC; |
| 245 | } |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 246 | return std::error_code(); |
Michael J. Spencer | 6e74e11 | 2010-12-03 17:53:43 +0000 | [diff] [blame] | 247 | } |
| 248 | |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 249 | std::error_code rename(const Twine &from, const Twine &to) { |
Michael J. Spencer | 409f556 | 2010-12-03 17:53:55 +0000 | [diff] [blame] | 250 | // Convert to utf-16. |
| 251 | SmallVector<wchar_t, 128> wide_from; |
| 252 | SmallVector<wchar_t, 128> wide_to; |
Paul Robinson | d9c4a9a | 2014-11-13 00:12:14 +0000 | [diff] [blame] | 253 | if (std::error_code ec = widenPath(from, wide_from)) |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 254 | return ec; |
Paul Robinson | d9c4a9a | 2014-11-13 00:12:14 +0000 | [diff] [blame] | 255 | if (std::error_code ec = widenPath(to, wide_to)) |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 256 | return ec; |
Michael J. Spencer | 409f556 | 2010-12-03 17:53:55 +0000 | [diff] [blame] | 257 | |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 258 | std::error_code ec = std::error_code(); |
NAKAMURA Takumi | 3b7f995 | 2012-05-08 14:31:46 +0000 | [diff] [blame] | 259 | for (int i = 0; i < 2000; i++) { |
| 260 | if (::MoveFileExW(wide_from.begin(), wide_to.begin(), |
| 261 | MOVEFILE_COPY_ALLOWED | MOVEFILE_REPLACE_EXISTING)) |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 262 | return std::error_code(); |
Rafael Espindola | a813d60 | 2014-06-11 03:58:34 +0000 | [diff] [blame] | 263 | DWORD LastError = ::GetLastError(); |
| 264 | if (LastError != ERROR_ACCESS_DENIED) |
NAKAMURA Takumi | 3b7f995 | 2012-05-08 14:31:46 +0000 | [diff] [blame] | 265 | break; |
| 266 | // Retry MoveFile() at ACCESS_DENIED. |
| 267 | // System scanners (eg. indexer) might open the source file when |
| 268 | // It is written and closed. |
| 269 | ::Sleep(1); |
| 270 | } |
Michael J. Spencer | 409f556 | 2010-12-03 17:53:55 +0000 | [diff] [blame] | 271 | |
NAKAMURA Takumi | 3b7f995 | 2012-05-08 14:31:46 +0000 | [diff] [blame] | 272 | return ec; |
Michael J. Spencer | 409f556 | 2010-12-03 17:53:55 +0000 | [diff] [blame] | 273 | } |
| 274 | |
Rafael Espindola | 59aaa6c | 2014-12-12 17:55:12 +0000 | [diff] [blame] | 275 | std::error_code resize_file(int FD, uint64_t Size) { |
Michael J. Spencer | ca242f2 | 2010-12-03 18:48:56 +0000 | [diff] [blame] | 276 | #ifdef HAVE__CHSIZE_S |
Rafael Espindola | 59aaa6c | 2014-12-12 17:55:12 +0000 | [diff] [blame] | 277 | errno_t error = ::_chsize_s(FD, Size); |
Michael J. Spencer | ca242f2 | 2010-12-03 18:48:56 +0000 | [diff] [blame] | 278 | #else |
Rafael Espindola | 59aaa6c | 2014-12-12 17:55:12 +0000 | [diff] [blame] | 279 | errno_t error = ::_chsize(FD, Size); |
Michael J. Spencer | ca242f2 | 2010-12-03 18:48:56 +0000 | [diff] [blame] | 280 | #endif |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 281 | return std::error_code(error, std::generic_category()); |
Michael J. Spencer | c20a032 | 2010-12-03 17:54:07 +0000 | [diff] [blame] | 282 | } |
| 283 | |
Rafael Espindola | 281f23a | 2014-09-11 20:30:02 +0000 | [diff] [blame] | 284 | std::error_code access(const Twine &Path, AccessMode Mode) { |
Rafael Espindola | 281f23a | 2014-09-11 20:30:02 +0000 | [diff] [blame] | 285 | SmallVector<wchar_t, 128> PathUtf16; |
Michael J. Spencer | 4571040 | 2010-12-03 01:21:28 +0000 | [diff] [blame] | 286 | |
Paul Robinson | d9c4a9a | 2014-11-13 00:12:14 +0000 | [diff] [blame] | 287 | if (std::error_code EC = widenPath(Path, PathUtf16)) |
Rafael Espindola | 281f23a | 2014-09-11 20:30:02 +0000 | [diff] [blame] | 288 | return EC; |
Michael J. Spencer | 4571040 | 2010-12-03 01:21:28 +0000 | [diff] [blame] | 289 | |
Rafael Espindola | 281f23a | 2014-09-11 20:30:02 +0000 | [diff] [blame] | 290 | DWORD Attributes = ::GetFileAttributesW(PathUtf16.begin()); |
Michael J. Spencer | 4571040 | 2010-12-03 01:21:28 +0000 | [diff] [blame] | 291 | |
Rafael Espindola | 281f23a | 2014-09-11 20:30:02 +0000 | [diff] [blame] | 292 | if (Attributes == INVALID_FILE_ATTRIBUTES) { |
Michael J. Spencer | 4571040 | 2010-12-03 01:21:28 +0000 | [diff] [blame] | 293 | // See if the file didn't actually exist. |
Rafael Espindola | a813d60 | 2014-06-11 03:58:34 +0000 | [diff] [blame] | 294 | DWORD LastError = ::GetLastError(); |
| 295 | if (LastError != ERROR_FILE_NOT_FOUND && |
| 296 | LastError != ERROR_PATH_NOT_FOUND) |
| 297 | return windows_error(LastError); |
Rafael Espindola | 281f23a | 2014-09-11 20:30:02 +0000 | [diff] [blame] | 298 | return errc::no_such_file_or_directory; |
| 299 | } |
| 300 | |
| 301 | if (Mode == AccessMode::Write && (Attributes & FILE_ATTRIBUTE_READONLY)) |
| 302 | return errc::permission_denied; |
| 303 | |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 304 | return std::error_code(); |
Michael J. Spencer | 4571040 | 2010-12-03 01:21:28 +0000 | [diff] [blame] | 305 | } |
| 306 | |
Michael J. Spencer | 203d780 | 2011-12-12 06:04:28 +0000 | [diff] [blame] | 307 | bool equivalent(file_status A, file_status B) { |
| 308 | assert(status_known(A) && status_known(B)); |
| 309 | return A.FileIndexHigh == B.FileIndexHigh && |
| 310 | A.FileIndexLow == B.FileIndexLow && |
| 311 | A.FileSizeHigh == B.FileSizeHigh && |
| 312 | A.FileSizeLow == B.FileSizeLow && |
| 313 | A.LastWriteTimeHigh == B.LastWriteTimeHigh && |
| 314 | A.LastWriteTimeLow == B.LastWriteTimeLow && |
| 315 | A.VolumeSerialNumber == B.VolumeSerialNumber; |
| 316 | } |
| 317 | |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 318 | std::error_code equivalent(const Twine &A, const Twine &B, bool &result) { |
Michael J. Spencer | 203d780 | 2011-12-12 06:04:28 +0000 | [diff] [blame] | 319 | file_status fsA, fsB; |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 320 | if (std::error_code ec = status(A, fsA)) |
| 321 | return ec; |
| 322 | if (std::error_code ec = status(B, fsB)) |
| 323 | return ec; |
Michael J. Spencer | 203d780 | 2011-12-12 06:04:28 +0000 | [diff] [blame] | 324 | result = equivalent(fsA, fsB); |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 325 | return std::error_code(); |
Michael J. Spencer | 376d387 | 2010-12-03 18:49:13 +0000 | [diff] [blame] | 326 | } |
| 327 | |
Benjamin Kramer | 58994ec | 2011-08-20 21:36:38 +0000 | [diff] [blame] | 328 | static bool isReservedName(StringRef path) { |
| 329 | // This list of reserved names comes from MSDN, at: |
| 330 | // http://msdn.microsoft.com/en-us/library/aa365247%28v=vs.85%29.aspx |
| 331 | static const char *sReservedNames[] = { "nul", "con", "prn", "aux", |
| 332 | "com1", "com2", "com3", "com4", "com5", "com6", |
| 333 | "com7", "com8", "com9", "lpt1", "lpt2", "lpt3", |
| 334 | "lpt4", "lpt5", "lpt6", "lpt7", "lpt8", "lpt9" }; |
| 335 | |
| 336 | // First, check to see if this is a device namespace, which always |
| 337 | // starts with \\.\, since device namespaces are not legal file paths. |
| 338 | if (path.startswith("\\\\.\\")) |
| 339 | return true; |
| 340 | |
| 341 | // Then compare against the list of ancient reserved names |
Craig Topper | 5871321 | 2013-07-15 04:27:47 +0000 | [diff] [blame] | 342 | for (size_t i = 0; i < array_lengthof(sReservedNames); ++i) { |
Benjamin Kramer | 58994ec | 2011-08-20 21:36:38 +0000 | [diff] [blame] | 343 | if (path.equals_lower(sReservedNames[i])) |
| 344 | return true; |
| 345 | } |
| 346 | |
| 347 | // The path isn't what we consider reserved. |
| 348 | return false; |
| 349 | } |
| 350 | |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 351 | static std::error_code getStatus(HANDLE FileHandle, file_status &Result) { |
Rafael Espindola | 77021c9 | 2013-07-16 03:20:13 +0000 | [diff] [blame] | 352 | if (FileHandle == INVALID_HANDLE_VALUE) |
| 353 | goto handle_status_error; |
| 354 | |
NAKAMURA Takumi | 8b01da4 | 2013-07-18 17:00:54 +0000 | [diff] [blame] | 355 | switch (::GetFileType(FileHandle)) { |
| 356 | default: |
Rafael Espindola | 81177c5 | 2013-07-18 18:42:52 +0000 | [diff] [blame] | 357 | llvm_unreachable("Don't know anything about this file type"); |
| 358 | case FILE_TYPE_UNKNOWN: { |
| 359 | DWORD Err = ::GetLastError(); |
| 360 | if (Err != NO_ERROR) |
| 361 | return windows_error(Err); |
| 362 | Result = file_status(file_type::type_unknown); |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 363 | return std::error_code(); |
Rafael Espindola | 81177c5 | 2013-07-18 18:42:52 +0000 | [diff] [blame] | 364 | } |
NAKAMURA Takumi | 8b01da4 | 2013-07-18 17:00:54 +0000 | [diff] [blame] | 365 | case FILE_TYPE_DISK: |
| 366 | break; |
| 367 | case FILE_TYPE_CHAR: |
| 368 | Result = file_status(file_type::character_file); |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 369 | return std::error_code(); |
NAKAMURA Takumi | 8b01da4 | 2013-07-18 17:00:54 +0000 | [diff] [blame] | 370 | case FILE_TYPE_PIPE: |
| 371 | Result = file_status(file_type::fifo_file); |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 372 | return std::error_code(); |
NAKAMURA Takumi | 8b01da4 | 2013-07-18 17:00:54 +0000 | [diff] [blame] | 373 | } |
| 374 | |
Rafael Espindola | 77021c9 | 2013-07-16 03:20:13 +0000 | [diff] [blame] | 375 | BY_HANDLE_FILE_INFORMATION Info; |
| 376 | if (!::GetFileInformationByHandle(FileHandle, &Info)) |
| 377 | goto handle_status_error; |
| 378 | |
Rafael Espindola | a5932af | 2013-07-30 20:25:53 +0000 | [diff] [blame] | 379 | { |
| 380 | file_type Type = (Info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) |
| 381 | ? file_type::directory_file |
| 382 | : file_type::regular_file; |
| 383 | Result = |
| 384 | file_status(Type, Info.ftLastWriteTime.dwHighDateTime, |
| 385 | Info.ftLastWriteTime.dwLowDateTime, |
| 386 | Info.dwVolumeSerialNumber, Info.nFileSizeHigh, |
| 387 | Info.nFileSizeLow, Info.nFileIndexHigh, Info.nFileIndexLow); |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 388 | return std::error_code(); |
Rafael Espindola | a5932af | 2013-07-30 20:25:53 +0000 | [diff] [blame] | 389 | } |
Rafael Espindola | 77021c9 | 2013-07-16 03:20:13 +0000 | [diff] [blame] | 390 | |
| 391 | handle_status_error: |
Rafael Espindola | a813d60 | 2014-06-11 03:58:34 +0000 | [diff] [blame] | 392 | DWORD LastError = ::GetLastError(); |
| 393 | if (LastError == ERROR_FILE_NOT_FOUND || |
| 394 | LastError == ERROR_PATH_NOT_FOUND) |
Rafael Espindola | 77021c9 | 2013-07-16 03:20:13 +0000 | [diff] [blame] | 395 | Result = file_status(file_type::file_not_found); |
Rafael Espindola | a813d60 | 2014-06-11 03:58:34 +0000 | [diff] [blame] | 396 | else if (LastError == ERROR_SHARING_VIOLATION) |
Rafael Espindola | 77021c9 | 2013-07-16 03:20:13 +0000 | [diff] [blame] | 397 | Result = file_status(file_type::type_unknown); |
Rafael Espindola | 107b74c | 2013-07-31 00:10:25 +0000 | [diff] [blame] | 398 | else |
Rafael Espindola | 77021c9 | 2013-07-16 03:20:13 +0000 | [diff] [blame] | 399 | Result = file_status(file_type::status_error); |
Rafael Espindola | a813d60 | 2014-06-11 03:58:34 +0000 | [diff] [blame] | 400 | return windows_error(LastError); |
Rafael Espindola | 77021c9 | 2013-07-16 03:20:13 +0000 | [diff] [blame] | 401 | } |
| 402 | |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 403 | std::error_code status(const Twine &path, file_status &result) { |
Michael J. Spencer | db5576a | 2010-12-04 00:32:40 +0000 | [diff] [blame] | 404 | SmallString<128> path_storage; |
| 405 | SmallVector<wchar_t, 128> path_utf16; |
| 406 | |
NAKAMURA Takumi | a3d4749 | 2011-03-16 02:53:32 +0000 | [diff] [blame] | 407 | StringRef path8 = path.toStringRef(path_storage); |
Benjamin Kramer | 58994ec | 2011-08-20 21:36:38 +0000 | [diff] [blame] | 408 | if (isReservedName(path8)) { |
NAKAMURA Takumi | a3d4749 | 2011-03-16 02:53:32 +0000 | [diff] [blame] | 409 | result = file_status(file_type::character_file); |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 410 | return std::error_code(); |
NAKAMURA Takumi | a3d4749 | 2011-03-16 02:53:32 +0000 | [diff] [blame] | 411 | } |
| 412 | |
Paul Robinson | d9c4a9a | 2014-11-13 00:12:14 +0000 | [diff] [blame] | 413 | if (std::error_code ec = widenPath(path8, path_utf16)) |
Michael J. Spencer | db5576a | 2010-12-04 00:32:40 +0000 | [diff] [blame] | 414 | return ec; |
| 415 | |
| 416 | DWORD attr = ::GetFileAttributesW(path_utf16.begin()); |
| 417 | if (attr == INVALID_FILE_ATTRIBUTES) |
Rafael Espindola | 77021c9 | 2013-07-16 03:20:13 +0000 | [diff] [blame] | 418 | return getStatus(INVALID_HANDLE_VALUE, result); |
Michael J. Spencer | db5576a | 2010-12-04 00:32:40 +0000 | [diff] [blame] | 419 | |
| 420 | // Handle reparse points. |
| 421 | if (attr & FILE_ATTRIBUTE_REPARSE_POINT) { |
Michael J. Spencer | 513f1b6 | 2011-12-12 06:03:33 +0000 | [diff] [blame] | 422 | ScopedFileHandle h( |
Michael J. Spencer | db5576a | 2010-12-04 00:32:40 +0000 | [diff] [blame] | 423 | ::CreateFileW(path_utf16.begin(), |
| 424 | 0, // Attributes only. |
| 425 | FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE, |
| 426 | NULL, |
| 427 | OPEN_EXISTING, |
| 428 | FILE_FLAG_BACKUP_SEMANTICS, |
| 429 | 0)); |
Michael J. Spencer | 513f1b6 | 2011-12-12 06:03:33 +0000 | [diff] [blame] | 430 | if (!h) |
Rafael Espindola | 77021c9 | 2013-07-16 03:20:13 +0000 | [diff] [blame] | 431 | return getStatus(INVALID_HANDLE_VALUE, result); |
Michael J. Spencer | db5576a | 2010-12-04 00:32:40 +0000 | [diff] [blame] | 432 | } |
| 433 | |
Rafael Espindola | a5932af | 2013-07-30 20:25:53 +0000 | [diff] [blame] | 434 | ScopedFileHandle h( |
| 435 | ::CreateFileW(path_utf16.begin(), 0, // Attributes only. |
Michael J. Spencer | 203d780 | 2011-12-12 06:04:28 +0000 | [diff] [blame] | 436 | FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE, |
Rafael Espindola | a5932af | 2013-07-30 20:25:53 +0000 | [diff] [blame] | 437 | NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, 0)); |
Michael J. Spencer | 203d780 | 2011-12-12 06:04:28 +0000 | [diff] [blame] | 438 | if (!h) |
Rafael Espindola | 77021c9 | 2013-07-16 03:20:13 +0000 | [diff] [blame] | 439 | return getStatus(INVALID_HANDLE_VALUE, result); |
Michael J. Spencer | db5576a | 2010-12-04 00:32:40 +0000 | [diff] [blame] | 440 | |
Rafael Espindola | 77021c9 | 2013-07-16 03:20:13 +0000 | [diff] [blame] | 441 | return getStatus(h, result); |
Rafael Espindola | 77021c9 | 2013-07-16 03:20:13 +0000 | [diff] [blame] | 442 | } |
Michael J. Spencer | db5576a | 2010-12-04 00:32:40 +0000 | [diff] [blame] | 443 | |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 444 | std::error_code status(int FD, file_status &Result) { |
Rafael Espindola | 77021c9 | 2013-07-16 03:20:13 +0000 | [diff] [blame] | 445 | HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD)); |
| 446 | return getStatus(FileHandle, Result); |
Michael J. Spencer | db5576a | 2010-12-04 00:32:40 +0000 | [diff] [blame] | 447 | } |
| 448 | |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 449 | std::error_code setLastModificationAndAccessTime(int FD, TimeValue Time) { |
Rafael Espindola | 4a3365c | 2013-06-20 20:56:14 +0000 | [diff] [blame] | 450 | ULARGE_INTEGER UI; |
| 451 | UI.QuadPart = Time.toWin32Time(); |
| 452 | FILETIME FT; |
| 453 | FT.dwLowDateTime = UI.LowPart; |
| 454 | FT.dwHighDateTime = UI.HighPart; |
| 455 | HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD)); |
| 456 | if (!SetFileTime(FileHandle, NULL, &FT, &FT)) |
| 457 | return windows_error(::GetLastError()); |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 458 | return std::error_code(); |
Rafael Espindola | 4a3365c | 2013-06-20 20:56:14 +0000 | [diff] [blame] | 459 | } |
Nick Kledzik | 18497e9 | 2012-06-20 00:28:54 +0000 | [diff] [blame] | 460 | |
Rafael Espindola | 7eb1f18 | 2014-12-11 20:12:55 +0000 | [diff] [blame] | 461 | std::error_code mapped_file_region::init(int FD, uint64_t Offset, |
| 462 | mapmode Mode) { |
Michael J. Spencer | ef2284f | 2012-08-15 19:05:47 +0000 | [diff] [blame] | 463 | // Make sure that the requested size fits within SIZE_T. |
Rafael Espindola | 986f5ad | 2014-12-16 02:19:26 +0000 | [diff] [blame] | 464 | if (Size > std::numeric_limits<SIZE_T>::max()) |
Rafael Espindola | 2a826e4 | 2014-06-13 17:20:48 +0000 | [diff] [blame] | 465 | return make_error_code(errc::invalid_argument); |
Michael J. Spencer | ef2284f | 2012-08-15 19:05:47 +0000 | [diff] [blame] | 466 | |
| 467 | DWORD flprotect; |
| 468 | switch (Mode) { |
| 469 | case readonly: flprotect = PAGE_READONLY; break; |
| 470 | case readwrite: flprotect = PAGE_READWRITE; break; |
| 471 | case priv: flprotect = PAGE_WRITECOPY; break; |
Michael J. Spencer | ef2284f | 2012-08-15 19:05:47 +0000 | [diff] [blame] | 472 | } |
| 473 | |
Rafael Espindola | 369d514 | 2014-12-16 02:53:35 +0000 | [diff] [blame^] | 474 | HANDLE FileMappingHandle = |
David Majnemer | 17a4496 | 2013-10-07 09:52:36 +0000 | [diff] [blame] | 475 | ::CreateFileMappingW(FileHandle, 0, flprotect, |
| 476 | (Offset + Size) >> 32, |
| 477 | (Offset + Size) & 0xffffffff, |
| 478 | 0); |
Michael J. Spencer | ef2284f | 2012-08-15 19:05:47 +0000 | [diff] [blame] | 479 | if (FileMappingHandle == NULL) { |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 480 | std::error_code ec = windows_error(GetLastError()); |
Michael J. Spencer | ef2284f | 2012-08-15 19:05:47 +0000 | [diff] [blame] | 481 | return ec; |
| 482 | } |
| 483 | |
| 484 | DWORD dwDesiredAccess; |
| 485 | switch (Mode) { |
| 486 | case readonly: dwDesiredAccess = FILE_MAP_READ; break; |
| 487 | case readwrite: dwDesiredAccess = FILE_MAP_WRITE; break; |
| 488 | case priv: dwDesiredAccess = FILE_MAP_COPY; break; |
Michael J. Spencer | ef2284f | 2012-08-15 19:05:47 +0000 | [diff] [blame] | 489 | } |
| 490 | Mapping = ::MapViewOfFile(FileMappingHandle, |
| 491 | dwDesiredAccess, |
| 492 | Offset >> 32, |
| 493 | Offset & 0xffffffff, |
| 494 | Size); |
| 495 | if (Mapping == NULL) { |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 496 | std::error_code ec = windows_error(GetLastError()); |
Michael J. Spencer | ef2284f | 2012-08-15 19:05:47 +0000 | [diff] [blame] | 497 | ::CloseHandle(FileMappingHandle); |
Michael J. Spencer | ef2284f | 2012-08-15 19:05:47 +0000 | [diff] [blame] | 498 | return ec; |
| 499 | } |
| 500 | |
| 501 | if (Size == 0) { |
| 502 | MEMORY_BASIC_INFORMATION mbi; |
| 503 | SIZE_T Result = VirtualQuery(Mapping, &mbi, sizeof(mbi)); |
| 504 | if (Result == 0) { |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 505 | std::error_code ec = windows_error(GetLastError()); |
Michael J. Spencer | ef2284f | 2012-08-15 19:05:47 +0000 | [diff] [blame] | 506 | ::UnmapViewOfFile(Mapping); |
| 507 | ::CloseHandle(FileMappingHandle); |
Michael J. Spencer | ef2284f | 2012-08-15 19:05:47 +0000 | [diff] [blame] | 508 | return ec; |
| 509 | } |
| 510 | Size = mbi.RegionSize; |
| 511 | } |
Michael J. Spencer | 42ad29f | 2013-03-14 00:20:10 +0000 | [diff] [blame] | 512 | |
| 513 | // Close all the handles except for the view. It will keep the other handles |
| 514 | // alive. |
| 515 | ::CloseHandle(FileMappingHandle); |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 516 | return std::error_code(); |
Michael J. Spencer | ef2284f | 2012-08-15 19:05:47 +0000 | [diff] [blame] | 517 | } |
| 518 | |
Rafael Espindola | 7eb1f18 | 2014-12-11 20:12:55 +0000 | [diff] [blame] | 519 | mapped_file_region::mapped_file_region(int fd, mapmode mode, uint64_t length, |
| 520 | uint64_t offset, std::error_code &ec) |
Rafael Espindola | 986f5ad | 2014-12-16 02:19:26 +0000 | [diff] [blame] | 521 | : Size(length), Mapping(), |
Rafael Espindola | 369d514 | 2014-12-16 02:53:35 +0000 | [diff] [blame^] | 522 | FileHandle(INVALID_HANDLE_VALUE) { |
Michael J. Spencer | ef2284f | 2012-08-15 19:05:47 +0000 | [diff] [blame] | 523 | FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(fd)); |
| 524 | if (FileHandle == INVALID_HANDLE_VALUE) { |
Rafael Espindola | 2a826e4 | 2014-06-13 17:20:48 +0000 | [diff] [blame] | 525 | ec = make_error_code(errc::bad_file_descriptor); |
Michael J. Spencer | ef2284f | 2012-08-15 19:05:47 +0000 | [diff] [blame] | 526 | return; |
| 527 | } |
| 528 | |
Rafael Espindola | 986f5ad | 2014-12-16 02:19:26 +0000 | [diff] [blame] | 529 | ec = init(fd, offset, mode); |
Michael J. Spencer | ef2284f | 2012-08-15 19:05:47 +0000 | [diff] [blame] | 530 | if (ec) { |
Rafael Espindola | 369d514 | 2014-12-16 02:53:35 +0000 | [diff] [blame^] | 531 | Mapping = 0; |
Michael J. Spencer | ef2284f | 2012-08-15 19:05:47 +0000 | [diff] [blame] | 532 | FileHandle = INVALID_HANDLE_VALUE; |
Michael J. Spencer | ef2284f | 2012-08-15 19:05:47 +0000 | [diff] [blame] | 533 | } |
| 534 | } |
| 535 | |
| 536 | mapped_file_region::~mapped_file_region() { |
| 537 | if (Mapping) |
| 538 | ::UnmapViewOfFile(Mapping); |
Michael J. Spencer | ef2284f | 2012-08-15 19:05:47 +0000 | [diff] [blame] | 539 | } |
| 540 | |
Michael J. Spencer | ef2284f | 2012-08-15 19:05:47 +0000 | [diff] [blame] | 541 | uint64_t mapped_file_region::size() const { |
| 542 | assert(Mapping && "Mapping failed but used anyway!"); |
| 543 | return Size; |
| 544 | } |
| 545 | |
| 546 | char *mapped_file_region::data() const { |
Michael J. Spencer | ef2284f | 2012-08-15 19:05:47 +0000 | [diff] [blame] | 547 | assert(Mapping && "Mapping failed but used anyway!"); |
| 548 | return reinterpret_cast<char*>(Mapping); |
| 549 | } |
| 550 | |
| 551 | const char *mapped_file_region::const_data() const { |
| 552 | assert(Mapping && "Mapping failed but used anyway!"); |
| 553 | return reinterpret_cast<const char*>(Mapping); |
| 554 | } |
| 555 | |
| 556 | int mapped_file_region::alignment() { |
| 557 | SYSTEM_INFO SysInfo; |
| 558 | ::GetSystemInfo(&SysInfo); |
| 559 | return SysInfo.dwAllocationGranularity; |
| 560 | } |
| 561 | |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 562 | std::error_code detail::directory_iterator_construct(detail::DirIterState &it, |
Michael J. Spencer | 0a7625d | 2011-12-08 22:50:09 +0000 | [diff] [blame] | 563 | StringRef path){ |
Michael J. Spencer | 7ecd94c | 2010-12-06 04:28:42 +0000 | [diff] [blame] | 564 | SmallVector<wchar_t, 128> path_utf16; |
| 565 | |
Paul Robinson | d9c4a9a | 2014-11-13 00:12:14 +0000 | [diff] [blame] | 566 | if (std::error_code ec = widenPath(path, path_utf16)) |
Michael J. Spencer | 7ecd94c | 2010-12-06 04:28:42 +0000 | [diff] [blame] | 567 | return ec; |
| 568 | |
| 569 | // Convert path to the format that Windows is happy with. |
| 570 | if (path_utf16.size() > 0 && |
| 571 | !is_separator(path_utf16[path.size() - 1]) && |
| 572 | path_utf16[path.size() - 1] != L':') { |
| 573 | path_utf16.push_back(L'\\'); |
| 574 | path_utf16.push_back(L'*'); |
| 575 | } else { |
| 576 | path_utf16.push_back(L'*'); |
| 577 | } |
| 578 | |
| 579 | // Get the first directory entry. |
| 580 | WIN32_FIND_DATAW FirstFind; |
Michael J. Spencer | 751e9aa | 2010-12-09 17:37:18 +0000 | [diff] [blame] | 581 | ScopedFindHandle FindHandle(::FindFirstFileW(c_str(path_utf16), &FirstFind)); |
Michael J. Spencer | 7ecd94c | 2010-12-06 04:28:42 +0000 | [diff] [blame] | 582 | if (!FindHandle) |
| 583 | return windows_error(::GetLastError()); |
| 584 | |
Michael J. Spencer | 98879d7 | 2011-01-05 16:39:30 +0000 | [diff] [blame] | 585 | size_t FilenameLen = ::wcslen(FirstFind.cFileName); |
| 586 | while ((FilenameLen == 1 && FirstFind.cFileName[0] == L'.') || |
| 587 | (FilenameLen == 2 && FirstFind.cFileName[0] == L'.' && |
| 588 | FirstFind.cFileName[1] == L'.')) |
| 589 | if (!::FindNextFileW(FindHandle, &FirstFind)) { |
Rafael Espindola | a813d60 | 2014-06-11 03:58:34 +0000 | [diff] [blame] | 590 | DWORD LastError = ::GetLastError(); |
Michael J. Spencer | 98879d7 | 2011-01-05 16:39:30 +0000 | [diff] [blame] | 591 | // Check for end. |
Rafael Espindola | a813d60 | 2014-06-11 03:58:34 +0000 | [diff] [blame] | 592 | if (LastError == ERROR_NO_MORE_FILES) |
Michael J. Spencer | 0a7625d | 2011-12-08 22:50:09 +0000 | [diff] [blame] | 593 | return detail::directory_iterator_destruct(it); |
Rafael Espindola | a813d60 | 2014-06-11 03:58:34 +0000 | [diff] [blame] | 594 | return windows_error(LastError); |
Michael J. Spencer | 98879d7 | 2011-01-05 16:39:30 +0000 | [diff] [blame] | 595 | } else |
| 596 | FilenameLen = ::wcslen(FirstFind.cFileName); |
| 597 | |
Michael J. Spencer | 7ecd94c | 2010-12-06 04:28:42 +0000 | [diff] [blame] | 598 | // Construct the current directory entry. |
Michael J. Spencer | 98879d7 | 2011-01-05 16:39:30 +0000 | [diff] [blame] | 599 | SmallString<128> directory_entry_name_utf8; |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 600 | if (std::error_code ec = |
| 601 | UTF16ToUTF8(FirstFind.cFileName, ::wcslen(FirstFind.cFileName), |
| 602 | directory_entry_name_utf8)) |
Michael J. Spencer | 7ecd94c | 2010-12-06 04:28:42 +0000 | [diff] [blame] | 603 | return ec; |
| 604 | |
| 605 | it.IterationHandle = intptr_t(FindHandle.take()); |
Michael J. Spencer | 98879d7 | 2011-01-05 16:39:30 +0000 | [diff] [blame] | 606 | SmallString<128> directory_entry_path(path); |
| 607 | path::append(directory_entry_path, directory_entry_name_utf8.str()); |
| 608 | it.CurrentEntry = directory_entry(directory_entry_path.str()); |
Michael J. Spencer | 7ecd94c | 2010-12-06 04:28:42 +0000 | [diff] [blame] | 609 | |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 610 | return std::error_code(); |
Michael J. Spencer | 7ecd94c | 2010-12-06 04:28:42 +0000 | [diff] [blame] | 611 | } |
| 612 | |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 613 | std::error_code detail::directory_iterator_destruct(detail::DirIterState &it) { |
Michael J. Spencer | 7ecd94c | 2010-12-06 04:28:42 +0000 | [diff] [blame] | 614 | if (it.IterationHandle != 0) |
| 615 | // Closes the handle if it's valid. |
| 616 | ScopedFindHandle close(HANDLE(it.IterationHandle)); |
| 617 | it.IterationHandle = 0; |
| 618 | it.CurrentEntry = directory_entry(); |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 619 | return std::error_code(); |
Michael J. Spencer | 7ecd94c | 2010-12-06 04:28:42 +0000 | [diff] [blame] | 620 | } |
| 621 | |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 622 | std::error_code detail::directory_iterator_increment(detail::DirIterState &it) { |
Michael J. Spencer | 7ecd94c | 2010-12-06 04:28:42 +0000 | [diff] [blame] | 623 | WIN32_FIND_DATAW FindData; |
| 624 | if (!::FindNextFileW(HANDLE(it.IterationHandle), &FindData)) { |
Rafael Espindola | a813d60 | 2014-06-11 03:58:34 +0000 | [diff] [blame] | 625 | DWORD LastError = ::GetLastError(); |
Michael J. Spencer | 7ecd94c | 2010-12-06 04:28:42 +0000 | [diff] [blame] | 626 | // Check for end. |
Rafael Espindola | a813d60 | 2014-06-11 03:58:34 +0000 | [diff] [blame] | 627 | if (LastError == ERROR_NO_MORE_FILES) |
Michael J. Spencer | 0a7625d | 2011-12-08 22:50:09 +0000 | [diff] [blame] | 628 | return detail::directory_iterator_destruct(it); |
Rafael Espindola | a813d60 | 2014-06-11 03:58:34 +0000 | [diff] [blame] | 629 | return windows_error(LastError); |
Michael J. Spencer | 7ecd94c | 2010-12-06 04:28:42 +0000 | [diff] [blame] | 630 | } |
| 631 | |
Michael J. Spencer | 98879d7 | 2011-01-05 16:39:30 +0000 | [diff] [blame] | 632 | size_t FilenameLen = ::wcslen(FindData.cFileName); |
| 633 | if ((FilenameLen == 1 && FindData.cFileName[0] == L'.') || |
| 634 | (FilenameLen == 2 && FindData.cFileName[0] == L'.' && |
| 635 | FindData.cFileName[1] == L'.')) |
| 636 | return directory_iterator_increment(it); |
| 637 | |
Michael J. Spencer | 7ecd94c | 2010-12-06 04:28:42 +0000 | [diff] [blame] | 638 | SmallString<128> directory_entry_path_utf8; |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 639 | if (std::error_code ec = |
| 640 | UTF16ToUTF8(FindData.cFileName, ::wcslen(FindData.cFileName), |
| 641 | directory_entry_path_utf8)) |
Michael J. Spencer | 7ecd94c | 2010-12-06 04:28:42 +0000 | [diff] [blame] | 642 | return ec; |
| 643 | |
| 644 | it.CurrentEntry.replace_filename(Twine(directory_entry_path_utf8)); |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 645 | return std::error_code(); |
Michael J. Spencer | 7ecd94c | 2010-12-06 04:28:42 +0000 | [diff] [blame] | 646 | } |
| 647 | |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 648 | std::error_code openFileForRead(const Twine &Name, int &ResultFD) { |
Rafael Espindola | a0d9b6b | 2013-07-17 14:58:25 +0000 | [diff] [blame] | 649 | SmallVector<wchar_t, 128> PathUTF16; |
Nick Kledzik | 18497e9 | 2012-06-20 00:28:54 +0000 | [diff] [blame] | 650 | |
Paul Robinson | d9c4a9a | 2014-11-13 00:12:14 +0000 | [diff] [blame] | 651 | if (std::error_code EC = widenPath(Name, PathUTF16)) |
Rafael Espindola | a0d9b6b | 2013-07-17 14:58:25 +0000 | [diff] [blame] | 652 | return EC; |
| 653 | |
| 654 | HANDLE H = ::CreateFileW(PathUTF16.begin(), GENERIC_READ, |
Rafael Espindola | 16431fe | 2013-07-17 19:44:07 +0000 | [diff] [blame] | 655 | FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, |
Rafael Espindola | a0d9b6b | 2013-07-17 14:58:25 +0000 | [diff] [blame] | 656 | OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); |
| 657 | if (H == INVALID_HANDLE_VALUE) { |
Rafael Espindola | a813d60 | 2014-06-11 03:58:34 +0000 | [diff] [blame] | 658 | DWORD LastError = ::GetLastError(); |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 659 | std::error_code EC = windows_error(LastError); |
Rafael Espindola | 331aeba | 2013-07-17 19:58:28 +0000 | [diff] [blame] | 660 | // Provide a better error message when trying to open directories. |
Rafael Espindola | a0d9b6b | 2013-07-17 14:58:25 +0000 | [diff] [blame] | 661 | // This only runs if we failed to open the file, so there is probably |
| 662 | // no performances issues. |
Rafael Espindola | a813d60 | 2014-06-11 03:58:34 +0000 | [diff] [blame] | 663 | if (LastError != ERROR_ACCESS_DENIED) |
Rafael Espindola | a0d9b6b | 2013-07-17 14:58:25 +0000 | [diff] [blame] | 664 | return EC; |
| 665 | if (is_directory(Name)) |
Rafael Espindola | 2a826e4 | 2014-06-13 17:20:48 +0000 | [diff] [blame] | 666 | return make_error_code(errc::is_a_directory); |
Rafael Espindola | a0d9b6b | 2013-07-17 14:58:25 +0000 | [diff] [blame] | 667 | return EC; |
| 668 | } |
| 669 | |
| 670 | int FD = ::_open_osfhandle(intptr_t(H), 0); |
| 671 | if (FD == -1) { |
| 672 | ::CloseHandle(H); |
Rafael Espindola | a813d60 | 2014-06-11 03:58:34 +0000 | [diff] [blame] | 673 | return windows_error(ERROR_INVALID_HANDLE); |
Rafael Espindola | a0d9b6b | 2013-07-17 14:58:25 +0000 | [diff] [blame] | 674 | } |
| 675 | |
| 676 | ResultFD = FD; |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 677 | return std::error_code(); |
Rafael Espindola | a0d9b6b | 2013-07-17 14:58:25 +0000 | [diff] [blame] | 678 | } |
Nick Kledzik | 18497e9 | 2012-06-20 00:28:54 +0000 | [diff] [blame] | 679 | |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 680 | std::error_code openFileForWrite(const Twine &Name, int &ResultFD, |
Rafael Espindola | 67080ce | 2013-07-19 15:02:03 +0000 | [diff] [blame] | 681 | sys::fs::OpenFlags Flags, unsigned Mode) { |
| 682 | // Verify that we don't have both "append" and "excl". |
| 683 | assert((!(Flags & sys::fs::F_Excl) || !(Flags & sys::fs::F_Append)) && |
| 684 | "Cannot specify both 'excl' and 'append' file creation flags!"); |
| 685 | |
Rafael Espindola | 67080ce | 2013-07-19 15:02:03 +0000 | [diff] [blame] | 686 | SmallVector<wchar_t, 128> PathUTF16; |
| 687 | |
Paul Robinson | d9c4a9a | 2014-11-13 00:12:14 +0000 | [diff] [blame] | 688 | if (std::error_code EC = widenPath(Name, PathUTF16)) |
Rafael Espindola | 67080ce | 2013-07-19 15:02:03 +0000 | [diff] [blame] | 689 | return EC; |
| 690 | |
| 691 | DWORD CreationDisposition; |
| 692 | if (Flags & F_Excl) |
| 693 | CreationDisposition = CREATE_NEW; |
NAKAMURA Takumi | edf7615 | 2013-08-22 15:14:45 +0000 | [diff] [blame] | 694 | else if (Flags & F_Append) |
Rafael Espindola | 67080ce | 2013-07-19 15:02:03 +0000 | [diff] [blame] | 695 | CreationDisposition = OPEN_ALWAYS; |
| 696 | else |
| 697 | CreationDisposition = CREATE_ALWAYS; |
| 698 | |
Rafael Espindola | 7a0b640 | 2014-02-24 03:07:41 +0000 | [diff] [blame] | 699 | DWORD Access = GENERIC_WRITE; |
| 700 | if (Flags & F_RW) |
| 701 | Access |= GENERIC_READ; |
| 702 | |
| 703 | HANDLE H = ::CreateFileW(PathUTF16.begin(), Access, |
Rafael Espindola | 67080ce | 2013-07-19 15:02:03 +0000 | [diff] [blame] | 704 | FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, |
| 705 | CreationDisposition, FILE_ATTRIBUTE_NORMAL, NULL); |
| 706 | |
| 707 | if (H == INVALID_HANDLE_VALUE) { |
Rafael Espindola | a813d60 | 2014-06-11 03:58:34 +0000 | [diff] [blame] | 708 | DWORD LastError = ::GetLastError(); |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 709 | std::error_code EC = windows_error(LastError); |
Rafael Espindola | 67080ce | 2013-07-19 15:02:03 +0000 | [diff] [blame] | 710 | // Provide a better error message when trying to open directories. |
| 711 | // This only runs if we failed to open the file, so there is probably |
| 712 | // no performances issues. |
Rafael Espindola | a813d60 | 2014-06-11 03:58:34 +0000 | [diff] [blame] | 713 | if (LastError != ERROR_ACCESS_DENIED) |
Rafael Espindola | 67080ce | 2013-07-19 15:02:03 +0000 | [diff] [blame] | 714 | return EC; |
| 715 | if (is_directory(Name)) |
Rafael Espindola | 2a826e4 | 2014-06-13 17:20:48 +0000 | [diff] [blame] | 716 | return make_error_code(errc::is_a_directory); |
Rafael Espindola | 67080ce | 2013-07-19 15:02:03 +0000 | [diff] [blame] | 717 | return EC; |
| 718 | } |
| 719 | |
| 720 | int OpenFlags = 0; |
| 721 | if (Flags & F_Append) |
| 722 | OpenFlags |= _O_APPEND; |
| 723 | |
Rafael Espindola | 90c7f1c | 2014-02-24 18:20:12 +0000 | [diff] [blame] | 724 | if (Flags & F_Text) |
Rafael Espindola | 67080ce | 2013-07-19 15:02:03 +0000 | [diff] [blame] | 725 | OpenFlags |= _O_TEXT; |
| 726 | |
| 727 | int FD = ::_open_osfhandle(intptr_t(H), OpenFlags); |
| 728 | if (FD == -1) { |
| 729 | ::CloseHandle(H); |
Rafael Espindola | a813d60 | 2014-06-11 03:58:34 +0000 | [diff] [blame] | 730 | return windows_error(ERROR_INVALID_HANDLE); |
Rafael Espindola | 67080ce | 2013-07-19 15:02:03 +0000 | [diff] [blame] | 731 | } |
| 732 | |
| 733 | ResultFD = FD; |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 734 | return std::error_code(); |
Rafael Espindola | 67080ce | 2013-07-19 15:02:03 +0000 | [diff] [blame] | 735 | } |
Michael J. Spencer | 9fc1d9d | 2010-12-01 19:32:01 +0000 | [diff] [blame] | 736 | } // end namespace fs |
Rui Ueyama | 471d0c5 | 2013-09-10 19:45:51 +0000 | [diff] [blame] | 737 | |
Peter Collingbourne | f7d4101 | 2014-01-31 23:46:06 +0000 | [diff] [blame] | 738 | namespace path { |
| 739 | |
| 740 | bool home_directory(SmallVectorImpl<char> &result) { |
| 741 | wchar_t Path[MAX_PATH]; |
| 742 | if (::SHGetFolderPathW(0, CSIDL_APPDATA | CSIDL_FLAG_CREATE, 0, |
Peter Collingbourne | ad141ab | 2014-02-01 02:42:20 +0000 | [diff] [blame] | 743 | /*SHGFP_TYPE_CURRENT*/0, Path) != S_OK) |
Peter Collingbourne | f7d4101 | 2014-01-31 23:46:06 +0000 | [diff] [blame] | 744 | return false; |
| 745 | |
| 746 | if (UTF16ToUTF8(Path, ::wcslen(Path), result)) |
| 747 | return false; |
| 748 | |
| 749 | return true; |
| 750 | } |
| 751 | |
Rafael Espindola | 016a6d5 | 2014-08-26 14:47:52 +0000 | [diff] [blame] | 752 | static bool getTempDirEnvVar(const char *Var, SmallVectorImpl<char> &Res) { |
| 753 | SmallVector<wchar_t, 128> NameUTF16; |
| 754 | if (windows::UTF8ToUTF16(Var, NameUTF16)) |
| 755 | return false; |
| 756 | |
| 757 | SmallVector<wchar_t, 1024> Buf; |
| 758 | size_t Size = 1024; |
| 759 | do { |
| 760 | Buf.reserve(Size); |
| 761 | Size = |
| 762 | GetEnvironmentVariableW(NameUTF16.data(), Buf.data(), Buf.capacity()); |
| 763 | if (Size == 0) |
| 764 | return false; |
| 765 | |
| 766 | // Try again with larger buffer. |
| 767 | } while (Size > Buf.capacity()); |
| 768 | Buf.set_size(Size); |
| 769 | |
| 770 | if (windows::UTF16ToUTF8(Buf.data(), Size, Res)) |
| 771 | return false; |
| 772 | return true; |
| 773 | } |
| 774 | |
| 775 | static bool getTempDirEnvVar(SmallVectorImpl<char> &Res) { |
| 776 | const char *EnvironmentVariables[] = {"TMP", "TEMP", "USERPROFILE"}; |
| 777 | for (const char *Env : EnvironmentVariables) { |
| 778 | if (getTempDirEnvVar(Env, Res)) |
| 779 | return true; |
| 780 | } |
| 781 | return false; |
| 782 | } |
| 783 | |
| 784 | void system_temp_directory(bool ErasedOnReboot, SmallVectorImpl<char> &Result) { |
| 785 | (void)ErasedOnReboot; |
| 786 | Result.clear(); |
| 787 | |
| 788 | // Check whether the temporary directory is specified by an environment |
| 789 | // variable. |
| 790 | if (getTempDirEnvVar(Result)) |
| 791 | return; |
| 792 | |
| 793 | // Fall back to a system default. |
| 794 | const char *DefaultResult = "C:\\TEMP"; |
| 795 | Result.append(DefaultResult, DefaultResult + strlen(DefaultResult)); |
| 796 | } |
Peter Collingbourne | f7d4101 | 2014-01-31 23:46:06 +0000 | [diff] [blame] | 797 | } // end namespace path |
| 798 | |
Rui Ueyama | 471d0c5 | 2013-09-10 19:45:51 +0000 | [diff] [blame] | 799 | namespace windows { |
Rafael Espindola | 0a5f9cf | 2014-06-12 14:11:22 +0000 | [diff] [blame] | 800 | std::error_code UTF8ToUTF16(llvm::StringRef utf8, |
Rafael Espindola | b4ad29b | 2014-06-13 02:36:09 +0000 | [diff] [blame] | 801 | llvm::SmallVectorImpl<wchar_t> &utf16) { |
Michael J. Spencer | 7a3a510 | 2014-02-20 20:46:23 +0000 | [diff] [blame] | 802 | if (!utf8.empty()) { |
| 803 | int len = ::MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, utf8.begin(), |
| 804 | utf8.size(), utf16.begin(), 0); |
Rui Ueyama | 471d0c5 | 2013-09-10 19:45:51 +0000 | [diff] [blame] | 805 | |
Michael J. Spencer | 7a3a510 | 2014-02-20 20:46:23 +0000 | [diff] [blame] | 806 | if (len == 0) |
Rafael Espindola | a813d60 | 2014-06-11 03:58:34 +0000 | [diff] [blame] | 807 | return windows_error(::GetLastError()); |
Rui Ueyama | 471d0c5 | 2013-09-10 19:45:51 +0000 | [diff] [blame] | 808 | |
Michael J. Spencer | 7a3a510 | 2014-02-20 20:46:23 +0000 | [diff] [blame] | 809 | utf16.reserve(len + 1); |
| 810 | utf16.set_size(len); |
Rui Ueyama | 471d0c5 | 2013-09-10 19:45:51 +0000 | [diff] [blame] | 811 | |
Michael J. Spencer | 7a3a510 | 2014-02-20 20:46:23 +0000 | [diff] [blame] | 812 | len = ::MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, utf8.begin(), |
| 813 | utf8.size(), utf16.begin(), utf16.size()); |
Rui Ueyama | 471d0c5 | 2013-09-10 19:45:51 +0000 | [diff] [blame] | 814 | |
Michael J. Spencer | 7a3a510 | 2014-02-20 20:46:23 +0000 | [diff] [blame] | 815 | if (len == 0) |
Rafael Espindola | a813d60 | 2014-06-11 03:58:34 +0000 | [diff] [blame] | 816 | return windows_error(::GetLastError()); |
Michael J. Spencer | 7a3a510 | 2014-02-20 20:46:23 +0000 | [diff] [blame] | 817 | } |
Rui Ueyama | 471d0c5 | 2013-09-10 19:45:51 +0000 | [diff] [blame] | 818 | |
| 819 | // Make utf16 null terminated. |
| 820 | utf16.push_back(0); |
| 821 | utf16.pop_back(); |
| 822 | |
Rafael Espindola | 0a5f9cf | 2014-06-12 14:11:22 +0000 | [diff] [blame] | 823 | return std::error_code(); |
Rui Ueyama | 471d0c5 | 2013-09-10 19:45:51 +0000 | [diff] [blame] | 824 | } |
| 825 | |
Rafael Espindola | 9c35966 | 2014-09-03 20:02:00 +0000 | [diff] [blame] | 826 | static |
| 827 | std::error_code UTF16ToCodePage(unsigned codepage, const wchar_t *utf16, |
| 828 | size_t utf16_len, |
| 829 | llvm::SmallVectorImpl<char> &utf8) { |
Michael J. Spencer | 7a3a510 | 2014-02-20 20:46:23 +0000 | [diff] [blame] | 830 | if (utf16_len) { |
| 831 | // Get length. |
Rafael Espindola | 9c35966 | 2014-09-03 20:02:00 +0000 | [diff] [blame] | 832 | int len = ::WideCharToMultiByte(codepage, 0, utf16, utf16_len, utf8.begin(), |
Michael J. Spencer | 7a3a510 | 2014-02-20 20:46:23 +0000 | [diff] [blame] | 833 | 0, NULL, NULL); |
Rui Ueyama | 471d0c5 | 2013-09-10 19:45:51 +0000 | [diff] [blame] | 834 | |
Michael J. Spencer | 7a3a510 | 2014-02-20 20:46:23 +0000 | [diff] [blame] | 835 | if (len == 0) |
Rafael Espindola | a813d60 | 2014-06-11 03:58:34 +0000 | [diff] [blame] | 836 | return windows_error(::GetLastError()); |
Rui Ueyama | 471d0c5 | 2013-09-10 19:45:51 +0000 | [diff] [blame] | 837 | |
Michael J. Spencer | 7a3a510 | 2014-02-20 20:46:23 +0000 | [diff] [blame] | 838 | utf8.reserve(len); |
| 839 | utf8.set_size(len); |
Rui Ueyama | 471d0c5 | 2013-09-10 19:45:51 +0000 | [diff] [blame] | 840 | |
Michael J. Spencer | 7a3a510 | 2014-02-20 20:46:23 +0000 | [diff] [blame] | 841 | // Now do the actual conversion. |
Rafael Espindola | 9c35966 | 2014-09-03 20:02:00 +0000 | [diff] [blame] | 842 | len = ::WideCharToMultiByte(codepage, 0, utf16, utf16_len, utf8.data(), |
Michael J. Spencer | 7a3a510 | 2014-02-20 20:46:23 +0000 | [diff] [blame] | 843 | utf8.size(), NULL, NULL); |
Rui Ueyama | 471d0c5 | 2013-09-10 19:45:51 +0000 | [diff] [blame] | 844 | |
Michael J. Spencer | 7a3a510 | 2014-02-20 20:46:23 +0000 | [diff] [blame] | 845 | if (len == 0) |
Rafael Espindola | a813d60 | 2014-06-11 03:58:34 +0000 | [diff] [blame] | 846 | return windows_error(::GetLastError()); |
Michael J. Spencer | 7a3a510 | 2014-02-20 20:46:23 +0000 | [diff] [blame] | 847 | } |
Rui Ueyama | 471d0c5 | 2013-09-10 19:45:51 +0000 | [diff] [blame] | 848 | |
| 849 | // Make utf8 null terminated. |
| 850 | utf8.push_back(0); |
| 851 | utf8.pop_back(); |
| 852 | |
Rafael Espindola | 0a5f9cf | 2014-06-12 14:11:22 +0000 | [diff] [blame] | 853 | return std::error_code(); |
Rui Ueyama | 471d0c5 | 2013-09-10 19:45:51 +0000 | [diff] [blame] | 854 | } |
Rafael Espindola | 9c35966 | 2014-09-03 20:02:00 +0000 | [diff] [blame] | 855 | |
| 856 | std::error_code UTF16ToUTF8(const wchar_t *utf16, size_t utf16_len, |
| 857 | llvm::SmallVectorImpl<char> &utf8) { |
| 858 | return UTF16ToCodePage(CP_UTF8, utf16, utf16_len, utf8); |
| 859 | } |
| 860 | |
| 861 | std::error_code UTF16ToCurCP(const wchar_t *utf16, size_t utf16_len, |
| 862 | llvm::SmallVectorImpl<char> &utf8) { |
| 863 | return UTF16ToCodePage(CP_ACP, utf16, utf16_len, utf8); |
| 864 | } |
Rui Ueyama | 471d0c5 | 2013-09-10 19:45:51 +0000 | [diff] [blame] | 865 | } // end namespace windows |
Michael J. Spencer | ebad2f9 | 2010-11-29 22:28:51 +0000 | [diff] [blame] | 866 | } // end namespace sys |
| 867 | } // end namespace llvm |