Argyrios Kyrtzidis | 4bd3225 | 2008-06-16 10:14:09 +0000 | [diff] [blame] | 1 | //===- llvm/System/Win32/Path.cpp - Win32 Path Implementation ---*- C++ -*-===// |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 2 | // |
Reid Spencer | cbad701 | 2004-09-11 04:59:30 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 7 | // |
| 8 | // Modified by Henrik Bach to comply with at least MinGW. |
Reid Spencer | d0c9e0e | 2004-09-18 19:29:16 +0000 | [diff] [blame] | 9 | // Ported to Win32 by Jeff Cohen. |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 10 | // |
Reid Spencer | cbad701 | 2004-09-11 04:59:30 +0000 | [diff] [blame] | 11 | //===----------------------------------------------------------------------===// |
| 12 | // |
| 13 | // This file provides the Win32 specific implementation of the Path class. |
| 14 | // |
| 15 | //===----------------------------------------------------------------------===// |
| 16 | |
| 17 | //===----------------------------------------------------------------------===// |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 18 | //=== WARNING: Implementation here must contain only generic Win32 code that |
| 19 | //=== is guaranteed to work on *all* Win32 variants. |
Reid Spencer | cbad701 | 2004-09-11 04:59:30 +0000 | [diff] [blame] | 20 | //===----------------------------------------------------------------------===// |
| 21 | |
Reid Spencer | d0c9e0e | 2004-09-18 19:29:16 +0000 | [diff] [blame] | 22 | #include "Win32.h" |
Reid Spencer | d0c9e0e | 2004-09-18 19:29:16 +0000 | [diff] [blame] | 23 | #include <malloc.h> |
Chris Lattner | c23c1fc | 2009-04-01 02:03:38 +0000 | [diff] [blame] | 24 | #include <cstdio> |
Reid Spencer | cbad701 | 2004-09-11 04:59:30 +0000 | [diff] [blame] | 25 | |
Jeff Cohen | cb65255 | 2004-12-24 02:38:34 +0000 | [diff] [blame] | 26 | // We need to undo a macro defined in Windows.h, otherwise we won't compile: |
| 27 | #undef CopyFile |
Anton Korobeynikov | 64ddbe4 | 2007-12-22 14:26:49 +0000 | [diff] [blame] | 28 | #undef GetCurrentDirectory |
Jeff Cohen | cb65255 | 2004-12-24 02:38:34 +0000 | [diff] [blame] | 29 | |
Jeff Cohen | 966fa41 | 2005-07-09 18:42:49 +0000 | [diff] [blame] | 30 | // Windows happily accepts either forward or backward slashes, though any path |
| 31 | // returned by a Win32 API will have backward slashes. As LLVM code basically |
| 32 | // assumes forward slashes are used, backward slashs are converted where they |
| 33 | // can be introduced into a path. |
| 34 | // |
| 35 | // Another invariant is that a path ends with a slash if and only if the path |
| 36 | // is a root directory. Any other use of a trailing slash is stripped. Unlike |
| 37 | // in Unix, Windows has a rather complicated notion of a root path and this |
| 38 | // invariant helps simply the code. |
| 39 | |
Reid Spencer | 6a0ec6f | 2004-09-29 00:01:17 +0000 | [diff] [blame] | 40 | static void FlipBackSlashes(std::string& s) { |
| 41 | for (size_t i = 0; i < s.size(); i++) |
| 42 | if (s[i] == '\\') |
| 43 | s[i] = '/'; |
| 44 | } |
| 45 | |
Reid Spencer | cbad701 | 2004-09-11 04:59:30 +0000 | [diff] [blame] | 46 | namespace llvm { |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 47 | namespace sys { |
Chris Lattner | a17fa28 | 2008-03-13 05:17:59 +0000 | [diff] [blame] | 48 | const char PathSeparator = ';'; |
Chris Lattner | e1b332a | 2008-02-27 06:17:10 +0000 | [diff] [blame] | 49 | |
Daniel Dunbar | 1edcafe | 2009-12-18 19:59:48 +0000 | [diff] [blame] | 50 | Path::Path(llvm::StringRef p) |
Nick Lewycky | fff116f | 2008-05-11 17:37:40 +0000 | [diff] [blame] | 51 | : path(p) { |
| 52 | FlipBackSlashes(path); |
| 53 | } |
| 54 | |
| 55 | Path::Path(const char *StrStart, unsigned StrLen) |
| 56 | : path(StrStart, StrLen) { |
| 57 | FlipBackSlashes(path); |
| 58 | } |
| 59 | |
Chris Lattner | 0eab5e2 | 2008-08-11 23:39:47 +0000 | [diff] [blame] | 60 | Path& |
Jeffrey Yasskin | 88cd358 | 2009-12-17 21:02:39 +0000 | [diff] [blame] | 61 | Path::operator=(StringRef that) { |
| 62 | path.assign(that.data(), that.size()); |
Chris Lattner | 0eab5e2 | 2008-08-11 23:39:47 +0000 | [diff] [blame] | 63 | FlipBackSlashes(path); |
| 64 | return *this; |
| 65 | } |
| 66 | |
Michael J. Spencer | a9cf7b8 | 2010-10-20 15:23:58 +0000 | [diff] [blame] | 67 | // push_back 0 on create, and pop_back on delete. |
| 68 | struct ScopedNullTerminator { |
| 69 | std::string &str; |
| 70 | ScopedNullTerminator(std::string &s) : str(s) { str.push_back(0); } |
Michael J. Spencer | 9f608b1 | 2010-10-20 16:00:45 +0000 | [diff] [blame^] | 71 | ~ScopedNullTerminator() { |
| 72 | // str.pop_back(); But wait, C++03 doesn't have this... |
| 73 | assert(!str.empty() && str[str.size() - 1] == 0 |
| 74 | && "Null char not present!"); |
| 75 | str.resize(str.size() - 1); |
| 76 | } |
Michael J. Spencer | a9cf7b8 | 2010-10-20 15:23:58 +0000 | [diff] [blame] | 77 | }; |
| 78 | |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 79 | bool |
Reid Spencer | 07adb28 | 2004-11-05 22:15:36 +0000 | [diff] [blame] | 80 | Path::isValid() const { |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 81 | if (path.empty()) |
| 82 | return false; |
Reid Spencer | d0c9e0e | 2004-09-18 19:29:16 +0000 | [diff] [blame] | 83 | |
Reid Spencer | 6a0ec6f | 2004-09-29 00:01:17 +0000 | [diff] [blame] | 84 | // If there is a colon, it must be the second character, preceded by a letter |
| 85 | // and followed by something. |
| 86 | size_t len = path.size(); |
Michael J. Spencer | a9cf7b8 | 2010-10-20 15:23:58 +0000 | [diff] [blame] | 87 | // This code assumes that path is null terminated, so make sure it is. |
| 88 | ScopedNullTerminator snt(path); |
Reid Spencer | 6a0ec6f | 2004-09-29 00:01:17 +0000 | [diff] [blame] | 89 | size_t pos = path.rfind(':',len); |
Jeff Cohen | 8f0e8f2 | 2005-07-08 04:50:08 +0000 | [diff] [blame] | 90 | size_t rootslash = 0; |
Reid Spencer | 6a0ec6f | 2004-09-29 00:01:17 +0000 | [diff] [blame] | 91 | if (pos != std::string::npos) { |
| 92 | if (pos != 1 || !isalpha(path[0]) || len < 3) |
| 93 | return false; |
Jeff Cohen | 8f0e8f2 | 2005-07-08 04:50:08 +0000 | [diff] [blame] | 94 | rootslash = 2; |
| 95 | } |
Jeff Cohen | 85c716f | 2005-07-08 05:02:13 +0000 | [diff] [blame] | 96 | |
Jeff Cohen | 8f0e8f2 | 2005-07-08 04:50:08 +0000 | [diff] [blame] | 97 | // Look for a UNC path, and if found adjust our notion of the root slash. |
| 98 | if (len > 3 && path[0] == '/' && path[1] == '/') { |
| 99 | rootslash = path.find('/', 2); |
| 100 | if (rootslash == std::string::npos) |
| 101 | rootslash = 0; |
Reid Spencer | 6a0ec6f | 2004-09-29 00:01:17 +0000 | [diff] [blame] | 102 | } |
Reid Spencer | d0c9e0e | 2004-09-18 19:29:16 +0000 | [diff] [blame] | 103 | |
Reid Spencer | 6a0ec6f | 2004-09-29 00:01:17 +0000 | [diff] [blame] | 104 | // Check for illegal characters. |
| 105 | if (path.find_first_of("\\<>\"|\001\002\003\004\005\006\007\010\011\012" |
| 106 | "\013\014\015\016\017\020\021\022\023\024\025\026" |
| 107 | "\027\030\031\032\033\034\035\036\037") |
| 108 | != std::string::npos) |
| 109 | return false; |
Jeff Cohen | 85c716f | 2005-07-08 05:02:13 +0000 | [diff] [blame] | 110 | |
Jeff Cohen | 8f0e8f2 | 2005-07-08 04:50:08 +0000 | [diff] [blame] | 111 | // Remove trailing slash, unless it's a root slash. |
| 112 | if (len > rootslash+1 && path[len-1] == '/') |
| 113 | path.erase(--len); |
Reid Spencer | 6a0ec6f | 2004-09-29 00:01:17 +0000 | [diff] [blame] | 114 | |
Jeff Cohen | 3bbbcc1 | 2005-01-14 04:09:39 +0000 | [diff] [blame] | 115 | // Check each component for legality. |
| 116 | for (pos = 0; pos < len; ++pos) { |
| 117 | // A component may not end in a space. |
| 118 | if (path[pos] == ' ') { |
| 119 | if (path[pos+1] == '/' || path[pos+1] == '\0') |
| 120 | return false; |
| 121 | } |
Reid Spencer | 6a0ec6f | 2004-09-29 00:01:17 +0000 | [diff] [blame] | 122 | |
Jeff Cohen | 3bbbcc1 | 2005-01-14 04:09:39 +0000 | [diff] [blame] | 123 | // A component may not end in a period. |
| 124 | if (path[pos] == '.') { |
| 125 | if (path[pos+1] == '/' || path[pos+1] == '\0') { |
| 126 | // Unless it is the pseudo-directory "."... |
| 127 | if (pos == 0 || path[pos-1] == '/' || path[pos-1] == ':') |
| 128 | return true; |
| 129 | // or "..". |
| 130 | if (pos > 0 && path[pos-1] == '.') { |
| 131 | if (pos == 1 || path[pos-2] == '/' || path[pos-2] == ':') |
| 132 | return true; |
| 133 | } |
| 134 | return false; |
| 135 | } |
| 136 | } |
| 137 | } |
Reid Spencer | 6a0ec6f | 2004-09-29 00:01:17 +0000 | [diff] [blame] | 138 | |
| 139 | return true; |
Reid Spencer | cbad701 | 2004-09-11 04:59:30 +0000 | [diff] [blame] | 140 | } |
| 141 | |
Daniel Dunbar | a00e85c | 2009-07-12 20:23:56 +0000 | [diff] [blame] | 142 | void Path::makeAbsolute() { |
Kovarththanan Rajaratnam | 16ceb3a | 2010-03-12 14:17:24 +0000 | [diff] [blame] | 143 | TCHAR FullPath[MAX_PATH + 1] = {0}; |
Daniel Dunbar | a00e85c | 2009-07-12 20:23:56 +0000 | [diff] [blame] | 144 | LPTSTR FilePart = NULL; |
| 145 | |
| 146 | DWORD RetLength = ::GetFullPathNameA(path.c_str(), |
| 147 | sizeof(FullPath)/sizeof(FullPath[0]), |
| 148 | FullPath, &FilePart); |
| 149 | |
| 150 | if (0 == RetLength) { |
| 151 | // FIXME: Report the error GetLastError() |
Daniel Dunbar | 2749b3e | 2009-07-26 21:16:42 +0000 | [diff] [blame] | 152 | assert(0 && "Unable to make absolute path!"); |
Daniel Dunbar | a00e85c | 2009-07-12 20:23:56 +0000 | [diff] [blame] | 153 | } else if (RetLength > MAX_PATH) { |
| 154 | // FIXME: Report too small buffer (needed RetLength bytes). |
Daniel Dunbar | 2749b3e | 2009-07-26 21:16:42 +0000 | [diff] [blame] | 155 | assert(0 && "Unable to make absolute path!"); |
Daniel Dunbar | a00e85c | 2009-07-12 20:23:56 +0000 | [diff] [blame] | 156 | } else { |
| 157 | path = FullPath; |
| 158 | } |
| 159 | } |
| 160 | |
Chris Lattner | 88d7e40 | 2009-06-15 04:17:07 +0000 | [diff] [blame] | 161 | bool |
| 162 | Path::isAbsolute(const char *NameStart, unsigned NameLen) { |
| 163 | assert(NameStart); |
Daniel Dunbar | a00e85c | 2009-07-12 20:23:56 +0000 | [diff] [blame] | 164 | // FIXME: This does not handle correctly an absolute path starting from |
| 165 | // a drive letter or in UNC format. |
Chris Lattner | 88d7e40 | 2009-06-15 04:17:07 +0000 | [diff] [blame] | 166 | switch (NameLen) { |
| 167 | case 0: |
| 168 | return false; |
| 169 | case 1: |
| 170 | case 2: |
| 171 | return NameStart[0] == '/'; |
| 172 | default: |
Chris Lattner | a79eefd | 2009-08-12 17:47:06 +0000 | [diff] [blame] | 173 | return (NameStart[0] == '/' || (NameStart[1] == ':' && NameStart[2] == '/')) || |
| 174 | (NameStart[0] == '\\' || (NameStart[1] == ':' && NameStart[2] == '\\')); |
Chris Lattner | 88d7e40 | 2009-06-15 04:17:07 +0000 | [diff] [blame] | 175 | } |
| 176 | } |
| 177 | |
Kovarththanan Rajaratnam | 16ceb3a | 2010-03-12 14:17:24 +0000 | [diff] [blame] | 178 | bool |
Reid Spencer | 69cce81 | 2007-03-29 16:43:20 +0000 | [diff] [blame] | 179 | Path::isAbsolute() const { |
Daniel Dunbar | a00e85c | 2009-07-12 20:23:56 +0000 | [diff] [blame] | 180 | // FIXME: This does not handle correctly an absolute path starting from |
| 181 | // a drive letter or in UNC format. |
Jeff Cohen | 84892be | 2007-03-29 17:27:38 +0000 | [diff] [blame] | 182 | switch (path.length()) { |
| 183 | case 0: |
| 184 | return false; |
| 185 | case 1: |
| 186 | case 2: |
| 187 | return path[0] == '/'; |
| 188 | default: |
| 189 | return path[0] == '/' || (path[1] == ':' && path[2] == '/'); |
| 190 | } |
Kovarththanan Rajaratnam | 16ceb3a | 2010-03-12 14:17:24 +0000 | [diff] [blame] | 191 | } |
Reid Spencer | 69cce81 | 2007-03-29 16:43:20 +0000 | [diff] [blame] | 192 | |
Kovarththanan Rajaratnam | 16ceb3a | 2010-03-12 14:17:24 +0000 | [diff] [blame] | 193 | static Path *TempDirectory; |
Reid Spencer | d0c9e0e | 2004-09-18 19:29:16 +0000 | [diff] [blame] | 194 | |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 195 | Path |
Reid Spencer | cab0e43 | 2006-08-22 22:46:39 +0000 | [diff] [blame] | 196 | Path::GetTemporaryDirectory(std::string* ErrMsg) { |
Reid Spencer | d0c9e0e | 2004-09-18 19:29:16 +0000 | [diff] [blame] | 197 | if (TempDirectory) |
| 198 | return *TempDirectory; |
| 199 | |
| 200 | char pathname[MAX_PATH]; |
Reid Spencer | cab0e43 | 2006-08-22 22:46:39 +0000 | [diff] [blame] | 201 | if (!GetTempPath(MAX_PATH, pathname)) { |
| 202 | if (ErrMsg) |
| 203 | *ErrMsg = "Can't determine temporary directory"; |
| 204 | return Path(); |
| 205 | } |
Reid Spencer | d0c9e0e | 2004-09-18 19:29:16 +0000 | [diff] [blame] | 206 | |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 207 | Path result; |
Reid Spencer | 1cf2d04 | 2005-07-07 23:35:23 +0000 | [diff] [blame] | 208 | result.set(pathname); |
Reid Spencer | d0c9e0e | 2004-09-18 19:29:16 +0000 | [diff] [blame] | 209 | |
| 210 | // Append a subdirectory passed on our process id so multiple LLVMs don't |
| 211 | // step on each other's toes. |
Jeff Cohen | d41b30d | 2006-11-05 19:31:28 +0000 | [diff] [blame] | 212 | #ifdef __MINGW32__ |
| 213 | // Mingw's Win32 header files are broken. |
Reid Spencer | ab4d9b0 | 2006-06-08 18:08:43 +0000 | [diff] [blame] | 214 | sprintf(pathname, "LLVM_%u", unsigned(GetCurrentProcessId())); |
Jeff Cohen | d41b30d | 2006-11-05 19:31:28 +0000 | [diff] [blame] | 215 | #else |
| 216 | sprintf(pathname, "LLVM_%u", GetCurrentProcessId()); |
| 217 | #endif |
Jeff Cohen | edb9d6b | 2005-07-08 02:48:42 +0000 | [diff] [blame] | 218 | result.appendComponent(pathname); |
Reid Spencer | d0c9e0e | 2004-09-18 19:29:16 +0000 | [diff] [blame] | 219 | |
| 220 | // If there's a directory left over from a previous LLVM execution that |
| 221 | // happened to have the same process id, get rid of it. |
Reid Spencer | a229c5c | 2005-07-08 03:08:58 +0000 | [diff] [blame] | 222 | result.eraseFromDisk(true); |
Reid Spencer | d0c9e0e | 2004-09-18 19:29:16 +0000 | [diff] [blame] | 223 | |
| 224 | // And finally (re-)create the empty directory. |
Reid Spencer | a229c5c | 2005-07-08 03:08:58 +0000 | [diff] [blame] | 225 | result.createDirectoryOnDisk(false); |
Reid Spencer | d0c9e0e | 2004-09-18 19:29:16 +0000 | [diff] [blame] | 226 | TempDirectory = new Path(result); |
| 227 | return *TempDirectory; |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 228 | } |
| 229 | |
Reid Spencer | d0c9e0e | 2004-09-18 19:29:16 +0000 | [diff] [blame] | 230 | // FIXME: the following set of functions don't map to Windows very well. |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 231 | Path |
| 232 | Path::GetRootDirectory() { |
| 233 | Path result; |
Jeff Cohen | 966fa41 | 2005-07-09 18:42:49 +0000 | [diff] [blame] | 234 | result.set("C:/"); |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 235 | return result; |
| 236 | } |
| 237 | |
Jeff Cohen | 85c716f | 2005-07-08 05:02:13 +0000 | [diff] [blame] | 238 | void |
Reid Spencer | 6c4b7bd | 2004-12-13 03:03:42 +0000 | [diff] [blame] | 239 | Path::GetSystemLibraryPaths(std::vector<sys::Path>& Paths) { |
Jeff Cohen | 966fa41 | 2005-07-09 18:42:49 +0000 | [diff] [blame] | 240 | Paths.push_back(sys::Path("C:/WINDOWS/SYSTEM32")); |
| 241 | Paths.push_back(sys::Path("C:/WINDOWS")); |
Reid Spencer | d0c9e0e | 2004-09-18 19:29:16 +0000 | [diff] [blame] | 242 | } |
| 243 | |
Reid Spencer | 6c4b7bd | 2004-12-13 03:03:42 +0000 | [diff] [blame] | 244 | void |
Gabor Greif | db5565a | 2007-07-06 20:28:40 +0000 | [diff] [blame] | 245 | Path::GetBitcodeLibraryPaths(std::vector<sys::Path>& Paths) { |
Reid Spencer | 6c4b7bd | 2004-12-13 03:03:42 +0000 | [diff] [blame] | 246 | char * env_var = getenv("LLVM_LIB_SEARCH_PATH"); |
| 247 | if (env_var != 0) { |
| 248 | getPathList(env_var,Paths); |
| 249 | } |
Reid Spencer | 6c4b7bd | 2004-12-13 03:03:42 +0000 | [diff] [blame] | 250 | #ifdef LLVM_LIBDIR |
| 251 | { |
| 252 | Path tmpPath; |
Reid Spencer | 1cf2d04 | 2005-07-07 23:35:23 +0000 | [diff] [blame] | 253 | if (tmpPath.set(LLVM_LIBDIR)) |
Reid Spencer | c7f0832 | 2005-07-07 18:21:42 +0000 | [diff] [blame] | 254 | if (tmpPath.canRead()) |
Reid Spencer | 6c4b7bd | 2004-12-13 03:03:42 +0000 | [diff] [blame] | 255 | Paths.push_back(tmpPath); |
| 256 | } |
| 257 | #endif |
| 258 | GetSystemLibraryPaths(Paths); |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 259 | } |
| 260 | |
| 261 | Path |
| 262 | Path::GetLLVMDefaultConfigDir() { |
Jeff Cohen | ebcb9b3 | 2004-12-31 04:39:07 +0000 | [diff] [blame] | 263 | // TODO: this isn't going to fly on Windows |
Jeff Cohen | 8f0e8f2 | 2005-07-08 04:50:08 +0000 | [diff] [blame] | 264 | return Path("/etc/llvm"); |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 265 | } |
| 266 | |
| 267 | Path |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 268 | Path::GetUserHomeDirectory() { |
Jeff Cohen | ebcb9b3 | 2004-12-31 04:39:07 +0000 | [diff] [blame] | 269 | // TODO: Typical Windows setup doesn't define HOME. |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 270 | const char* home = getenv("HOME"); |
| 271 | if (home) { |
| 272 | Path result; |
Reid Spencer | 1cf2d04 | 2005-07-07 23:35:23 +0000 | [diff] [blame] | 273 | if (result.set(home)) |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 274 | return result; |
| 275 | } |
| 276 | return GetRootDirectory(); |
| 277 | } |
Ted Kremenek | 7920078 | 2007-12-18 22:07:33 +0000 | [diff] [blame] | 278 | |
| 279 | Path |
| 280 | Path::GetCurrentDirectory() { |
| 281 | char pathname[MAX_PATH]; |
Anton Korobeynikov | 64ddbe4 | 2007-12-22 14:26:49 +0000 | [diff] [blame] | 282 | ::GetCurrentDirectoryA(MAX_PATH,pathname); |
Kovarththanan Rajaratnam | 16ceb3a | 2010-03-12 14:17:24 +0000 | [diff] [blame] | 283 | return Path(pathname); |
Ted Kremenek | 7920078 | 2007-12-18 22:07:33 +0000 | [diff] [blame] | 284 | } |
| 285 | |
Chris Lattner | 1a09144 | 2008-03-03 02:55:43 +0000 | [diff] [blame] | 286 | /// GetMainExecutable - Return the path to the main executable, given the |
| 287 | /// value of argv[0] from program startup. |
| 288 | Path Path::GetMainExecutable(const char *argv0, void *MainAddr) { |
Chris Lattner | c5718d0 | 2009-06-15 05:38:04 +0000 | [diff] [blame] | 289 | char pathname[MAX_PATH]; |
| 290 | DWORD ret = ::GetModuleFileNameA(NULL, pathname, MAX_PATH); |
| 291 | return ret != MAX_PATH ? Path(pathname) : Path(); |
Chris Lattner | 1a09144 | 2008-03-03 02:55:43 +0000 | [diff] [blame] | 292 | } |
| 293 | |
Ted Kremenek | 7920078 | 2007-12-18 22:07:33 +0000 | [diff] [blame] | 294 | |
Reid Spencer | d0c9e0e | 2004-09-18 19:29:16 +0000 | [diff] [blame] | 295 | // FIXME: the above set of functions don't map to Windows very well. |
| 296 | |
Jeff Cohen | 966fa41 | 2005-07-09 18:42:49 +0000 | [diff] [blame] | 297 | |
Jeffrey Yasskin | 88cd358 | 2009-12-17 21:02:39 +0000 | [diff] [blame] | 298 | StringRef Path::getDirname() const { |
| 299 | return getDirnameCharSep(path, "/"); |
Ted Kremenek | 9b01cc0 | 2008-04-07 22:01:32 +0000 | [diff] [blame] | 300 | } |
Ted Kremenek | cf55c8e | 2008-04-07 21:53:57 +0000 | [diff] [blame] | 301 | |
Jeffrey Yasskin | 88cd358 | 2009-12-17 21:02:39 +0000 | [diff] [blame] | 302 | StringRef |
Reid Spencer | 07adb28 | 2004-11-05 22:15:36 +0000 | [diff] [blame] | 303 | Path::getBasename() const { |
Reid Spencer | d0c9e0e | 2004-09-18 19:29:16 +0000 | [diff] [blame] | 304 | // Find the last slash |
| 305 | size_t slash = path.rfind('/'); |
| 306 | if (slash == std::string::npos) |
| 307 | slash = 0; |
| 308 | else |
| 309 | slash++; |
| 310 | |
Jeff Cohen | 966fa41 | 2005-07-09 18:42:49 +0000 | [diff] [blame] | 311 | size_t dot = path.rfind('.'); |
| 312 | if (dot == std::string::npos || dot < slash) |
Jeffrey Yasskin | 88cd358 | 2009-12-17 21:02:39 +0000 | [diff] [blame] | 313 | return StringRef(path).substr(slash); |
Jeff Cohen | 966fa41 | 2005-07-09 18:42:49 +0000 | [diff] [blame] | 314 | else |
Jeffrey Yasskin | 88cd358 | 2009-12-17 21:02:39 +0000 | [diff] [blame] | 315 | return StringRef(path).substr(slash, dot - slash); |
Reid Spencer | d0c9e0e | 2004-09-18 19:29:16 +0000 | [diff] [blame] | 316 | } |
| 317 | |
Jeffrey Yasskin | 88cd358 | 2009-12-17 21:02:39 +0000 | [diff] [blame] | 318 | StringRef |
Argyrios Kyrtzidis | fc19988 | 2008-06-15 15:15:19 +0000 | [diff] [blame] | 319 | Path::getSuffix() const { |
| 320 | // Find the last slash |
| 321 | size_t slash = path.rfind('/'); |
| 322 | if (slash == std::string::npos) |
| 323 | slash = 0; |
| 324 | else |
| 325 | slash++; |
| 326 | |
| 327 | size_t dot = path.rfind('.'); |
| 328 | if (dot == std::string::npos || dot < slash) |
Jeffrey Yasskin | 88cd358 | 2009-12-17 21:02:39 +0000 | [diff] [blame] | 329 | return StringRef(""); |
Argyrios Kyrtzidis | fc19988 | 2008-06-15 15:15:19 +0000 | [diff] [blame] | 330 | else |
Jeffrey Yasskin | 88cd358 | 2009-12-17 21:02:39 +0000 | [diff] [blame] | 331 | return StringRef(path).substr(dot + 1); |
Argyrios Kyrtzidis | fc19988 | 2008-06-15 15:15:19 +0000 | [diff] [blame] | 332 | } |
| 333 | |
Reid Spencer | d0c9e0e | 2004-09-18 19:29:16 +0000 | [diff] [blame] | 334 | bool |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 335 | Path::exists() const { |
Reid Spencer | d0c9e0e | 2004-09-18 19:29:16 +0000 | [diff] [blame] | 336 | DWORD attr = GetFileAttributes(path.c_str()); |
| 337 | return attr != INVALID_FILE_ATTRIBUTES; |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 338 | } |
| 339 | |
| 340 | bool |
Ted Kremenek | fd52711 | 2007-12-18 19:46:22 +0000 | [diff] [blame] | 341 | Path::isDirectory() const { |
| 342 | DWORD attr = GetFileAttributes(path.c_str()); |
| 343 | return (attr != INVALID_FILE_ATTRIBUTES) && |
| 344 | (attr & FILE_ATTRIBUTE_DIRECTORY); |
| 345 | } |
| 346 | |
| 347 | bool |
Reid Spencer | c7f0832 | 2005-07-07 18:21:42 +0000 | [diff] [blame] | 348 | Path::canRead() const { |
Reid Spencer | d0c9e0e | 2004-09-18 19:29:16 +0000 | [diff] [blame] | 349 | // FIXME: take security attributes into account. |
| 350 | DWORD attr = GetFileAttributes(path.c_str()); |
| 351 | return attr != INVALID_FILE_ATTRIBUTES; |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 352 | } |
| 353 | |
| 354 | bool |
Reid Spencer | c7f0832 | 2005-07-07 18:21:42 +0000 | [diff] [blame] | 355 | Path::canWrite() const { |
Reid Spencer | d0c9e0e | 2004-09-18 19:29:16 +0000 | [diff] [blame] | 356 | // FIXME: take security attributes into account. |
| 357 | DWORD attr = GetFileAttributes(path.c_str()); |
| 358 | return (attr != INVALID_FILE_ATTRIBUTES) && !(attr & FILE_ATTRIBUTE_READONLY); |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 359 | } |
| 360 | |
| 361 | bool |
Reid Spencer | c7f0832 | 2005-07-07 18:21:42 +0000 | [diff] [blame] | 362 | Path::canExecute() const { |
Reid Spencer | d0c9e0e | 2004-09-18 19:29:16 +0000 | [diff] [blame] | 363 | // FIXME: take security attributes into account. |
| 364 | DWORD attr = GetFileAttributes(path.c_str()); |
| 365 | return attr != INVALID_FILE_ATTRIBUTES; |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 366 | } |
| 367 | |
Edward O'Callaghan | d41e944 | 2009-11-24 15:19:10 +0000 | [diff] [blame] | 368 | bool |
Edward O'Callaghan | e49a8e4 | 2009-11-25 06:32:19 +0000 | [diff] [blame] | 369 | Path::isRegularFile() const { |
| 370 | if (isDirectory()) |
| 371 | return false; |
| 372 | return true; |
Edward O'Callaghan | d41e944 | 2009-11-24 15:19:10 +0000 | [diff] [blame] | 373 | } |
| 374 | |
Jeffrey Yasskin | 88cd358 | 2009-12-17 21:02:39 +0000 | [diff] [blame] | 375 | StringRef |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 376 | Path::getLast() const { |
| 377 | // Find the last slash |
| 378 | size_t pos = path.rfind('/'); |
| 379 | |
| 380 | // Handle the corner cases |
| 381 | if (pos == std::string::npos) |
| 382 | return path; |
| 383 | |
Jeff Cohen | 8f0e8f2 | 2005-07-08 04:50:08 +0000 | [diff] [blame] | 384 | // If the last character is a slash, we have a root directory |
| 385 | if (pos == path.length()-1) |
| 386 | return path; |
| 387 | |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 388 | // Return everything after the last slash |
Jeffrey Yasskin | 88cd358 | 2009-12-17 21:02:39 +0000 | [diff] [blame] | 389 | return StringRef(path).substr(pos+1); |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 390 | } |
| 391 | |
Reid Spencer | 8475ec0 | 2007-03-29 19:05:44 +0000 | [diff] [blame] | 392 | const FileStatus * |
Reid Spencer | 2ae9d11 | 2007-04-07 18:52:17 +0000 | [diff] [blame] | 393 | PathWithStatus::getFileStatus(bool update, std::string *ErrStr) const { |
| 394 | if (!fsIsValid || update) { |
Reid Spencer | 69cce81 | 2007-03-29 16:43:20 +0000 | [diff] [blame] | 395 | WIN32_FILE_ATTRIBUTE_DATA fi; |
Reid Spencer | 8475ec0 | 2007-03-29 19:05:44 +0000 | [diff] [blame] | 396 | if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) { |
| 397 | MakeErrMsg(ErrStr, "getStatusInfo():" + std::string(path) + |
Reid Spencer | 69cce81 | 2007-03-29 16:43:20 +0000 | [diff] [blame] | 398 | ": Can't get status: "); |
Reid Spencer | 8475ec0 | 2007-03-29 19:05:44 +0000 | [diff] [blame] | 399 | return 0; |
| 400 | } |
Jeff Cohen | 626e38e | 2004-12-14 05:26:43 +0000 | [diff] [blame] | 401 | |
Reid Spencer | 2ae9d11 | 2007-04-07 18:52:17 +0000 | [diff] [blame] | 402 | status.fileSize = fi.nFileSizeHigh; |
| 403 | status.fileSize <<= sizeof(fi.nFileSizeHigh)*8; |
| 404 | status.fileSize += fi.nFileSizeLow; |
Jeff Cohen | 626e38e | 2004-12-14 05:26:43 +0000 | [diff] [blame] | 405 | |
Reid Spencer | 2ae9d11 | 2007-04-07 18:52:17 +0000 | [diff] [blame] | 406 | status.mode = fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY ? 0555 : 0777; |
| 407 | status.user = 9999; // Not applicable to Windows, so... |
| 408 | status.group = 9999; // Not applicable to Windows, so... |
Jeff Cohen | 626e38e | 2004-12-14 05:26:43 +0000 | [diff] [blame] | 409 | |
Reid Spencer | 4031bef | 2007-03-29 17:00:31 +0000 | [diff] [blame] | 410 | // FIXME: this is only unique if the file is accessed by the same file path. |
| 411 | // How do we do this for C:\dir\file and ..\dir\file ? Unix has inode |
| 412 | // numbers, but the concept doesn't exist in Windows. |
Reid Spencer | 2ae9d11 | 2007-04-07 18:52:17 +0000 | [diff] [blame] | 413 | status.uniqueID = 0; |
Reid Spencer | 4031bef | 2007-03-29 17:00:31 +0000 | [diff] [blame] | 414 | for (unsigned i = 0; i < path.length(); ++i) |
Reid Spencer | 2ae9d11 | 2007-04-07 18:52:17 +0000 | [diff] [blame] | 415 | status.uniqueID += path[i]; |
Reid Spencer | 4031bef | 2007-03-29 17:00:31 +0000 | [diff] [blame] | 416 | |
Michael J. Spencer | 44edb0b | 2010-08-28 16:39:32 +0000 | [diff] [blame] | 417 | ULARGE_INTEGER ui; |
| 418 | ui.LowPart = fi.ftLastWriteTime.dwLowDateTime; |
| 419 | ui.HighPart = fi.ftLastWriteTime.dwHighDateTime; |
| 420 | status.modTime.fromWin32Time(ui.QuadPart); |
Reid Spencer | 69cce81 | 2007-03-29 16:43:20 +0000 | [diff] [blame] | 421 | |
Reid Spencer | 2ae9d11 | 2007-04-07 18:52:17 +0000 | [diff] [blame] | 422 | status.isDir = fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY; |
| 423 | fsIsValid = true; |
Reid Spencer | 69cce81 | 2007-03-29 16:43:20 +0000 | [diff] [blame] | 424 | } |
Reid Spencer | 2ae9d11 | 2007-04-07 18:52:17 +0000 | [diff] [blame] | 425 | return &status; |
Jeff Cohen | 626e38e | 2004-12-14 05:26:43 +0000 | [diff] [blame] | 426 | } |
| 427 | |
Reid Spencer | a34a157 | 2006-08-22 23:54:35 +0000 | [diff] [blame] | 428 | bool Path::makeReadableOnDisk(std::string* ErrMsg) { |
Jeff Cohen | 626e38e | 2004-12-14 05:26:43 +0000 | [diff] [blame] | 429 | // All files are readable on Windows (ignoring security attributes). |
Reid Spencer | a34a157 | 2006-08-22 23:54:35 +0000 | [diff] [blame] | 430 | return false; |
Reid Spencer | 77cc91d | 2004-12-13 19:59:50 +0000 | [diff] [blame] | 431 | } |
| 432 | |
Anton Korobeynikov | 7d51544 | 2006-09-01 20:35:17 +0000 | [diff] [blame] | 433 | bool Path::makeWriteableOnDisk(std::string* ErrMsg) { |
Jeff Cohen | 626e38e | 2004-12-14 05:26:43 +0000 | [diff] [blame] | 434 | DWORD attr = GetFileAttributes(path.c_str()); |
| 435 | |
| 436 | // If it doesn't exist, we're done. |
| 437 | if (attr == INVALID_FILE_ATTRIBUTES) |
Anton Korobeynikov | 7d51544 | 2006-09-01 20:35:17 +0000 | [diff] [blame] | 438 | return false; |
Jeff Cohen | 626e38e | 2004-12-14 05:26:43 +0000 | [diff] [blame] | 439 | |
| 440 | if (attr & FILE_ATTRIBUTE_READONLY) { |
Reid Spencer | a34a157 | 2006-08-22 23:54:35 +0000 | [diff] [blame] | 441 | if (!SetFileAttributes(path.c_str(), attr & ~FILE_ATTRIBUTE_READONLY)) { |
| 442 | MakeErrMsg(ErrMsg, std::string(path) + ": Can't make file writable: "); |
| 443 | return true; |
| 444 | } |
Jeff Cohen | 626e38e | 2004-12-14 05:26:43 +0000 | [diff] [blame] | 445 | } |
Reid Spencer | a34a157 | 2006-08-22 23:54:35 +0000 | [diff] [blame] | 446 | return false; |
Reid Spencer | 77cc91d | 2004-12-13 19:59:50 +0000 | [diff] [blame] | 447 | } |
| 448 | |
Reid Spencer | a34a157 | 2006-08-22 23:54:35 +0000 | [diff] [blame] | 449 | bool Path::makeExecutableOnDisk(std::string* ErrMsg) { |
Jeff Cohen | 626e38e | 2004-12-14 05:26:43 +0000 | [diff] [blame] | 450 | // All files are executable on Windows (ignoring security attributes). |
Reid Spencer | a34a157 | 2006-08-22 23:54:35 +0000 | [diff] [blame] | 451 | return false; |
Reid Spencer | 77cc91d | 2004-12-13 19:59:50 +0000 | [diff] [blame] | 452 | } |
| 453 | |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 454 | bool |
Reid Spencer | 142ca8e | 2006-08-23 06:56:27 +0000 | [diff] [blame] | 455 | Path::getDirectoryContents(std::set<Path>& result, std::string* ErrMsg) const { |
Jeff Cohen | 3110289 | 2007-04-07 20:47:27 +0000 | [diff] [blame] | 456 | WIN32_FILE_ATTRIBUTE_DATA fi; |
| 457 | if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) { |
| 458 | MakeErrMsg(ErrMsg, path + ": can't get status of file"); |
Anton Korobeynikov | 7d51544 | 2006-09-01 20:35:17 +0000 | [diff] [blame] | 459 | return true; |
Jeff Cohen | 3110289 | 2007-04-07 20:47:27 +0000 | [diff] [blame] | 460 | } |
Kovarththanan Rajaratnam | 16ceb3a | 2010-03-12 14:17:24 +0000 | [diff] [blame] | 461 | |
Jeff Cohen | 3110289 | 2007-04-07 20:47:27 +0000 | [diff] [blame] | 462 | if (!(fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) { |
| 463 | if (ErrMsg) |
| 464 | *ErrMsg = path + ": not a directory"; |
Reid Spencer | 142ca8e | 2006-08-23 06:56:27 +0000 | [diff] [blame] | 465 | return true; |
| 466 | } |
Jeff Cohen | ebcb9b3 | 2004-12-31 04:39:07 +0000 | [diff] [blame] | 467 | |
| 468 | result.clear(); |
| 469 | WIN32_FIND_DATA fd; |
Jeff Cohen | 8f0e8f2 | 2005-07-08 04:50:08 +0000 | [diff] [blame] | 470 | std::string searchpath = path; |
| 471 | if (path.size() == 0 || searchpath[path.size()-1] == '/') |
Jeff Cohen | 85c716f | 2005-07-08 05:02:13 +0000 | [diff] [blame] | 472 | searchpath += "*"; |
Jeff Cohen | 8f0e8f2 | 2005-07-08 04:50:08 +0000 | [diff] [blame] | 473 | else |
| 474 | searchpath += "/*"; |
Jeff Cohen | 85c716f | 2005-07-08 05:02:13 +0000 | [diff] [blame] | 475 | |
Jeff Cohen | 9437bb6 | 2005-01-27 03:49:03 +0000 | [diff] [blame] | 476 | HANDLE h = FindFirstFile(searchpath.c_str(), &fd); |
Jeff Cohen | ebcb9b3 | 2004-12-31 04:39:07 +0000 | [diff] [blame] | 477 | if (h == INVALID_HANDLE_VALUE) { |
Jeff Cohen | 9437bb6 | 2005-01-27 03:49:03 +0000 | [diff] [blame] | 478 | if (GetLastError() == ERROR_FILE_NOT_FOUND) |
Jeff Cohen | ebcb9b3 | 2004-12-31 04:39:07 +0000 | [diff] [blame] | 479 | return true; // not really an error, now is it? |
Reid Spencer | 142ca8e | 2006-08-23 06:56:27 +0000 | [diff] [blame] | 480 | MakeErrMsg(ErrMsg, path + ": Can't read directory: "); |
| 481 | return true; |
Jeff Cohen | ebcb9b3 | 2004-12-31 04:39:07 +0000 | [diff] [blame] | 482 | } |
| 483 | |
| 484 | do { |
Jeff Cohen | d40a7de | 2004-12-31 05:07:26 +0000 | [diff] [blame] | 485 | if (fd.cFileName[0] == '.') |
| 486 | continue; |
Jeff Cohen | 8f0e8f2 | 2005-07-08 04:50:08 +0000 | [diff] [blame] | 487 | Path aPath(path); |
| 488 | aPath.appendComponent(&fd.cFileName[0]); |
Jeff Cohen | ebcb9b3 | 2004-12-31 04:39:07 +0000 | [diff] [blame] | 489 | result.insert(aPath); |
| 490 | } while (FindNextFile(h, &fd)); |
| 491 | |
Jeff Cohen | 51b8d21 | 2004-12-31 19:01:08 +0000 | [diff] [blame] | 492 | DWORD err = GetLastError(); |
| 493 | FindClose(h); |
| 494 | if (err != ERROR_NO_MORE_FILES) { |
| 495 | SetLastError(err); |
Reid Spencer | 142ca8e | 2006-08-23 06:56:27 +0000 | [diff] [blame] | 496 | MakeErrMsg(ErrMsg, path + ": Can't read directory: "); |
| 497 | return true; |
Jeff Cohen | 51b8d21 | 2004-12-31 19:01:08 +0000 | [diff] [blame] | 498 | } |
Reid Spencer | 142ca8e | 2006-08-23 06:56:27 +0000 | [diff] [blame] | 499 | return false; |
Jeff Cohen | ebcb9b3 | 2004-12-31 04:39:07 +0000 | [diff] [blame] | 500 | } |
| 501 | |
| 502 | bool |
Jeffrey Yasskin | 88cd358 | 2009-12-17 21:02:39 +0000 | [diff] [blame] | 503 | Path::set(StringRef a_path) { |
Dan Gohman | 3035959 | 2008-01-29 13:02:09 +0000 | [diff] [blame] | 504 | if (a_path.empty()) |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 505 | return false; |
Reid Spencer | 1cf2d04 | 2005-07-07 23:35:23 +0000 | [diff] [blame] | 506 | std::string save(path); |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 507 | path = a_path; |
Reid Spencer | 6a0ec6f | 2004-09-29 00:01:17 +0000 | [diff] [blame] | 508 | FlipBackSlashes(path); |
Reid Spencer | 07adb28 | 2004-11-05 22:15:36 +0000 | [diff] [blame] | 509 | if (!isValid()) { |
Reid Spencer | 1cf2d04 | 2005-07-07 23:35:23 +0000 | [diff] [blame] | 510 | path = save; |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 511 | return false; |
| 512 | } |
| 513 | return true; |
| 514 | } |
| 515 | |
| 516 | bool |
Jeffrey Yasskin | 88cd358 | 2009-12-17 21:02:39 +0000 | [diff] [blame] | 517 | Path::appendComponent(StringRef name) { |
Reid Spencer | 1cf2d04 | 2005-07-07 23:35:23 +0000 | [diff] [blame] | 518 | if (name.empty()) |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 519 | return false; |
Reid Spencer | 1cf2d04 | 2005-07-07 23:35:23 +0000 | [diff] [blame] | 520 | std::string save(path); |
| 521 | if (!path.empty()) { |
| 522 | size_t last = path.size() - 1; |
Jeff Cohen | 85c716f | 2005-07-08 05:02:13 +0000 | [diff] [blame] | 523 | if (path[last] != '/') |
Reid Spencer | 1cf2d04 | 2005-07-07 23:35:23 +0000 | [diff] [blame] | 524 | path += '/'; |
| 525 | } |
| 526 | path += name; |
Reid Spencer | 07adb28 | 2004-11-05 22:15:36 +0000 | [diff] [blame] | 527 | if (!isValid()) { |
Reid Spencer | 1cf2d04 | 2005-07-07 23:35:23 +0000 | [diff] [blame] | 528 | path = save; |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 529 | return false; |
| 530 | } |
| 531 | return true; |
| 532 | } |
| 533 | |
| 534 | bool |
Reid Spencer | 1cf2d04 | 2005-07-07 23:35:23 +0000 | [diff] [blame] | 535 | Path::eraseComponent() { |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 536 | size_t slashpos = path.rfind('/',path.size()); |
Jeff Cohen | 8f0e8f2 | 2005-07-08 04:50:08 +0000 | [diff] [blame] | 537 | if (slashpos == path.size() - 1 || slashpos == std::string::npos) |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 538 | return false; |
Jeff Cohen | 966fa41 | 2005-07-09 18:42:49 +0000 | [diff] [blame] | 539 | std::string save(path); |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 540 | path.erase(slashpos); |
Jeff Cohen | 966fa41 | 2005-07-09 18:42:49 +0000 | [diff] [blame] | 541 | if (!isValid()) { |
| 542 | path = save; |
| 543 | return false; |
| 544 | } |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 545 | return true; |
| 546 | } |
| 547 | |
| 548 | bool |
Jeffrey Yasskin | 88cd358 | 2009-12-17 21:02:39 +0000 | [diff] [blame] | 549 | Path::appendSuffix(StringRef suffix) { |
Reid Spencer | 1cf2d04 | 2005-07-07 23:35:23 +0000 | [diff] [blame] | 550 | std::string save(path); |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 551 | path.append("."); |
| 552 | path.append(suffix); |
Reid Spencer | 07adb28 | 2004-11-05 22:15:36 +0000 | [diff] [blame] | 553 | if (!isValid()) { |
Reid Spencer | 1cf2d04 | 2005-07-07 23:35:23 +0000 | [diff] [blame] | 554 | path = save; |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 555 | return false; |
| 556 | } |
| 557 | return true; |
| 558 | } |
| 559 | |
| 560 | bool |
Reid Spencer | 1cf2d04 | 2005-07-07 23:35:23 +0000 | [diff] [blame] | 561 | Path::eraseSuffix() { |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 562 | size_t dotpos = path.rfind('.',path.size()); |
| 563 | size_t slashpos = path.rfind('/',path.size()); |
Jeff Cohen | 8f0e8f2 | 2005-07-08 04:50:08 +0000 | [diff] [blame] | 564 | if (dotpos != std::string::npos) { |
Jeff Cohen | 966fa41 | 2005-07-09 18:42:49 +0000 | [diff] [blame] | 565 | if (slashpos == std::string::npos || dotpos > slashpos+1) { |
| 566 | std::string save(path); |
Jeff Cohen | 8f0e8f2 | 2005-07-08 04:50:08 +0000 | [diff] [blame] | 567 | path.erase(dotpos, path.size()-dotpos); |
Jeff Cohen | 966fa41 | 2005-07-09 18:42:49 +0000 | [diff] [blame] | 568 | if (!isValid()) { |
| 569 | path = save; |
| 570 | return false; |
| 571 | } |
Jeff Cohen | 85c716f | 2005-07-08 05:02:13 +0000 | [diff] [blame] | 572 | return true; |
Jeff Cohen | 8f0e8f2 | 2005-07-08 04:50:08 +0000 | [diff] [blame] | 573 | } |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 574 | } |
| 575 | return false; |
| 576 | } |
| 577 | |
Reid Spencer | 3030099 | 2006-08-24 18:58:37 +0000 | [diff] [blame] | 578 | inline bool PathMsg(std::string* ErrMsg, const char* pathname, const char*msg) { |
| 579 | if (ErrMsg) |
| 580 | *ErrMsg = std::string(pathname) + ": " + std::string(msg); |
| 581 | return true; |
| 582 | } |
| 583 | |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 584 | bool |
Reid Spencer | 3030099 | 2006-08-24 18:58:37 +0000 | [diff] [blame] | 585 | Path::createDirectoryOnDisk(bool create_parents, std::string* ErrMsg) { |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 586 | // Get a writeable copy of the path name |
Jeff Cohen | 8f0e8f2 | 2005-07-08 04:50:08 +0000 | [diff] [blame] | 587 | size_t len = path.length(); |
| 588 | char *pathname = reinterpret_cast<char *>(_alloca(len+2)); |
| 589 | path.copy(pathname, len); |
| 590 | pathname[len] = 0; |
Jeff Cohen | 85c716f | 2005-07-08 05:02:13 +0000 | [diff] [blame] | 591 | |
Jeff Cohen | 8f0e8f2 | 2005-07-08 04:50:08 +0000 | [diff] [blame] | 592 | // Make sure it ends with a slash. |
| 593 | if (len == 0 || pathname[len - 1] != '/') { |
| 594 | pathname[len] = '/'; |
| 595 | pathname[++len] = 0; |
| 596 | } |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 597 | |
Reid Spencer | 6a0ec6f | 2004-09-29 00:01:17 +0000 | [diff] [blame] | 598 | // Determine starting point for initial / search. |
| 599 | char *next = pathname; |
| 600 | if (pathname[0] == '/' && pathname[1] == '/') { |
| 601 | // Skip host name. |
| 602 | next = strchr(pathname+2, '/'); |
| 603 | if (next == NULL) |
Reid Spencer | 3030099 | 2006-08-24 18:58:37 +0000 | [diff] [blame] | 604 | return PathMsg(ErrMsg, pathname, "badly formed remote directory"); |
| 605 | |
Reid Spencer | 6a0ec6f | 2004-09-29 00:01:17 +0000 | [diff] [blame] | 606 | // Skip share name. |
| 607 | next = strchr(next+1, '/'); |
| 608 | if (next == NULL) |
Reid Spencer | 3030099 | 2006-08-24 18:58:37 +0000 | [diff] [blame] | 609 | return PathMsg(ErrMsg, pathname,"badly formed remote directory"); |
| 610 | |
Reid Spencer | 6a0ec6f | 2004-09-29 00:01:17 +0000 | [diff] [blame] | 611 | next++; |
| 612 | if (*next == 0) |
Reid Spencer | 3030099 | 2006-08-24 18:58:37 +0000 | [diff] [blame] | 613 | return PathMsg(ErrMsg, pathname, "badly formed remote directory"); |
| 614 | |
Reid Spencer | 6a0ec6f | 2004-09-29 00:01:17 +0000 | [diff] [blame] | 615 | } else { |
| 616 | if (pathname[1] == ':') |
| 617 | next += 2; // skip drive letter |
| 618 | if (*next == '/') |
| 619 | next++; // skip root directory |
| 620 | } |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 621 | |
| 622 | // If we're supposed to create intermediate directories |
Reid Spencer | 6a0ec6f | 2004-09-29 00:01:17 +0000 | [diff] [blame] | 623 | if (create_parents) { |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 624 | // Loop through the directory components until we're done |
Reid Spencer | 6a0ec6f | 2004-09-29 00:01:17 +0000 | [diff] [blame] | 625 | while (*next) { |
| 626 | next = strchr(next, '/'); |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 627 | *next = 0; |
Benjamin Kramer | e9684c6 | 2009-11-05 14:32:40 +0000 | [diff] [blame] | 628 | if (!CreateDirectory(pathname, NULL) && |
| 629 | GetLastError() != ERROR_ALREADY_EXISTS) |
Kovarththanan Rajaratnam | 16ceb3a | 2010-03-12 14:17:24 +0000 | [diff] [blame] | 630 | return MakeErrMsg(ErrMsg, |
Reid Spencer | 3030099 | 2006-08-24 18:58:37 +0000 | [diff] [blame] | 631 | std::string(pathname) + ": Can't create directory: "); |
Reid Spencer | 6a0ec6f | 2004-09-29 00:01:17 +0000 | [diff] [blame] | 632 | *next++ = '/'; |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 633 | } |
Reid Spencer | 6a0ec6f | 2004-09-29 00:01:17 +0000 | [diff] [blame] | 634 | } else { |
| 635 | // Drop trailing slash. |
Jeff Cohen | 8f0e8f2 | 2005-07-08 04:50:08 +0000 | [diff] [blame] | 636 | pathname[len-1] = 0; |
Benjamin Kramer | e9684c6 | 2009-11-05 14:32:40 +0000 | [diff] [blame] | 637 | if (!CreateDirectory(pathname, NULL) && |
| 638 | GetLastError() != ERROR_ALREADY_EXISTS) { |
Anton Korobeynikov | 7d51544 | 2006-09-01 20:35:17 +0000 | [diff] [blame] | 639 | return MakeErrMsg(ErrMsg, std::string(pathname) + ": Can't create directory: "); |
Reid Spencer | 6a0ec6f | 2004-09-29 00:01:17 +0000 | [diff] [blame] | 640 | } |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 641 | } |
Reid Spencer | 3030099 | 2006-08-24 18:58:37 +0000 | [diff] [blame] | 642 | return false; |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 643 | } |
| 644 | |
| 645 | bool |
Reid Spencer | 3030099 | 2006-08-24 18:58:37 +0000 | [diff] [blame] | 646 | Path::createFileOnDisk(std::string* ErrMsg) { |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 647 | // Create the file |
Reid Spencer | 6a0ec6f | 2004-09-29 00:01:17 +0000 | [diff] [blame] | 648 | HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW, |
Reid Spencer | d0c9e0e | 2004-09-18 19:29:16 +0000 | [diff] [blame] | 649 | FILE_ATTRIBUTE_NORMAL, NULL); |
| 650 | if (h == INVALID_HANDLE_VALUE) |
Reid Spencer | 3030099 | 2006-08-24 18:58:37 +0000 | [diff] [blame] | 651 | return MakeErrMsg(ErrMsg, path + ": Can't create file: "); |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 652 | |
Reid Spencer | d0c9e0e | 2004-09-18 19:29:16 +0000 | [diff] [blame] | 653 | CloseHandle(h); |
Reid Spencer | 3030099 | 2006-08-24 18:58:37 +0000 | [diff] [blame] | 654 | return false; |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 655 | } |
| 656 | |
| 657 | bool |
Chris Lattner | 0c33231 | 2006-07-28 22:29:50 +0000 | [diff] [blame] | 658 | Path::eraseFromDisk(bool remove_contents, std::string *ErrStr) const { |
Jeff Cohen | 3110289 | 2007-04-07 20:47:27 +0000 | [diff] [blame] | 659 | WIN32_FILE_ATTRIBUTE_DATA fi; |
| 660 | if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) |
| 661 | return true; |
Kovarththanan Rajaratnam | 16ceb3a | 2010-03-12 14:17:24 +0000 | [diff] [blame] | 662 | |
Jeff Cohen | 3110289 | 2007-04-07 20:47:27 +0000 | [diff] [blame] | 663 | if (fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) { |
Reid Spencer | 1cf2d04 | 2005-07-07 23:35:23 +0000 | [diff] [blame] | 664 | // If it doesn't exist, we're done. |
Jeff Cohen | 85c716f | 2005-07-08 05:02:13 +0000 | [diff] [blame] | 665 | if (!exists()) |
Chris Lattner | 0c33231 | 2006-07-28 22:29:50 +0000 | [diff] [blame] | 666 | return false; |
Reid Spencer | 1cf2d04 | 2005-07-07 23:35:23 +0000 | [diff] [blame] | 667 | |
Jeff Cohen | 8f0e8f2 | 2005-07-08 04:50:08 +0000 | [diff] [blame] | 668 | char *pathname = reinterpret_cast<char *>(_alloca(path.length()+3)); |
Reid Spencer | 1cf2d04 | 2005-07-07 23:35:23 +0000 | [diff] [blame] | 669 | int lastchar = path.length() - 1 ; |
Jeff Cohen | 8f0e8f2 | 2005-07-08 04:50:08 +0000 | [diff] [blame] | 670 | path.copy(pathname, lastchar+1); |
Reid Spencer | 1cf2d04 | 2005-07-07 23:35:23 +0000 | [diff] [blame] | 671 | |
| 672 | // Make path end with '/*'. |
Jeff Cohen | 8f0e8f2 | 2005-07-08 04:50:08 +0000 | [diff] [blame] | 673 | if (pathname[lastchar] != '/') |
| 674 | pathname[++lastchar] = '/'; |
Reid Spencer | 1cf2d04 | 2005-07-07 23:35:23 +0000 | [diff] [blame] | 675 | pathname[lastchar+1] = '*'; |
| 676 | pathname[lastchar+2] = 0; |
| 677 | |
| 678 | if (remove_contents) { |
| 679 | WIN32_FIND_DATA fd; |
| 680 | HANDLE h = FindFirstFile(pathname, &fd); |
| 681 | |
| 682 | // It's a bad idea to alter the contents of a directory while enumerating |
| 683 | // its contents. So build a list of its contents first, then destroy them. |
| 684 | |
| 685 | if (h != INVALID_HANDLE_VALUE) { |
| 686 | std::vector<Path> list; |
| 687 | |
| 688 | do { |
| 689 | if (strcmp(fd.cFileName, ".") == 0) |
| 690 | continue; |
| 691 | if (strcmp(fd.cFileName, "..") == 0) |
| 692 | continue; |
| 693 | |
Jeff Cohen | 85c716f | 2005-07-08 05:02:13 +0000 | [diff] [blame] | 694 | Path aPath(path); |
| 695 | aPath.appendComponent(&fd.cFileName[0]); |
Reid Spencer | 1cf2d04 | 2005-07-07 23:35:23 +0000 | [diff] [blame] | 696 | list.push_back(aPath); |
| 697 | } while (FindNextFile(h, &fd)); |
| 698 | |
| 699 | DWORD err = GetLastError(); |
| 700 | FindClose(h); |
| 701 | if (err != ERROR_NO_MORE_FILES) { |
| 702 | SetLastError(err); |
Reid Spencer | 0554575 | 2006-08-25 21:37:17 +0000 | [diff] [blame] | 703 | return MakeErrMsg(ErrStr, path + ": Can't read directory: "); |
Reid Spencer | 1cf2d04 | 2005-07-07 23:35:23 +0000 | [diff] [blame] | 704 | } |
| 705 | |
Jeff Cohen | 85c716f | 2005-07-08 05:02:13 +0000 | [diff] [blame] | 706 | for (std::vector<Path>::iterator I = list.begin(); I != list.end(); |
Reid Spencer | 1cf2d04 | 2005-07-07 23:35:23 +0000 | [diff] [blame] | 707 | ++I) { |
| 708 | Path &aPath = *I; |
Reid Spencer | a229c5c | 2005-07-08 03:08:58 +0000 | [diff] [blame] | 709 | aPath.eraseFromDisk(true); |
Reid Spencer | 1cf2d04 | 2005-07-07 23:35:23 +0000 | [diff] [blame] | 710 | } |
| 711 | } else { |
| 712 | if (GetLastError() != ERROR_FILE_NOT_FOUND) |
Reid Spencer | 0554575 | 2006-08-25 21:37:17 +0000 | [diff] [blame] | 713 | return MakeErrMsg(ErrStr, path + ": Can't read directory: "); |
Reid Spencer | 1cf2d04 | 2005-07-07 23:35:23 +0000 | [diff] [blame] | 714 | } |
| 715 | } |
| 716 | |
| 717 | pathname[lastchar] = 0; |
| 718 | if (!RemoveDirectory(pathname)) |
Kovarththanan Rajaratnam | 16ceb3a | 2010-03-12 14:17:24 +0000 | [diff] [blame] | 719 | return MakeErrMsg(ErrStr, |
Reid Spencer | 0554575 | 2006-08-25 21:37:17 +0000 | [diff] [blame] | 720 | std::string(pathname) + ": Can't destroy directory: "); |
Chris Lattner | 0c33231 | 2006-07-28 22:29:50 +0000 | [diff] [blame] | 721 | return false; |
Jeff Cohen | 3110289 | 2007-04-07 20:47:27 +0000 | [diff] [blame] | 722 | } else { |
| 723 | // Read-only files cannot be deleted on Windows. Must remove the read-only |
| 724 | // attribute first. |
| 725 | if (fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) { |
| 726 | if (!SetFileAttributes(path.c_str(), |
| 727 | fi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY)) |
| 728 | return MakeErrMsg(ErrStr, path + ": Can't destroy file: "); |
| 729 | } |
| 730 | |
| 731 | if (!DeleteFile(path.c_str())) |
| 732 | return MakeErrMsg(ErrStr, path + ": Can't destroy file: "); |
| 733 | return false; |
| 734 | } |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 735 | } |
| 736 | |
Reid Spencer | 3b0cc78 | 2004-12-14 18:42:13 +0000 | [diff] [blame] | 737 | bool Path::getMagicNumber(std::string& Magic, unsigned len) const { |
Reid Spencer | 3b0cc78 | 2004-12-14 18:42:13 +0000 | [diff] [blame] | 738 | assert(len < 1024 && "Request for magic string too long"); |
Michael J. Spencer | 1211d43 | 2010-08-31 06:36:33 +0000 | [diff] [blame] | 739 | char* buf = reinterpret_cast<char*>(alloca(len)); |
Jeff Cohen | 51b8d21 | 2004-12-31 19:01:08 +0000 | [diff] [blame] | 740 | |
| 741 | HANDLE h = CreateFile(path.c_str(), |
| 742 | GENERIC_READ, |
| 743 | FILE_SHARE_READ, |
| 744 | NULL, |
| 745 | OPEN_EXISTING, |
| 746 | FILE_ATTRIBUTE_NORMAL, |
| 747 | NULL); |
| 748 | if (h == INVALID_HANDLE_VALUE) |
Reid Spencer | 3b0cc78 | 2004-12-14 18:42:13 +0000 | [diff] [blame] | 749 | return false; |
Jeff Cohen | 51b8d21 | 2004-12-31 19:01:08 +0000 | [diff] [blame] | 750 | |
| 751 | DWORD nRead = 0; |
| 752 | BOOL ret = ReadFile(h, buf, len, &nRead, NULL); |
| 753 | CloseHandle(h); |
| 754 | |
| 755 | if (!ret || nRead != len) |
Reid Spencer | 3b0cc78 | 2004-12-14 18:42:13 +0000 | [diff] [blame] | 756 | return false; |
Jeff Cohen | 51b8d21 | 2004-12-31 19:01:08 +0000 | [diff] [blame] | 757 | |
Michael J. Spencer | 1211d43 | 2010-08-31 06:36:33 +0000 | [diff] [blame] | 758 | Magic = std::string(buf, len); |
Reid Spencer | 3b0cc78 | 2004-12-14 18:42:13 +0000 | [diff] [blame] | 759 | return true; |
| 760 | } |
| 761 | |
Jeff Cohen | ebcb9b3 | 2004-12-31 04:39:07 +0000 | [diff] [blame] | 762 | bool |
Reid Spencer | 5a06077 | 2006-08-23 07:30:48 +0000 | [diff] [blame] | 763 | Path::renamePathOnDisk(const Path& newName, std::string* ErrMsg) { |
Francois Pichet | 3eddd98 | 2010-09-30 00:44:58 +0000 | [diff] [blame] | 764 | if (!MoveFileEx(path.c_str(), newName.c_str(), MOVEFILE_REPLACE_EXISTING)) |
| 765 | return MakeErrMsg(ErrMsg, "Can't move '" + path + "' to '" + newName.path |
| 766 | + "': "); |
| 767 | return false; |
Jeff Cohen | ebcb9b3 | 2004-12-31 04:39:07 +0000 | [diff] [blame] | 768 | } |
| 769 | |
| 770 | bool |
Anton Korobeynikov | 7d51544 | 2006-09-01 20:35:17 +0000 | [diff] [blame] | 771 | Path::setStatusInfoOnDisk(const FileStatus &si, std::string *ErrMsg) const { |
Jeff Cohen | 966fa41 | 2005-07-09 18:42:49 +0000 | [diff] [blame] | 772 | // FIXME: should work on directories also. |
Anton Korobeynikov | 7d51544 | 2006-09-01 20:35:17 +0000 | [diff] [blame] | 773 | if (!si.isFile) { |
| 774 | return true; |
| 775 | } |
Kovarththanan Rajaratnam | 16ceb3a | 2010-03-12 14:17:24 +0000 | [diff] [blame] | 776 | |
Jeff Cohen | ebcb9b3 | 2004-12-31 04:39:07 +0000 | [diff] [blame] | 777 | HANDLE h = CreateFile(path.c_str(), |
| 778 | FILE_READ_ATTRIBUTES | FILE_WRITE_ATTRIBUTES, |
| 779 | FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, |
Jeff Cohen | d40a7de | 2004-12-31 05:07:26 +0000 | [diff] [blame] | 780 | NULL, |
| 781 | OPEN_EXISTING, |
| 782 | FILE_ATTRIBUTE_NORMAL, |
| 783 | NULL); |
Jeff Cohen | ebcb9b3 | 2004-12-31 04:39:07 +0000 | [diff] [blame] | 784 | if (h == INVALID_HANDLE_VALUE) |
Chris Lattner | 1bebfb5 | 2006-07-28 22:36:17 +0000 | [diff] [blame] | 785 | return true; |
Jeff Cohen | ebcb9b3 | 2004-12-31 04:39:07 +0000 | [diff] [blame] | 786 | |
| 787 | BY_HANDLE_FILE_INFORMATION bhfi; |
| 788 | if (!GetFileInformationByHandle(h, &bhfi)) { |
Jeff Cohen | 51b8d21 | 2004-12-31 19:01:08 +0000 | [diff] [blame] | 789 | DWORD err = GetLastError(); |
Jeff Cohen | ebcb9b3 | 2004-12-31 04:39:07 +0000 | [diff] [blame] | 790 | CloseHandle(h); |
Jeff Cohen | 51b8d21 | 2004-12-31 19:01:08 +0000 | [diff] [blame] | 791 | SetLastError(err); |
Anton Korobeynikov | 7d51544 | 2006-09-01 20:35:17 +0000 | [diff] [blame] | 792 | return MakeErrMsg(ErrMsg, path + ": GetFileInformationByHandle: "); |
Jeff Cohen | ebcb9b3 | 2004-12-31 04:39:07 +0000 | [diff] [blame] | 793 | } |
| 794 | |
Michael J. Spencer | 44edb0b | 2010-08-28 16:39:32 +0000 | [diff] [blame] | 795 | ULARGE_INTEGER ui; |
| 796 | ui.QuadPart = si.modTime.toWin32Time(); |
Jeff Cohen | ebcb9b3 | 2004-12-31 04:39:07 +0000 | [diff] [blame] | 797 | FILETIME ft; |
Michael J. Spencer | 44edb0b | 2010-08-28 16:39:32 +0000 | [diff] [blame] | 798 | ft.dwLowDateTime = ui.LowPart; |
| 799 | ft.dwHighDateTime = ui.HighPart; |
Jeff Cohen | ebcb9b3 | 2004-12-31 04:39:07 +0000 | [diff] [blame] | 800 | BOOL ret = SetFileTime(h, NULL, &ft, &ft); |
Jeff Cohen | 51b8d21 | 2004-12-31 19:01:08 +0000 | [diff] [blame] | 801 | DWORD err = GetLastError(); |
Jeff Cohen | ebcb9b3 | 2004-12-31 04:39:07 +0000 | [diff] [blame] | 802 | CloseHandle(h); |
Jeff Cohen | 51b8d21 | 2004-12-31 19:01:08 +0000 | [diff] [blame] | 803 | if (!ret) { |
| 804 | SetLastError(err); |
Anton Korobeynikov | 7d51544 | 2006-09-01 20:35:17 +0000 | [diff] [blame] | 805 | return MakeErrMsg(ErrMsg, path + ": SetFileTime: "); |
Jeff Cohen | 51b8d21 | 2004-12-31 19:01:08 +0000 | [diff] [blame] | 806 | } |
Jeff Cohen | ebcb9b3 | 2004-12-31 04:39:07 +0000 | [diff] [blame] | 807 | |
| 808 | // Best we can do with Unix permission bits is to interpret the owner |
| 809 | // writable bit. |
| 810 | if (si.mode & 0200) { |
| 811 | if (bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) { |
| 812 | if (!SetFileAttributes(path.c_str(), |
Jeff Cohen | d40a7de | 2004-12-31 05:07:26 +0000 | [diff] [blame] | 813 | bhfi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY)) |
Anton Korobeynikov | 7d51544 | 2006-09-01 20:35:17 +0000 | [diff] [blame] | 814 | return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: "); |
Jeff Cohen | ebcb9b3 | 2004-12-31 04:39:07 +0000 | [diff] [blame] | 815 | } |
| 816 | } else { |
| 817 | if (!(bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY)) { |
| 818 | if (!SetFileAttributes(path.c_str(), |
Jeff Cohen | d40a7de | 2004-12-31 05:07:26 +0000 | [diff] [blame] | 819 | bhfi.dwFileAttributes | FILE_ATTRIBUTE_READONLY)) |
Anton Korobeynikov | 7d51544 | 2006-09-01 20:35:17 +0000 | [diff] [blame] | 820 | return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: "); |
Jeff Cohen | ebcb9b3 | 2004-12-31 04:39:07 +0000 | [diff] [blame] | 821 | } |
| 822 | } |
| 823 | |
Chris Lattner | 1bebfb5 | 2006-07-28 22:36:17 +0000 | [diff] [blame] | 824 | return false; |
Jeff Cohen | ebcb9b3 | 2004-12-31 04:39:07 +0000 | [diff] [blame] | 825 | } |
| 826 | |
Reid Spencer | 3030099 | 2006-08-24 18:58:37 +0000 | [diff] [blame] | 827 | bool |
| 828 | CopyFile(const sys::Path &Dest, const sys::Path &Src, std::string* ErrMsg) { |
Jeff Cohen | cb65255 | 2004-12-24 02:38:34 +0000 | [diff] [blame] | 829 | // Can't use CopyFile macro defined in Windows.h because it would mess up the |
| 830 | // above line. We use the expansion it would have in a non-UNICODE build. |
| 831 | if (!::CopyFileA(Src.c_str(), Dest.c_str(), false)) |
Chris Lattner | 74382b7 | 2009-08-23 22:45:37 +0000 | [diff] [blame] | 832 | return MakeErrMsg(ErrMsg, "Can't copy '" + Src.str() + |
| 833 | "' to '" + Dest.str() + "': "); |
Reid Spencer | 3030099 | 2006-08-24 18:58:37 +0000 | [diff] [blame] | 834 | return false; |
Reid Spencer | c29befb | 2004-12-15 01:50:13 +0000 | [diff] [blame] | 835 | } |
| 836 | |
Reid Spencer | 3030099 | 2006-08-24 18:58:37 +0000 | [diff] [blame] | 837 | bool |
| 838 | Path::makeUnique(bool reuse_current, std::string* ErrMsg) { |
Reid Spencer | 07f9f4e | 2004-12-15 08:32:45 +0000 | [diff] [blame] | 839 | if (reuse_current && !exists()) |
Reid Spencer | 3030099 | 2006-08-24 18:58:37 +0000 | [diff] [blame] | 840 | return false; // File doesn't exist already, just use it! |
Reid Spencer | c29befb | 2004-12-15 01:50:13 +0000 | [diff] [blame] | 841 | |
Jeff Cohen | 9437bb6 | 2005-01-27 03:49:03 +0000 | [diff] [blame] | 842 | // Reserve space for -XXXXXX at the end. |
| 843 | char *FNBuffer = (char*) alloca(path.size()+8); |
| 844 | unsigned offset = path.size(); |
| 845 | path.copy(FNBuffer, offset); |
Reid Spencer | c29befb | 2004-12-15 01:50:13 +0000 | [diff] [blame] | 846 | |
Jeff Cohen | 966fa41 | 2005-07-09 18:42:49 +0000 | [diff] [blame] | 847 | // Find a numeric suffix that isn't used by an existing file. Assume there |
| 848 | // won't be more than 1 million files with the same prefix. Probably a safe |
| 849 | // bet. |
Jeff Cohen | 9437bb6 | 2005-01-27 03:49:03 +0000 | [diff] [blame] | 850 | static unsigned FCounter = 0; |
| 851 | do { |
| 852 | sprintf(FNBuffer+offset, "-%06u", FCounter); |
| 853 | if (++FCounter > 999999) |
| 854 | FCounter = 0; |
| 855 | path = FNBuffer; |
| 856 | } while (exists()); |
Reid Spencer | 3030099 | 2006-08-24 18:58:37 +0000 | [diff] [blame] | 857 | return false; |
Reid Spencer | c29befb | 2004-12-15 01:50:13 +0000 | [diff] [blame] | 858 | } |
| 859 | |
Reid Spencer | 07f9f4e | 2004-12-15 08:32:45 +0000 | [diff] [blame] | 860 | bool |
Reid Spencer | 3030099 | 2006-08-24 18:58:37 +0000 | [diff] [blame] | 861 | Path::createTemporaryFileOnDisk(bool reuse_current, std::string* ErrMsg) { |
Reid Spencer | 07f9f4e | 2004-12-15 08:32:45 +0000 | [diff] [blame] | 862 | // Make this into a unique file name |
Anton Korobeynikov | 7d51544 | 2006-09-01 20:35:17 +0000 | [diff] [blame] | 863 | makeUnique(reuse_current, ErrMsg); |
Jeff Cohen | 9437bb6 | 2005-01-27 03:49:03 +0000 | [diff] [blame] | 864 | |
| 865 | // Now go and create it |
| 866 | HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW, |
| 867 | FILE_ATTRIBUTE_NORMAL, NULL); |
| 868 | if (h == INVALID_HANDLE_VALUE) |
Anton Korobeynikov | 7d51544 | 2006-09-01 20:35:17 +0000 | [diff] [blame] | 869 | return MakeErrMsg(ErrMsg, path + ": can't create file"); |
Jeff Cohen | 9437bb6 | 2005-01-27 03:49:03 +0000 | [diff] [blame] | 870 | |
| 871 | CloseHandle(h); |
Reid Spencer | 3030099 | 2006-08-24 18:58:37 +0000 | [diff] [blame] | 872 | return false; |
Reid Spencer | 07f9f4e | 2004-12-15 08:32:45 +0000 | [diff] [blame] | 873 | } |
| 874 | |
Chris Lattner | 799ed10 | 2008-04-01 06:00:12 +0000 | [diff] [blame] | 875 | /// MapInFilePages - Not yet implemented on win32. |
| 876 | const char *Path::MapInFilePages(int FD, uint64_t FileSize) { |
| 877 | return 0; |
| 878 | } |
| 879 | |
| 880 | /// MapInFilePages - Not yet implemented on win32. |
| 881 | void Path::UnMapFilePages(const char *Base, uint64_t FileSize) { |
| 882 | assert(0 && "NOT IMPLEMENTED"); |
| 883 | } |
| 884 | |
Reid Spencer | b016a37 | 2004-09-15 05:49:50 +0000 | [diff] [blame] | 885 | } |
Reid Spencer | cbad701 | 2004-09-11 04:59:30 +0000 | [diff] [blame] | 886 | } |