blob: fbf8f6688a57e413124255c05f562bf3110ff217 [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
Nick Lewyckyfff116f2008-05-11 17:37:40 +000050Path::Path(const std::string& p)
51 : 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&
61Path::operator=(const std::string &that) {
62 path = that;
63 FlipBackSlashes(path);
64 return *this;
65}
66
Reid Spencerb016a372004-09-15 05:49:50 +000067bool
Reid Spencer07adb282004-11-05 22:15:36 +000068Path::isValid() const {
Reid Spencerb016a372004-09-15 05:49:50 +000069 if (path.empty())
70 return false;
Reid Spencerd0c9e0e2004-09-18 19:29:16 +000071
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000072 // If there is a colon, it must be the second character, preceded by a letter
73 // and followed by something.
74 size_t len = path.size();
75 size_t pos = path.rfind(':',len);
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000076 size_t rootslash = 0;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000077 if (pos != std::string::npos) {
78 if (pos != 1 || !isalpha(path[0]) || len < 3)
79 return false;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000080 rootslash = 2;
81 }
Jeff Cohen85c716f2005-07-08 05:02:13 +000082
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000083 // Look for a UNC path, and if found adjust our notion of the root slash.
84 if (len > 3 && path[0] == '/' && path[1] == '/') {
85 rootslash = path.find('/', 2);
86 if (rootslash == std::string::npos)
87 rootslash = 0;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000088 }
Reid Spencerd0c9e0e2004-09-18 19:29:16 +000089
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000090 // Check for illegal characters.
91 if (path.find_first_of("\\<>\"|\001\002\003\004\005\006\007\010\011\012"
92 "\013\014\015\016\017\020\021\022\023\024\025\026"
93 "\027\030\031\032\033\034\035\036\037")
94 != std::string::npos)
95 return false;
Jeff Cohen85c716f2005-07-08 05:02:13 +000096
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000097 // Remove trailing slash, unless it's a root slash.
98 if (len > rootslash+1 && path[len-1] == '/')
99 path.erase(--len);
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000100
Jeff Cohen3bbbcc12005-01-14 04:09:39 +0000101 // Check each component for legality.
102 for (pos = 0; pos < len; ++pos) {
103 // A component may not end in a space.
104 if (path[pos] == ' ') {
105 if (path[pos+1] == '/' || path[pos+1] == '\0')
106 return false;
107 }
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000108
Jeff Cohen3bbbcc12005-01-14 04:09:39 +0000109 // A component may not end in a period.
110 if (path[pos] == '.') {
111 if (path[pos+1] == '/' || path[pos+1] == '\0') {
112 // Unless it is the pseudo-directory "."...
113 if (pos == 0 || path[pos-1] == '/' || path[pos-1] == ':')
114 return true;
115 // or "..".
116 if (pos > 0 && path[pos-1] == '.') {
117 if (pos == 1 || path[pos-2] == '/' || path[pos-2] == ':')
118 return true;
119 }
120 return false;
121 }
122 }
123 }
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000124
125 return true;
Reid Spencercbad7012004-09-11 04:59:30 +0000126}
127
Reid Spencer69cce812007-03-29 16:43:20 +0000128bool
129Path::isAbsolute() const {
Jeff Cohen84892be2007-03-29 17:27:38 +0000130 switch (path.length()) {
131 case 0:
132 return false;
133 case 1:
134 case 2:
135 return path[0] == '/';
136 default:
137 return path[0] == '/' || (path[1] == ':' && path[2] == '/');
138 }
Reid Spencer69cce812007-03-29 16:43:20 +0000139}
140
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000141static Path *TempDirectory = NULL;
142
Reid Spencerb016a372004-09-15 05:49:50 +0000143Path
Reid Spencercab0e432006-08-22 22:46:39 +0000144Path::GetTemporaryDirectory(std::string* ErrMsg) {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000145 if (TempDirectory)
146 return *TempDirectory;
147
148 char pathname[MAX_PATH];
Reid Spencercab0e432006-08-22 22:46:39 +0000149 if (!GetTempPath(MAX_PATH, pathname)) {
150 if (ErrMsg)
151 *ErrMsg = "Can't determine temporary directory";
152 return Path();
153 }
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000154
Reid Spencerb016a372004-09-15 05:49:50 +0000155 Path result;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000156 result.set(pathname);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000157
158 // Append a subdirectory passed on our process id so multiple LLVMs don't
159 // step on each other's toes.
Jeff Cohend41b30d2006-11-05 19:31:28 +0000160#ifdef __MINGW32__
161 // Mingw's Win32 header files are broken.
Reid Spencerab4d9b02006-06-08 18:08:43 +0000162 sprintf(pathname, "LLVM_%u", unsigned(GetCurrentProcessId()));
Jeff Cohend41b30d2006-11-05 19:31:28 +0000163#else
164 sprintf(pathname, "LLVM_%u", GetCurrentProcessId());
165#endif
Jeff Cohenedb9d6b2005-07-08 02:48:42 +0000166 result.appendComponent(pathname);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000167
168 // If there's a directory left over from a previous LLVM execution that
169 // happened to have the same process id, get rid of it.
Reid Spencera229c5c2005-07-08 03:08:58 +0000170 result.eraseFromDisk(true);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000171
172 // And finally (re-)create the empty directory.
Reid Spencera229c5c2005-07-08 03:08:58 +0000173 result.createDirectoryOnDisk(false);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000174 TempDirectory = new Path(result);
175 return *TempDirectory;
Reid Spencerb016a372004-09-15 05:49:50 +0000176}
177
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000178// FIXME: the following set of functions don't map to Windows very well.
Reid Spencerb016a372004-09-15 05:49:50 +0000179Path
180Path::GetRootDirectory() {
181 Path result;
Jeff Cohen966fa412005-07-09 18:42:49 +0000182 result.set("C:/");
Reid Spencerb016a372004-09-15 05:49:50 +0000183 return result;
184}
185
Jeff Cohen85c716f2005-07-08 05:02:13 +0000186void
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000187Path::GetSystemLibraryPaths(std::vector<sys::Path>& Paths) {
Jeff Cohen966fa412005-07-09 18:42:49 +0000188 Paths.push_back(sys::Path("C:/WINDOWS/SYSTEM32"));
189 Paths.push_back(sys::Path("C:/WINDOWS"));
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000190}
191
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000192void
Gabor Greifdb5565a2007-07-06 20:28:40 +0000193Path::GetBitcodeLibraryPaths(std::vector<sys::Path>& Paths) {
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000194 char * env_var = getenv("LLVM_LIB_SEARCH_PATH");
195 if (env_var != 0) {
196 getPathList(env_var,Paths);
197 }
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000198#ifdef LLVM_LIBDIR
199 {
200 Path tmpPath;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000201 if (tmpPath.set(LLVM_LIBDIR))
Reid Spencerc7f08322005-07-07 18:21:42 +0000202 if (tmpPath.canRead())
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000203 Paths.push_back(tmpPath);
204 }
205#endif
206 GetSystemLibraryPaths(Paths);
Reid Spencerb016a372004-09-15 05:49:50 +0000207}
208
209Path
210Path::GetLLVMDefaultConfigDir() {
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000211 // TODO: this isn't going to fly on Windows
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000212 return Path("/etc/llvm");
Reid Spencerb016a372004-09-15 05:49:50 +0000213}
214
215Path
Reid Spencerb016a372004-09-15 05:49:50 +0000216Path::GetUserHomeDirectory() {
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000217 // TODO: Typical Windows setup doesn't define HOME.
Reid Spencerb016a372004-09-15 05:49:50 +0000218 const char* home = getenv("HOME");
219 if (home) {
220 Path result;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000221 if (result.set(home))
Reid Spencerb016a372004-09-15 05:49:50 +0000222 return result;
223 }
224 return GetRootDirectory();
225}
Ted Kremenek79200782007-12-18 22:07:33 +0000226
227Path
228Path::GetCurrentDirectory() {
229 char pathname[MAX_PATH];
Anton Korobeynikov64ddbe42007-12-22 14:26:49 +0000230 ::GetCurrentDirectoryA(MAX_PATH,pathname);
Ted Kremenek79200782007-12-18 22:07:33 +0000231 return Path(pathname);
232}
233
Chris Lattner1a091442008-03-03 02:55:43 +0000234/// GetMainExecutable - Return the path to the main executable, given the
235/// value of argv[0] from program startup.
236Path Path::GetMainExecutable(const char *argv0, void *MainAddr) {
237 return Path();
238}
239
Ted Kremenek79200782007-12-18 22:07:33 +0000240
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000241// FIXME: the above set of functions don't map to Windows very well.
242
Jeff Cohen966fa412005-07-09 18:42:49 +0000243
244bool
245Path::isRootDirectory() const {
246 size_t len = path.size();
247 return len > 0 && path[len-1] == '/';
Reid Spencera229c5c2005-07-08 03:08:58 +0000248}
249
Ted Kremenek9b01cc02008-04-07 22:01:32 +0000250std::string Path::getDirname() const {
Nick Lewyckyfff116f2008-05-11 17:37:40 +0000251 return getDirnameCharSep(path, '/');
Ted Kremenek9b01cc02008-04-07 22:01:32 +0000252}
Ted Kremenekcf55c8e2008-04-07 21:53:57 +0000253
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000254std::string
Reid Spencer07adb282004-11-05 22:15:36 +0000255Path::getBasename() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000256 // Find the last slash
257 size_t slash = path.rfind('/');
258 if (slash == std::string::npos)
259 slash = 0;
260 else
261 slash++;
262
Jeff Cohen966fa412005-07-09 18:42:49 +0000263 size_t dot = path.rfind('.');
264 if (dot == std::string::npos || dot < slash)
265 return path.substr(slash);
266 else
267 return path.substr(slash, dot - slash);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000268}
269
Argyrios Kyrtzidisfc199882008-06-15 15:15:19 +0000270std::string
271Path::getSuffix() const {
272 // Find the last slash
273 size_t slash = path.rfind('/');
274 if (slash == std::string::npos)
275 slash = 0;
276 else
277 slash++;
278
279 size_t dot = path.rfind('.');
280 if (dot == std::string::npos || dot < slash)
281 return std::string();
282 else
283 return path.substr(dot + 1);
284}
285
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000286bool
Reid Spencerb016a372004-09-15 05:49:50 +0000287Path::exists() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000288 DWORD attr = GetFileAttributes(path.c_str());
289 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000290}
291
292bool
Ted Kremenekfd527112007-12-18 19:46:22 +0000293Path::isDirectory() const {
294 DWORD attr = GetFileAttributes(path.c_str());
295 return (attr != INVALID_FILE_ATTRIBUTES) &&
296 (attr & FILE_ATTRIBUTE_DIRECTORY);
297}
298
299bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000300Path::canRead() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000301 // FIXME: take security attributes into account.
302 DWORD attr = GetFileAttributes(path.c_str());
303 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000304}
305
306bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000307Path::canWrite() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000308 // FIXME: take security attributes into account.
309 DWORD attr = GetFileAttributes(path.c_str());
310 return (attr != INVALID_FILE_ATTRIBUTES) && !(attr & FILE_ATTRIBUTE_READONLY);
Reid Spencerb016a372004-09-15 05:49:50 +0000311}
312
313bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000314Path::canExecute() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000315 // FIXME: take security attributes into account.
316 DWORD attr = GetFileAttributes(path.c_str());
317 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000318}
319
320std::string
321Path::getLast() const {
322 // Find the last slash
323 size_t pos = path.rfind('/');
324
325 // Handle the corner cases
326 if (pos == std::string::npos)
327 return path;
328
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000329 // If the last character is a slash, we have a root directory
330 if (pos == path.length()-1)
331 return path;
332
Reid Spencerb016a372004-09-15 05:49:50 +0000333 // Return everything after the last slash
334 return path.substr(pos+1);
335}
336
Reid Spencer8475ec02007-03-29 19:05:44 +0000337const FileStatus *
Reid Spencer2ae9d112007-04-07 18:52:17 +0000338PathWithStatus::getFileStatus(bool update, std::string *ErrStr) const {
339 if (!fsIsValid || update) {
Reid Spencer69cce812007-03-29 16:43:20 +0000340 WIN32_FILE_ATTRIBUTE_DATA fi;
Reid Spencer8475ec02007-03-29 19:05:44 +0000341 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) {
342 MakeErrMsg(ErrStr, "getStatusInfo():" + std::string(path) +
Reid Spencer69cce812007-03-29 16:43:20 +0000343 ": Can't get status: ");
Reid Spencer8475ec02007-03-29 19:05:44 +0000344 return 0;
345 }
Jeff Cohen626e38e2004-12-14 05:26:43 +0000346
Reid Spencer2ae9d112007-04-07 18:52:17 +0000347 status.fileSize = fi.nFileSizeHigh;
348 status.fileSize <<= sizeof(fi.nFileSizeHigh)*8;
349 status.fileSize += fi.nFileSizeLow;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000350
Reid Spencer2ae9d112007-04-07 18:52:17 +0000351 status.mode = fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY ? 0555 : 0777;
352 status.user = 9999; // Not applicable to Windows, so...
353 status.group = 9999; // Not applicable to Windows, so...
Jeff Cohen626e38e2004-12-14 05:26:43 +0000354
Reid Spencer4031bef2007-03-29 17:00:31 +0000355 // FIXME: this is only unique if the file is accessed by the same file path.
356 // How do we do this for C:\dir\file and ..\dir\file ? Unix has inode
357 // numbers, but the concept doesn't exist in Windows.
Reid Spencer2ae9d112007-04-07 18:52:17 +0000358 status.uniqueID = 0;
Reid Spencer4031bef2007-03-29 17:00:31 +0000359 for (unsigned i = 0; i < path.length(); ++i)
Reid Spencer2ae9d112007-04-07 18:52:17 +0000360 status.uniqueID += path[i];
Reid Spencer4031bef2007-03-29 17:00:31 +0000361
Reid Spencer69cce812007-03-29 16:43:20 +0000362 __int64 ft = *reinterpret_cast<__int64*>(&fi.ftLastWriteTime);
Reid Spencer2ae9d112007-04-07 18:52:17 +0000363 status.modTime.fromWin32Time(ft);
Reid Spencer69cce812007-03-29 16:43:20 +0000364
Reid Spencer2ae9d112007-04-07 18:52:17 +0000365 status.isDir = fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY;
366 fsIsValid = true;
Reid Spencer69cce812007-03-29 16:43:20 +0000367 }
Reid Spencer2ae9d112007-04-07 18:52:17 +0000368 return &status;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000369}
370
Reid Spencera34a1572006-08-22 23:54:35 +0000371bool Path::makeReadableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000372 // All files are readable on Windows (ignoring security attributes).
Reid Spencera34a1572006-08-22 23:54:35 +0000373 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000374}
375
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000376bool Path::makeWriteableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000377 DWORD attr = GetFileAttributes(path.c_str());
378
379 // If it doesn't exist, we're done.
380 if (attr == INVALID_FILE_ATTRIBUTES)
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000381 return false;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000382
383 if (attr & FILE_ATTRIBUTE_READONLY) {
Reid Spencera34a1572006-08-22 23:54:35 +0000384 if (!SetFileAttributes(path.c_str(), attr & ~FILE_ATTRIBUTE_READONLY)) {
385 MakeErrMsg(ErrMsg, std::string(path) + ": Can't make file writable: ");
386 return true;
387 }
Jeff Cohen626e38e2004-12-14 05:26:43 +0000388 }
Reid Spencera34a1572006-08-22 23:54:35 +0000389 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000390}
391
Reid Spencera34a1572006-08-22 23:54:35 +0000392bool Path::makeExecutableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000393 // All files are executable on Windows (ignoring security attributes).
Reid Spencera34a1572006-08-22 23:54:35 +0000394 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000395}
396
Reid Spencerb016a372004-09-15 05:49:50 +0000397bool
Reid Spencer142ca8e2006-08-23 06:56:27 +0000398Path::getDirectoryContents(std::set<Path>& result, std::string* ErrMsg) const {
Jeff Cohen31102892007-04-07 20:47:27 +0000399 WIN32_FILE_ATTRIBUTE_DATA fi;
400 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) {
401 MakeErrMsg(ErrMsg, path + ": can't get status of file");
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000402 return true;
Jeff Cohen31102892007-04-07 20:47:27 +0000403 }
404
405 if (!(fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) {
406 if (ErrMsg)
407 *ErrMsg = path + ": not a directory";
Reid Spencer142ca8e2006-08-23 06:56:27 +0000408 return true;
409 }
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000410
411 result.clear();
412 WIN32_FIND_DATA fd;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000413 std::string searchpath = path;
414 if (path.size() == 0 || searchpath[path.size()-1] == '/')
Jeff Cohen85c716f2005-07-08 05:02:13 +0000415 searchpath += "*";
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000416 else
417 searchpath += "/*";
Jeff Cohen85c716f2005-07-08 05:02:13 +0000418
Jeff Cohen9437bb62005-01-27 03:49:03 +0000419 HANDLE h = FindFirstFile(searchpath.c_str(), &fd);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000420 if (h == INVALID_HANDLE_VALUE) {
Jeff Cohen9437bb62005-01-27 03:49:03 +0000421 if (GetLastError() == ERROR_FILE_NOT_FOUND)
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000422 return true; // not really an error, now is it?
Reid Spencer142ca8e2006-08-23 06:56:27 +0000423 MakeErrMsg(ErrMsg, path + ": Can't read directory: ");
424 return true;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000425 }
426
427 do {
Jeff Cohend40a7de2004-12-31 05:07:26 +0000428 if (fd.cFileName[0] == '.')
429 continue;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000430 Path aPath(path);
431 aPath.appendComponent(&fd.cFileName[0]);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000432 result.insert(aPath);
433 } while (FindNextFile(h, &fd));
434
Jeff Cohen51b8d212004-12-31 19:01:08 +0000435 DWORD err = GetLastError();
436 FindClose(h);
437 if (err != ERROR_NO_MORE_FILES) {
438 SetLastError(err);
Reid Spencer142ca8e2006-08-23 06:56:27 +0000439 MakeErrMsg(ErrMsg, path + ": Can't read directory: ");
440 return true;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000441 }
Reid Spencer142ca8e2006-08-23 06:56:27 +0000442 return false;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000443}
444
445bool
Reid Spencer1cf2d042005-07-07 23:35:23 +0000446Path::set(const std::string& a_path) {
Dan Gohman30359592008-01-29 13:02:09 +0000447 if (a_path.empty())
Reid Spencerb016a372004-09-15 05:49:50 +0000448 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000449 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000450 path = a_path;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000451 FlipBackSlashes(path);
Reid Spencer07adb282004-11-05 22:15:36 +0000452 if (!isValid()) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000453 path = save;
Reid Spencerb016a372004-09-15 05:49:50 +0000454 return false;
455 }
456 return true;
457}
458
459bool
Jeff Cohenedb9d6b2005-07-08 02:48:42 +0000460Path::appendComponent(const std::string& name) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000461 if (name.empty())
Reid Spencerb016a372004-09-15 05:49:50 +0000462 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000463 std::string save(path);
464 if (!path.empty()) {
465 size_t last = path.size() - 1;
Jeff Cohen85c716f2005-07-08 05:02:13 +0000466 if (path[last] != '/')
Reid Spencer1cf2d042005-07-07 23:35:23 +0000467 path += '/';
468 }
469 path += name;
Reid Spencer07adb282004-11-05 22:15:36 +0000470 if (!isValid()) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000471 path = save;
Reid Spencerb016a372004-09-15 05:49:50 +0000472 return false;
473 }
474 return true;
475}
476
477bool
Reid Spencer1cf2d042005-07-07 23:35:23 +0000478Path::eraseComponent() {
Reid Spencerb016a372004-09-15 05:49:50 +0000479 size_t slashpos = path.rfind('/',path.size());
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000480 if (slashpos == path.size() - 1 || slashpos == std::string::npos)
Reid Spencerb016a372004-09-15 05:49:50 +0000481 return false;
Jeff Cohen966fa412005-07-09 18:42:49 +0000482 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000483 path.erase(slashpos);
Jeff Cohen966fa412005-07-09 18:42:49 +0000484 if (!isValid()) {
485 path = save;
486 return false;
487 }
Reid Spencerb016a372004-09-15 05:49:50 +0000488 return true;
489}
490
491bool
Reid Spencer07adb282004-11-05 22:15:36 +0000492Path::appendSuffix(const std::string& suffix) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000493 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000494 path.append(".");
495 path.append(suffix);
Reid Spencer07adb282004-11-05 22:15:36 +0000496 if (!isValid()) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000497 path = save;
Reid Spencerb016a372004-09-15 05:49:50 +0000498 return false;
499 }
500 return true;
501}
502
503bool
Reid Spencer1cf2d042005-07-07 23:35:23 +0000504Path::eraseSuffix() {
Reid Spencerb016a372004-09-15 05:49:50 +0000505 size_t dotpos = path.rfind('.',path.size());
506 size_t slashpos = path.rfind('/',path.size());
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000507 if (dotpos != std::string::npos) {
Jeff Cohen966fa412005-07-09 18:42:49 +0000508 if (slashpos == std::string::npos || dotpos > slashpos+1) {
509 std::string save(path);
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000510 path.erase(dotpos, path.size()-dotpos);
Jeff Cohen966fa412005-07-09 18:42:49 +0000511 if (!isValid()) {
512 path = save;
513 return false;
514 }
Jeff Cohen85c716f2005-07-08 05:02:13 +0000515 return true;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000516 }
Reid Spencerb016a372004-09-15 05:49:50 +0000517 }
518 return false;
519}
520
Reid Spencer30300992006-08-24 18:58:37 +0000521inline bool PathMsg(std::string* ErrMsg, const char* pathname, const char*msg) {
522 if (ErrMsg)
523 *ErrMsg = std::string(pathname) + ": " + std::string(msg);
524 return true;
525}
526
Reid Spencerb016a372004-09-15 05:49:50 +0000527bool
Reid Spencer30300992006-08-24 18:58:37 +0000528Path::createDirectoryOnDisk(bool create_parents, std::string* ErrMsg) {
Reid Spencerb016a372004-09-15 05:49:50 +0000529 // Get a writeable copy of the path name
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000530 size_t len = path.length();
531 char *pathname = reinterpret_cast<char *>(_alloca(len+2));
532 path.copy(pathname, len);
533 pathname[len] = 0;
Jeff Cohen85c716f2005-07-08 05:02:13 +0000534
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000535 // Make sure it ends with a slash.
536 if (len == 0 || pathname[len - 1] != '/') {
537 pathname[len] = '/';
538 pathname[++len] = 0;
539 }
Reid Spencerb016a372004-09-15 05:49:50 +0000540
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000541 // Determine starting point for initial / search.
542 char *next = pathname;
543 if (pathname[0] == '/' && pathname[1] == '/') {
544 // Skip host name.
545 next = strchr(pathname+2, '/');
546 if (next == NULL)
Reid Spencer30300992006-08-24 18:58:37 +0000547 return PathMsg(ErrMsg, pathname, "badly formed remote directory");
548
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000549 // Skip share name.
550 next = strchr(next+1, '/');
551 if (next == NULL)
Reid Spencer30300992006-08-24 18:58:37 +0000552 return PathMsg(ErrMsg, pathname,"badly formed remote directory");
553
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000554 next++;
555 if (*next == 0)
Reid Spencer30300992006-08-24 18:58:37 +0000556 return PathMsg(ErrMsg, pathname, "badly formed remote directory");
557
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000558 } else {
559 if (pathname[1] == ':')
560 next += 2; // skip drive letter
561 if (*next == '/')
562 next++; // skip root directory
563 }
Reid Spencerb016a372004-09-15 05:49:50 +0000564
565 // If we're supposed to create intermediate directories
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000566 if (create_parents) {
Reid Spencerb016a372004-09-15 05:49:50 +0000567 // Loop through the directory components until we're done
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000568 while (*next) {
569 next = strchr(next, '/');
Reid Spencerb016a372004-09-15 05:49:50 +0000570 *next = 0;
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000571 if (!CreateDirectory(pathname, NULL))
Reid Spencer30300992006-08-24 18:58:37 +0000572 return MakeErrMsg(ErrMsg,
573 std::string(pathname) + ": Can't create directory: ");
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000574 *next++ = '/';
Reid Spencerb016a372004-09-15 05:49:50 +0000575 }
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000576 } else {
577 // Drop trailing slash.
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000578 pathname[len-1] = 0;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000579 if (!CreateDirectory(pathname, NULL)) {
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000580 return MakeErrMsg(ErrMsg, std::string(pathname) + ": Can't create directory: ");
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000581 }
Reid Spencerb016a372004-09-15 05:49:50 +0000582 }
Reid Spencer30300992006-08-24 18:58:37 +0000583 return false;
Reid Spencerb016a372004-09-15 05:49:50 +0000584}
585
586bool
Reid Spencer30300992006-08-24 18:58:37 +0000587Path::createFileOnDisk(std::string* ErrMsg) {
Reid Spencerb016a372004-09-15 05:49:50 +0000588 // Create the file
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000589 HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW,
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000590 FILE_ATTRIBUTE_NORMAL, NULL);
591 if (h == INVALID_HANDLE_VALUE)
Reid Spencer30300992006-08-24 18:58:37 +0000592 return MakeErrMsg(ErrMsg, path + ": Can't create file: ");
Reid Spencerb016a372004-09-15 05:49:50 +0000593
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000594 CloseHandle(h);
Reid Spencer30300992006-08-24 18:58:37 +0000595 return false;
Reid Spencerb016a372004-09-15 05:49:50 +0000596}
597
598bool
Chris Lattner0c332312006-07-28 22:29:50 +0000599Path::eraseFromDisk(bool remove_contents, std::string *ErrStr) const {
Jeff Cohen31102892007-04-07 20:47:27 +0000600 WIN32_FILE_ATTRIBUTE_DATA fi;
601 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi))
602 return true;
Chris Lattnerc7c453a2006-08-01 17:51:09 +0000603
Jeff Cohen31102892007-04-07 20:47:27 +0000604 if (fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000605 // If it doesn't exist, we're done.
Jeff Cohen85c716f2005-07-08 05:02:13 +0000606 if (!exists())
Chris Lattner0c332312006-07-28 22:29:50 +0000607 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000608
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000609 char *pathname = reinterpret_cast<char *>(_alloca(path.length()+3));
Reid Spencer1cf2d042005-07-07 23:35:23 +0000610 int lastchar = path.length() - 1 ;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000611 path.copy(pathname, lastchar+1);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000612
613 // Make path end with '/*'.
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000614 if (pathname[lastchar] != '/')
615 pathname[++lastchar] = '/';
Reid Spencer1cf2d042005-07-07 23:35:23 +0000616 pathname[lastchar+1] = '*';
617 pathname[lastchar+2] = 0;
618
619 if (remove_contents) {
620 WIN32_FIND_DATA fd;
621 HANDLE h = FindFirstFile(pathname, &fd);
622
623 // It's a bad idea to alter the contents of a directory while enumerating
624 // its contents. So build a list of its contents first, then destroy them.
625
626 if (h != INVALID_HANDLE_VALUE) {
627 std::vector<Path> list;
628
629 do {
630 if (strcmp(fd.cFileName, ".") == 0)
631 continue;
632 if (strcmp(fd.cFileName, "..") == 0)
633 continue;
634
Jeff Cohen85c716f2005-07-08 05:02:13 +0000635 Path aPath(path);
636 aPath.appendComponent(&fd.cFileName[0]);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000637 list.push_back(aPath);
638 } while (FindNextFile(h, &fd));
639
640 DWORD err = GetLastError();
641 FindClose(h);
642 if (err != ERROR_NO_MORE_FILES) {
643 SetLastError(err);
Reid Spencer05545752006-08-25 21:37:17 +0000644 return MakeErrMsg(ErrStr, path + ": Can't read directory: ");
Reid Spencer1cf2d042005-07-07 23:35:23 +0000645 }
646
Jeff Cohen85c716f2005-07-08 05:02:13 +0000647 for (std::vector<Path>::iterator I = list.begin(); I != list.end();
Reid Spencer1cf2d042005-07-07 23:35:23 +0000648 ++I) {
649 Path &aPath = *I;
Reid Spencera229c5c2005-07-08 03:08:58 +0000650 aPath.eraseFromDisk(true);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000651 }
652 } else {
653 if (GetLastError() != ERROR_FILE_NOT_FOUND)
Reid Spencer05545752006-08-25 21:37:17 +0000654 return MakeErrMsg(ErrStr, path + ": Can't read directory: ");
Reid Spencer1cf2d042005-07-07 23:35:23 +0000655 }
656 }
657
658 pathname[lastchar] = 0;
659 if (!RemoveDirectory(pathname))
Reid Spencer05545752006-08-25 21:37:17 +0000660 return MakeErrMsg(ErrStr,
661 std::string(pathname) + ": Can't destroy directory: ");
Chris Lattner0c332312006-07-28 22:29:50 +0000662 return false;
Jeff Cohen31102892007-04-07 20:47:27 +0000663 } else {
664 // Read-only files cannot be deleted on Windows. Must remove the read-only
665 // attribute first.
666 if (fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
667 if (!SetFileAttributes(path.c_str(),
668 fi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY))
669 return MakeErrMsg(ErrStr, path + ": Can't destroy file: ");
670 }
671
672 if (!DeleteFile(path.c_str()))
673 return MakeErrMsg(ErrStr, path + ": Can't destroy file: ");
674 return false;
675 }
Reid Spencerb016a372004-09-15 05:49:50 +0000676}
677
Reid Spencer3b0cc782004-12-14 18:42:13 +0000678bool Path::getMagicNumber(std::string& Magic, unsigned len) const {
Reid Spencer3b0cc782004-12-14 18:42:13 +0000679 assert(len < 1024 && "Request for magic string too long");
680 char* buf = (char*) alloca(1 + len);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000681
682 HANDLE h = CreateFile(path.c_str(),
683 GENERIC_READ,
684 FILE_SHARE_READ,
685 NULL,
686 OPEN_EXISTING,
687 FILE_ATTRIBUTE_NORMAL,
688 NULL);
689 if (h == INVALID_HANDLE_VALUE)
Reid Spencer3b0cc782004-12-14 18:42:13 +0000690 return false;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000691
692 DWORD nRead = 0;
693 BOOL ret = ReadFile(h, buf, len, &nRead, NULL);
694 CloseHandle(h);
695
696 if (!ret || nRead != len)
Reid Spencer3b0cc782004-12-14 18:42:13 +0000697 return false;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000698
Reid Spencer3b0cc782004-12-14 18:42:13 +0000699 buf[len] = '\0';
700 Magic = buf;
701 return true;
702}
703
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000704bool
Reid Spencer5a060772006-08-23 07:30:48 +0000705Path::renamePathOnDisk(const Path& newName, std::string* ErrMsg) {
Jeff Cohene564de22006-05-07 02:51:51 +0000706 if (!MoveFileEx(path.c_str(), newName.c_str(), MOVEFILE_REPLACE_EXISTING))
Reid Spencer5a060772006-08-23 07:30:48 +0000707 return MakeErrMsg(ErrMsg, "Can't move '" + path + "' to '" + newName.path
708 + "': ");
Nick Lewycky5c632e92008-05-06 03:42:21 +0000709 return false;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000710}
711
712bool
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000713Path::setStatusInfoOnDisk(const FileStatus &si, std::string *ErrMsg) const {
Jeff Cohen966fa412005-07-09 18:42:49 +0000714 // FIXME: should work on directories also.
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000715 if (!si.isFile) {
716 return true;
717 }
718
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000719 HANDLE h = CreateFile(path.c_str(),
720 FILE_READ_ATTRIBUTES | FILE_WRITE_ATTRIBUTES,
721 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
Jeff Cohend40a7de2004-12-31 05:07:26 +0000722 NULL,
723 OPEN_EXISTING,
724 FILE_ATTRIBUTE_NORMAL,
725 NULL);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000726 if (h == INVALID_HANDLE_VALUE)
Chris Lattner1bebfb52006-07-28 22:36:17 +0000727 return true;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000728
729 BY_HANDLE_FILE_INFORMATION bhfi;
730 if (!GetFileInformationByHandle(h, &bhfi)) {
Jeff Cohen51b8d212004-12-31 19:01:08 +0000731 DWORD err = GetLastError();
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000732 CloseHandle(h);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000733 SetLastError(err);
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000734 return MakeErrMsg(ErrMsg, path + ": GetFileInformationByHandle: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000735 }
736
737 FILETIME ft;
738 (uint64_t&)ft = si.modTime.toWin32Time();
739 BOOL ret = SetFileTime(h, NULL, &ft, &ft);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000740 DWORD err = GetLastError();
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000741 CloseHandle(h);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000742 if (!ret) {
743 SetLastError(err);
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000744 return MakeErrMsg(ErrMsg, path + ": SetFileTime: ");
Jeff Cohen51b8d212004-12-31 19:01:08 +0000745 }
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000746
747 // Best we can do with Unix permission bits is to interpret the owner
748 // writable bit.
749 if (si.mode & 0200) {
750 if (bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
751 if (!SetFileAttributes(path.c_str(),
Jeff Cohend40a7de2004-12-31 05:07:26 +0000752 bhfi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY))
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000753 return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000754 }
755 } else {
756 if (!(bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY)) {
757 if (!SetFileAttributes(path.c_str(),
Jeff Cohend40a7de2004-12-31 05:07:26 +0000758 bhfi.dwFileAttributes | FILE_ATTRIBUTE_READONLY))
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000759 return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000760 }
761 }
762
Chris Lattner1bebfb52006-07-28 22:36:17 +0000763 return false;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000764}
765
Reid Spencer30300992006-08-24 18:58:37 +0000766bool
767CopyFile(const sys::Path &Dest, const sys::Path &Src, std::string* ErrMsg) {
Jeff Cohencb652552004-12-24 02:38:34 +0000768 // Can't use CopyFile macro defined in Windows.h because it would mess up the
769 // above line. We use the expansion it would have in a non-UNICODE build.
770 if (!::CopyFileA(Src.c_str(), Dest.c_str(), false))
Reid Spencer30300992006-08-24 18:58:37 +0000771 return MakeErrMsg(ErrMsg, "Can't copy '" + Src.toString() +
Jeff Cohend40a7de2004-12-31 05:07:26 +0000772 "' to '" + Dest.toString() + "': ");
Reid Spencer30300992006-08-24 18:58:37 +0000773 return false;
Reid Spencerc29befb2004-12-15 01:50:13 +0000774}
775
Reid Spencer30300992006-08-24 18:58:37 +0000776bool
777Path::makeUnique(bool reuse_current, std::string* ErrMsg) {
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000778 if (reuse_current && !exists())
Reid Spencer30300992006-08-24 18:58:37 +0000779 return false; // File doesn't exist already, just use it!
Reid Spencerc29befb2004-12-15 01:50:13 +0000780
Jeff Cohen9437bb62005-01-27 03:49:03 +0000781 // Reserve space for -XXXXXX at the end.
782 char *FNBuffer = (char*) alloca(path.size()+8);
783 unsigned offset = path.size();
784 path.copy(FNBuffer, offset);
Reid Spencerc29befb2004-12-15 01:50:13 +0000785
Jeff Cohen966fa412005-07-09 18:42:49 +0000786 // Find a numeric suffix that isn't used by an existing file. Assume there
787 // won't be more than 1 million files with the same prefix. Probably a safe
788 // bet.
Jeff Cohen9437bb62005-01-27 03:49:03 +0000789 static unsigned FCounter = 0;
790 do {
791 sprintf(FNBuffer+offset, "-%06u", FCounter);
792 if (++FCounter > 999999)
793 FCounter = 0;
794 path = FNBuffer;
795 } while (exists());
Reid Spencer30300992006-08-24 18:58:37 +0000796 return false;
Reid Spencerc29befb2004-12-15 01:50:13 +0000797}
798
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000799bool
Reid Spencer30300992006-08-24 18:58:37 +0000800Path::createTemporaryFileOnDisk(bool reuse_current, std::string* ErrMsg) {
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000801 // Make this into a unique file name
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000802 makeUnique(reuse_current, ErrMsg);
Jeff Cohen9437bb62005-01-27 03:49:03 +0000803
804 // Now go and create it
805 HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW,
806 FILE_ATTRIBUTE_NORMAL, NULL);
807 if (h == INVALID_HANDLE_VALUE)
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000808 return MakeErrMsg(ErrMsg, path + ": can't create file");
Jeff Cohen9437bb62005-01-27 03:49:03 +0000809
810 CloseHandle(h);
Reid Spencer30300992006-08-24 18:58:37 +0000811 return false;
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000812}
813
Chris Lattner799ed102008-04-01 06:00:12 +0000814/// MapInFilePages - Not yet implemented on win32.
815const char *Path::MapInFilePages(int FD, uint64_t FileSize) {
816 return 0;
817}
818
819/// MapInFilePages - Not yet implemented on win32.
820void Path::UnMapFilePages(const char *Base, uint64_t FileSize) {
821 assert(0 && "NOT IMPLEMENTED");
822}
823
Reid Spencerb016a372004-09-15 05:49:50 +0000824}
Reid Spencercbad7012004-09-11 04:59:30 +0000825}