blob: ea6d4639ba7e6aa2cbe1166696f53be5207c2ebf [file] [log] [blame]
Argyrios Kyrtzidis4bd32252008-06-16 10:14:09 +00001//===- llvm/System/Win32/Path.cpp - Win32 Path Implementation ---*- C++ -*-===//
Reid Spencerb016a372004-09-15 05:49:50 +00002//
Reid Spencercbad7012004-09-11 04:59:30 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencerb016a372004-09-15 05:49:50 +00007//
8// Modified by Henrik Bach to comply with at least MinGW.
Reid Spencerd0c9e0e2004-09-18 19:29:16 +00009// Ported to Win32 by Jeff Cohen.
Reid Spencerb016a372004-09-15 05:49:50 +000010//
Reid Spencercbad7012004-09-11 04:59:30 +000011//===----------------------------------------------------------------------===//
12//
13// This file provides the Win32 specific implementation of the Path class.
14//
15//===----------------------------------------------------------------------===//
16
17//===----------------------------------------------------------------------===//
Reid Spencerb016a372004-09-15 05:49:50 +000018//=== WARNING: Implementation here must contain only generic Win32 code that
19//=== is guaranteed to work on *all* Win32 variants.
Reid Spencercbad7012004-09-11 04:59:30 +000020//===----------------------------------------------------------------------===//
21
Reid Spencerd0c9e0e2004-09-18 19:29:16 +000022#include "Win32.h"
Reid Spencerd0c9e0e2004-09-18 19:29:16 +000023#include <malloc.h>
Chris Lattnerc23c1fc2009-04-01 02:03:38 +000024#include <cstdio>
Reid Spencercbad7012004-09-11 04:59:30 +000025
Jeff Cohencb652552004-12-24 02:38:34 +000026// We need to undo a macro defined in Windows.h, otherwise we won't compile:
27#undef CopyFile
Anton Korobeynikov64ddbe42007-12-22 14:26:49 +000028#undef GetCurrentDirectory
Jeff Cohencb652552004-12-24 02:38:34 +000029
Jeff Cohen966fa412005-07-09 18:42:49 +000030// 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 Spencer6a0ec6f2004-09-29 00:01:17 +000040static 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 Spencercbad7012004-09-11 04:59:30 +000046namespace llvm {
Reid Spencerb016a372004-09-15 05:49:50 +000047namespace sys {
Mikhail Glushenkovf5a95ce2010-11-02 20:32:26 +000048
Chris Lattnera17fa282008-03-13 05:17:59 +000049const char PathSeparator = ';';
Chris Lattnere1b332a2008-02-27 06:17:10 +000050
Mikhail Glushenkovf5a95ce2010-11-02 20:32:26 +000051StringRef Path::GetEXESuffix() {
52 return "exe";
53}
54
Daniel Dunbar1edcafe2009-12-18 19:59:48 +000055Path::Path(llvm::StringRef p)
Nick Lewyckyfff116f2008-05-11 17:37:40 +000056 : path(p) {
57 FlipBackSlashes(path);
58}
59
60Path::Path(const char *StrStart, unsigned StrLen)
61 : path(StrStart, StrLen) {
62 FlipBackSlashes(path);
63}
64
Chris Lattner0eab5e22008-08-11 23:39:47 +000065Path&
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +000066Path::operator=(StringRef that) {
67 path.assign(that.data(), that.size());
Chris Lattner0eab5e22008-08-11 23:39:47 +000068 FlipBackSlashes(path);
69 return *this;
70}
71
Michael J. Spencera9cf7b82010-10-20 15:23:58 +000072// push_back 0 on create, and pop_back on delete.
73struct ScopedNullTerminator {
74 std::string &str;
75 ScopedNullTerminator(std::string &s) : str(s) { str.push_back(0); }
Michael J. Spencer9f608b12010-10-20 16:00:45 +000076 ~ScopedNullTerminator() {
77 // str.pop_back(); But wait, C++03 doesn't have this...
78 assert(!str.empty() && str[str.size() - 1] == 0
79 && "Null char not present!");
80 str.resize(str.size() - 1);
81 }
Michael J. Spencera9cf7b82010-10-20 15:23:58 +000082};
83
Reid Spencerb016a372004-09-15 05:49:50 +000084bool
Reid Spencer07adb282004-11-05 22:15:36 +000085Path::isValid() const {
Reid Spencerb016a372004-09-15 05:49:50 +000086 if (path.empty())
87 return false;
Reid Spencerd0c9e0e2004-09-18 19:29:16 +000088
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000089 // If there is a colon, it must be the second character, preceded by a letter
90 // and followed by something.
91 size_t len = path.size();
Michael J. Spencera9cf7b82010-10-20 15:23:58 +000092 // This code assumes that path is null terminated, so make sure it is.
93 ScopedNullTerminator snt(path);
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000094 size_t pos = path.rfind(':',len);
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000095 size_t rootslash = 0;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000096 if (pos != std::string::npos) {
97 if (pos != 1 || !isalpha(path[0]) || len < 3)
98 return false;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000099 rootslash = 2;
100 }
Jeff Cohen85c716f2005-07-08 05:02:13 +0000101
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000102 // Look for a UNC path, and if found adjust our notion of the root slash.
103 if (len > 3 && path[0] == '/' && path[1] == '/') {
104 rootslash = path.find('/', 2);
105 if (rootslash == std::string::npos)
106 rootslash = 0;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000107 }
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000108
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000109 // Check for illegal characters.
110 if (path.find_first_of("\\<>\"|\001\002\003\004\005\006\007\010\011\012"
111 "\013\014\015\016\017\020\021\022\023\024\025\026"
112 "\027\030\031\032\033\034\035\036\037")
113 != std::string::npos)
114 return false;
Jeff Cohen85c716f2005-07-08 05:02:13 +0000115
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000116 // Remove trailing slash, unless it's a root slash.
117 if (len > rootslash+1 && path[len-1] == '/')
118 path.erase(--len);
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000119
Jeff Cohen3bbbcc12005-01-14 04:09:39 +0000120 // Check each component for legality.
121 for (pos = 0; pos < len; ++pos) {
122 // A component may not end in a space.
123 if (path[pos] == ' ') {
124 if (path[pos+1] == '/' || path[pos+1] == '\0')
125 return false;
126 }
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000127
Jeff Cohen3bbbcc12005-01-14 04:09:39 +0000128 // A component may not end in a period.
129 if (path[pos] == '.') {
130 if (path[pos+1] == '/' || path[pos+1] == '\0') {
131 // Unless it is the pseudo-directory "."...
132 if (pos == 0 || path[pos-1] == '/' || path[pos-1] == ':')
133 return true;
134 // or "..".
135 if (pos > 0 && path[pos-1] == '.') {
136 if (pos == 1 || path[pos-2] == '/' || path[pos-2] == ':')
137 return true;
138 }
139 return false;
140 }
141 }
142 }
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000143
144 return true;
Reid Spencercbad7012004-09-11 04:59:30 +0000145}
146
Daniel Dunbara00e85c2009-07-12 20:23:56 +0000147void Path::makeAbsolute() {
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000148 TCHAR FullPath[MAX_PATH + 1] = {0};
Daniel Dunbara00e85c2009-07-12 20:23:56 +0000149 LPTSTR FilePart = NULL;
150
151 DWORD RetLength = ::GetFullPathNameA(path.c_str(),
152 sizeof(FullPath)/sizeof(FullPath[0]),
153 FullPath, &FilePart);
154
155 if (0 == RetLength) {
156 // FIXME: Report the error GetLastError()
Daniel Dunbar2749b3e2009-07-26 21:16:42 +0000157 assert(0 && "Unable to make absolute path!");
Daniel Dunbara00e85c2009-07-12 20:23:56 +0000158 } else if (RetLength > MAX_PATH) {
159 // FIXME: Report too small buffer (needed RetLength bytes).
Daniel Dunbar2749b3e2009-07-26 21:16:42 +0000160 assert(0 && "Unable to make absolute path!");
Daniel Dunbara00e85c2009-07-12 20:23:56 +0000161 } else {
162 path = FullPath;
163 }
164}
165
Chris Lattner88d7e402009-06-15 04:17:07 +0000166bool
167Path::isAbsolute(const char *NameStart, unsigned NameLen) {
168 assert(NameStart);
Daniel Dunbara00e85c2009-07-12 20:23:56 +0000169 // FIXME: This does not handle correctly an absolute path starting from
170 // a drive letter or in UNC format.
Chris Lattner88d7e402009-06-15 04:17:07 +0000171 switch (NameLen) {
172 case 0:
173 return false;
174 case 1:
175 case 2:
176 return NameStart[0] == '/';
177 default:
Mikhail Glushenkov0f2ec152010-11-02 20:32:31 +0000178 return
179 (NameStart[0] == '/' || (NameStart[1] == ':' && NameStart[2] == '/')) ||
180 (NameStart[0] == '\\' || (NameStart[1] == ':' && NameStart[2] == '\\'));
Chris Lattner88d7e402009-06-15 04:17:07 +0000181 }
182}
183
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000184bool
Reid Spencer69cce812007-03-29 16:43:20 +0000185Path::isAbsolute() const {
Daniel Dunbara00e85c2009-07-12 20:23:56 +0000186 // FIXME: This does not handle correctly an absolute path starting from
187 // a drive letter or in UNC format.
Jeff Cohen84892be2007-03-29 17:27:38 +0000188 switch (path.length()) {
189 case 0:
190 return false;
191 case 1:
192 case 2:
193 return path[0] == '/';
194 default:
195 return path[0] == '/' || (path[1] == ':' && path[2] == '/');
196 }
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000197}
Reid Spencer69cce812007-03-29 16:43:20 +0000198
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000199static Path *TempDirectory;
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000200
Reid Spencerb016a372004-09-15 05:49:50 +0000201Path
Reid Spencercab0e432006-08-22 22:46:39 +0000202Path::GetTemporaryDirectory(std::string* ErrMsg) {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000203 if (TempDirectory)
204 return *TempDirectory;
205
206 char pathname[MAX_PATH];
Reid Spencercab0e432006-08-22 22:46:39 +0000207 if (!GetTempPath(MAX_PATH, pathname)) {
208 if (ErrMsg)
209 *ErrMsg = "Can't determine temporary directory";
210 return Path();
211 }
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000212
Reid Spencerb016a372004-09-15 05:49:50 +0000213 Path result;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000214 result.set(pathname);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000215
216 // Append a subdirectory passed on our process id so multiple LLVMs don't
217 // step on each other's toes.
Jeff Cohend41b30d2006-11-05 19:31:28 +0000218#ifdef __MINGW32__
219 // Mingw's Win32 header files are broken.
Reid Spencerab4d9b02006-06-08 18:08:43 +0000220 sprintf(pathname, "LLVM_%u", unsigned(GetCurrentProcessId()));
Jeff Cohend41b30d2006-11-05 19:31:28 +0000221#else
222 sprintf(pathname, "LLVM_%u", GetCurrentProcessId());
223#endif
Jeff Cohenedb9d6b2005-07-08 02:48:42 +0000224 result.appendComponent(pathname);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000225
226 // If there's a directory left over from a previous LLVM execution that
227 // happened to have the same process id, get rid of it.
Reid Spencera229c5c2005-07-08 03:08:58 +0000228 result.eraseFromDisk(true);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000229
230 // And finally (re-)create the empty directory.
Reid Spencera229c5c2005-07-08 03:08:58 +0000231 result.createDirectoryOnDisk(false);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000232 TempDirectory = new Path(result);
233 return *TempDirectory;
Reid Spencerb016a372004-09-15 05:49:50 +0000234}
235
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000236// FIXME: the following set of functions don't map to Windows very well.
Reid Spencerb016a372004-09-15 05:49:50 +0000237Path
238Path::GetRootDirectory() {
239 Path result;
Jeff Cohen966fa412005-07-09 18:42:49 +0000240 result.set("C:/");
Reid Spencerb016a372004-09-15 05:49:50 +0000241 return result;
242}
243
Jeff Cohen85c716f2005-07-08 05:02:13 +0000244void
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000245Path::GetSystemLibraryPaths(std::vector<sys::Path>& Paths) {
Jeff Cohen966fa412005-07-09 18:42:49 +0000246 Paths.push_back(sys::Path("C:/WINDOWS/SYSTEM32"));
247 Paths.push_back(sys::Path("C:/WINDOWS"));
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000248}
249
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000250void
Gabor Greifdb5565a2007-07-06 20:28:40 +0000251Path::GetBitcodeLibraryPaths(std::vector<sys::Path>& Paths) {
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000252 char * env_var = getenv("LLVM_LIB_SEARCH_PATH");
253 if (env_var != 0) {
254 getPathList(env_var,Paths);
255 }
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000256#ifdef LLVM_LIBDIR
257 {
258 Path tmpPath;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000259 if (tmpPath.set(LLVM_LIBDIR))
Reid Spencerc7f08322005-07-07 18:21:42 +0000260 if (tmpPath.canRead())
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000261 Paths.push_back(tmpPath);
262 }
263#endif
264 GetSystemLibraryPaths(Paths);
Reid Spencerb016a372004-09-15 05:49:50 +0000265}
266
267Path
268Path::GetLLVMDefaultConfigDir() {
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000269 // TODO: this isn't going to fly on Windows
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000270 return Path("/etc/llvm");
Reid Spencerb016a372004-09-15 05:49:50 +0000271}
272
273Path
Reid Spencerb016a372004-09-15 05:49:50 +0000274Path::GetUserHomeDirectory() {
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000275 // TODO: Typical Windows setup doesn't define HOME.
Reid Spencerb016a372004-09-15 05:49:50 +0000276 const char* home = getenv("HOME");
277 if (home) {
278 Path result;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000279 if (result.set(home))
Reid Spencerb016a372004-09-15 05:49:50 +0000280 return result;
281 }
282 return GetRootDirectory();
283}
Ted Kremenek79200782007-12-18 22:07:33 +0000284
285Path
286Path::GetCurrentDirectory() {
287 char pathname[MAX_PATH];
Anton Korobeynikov64ddbe42007-12-22 14:26:49 +0000288 ::GetCurrentDirectoryA(MAX_PATH,pathname);
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000289 return Path(pathname);
Ted Kremenek79200782007-12-18 22:07:33 +0000290}
291
Chris Lattner1a091442008-03-03 02:55:43 +0000292/// GetMainExecutable - Return the path to the main executable, given the
293/// value of argv[0] from program startup.
294Path Path::GetMainExecutable(const char *argv0, void *MainAddr) {
Chris Lattnerc5718d02009-06-15 05:38:04 +0000295 char pathname[MAX_PATH];
296 DWORD ret = ::GetModuleFileNameA(NULL, pathname, MAX_PATH);
297 return ret != MAX_PATH ? Path(pathname) : Path();
Chris Lattner1a091442008-03-03 02:55:43 +0000298}
299
Ted Kremenek79200782007-12-18 22:07:33 +0000300
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000301// FIXME: the above set of functions don't map to Windows very well.
302
Jeff Cohen966fa412005-07-09 18:42:49 +0000303
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000304StringRef Path::getDirname() const {
305 return getDirnameCharSep(path, "/");
Ted Kremenek9b01cc02008-04-07 22:01:32 +0000306}
Ted Kremenekcf55c8e2008-04-07 21:53:57 +0000307
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000308StringRef
Reid Spencer07adb282004-11-05 22:15:36 +0000309Path::getBasename() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000310 // Find the last slash
311 size_t slash = path.rfind('/');
312 if (slash == std::string::npos)
313 slash = 0;
314 else
315 slash++;
316
Jeff Cohen966fa412005-07-09 18:42:49 +0000317 size_t dot = path.rfind('.');
318 if (dot == std::string::npos || dot < slash)
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000319 return StringRef(path).substr(slash);
Jeff Cohen966fa412005-07-09 18:42:49 +0000320 else
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000321 return StringRef(path).substr(slash, dot - slash);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000322}
323
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000324StringRef
Argyrios Kyrtzidisfc199882008-06-15 15:15:19 +0000325Path::getSuffix() const {
326 // Find the last slash
327 size_t slash = path.rfind('/');
328 if (slash == std::string::npos)
329 slash = 0;
330 else
331 slash++;
332
333 size_t dot = path.rfind('.');
334 if (dot == std::string::npos || dot < slash)
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000335 return StringRef("");
Argyrios Kyrtzidisfc199882008-06-15 15:15:19 +0000336 else
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000337 return StringRef(path).substr(dot + 1);
Argyrios Kyrtzidisfc199882008-06-15 15:15:19 +0000338}
339
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000340bool
Reid Spencerb016a372004-09-15 05:49:50 +0000341Path::exists() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000342 DWORD attr = GetFileAttributes(path.c_str());
343 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000344}
345
346bool
Ted Kremenekfd527112007-12-18 19:46:22 +0000347Path::isDirectory() const {
348 DWORD attr = GetFileAttributes(path.c_str());
349 return (attr != INVALID_FILE_ATTRIBUTES) &&
350 (attr & FILE_ATTRIBUTE_DIRECTORY);
351}
352
353bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000354Path::canRead() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000355 // FIXME: take security attributes into account.
356 DWORD attr = GetFileAttributes(path.c_str());
357 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000358}
359
360bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000361Path::canWrite() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000362 // FIXME: take security attributes into account.
363 DWORD attr = GetFileAttributes(path.c_str());
364 return (attr != INVALID_FILE_ATTRIBUTES) && !(attr & FILE_ATTRIBUTE_READONLY);
Reid Spencerb016a372004-09-15 05:49:50 +0000365}
366
367bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000368Path::canExecute() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000369 // FIXME: take security attributes into account.
370 DWORD attr = GetFileAttributes(path.c_str());
371 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000372}
373
Edward O'Callaghand41e9442009-11-24 15:19:10 +0000374bool
Edward O'Callaghane49a8e42009-11-25 06:32:19 +0000375Path::isRegularFile() const {
376 if (isDirectory())
377 return false;
378 return true;
Edward O'Callaghand41e9442009-11-24 15:19:10 +0000379}
380
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000381StringRef
Reid Spencerb016a372004-09-15 05:49:50 +0000382Path::getLast() const {
383 // Find the last slash
384 size_t pos = path.rfind('/');
385
386 // Handle the corner cases
387 if (pos == std::string::npos)
388 return path;
389
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000390 // If the last character is a slash, we have a root directory
391 if (pos == path.length()-1)
392 return path;
393
Reid Spencerb016a372004-09-15 05:49:50 +0000394 // Return everything after the last slash
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000395 return StringRef(path).substr(pos+1);
Reid Spencerb016a372004-09-15 05:49:50 +0000396}
397
Reid Spencer8475ec02007-03-29 19:05:44 +0000398const FileStatus *
Reid Spencer2ae9d112007-04-07 18:52:17 +0000399PathWithStatus::getFileStatus(bool update, std::string *ErrStr) const {
400 if (!fsIsValid || update) {
Reid Spencer69cce812007-03-29 16:43:20 +0000401 WIN32_FILE_ATTRIBUTE_DATA fi;
Reid Spencer8475ec02007-03-29 19:05:44 +0000402 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) {
403 MakeErrMsg(ErrStr, "getStatusInfo():" + std::string(path) +
Reid Spencer69cce812007-03-29 16:43:20 +0000404 ": Can't get status: ");
Reid Spencer8475ec02007-03-29 19:05:44 +0000405 return 0;
406 }
Jeff Cohen626e38e2004-12-14 05:26:43 +0000407
Reid Spencer2ae9d112007-04-07 18:52:17 +0000408 status.fileSize = fi.nFileSizeHigh;
409 status.fileSize <<= sizeof(fi.nFileSizeHigh)*8;
410 status.fileSize += fi.nFileSizeLow;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000411
Reid Spencer2ae9d112007-04-07 18:52:17 +0000412 status.mode = fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY ? 0555 : 0777;
413 status.user = 9999; // Not applicable to Windows, so...
414 status.group = 9999; // Not applicable to Windows, so...
Jeff Cohen626e38e2004-12-14 05:26:43 +0000415
Reid Spencer4031bef2007-03-29 17:00:31 +0000416 // FIXME: this is only unique if the file is accessed by the same file path.
417 // How do we do this for C:\dir\file and ..\dir\file ? Unix has inode
418 // numbers, but the concept doesn't exist in Windows.
Reid Spencer2ae9d112007-04-07 18:52:17 +0000419 status.uniqueID = 0;
Reid Spencer4031bef2007-03-29 17:00:31 +0000420 for (unsigned i = 0; i < path.length(); ++i)
Reid Spencer2ae9d112007-04-07 18:52:17 +0000421 status.uniqueID += path[i];
Reid Spencer4031bef2007-03-29 17:00:31 +0000422
Michael J. Spencer44edb0b2010-08-28 16:39:32 +0000423 ULARGE_INTEGER ui;
424 ui.LowPart = fi.ftLastWriteTime.dwLowDateTime;
425 ui.HighPart = fi.ftLastWriteTime.dwHighDateTime;
426 status.modTime.fromWin32Time(ui.QuadPart);
Reid Spencer69cce812007-03-29 16:43:20 +0000427
Reid Spencer2ae9d112007-04-07 18:52:17 +0000428 status.isDir = fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY;
429 fsIsValid = true;
Reid Spencer69cce812007-03-29 16:43:20 +0000430 }
Reid Spencer2ae9d112007-04-07 18:52:17 +0000431 return &status;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000432}
433
Reid Spencera34a1572006-08-22 23:54:35 +0000434bool Path::makeReadableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000435 // All files are readable on Windows (ignoring security attributes).
Reid Spencera34a1572006-08-22 23:54:35 +0000436 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000437}
438
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000439bool Path::makeWriteableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000440 DWORD attr = GetFileAttributes(path.c_str());
441
442 // If it doesn't exist, we're done.
443 if (attr == INVALID_FILE_ATTRIBUTES)
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000444 return false;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000445
446 if (attr & FILE_ATTRIBUTE_READONLY) {
Reid Spencera34a1572006-08-22 23:54:35 +0000447 if (!SetFileAttributes(path.c_str(), attr & ~FILE_ATTRIBUTE_READONLY)) {
448 MakeErrMsg(ErrMsg, std::string(path) + ": Can't make file writable: ");
449 return true;
450 }
Jeff Cohen626e38e2004-12-14 05:26:43 +0000451 }
Reid Spencera34a1572006-08-22 23:54:35 +0000452 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000453}
454
Reid Spencera34a1572006-08-22 23:54:35 +0000455bool Path::makeExecutableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000456 // All files are executable on Windows (ignoring security attributes).
Reid Spencera34a1572006-08-22 23:54:35 +0000457 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000458}
459
Reid Spencerb016a372004-09-15 05:49:50 +0000460bool
Reid Spencer142ca8e2006-08-23 06:56:27 +0000461Path::getDirectoryContents(std::set<Path>& result, std::string* ErrMsg) const {
Jeff Cohen31102892007-04-07 20:47:27 +0000462 WIN32_FILE_ATTRIBUTE_DATA fi;
463 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) {
464 MakeErrMsg(ErrMsg, path + ": can't get status of file");
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000465 return true;
Jeff Cohen31102892007-04-07 20:47:27 +0000466 }
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000467
Jeff Cohen31102892007-04-07 20:47:27 +0000468 if (!(fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) {
469 if (ErrMsg)
470 *ErrMsg = path + ": not a directory";
Reid Spencer142ca8e2006-08-23 06:56:27 +0000471 return true;
472 }
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000473
474 result.clear();
475 WIN32_FIND_DATA fd;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000476 std::string searchpath = path;
477 if (path.size() == 0 || searchpath[path.size()-1] == '/')
Jeff Cohen85c716f2005-07-08 05:02:13 +0000478 searchpath += "*";
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000479 else
480 searchpath += "/*";
Jeff Cohen85c716f2005-07-08 05:02:13 +0000481
Jeff Cohen9437bb62005-01-27 03:49:03 +0000482 HANDLE h = FindFirstFile(searchpath.c_str(), &fd);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000483 if (h == INVALID_HANDLE_VALUE) {
Jeff Cohen9437bb62005-01-27 03:49:03 +0000484 if (GetLastError() == ERROR_FILE_NOT_FOUND)
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000485 return true; // not really an error, now is it?
Reid Spencer142ca8e2006-08-23 06:56:27 +0000486 MakeErrMsg(ErrMsg, path + ": Can't read directory: ");
487 return true;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000488 }
489
490 do {
Jeff Cohend40a7de2004-12-31 05:07:26 +0000491 if (fd.cFileName[0] == '.')
492 continue;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000493 Path aPath(path);
494 aPath.appendComponent(&fd.cFileName[0]);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000495 result.insert(aPath);
496 } while (FindNextFile(h, &fd));
497
Jeff Cohen51b8d212004-12-31 19:01:08 +0000498 DWORD err = GetLastError();
499 FindClose(h);
500 if (err != ERROR_NO_MORE_FILES) {
501 SetLastError(err);
Reid Spencer142ca8e2006-08-23 06:56:27 +0000502 MakeErrMsg(ErrMsg, path + ": Can't read directory: ");
503 return true;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000504 }
Reid Spencer142ca8e2006-08-23 06:56:27 +0000505 return false;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000506}
507
508bool
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000509Path::set(StringRef a_path) {
Dan Gohman30359592008-01-29 13:02:09 +0000510 if (a_path.empty())
Reid Spencerb016a372004-09-15 05:49:50 +0000511 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000512 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000513 path = a_path;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000514 FlipBackSlashes(path);
Reid Spencer07adb282004-11-05 22:15:36 +0000515 if (!isValid()) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000516 path = save;
Reid Spencerb016a372004-09-15 05:49:50 +0000517 return false;
518 }
519 return true;
520}
521
522bool
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000523Path::appendComponent(StringRef name) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000524 if (name.empty())
Reid Spencerb016a372004-09-15 05:49:50 +0000525 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000526 std::string save(path);
527 if (!path.empty()) {
528 size_t last = path.size() - 1;
Jeff Cohen85c716f2005-07-08 05:02:13 +0000529 if (path[last] != '/')
Reid Spencer1cf2d042005-07-07 23:35:23 +0000530 path += '/';
531 }
532 path += name;
Reid Spencer07adb282004-11-05 22:15:36 +0000533 if (!isValid()) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000534 path = save;
Reid Spencerb016a372004-09-15 05:49:50 +0000535 return false;
536 }
537 return true;
538}
539
540bool
Reid Spencer1cf2d042005-07-07 23:35:23 +0000541Path::eraseComponent() {
Reid Spencerb016a372004-09-15 05:49:50 +0000542 size_t slashpos = path.rfind('/',path.size());
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000543 if (slashpos == path.size() - 1 || slashpos == std::string::npos)
Reid Spencerb016a372004-09-15 05:49:50 +0000544 return false;
Jeff Cohen966fa412005-07-09 18:42:49 +0000545 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000546 path.erase(slashpos);
Jeff Cohen966fa412005-07-09 18:42:49 +0000547 if (!isValid()) {
548 path = save;
549 return false;
550 }
Reid Spencerb016a372004-09-15 05:49:50 +0000551 return true;
552}
553
554bool
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000555Path::appendSuffix(StringRef suffix) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000556 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000557 path.append(".");
558 path.append(suffix);
Reid Spencer07adb282004-11-05 22:15:36 +0000559 if (!isValid()) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000560 path = save;
Reid Spencerb016a372004-09-15 05:49:50 +0000561 return false;
562 }
563 return true;
564}
565
566bool
Reid Spencer1cf2d042005-07-07 23:35:23 +0000567Path::eraseSuffix() {
Reid Spencerb016a372004-09-15 05:49:50 +0000568 size_t dotpos = path.rfind('.',path.size());
569 size_t slashpos = path.rfind('/',path.size());
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000570 if (dotpos != std::string::npos) {
Jeff Cohen966fa412005-07-09 18:42:49 +0000571 if (slashpos == std::string::npos || dotpos > slashpos+1) {
572 std::string save(path);
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000573 path.erase(dotpos, path.size()-dotpos);
Jeff Cohen966fa412005-07-09 18:42:49 +0000574 if (!isValid()) {
575 path = save;
576 return false;
577 }
Jeff Cohen85c716f2005-07-08 05:02:13 +0000578 return true;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000579 }
Reid Spencerb016a372004-09-15 05:49:50 +0000580 }
581 return false;
582}
583
Reid Spencer30300992006-08-24 18:58:37 +0000584inline bool PathMsg(std::string* ErrMsg, const char* pathname, const char*msg) {
585 if (ErrMsg)
586 *ErrMsg = std::string(pathname) + ": " + std::string(msg);
587 return true;
588}
589
Reid Spencerb016a372004-09-15 05:49:50 +0000590bool
Reid Spencer30300992006-08-24 18:58:37 +0000591Path::createDirectoryOnDisk(bool create_parents, std::string* ErrMsg) {
Reid Spencerb016a372004-09-15 05:49:50 +0000592 // Get a writeable copy of the path name
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000593 size_t len = path.length();
594 char *pathname = reinterpret_cast<char *>(_alloca(len+2));
595 path.copy(pathname, len);
596 pathname[len] = 0;
Jeff Cohen85c716f2005-07-08 05:02:13 +0000597
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000598 // Make sure it ends with a slash.
599 if (len == 0 || pathname[len - 1] != '/') {
600 pathname[len] = '/';
601 pathname[++len] = 0;
602 }
Reid Spencerb016a372004-09-15 05:49:50 +0000603
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000604 // Determine starting point for initial / search.
605 char *next = pathname;
606 if (pathname[0] == '/' && pathname[1] == '/') {
607 // Skip host name.
608 next = strchr(pathname+2, '/');
609 if (next == NULL)
Reid Spencer30300992006-08-24 18:58:37 +0000610 return PathMsg(ErrMsg, pathname, "badly formed remote directory");
611
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000612 // Skip share name.
613 next = strchr(next+1, '/');
614 if (next == NULL)
Reid Spencer30300992006-08-24 18:58:37 +0000615 return PathMsg(ErrMsg, pathname,"badly formed remote directory");
616
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000617 next++;
618 if (*next == 0)
Reid Spencer30300992006-08-24 18:58:37 +0000619 return PathMsg(ErrMsg, pathname, "badly formed remote directory");
620
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000621 } else {
622 if (pathname[1] == ':')
623 next += 2; // skip drive letter
624 if (*next == '/')
625 next++; // skip root directory
626 }
Reid Spencerb016a372004-09-15 05:49:50 +0000627
628 // If we're supposed to create intermediate directories
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000629 if (create_parents) {
Reid Spencerb016a372004-09-15 05:49:50 +0000630 // Loop through the directory components until we're done
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000631 while (*next) {
632 next = strchr(next, '/');
Reid Spencerb016a372004-09-15 05:49:50 +0000633 *next = 0;
Benjamin Kramere9684c62009-11-05 14:32:40 +0000634 if (!CreateDirectory(pathname, NULL) &&
635 GetLastError() != ERROR_ALREADY_EXISTS)
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000636 return MakeErrMsg(ErrMsg,
Reid Spencer30300992006-08-24 18:58:37 +0000637 std::string(pathname) + ": Can't create directory: ");
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000638 *next++ = '/';
Reid Spencerb016a372004-09-15 05:49:50 +0000639 }
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000640 } else {
641 // Drop trailing slash.
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000642 pathname[len-1] = 0;
Benjamin Kramere9684c62009-11-05 14:32:40 +0000643 if (!CreateDirectory(pathname, NULL) &&
644 GetLastError() != ERROR_ALREADY_EXISTS) {
Mikhail Glushenkov0f2ec152010-11-02 20:32:31 +0000645 return MakeErrMsg(ErrMsg, std::string(pathname) +
646 ": Can't create directory: ");
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000647 }
Reid Spencerb016a372004-09-15 05:49:50 +0000648 }
Reid Spencer30300992006-08-24 18:58:37 +0000649 return false;
Reid Spencerb016a372004-09-15 05:49:50 +0000650}
651
652bool
Reid Spencer30300992006-08-24 18:58:37 +0000653Path::createFileOnDisk(std::string* ErrMsg) {
Reid Spencerb016a372004-09-15 05:49:50 +0000654 // Create the file
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000655 HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW,
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000656 FILE_ATTRIBUTE_NORMAL, NULL);
657 if (h == INVALID_HANDLE_VALUE)
Reid Spencer30300992006-08-24 18:58:37 +0000658 return MakeErrMsg(ErrMsg, path + ": Can't create file: ");
Reid Spencerb016a372004-09-15 05:49:50 +0000659
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000660 CloseHandle(h);
Reid Spencer30300992006-08-24 18:58:37 +0000661 return false;
Reid Spencerb016a372004-09-15 05:49:50 +0000662}
663
664bool
Chris Lattner0c332312006-07-28 22:29:50 +0000665Path::eraseFromDisk(bool remove_contents, std::string *ErrStr) const {
Jeff Cohen31102892007-04-07 20:47:27 +0000666 WIN32_FILE_ATTRIBUTE_DATA fi;
667 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi))
668 return true;
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000669
Jeff Cohen31102892007-04-07 20:47:27 +0000670 if (fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000671 // If it doesn't exist, we're done.
Jeff Cohen85c716f2005-07-08 05:02:13 +0000672 if (!exists())
Chris Lattner0c332312006-07-28 22:29:50 +0000673 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000674
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000675 char *pathname = reinterpret_cast<char *>(_alloca(path.length()+3));
Reid Spencer1cf2d042005-07-07 23:35:23 +0000676 int lastchar = path.length() - 1 ;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000677 path.copy(pathname, lastchar+1);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000678
679 // Make path end with '/*'.
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000680 if (pathname[lastchar] != '/')
681 pathname[++lastchar] = '/';
Reid Spencer1cf2d042005-07-07 23:35:23 +0000682 pathname[lastchar+1] = '*';
683 pathname[lastchar+2] = 0;
684
685 if (remove_contents) {
686 WIN32_FIND_DATA fd;
687 HANDLE h = FindFirstFile(pathname, &fd);
688
689 // It's a bad idea to alter the contents of a directory while enumerating
690 // its contents. So build a list of its contents first, then destroy them.
691
692 if (h != INVALID_HANDLE_VALUE) {
693 std::vector<Path> list;
694
695 do {
696 if (strcmp(fd.cFileName, ".") == 0)
697 continue;
698 if (strcmp(fd.cFileName, "..") == 0)
699 continue;
700
Jeff Cohen85c716f2005-07-08 05:02:13 +0000701 Path aPath(path);
702 aPath.appendComponent(&fd.cFileName[0]);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000703 list.push_back(aPath);
704 } while (FindNextFile(h, &fd));
705
706 DWORD err = GetLastError();
707 FindClose(h);
708 if (err != ERROR_NO_MORE_FILES) {
709 SetLastError(err);
Reid Spencer05545752006-08-25 21:37:17 +0000710 return MakeErrMsg(ErrStr, path + ": Can't read directory: ");
Reid Spencer1cf2d042005-07-07 23:35:23 +0000711 }
712
Jeff Cohen85c716f2005-07-08 05:02:13 +0000713 for (std::vector<Path>::iterator I = list.begin(); I != list.end();
Reid Spencer1cf2d042005-07-07 23:35:23 +0000714 ++I) {
715 Path &aPath = *I;
Reid Spencera229c5c2005-07-08 03:08:58 +0000716 aPath.eraseFromDisk(true);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000717 }
718 } else {
719 if (GetLastError() != ERROR_FILE_NOT_FOUND)
Reid Spencer05545752006-08-25 21:37:17 +0000720 return MakeErrMsg(ErrStr, path + ": Can't read directory: ");
Reid Spencer1cf2d042005-07-07 23:35:23 +0000721 }
722 }
723
724 pathname[lastchar] = 0;
725 if (!RemoveDirectory(pathname))
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000726 return MakeErrMsg(ErrStr,
Reid Spencer05545752006-08-25 21:37:17 +0000727 std::string(pathname) + ": Can't destroy directory: ");
Chris Lattner0c332312006-07-28 22:29:50 +0000728 return false;
Jeff Cohen31102892007-04-07 20:47:27 +0000729 } else {
730 // Read-only files cannot be deleted on Windows. Must remove the read-only
731 // attribute first.
732 if (fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
733 if (!SetFileAttributes(path.c_str(),
734 fi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY))
735 return MakeErrMsg(ErrStr, path + ": Can't destroy file: ");
736 }
737
738 if (!DeleteFile(path.c_str()))
739 return MakeErrMsg(ErrStr, path + ": Can't destroy file: ");
740 return false;
741 }
Reid Spencerb016a372004-09-15 05:49:50 +0000742}
743
Reid Spencer3b0cc782004-12-14 18:42:13 +0000744bool Path::getMagicNumber(std::string& Magic, unsigned len) const {
Reid Spencer3b0cc782004-12-14 18:42:13 +0000745 assert(len < 1024 && "Request for magic string too long");
Michael J. Spencer1211d432010-08-31 06:36:33 +0000746 char* buf = reinterpret_cast<char*>(alloca(len));
Jeff Cohen51b8d212004-12-31 19:01:08 +0000747
748 HANDLE h = CreateFile(path.c_str(),
749 GENERIC_READ,
750 FILE_SHARE_READ,
751 NULL,
752 OPEN_EXISTING,
753 FILE_ATTRIBUTE_NORMAL,
754 NULL);
755 if (h == INVALID_HANDLE_VALUE)
Reid Spencer3b0cc782004-12-14 18:42:13 +0000756 return false;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000757
758 DWORD nRead = 0;
759 BOOL ret = ReadFile(h, buf, len, &nRead, NULL);
760 CloseHandle(h);
761
762 if (!ret || nRead != len)
Reid Spencer3b0cc782004-12-14 18:42:13 +0000763 return false;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000764
Michael J. Spencer1211d432010-08-31 06:36:33 +0000765 Magic = std::string(buf, len);
Reid Spencer3b0cc782004-12-14 18:42:13 +0000766 return true;
767}
768
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000769bool
Reid Spencer5a060772006-08-23 07:30:48 +0000770Path::renamePathOnDisk(const Path& newName, std::string* ErrMsg) {
Francois Pichet3eddd982010-09-30 00:44:58 +0000771 if (!MoveFileEx(path.c_str(), newName.c_str(), MOVEFILE_REPLACE_EXISTING))
772 return MakeErrMsg(ErrMsg, "Can't move '" + path + "' to '" + newName.path
773 + "': ");
774 return false;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000775}
776
777bool
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000778Path::setStatusInfoOnDisk(const FileStatus &si, std::string *ErrMsg) const {
Jeff Cohen966fa412005-07-09 18:42:49 +0000779 // FIXME: should work on directories also.
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000780 if (!si.isFile) {
781 return true;
782 }
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000783
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000784 HANDLE h = CreateFile(path.c_str(),
785 FILE_READ_ATTRIBUTES | FILE_WRITE_ATTRIBUTES,
786 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
Jeff Cohend40a7de2004-12-31 05:07:26 +0000787 NULL,
788 OPEN_EXISTING,
789 FILE_ATTRIBUTE_NORMAL,
790 NULL);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000791 if (h == INVALID_HANDLE_VALUE)
Chris Lattner1bebfb52006-07-28 22:36:17 +0000792 return true;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000793
794 BY_HANDLE_FILE_INFORMATION bhfi;
795 if (!GetFileInformationByHandle(h, &bhfi)) {
Jeff Cohen51b8d212004-12-31 19:01:08 +0000796 DWORD err = GetLastError();
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000797 CloseHandle(h);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000798 SetLastError(err);
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000799 return MakeErrMsg(ErrMsg, path + ": GetFileInformationByHandle: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000800 }
801
Michael J. Spencer44edb0b2010-08-28 16:39:32 +0000802 ULARGE_INTEGER ui;
803 ui.QuadPart = si.modTime.toWin32Time();
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000804 FILETIME ft;
Michael J. Spencer44edb0b2010-08-28 16:39:32 +0000805 ft.dwLowDateTime = ui.LowPart;
806 ft.dwHighDateTime = ui.HighPart;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000807 BOOL ret = SetFileTime(h, NULL, &ft, &ft);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000808 DWORD err = GetLastError();
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000809 CloseHandle(h);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000810 if (!ret) {
811 SetLastError(err);
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000812 return MakeErrMsg(ErrMsg, path + ": SetFileTime: ");
Jeff Cohen51b8d212004-12-31 19:01:08 +0000813 }
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000814
815 // Best we can do with Unix permission bits is to interpret the owner
816 // writable bit.
817 if (si.mode & 0200) {
818 if (bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
819 if (!SetFileAttributes(path.c_str(),
Jeff Cohend40a7de2004-12-31 05:07:26 +0000820 bhfi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY))
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000821 return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000822 }
823 } else {
824 if (!(bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY)) {
825 if (!SetFileAttributes(path.c_str(),
Jeff Cohend40a7de2004-12-31 05:07:26 +0000826 bhfi.dwFileAttributes | FILE_ATTRIBUTE_READONLY))
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000827 return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000828 }
829 }
830
Chris Lattner1bebfb52006-07-28 22:36:17 +0000831 return false;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000832}
833
Reid Spencer30300992006-08-24 18:58:37 +0000834bool
835CopyFile(const sys::Path &Dest, const sys::Path &Src, std::string* ErrMsg) {
Jeff Cohencb652552004-12-24 02:38:34 +0000836 // Can't use CopyFile macro defined in Windows.h because it would mess up the
837 // above line. We use the expansion it would have in a non-UNICODE build.
838 if (!::CopyFileA(Src.c_str(), Dest.c_str(), false))
Chris Lattner74382b72009-08-23 22:45:37 +0000839 return MakeErrMsg(ErrMsg, "Can't copy '" + Src.str() +
840 "' to '" + Dest.str() + "': ");
Reid Spencer30300992006-08-24 18:58:37 +0000841 return false;
Reid Spencerc29befb2004-12-15 01:50:13 +0000842}
843
Reid Spencer30300992006-08-24 18:58:37 +0000844bool
845Path::makeUnique(bool reuse_current, std::string* ErrMsg) {
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000846 if (reuse_current && !exists())
Reid Spencer30300992006-08-24 18:58:37 +0000847 return false; // File doesn't exist already, just use it!
Reid Spencerc29befb2004-12-15 01:50:13 +0000848
Jeff Cohen9437bb62005-01-27 03:49:03 +0000849 // Reserve space for -XXXXXX at the end.
850 char *FNBuffer = (char*) alloca(path.size()+8);
851 unsigned offset = path.size();
852 path.copy(FNBuffer, offset);
Reid Spencerc29befb2004-12-15 01:50:13 +0000853
Jeff Cohen966fa412005-07-09 18:42:49 +0000854 // Find a numeric suffix that isn't used by an existing file. Assume there
855 // won't be more than 1 million files with the same prefix. Probably a safe
856 // bet.
Jeff Cohen9437bb62005-01-27 03:49:03 +0000857 static unsigned FCounter = 0;
858 do {
859 sprintf(FNBuffer+offset, "-%06u", FCounter);
860 if (++FCounter > 999999)
861 FCounter = 0;
862 path = FNBuffer;
863 } while (exists());
Reid Spencer30300992006-08-24 18:58:37 +0000864 return false;
Reid Spencerc29befb2004-12-15 01:50:13 +0000865}
866
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000867bool
Reid Spencer30300992006-08-24 18:58:37 +0000868Path::createTemporaryFileOnDisk(bool reuse_current, std::string* ErrMsg) {
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000869 // Make this into a unique file name
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000870 makeUnique(reuse_current, ErrMsg);
Jeff Cohen9437bb62005-01-27 03:49:03 +0000871
872 // Now go and create it
873 HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW,
874 FILE_ATTRIBUTE_NORMAL, NULL);
875 if (h == INVALID_HANDLE_VALUE)
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000876 return MakeErrMsg(ErrMsg, path + ": can't create file");
Jeff Cohen9437bb62005-01-27 03:49:03 +0000877
878 CloseHandle(h);
Reid Spencer30300992006-08-24 18:58:37 +0000879 return false;
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000880}
881
Chris Lattner799ed102008-04-01 06:00:12 +0000882/// MapInFilePages - Not yet implemented on win32.
883const char *Path::MapInFilePages(int FD, uint64_t FileSize) {
884 return 0;
885}
886
887/// MapInFilePages - Not yet implemented on win32.
888void Path::UnMapFilePages(const char *Base, uint64_t FileSize) {
889 assert(0 && "NOT IMPLEMENTED");
890}
891
Reid Spencerb016a372004-09-15 05:49:50 +0000892}
Reid Spencercbad7012004-09-11 04:59:30 +0000893}