blob: 7e2275105a320f6bf15c429f2ec729adefdcd61d [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); }
Michael J. Spencer9f608b12010-10-20 16:00:45 +000071 ~ScopedNullTerminator() {
72 // str.pop_back(); But wait, C++03 doesn't have this...
73 assert(!str.empty() && str[str.size() - 1] == 0
74 && "Null char not present!");
75 str.resize(str.size() - 1);
76 }
Michael J. Spencera9cf7b82010-10-20 15:23:58 +000077};
78
Reid Spencerb016a372004-09-15 05:49:50 +000079bool
Reid Spencer07adb282004-11-05 22:15:36 +000080Path::isValid() const {
Reid Spencerb016a372004-09-15 05:49:50 +000081 if (path.empty())
82 return false;
Reid Spencerd0c9e0e2004-09-18 19:29:16 +000083
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000084 // If there is a colon, it must be the second character, preceded by a letter
85 // and followed by something.
86 size_t len = path.size();
Michael J. Spencera9cf7b82010-10-20 15:23:58 +000087 // This code assumes that path is null terminated, so make sure it is.
88 ScopedNullTerminator snt(path);
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000089 size_t pos = path.rfind(':',len);
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000090 size_t rootslash = 0;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000091 if (pos != std::string::npos) {
92 if (pos != 1 || !isalpha(path[0]) || len < 3)
93 return false;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000094 rootslash = 2;
95 }
Jeff Cohen85c716f2005-07-08 05:02:13 +000096
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000097 // Look for a UNC path, and if found adjust our notion of the root slash.
98 if (len > 3 && path[0] == '/' && path[1] == '/') {
99 rootslash = path.find('/', 2);
100 if (rootslash == std::string::npos)
101 rootslash = 0;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000102 }
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000103
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000104 // Check for illegal characters.
105 if (path.find_first_of("\\<>\"|\001\002\003\004\005\006\007\010\011\012"
106 "\013\014\015\016\017\020\021\022\023\024\025\026"
107 "\027\030\031\032\033\034\035\036\037")
108 != std::string::npos)
109 return false;
Jeff Cohen85c716f2005-07-08 05:02:13 +0000110
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000111 // Remove trailing slash, unless it's a root slash.
112 if (len > rootslash+1 && path[len-1] == '/')
113 path.erase(--len);
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000114
Jeff Cohen3bbbcc12005-01-14 04:09:39 +0000115 // Check each component for legality.
116 for (pos = 0; pos < len; ++pos) {
117 // A component may not end in a space.
118 if (path[pos] == ' ') {
119 if (path[pos+1] == '/' || path[pos+1] == '\0')
120 return false;
121 }
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000122
Jeff Cohen3bbbcc12005-01-14 04:09:39 +0000123 // A component may not end in a period.
124 if (path[pos] == '.') {
125 if (path[pos+1] == '/' || path[pos+1] == '\0') {
126 // Unless it is the pseudo-directory "."...
127 if (pos == 0 || path[pos-1] == '/' || path[pos-1] == ':')
128 return true;
129 // or "..".
130 if (pos > 0 && path[pos-1] == '.') {
131 if (pos == 1 || path[pos-2] == '/' || path[pos-2] == ':')
132 return true;
133 }
134 return false;
135 }
136 }
137 }
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000138
139 return true;
Reid Spencercbad7012004-09-11 04:59:30 +0000140}
141
Daniel Dunbara00e85c2009-07-12 20:23:56 +0000142void Path::makeAbsolute() {
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000143 TCHAR FullPath[MAX_PATH + 1] = {0};
Daniel Dunbara00e85c2009-07-12 20:23:56 +0000144 LPTSTR FilePart = NULL;
145
146 DWORD RetLength = ::GetFullPathNameA(path.c_str(),
147 sizeof(FullPath)/sizeof(FullPath[0]),
148 FullPath, &FilePart);
149
150 if (0 == RetLength) {
151 // FIXME: Report the error GetLastError()
Daniel Dunbar2749b3e2009-07-26 21:16:42 +0000152 assert(0 && "Unable to make absolute path!");
Daniel Dunbara00e85c2009-07-12 20:23:56 +0000153 } else if (RetLength > MAX_PATH) {
154 // FIXME: Report too small buffer (needed RetLength bytes).
Daniel Dunbar2749b3e2009-07-26 21:16:42 +0000155 assert(0 && "Unable to make absolute path!");
Daniel Dunbara00e85c2009-07-12 20:23:56 +0000156 } else {
157 path = FullPath;
158 }
159}
160
Chris Lattner88d7e402009-06-15 04:17:07 +0000161bool
162Path::isAbsolute(const char *NameStart, unsigned NameLen) {
163 assert(NameStart);
Daniel Dunbara00e85c2009-07-12 20:23:56 +0000164 // FIXME: This does not handle correctly an absolute path starting from
165 // a drive letter or in UNC format.
Chris Lattner88d7e402009-06-15 04:17:07 +0000166 switch (NameLen) {
167 case 0:
168 return false;
169 case 1:
170 case 2:
171 return NameStart[0] == '/';
172 default:
Chris Lattnera79eefd2009-08-12 17:47:06 +0000173 return (NameStart[0] == '/' || (NameStart[1] == ':' && NameStart[2] == '/')) ||
174 (NameStart[0] == '\\' || (NameStart[1] == ':' && NameStart[2] == '\\'));
Chris Lattner88d7e402009-06-15 04:17:07 +0000175 }
176}
177
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000178bool
Reid Spencer69cce812007-03-29 16:43:20 +0000179Path::isAbsolute() const {
Daniel Dunbara00e85c2009-07-12 20:23:56 +0000180 // FIXME: This does not handle correctly an absolute path starting from
181 // a drive letter or in UNC format.
Jeff Cohen84892be2007-03-29 17:27:38 +0000182 switch (path.length()) {
183 case 0:
184 return false;
185 case 1:
186 case 2:
187 return path[0] == '/';
188 default:
189 return path[0] == '/' || (path[1] == ':' && path[2] == '/');
190 }
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000191}
Reid Spencer69cce812007-03-29 16:43:20 +0000192
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000193static Path *TempDirectory;
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000194
Reid Spencerb016a372004-09-15 05:49:50 +0000195Path
Reid Spencercab0e432006-08-22 22:46:39 +0000196Path::GetTemporaryDirectory(std::string* ErrMsg) {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000197 if (TempDirectory)
198 return *TempDirectory;
199
200 char pathname[MAX_PATH];
Reid Spencercab0e432006-08-22 22:46:39 +0000201 if (!GetTempPath(MAX_PATH, pathname)) {
202 if (ErrMsg)
203 *ErrMsg = "Can't determine temporary directory";
204 return Path();
205 }
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000206
Reid Spencerb016a372004-09-15 05:49:50 +0000207 Path result;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000208 result.set(pathname);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000209
210 // Append a subdirectory passed on our process id so multiple LLVMs don't
211 // step on each other's toes.
Jeff Cohend41b30d2006-11-05 19:31:28 +0000212#ifdef __MINGW32__
213 // Mingw's Win32 header files are broken.
Reid Spencerab4d9b02006-06-08 18:08:43 +0000214 sprintf(pathname, "LLVM_%u", unsigned(GetCurrentProcessId()));
Jeff Cohend41b30d2006-11-05 19:31:28 +0000215#else
216 sprintf(pathname, "LLVM_%u", GetCurrentProcessId());
217#endif
Jeff Cohenedb9d6b2005-07-08 02:48:42 +0000218 result.appendComponent(pathname);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000219
220 // If there's a directory left over from a previous LLVM execution that
221 // happened to have the same process id, get rid of it.
Reid Spencera229c5c2005-07-08 03:08:58 +0000222 result.eraseFromDisk(true);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000223
224 // And finally (re-)create the empty directory.
Reid Spencera229c5c2005-07-08 03:08:58 +0000225 result.createDirectoryOnDisk(false);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000226 TempDirectory = new Path(result);
227 return *TempDirectory;
Reid Spencerb016a372004-09-15 05:49:50 +0000228}
229
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000230// FIXME: the following set of functions don't map to Windows very well.
Reid Spencerb016a372004-09-15 05:49:50 +0000231Path
232Path::GetRootDirectory() {
233 Path result;
Jeff Cohen966fa412005-07-09 18:42:49 +0000234 result.set("C:/");
Reid Spencerb016a372004-09-15 05:49:50 +0000235 return result;
236}
237
Jeff Cohen85c716f2005-07-08 05:02:13 +0000238void
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000239Path::GetSystemLibraryPaths(std::vector<sys::Path>& Paths) {
Jeff Cohen966fa412005-07-09 18:42:49 +0000240 Paths.push_back(sys::Path("C:/WINDOWS/SYSTEM32"));
241 Paths.push_back(sys::Path("C:/WINDOWS"));
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000242}
243
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000244void
Gabor Greifdb5565a2007-07-06 20:28:40 +0000245Path::GetBitcodeLibraryPaths(std::vector<sys::Path>& Paths) {
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000246 char * env_var = getenv("LLVM_LIB_SEARCH_PATH");
247 if (env_var != 0) {
248 getPathList(env_var,Paths);
249 }
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000250#ifdef LLVM_LIBDIR
251 {
252 Path tmpPath;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000253 if (tmpPath.set(LLVM_LIBDIR))
Reid Spencerc7f08322005-07-07 18:21:42 +0000254 if (tmpPath.canRead())
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000255 Paths.push_back(tmpPath);
256 }
257#endif
258 GetSystemLibraryPaths(Paths);
Reid Spencerb016a372004-09-15 05:49:50 +0000259}
260
261Path
262Path::GetLLVMDefaultConfigDir() {
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000263 // TODO: this isn't going to fly on Windows
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000264 return Path("/etc/llvm");
Reid Spencerb016a372004-09-15 05:49:50 +0000265}
266
267Path
Reid Spencerb016a372004-09-15 05:49:50 +0000268Path::GetUserHomeDirectory() {
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000269 // TODO: Typical Windows setup doesn't define HOME.
Reid Spencerb016a372004-09-15 05:49:50 +0000270 const char* home = getenv("HOME");
271 if (home) {
272 Path result;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000273 if (result.set(home))
Reid Spencerb016a372004-09-15 05:49:50 +0000274 return result;
275 }
276 return GetRootDirectory();
277}
Ted Kremenek79200782007-12-18 22:07:33 +0000278
279Path
280Path::GetCurrentDirectory() {
281 char pathname[MAX_PATH];
Anton Korobeynikov64ddbe42007-12-22 14:26:49 +0000282 ::GetCurrentDirectoryA(MAX_PATH,pathname);
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000283 return Path(pathname);
Ted Kremenek79200782007-12-18 22:07:33 +0000284}
285
Chris Lattner1a091442008-03-03 02:55:43 +0000286/// GetMainExecutable - Return the path to the main executable, given the
287/// value of argv[0] from program startup.
288Path Path::GetMainExecutable(const char *argv0, void *MainAddr) {
Chris Lattnerc5718d02009-06-15 05:38:04 +0000289 char pathname[MAX_PATH];
290 DWORD ret = ::GetModuleFileNameA(NULL, pathname, MAX_PATH);
291 return ret != MAX_PATH ? Path(pathname) : Path();
Chris Lattner1a091442008-03-03 02:55:43 +0000292}
293
Ted Kremenek79200782007-12-18 22:07:33 +0000294
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000295// FIXME: the above set of functions don't map to Windows very well.
296
Jeff Cohen966fa412005-07-09 18:42:49 +0000297
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000298StringRef Path::getDirname() const {
299 return getDirnameCharSep(path, "/");
Ted Kremenek9b01cc02008-04-07 22:01:32 +0000300}
Ted Kremenekcf55c8e2008-04-07 21:53:57 +0000301
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000302StringRef
Reid Spencer07adb282004-11-05 22:15:36 +0000303Path::getBasename() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000304 // Find the last slash
305 size_t slash = path.rfind('/');
306 if (slash == std::string::npos)
307 slash = 0;
308 else
309 slash++;
310
Jeff Cohen966fa412005-07-09 18:42:49 +0000311 size_t dot = path.rfind('.');
312 if (dot == std::string::npos || dot < slash)
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000313 return StringRef(path).substr(slash);
Jeff Cohen966fa412005-07-09 18:42:49 +0000314 else
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000315 return StringRef(path).substr(slash, dot - slash);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000316}
317
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000318StringRef
Argyrios Kyrtzidisfc199882008-06-15 15:15:19 +0000319Path::getSuffix() const {
320 // Find the last slash
321 size_t slash = path.rfind('/');
322 if (slash == std::string::npos)
323 slash = 0;
324 else
325 slash++;
326
327 size_t dot = path.rfind('.');
328 if (dot == std::string::npos || dot < slash)
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000329 return StringRef("");
Argyrios Kyrtzidisfc199882008-06-15 15:15:19 +0000330 else
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000331 return StringRef(path).substr(dot + 1);
Argyrios Kyrtzidisfc199882008-06-15 15:15:19 +0000332}
333
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000334bool
Reid Spencerb016a372004-09-15 05:49:50 +0000335Path::exists() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000336 DWORD attr = GetFileAttributes(path.c_str());
337 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000338}
339
340bool
Ted Kremenekfd527112007-12-18 19:46:22 +0000341Path::isDirectory() const {
342 DWORD attr = GetFileAttributes(path.c_str());
343 return (attr != INVALID_FILE_ATTRIBUTES) &&
344 (attr & FILE_ATTRIBUTE_DIRECTORY);
345}
346
347bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000348Path::canRead() 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
354bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000355Path::canWrite() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000356 // FIXME: take security attributes into account.
357 DWORD attr = GetFileAttributes(path.c_str());
358 return (attr != INVALID_FILE_ATTRIBUTES) && !(attr & FILE_ATTRIBUTE_READONLY);
Reid Spencerb016a372004-09-15 05:49:50 +0000359}
360
361bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000362Path::canExecute() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000363 // FIXME: take security attributes into account.
364 DWORD attr = GetFileAttributes(path.c_str());
365 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000366}
367
Edward O'Callaghand41e9442009-11-24 15:19:10 +0000368bool
Edward O'Callaghane49a8e42009-11-25 06:32:19 +0000369Path::isRegularFile() const {
370 if (isDirectory())
371 return false;
372 return true;
Edward O'Callaghand41e9442009-11-24 15:19:10 +0000373}
374
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000375StringRef
Reid Spencerb016a372004-09-15 05:49:50 +0000376Path::getLast() const {
377 // Find the last slash
378 size_t pos = path.rfind('/');
379
380 // Handle the corner cases
381 if (pos == std::string::npos)
382 return path;
383
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000384 // If the last character is a slash, we have a root directory
385 if (pos == path.length()-1)
386 return path;
387
Reid Spencerb016a372004-09-15 05:49:50 +0000388 // Return everything after the last slash
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000389 return StringRef(path).substr(pos+1);
Reid Spencerb016a372004-09-15 05:49:50 +0000390}
391
Reid Spencer8475ec02007-03-29 19:05:44 +0000392const FileStatus *
Reid Spencer2ae9d112007-04-07 18:52:17 +0000393PathWithStatus::getFileStatus(bool update, std::string *ErrStr) const {
394 if (!fsIsValid || update) {
Reid Spencer69cce812007-03-29 16:43:20 +0000395 WIN32_FILE_ATTRIBUTE_DATA fi;
Reid Spencer8475ec02007-03-29 19:05:44 +0000396 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) {
397 MakeErrMsg(ErrStr, "getStatusInfo():" + std::string(path) +
Reid Spencer69cce812007-03-29 16:43:20 +0000398 ": Can't get status: ");
Reid Spencer8475ec02007-03-29 19:05:44 +0000399 return 0;
400 }
Jeff Cohen626e38e2004-12-14 05:26:43 +0000401
Reid Spencer2ae9d112007-04-07 18:52:17 +0000402 status.fileSize = fi.nFileSizeHigh;
403 status.fileSize <<= sizeof(fi.nFileSizeHigh)*8;
404 status.fileSize += fi.nFileSizeLow;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000405
Reid Spencer2ae9d112007-04-07 18:52:17 +0000406 status.mode = fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY ? 0555 : 0777;
407 status.user = 9999; // Not applicable to Windows, so...
408 status.group = 9999; // Not applicable to Windows, so...
Jeff Cohen626e38e2004-12-14 05:26:43 +0000409
Reid Spencer4031bef2007-03-29 17:00:31 +0000410 // FIXME: this is only unique if the file is accessed by the same file path.
411 // How do we do this for C:\dir\file and ..\dir\file ? Unix has inode
412 // numbers, but the concept doesn't exist in Windows.
Reid Spencer2ae9d112007-04-07 18:52:17 +0000413 status.uniqueID = 0;
Reid Spencer4031bef2007-03-29 17:00:31 +0000414 for (unsigned i = 0; i < path.length(); ++i)
Reid Spencer2ae9d112007-04-07 18:52:17 +0000415 status.uniqueID += path[i];
Reid Spencer4031bef2007-03-29 17:00:31 +0000416
Michael J. Spencer44edb0b2010-08-28 16:39:32 +0000417 ULARGE_INTEGER ui;
418 ui.LowPart = fi.ftLastWriteTime.dwLowDateTime;
419 ui.HighPart = fi.ftLastWriteTime.dwHighDateTime;
420 status.modTime.fromWin32Time(ui.QuadPart);
Reid Spencer69cce812007-03-29 16:43:20 +0000421
Reid Spencer2ae9d112007-04-07 18:52:17 +0000422 status.isDir = fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY;
423 fsIsValid = true;
Reid Spencer69cce812007-03-29 16:43:20 +0000424 }
Reid Spencer2ae9d112007-04-07 18:52:17 +0000425 return &status;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000426}
427
Reid Spencera34a1572006-08-22 23:54:35 +0000428bool Path::makeReadableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000429 // All files are readable on Windows (ignoring security attributes).
Reid Spencera34a1572006-08-22 23:54:35 +0000430 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000431}
432
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000433bool Path::makeWriteableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000434 DWORD attr = GetFileAttributes(path.c_str());
435
436 // If it doesn't exist, we're done.
437 if (attr == INVALID_FILE_ATTRIBUTES)
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000438 return false;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000439
440 if (attr & FILE_ATTRIBUTE_READONLY) {
Reid Spencera34a1572006-08-22 23:54:35 +0000441 if (!SetFileAttributes(path.c_str(), attr & ~FILE_ATTRIBUTE_READONLY)) {
442 MakeErrMsg(ErrMsg, std::string(path) + ": Can't make file writable: ");
443 return true;
444 }
Jeff Cohen626e38e2004-12-14 05:26:43 +0000445 }
Reid Spencera34a1572006-08-22 23:54:35 +0000446 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000447}
448
Reid Spencera34a1572006-08-22 23:54:35 +0000449bool Path::makeExecutableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000450 // All files are executable on Windows (ignoring security attributes).
Reid Spencera34a1572006-08-22 23:54:35 +0000451 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000452}
453
Reid Spencerb016a372004-09-15 05:49:50 +0000454bool
Reid Spencer142ca8e2006-08-23 06:56:27 +0000455Path::getDirectoryContents(std::set<Path>& result, std::string* ErrMsg) const {
Jeff Cohen31102892007-04-07 20:47:27 +0000456 WIN32_FILE_ATTRIBUTE_DATA fi;
457 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) {
458 MakeErrMsg(ErrMsg, path + ": can't get status of file");
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000459 return true;
Jeff Cohen31102892007-04-07 20:47:27 +0000460 }
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000461
Jeff Cohen31102892007-04-07 20:47:27 +0000462 if (!(fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) {
463 if (ErrMsg)
464 *ErrMsg = path + ": not a directory";
Reid Spencer142ca8e2006-08-23 06:56:27 +0000465 return true;
466 }
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000467
468 result.clear();
469 WIN32_FIND_DATA fd;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000470 std::string searchpath = path;
471 if (path.size() == 0 || searchpath[path.size()-1] == '/')
Jeff Cohen85c716f2005-07-08 05:02:13 +0000472 searchpath += "*";
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000473 else
474 searchpath += "/*";
Jeff Cohen85c716f2005-07-08 05:02:13 +0000475
Jeff Cohen9437bb62005-01-27 03:49:03 +0000476 HANDLE h = FindFirstFile(searchpath.c_str(), &fd);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000477 if (h == INVALID_HANDLE_VALUE) {
Jeff Cohen9437bb62005-01-27 03:49:03 +0000478 if (GetLastError() == ERROR_FILE_NOT_FOUND)
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000479 return true; // not really an error, now is it?
Reid Spencer142ca8e2006-08-23 06:56:27 +0000480 MakeErrMsg(ErrMsg, path + ": Can't read directory: ");
481 return true;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000482 }
483
484 do {
Jeff Cohend40a7de2004-12-31 05:07:26 +0000485 if (fd.cFileName[0] == '.')
486 continue;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000487 Path aPath(path);
488 aPath.appendComponent(&fd.cFileName[0]);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000489 result.insert(aPath);
490 } while (FindNextFile(h, &fd));
491
Jeff Cohen51b8d212004-12-31 19:01:08 +0000492 DWORD err = GetLastError();
493 FindClose(h);
494 if (err != ERROR_NO_MORE_FILES) {
495 SetLastError(err);
Reid Spencer142ca8e2006-08-23 06:56:27 +0000496 MakeErrMsg(ErrMsg, path + ": Can't read directory: ");
497 return true;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000498 }
Reid Spencer142ca8e2006-08-23 06:56:27 +0000499 return false;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000500}
501
502bool
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000503Path::set(StringRef a_path) {
Dan Gohman30359592008-01-29 13:02:09 +0000504 if (a_path.empty())
Reid Spencerb016a372004-09-15 05:49:50 +0000505 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000506 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000507 path = a_path;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000508 FlipBackSlashes(path);
Reid Spencer07adb282004-11-05 22:15:36 +0000509 if (!isValid()) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000510 path = save;
Reid Spencerb016a372004-09-15 05:49:50 +0000511 return false;
512 }
513 return true;
514}
515
516bool
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000517Path::appendComponent(StringRef name) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000518 if (name.empty())
Reid Spencerb016a372004-09-15 05:49:50 +0000519 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000520 std::string save(path);
521 if (!path.empty()) {
522 size_t last = path.size() - 1;
Jeff Cohen85c716f2005-07-08 05:02:13 +0000523 if (path[last] != '/')
Reid Spencer1cf2d042005-07-07 23:35:23 +0000524 path += '/';
525 }
526 path += name;
Reid Spencer07adb282004-11-05 22:15:36 +0000527 if (!isValid()) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000528 path = save;
Reid Spencerb016a372004-09-15 05:49:50 +0000529 return false;
530 }
531 return true;
532}
533
534bool
Reid Spencer1cf2d042005-07-07 23:35:23 +0000535Path::eraseComponent() {
Reid Spencerb016a372004-09-15 05:49:50 +0000536 size_t slashpos = path.rfind('/',path.size());
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000537 if (slashpos == path.size() - 1 || slashpos == std::string::npos)
Reid Spencerb016a372004-09-15 05:49:50 +0000538 return false;
Jeff Cohen966fa412005-07-09 18:42:49 +0000539 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000540 path.erase(slashpos);
Jeff Cohen966fa412005-07-09 18:42:49 +0000541 if (!isValid()) {
542 path = save;
543 return false;
544 }
Reid Spencerb016a372004-09-15 05:49:50 +0000545 return true;
546}
547
548bool
Jeffrey Yasskin88cd3582009-12-17 21:02:39 +0000549Path::appendSuffix(StringRef suffix) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000550 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000551 path.append(".");
552 path.append(suffix);
Reid Spencer07adb282004-11-05 22:15:36 +0000553 if (!isValid()) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000554 path = save;
Reid Spencerb016a372004-09-15 05:49:50 +0000555 return false;
556 }
557 return true;
558}
559
560bool
Reid Spencer1cf2d042005-07-07 23:35:23 +0000561Path::eraseSuffix() {
Reid Spencerb016a372004-09-15 05:49:50 +0000562 size_t dotpos = path.rfind('.',path.size());
563 size_t slashpos = path.rfind('/',path.size());
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000564 if (dotpos != std::string::npos) {
Jeff Cohen966fa412005-07-09 18:42:49 +0000565 if (slashpos == std::string::npos || dotpos > slashpos+1) {
566 std::string save(path);
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000567 path.erase(dotpos, path.size()-dotpos);
Jeff Cohen966fa412005-07-09 18:42:49 +0000568 if (!isValid()) {
569 path = save;
570 return false;
571 }
Jeff Cohen85c716f2005-07-08 05:02:13 +0000572 return true;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000573 }
Reid Spencerb016a372004-09-15 05:49:50 +0000574 }
575 return false;
576}
577
Reid Spencer30300992006-08-24 18:58:37 +0000578inline bool PathMsg(std::string* ErrMsg, const char* pathname, const char*msg) {
579 if (ErrMsg)
580 *ErrMsg = std::string(pathname) + ": " + std::string(msg);
581 return true;
582}
583
Reid Spencerb016a372004-09-15 05:49:50 +0000584bool
Reid Spencer30300992006-08-24 18:58:37 +0000585Path::createDirectoryOnDisk(bool create_parents, std::string* ErrMsg) {
Reid Spencerb016a372004-09-15 05:49:50 +0000586 // Get a writeable copy of the path name
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000587 size_t len = path.length();
588 char *pathname = reinterpret_cast<char *>(_alloca(len+2));
589 path.copy(pathname, len);
590 pathname[len] = 0;
Jeff Cohen85c716f2005-07-08 05:02:13 +0000591
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000592 // Make sure it ends with a slash.
593 if (len == 0 || pathname[len - 1] != '/') {
594 pathname[len] = '/';
595 pathname[++len] = 0;
596 }
Reid Spencerb016a372004-09-15 05:49:50 +0000597
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000598 // Determine starting point for initial / search.
599 char *next = pathname;
600 if (pathname[0] == '/' && pathname[1] == '/') {
601 // Skip host name.
602 next = strchr(pathname+2, '/');
603 if (next == NULL)
Reid Spencer30300992006-08-24 18:58:37 +0000604 return PathMsg(ErrMsg, pathname, "badly formed remote directory");
605
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000606 // Skip share name.
607 next = strchr(next+1, '/');
608 if (next == NULL)
Reid Spencer30300992006-08-24 18:58:37 +0000609 return PathMsg(ErrMsg, pathname,"badly formed remote directory");
610
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000611 next++;
612 if (*next == 0)
Reid Spencer30300992006-08-24 18:58:37 +0000613 return PathMsg(ErrMsg, pathname, "badly formed remote directory");
614
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000615 } else {
616 if (pathname[1] == ':')
617 next += 2; // skip drive letter
618 if (*next == '/')
619 next++; // skip root directory
620 }
Reid Spencerb016a372004-09-15 05:49:50 +0000621
622 // If we're supposed to create intermediate directories
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000623 if (create_parents) {
Reid Spencerb016a372004-09-15 05:49:50 +0000624 // Loop through the directory components until we're done
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000625 while (*next) {
626 next = strchr(next, '/');
Reid Spencerb016a372004-09-15 05:49:50 +0000627 *next = 0;
Benjamin Kramere9684c62009-11-05 14:32:40 +0000628 if (!CreateDirectory(pathname, NULL) &&
629 GetLastError() != ERROR_ALREADY_EXISTS)
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000630 return MakeErrMsg(ErrMsg,
Reid Spencer30300992006-08-24 18:58:37 +0000631 std::string(pathname) + ": Can't create directory: ");
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000632 *next++ = '/';
Reid Spencerb016a372004-09-15 05:49:50 +0000633 }
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000634 } else {
635 // Drop trailing slash.
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000636 pathname[len-1] = 0;
Benjamin Kramere9684c62009-11-05 14:32:40 +0000637 if (!CreateDirectory(pathname, NULL) &&
638 GetLastError() != ERROR_ALREADY_EXISTS) {
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000639 return MakeErrMsg(ErrMsg, std::string(pathname) + ": Can't create directory: ");
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000640 }
Reid Spencerb016a372004-09-15 05:49:50 +0000641 }
Reid Spencer30300992006-08-24 18:58:37 +0000642 return false;
Reid Spencerb016a372004-09-15 05:49:50 +0000643}
644
645bool
Reid Spencer30300992006-08-24 18:58:37 +0000646Path::createFileOnDisk(std::string* ErrMsg) {
Reid Spencerb016a372004-09-15 05:49:50 +0000647 // Create the file
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000648 HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW,
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000649 FILE_ATTRIBUTE_NORMAL, NULL);
650 if (h == INVALID_HANDLE_VALUE)
Reid Spencer30300992006-08-24 18:58:37 +0000651 return MakeErrMsg(ErrMsg, path + ": Can't create file: ");
Reid Spencerb016a372004-09-15 05:49:50 +0000652
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000653 CloseHandle(h);
Reid Spencer30300992006-08-24 18:58:37 +0000654 return false;
Reid Spencerb016a372004-09-15 05:49:50 +0000655}
656
657bool
Chris Lattner0c332312006-07-28 22:29:50 +0000658Path::eraseFromDisk(bool remove_contents, std::string *ErrStr) const {
Jeff Cohen31102892007-04-07 20:47:27 +0000659 WIN32_FILE_ATTRIBUTE_DATA fi;
660 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi))
661 return true;
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000662
Jeff Cohen31102892007-04-07 20:47:27 +0000663 if (fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000664 // If it doesn't exist, we're done.
Jeff Cohen85c716f2005-07-08 05:02:13 +0000665 if (!exists())
Chris Lattner0c332312006-07-28 22:29:50 +0000666 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000667
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000668 char *pathname = reinterpret_cast<char *>(_alloca(path.length()+3));
Reid Spencer1cf2d042005-07-07 23:35:23 +0000669 int lastchar = path.length() - 1 ;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000670 path.copy(pathname, lastchar+1);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000671
672 // Make path end with '/*'.
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000673 if (pathname[lastchar] != '/')
674 pathname[++lastchar] = '/';
Reid Spencer1cf2d042005-07-07 23:35:23 +0000675 pathname[lastchar+1] = '*';
676 pathname[lastchar+2] = 0;
677
678 if (remove_contents) {
679 WIN32_FIND_DATA fd;
680 HANDLE h = FindFirstFile(pathname, &fd);
681
682 // It's a bad idea to alter the contents of a directory while enumerating
683 // its contents. So build a list of its contents first, then destroy them.
684
685 if (h != INVALID_HANDLE_VALUE) {
686 std::vector<Path> list;
687
688 do {
689 if (strcmp(fd.cFileName, ".") == 0)
690 continue;
691 if (strcmp(fd.cFileName, "..") == 0)
692 continue;
693
Jeff Cohen85c716f2005-07-08 05:02:13 +0000694 Path aPath(path);
695 aPath.appendComponent(&fd.cFileName[0]);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000696 list.push_back(aPath);
697 } while (FindNextFile(h, &fd));
698
699 DWORD err = GetLastError();
700 FindClose(h);
701 if (err != ERROR_NO_MORE_FILES) {
702 SetLastError(err);
Reid Spencer05545752006-08-25 21:37:17 +0000703 return MakeErrMsg(ErrStr, path + ": Can't read directory: ");
Reid Spencer1cf2d042005-07-07 23:35:23 +0000704 }
705
Jeff Cohen85c716f2005-07-08 05:02:13 +0000706 for (std::vector<Path>::iterator I = list.begin(); I != list.end();
Reid Spencer1cf2d042005-07-07 23:35:23 +0000707 ++I) {
708 Path &aPath = *I;
Reid Spencera229c5c2005-07-08 03:08:58 +0000709 aPath.eraseFromDisk(true);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000710 }
711 } else {
712 if (GetLastError() != ERROR_FILE_NOT_FOUND)
Reid Spencer05545752006-08-25 21:37:17 +0000713 return MakeErrMsg(ErrStr, path + ": Can't read directory: ");
Reid Spencer1cf2d042005-07-07 23:35:23 +0000714 }
715 }
716
717 pathname[lastchar] = 0;
718 if (!RemoveDirectory(pathname))
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000719 return MakeErrMsg(ErrStr,
Reid Spencer05545752006-08-25 21:37:17 +0000720 std::string(pathname) + ": Can't destroy directory: ");
Chris Lattner0c332312006-07-28 22:29:50 +0000721 return false;
Jeff Cohen31102892007-04-07 20:47:27 +0000722 } else {
723 // Read-only files cannot be deleted on Windows. Must remove the read-only
724 // attribute first.
725 if (fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
726 if (!SetFileAttributes(path.c_str(),
727 fi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY))
728 return MakeErrMsg(ErrStr, path + ": Can't destroy file: ");
729 }
730
731 if (!DeleteFile(path.c_str()))
732 return MakeErrMsg(ErrStr, path + ": Can't destroy file: ");
733 return false;
734 }
Reid Spencerb016a372004-09-15 05:49:50 +0000735}
736
Reid Spencer3b0cc782004-12-14 18:42:13 +0000737bool Path::getMagicNumber(std::string& Magic, unsigned len) const {
Reid Spencer3b0cc782004-12-14 18:42:13 +0000738 assert(len < 1024 && "Request for magic string too long");
Michael J. Spencer1211d432010-08-31 06:36:33 +0000739 char* buf = reinterpret_cast<char*>(alloca(len));
Jeff Cohen51b8d212004-12-31 19:01:08 +0000740
741 HANDLE h = CreateFile(path.c_str(),
742 GENERIC_READ,
743 FILE_SHARE_READ,
744 NULL,
745 OPEN_EXISTING,
746 FILE_ATTRIBUTE_NORMAL,
747 NULL);
748 if (h == INVALID_HANDLE_VALUE)
Reid Spencer3b0cc782004-12-14 18:42:13 +0000749 return false;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000750
751 DWORD nRead = 0;
752 BOOL ret = ReadFile(h, buf, len, &nRead, NULL);
753 CloseHandle(h);
754
755 if (!ret || nRead != len)
Reid Spencer3b0cc782004-12-14 18:42:13 +0000756 return false;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000757
Michael J. Spencer1211d432010-08-31 06:36:33 +0000758 Magic = std::string(buf, len);
Reid Spencer3b0cc782004-12-14 18:42:13 +0000759 return true;
760}
761
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000762bool
Reid Spencer5a060772006-08-23 07:30:48 +0000763Path::renamePathOnDisk(const Path& newName, std::string* ErrMsg) {
Francois Pichet3eddd982010-09-30 00:44:58 +0000764 if (!MoveFileEx(path.c_str(), newName.c_str(), MOVEFILE_REPLACE_EXISTING))
765 return MakeErrMsg(ErrMsg, "Can't move '" + path + "' to '" + newName.path
766 + "': ");
767 return false;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000768}
769
770bool
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000771Path::setStatusInfoOnDisk(const FileStatus &si, std::string *ErrMsg) const {
Jeff Cohen966fa412005-07-09 18:42:49 +0000772 // FIXME: should work on directories also.
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000773 if (!si.isFile) {
774 return true;
775 }
Kovarththanan Rajaratnam16ceb3a2010-03-12 14:17:24 +0000776
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000777 HANDLE h = CreateFile(path.c_str(),
778 FILE_READ_ATTRIBUTES | FILE_WRITE_ATTRIBUTES,
779 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
Jeff Cohend40a7de2004-12-31 05:07:26 +0000780 NULL,
781 OPEN_EXISTING,
782 FILE_ATTRIBUTE_NORMAL,
783 NULL);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000784 if (h == INVALID_HANDLE_VALUE)
Chris Lattner1bebfb52006-07-28 22:36:17 +0000785 return true;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000786
787 BY_HANDLE_FILE_INFORMATION bhfi;
788 if (!GetFileInformationByHandle(h, &bhfi)) {
Jeff Cohen51b8d212004-12-31 19:01:08 +0000789 DWORD err = GetLastError();
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000790 CloseHandle(h);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000791 SetLastError(err);
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000792 return MakeErrMsg(ErrMsg, path + ": GetFileInformationByHandle: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000793 }
794
Michael J. Spencer44edb0b2010-08-28 16:39:32 +0000795 ULARGE_INTEGER ui;
796 ui.QuadPart = si.modTime.toWin32Time();
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000797 FILETIME ft;
Michael J. Spencer44edb0b2010-08-28 16:39:32 +0000798 ft.dwLowDateTime = ui.LowPart;
799 ft.dwHighDateTime = ui.HighPart;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000800 BOOL ret = SetFileTime(h, NULL, &ft, &ft);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000801 DWORD err = GetLastError();
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000802 CloseHandle(h);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000803 if (!ret) {
804 SetLastError(err);
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000805 return MakeErrMsg(ErrMsg, path + ": SetFileTime: ");
Jeff Cohen51b8d212004-12-31 19:01:08 +0000806 }
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000807
808 // Best we can do with Unix permission bits is to interpret the owner
809 // writable bit.
810 if (si.mode & 0200) {
811 if (bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
812 if (!SetFileAttributes(path.c_str(),
Jeff Cohend40a7de2004-12-31 05:07:26 +0000813 bhfi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY))
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000814 return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000815 }
816 } else {
817 if (!(bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY)) {
818 if (!SetFileAttributes(path.c_str(),
Jeff Cohend40a7de2004-12-31 05:07:26 +0000819 bhfi.dwFileAttributes | FILE_ATTRIBUTE_READONLY))
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000820 return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000821 }
822 }
823
Chris Lattner1bebfb52006-07-28 22:36:17 +0000824 return false;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000825}
826
Reid Spencer30300992006-08-24 18:58:37 +0000827bool
828CopyFile(const sys::Path &Dest, const sys::Path &Src, std::string* ErrMsg) {
Jeff Cohencb652552004-12-24 02:38:34 +0000829 // Can't use CopyFile macro defined in Windows.h because it would mess up the
830 // above line. We use the expansion it would have in a non-UNICODE build.
831 if (!::CopyFileA(Src.c_str(), Dest.c_str(), false))
Chris Lattner74382b72009-08-23 22:45:37 +0000832 return MakeErrMsg(ErrMsg, "Can't copy '" + Src.str() +
833 "' to '" + Dest.str() + "': ");
Reid Spencer30300992006-08-24 18:58:37 +0000834 return false;
Reid Spencerc29befb2004-12-15 01:50:13 +0000835}
836
Reid Spencer30300992006-08-24 18:58:37 +0000837bool
838Path::makeUnique(bool reuse_current, std::string* ErrMsg) {
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000839 if (reuse_current && !exists())
Reid Spencer30300992006-08-24 18:58:37 +0000840 return false; // File doesn't exist already, just use it!
Reid Spencerc29befb2004-12-15 01:50:13 +0000841
Jeff Cohen9437bb62005-01-27 03:49:03 +0000842 // Reserve space for -XXXXXX at the end.
843 char *FNBuffer = (char*) alloca(path.size()+8);
844 unsigned offset = path.size();
845 path.copy(FNBuffer, offset);
Reid Spencerc29befb2004-12-15 01:50:13 +0000846
Jeff Cohen966fa412005-07-09 18:42:49 +0000847 // Find a numeric suffix that isn't used by an existing file. Assume there
848 // won't be more than 1 million files with the same prefix. Probably a safe
849 // bet.
Jeff Cohen9437bb62005-01-27 03:49:03 +0000850 static unsigned FCounter = 0;
851 do {
852 sprintf(FNBuffer+offset, "-%06u", FCounter);
853 if (++FCounter > 999999)
854 FCounter = 0;
855 path = FNBuffer;
856 } while (exists());
Reid Spencer30300992006-08-24 18:58:37 +0000857 return false;
Reid Spencerc29befb2004-12-15 01:50:13 +0000858}
859
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000860bool
Reid Spencer30300992006-08-24 18:58:37 +0000861Path::createTemporaryFileOnDisk(bool reuse_current, std::string* ErrMsg) {
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000862 // Make this into a unique file name
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000863 makeUnique(reuse_current, ErrMsg);
Jeff Cohen9437bb62005-01-27 03:49:03 +0000864
865 // Now go and create it
866 HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW,
867 FILE_ATTRIBUTE_NORMAL, NULL);
868 if (h == INVALID_HANDLE_VALUE)
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000869 return MakeErrMsg(ErrMsg, path + ": can't create file");
Jeff Cohen9437bb62005-01-27 03:49:03 +0000870
871 CloseHandle(h);
Reid Spencer30300992006-08-24 18:58:37 +0000872 return false;
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000873}
874
Chris Lattner799ed102008-04-01 06:00:12 +0000875/// MapInFilePages - Not yet implemented on win32.
876const char *Path::MapInFilePages(int FD, uint64_t FileSize) {
877 return 0;
878}
879
880/// MapInFilePages - Not yet implemented on win32.
881void Path::UnMapFilePages(const char *Base, uint64_t FileSize) {
882 assert(0 && "NOT IMPLEMENTED");
883}
884
Reid Spencerb016a372004-09-15 05:49:50 +0000885}
Reid Spencercbad7012004-09-11 04:59:30 +0000886}