blob: ff96e33dfad9ebb1e1538e08fc938c5299b46d2b [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>
Reid Spencercbad7012004-09-11 04:59:30 +000024
Jeff Cohencb652552004-12-24 02:38:34 +000025// We need to undo a macro defined in Windows.h, otherwise we won't compile:
26#undef CopyFile
Anton Korobeynikov64ddbe42007-12-22 14:26:49 +000027#undef GetCurrentDirectory
Jeff Cohencb652552004-12-24 02:38:34 +000028
Jeff Cohen966fa412005-07-09 18:42:49 +000029// Windows happily accepts either forward or backward slashes, though any path
30// returned by a Win32 API will have backward slashes. As LLVM code basically
31// assumes forward slashes are used, backward slashs are converted where they
32// can be introduced into a path.
33//
34// Another invariant is that a path ends with a slash if and only if the path
35// is a root directory. Any other use of a trailing slash is stripped. Unlike
36// in Unix, Windows has a rather complicated notion of a root path and this
37// invariant helps simply the code.
38
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000039static void FlipBackSlashes(std::string& s) {
40 for (size_t i = 0; i < s.size(); i++)
41 if (s[i] == '\\')
42 s[i] = '/';
43}
44
Reid Spencercbad7012004-09-11 04:59:30 +000045namespace llvm {
Reid Spencerb016a372004-09-15 05:49:50 +000046namespace sys {
Chris Lattnera17fa282008-03-13 05:17:59 +000047const char PathSeparator = ';';
Chris Lattnere1b332a2008-02-27 06:17:10 +000048
Nick Lewyckyfff116f2008-05-11 17:37:40 +000049Path::Path(const std::string& p)
50 : path(p) {
51 FlipBackSlashes(path);
52}
53
54Path::Path(const char *StrStart, unsigned StrLen)
55 : path(StrStart, StrLen) {
56 FlipBackSlashes(path);
57}
58
Chris Lattner0eab5e22008-08-11 23:39:47 +000059Path&
60Path::operator=(const std::string &that) {
61 path = that;
62 FlipBackSlashes(path);
63 return *this;
64}
65
Reid Spencerb016a372004-09-15 05:49:50 +000066bool
Reid Spencer07adb282004-11-05 22:15:36 +000067Path::isValid() const {
Reid Spencerb016a372004-09-15 05:49:50 +000068 if (path.empty())
69 return false;
Reid Spencerd0c9e0e2004-09-18 19:29:16 +000070
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000071 // If there is a colon, it must be the second character, preceded by a letter
72 // and followed by something.
73 size_t len = path.size();
74 size_t pos = path.rfind(':',len);
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000075 size_t rootslash = 0;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000076 if (pos != std::string::npos) {
77 if (pos != 1 || !isalpha(path[0]) || len < 3)
78 return false;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000079 rootslash = 2;
80 }
Jeff Cohen85c716f2005-07-08 05:02:13 +000081
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000082 // Look for a UNC path, and if found adjust our notion of the root slash.
83 if (len > 3 && path[0] == '/' && path[1] == '/') {
84 rootslash = path.find('/', 2);
85 if (rootslash == std::string::npos)
86 rootslash = 0;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000087 }
Reid Spencerd0c9e0e2004-09-18 19:29:16 +000088
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000089 // Check for illegal characters.
90 if (path.find_first_of("\\<>\"|\001\002\003\004\005\006\007\010\011\012"
91 "\013\014\015\016\017\020\021\022\023\024\025\026"
92 "\027\030\031\032\033\034\035\036\037")
93 != std::string::npos)
94 return false;
Jeff Cohen85c716f2005-07-08 05:02:13 +000095
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000096 // Remove trailing slash, unless it's a root slash.
97 if (len > rootslash+1 && path[len-1] == '/')
98 path.erase(--len);
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000099
Jeff Cohen3bbbcc12005-01-14 04:09:39 +0000100 // Check each component for legality.
101 for (pos = 0; pos < len; ++pos) {
102 // A component may not end in a space.
103 if (path[pos] == ' ') {
104 if (path[pos+1] == '/' || path[pos+1] == '\0')
105 return false;
106 }
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000107
Jeff Cohen3bbbcc12005-01-14 04:09:39 +0000108 // A component may not end in a period.
109 if (path[pos] == '.') {
110 if (path[pos+1] == '/' || path[pos+1] == '\0') {
111 // Unless it is the pseudo-directory "."...
112 if (pos == 0 || path[pos-1] == '/' || path[pos-1] == ':')
113 return true;
114 // or "..".
115 if (pos > 0 && path[pos-1] == '.') {
116 if (pos == 1 || path[pos-2] == '/' || path[pos-2] == ':')
117 return true;
118 }
119 return false;
120 }
121 }
122 }
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000123
124 return true;
Reid Spencercbad7012004-09-11 04:59:30 +0000125}
126
Reid Spencer69cce812007-03-29 16:43:20 +0000127bool
128Path::isAbsolute() const {
Jeff Cohen84892be2007-03-29 17:27:38 +0000129 switch (path.length()) {
130 case 0:
131 return false;
132 case 1:
133 case 2:
134 return path[0] == '/';
135 default:
136 return path[0] == '/' || (path[1] == ':' && path[2] == '/');
137 }
Reid Spencer69cce812007-03-29 16:43:20 +0000138}
139
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000140static Path *TempDirectory = NULL;
141
Reid Spencerb016a372004-09-15 05:49:50 +0000142Path
Reid Spencercab0e432006-08-22 22:46:39 +0000143Path::GetTemporaryDirectory(std::string* ErrMsg) {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000144 if (TempDirectory)
145 return *TempDirectory;
146
147 char pathname[MAX_PATH];
Reid Spencercab0e432006-08-22 22:46:39 +0000148 if (!GetTempPath(MAX_PATH, pathname)) {
149 if (ErrMsg)
150 *ErrMsg = "Can't determine temporary directory";
151 return Path();
152 }
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000153
Reid Spencerb016a372004-09-15 05:49:50 +0000154 Path result;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000155 result.set(pathname);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000156
157 // Append a subdirectory passed on our process id so multiple LLVMs don't
158 // step on each other's toes.
Jeff Cohend41b30d2006-11-05 19:31:28 +0000159#ifdef __MINGW32__
160 // Mingw's Win32 header files are broken.
Reid Spencerab4d9b02006-06-08 18:08:43 +0000161 sprintf(pathname, "LLVM_%u", unsigned(GetCurrentProcessId()));
Jeff Cohend41b30d2006-11-05 19:31:28 +0000162#else
163 sprintf(pathname, "LLVM_%u", GetCurrentProcessId());
164#endif
Jeff Cohenedb9d6b2005-07-08 02:48:42 +0000165 result.appendComponent(pathname);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000166
167 // If there's a directory left over from a previous LLVM execution that
168 // happened to have the same process id, get rid of it.
Reid Spencera229c5c2005-07-08 03:08:58 +0000169 result.eraseFromDisk(true);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000170
171 // And finally (re-)create the empty directory.
Reid Spencera229c5c2005-07-08 03:08:58 +0000172 result.createDirectoryOnDisk(false);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000173 TempDirectory = new Path(result);
174 return *TempDirectory;
Reid Spencerb016a372004-09-15 05:49:50 +0000175}
176
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000177// FIXME: the following set of functions don't map to Windows very well.
Reid Spencerb016a372004-09-15 05:49:50 +0000178Path
179Path::GetRootDirectory() {
180 Path result;
Jeff Cohen966fa412005-07-09 18:42:49 +0000181 result.set("C:/");
Reid Spencerb016a372004-09-15 05:49:50 +0000182 return result;
183}
184
Jeff Cohen85c716f2005-07-08 05:02:13 +0000185void
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000186Path::GetSystemLibraryPaths(std::vector<sys::Path>& Paths) {
Jeff Cohen966fa412005-07-09 18:42:49 +0000187 Paths.push_back(sys::Path("C:/WINDOWS/SYSTEM32"));
188 Paths.push_back(sys::Path("C:/WINDOWS"));
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000189}
190
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000191void
Gabor Greifdb5565a2007-07-06 20:28:40 +0000192Path::GetBitcodeLibraryPaths(std::vector<sys::Path>& Paths) {
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000193 char * env_var = getenv("LLVM_LIB_SEARCH_PATH");
194 if (env_var != 0) {
195 getPathList(env_var,Paths);
196 }
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000197#ifdef LLVM_LIBDIR
198 {
199 Path tmpPath;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000200 if (tmpPath.set(LLVM_LIBDIR))
Reid Spencerc7f08322005-07-07 18:21:42 +0000201 if (tmpPath.canRead())
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000202 Paths.push_back(tmpPath);
203 }
204#endif
205 GetSystemLibraryPaths(Paths);
Reid Spencerb016a372004-09-15 05:49:50 +0000206}
207
208Path
209Path::GetLLVMDefaultConfigDir() {
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000210 // TODO: this isn't going to fly on Windows
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000211 return Path("/etc/llvm");
Reid Spencerb016a372004-09-15 05:49:50 +0000212}
213
214Path
Reid Spencerb016a372004-09-15 05:49:50 +0000215Path::GetUserHomeDirectory() {
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000216 // TODO: Typical Windows setup doesn't define HOME.
Reid Spencerb016a372004-09-15 05:49:50 +0000217 const char* home = getenv("HOME");
218 if (home) {
219 Path result;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000220 if (result.set(home))
Reid Spencerb016a372004-09-15 05:49:50 +0000221 return result;
222 }
223 return GetRootDirectory();
224}
Ted Kremenek79200782007-12-18 22:07:33 +0000225
226Path
227Path::GetCurrentDirectory() {
228 char pathname[MAX_PATH];
Anton Korobeynikov64ddbe42007-12-22 14:26:49 +0000229 ::GetCurrentDirectoryA(MAX_PATH,pathname);
Ted Kremenek79200782007-12-18 22:07:33 +0000230 return Path(pathname);
231}
232
Chris Lattner1a091442008-03-03 02:55:43 +0000233/// GetMainExecutable - Return the path to the main executable, given the
234/// value of argv[0] from program startup.
235Path Path::GetMainExecutable(const char *argv0, void *MainAddr) {
236 return Path();
237}
238
Ted Kremenek79200782007-12-18 22:07:33 +0000239
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000240// FIXME: the above set of functions don't map to Windows very well.
241
Jeff Cohen966fa412005-07-09 18:42:49 +0000242
243bool
244Path::isRootDirectory() const {
245 size_t len = path.size();
246 return len > 0 && path[len-1] == '/';
Reid Spencera229c5c2005-07-08 03:08:58 +0000247}
248
Ted Kremenek9b01cc02008-04-07 22:01:32 +0000249std::string Path::getDirname() const {
Nick Lewyckyfff116f2008-05-11 17:37:40 +0000250 return getDirnameCharSep(path, '/');
Ted Kremenek9b01cc02008-04-07 22:01:32 +0000251}
Ted Kremenekcf55c8e2008-04-07 21:53:57 +0000252
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000253std::string
Reid Spencer07adb282004-11-05 22:15:36 +0000254Path::getBasename() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000255 // Find the last slash
256 size_t slash = path.rfind('/');
257 if (slash == std::string::npos)
258 slash = 0;
259 else
260 slash++;
261
Jeff Cohen966fa412005-07-09 18:42:49 +0000262 size_t dot = path.rfind('.');
263 if (dot == std::string::npos || dot < slash)
264 return path.substr(slash);
265 else
266 return path.substr(slash, dot - slash);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000267}
268
Argyrios Kyrtzidisfc199882008-06-15 15:15:19 +0000269std::string
270Path::getSuffix() const {
271 // Find the last slash
272 size_t slash = path.rfind('/');
273 if (slash == std::string::npos)
274 slash = 0;
275 else
276 slash++;
277
278 size_t dot = path.rfind('.');
279 if (dot == std::string::npos || dot < slash)
280 return std::string();
281 else
282 return path.substr(dot + 1);
283}
284
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000285bool
Reid Spencerb016a372004-09-15 05:49:50 +0000286Path::exists() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000287 DWORD attr = GetFileAttributes(path.c_str());
288 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000289}
290
291bool
Ted Kremenekfd527112007-12-18 19:46:22 +0000292Path::isDirectory() const {
293 DWORD attr = GetFileAttributes(path.c_str());
294 return (attr != INVALID_FILE_ATTRIBUTES) &&
295 (attr & FILE_ATTRIBUTE_DIRECTORY);
296}
297
298bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000299Path::canRead() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000300 // FIXME: take security attributes into account.
301 DWORD attr = GetFileAttributes(path.c_str());
302 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000303}
304
305bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000306Path::canWrite() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000307 // FIXME: take security attributes into account.
308 DWORD attr = GetFileAttributes(path.c_str());
309 return (attr != INVALID_FILE_ATTRIBUTES) && !(attr & FILE_ATTRIBUTE_READONLY);
Reid Spencerb016a372004-09-15 05:49:50 +0000310}
311
312bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000313Path::canExecute() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000314 // FIXME: take security attributes into account.
315 DWORD attr = GetFileAttributes(path.c_str());
316 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000317}
318
319std::string
320Path::getLast() const {
321 // Find the last slash
322 size_t pos = path.rfind('/');
323
324 // Handle the corner cases
325 if (pos == std::string::npos)
326 return path;
327
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000328 // If the last character is a slash, we have a root directory
329 if (pos == path.length()-1)
330 return path;
331
Reid Spencerb016a372004-09-15 05:49:50 +0000332 // Return everything after the last slash
333 return path.substr(pos+1);
334}
335
Reid Spencer8475ec02007-03-29 19:05:44 +0000336const FileStatus *
Reid Spencer2ae9d112007-04-07 18:52:17 +0000337PathWithStatus::getFileStatus(bool update, std::string *ErrStr) const {
338 if (!fsIsValid || update) {
Reid Spencer69cce812007-03-29 16:43:20 +0000339 WIN32_FILE_ATTRIBUTE_DATA fi;
Reid Spencer8475ec02007-03-29 19:05:44 +0000340 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) {
341 MakeErrMsg(ErrStr, "getStatusInfo():" + std::string(path) +
Reid Spencer69cce812007-03-29 16:43:20 +0000342 ": Can't get status: ");
Reid Spencer8475ec02007-03-29 19:05:44 +0000343 return 0;
344 }
Jeff Cohen626e38e2004-12-14 05:26:43 +0000345
Reid Spencer2ae9d112007-04-07 18:52:17 +0000346 status.fileSize = fi.nFileSizeHigh;
347 status.fileSize <<= sizeof(fi.nFileSizeHigh)*8;
348 status.fileSize += fi.nFileSizeLow;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000349
Reid Spencer2ae9d112007-04-07 18:52:17 +0000350 status.mode = fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY ? 0555 : 0777;
351 status.user = 9999; // Not applicable to Windows, so...
352 status.group = 9999; // Not applicable to Windows, so...
Jeff Cohen626e38e2004-12-14 05:26:43 +0000353
Reid Spencer4031bef2007-03-29 17:00:31 +0000354 // FIXME: this is only unique if the file is accessed by the same file path.
355 // How do we do this for C:\dir\file and ..\dir\file ? Unix has inode
356 // numbers, but the concept doesn't exist in Windows.
Reid Spencer2ae9d112007-04-07 18:52:17 +0000357 status.uniqueID = 0;
Reid Spencer4031bef2007-03-29 17:00:31 +0000358 for (unsigned i = 0; i < path.length(); ++i)
Reid Spencer2ae9d112007-04-07 18:52:17 +0000359 status.uniqueID += path[i];
Reid Spencer4031bef2007-03-29 17:00:31 +0000360
Reid Spencer69cce812007-03-29 16:43:20 +0000361 __int64 ft = *reinterpret_cast<__int64*>(&fi.ftLastWriteTime);
Reid Spencer2ae9d112007-04-07 18:52:17 +0000362 status.modTime.fromWin32Time(ft);
Reid Spencer69cce812007-03-29 16:43:20 +0000363
Reid Spencer2ae9d112007-04-07 18:52:17 +0000364 status.isDir = fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY;
365 fsIsValid = true;
Reid Spencer69cce812007-03-29 16:43:20 +0000366 }
Reid Spencer2ae9d112007-04-07 18:52:17 +0000367 return &status;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000368}
369
Reid Spencera34a1572006-08-22 23:54:35 +0000370bool Path::makeReadableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000371 // All files are readable on Windows (ignoring security attributes).
Reid Spencera34a1572006-08-22 23:54:35 +0000372 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000373}
374
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000375bool Path::makeWriteableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000376 DWORD attr = GetFileAttributes(path.c_str());
377
378 // If it doesn't exist, we're done.
379 if (attr == INVALID_FILE_ATTRIBUTES)
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000380 return false;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000381
382 if (attr & FILE_ATTRIBUTE_READONLY) {
Reid Spencera34a1572006-08-22 23:54:35 +0000383 if (!SetFileAttributes(path.c_str(), attr & ~FILE_ATTRIBUTE_READONLY)) {
384 MakeErrMsg(ErrMsg, std::string(path) + ": Can't make file writable: ");
385 return true;
386 }
Jeff Cohen626e38e2004-12-14 05:26:43 +0000387 }
Reid Spencera34a1572006-08-22 23:54:35 +0000388 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000389}
390
Reid Spencera34a1572006-08-22 23:54:35 +0000391bool Path::makeExecutableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000392 // All files are executable on Windows (ignoring security attributes).
Reid Spencera34a1572006-08-22 23:54:35 +0000393 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000394}
395
Reid Spencerb016a372004-09-15 05:49:50 +0000396bool
Reid Spencer142ca8e2006-08-23 06:56:27 +0000397Path::getDirectoryContents(std::set<Path>& result, std::string* ErrMsg) const {
Jeff Cohen31102892007-04-07 20:47:27 +0000398 WIN32_FILE_ATTRIBUTE_DATA fi;
399 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) {
400 MakeErrMsg(ErrMsg, path + ": can't get status of file");
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000401 return true;
Jeff Cohen31102892007-04-07 20:47:27 +0000402 }
403
404 if (!(fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) {
405 if (ErrMsg)
406 *ErrMsg = path + ": not a directory";
Reid Spencer142ca8e2006-08-23 06:56:27 +0000407 return true;
408 }
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000409
410 result.clear();
411 WIN32_FIND_DATA fd;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000412 std::string searchpath = path;
413 if (path.size() == 0 || searchpath[path.size()-1] == '/')
Jeff Cohen85c716f2005-07-08 05:02:13 +0000414 searchpath += "*";
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000415 else
416 searchpath += "/*";
Jeff Cohen85c716f2005-07-08 05:02:13 +0000417
Jeff Cohen9437bb62005-01-27 03:49:03 +0000418 HANDLE h = FindFirstFile(searchpath.c_str(), &fd);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000419 if (h == INVALID_HANDLE_VALUE) {
Jeff Cohen9437bb62005-01-27 03:49:03 +0000420 if (GetLastError() == ERROR_FILE_NOT_FOUND)
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000421 return true; // not really an error, now is it?
Reid Spencer142ca8e2006-08-23 06:56:27 +0000422 MakeErrMsg(ErrMsg, path + ": Can't read directory: ");
423 return true;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000424 }
425
426 do {
Jeff Cohend40a7de2004-12-31 05:07:26 +0000427 if (fd.cFileName[0] == '.')
428 continue;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000429 Path aPath(path);
430 aPath.appendComponent(&fd.cFileName[0]);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000431 result.insert(aPath);
432 } while (FindNextFile(h, &fd));
433
Jeff Cohen51b8d212004-12-31 19:01:08 +0000434 DWORD err = GetLastError();
435 FindClose(h);
436 if (err != ERROR_NO_MORE_FILES) {
437 SetLastError(err);
Reid Spencer142ca8e2006-08-23 06:56:27 +0000438 MakeErrMsg(ErrMsg, path + ": Can't read directory: ");
439 return true;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000440 }
Reid Spencer142ca8e2006-08-23 06:56:27 +0000441 return false;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000442}
443
444bool
Reid Spencer1cf2d042005-07-07 23:35:23 +0000445Path::set(const std::string& a_path) {
Dan Gohman30359592008-01-29 13:02:09 +0000446 if (a_path.empty())
Reid Spencerb016a372004-09-15 05:49:50 +0000447 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000448 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000449 path = a_path;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000450 FlipBackSlashes(path);
Reid Spencer07adb282004-11-05 22:15:36 +0000451 if (!isValid()) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000452 path = save;
Reid Spencerb016a372004-09-15 05:49:50 +0000453 return false;
454 }
455 return true;
456}
457
458bool
Jeff Cohenedb9d6b2005-07-08 02:48:42 +0000459Path::appendComponent(const std::string& name) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000460 if (name.empty())
Reid Spencerb016a372004-09-15 05:49:50 +0000461 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000462 std::string save(path);
463 if (!path.empty()) {
464 size_t last = path.size() - 1;
Jeff Cohen85c716f2005-07-08 05:02:13 +0000465 if (path[last] != '/')
Reid Spencer1cf2d042005-07-07 23:35:23 +0000466 path += '/';
467 }
468 path += name;
Reid Spencer07adb282004-11-05 22:15:36 +0000469 if (!isValid()) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000470 path = save;
Reid Spencerb016a372004-09-15 05:49:50 +0000471 return false;
472 }
473 return true;
474}
475
476bool
Reid Spencer1cf2d042005-07-07 23:35:23 +0000477Path::eraseComponent() {
Reid Spencerb016a372004-09-15 05:49:50 +0000478 size_t slashpos = path.rfind('/',path.size());
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000479 if (slashpos == path.size() - 1 || slashpos == std::string::npos)
Reid Spencerb016a372004-09-15 05:49:50 +0000480 return false;
Jeff Cohen966fa412005-07-09 18:42:49 +0000481 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000482 path.erase(slashpos);
Jeff Cohen966fa412005-07-09 18:42:49 +0000483 if (!isValid()) {
484 path = save;
485 return false;
486 }
Reid Spencerb016a372004-09-15 05:49:50 +0000487 return true;
488}
489
490bool
Reid Spencer07adb282004-11-05 22:15:36 +0000491Path::appendSuffix(const std::string& suffix) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000492 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000493 path.append(".");
494 path.append(suffix);
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
Reid Spencer1cf2d042005-07-07 23:35:23 +0000503Path::eraseSuffix() {
Reid Spencerb016a372004-09-15 05:49:50 +0000504 size_t dotpos = path.rfind('.',path.size());
505 size_t slashpos = path.rfind('/',path.size());
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000506 if (dotpos != std::string::npos) {
Jeff Cohen966fa412005-07-09 18:42:49 +0000507 if (slashpos == std::string::npos || dotpos > slashpos+1) {
508 std::string save(path);
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000509 path.erase(dotpos, path.size()-dotpos);
Jeff Cohen966fa412005-07-09 18:42:49 +0000510 if (!isValid()) {
511 path = save;
512 return false;
513 }
Jeff Cohen85c716f2005-07-08 05:02:13 +0000514 return true;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000515 }
Reid Spencerb016a372004-09-15 05:49:50 +0000516 }
517 return false;
518}
519
Reid Spencer30300992006-08-24 18:58:37 +0000520inline bool PathMsg(std::string* ErrMsg, const char* pathname, const char*msg) {
521 if (ErrMsg)
522 *ErrMsg = std::string(pathname) + ": " + std::string(msg);
523 return true;
524}
525
Reid Spencerb016a372004-09-15 05:49:50 +0000526bool
Reid Spencer30300992006-08-24 18:58:37 +0000527Path::createDirectoryOnDisk(bool create_parents, std::string* ErrMsg) {
Reid Spencerb016a372004-09-15 05:49:50 +0000528 // Get a writeable copy of the path name
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000529 size_t len = path.length();
530 char *pathname = reinterpret_cast<char *>(_alloca(len+2));
531 path.copy(pathname, len);
532 pathname[len] = 0;
Jeff Cohen85c716f2005-07-08 05:02:13 +0000533
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000534 // Make sure it ends with a slash.
535 if (len == 0 || pathname[len - 1] != '/') {
536 pathname[len] = '/';
537 pathname[++len] = 0;
538 }
Reid Spencerb016a372004-09-15 05:49:50 +0000539
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000540 // Determine starting point for initial / search.
541 char *next = pathname;
542 if (pathname[0] == '/' && pathname[1] == '/') {
543 // Skip host name.
544 next = strchr(pathname+2, '/');
545 if (next == NULL)
Reid Spencer30300992006-08-24 18:58:37 +0000546 return PathMsg(ErrMsg, pathname, "badly formed remote directory");
547
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000548 // Skip share name.
549 next = strchr(next+1, '/');
550 if (next == NULL)
Reid Spencer30300992006-08-24 18:58:37 +0000551 return PathMsg(ErrMsg, pathname,"badly formed remote directory");
552
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000553 next++;
554 if (*next == 0)
Reid Spencer30300992006-08-24 18:58:37 +0000555 return PathMsg(ErrMsg, pathname, "badly formed remote directory");
556
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000557 } else {
558 if (pathname[1] == ':')
559 next += 2; // skip drive letter
560 if (*next == '/')
561 next++; // skip root directory
562 }
Reid Spencerb016a372004-09-15 05:49:50 +0000563
564 // If we're supposed to create intermediate directories
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000565 if (create_parents) {
Reid Spencerb016a372004-09-15 05:49:50 +0000566 // Loop through the directory components until we're done
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000567 while (*next) {
568 next = strchr(next, '/');
Reid Spencerb016a372004-09-15 05:49:50 +0000569 *next = 0;
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000570 if (!CreateDirectory(pathname, NULL))
Reid Spencer30300992006-08-24 18:58:37 +0000571 return MakeErrMsg(ErrMsg,
572 std::string(pathname) + ": Can't create directory: ");
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000573 *next++ = '/';
Reid Spencerb016a372004-09-15 05:49:50 +0000574 }
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000575 } else {
576 // Drop trailing slash.
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000577 pathname[len-1] = 0;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000578 if (!CreateDirectory(pathname, NULL)) {
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000579 return MakeErrMsg(ErrMsg, std::string(pathname) + ": Can't create directory: ");
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000580 }
Reid Spencerb016a372004-09-15 05:49:50 +0000581 }
Reid Spencer30300992006-08-24 18:58:37 +0000582 return false;
Reid Spencerb016a372004-09-15 05:49:50 +0000583}
584
585bool
Reid Spencer30300992006-08-24 18:58:37 +0000586Path::createFileOnDisk(std::string* ErrMsg) {
Reid Spencerb016a372004-09-15 05:49:50 +0000587 // Create the file
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000588 HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW,
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000589 FILE_ATTRIBUTE_NORMAL, NULL);
590 if (h == INVALID_HANDLE_VALUE)
Reid Spencer30300992006-08-24 18:58:37 +0000591 return MakeErrMsg(ErrMsg, path + ": Can't create file: ");
Reid Spencerb016a372004-09-15 05:49:50 +0000592
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000593 CloseHandle(h);
Reid Spencer30300992006-08-24 18:58:37 +0000594 return false;
Reid Spencerb016a372004-09-15 05:49:50 +0000595}
596
597bool
Chris Lattner0c332312006-07-28 22:29:50 +0000598Path::eraseFromDisk(bool remove_contents, std::string *ErrStr) const {
Jeff Cohen31102892007-04-07 20:47:27 +0000599 WIN32_FILE_ATTRIBUTE_DATA fi;
600 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi))
601 return true;
Chris Lattnerc7c453a2006-08-01 17:51:09 +0000602
Jeff Cohen31102892007-04-07 20:47:27 +0000603 if (fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000604 // If it doesn't exist, we're done.
Jeff Cohen85c716f2005-07-08 05:02:13 +0000605 if (!exists())
Chris Lattner0c332312006-07-28 22:29:50 +0000606 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000607
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000608 char *pathname = reinterpret_cast<char *>(_alloca(path.length()+3));
Reid Spencer1cf2d042005-07-07 23:35:23 +0000609 int lastchar = path.length() - 1 ;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000610 path.copy(pathname, lastchar+1);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000611
612 // Make path end with '/*'.
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000613 if (pathname[lastchar] != '/')
614 pathname[++lastchar] = '/';
Reid Spencer1cf2d042005-07-07 23:35:23 +0000615 pathname[lastchar+1] = '*';
616 pathname[lastchar+2] = 0;
617
618 if (remove_contents) {
619 WIN32_FIND_DATA fd;
620 HANDLE h = FindFirstFile(pathname, &fd);
621
622 // It's a bad idea to alter the contents of a directory while enumerating
623 // its contents. So build a list of its contents first, then destroy them.
624
625 if (h != INVALID_HANDLE_VALUE) {
626 std::vector<Path> list;
627
628 do {
629 if (strcmp(fd.cFileName, ".") == 0)
630 continue;
631 if (strcmp(fd.cFileName, "..") == 0)
632 continue;
633
Jeff Cohen85c716f2005-07-08 05:02:13 +0000634 Path aPath(path);
635 aPath.appendComponent(&fd.cFileName[0]);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000636 list.push_back(aPath);
637 } while (FindNextFile(h, &fd));
638
639 DWORD err = GetLastError();
640 FindClose(h);
641 if (err != ERROR_NO_MORE_FILES) {
642 SetLastError(err);
Reid Spencer05545752006-08-25 21:37:17 +0000643 return MakeErrMsg(ErrStr, path + ": Can't read directory: ");
Reid Spencer1cf2d042005-07-07 23:35:23 +0000644 }
645
Jeff Cohen85c716f2005-07-08 05:02:13 +0000646 for (std::vector<Path>::iterator I = list.begin(); I != list.end();
Reid Spencer1cf2d042005-07-07 23:35:23 +0000647 ++I) {
648 Path &aPath = *I;
Reid Spencera229c5c2005-07-08 03:08:58 +0000649 aPath.eraseFromDisk(true);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000650 }
651 } else {
652 if (GetLastError() != ERROR_FILE_NOT_FOUND)
Reid Spencer05545752006-08-25 21:37:17 +0000653 return MakeErrMsg(ErrStr, path + ": Can't read directory: ");
Reid Spencer1cf2d042005-07-07 23:35:23 +0000654 }
655 }
656
657 pathname[lastchar] = 0;
658 if (!RemoveDirectory(pathname))
Reid Spencer05545752006-08-25 21:37:17 +0000659 return MakeErrMsg(ErrStr,
660 std::string(pathname) + ": Can't destroy directory: ");
Chris Lattner0c332312006-07-28 22:29:50 +0000661 return false;
Jeff Cohen31102892007-04-07 20:47:27 +0000662 } else {
663 // Read-only files cannot be deleted on Windows. Must remove the read-only
664 // attribute first.
665 if (fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
666 if (!SetFileAttributes(path.c_str(),
667 fi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY))
668 return MakeErrMsg(ErrStr, path + ": Can't destroy file: ");
669 }
670
671 if (!DeleteFile(path.c_str()))
672 return MakeErrMsg(ErrStr, path + ": Can't destroy file: ");
673 return false;
674 }
Reid Spencerb016a372004-09-15 05:49:50 +0000675}
676
Reid Spencer3b0cc782004-12-14 18:42:13 +0000677bool Path::getMagicNumber(std::string& Magic, unsigned len) const {
Reid Spencer3b0cc782004-12-14 18:42:13 +0000678 assert(len < 1024 && "Request for magic string too long");
679 char* buf = (char*) alloca(1 + len);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000680
681 HANDLE h = CreateFile(path.c_str(),
682 GENERIC_READ,
683 FILE_SHARE_READ,
684 NULL,
685 OPEN_EXISTING,
686 FILE_ATTRIBUTE_NORMAL,
687 NULL);
688 if (h == INVALID_HANDLE_VALUE)
Reid Spencer3b0cc782004-12-14 18:42:13 +0000689 return false;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000690
691 DWORD nRead = 0;
692 BOOL ret = ReadFile(h, buf, len, &nRead, NULL);
693 CloseHandle(h);
694
695 if (!ret || nRead != len)
Reid Spencer3b0cc782004-12-14 18:42:13 +0000696 return false;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000697
Reid Spencer3b0cc782004-12-14 18:42:13 +0000698 buf[len] = '\0';
699 Magic = buf;
700 return true;
701}
702
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000703bool
Reid Spencer5a060772006-08-23 07:30:48 +0000704Path::renamePathOnDisk(const Path& newName, std::string* ErrMsg) {
Jeff Cohene564de22006-05-07 02:51:51 +0000705 if (!MoveFileEx(path.c_str(), newName.c_str(), MOVEFILE_REPLACE_EXISTING))
Reid Spencer5a060772006-08-23 07:30:48 +0000706 return MakeErrMsg(ErrMsg, "Can't move '" + path + "' to '" + newName.path
707 + "': ");
Nick Lewycky5c632e92008-05-06 03:42:21 +0000708 return false;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000709}
710
711bool
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000712Path::setStatusInfoOnDisk(const FileStatus &si, std::string *ErrMsg) const {
Jeff Cohen966fa412005-07-09 18:42:49 +0000713 // FIXME: should work on directories also.
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000714 if (!si.isFile) {
715 return true;
716 }
717
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000718 HANDLE h = CreateFile(path.c_str(),
719 FILE_READ_ATTRIBUTES | FILE_WRITE_ATTRIBUTES,
720 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
Jeff Cohend40a7de2004-12-31 05:07:26 +0000721 NULL,
722 OPEN_EXISTING,
723 FILE_ATTRIBUTE_NORMAL,
724 NULL);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000725 if (h == INVALID_HANDLE_VALUE)
Chris Lattner1bebfb52006-07-28 22:36:17 +0000726 return true;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000727
728 BY_HANDLE_FILE_INFORMATION bhfi;
729 if (!GetFileInformationByHandle(h, &bhfi)) {
Jeff Cohen51b8d212004-12-31 19:01:08 +0000730 DWORD err = GetLastError();
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000731 CloseHandle(h);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000732 SetLastError(err);
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000733 return MakeErrMsg(ErrMsg, path + ": GetFileInformationByHandle: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000734 }
735
736 FILETIME ft;
737 (uint64_t&)ft = si.modTime.toWin32Time();
738 BOOL ret = SetFileTime(h, NULL, &ft, &ft);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000739 DWORD err = GetLastError();
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000740 CloseHandle(h);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000741 if (!ret) {
742 SetLastError(err);
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000743 return MakeErrMsg(ErrMsg, path + ": SetFileTime: ");
Jeff Cohen51b8d212004-12-31 19:01:08 +0000744 }
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000745
746 // Best we can do with Unix permission bits is to interpret the owner
747 // writable bit.
748 if (si.mode & 0200) {
749 if (bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
750 if (!SetFileAttributes(path.c_str(),
Jeff Cohend40a7de2004-12-31 05:07:26 +0000751 bhfi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY))
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000752 return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000753 }
754 } else {
755 if (!(bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY)) {
756 if (!SetFileAttributes(path.c_str(),
Jeff Cohend40a7de2004-12-31 05:07:26 +0000757 bhfi.dwFileAttributes | FILE_ATTRIBUTE_READONLY))
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000758 return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000759 }
760 }
761
Chris Lattner1bebfb52006-07-28 22:36:17 +0000762 return false;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000763}
764
Reid Spencer30300992006-08-24 18:58:37 +0000765bool
766CopyFile(const sys::Path &Dest, const sys::Path &Src, std::string* ErrMsg) {
Jeff Cohencb652552004-12-24 02:38:34 +0000767 // Can't use CopyFile macro defined in Windows.h because it would mess up the
768 // above line. We use the expansion it would have in a non-UNICODE build.
769 if (!::CopyFileA(Src.c_str(), Dest.c_str(), false))
Reid Spencer30300992006-08-24 18:58:37 +0000770 return MakeErrMsg(ErrMsg, "Can't copy '" + Src.toString() +
Jeff Cohend40a7de2004-12-31 05:07:26 +0000771 "' to '" + Dest.toString() + "': ");
Reid Spencer30300992006-08-24 18:58:37 +0000772 return false;
Reid Spencerc29befb2004-12-15 01:50:13 +0000773}
774
Reid Spencer30300992006-08-24 18:58:37 +0000775bool
776Path::makeUnique(bool reuse_current, std::string* ErrMsg) {
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000777 if (reuse_current && !exists())
Reid Spencer30300992006-08-24 18:58:37 +0000778 return false; // File doesn't exist already, just use it!
Reid Spencerc29befb2004-12-15 01:50:13 +0000779
Jeff Cohen9437bb62005-01-27 03:49:03 +0000780 // Reserve space for -XXXXXX at the end.
781 char *FNBuffer = (char*) alloca(path.size()+8);
782 unsigned offset = path.size();
783 path.copy(FNBuffer, offset);
Reid Spencerc29befb2004-12-15 01:50:13 +0000784
Jeff Cohen966fa412005-07-09 18:42:49 +0000785 // Find a numeric suffix that isn't used by an existing file. Assume there
786 // won't be more than 1 million files with the same prefix. Probably a safe
787 // bet.
Jeff Cohen9437bb62005-01-27 03:49:03 +0000788 static unsigned FCounter = 0;
789 do {
790 sprintf(FNBuffer+offset, "-%06u", FCounter);
791 if (++FCounter > 999999)
792 FCounter = 0;
793 path = FNBuffer;
794 } while (exists());
Reid Spencer30300992006-08-24 18:58:37 +0000795 return false;
Reid Spencerc29befb2004-12-15 01:50:13 +0000796}
797
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000798bool
Reid Spencer30300992006-08-24 18:58:37 +0000799Path::createTemporaryFileOnDisk(bool reuse_current, std::string* ErrMsg) {
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000800 // Make this into a unique file name
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000801 makeUnique(reuse_current, ErrMsg);
Jeff Cohen9437bb62005-01-27 03:49:03 +0000802
803 // Now go and create it
804 HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW,
805 FILE_ATTRIBUTE_NORMAL, NULL);
806 if (h == INVALID_HANDLE_VALUE)
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000807 return MakeErrMsg(ErrMsg, path + ": can't create file");
Jeff Cohen9437bb62005-01-27 03:49:03 +0000808
809 CloseHandle(h);
Reid Spencer30300992006-08-24 18:58:37 +0000810 return false;
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000811}
812
Chris Lattner799ed102008-04-01 06:00:12 +0000813/// MapInFilePages - Not yet implemented on win32.
814const char *Path::MapInFilePages(int FD, uint64_t FileSize) {
815 return 0;
816}
817
818/// MapInFilePages - Not yet implemented on win32.
819void Path::UnMapFilePages(const char *Base, uint64_t FileSize) {
820 assert(0 && "NOT IMPLEMENTED");
821}
822
Reid Spencerb016a372004-09-15 05:49:50 +0000823}
Reid Spencercbad7012004-09-11 04:59:30 +0000824}