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