blob: 4a6dbd3ddf29999aa41c9e1fbe1613afdc3ee9f6 [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 {
Chris Lattnera17fa282008-03-13 05:17:59 +000048const char PathSeparator = ';';
Chris Lattnere1b332a2008-02-27 06:17:10 +000049
Daniel Dunbar1edcafe2009-12-18 19:59:48 +000050Path::Path(llvm::StringRef p)
Nick Lewyckyfff116f2008-05-11 17:37:40 +000051 : path(p) {
52 FlipBackSlashes(path);
53}
54
55Path::Path(const char *StrStart, unsigned StrLen)
56 : path(StrStart, StrLen) {
57 FlipBackSlashes(path);
58}
59
Chris Lattner0eab5e22008-08-11 23:39:47 +000060Path&
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +000061Path::operator=(StringRef that) {
62 path.assign(that.data(), that.size());
Chris Lattner0eab5e22008-08-11 23:39:47 +000063 FlipBackSlashes(path);
64 return *this;
65}
66
Reid Spencerb016a372004-09-15 05:49:50 +000067bool
Reid Spencer07adb282004-11-05 22:15:36 +000068Path::isValid() const {
Reid Spencerb016a372004-09-15 05:49:50 +000069 if (path.empty())
70 return false;
Reid Spencerd0c9e0e2004-09-18 19:29:16 +000071
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000072 // If there is a colon, it must be the second character, preceded by a letter
73 // and followed by something.
74 size_t len = path.size();
75 size_t pos = path.rfind(':',len);
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000076 size_t rootslash = 0;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000077 if (pos != std::string::npos) {
78 if (pos != 1 || !isalpha(path[0]) || len < 3)
79 return false;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000080 rootslash = 2;
81 }
Jeff Cohen85c716f2005-07-08 05:02:13 +000082
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000083 // Look for a UNC path, and if found adjust our notion of the root slash.
84 if (len > 3 && path[0] == '/' && path[1] == '/') {
85 rootslash = path.find('/', 2);
86 if (rootslash == std::string::npos)
87 rootslash = 0;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000088 }
Reid Spencerd0c9e0e2004-09-18 19:29:16 +000089
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000090 // Check for illegal characters.
91 if (path.find_first_of("\\<>\"|\001\002\003\004\005\006\007\010\011\012"
92 "\013\014\015\016\017\020\021\022\023\024\025\026"
93 "\027\030\031\032\033\034\035\036\037")
94 != std::string::npos)
95 return false;
Jeff Cohen85c716f2005-07-08 05:02:13 +000096
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000097 // Remove trailing slash, unless it's a root slash.
98 if (len > rootslash+1 && path[len-1] == '/')
99 path.erase(--len);
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000100
Jeff Cohen3bbbcc12005-01-14 04:09:39 +0000101 // Check each component for legality.
102 for (pos = 0; pos < len; ++pos) {
103 // A component may not end in a space.
104 if (path[pos] == ' ') {
105 if (path[pos+1] == '/' || path[pos+1] == '\0')
106 return false;
107 }
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000108
Jeff Cohen3bbbcc12005-01-14 04:09:39 +0000109 // A component may not end in a period.
110 if (path[pos] == '.') {
111 if (path[pos+1] == '/' || path[pos+1] == '\0') {
112 // Unless it is the pseudo-directory "."...
113 if (pos == 0 || path[pos-1] == '/' || path[pos-1] == ':')
114 return true;
115 // or "..".
116 if (pos > 0 && path[pos-1] == '.') {
117 if (pos == 1 || path[pos-2] == '/' || path[pos-2] == ':')
118 return true;
119 }
120 return false;
121 }
122 }
123 }
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000124
125 return true;
Reid Spencercbad7012004-09-11 04:59:30 +0000126}
127
Daniel Dunbara00e85c2009-07-12 20:23:56 +0000128void Path::makeAbsolute() {
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000129 TCHAR FullPath[MAX_PATH + 1] = {0};
Daniel Dunbara00e85c2009-07-12 20:23:56 +0000130 LPTSTR FilePart = NULL;
131
132 DWORD RetLength = ::GetFullPathNameA(path.c_str(),
133 sizeof(FullPath)/sizeof(FullPath[0]),
134 FullPath, &FilePart);
135
136 if (0 == RetLength) {
137 // FIXME: Report the error GetLastError()
Daniel Dunbar2749b3e2009-07-26 21:16:42 +0000138 assert(0 && "Unable to make absolute path!");
Daniel Dunbara00e85c2009-07-12 20:23:56 +0000139 } else if (RetLength > MAX_PATH) {
140 // FIXME: Report too small buffer (needed RetLength bytes).
Daniel Dunbar2749b3e2009-07-26 21:16:42 +0000141 assert(0 && "Unable to make absolute path!");
Daniel Dunbara00e85c2009-07-12 20:23:56 +0000142 } else {
143 path = FullPath;
144 }
145}
146
Chris Lattner88d7e402009-06-15 04:17:07 +0000147bool
148Path::isAbsolute(const char *NameStart, unsigned NameLen) {
149 assert(NameStart);
Daniel Dunbara00e85c2009-07-12 20:23:56 +0000150 // FIXME: This does not handle correctly an absolute path starting from
151 // a drive letter or in UNC format.
Chris Lattner88d7e402009-06-15 04:17:07 +0000152 switch (NameLen) {
153 case 0:
154 return false;
155 case 1:
156 case 2:
157 return NameStart[0] == '/';
158 default:
Chris Lattnera79eefd2009-08-12 17:47:06 +0000159 return (NameStart[0] == '/' || (NameStart[1] == ':' && NameStart[2] == '/')) ||
160 (NameStart[0] == '\\' || (NameStart[1] == ':' && NameStart[2] == '\\'));
Chris Lattner88d7e402009-06-15 04:17:07 +0000161 }
162}
163
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000164bool
Reid Spencer69cce812007-03-29 16:43:20 +0000165Path::isAbsolute() const {
Daniel Dunbara00e85c2009-07-12 20:23:56 +0000166 // FIXME: This does not handle correctly an absolute path starting from
167 // a drive letter or in UNC format.
Jeff Cohen84892be2007-03-29 17:27:38 +0000168 switch (path.length()) {
169 case 0:
170 return false;
171 case 1:
172 case 2:
173 return path[0] == '/';
174 default:
175 return path[0] == '/' || (path[1] == ':' && path[2] == '/');
176 }
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000177}
Reid Spencer69cce812007-03-29 16:43:20 +0000178
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000179static Path *TempDirectory;
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000180
Reid Spencerb016a372004-09-15 05:49:50 +0000181Path
Reid Spencercab0e432006-08-22 22:46:39 +0000182Path::GetTemporaryDirectory(std::string* ErrMsg) {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000183 if (TempDirectory)
184 return *TempDirectory;
185
186 char pathname[MAX_PATH];
Reid Spencercab0e432006-08-22 22:46:39 +0000187 if (!GetTempPath(MAX_PATH, pathname)) {
188 if (ErrMsg)
189 *ErrMsg = "Can't determine temporary directory";
190 return Path();
191 }
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000192
Reid Spencerb016a372004-09-15 05:49:50 +0000193 Path result;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000194 result.set(pathname);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000195
196 // Append a subdirectory passed on our process id so multiple LLVMs don't
197 // step on each other's toes.
Jeff Cohend41b30d2006-11-05 19:31:28 +0000198#ifdef __MINGW32__
199 // Mingw's Win32 header files are broken.
Reid Spencerab4d9b02006-06-08 18:08:43 +0000200 sprintf(pathname, "LLVM_%u", unsigned(GetCurrentProcessId()));
Jeff Cohend41b30d2006-11-05 19:31:28 +0000201#else
202 sprintf(pathname, "LLVM_%u", GetCurrentProcessId());
203#endif
Jeff Cohenedb9d6b2005-07-08 02:48:42 +0000204 result.appendComponent(pathname);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000205
206 // If there's a directory left over from a previous LLVM execution that
207 // happened to have the same process id, get rid of it.
Reid Spencera229c5c2005-07-08 03:08:58 +0000208 result.eraseFromDisk(true);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000209
210 // And finally (re-)create the empty directory.
Reid Spencera229c5c2005-07-08 03:08:58 +0000211 result.createDirectoryOnDisk(false);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000212 TempDirectory = new Path(result);
213 return *TempDirectory;
Reid Spencerb016a372004-09-15 05:49:50 +0000214}
215
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000216// FIXME: the following set of functions don't map to Windows very well.
Reid Spencerb016a372004-09-15 05:49:50 +0000217Path
218Path::GetRootDirectory() {
219 Path result;
Jeff Cohen966fa412005-07-09 18:42:49 +0000220 result.set("C:/");
Reid Spencerb016a372004-09-15 05:49:50 +0000221 return result;
222}
223
Jeff Cohen85c716f2005-07-08 05:02:13 +0000224void
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000225Path::GetSystemLibraryPaths(std::vector<sys::Path>& Paths) {
Jeff Cohen966fa412005-07-09 18:42:49 +0000226 Paths.push_back(sys::Path("C:/WINDOWS/SYSTEM32"));
227 Paths.push_back(sys::Path("C:/WINDOWS"));
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000228}
229
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000230void
Gabor Greifdb5565a2007-07-06 20:28:40 +0000231Path::GetBitcodeLibraryPaths(std::vector<sys::Path>& Paths) {
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000232 char * env_var = getenv("LLVM_LIB_SEARCH_PATH");
233 if (env_var != 0) {
234 getPathList(env_var,Paths);
235 }
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000236#ifdef LLVM_LIBDIR
237 {
238 Path tmpPath;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000239 if (tmpPath.set(LLVM_LIBDIR))
Reid Spencerc7f08322005-07-07 18:21:42 +0000240 if (tmpPath.canRead())
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000241 Paths.push_back(tmpPath);
242 }
243#endif
244 GetSystemLibraryPaths(Paths);
Reid Spencerb016a372004-09-15 05:49:50 +0000245}
246
247Path
248Path::GetLLVMDefaultConfigDir() {
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000249 // TODO: this isn't going to fly on Windows
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000250 return Path("/etc/llvm");
Reid Spencerb016a372004-09-15 05:49:50 +0000251}
252
253Path
Reid Spencerb016a372004-09-15 05:49:50 +0000254Path::GetUserHomeDirectory() {
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000255 // TODO: Typical Windows setup doesn't define HOME.
Reid Spencerb016a372004-09-15 05:49:50 +0000256 const char* home = getenv("HOME");
257 if (home) {
258 Path result;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000259 if (result.set(home))
Reid Spencerb016a372004-09-15 05:49:50 +0000260 return result;
261 }
262 return GetRootDirectory();
263}
Ted Kremenek79200782007-12-18 22:07:33 +0000264
265Path
266Path::GetCurrentDirectory() {
267 char pathname[MAX_PATH];
Anton Korobeynikov64ddbe42007-12-22 14:26:49 +0000268 ::GetCurrentDirectoryA(MAX_PATH,pathname);
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000269 return Path(pathname);
Ted Kremenek79200782007-12-18 22:07:33 +0000270}
271
Chris Lattner1a091442008-03-03 02:55:43 +0000272/// GetMainExecutable - Return the path to the main executable, given the
273/// value of argv[0] from program startup.
274Path Path::GetMainExecutable(const char *argv0, void *MainAddr) {
Chris Lattnerc5718d02009-06-15 05:38:04 +0000275 char pathname[MAX_PATH];
276 DWORD ret = ::GetModuleFileNameA(NULL, pathname, MAX_PATH);
277 return ret != MAX_PATH ? Path(pathname) : Path();
Chris Lattner1a091442008-03-03 02:55:43 +0000278}
279
Ted Kremenek79200782007-12-18 22:07:33 +0000280
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000281// FIXME: the above set of functions don't map to Windows very well.
282
Jeff Cohen966fa412005-07-09 18:42:49 +0000283
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000284StringRef Path::getDirname() const {
285 return getDirnameCharSep(path, "/");
Ted Kremenek9b01cc02008-04-07 22:01:32 +0000286}
Ted Kremenekcf55c8e2008-04-07 21:53:57 +0000287
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000288StringRef
Reid Spencer07adb282004-11-05 22:15:36 +0000289Path::getBasename() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000290 // Find the last slash
291 size_t slash = path.rfind('/');
292 if (slash == std::string::npos)
293 slash = 0;
294 else
295 slash++;
296
Jeff Cohen966fa412005-07-09 18:42:49 +0000297 size_t dot = path.rfind('.');
298 if (dot == std::string::npos || dot < slash)
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000299 return StringRef(path).substr(slash);
Jeff Cohen966fa412005-07-09 18:42:49 +0000300 else
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000301 return StringRef(path).substr(slash, dot - slash);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000302}
303
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000304StringRef
Argyrios Kyrtzidisfc199882008-06-15 15:15:19 +0000305Path::getSuffix() const {
306 // Find the last slash
307 size_t slash = path.rfind('/');
308 if (slash == std::string::npos)
309 slash = 0;
310 else
311 slash++;
312
313 size_t dot = path.rfind('.');
314 if (dot == std::string::npos || dot < slash)
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000315 return StringRef("");
Argyrios Kyrtzidisfc199882008-06-15 15:15:19 +0000316 else
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000317 return StringRef(path).substr(dot + 1);
Argyrios Kyrtzidisfc199882008-06-15 15:15:19 +0000318}
319
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000320bool
Reid Spencerb016a372004-09-15 05:49:50 +0000321Path::exists() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000322 DWORD attr = GetFileAttributes(path.c_str());
323 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000324}
325
326bool
Ted Kremenekfd527112007-12-18 19:46:22 +0000327Path::isDirectory() const {
328 DWORD attr = GetFileAttributes(path.c_str());
329 return (attr != INVALID_FILE_ATTRIBUTES) &&
330 (attr & FILE_ATTRIBUTE_DIRECTORY);
331}
332
333bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000334Path::canRead() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000335 // FIXME: take security attributes into account.
336 DWORD attr = GetFileAttributes(path.c_str());
337 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000338}
339
340bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000341Path::canWrite() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000342 // FIXME: take security attributes into account.
343 DWORD attr = GetFileAttributes(path.c_str());
344 return (attr != INVALID_FILE_ATTRIBUTES) && !(attr & FILE_ATTRIBUTE_READONLY);
Reid Spencerb016a372004-09-15 05:49:50 +0000345}
346
347bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000348Path::canExecute() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000349 // FIXME: take security attributes into account.
350 DWORD attr = GetFileAttributes(path.c_str());
351 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000352}
353
Edward O'Callaghand41e9442009-11-24 15:19:10 +0000354bool
Edward O'Callaghane49a8e42009-11-25 06:32:19 +0000355Path::isRegularFile() const {
356 if (isDirectory())
357 return false;
358 return true;
Edward O'Callaghand41e9442009-11-24 15:19:10 +0000359}
360
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000361StringRef
Reid Spencerb016a372004-09-15 05:49:50 +0000362Path::getLast() const {
363 // Find the last slash
364 size_t pos = path.rfind('/');
365
366 // Handle the corner cases
367 if (pos == std::string::npos)
368 return path;
369
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000370 // If the last character is a slash, we have a root directory
371 if (pos == path.length()-1)
372 return path;
373
Reid Spencerb016a372004-09-15 05:49:50 +0000374 // Return everything after the last slash
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000375 return StringRef(path).substr(pos+1);
Reid Spencerb016a372004-09-15 05:49:50 +0000376}
377
Reid Spencer8475ec02007-03-29 19:05:44 +0000378const FileStatus *
Reid Spencer2ae9d112007-04-07 18:52:17 +0000379PathWithStatus::getFileStatus(bool update, std::string *ErrStr) const {
380 if (!fsIsValid || update) {
Reid Spencer69cce812007-03-29 16:43:20 +0000381 WIN32_FILE_ATTRIBUTE_DATA fi;
Reid Spencer8475ec02007-03-29 19:05:44 +0000382 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) {
383 MakeErrMsg(ErrStr, "getStatusInfo():" + std::string(path) +
Reid Spencer69cce812007-03-29 16:43:20 +0000384 ": Can't get status: ");
Reid Spencer8475ec02007-03-29 19:05:44 +0000385 return 0;
386 }
Jeff Cohen626e38e2004-12-14 05:26:43 +0000387
Reid Spencer2ae9d112007-04-07 18:52:17 +0000388 status.fileSize = fi.nFileSizeHigh;
389 status.fileSize <<= sizeof(fi.nFileSizeHigh)*8;
390 status.fileSize += fi.nFileSizeLow;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000391
Reid Spencer2ae9d112007-04-07 18:52:17 +0000392 status.mode = fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY ? 0555 : 0777;
393 status.user = 9999; // Not applicable to Windows, so...
394 status.group = 9999; // Not applicable to Windows, so...
Jeff Cohen626e38e2004-12-14 05:26:43 +0000395
Reid Spencer4031bef2007-03-29 17:00:31 +0000396 // FIXME: this is only unique if the file is accessed by the same file path.
397 // How do we do this for C:\dir\file and ..\dir\file ? Unix has inode
398 // numbers, but the concept doesn't exist in Windows.
Reid Spencer2ae9d112007-04-07 18:52:17 +0000399 status.uniqueID = 0;
Reid Spencer4031bef2007-03-29 17:00:31 +0000400 for (unsigned i = 0; i < path.length(); ++i)
Reid Spencer2ae9d112007-04-07 18:52:17 +0000401 status.uniqueID += path[i];
Reid Spencer4031bef2007-03-29 17:00:31 +0000402
Michael J. Spencer44edb0b2010-08-28 16:39:32 +0000403 ULARGE_INTEGER ui;
404 ui.LowPart = fi.ftLastWriteTime.dwLowDateTime;
405 ui.HighPart = fi.ftLastWriteTime.dwHighDateTime;
406 status.modTime.fromWin32Time(ui.QuadPart);
Reid Spencer69cce812007-03-29 16:43:20 +0000407
Reid Spencer2ae9d112007-04-07 18:52:17 +0000408 status.isDir = fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY;
409 fsIsValid = true;
Reid Spencer69cce812007-03-29 16:43:20 +0000410 }
Reid Spencer2ae9d112007-04-07 18:52:17 +0000411 return &status;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000412}
413
Reid Spencera34a1572006-08-22 23:54:35 +0000414bool Path::makeReadableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000415 // All files are readable on Windows (ignoring security attributes).
Reid Spencera34a1572006-08-22 23:54:35 +0000416 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000417}
418
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000419bool Path::makeWriteableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000420 DWORD attr = GetFileAttributes(path.c_str());
421
422 // If it doesn't exist, we're done.
423 if (attr == INVALID_FILE_ATTRIBUTES)
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000424 return false;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000425
426 if (attr & FILE_ATTRIBUTE_READONLY) {
Reid Spencera34a1572006-08-22 23:54:35 +0000427 if (!SetFileAttributes(path.c_str(), attr & ~FILE_ATTRIBUTE_READONLY)) {
428 MakeErrMsg(ErrMsg, std::string(path) + ": Can't make file writable: ");
429 return true;
430 }
Jeff Cohen626e38e2004-12-14 05:26:43 +0000431 }
Reid Spencera34a1572006-08-22 23:54:35 +0000432 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000433}
434
Reid Spencera34a1572006-08-22 23:54:35 +0000435bool Path::makeExecutableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000436 // All files are executable on Windows (ignoring security attributes).
Reid Spencera34a1572006-08-22 23:54:35 +0000437 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000438}
439
Reid Spencerb016a372004-09-15 05:49:50 +0000440bool
Reid Spencer142ca8e2006-08-23 06:56:27 +0000441Path::getDirectoryContents(std::set<Path>& result, std::string* ErrMsg) const {
Jeff Cohen31102892007-04-07 20:47:27 +0000442 WIN32_FILE_ATTRIBUTE_DATA fi;
443 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) {
444 MakeErrMsg(ErrMsg, path + ": can't get status of file");
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000445 return true;
Jeff Cohen31102892007-04-07 20:47:27 +0000446 }
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000447
Jeff Cohen31102892007-04-07 20:47:27 +0000448 if (!(fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) {
449 if (ErrMsg)
450 *ErrMsg = path + ": not a directory";
Reid Spencer142ca8e2006-08-23 06:56:27 +0000451 return true;
452 }
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000453
454 result.clear();
455 WIN32_FIND_DATA fd;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000456 std::string searchpath = path;
457 if (path.size() == 0 || searchpath[path.size()-1] == '/')
Jeff Cohen85c716f2005-07-08 05:02:13 +0000458 searchpath += "*";
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000459 else
460 searchpath += "/*";
Jeff Cohen85c716f2005-07-08 05:02:13 +0000461
Jeff Cohen9437bb62005-01-27 03:49:03 +0000462 HANDLE h = FindFirstFile(searchpath.c_str(), &fd);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000463 if (h == INVALID_HANDLE_VALUE) {
Jeff Cohen9437bb62005-01-27 03:49:03 +0000464 if (GetLastError() == ERROR_FILE_NOT_FOUND)
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000465 return true; // not really an error, now is it?
Reid Spencer142ca8e2006-08-23 06:56:27 +0000466 MakeErrMsg(ErrMsg, path + ": Can't read directory: ");
467 return true;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000468 }
469
470 do {
Jeff Cohend40a7de2004-12-31 05:07:26 +0000471 if (fd.cFileName[0] == '.')
472 continue;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000473 Path aPath(path);
474 aPath.appendComponent(&fd.cFileName[0]);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000475 result.insert(aPath);
476 } while (FindNextFile(h, &fd));
477
Jeff Cohen51b8d212004-12-31 19:01:08 +0000478 DWORD err = GetLastError();
479 FindClose(h);
480 if (err != ERROR_NO_MORE_FILES) {
481 SetLastError(err);
Reid Spencer142ca8e2006-08-23 06:56:27 +0000482 MakeErrMsg(ErrMsg, path + ": Can't read directory: ");
483 return true;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000484 }
Reid Spencer142ca8e2006-08-23 06:56:27 +0000485 return false;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000486}
487
488bool
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000489Path::set(StringRef a_path) {
Dan Gohman30359592008-01-29 13:02:09 +0000490 if (a_path.empty())
Reid Spencerb016a372004-09-15 05:49:50 +0000491 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000492 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000493 path = a_path;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000494 FlipBackSlashes(path);
Reid Spencer07adb282004-11-05 22:15:36 +0000495 if (!isValid()) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000496 path = save;
Reid Spencerb016a372004-09-15 05:49:50 +0000497 return false;
498 }
499 return true;
500}
501
502bool
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000503Path::appendComponent(StringRef name) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000504 if (name.empty())
Reid Spencerb016a372004-09-15 05:49:50 +0000505 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000506 std::string save(path);
507 if (!path.empty()) {
508 size_t last = path.size() - 1;
Jeff Cohen85c716f2005-07-08 05:02:13 +0000509 if (path[last] != '/')
Reid Spencer1cf2d042005-07-07 23:35:23 +0000510 path += '/';
511 }
512 path += name;
Reid Spencer07adb282004-11-05 22:15:36 +0000513 if (!isValid()) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000514 path = save;
Reid Spencerb016a372004-09-15 05:49:50 +0000515 return false;
516 }
517 return true;
518}
519
520bool
Reid Spencer1cf2d042005-07-07 23:35:23 +0000521Path::eraseComponent() {
Reid Spencerb016a372004-09-15 05:49:50 +0000522 size_t slashpos = path.rfind('/',path.size());
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000523 if (slashpos == path.size() - 1 || slashpos == std::string::npos)
Reid Spencerb016a372004-09-15 05:49:50 +0000524 return false;
Jeff Cohen966fa412005-07-09 18:42:49 +0000525 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000526 path.erase(slashpos);
Jeff Cohen966fa412005-07-09 18:42:49 +0000527 if (!isValid()) {
528 path = save;
529 return false;
530 }
Reid Spencerb016a372004-09-15 05:49:50 +0000531 return true;
532}
533
534bool
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000535Path::appendSuffix(StringRef suffix) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000536 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000537 path.append(".");
538 path.append(suffix);
Reid Spencer07adb282004-11-05 22:15:36 +0000539 if (!isValid()) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000540 path = save;
Reid Spencerb016a372004-09-15 05:49:50 +0000541 return false;
542 }
543 return true;
544}
545
546bool
Reid Spencer1cf2d042005-07-07 23:35:23 +0000547Path::eraseSuffix() {
Reid Spencerb016a372004-09-15 05:49:50 +0000548 size_t dotpos = path.rfind('.',path.size());
549 size_t slashpos = path.rfind('/',path.size());
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000550 if (dotpos != std::string::npos) {
Jeff Cohen966fa412005-07-09 18:42:49 +0000551 if (slashpos == std::string::npos || dotpos > slashpos+1) {
552 std::string save(path);
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000553 path.erase(dotpos, path.size()-dotpos);
Jeff Cohen966fa412005-07-09 18:42:49 +0000554 if (!isValid()) {
555 path = save;
556 return false;
557 }
Jeff Cohen85c716f2005-07-08 05:02:13 +0000558 return true;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000559 }
Reid Spencerb016a372004-09-15 05:49:50 +0000560 }
561 return false;
562}
563
Reid Spencer30300992006-08-24 18:58:37 +0000564inline bool PathMsg(std::string* ErrMsg, const char* pathname, const char*msg) {
565 if (ErrMsg)
566 *ErrMsg = std::string(pathname) + ": " + std::string(msg);
567 return true;
568}
569
Reid Spencerb016a372004-09-15 05:49:50 +0000570bool
Reid Spencer30300992006-08-24 18:58:37 +0000571Path::createDirectoryOnDisk(bool create_parents, std::string* ErrMsg) {
Reid Spencerb016a372004-09-15 05:49:50 +0000572 // Get a writeable copy of the path name
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000573 size_t len = path.length();
574 char *pathname = reinterpret_cast<char *>(_alloca(len+2));
575 path.copy(pathname, len);
576 pathname[len] = 0;
Jeff Cohen85c716f2005-07-08 05:02:13 +0000577
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000578 // Make sure it ends with a slash.
579 if (len == 0 || pathname[len - 1] != '/') {
580 pathname[len] = '/';
581 pathname[++len] = 0;
582 }
Reid Spencerb016a372004-09-15 05:49:50 +0000583
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000584 // Determine starting point for initial / search.
585 char *next = pathname;
586 if (pathname[0] == '/' && pathname[1] == '/') {
587 // Skip host name.
588 next = strchr(pathname+2, '/');
589 if (next == NULL)
Reid Spencer30300992006-08-24 18:58:37 +0000590 return PathMsg(ErrMsg, pathname, "badly formed remote directory");
591
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000592 // Skip share name.
593 next = strchr(next+1, '/');
594 if (next == NULL)
Reid Spencer30300992006-08-24 18:58:37 +0000595 return PathMsg(ErrMsg, pathname,"badly formed remote directory");
596
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000597 next++;
598 if (*next == 0)
Reid Spencer30300992006-08-24 18:58:37 +0000599 return PathMsg(ErrMsg, pathname, "badly formed remote directory");
600
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000601 } else {
602 if (pathname[1] == ':')
603 next += 2; // skip drive letter
604 if (*next == '/')
605 next++; // skip root directory
606 }
Reid Spencerb016a372004-09-15 05:49:50 +0000607
608 // If we're supposed to create intermediate directories
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000609 if (create_parents) {
Reid Spencerb016a372004-09-15 05:49:50 +0000610 // Loop through the directory components until we're done
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000611 while (*next) {
612 next = strchr(next, '/');
Reid Spencerb016a372004-09-15 05:49:50 +0000613 *next = 0;
Benjamin Kramere9684c62009-11-05 14:32:40 +0000614 if (!CreateDirectory(pathname, NULL) &&
615 GetLastError() != ERROR_ALREADY_EXISTS)
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000616 return MakeErrMsg(ErrMsg,
Reid Spencer30300992006-08-24 18:58:37 +0000617 std::string(pathname) + ": Can't create directory: ");
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000618 *next++ = '/';
Reid Spencerb016a372004-09-15 05:49:50 +0000619 }
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000620 } else {
621 // Drop trailing slash.
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000622 pathname[len-1] = 0;
Benjamin Kramere9684c62009-11-05 14:32:40 +0000623 if (!CreateDirectory(pathname, NULL) &&
624 GetLastError() != ERROR_ALREADY_EXISTS) {
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000625 return MakeErrMsg(ErrMsg, std::string(pathname) + ": Can't create directory: ");
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000626 }
Reid Spencerb016a372004-09-15 05:49:50 +0000627 }
Reid Spencer30300992006-08-24 18:58:37 +0000628 return false;
Reid Spencerb016a372004-09-15 05:49:50 +0000629}
630
631bool
Reid Spencer30300992006-08-24 18:58:37 +0000632Path::createFileOnDisk(std::string* ErrMsg) {
Reid Spencerb016a372004-09-15 05:49:50 +0000633 // Create the file
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000634 HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW,
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000635 FILE_ATTRIBUTE_NORMAL, NULL);
636 if (h == INVALID_HANDLE_VALUE)
Reid Spencer30300992006-08-24 18:58:37 +0000637 return MakeErrMsg(ErrMsg, path + ": Can't create file: ");
Reid Spencerb016a372004-09-15 05:49:50 +0000638
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000639 CloseHandle(h);
Reid Spencer30300992006-08-24 18:58:37 +0000640 return false;
Reid Spencerb016a372004-09-15 05:49:50 +0000641}
642
643bool
Chris Lattner0c332312006-07-28 22:29:50 +0000644Path::eraseFromDisk(bool remove_contents, std::string *ErrStr) const {
Jeff Cohen31102892007-04-07 20:47:27 +0000645 WIN32_FILE_ATTRIBUTE_DATA fi;
646 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi))
647 return true;
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000648
Jeff Cohen31102892007-04-07 20:47:27 +0000649 if (fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000650 // If it doesn't exist, we're done.
Jeff Cohen85c716f2005-07-08 05:02:13 +0000651 if (!exists())
Chris Lattner0c332312006-07-28 22:29:50 +0000652 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000653
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000654 char *pathname = reinterpret_cast<char *>(_alloca(path.length()+3));
Reid Spencer1cf2d042005-07-07 23:35:23 +0000655 int lastchar = path.length() - 1 ;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000656 path.copy(pathname, lastchar+1);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000657
658 // Make path end with '/*'.
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000659 if (pathname[lastchar] != '/')
660 pathname[++lastchar] = '/';
Reid Spencer1cf2d042005-07-07 23:35:23 +0000661 pathname[lastchar+1] = '*';
662 pathname[lastchar+2] = 0;
663
664 if (remove_contents) {
665 WIN32_FIND_DATA fd;
666 HANDLE h = FindFirstFile(pathname, &fd);
667
668 // It's a bad idea to alter the contents of a directory while enumerating
669 // its contents. So build a list of its contents first, then destroy them.
670
671 if (h != INVALID_HANDLE_VALUE) {
672 std::vector<Path> list;
673
674 do {
675 if (strcmp(fd.cFileName, ".") == 0)
676 continue;
677 if (strcmp(fd.cFileName, "..") == 0)
678 continue;
679
Jeff Cohen85c716f2005-07-08 05:02:13 +0000680 Path aPath(path);
681 aPath.appendComponent(&fd.cFileName[0]);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000682 list.push_back(aPath);
683 } while (FindNextFile(h, &fd));
684
685 DWORD err = GetLastError();
686 FindClose(h);
687 if (err != ERROR_NO_MORE_FILES) {
688 SetLastError(err);
Reid Spencer05545752006-08-25 21:37:17 +0000689 return MakeErrMsg(ErrStr, path + ": Can't read directory: ");
Reid Spencer1cf2d042005-07-07 23:35:23 +0000690 }
691
Jeff Cohen85c716f2005-07-08 05:02:13 +0000692 for (std::vector<Path>::iterator I = list.begin(); I != list.end();
Reid Spencer1cf2d042005-07-07 23:35:23 +0000693 ++I) {
694 Path &aPath = *I;
Reid Spencera229c5c2005-07-08 03:08:58 +0000695 aPath.eraseFromDisk(true);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000696 }
697 } else {
698 if (GetLastError() != ERROR_FILE_NOT_FOUND)
Reid Spencer05545752006-08-25 21:37:17 +0000699 return MakeErrMsg(ErrStr, path + ": Can't read directory: ");
Reid Spencer1cf2d042005-07-07 23:35:23 +0000700 }
701 }
702
703 pathname[lastchar] = 0;
704 if (!RemoveDirectory(pathname))
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000705 return MakeErrMsg(ErrStr,
Reid Spencer05545752006-08-25 21:37:17 +0000706 std::string(pathname) + ": Can't destroy directory: ");
Chris Lattner0c332312006-07-28 22:29:50 +0000707 return false;
Jeff Cohen31102892007-04-07 20:47:27 +0000708 } else {
709 // Read-only files cannot be deleted on Windows. Must remove the read-only
710 // attribute first.
711 if (fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
712 if (!SetFileAttributes(path.c_str(),
713 fi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY))
714 return MakeErrMsg(ErrStr, path + ": Can't destroy file: ");
715 }
716
717 if (!DeleteFile(path.c_str()))
718 return MakeErrMsg(ErrStr, path + ": Can't destroy file: ");
719 return false;
720 }
Reid Spencerb016a372004-09-15 05:49:50 +0000721}
722
Reid Spencer3b0cc782004-12-14 18:42:13 +0000723bool Path::getMagicNumber(std::string& Magic, unsigned len) const {
Reid Spencer3b0cc782004-12-14 18:42:13 +0000724 assert(len < 1024 && "Request for magic string too long");
Michael J. Spencer1211d432010-08-31 06:36:33 +0000725 char* buf = reinterpret_cast<char*>(alloca(len));
Jeff Cohen51b8d212004-12-31 19:01:08 +0000726
727 HANDLE h = CreateFile(path.c_str(),
728 GENERIC_READ,
729 FILE_SHARE_READ,
730 NULL,
731 OPEN_EXISTING,
732 FILE_ATTRIBUTE_NORMAL,
733 NULL);
734 if (h == INVALID_HANDLE_VALUE)
Reid Spencer3b0cc782004-12-14 18:42:13 +0000735 return false;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000736
737 DWORD nRead = 0;
738 BOOL ret = ReadFile(h, buf, len, &nRead, NULL);
739 CloseHandle(h);
740
741 if (!ret || nRead != len)
Reid Spencer3b0cc782004-12-14 18:42:13 +0000742 return false;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000743
Michael J. Spencer1211d432010-08-31 06:36:33 +0000744 Magic = std::string(buf, len);
Reid Spencer3b0cc782004-12-14 18:42:13 +0000745 return true;
746}
747
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000748bool
Reid Spencer5a060772006-08-23 07:30:48 +0000749Path::renamePathOnDisk(const Path& newName, std::string* ErrMsg) {
Francois Pichet3eddd982010-09-30 00:44:58 +0000750 if (!MoveFileEx(path.c_str(), newName.c_str(), MOVEFILE_REPLACE_EXISTING))
751 return MakeErrMsg(ErrMsg, "Can't move '" + path + "' to '" + newName.path
752 + "': ");
753 return false;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000754}
755
756bool
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000757Path::setStatusInfoOnDisk(const FileStatus &si, std::string *ErrMsg) const {
Jeff Cohen966fa412005-07-09 18:42:49 +0000758 // FIXME: should work on directories also.
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000759 if (!si.isFile) {
760 return true;
761 }
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000762
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000763 HANDLE h = CreateFile(path.c_str(),
764 FILE_READ_ATTRIBUTES | FILE_WRITE_ATTRIBUTES,
765 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
Jeff Cohend40a7de2004-12-31 05:07:26 +0000766 NULL,
767 OPEN_EXISTING,
768 FILE_ATTRIBUTE_NORMAL,
769 NULL);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000770 if (h == INVALID_HANDLE_VALUE)
Chris Lattner1bebfb52006-07-28 22:36:17 +0000771 return true;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000772
773 BY_HANDLE_FILE_INFORMATION bhfi;
774 if (!GetFileInformationByHandle(h, &bhfi)) {
Jeff Cohen51b8d212004-12-31 19:01:08 +0000775 DWORD err = GetLastError();
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000776 CloseHandle(h);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000777 SetLastError(err);
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000778 return MakeErrMsg(ErrMsg, path + ": GetFileInformationByHandle: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000779 }
780
Michael J. Spencer44edb0b2010-08-28 16:39:32 +0000781 ULARGE_INTEGER ui;
782 ui.QuadPart = si.modTime.toWin32Time();
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000783 FILETIME ft;
Michael J. Spencer44edb0b2010-08-28 16:39:32 +0000784 ft.dwLowDateTime = ui.LowPart;
785 ft.dwHighDateTime = ui.HighPart;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000786 BOOL ret = SetFileTime(h, NULL, &ft, &ft);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000787 DWORD err = GetLastError();
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000788 CloseHandle(h);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000789 if (!ret) {
790 SetLastError(err);
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000791 return MakeErrMsg(ErrMsg, path + ": SetFileTime: ");
Jeff Cohen51b8d212004-12-31 19:01:08 +0000792 }
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000793
794 // Best we can do with Unix permission bits is to interpret the owner
795 // writable bit.
796 if (si.mode & 0200) {
797 if (bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
798 if (!SetFileAttributes(path.c_str(),
Jeff Cohend40a7de2004-12-31 05:07:26 +0000799 bhfi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY))
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000800 return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000801 }
802 } else {
803 if (!(bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY)) {
804 if (!SetFileAttributes(path.c_str(),
Jeff Cohend40a7de2004-12-31 05:07:26 +0000805 bhfi.dwFileAttributes | FILE_ATTRIBUTE_READONLY))
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000806 return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000807 }
808 }
809
Chris Lattner1bebfb52006-07-28 22:36:17 +0000810 return false;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000811}
812
Reid Spencer30300992006-08-24 18:58:37 +0000813bool
814CopyFile(const sys::Path &Dest, const sys::Path &Src, std::string* ErrMsg) {
Jeff Cohencb652552004-12-24 02:38:34 +0000815 // Can't use CopyFile macro defined in Windows.h because it would mess up the
816 // above line. We use the expansion it would have in a non-UNICODE build.
817 if (!::CopyFileA(Src.c_str(), Dest.c_str(), false))
Chris Lattner74382b72009-08-23 22:45:37 +0000818 return MakeErrMsg(ErrMsg, "Can't copy '" + Src.str() +
819 "' to '" + Dest.str() + "': ");
Reid Spencer30300992006-08-24 18:58:37 +0000820 return false;
Reid Spencerc29befb2004-12-15 01:50:13 +0000821}
822
Reid Spencer30300992006-08-24 18:58:37 +0000823bool
824Path::makeUnique(bool reuse_current, std::string* ErrMsg) {
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000825 if (reuse_current && !exists())
Reid Spencer30300992006-08-24 18:58:37 +0000826 return false; // File doesn't exist already, just use it!
Reid Spencerc29befb2004-12-15 01:50:13 +0000827
Jeff Cohen9437bb62005-01-27 03:49:03 +0000828 // Reserve space for -XXXXXX at the end.
829 char *FNBuffer = (char*) alloca(path.size()+8);
830 unsigned offset = path.size();
831 path.copy(FNBuffer, offset);
Reid Spencerc29befb2004-12-15 01:50:13 +0000832
Jeff Cohen966fa412005-07-09 18:42:49 +0000833 // Find a numeric suffix that isn't used by an existing file. Assume there
834 // won't be more than 1 million files with the same prefix. Probably a safe
835 // bet.
Jeff Cohen9437bb62005-01-27 03:49:03 +0000836 static unsigned FCounter = 0;
837 do {
838 sprintf(FNBuffer+offset, "-%06u", FCounter);
839 if (++FCounter > 999999)
840 FCounter = 0;
841 path = FNBuffer;
842 } while (exists());
Reid Spencer30300992006-08-24 18:58:37 +0000843 return false;
Reid Spencerc29befb2004-12-15 01:50:13 +0000844}
845
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000846bool
Reid Spencer30300992006-08-24 18:58:37 +0000847Path::createTemporaryFileOnDisk(bool reuse_current, std::string* ErrMsg) {
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000848 // Make this into a unique file name
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000849 makeUnique(reuse_current, ErrMsg);
Jeff Cohen9437bb62005-01-27 03:49:03 +0000850
851 // Now go and create it
852 HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW,
853 FILE_ATTRIBUTE_NORMAL, NULL);
854 if (h == INVALID_HANDLE_VALUE)
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000855 return MakeErrMsg(ErrMsg, path + ": can't create file");
Jeff Cohen9437bb62005-01-27 03:49:03 +0000856
857 CloseHandle(h);
Reid Spencer30300992006-08-24 18:58:37 +0000858 return false;
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000859}
860
Chris Lattner799ed102008-04-01 06:00:12 +0000861/// MapInFilePages - Not yet implemented on win32.
862const char *Path::MapInFilePages(int FD, uint64_t FileSize) {
863 return 0;
864}
865
866/// MapInFilePages - Not yet implemented on win32.
867void Path::UnMapFilePages(const char *Base, uint64_t FileSize) {
868 assert(0 && "NOT IMPLEMENTED");
869}
870
Reid Spencerb016a372004-09-15 05:49:50 +0000871}
Reid Spencercbad7012004-09-11 04:59:30 +0000872}