blob: 2dbf13e8ccbb5052155944e66bfe52aff6ec7463 [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
Michael J. Spencera9cf7b82010-10-20 15:23:58 +000067// push_back 0 on create, and pop_back on delete.
68struct ScopedNullTerminator {
69 std::string &str;
70 ScopedNullTerminator(std::string &s) : str(s) { str.push_back(0); }
71 ~ScopedNullTerminator() { str.pop_back(); }
72};
73
Reid Spencerb016a372004-09-15 05:49:50 +000074bool
Reid Spencer07adb282004-11-05 22:15:36 +000075Path::isValid() const {
Reid Spencerb016a372004-09-15 05:49:50 +000076 if (path.empty())
77 return false;
Reid Spencerd0c9e0e2004-09-18 19:29:16 +000078
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000079 // If there is a colon, it must be the second character, preceded by a letter
80 // and followed by something.
81 size_t len = path.size();
Michael J. Spencera9cf7b82010-10-20 15:23:58 +000082 // This code assumes that path is null terminated, so make sure it is.
83 ScopedNullTerminator snt(path);
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000084 size_t pos = path.rfind(':',len);
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000085 size_t rootslash = 0;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000086 if (pos != std::string::npos) {
87 if (pos != 1 || !isalpha(path[0]) || len < 3)
88 return false;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000089 rootslash = 2;
90 }
Jeff Cohen85c716f2005-07-08 05:02:13 +000091
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000092 // Look for a UNC path, and if found adjust our notion of the root slash.
93 if (len > 3 && path[0] == '/' && path[1] == '/') {
94 rootslash = path.find('/', 2);
95 if (rootslash == std::string::npos)
96 rootslash = 0;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000097 }
Reid Spencerd0c9e0e2004-09-18 19:29:16 +000098
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000099 // Check for illegal characters.
100 if (path.find_first_of("\\<>\"|\001\002\003\004\005\006\007\010\011\012"
101 "\013\014\015\016\017\020\021\022\023\024\025\026"
102 "\027\030\031\032\033\034\035\036\037")
103 != std::string::npos)
104 return false;
Jeff Cohen85c716f2005-07-08 05:02:13 +0000105
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000106 // Remove trailing slash, unless it's a root slash.
107 if (len > rootslash+1 && path[len-1] == '/')
108 path.erase(--len);
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000109
Jeff Cohen3bbbcc12005-01-14 04:09:39 +0000110 // Check each component for legality.
111 for (pos = 0; pos < len; ++pos) {
112 // A component may not end in a space.
113 if (path[pos] == ' ') {
114 if (path[pos+1] == '/' || path[pos+1] == '\0')
115 return false;
116 }
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000117
Jeff Cohen3bbbcc12005-01-14 04:09:39 +0000118 // A component may not end in a period.
119 if (path[pos] == '.') {
120 if (path[pos+1] == '/' || path[pos+1] == '\0') {
121 // Unless it is the pseudo-directory "."...
122 if (pos == 0 || path[pos-1] == '/' || path[pos-1] == ':')
123 return true;
124 // or "..".
125 if (pos > 0 && path[pos-1] == '.') {
126 if (pos == 1 || path[pos-2] == '/' || path[pos-2] == ':')
127 return true;
128 }
129 return false;
130 }
131 }
132 }
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000133
134 return true;
Reid Spencercbad7012004-09-11 04:59:30 +0000135}
136
Daniel Dunbara00e85c2009-07-12 20:23:56 +0000137void Path::makeAbsolute() {
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000138 TCHAR FullPath[MAX_PATH + 1] = {0};
Daniel Dunbara00e85c2009-07-12 20:23:56 +0000139 LPTSTR FilePart = NULL;
140
141 DWORD RetLength = ::GetFullPathNameA(path.c_str(),
142 sizeof(FullPath)/sizeof(FullPath[0]),
143 FullPath, &FilePart);
144
145 if (0 == RetLength) {
146 // FIXME: Report the error GetLastError()
Daniel Dunbar2749b3e2009-07-26 21:16:42 +0000147 assert(0 && "Unable to make absolute path!");
Daniel Dunbara00e85c2009-07-12 20:23:56 +0000148 } else if (RetLength > MAX_PATH) {
149 // FIXME: Report too small buffer (needed RetLength bytes).
Daniel Dunbar2749b3e2009-07-26 21:16:42 +0000150 assert(0 && "Unable to make absolute path!");
Daniel Dunbara00e85c2009-07-12 20:23:56 +0000151 } else {
152 path = FullPath;
153 }
154}
155
Chris Lattner88d7e402009-06-15 04:17:07 +0000156bool
157Path::isAbsolute(const char *NameStart, unsigned NameLen) {
158 assert(NameStart);
Daniel Dunbara00e85c2009-07-12 20:23:56 +0000159 // FIXME: This does not handle correctly an absolute path starting from
160 // a drive letter or in UNC format.
Chris Lattner88d7e402009-06-15 04:17:07 +0000161 switch (NameLen) {
162 case 0:
163 return false;
164 case 1:
165 case 2:
166 return NameStart[0] == '/';
167 default:
Chris Lattnera79eefd2009-08-12 17:47:06 +0000168 return (NameStart[0] == '/' || (NameStart[1] == ':' && NameStart[2] == '/')) ||
169 (NameStart[0] == '\\' || (NameStart[1] == ':' && NameStart[2] == '\\'));
Chris Lattner88d7e402009-06-15 04:17:07 +0000170 }
171}
172
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000173bool
Reid Spencer69cce812007-03-29 16:43:20 +0000174Path::isAbsolute() const {
Daniel Dunbara00e85c2009-07-12 20:23:56 +0000175 // FIXME: This does not handle correctly an absolute path starting from
176 // a drive letter or in UNC format.
Jeff Cohen84892be2007-03-29 17:27:38 +0000177 switch (path.length()) {
178 case 0:
179 return false;
180 case 1:
181 case 2:
182 return path[0] == '/';
183 default:
184 return path[0] == '/' || (path[1] == ':' && path[2] == '/');
185 }
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000186}
Reid Spencer69cce812007-03-29 16:43:20 +0000187
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000188static Path *TempDirectory;
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000189
Reid Spencerb016a372004-09-15 05:49:50 +0000190Path
Reid Spencercab0e432006-08-22 22:46:39 +0000191Path::GetTemporaryDirectory(std::string* ErrMsg) {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000192 if (TempDirectory)
193 return *TempDirectory;
194
195 char pathname[MAX_PATH];
Reid Spencercab0e432006-08-22 22:46:39 +0000196 if (!GetTempPath(MAX_PATH, pathname)) {
197 if (ErrMsg)
198 *ErrMsg = "Can't determine temporary directory";
199 return Path();
200 }
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000201
Reid Spencerb016a372004-09-15 05:49:50 +0000202 Path result;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000203 result.set(pathname);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000204
205 // Append a subdirectory passed on our process id so multiple LLVMs don't
206 // step on each other's toes.
Jeff Cohend41b30d2006-11-05 19:31:28 +0000207#ifdef __MINGW32__
208 // Mingw's Win32 header files are broken.
Reid Spencerab4d9b02006-06-08 18:08:43 +0000209 sprintf(pathname, "LLVM_%u", unsigned(GetCurrentProcessId()));
Jeff Cohend41b30d2006-11-05 19:31:28 +0000210#else
211 sprintf(pathname, "LLVM_%u", GetCurrentProcessId());
212#endif
Jeff Cohenedb9d6b2005-07-08 02:48:42 +0000213 result.appendComponent(pathname);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000214
215 // If there's a directory left over from a previous LLVM execution that
216 // happened to have the same process id, get rid of it.
Reid Spencera229c5c2005-07-08 03:08:58 +0000217 result.eraseFromDisk(true);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000218
219 // And finally (re-)create the empty directory.
Reid Spencera229c5c2005-07-08 03:08:58 +0000220 result.createDirectoryOnDisk(false);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000221 TempDirectory = new Path(result);
222 return *TempDirectory;
Reid Spencerb016a372004-09-15 05:49:50 +0000223}
224
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000225// FIXME: the following set of functions don't map to Windows very well.
Reid Spencerb016a372004-09-15 05:49:50 +0000226Path
227Path::GetRootDirectory() {
228 Path result;
Jeff Cohen966fa412005-07-09 18:42:49 +0000229 result.set("C:/");
Reid Spencerb016a372004-09-15 05:49:50 +0000230 return result;
231}
232
Jeff Cohen85c716f2005-07-08 05:02:13 +0000233void
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000234Path::GetSystemLibraryPaths(std::vector<sys::Path>& Paths) {
Jeff Cohen966fa412005-07-09 18:42:49 +0000235 Paths.push_back(sys::Path("C:/WINDOWS/SYSTEM32"));
236 Paths.push_back(sys::Path("C:/WINDOWS"));
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000237}
238
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000239void
Gabor Greifdb5565a2007-07-06 20:28:40 +0000240Path::GetBitcodeLibraryPaths(std::vector<sys::Path>& Paths) {
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000241 char * env_var = getenv("LLVM_LIB_SEARCH_PATH");
242 if (env_var != 0) {
243 getPathList(env_var,Paths);
244 }
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000245#ifdef LLVM_LIBDIR
246 {
247 Path tmpPath;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000248 if (tmpPath.set(LLVM_LIBDIR))
Reid Spencerc7f08322005-07-07 18:21:42 +0000249 if (tmpPath.canRead())
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000250 Paths.push_back(tmpPath);
251 }
252#endif
253 GetSystemLibraryPaths(Paths);
Reid Spencerb016a372004-09-15 05:49:50 +0000254}
255
256Path
257Path::GetLLVMDefaultConfigDir() {
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000258 // TODO: this isn't going to fly on Windows
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000259 return Path("/etc/llvm");
Reid Spencerb016a372004-09-15 05:49:50 +0000260}
261
262Path
Reid Spencerb016a372004-09-15 05:49:50 +0000263Path::GetUserHomeDirectory() {
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000264 // TODO: Typical Windows setup doesn't define HOME.
Reid Spencerb016a372004-09-15 05:49:50 +0000265 const char* home = getenv("HOME");
266 if (home) {
267 Path result;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000268 if (result.set(home))
Reid Spencerb016a372004-09-15 05:49:50 +0000269 return result;
270 }
271 return GetRootDirectory();
272}
Ted Kremenek79200782007-12-18 22:07:33 +0000273
274Path
275Path::GetCurrentDirectory() {
276 char pathname[MAX_PATH];
Anton Korobeynikov64ddbe42007-12-22 14:26:49 +0000277 ::GetCurrentDirectoryA(MAX_PATH,pathname);
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000278 return Path(pathname);
Ted Kremenek79200782007-12-18 22:07:33 +0000279}
280
Chris Lattner1a091442008-03-03 02:55:43 +0000281/// GetMainExecutable - Return the path to the main executable, given the
282/// value of argv[0] from program startup.
283Path Path::GetMainExecutable(const char *argv0, void *MainAddr) {
Chris Lattnerc5718d02009-06-15 05:38:04 +0000284 char pathname[MAX_PATH];
285 DWORD ret = ::GetModuleFileNameA(NULL, pathname, MAX_PATH);
286 return ret != MAX_PATH ? Path(pathname) : Path();
Chris Lattner1a091442008-03-03 02:55:43 +0000287}
288
Ted Kremenek79200782007-12-18 22:07:33 +0000289
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000290// FIXME: the above set of functions don't map to Windows very well.
291
Jeff Cohen966fa412005-07-09 18:42:49 +0000292
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000293StringRef Path::getDirname() const {
294 return getDirnameCharSep(path, "/");
Ted Kremenek9b01cc02008-04-07 22:01:32 +0000295}
Ted Kremenekcf55c8e2008-04-07 21:53:57 +0000296
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000297StringRef
Reid Spencer07adb282004-11-05 22:15:36 +0000298Path::getBasename() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000299 // Find the last slash
300 size_t slash = path.rfind('/');
301 if (slash == std::string::npos)
302 slash = 0;
303 else
304 slash++;
305
Jeff Cohen966fa412005-07-09 18:42:49 +0000306 size_t dot = path.rfind('.');
307 if (dot == std::string::npos || dot < slash)
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000308 return StringRef(path).substr(slash);
Jeff Cohen966fa412005-07-09 18:42:49 +0000309 else
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000310 return StringRef(path).substr(slash, dot - slash);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000311}
312
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000313StringRef
Argyrios Kyrtzidisfc199882008-06-15 15:15:19 +0000314Path::getSuffix() const {
315 // Find the last slash
316 size_t slash = path.rfind('/');
317 if (slash == std::string::npos)
318 slash = 0;
319 else
320 slash++;
321
322 size_t dot = path.rfind('.');
323 if (dot == std::string::npos || dot < slash)
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000324 return StringRef("");
Argyrios Kyrtzidisfc199882008-06-15 15:15:19 +0000325 else
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000326 return StringRef(path).substr(dot + 1);
Argyrios Kyrtzidisfc199882008-06-15 15:15:19 +0000327}
328
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000329bool
Reid Spencerb016a372004-09-15 05:49:50 +0000330Path::exists() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000331 DWORD attr = GetFileAttributes(path.c_str());
332 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000333}
334
335bool
Ted Kremenekfd527112007-12-18 19:46:22 +0000336Path::isDirectory() const {
337 DWORD attr = GetFileAttributes(path.c_str());
338 return (attr != INVALID_FILE_ATTRIBUTES) &&
339 (attr & FILE_ATTRIBUTE_DIRECTORY);
340}
341
342bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000343Path::canRead() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000344 // FIXME: take security attributes into account.
345 DWORD attr = GetFileAttributes(path.c_str());
346 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000347}
348
349bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000350Path::canWrite() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000351 // FIXME: take security attributes into account.
352 DWORD attr = GetFileAttributes(path.c_str());
353 return (attr != INVALID_FILE_ATTRIBUTES) && !(attr & FILE_ATTRIBUTE_READONLY);
Reid Spencerb016a372004-09-15 05:49:50 +0000354}
355
356bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000357Path::canExecute() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000358 // FIXME: take security attributes into account.
359 DWORD attr = GetFileAttributes(path.c_str());
360 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000361}
362
Edward O'Callaghand41e9442009-11-24 15:19:10 +0000363bool
Edward O'Callaghane49a8e42009-11-25 06:32:19 +0000364Path::isRegularFile() const {
365 if (isDirectory())
366 return false;
367 return true;
Edward O'Callaghand41e9442009-11-24 15:19:10 +0000368}
369
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000370StringRef
Reid Spencerb016a372004-09-15 05:49:50 +0000371Path::getLast() const {
372 // Find the last slash
373 size_t pos = path.rfind('/');
374
375 // Handle the corner cases
376 if (pos == std::string::npos)
377 return path;
378
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000379 // If the last character is a slash, we have a root directory
380 if (pos == path.length()-1)
381 return path;
382
Reid Spencerb016a372004-09-15 05:49:50 +0000383 // Return everything after the last slash
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000384 return StringRef(path).substr(pos+1);
Reid Spencerb016a372004-09-15 05:49:50 +0000385}
386
Reid Spencer8475ec02007-03-29 19:05:44 +0000387const FileStatus *
Reid Spencer2ae9d112007-04-07 18:52:17 +0000388PathWithStatus::getFileStatus(bool update, std::string *ErrStr) const {
389 if (!fsIsValid || update) {
Reid Spencer69cce812007-03-29 16:43:20 +0000390 WIN32_FILE_ATTRIBUTE_DATA fi;
Reid Spencer8475ec02007-03-29 19:05:44 +0000391 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) {
392 MakeErrMsg(ErrStr, "getStatusInfo():" + std::string(path) +
Reid Spencer69cce812007-03-29 16:43:20 +0000393 ": Can't get status: ");
Reid Spencer8475ec02007-03-29 19:05:44 +0000394 return 0;
395 }
Jeff Cohen626e38e2004-12-14 05:26:43 +0000396
Reid Spencer2ae9d112007-04-07 18:52:17 +0000397 status.fileSize = fi.nFileSizeHigh;
398 status.fileSize <<= sizeof(fi.nFileSizeHigh)*8;
399 status.fileSize += fi.nFileSizeLow;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000400
Reid Spencer2ae9d112007-04-07 18:52:17 +0000401 status.mode = fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY ? 0555 : 0777;
402 status.user = 9999; // Not applicable to Windows, so...
403 status.group = 9999; // Not applicable to Windows, so...
Jeff Cohen626e38e2004-12-14 05:26:43 +0000404
Reid Spencer4031bef2007-03-29 17:00:31 +0000405 // FIXME: this is only unique if the file is accessed by the same file path.
406 // How do we do this for C:\dir\file and ..\dir\file ? Unix has inode
407 // numbers, but the concept doesn't exist in Windows.
Reid Spencer2ae9d112007-04-07 18:52:17 +0000408 status.uniqueID = 0;
Reid Spencer4031bef2007-03-29 17:00:31 +0000409 for (unsigned i = 0; i < path.length(); ++i)
Reid Spencer2ae9d112007-04-07 18:52:17 +0000410 status.uniqueID += path[i];
Reid Spencer4031bef2007-03-29 17:00:31 +0000411
Michael J. Spencer44edb0b2010-08-28 16:39:32 +0000412 ULARGE_INTEGER ui;
413 ui.LowPart = fi.ftLastWriteTime.dwLowDateTime;
414 ui.HighPart = fi.ftLastWriteTime.dwHighDateTime;
415 status.modTime.fromWin32Time(ui.QuadPart);
Reid Spencer69cce812007-03-29 16:43:20 +0000416
Reid Spencer2ae9d112007-04-07 18:52:17 +0000417 status.isDir = fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY;
418 fsIsValid = true;
Reid Spencer69cce812007-03-29 16:43:20 +0000419 }
Reid Spencer2ae9d112007-04-07 18:52:17 +0000420 return &status;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000421}
422
Reid Spencera34a1572006-08-22 23:54:35 +0000423bool Path::makeReadableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000424 // All files are readable on Windows (ignoring security attributes).
Reid Spencera34a1572006-08-22 23:54:35 +0000425 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000426}
427
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000428bool Path::makeWriteableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000429 DWORD attr = GetFileAttributes(path.c_str());
430
431 // If it doesn't exist, we're done.
432 if (attr == INVALID_FILE_ATTRIBUTES)
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000433 return false;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000434
435 if (attr & FILE_ATTRIBUTE_READONLY) {
Reid Spencera34a1572006-08-22 23:54:35 +0000436 if (!SetFileAttributes(path.c_str(), attr & ~FILE_ATTRIBUTE_READONLY)) {
437 MakeErrMsg(ErrMsg, std::string(path) + ": Can't make file writable: ");
438 return true;
439 }
Jeff Cohen626e38e2004-12-14 05:26:43 +0000440 }
Reid Spencera34a1572006-08-22 23:54:35 +0000441 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000442}
443
Reid Spencera34a1572006-08-22 23:54:35 +0000444bool Path::makeExecutableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000445 // All files are executable on Windows (ignoring security attributes).
Reid Spencera34a1572006-08-22 23:54:35 +0000446 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000447}
448
Reid Spencerb016a372004-09-15 05:49:50 +0000449bool
Reid Spencer142ca8e2006-08-23 06:56:27 +0000450Path::getDirectoryContents(std::set<Path>& result, std::string* ErrMsg) const {
Jeff Cohen31102892007-04-07 20:47:27 +0000451 WIN32_FILE_ATTRIBUTE_DATA fi;
452 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) {
453 MakeErrMsg(ErrMsg, path + ": can't get status of file");
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000454 return true;
Jeff Cohen31102892007-04-07 20:47:27 +0000455 }
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000456
Jeff Cohen31102892007-04-07 20:47:27 +0000457 if (!(fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) {
458 if (ErrMsg)
459 *ErrMsg = path + ": not a directory";
Reid Spencer142ca8e2006-08-23 06:56:27 +0000460 return true;
461 }
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000462
463 result.clear();
464 WIN32_FIND_DATA fd;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000465 std::string searchpath = path;
466 if (path.size() == 0 || searchpath[path.size()-1] == '/')
Jeff Cohen85c716f2005-07-08 05:02:13 +0000467 searchpath += "*";
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000468 else
469 searchpath += "/*";
Jeff Cohen85c716f2005-07-08 05:02:13 +0000470
Jeff Cohen9437bb62005-01-27 03:49:03 +0000471 HANDLE h = FindFirstFile(searchpath.c_str(), &fd);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000472 if (h == INVALID_HANDLE_VALUE) {
Jeff Cohen9437bb62005-01-27 03:49:03 +0000473 if (GetLastError() == ERROR_FILE_NOT_FOUND)
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000474 return true; // not really an error, now is it?
Reid Spencer142ca8e2006-08-23 06:56:27 +0000475 MakeErrMsg(ErrMsg, path + ": Can't read directory: ");
476 return true;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000477 }
478
479 do {
Jeff Cohend40a7de2004-12-31 05:07:26 +0000480 if (fd.cFileName[0] == '.')
481 continue;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000482 Path aPath(path);
483 aPath.appendComponent(&fd.cFileName[0]);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000484 result.insert(aPath);
485 } while (FindNextFile(h, &fd));
486
Jeff Cohen51b8d212004-12-31 19:01:08 +0000487 DWORD err = GetLastError();
488 FindClose(h);
489 if (err != ERROR_NO_MORE_FILES) {
490 SetLastError(err);
Reid Spencer142ca8e2006-08-23 06:56:27 +0000491 MakeErrMsg(ErrMsg, path + ": Can't read directory: ");
492 return true;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000493 }
Reid Spencer142ca8e2006-08-23 06:56:27 +0000494 return false;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000495}
496
497bool
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000498Path::set(StringRef a_path) {
Dan Gohman30359592008-01-29 13:02:09 +0000499 if (a_path.empty())
Reid Spencerb016a372004-09-15 05:49:50 +0000500 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000501 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000502 path = a_path;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000503 FlipBackSlashes(path);
Reid Spencer07adb282004-11-05 22:15:36 +0000504 if (!isValid()) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000505 path = save;
Reid Spencerb016a372004-09-15 05:49:50 +0000506 return false;
507 }
508 return true;
509}
510
511bool
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000512Path::appendComponent(StringRef name) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000513 if (name.empty())
Reid Spencerb016a372004-09-15 05:49:50 +0000514 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000515 std::string save(path);
516 if (!path.empty()) {
517 size_t last = path.size() - 1;
Jeff Cohen85c716f2005-07-08 05:02:13 +0000518 if (path[last] != '/')
Reid Spencer1cf2d042005-07-07 23:35:23 +0000519 path += '/';
520 }
521 path += name;
Reid Spencer07adb282004-11-05 22:15:36 +0000522 if (!isValid()) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000523 path = save;
Reid Spencerb016a372004-09-15 05:49:50 +0000524 return false;
525 }
526 return true;
527}
528
529bool
Reid Spencer1cf2d042005-07-07 23:35:23 +0000530Path::eraseComponent() {
Reid Spencerb016a372004-09-15 05:49:50 +0000531 size_t slashpos = path.rfind('/',path.size());
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000532 if (slashpos == path.size() - 1 || slashpos == std::string::npos)
Reid Spencerb016a372004-09-15 05:49:50 +0000533 return false;
Jeff Cohen966fa412005-07-09 18:42:49 +0000534 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000535 path.erase(slashpos);
Jeff Cohen966fa412005-07-09 18:42:49 +0000536 if (!isValid()) {
537 path = save;
538 return false;
539 }
Reid Spencerb016a372004-09-15 05:49:50 +0000540 return true;
541}
542
543bool
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000544Path::appendSuffix(StringRef suffix) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000545 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000546 path.append(".");
547 path.append(suffix);
Reid Spencer07adb282004-11-05 22:15:36 +0000548 if (!isValid()) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000549 path = save;
Reid Spencerb016a372004-09-15 05:49:50 +0000550 return false;
551 }
552 return true;
553}
554
555bool
Reid Spencer1cf2d042005-07-07 23:35:23 +0000556Path::eraseSuffix() {
Reid Spencerb016a372004-09-15 05:49:50 +0000557 size_t dotpos = path.rfind('.',path.size());
558 size_t slashpos = path.rfind('/',path.size());
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000559 if (dotpos != std::string::npos) {
Jeff Cohen966fa412005-07-09 18:42:49 +0000560 if (slashpos == std::string::npos || dotpos > slashpos+1) {
561 std::string save(path);
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000562 path.erase(dotpos, path.size()-dotpos);
Jeff Cohen966fa412005-07-09 18:42:49 +0000563 if (!isValid()) {
564 path = save;
565 return false;
566 }
Jeff Cohen85c716f2005-07-08 05:02:13 +0000567 return true;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000568 }
Reid Spencerb016a372004-09-15 05:49:50 +0000569 }
570 return false;
571}
572
Reid Spencer30300992006-08-24 18:58:37 +0000573inline bool PathMsg(std::string* ErrMsg, const char* pathname, const char*msg) {
574 if (ErrMsg)
575 *ErrMsg = std::string(pathname) + ": " + std::string(msg);
576 return true;
577}
578
Reid Spencerb016a372004-09-15 05:49:50 +0000579bool
Reid Spencer30300992006-08-24 18:58:37 +0000580Path::createDirectoryOnDisk(bool create_parents, std::string* ErrMsg) {
Reid Spencerb016a372004-09-15 05:49:50 +0000581 // Get a writeable copy of the path name
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000582 size_t len = path.length();
583 char *pathname = reinterpret_cast<char *>(_alloca(len+2));
584 path.copy(pathname, len);
585 pathname[len] = 0;
Jeff Cohen85c716f2005-07-08 05:02:13 +0000586
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000587 // Make sure it ends with a slash.
588 if (len == 0 || pathname[len - 1] != '/') {
589 pathname[len] = '/';
590 pathname[++len] = 0;
591 }
Reid Spencerb016a372004-09-15 05:49:50 +0000592
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000593 // Determine starting point for initial / search.
594 char *next = pathname;
595 if (pathname[0] == '/' && pathname[1] == '/') {
596 // Skip host name.
597 next = strchr(pathname+2, '/');
598 if (next == NULL)
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 // Skip share name.
602 next = strchr(next+1, '/');
603 if (next == NULL)
Reid Spencer30300992006-08-24 18:58:37 +0000604 return PathMsg(ErrMsg, pathname,"badly formed remote directory");
605
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000606 next++;
607 if (*next == 0)
Reid Spencer30300992006-08-24 18:58:37 +0000608 return PathMsg(ErrMsg, pathname, "badly formed remote directory");
609
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000610 } else {
611 if (pathname[1] == ':')
612 next += 2; // skip drive letter
613 if (*next == '/')
614 next++; // skip root directory
615 }
Reid Spencerb016a372004-09-15 05:49:50 +0000616
617 // If we're supposed to create intermediate directories
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000618 if (create_parents) {
Reid Spencerb016a372004-09-15 05:49:50 +0000619 // Loop through the directory components until we're done
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000620 while (*next) {
621 next = strchr(next, '/');
Reid Spencerb016a372004-09-15 05:49:50 +0000622 *next = 0;
Benjamin Kramere9684c62009-11-05 14:32:40 +0000623 if (!CreateDirectory(pathname, NULL) &&
624 GetLastError() != ERROR_ALREADY_EXISTS)
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000625 return MakeErrMsg(ErrMsg,
Reid Spencer30300992006-08-24 18:58:37 +0000626 std::string(pathname) + ": Can't create directory: ");
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000627 *next++ = '/';
Reid Spencerb016a372004-09-15 05:49:50 +0000628 }
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000629 } else {
630 // Drop trailing slash.
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000631 pathname[len-1] = 0;
Benjamin Kramere9684c62009-11-05 14:32:40 +0000632 if (!CreateDirectory(pathname, NULL) &&
633 GetLastError() != ERROR_ALREADY_EXISTS) {
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000634 return MakeErrMsg(ErrMsg, std::string(pathname) + ": Can't create directory: ");
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000635 }
Reid Spencerb016a372004-09-15 05:49:50 +0000636 }
Reid Spencer30300992006-08-24 18:58:37 +0000637 return false;
Reid Spencerb016a372004-09-15 05:49:50 +0000638}
639
640bool
Reid Spencer30300992006-08-24 18:58:37 +0000641Path::createFileOnDisk(std::string* ErrMsg) {
Reid Spencerb016a372004-09-15 05:49:50 +0000642 // Create the file
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000643 HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW,
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000644 FILE_ATTRIBUTE_NORMAL, NULL);
645 if (h == INVALID_HANDLE_VALUE)
Reid Spencer30300992006-08-24 18:58:37 +0000646 return MakeErrMsg(ErrMsg, path + ": Can't create file: ");
Reid Spencerb016a372004-09-15 05:49:50 +0000647
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000648 CloseHandle(h);
Reid Spencer30300992006-08-24 18:58:37 +0000649 return false;
Reid Spencerb016a372004-09-15 05:49:50 +0000650}
651
652bool
Chris Lattner0c332312006-07-28 22:29:50 +0000653Path::eraseFromDisk(bool remove_contents, std::string *ErrStr) const {
Jeff Cohen31102892007-04-07 20:47:27 +0000654 WIN32_FILE_ATTRIBUTE_DATA fi;
655 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi))
656 return true;
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000657
Jeff Cohen31102892007-04-07 20:47:27 +0000658 if (fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000659 // If it doesn't exist, we're done.
Jeff Cohen85c716f2005-07-08 05:02:13 +0000660 if (!exists())
Chris Lattner0c332312006-07-28 22:29:50 +0000661 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000662
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000663 char *pathname = reinterpret_cast<char *>(_alloca(path.length()+3));
Reid Spencer1cf2d042005-07-07 23:35:23 +0000664 int lastchar = path.length() - 1 ;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000665 path.copy(pathname, lastchar+1);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000666
667 // Make path end with '/*'.
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000668 if (pathname[lastchar] != '/')
669 pathname[++lastchar] = '/';
Reid Spencer1cf2d042005-07-07 23:35:23 +0000670 pathname[lastchar+1] = '*';
671 pathname[lastchar+2] = 0;
672
673 if (remove_contents) {
674 WIN32_FIND_DATA fd;
675 HANDLE h = FindFirstFile(pathname, &fd);
676
677 // It's a bad idea to alter the contents of a directory while enumerating
678 // its contents. So build a list of its contents first, then destroy them.
679
680 if (h != INVALID_HANDLE_VALUE) {
681 std::vector<Path> list;
682
683 do {
684 if (strcmp(fd.cFileName, ".") == 0)
685 continue;
686 if (strcmp(fd.cFileName, "..") == 0)
687 continue;
688
Jeff Cohen85c716f2005-07-08 05:02:13 +0000689 Path aPath(path);
690 aPath.appendComponent(&fd.cFileName[0]);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000691 list.push_back(aPath);
692 } while (FindNextFile(h, &fd));
693
694 DWORD err = GetLastError();
695 FindClose(h);
696 if (err != ERROR_NO_MORE_FILES) {
697 SetLastError(err);
Reid Spencer05545752006-08-25 21:37:17 +0000698 return MakeErrMsg(ErrStr, path + ": Can't read directory: ");
Reid Spencer1cf2d042005-07-07 23:35:23 +0000699 }
700
Jeff Cohen85c716f2005-07-08 05:02:13 +0000701 for (std::vector<Path>::iterator I = list.begin(); I != list.end();
Reid Spencer1cf2d042005-07-07 23:35:23 +0000702 ++I) {
703 Path &aPath = *I;
Reid Spencera229c5c2005-07-08 03:08:58 +0000704 aPath.eraseFromDisk(true);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000705 }
706 } else {
707 if (GetLastError() != ERROR_FILE_NOT_FOUND)
Reid Spencer05545752006-08-25 21:37:17 +0000708 return MakeErrMsg(ErrStr, path + ": Can't read directory: ");
Reid Spencer1cf2d042005-07-07 23:35:23 +0000709 }
710 }
711
712 pathname[lastchar] = 0;
713 if (!RemoveDirectory(pathname))
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000714 return MakeErrMsg(ErrStr,
Reid Spencer05545752006-08-25 21:37:17 +0000715 std::string(pathname) + ": Can't destroy directory: ");
Chris Lattner0c332312006-07-28 22:29:50 +0000716 return false;
Jeff Cohen31102892007-04-07 20:47:27 +0000717 } else {
718 // Read-only files cannot be deleted on Windows. Must remove the read-only
719 // attribute first.
720 if (fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
721 if (!SetFileAttributes(path.c_str(),
722 fi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY))
723 return MakeErrMsg(ErrStr, path + ": Can't destroy file: ");
724 }
725
726 if (!DeleteFile(path.c_str()))
727 return MakeErrMsg(ErrStr, path + ": Can't destroy file: ");
728 return false;
729 }
Reid Spencerb016a372004-09-15 05:49:50 +0000730}
731
Reid Spencer3b0cc782004-12-14 18:42:13 +0000732bool Path::getMagicNumber(std::string& Magic, unsigned len) const {
Reid Spencer3b0cc782004-12-14 18:42:13 +0000733 assert(len < 1024 && "Request for magic string too long");
Michael J. Spencer1211d432010-08-31 06:36:33 +0000734 char* buf = reinterpret_cast<char*>(alloca(len));
Jeff Cohen51b8d212004-12-31 19:01:08 +0000735
736 HANDLE h = CreateFile(path.c_str(),
737 GENERIC_READ,
738 FILE_SHARE_READ,
739 NULL,
740 OPEN_EXISTING,
741 FILE_ATTRIBUTE_NORMAL,
742 NULL);
743 if (h == INVALID_HANDLE_VALUE)
Reid Spencer3b0cc782004-12-14 18:42:13 +0000744 return false;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000745
746 DWORD nRead = 0;
747 BOOL ret = ReadFile(h, buf, len, &nRead, NULL);
748 CloseHandle(h);
749
750 if (!ret || nRead != len)
Reid Spencer3b0cc782004-12-14 18:42:13 +0000751 return false;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000752
Michael J. Spencer1211d432010-08-31 06:36:33 +0000753 Magic = std::string(buf, len);
Reid Spencer3b0cc782004-12-14 18:42:13 +0000754 return true;
755}
756
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000757bool
Reid Spencer5a060772006-08-23 07:30:48 +0000758Path::renamePathOnDisk(const Path& newName, std::string* ErrMsg) {
Francois Pichet3eddd982010-09-30 00:44:58 +0000759 if (!MoveFileEx(path.c_str(), newName.c_str(), MOVEFILE_REPLACE_EXISTING))
760 return MakeErrMsg(ErrMsg, "Can't move '" + path + "' to '" + newName.path
761 + "': ");
762 return false;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000763}
764
765bool
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000766Path::setStatusInfoOnDisk(const FileStatus &si, std::string *ErrMsg) const {
Jeff Cohen966fa412005-07-09 18:42:49 +0000767 // FIXME: should work on directories also.
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000768 if (!si.isFile) {
769 return true;
770 }
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000771
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000772 HANDLE h = CreateFile(path.c_str(),
773 FILE_READ_ATTRIBUTES | FILE_WRITE_ATTRIBUTES,
774 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
Jeff Cohend40a7de2004-12-31 05:07:26 +0000775 NULL,
776 OPEN_EXISTING,
777 FILE_ATTRIBUTE_NORMAL,
778 NULL);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000779 if (h == INVALID_HANDLE_VALUE)
Chris Lattner1bebfb52006-07-28 22:36:17 +0000780 return true;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000781
782 BY_HANDLE_FILE_INFORMATION bhfi;
783 if (!GetFileInformationByHandle(h, &bhfi)) {
Jeff Cohen51b8d212004-12-31 19:01:08 +0000784 DWORD err = GetLastError();
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000785 CloseHandle(h);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000786 SetLastError(err);
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000787 return MakeErrMsg(ErrMsg, path + ": GetFileInformationByHandle: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000788 }
789
Michael J. Spencer44edb0b2010-08-28 16:39:32 +0000790 ULARGE_INTEGER ui;
791 ui.QuadPart = si.modTime.toWin32Time();
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000792 FILETIME ft;
Michael J. Spencer44edb0b2010-08-28 16:39:32 +0000793 ft.dwLowDateTime = ui.LowPart;
794 ft.dwHighDateTime = ui.HighPart;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000795 BOOL ret = SetFileTime(h, NULL, &ft, &ft);
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 if (!ret) {
799 SetLastError(err);
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000800 return MakeErrMsg(ErrMsg, path + ": SetFileTime: ");
Jeff Cohen51b8d212004-12-31 19:01:08 +0000801 }
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000802
803 // Best we can do with Unix permission bits is to interpret the owner
804 // writable bit.
805 if (si.mode & 0200) {
806 if (bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
807 if (!SetFileAttributes(path.c_str(),
Jeff Cohend40a7de2004-12-31 05:07:26 +0000808 bhfi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY))
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000809 return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000810 }
811 } else {
812 if (!(bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY)) {
813 if (!SetFileAttributes(path.c_str(),
Jeff Cohend40a7de2004-12-31 05:07:26 +0000814 bhfi.dwFileAttributes | FILE_ATTRIBUTE_READONLY))
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000815 return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000816 }
817 }
818
Chris Lattner1bebfb52006-07-28 22:36:17 +0000819 return false;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000820}
821
Reid Spencer30300992006-08-24 18:58:37 +0000822bool
823CopyFile(const sys::Path &Dest, const sys::Path &Src, std::string* ErrMsg) {
Jeff Cohencb652552004-12-24 02:38:34 +0000824 // Can't use CopyFile macro defined in Windows.h because it would mess up the
825 // above line. We use the expansion it would have in a non-UNICODE build.
826 if (!::CopyFileA(Src.c_str(), Dest.c_str(), false))
Chris Lattner74382b72009-08-23 22:45:37 +0000827 return MakeErrMsg(ErrMsg, "Can't copy '" + Src.str() +
828 "' to '" + Dest.str() + "': ");
Reid Spencer30300992006-08-24 18:58:37 +0000829 return false;
Reid Spencerc29befb2004-12-15 01:50:13 +0000830}
831
Reid Spencer30300992006-08-24 18:58:37 +0000832bool
833Path::makeUnique(bool reuse_current, std::string* ErrMsg) {
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000834 if (reuse_current && !exists())
Reid Spencer30300992006-08-24 18:58:37 +0000835 return false; // File doesn't exist already, just use it!
Reid Spencerc29befb2004-12-15 01:50:13 +0000836
Jeff Cohen9437bb62005-01-27 03:49:03 +0000837 // Reserve space for -XXXXXX at the end.
838 char *FNBuffer = (char*) alloca(path.size()+8);
839 unsigned offset = path.size();
840 path.copy(FNBuffer, offset);
Reid Spencerc29befb2004-12-15 01:50:13 +0000841
Jeff Cohen966fa412005-07-09 18:42:49 +0000842 // Find a numeric suffix that isn't used by an existing file. Assume there
843 // won't be more than 1 million files with the same prefix. Probably a safe
844 // bet.
Jeff Cohen9437bb62005-01-27 03:49:03 +0000845 static unsigned FCounter = 0;
846 do {
847 sprintf(FNBuffer+offset, "-%06u", FCounter);
848 if (++FCounter > 999999)
849 FCounter = 0;
850 path = FNBuffer;
851 } while (exists());
Reid Spencer30300992006-08-24 18:58:37 +0000852 return false;
Reid Spencerc29befb2004-12-15 01:50:13 +0000853}
854
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000855bool
Reid Spencer30300992006-08-24 18:58:37 +0000856Path::createTemporaryFileOnDisk(bool reuse_current, std::string* ErrMsg) {
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000857 // Make this into a unique file name
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000858 makeUnique(reuse_current, ErrMsg);
Jeff Cohen9437bb62005-01-27 03:49:03 +0000859
860 // Now go and create it
861 HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW,
862 FILE_ATTRIBUTE_NORMAL, NULL);
863 if (h == INVALID_HANDLE_VALUE)
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000864 return MakeErrMsg(ErrMsg, path + ": can't create file");
Jeff Cohen9437bb62005-01-27 03:49:03 +0000865
866 CloseHandle(h);
Reid Spencer30300992006-08-24 18:58:37 +0000867 return false;
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000868}
869
Chris Lattner799ed102008-04-01 06:00:12 +0000870/// MapInFilePages - Not yet implemented on win32.
871const char *Path::MapInFilePages(int FD, uint64_t FileSize) {
872 return 0;
873}
874
875/// MapInFilePages - Not yet implemented on win32.
876void Path::UnMapFilePages(const char *Base, uint64_t FileSize) {
877 assert(0 && "NOT IMPLEMENTED");
878}
879
Reid Spencerb016a372004-09-15 05:49:50 +0000880}
Reid Spencercbad7012004-09-11 04:59:30 +0000881}