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