blob: 683c94bba44eea5a40303ba549a8095c197fb787 [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
Chris Lattner88d7e402009-06-15 04:17:07 +0000128bool
129Path::isAbsolute(const char *NameStart, unsigned NameLen) {
130 assert(NameStart);
131 switch (NameLen) {
132 case 0:
133 return false;
134 case 1:
135 case 2:
136 return NameStart[0] == '/';
137 default:
138 return NameStart[0] == '/' || (NameStart[1] == ':' && NameStart[2] == '/');
139 }
140}
141
Reid Spencer69cce812007-03-29 16:43:20 +0000142bool
143Path::isAbsolute() const {
Jeff Cohen84892be2007-03-29 17:27:38 +0000144 switch (path.length()) {
145 case 0:
146 return false;
147 case 1:
148 case 2:
149 return path[0] == '/';
150 default:
151 return path[0] == '/' || (path[1] == ':' && path[2] == '/');
152 }
Reid Spencer69cce812007-03-29 16:43:20 +0000153}
154
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000155static Path *TempDirectory = NULL;
156
Reid Spencerb016a372004-09-15 05:49:50 +0000157Path
Reid Spencercab0e432006-08-22 22:46:39 +0000158Path::GetTemporaryDirectory(std::string* ErrMsg) {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000159 if (TempDirectory)
160 return *TempDirectory;
161
162 char pathname[MAX_PATH];
Reid Spencercab0e432006-08-22 22:46:39 +0000163 if (!GetTempPath(MAX_PATH, pathname)) {
164 if (ErrMsg)
165 *ErrMsg = "Can't determine temporary directory";
166 return Path();
167 }
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000168
Reid Spencerb016a372004-09-15 05:49:50 +0000169 Path result;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000170 result.set(pathname);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000171
172 // Append a subdirectory passed on our process id so multiple LLVMs don't
173 // step on each other's toes.
Jeff Cohend41b30d2006-11-05 19:31:28 +0000174#ifdef __MINGW32__
175 // Mingw's Win32 header files are broken.
Reid Spencerab4d9b02006-06-08 18:08:43 +0000176 sprintf(pathname, "LLVM_%u", unsigned(GetCurrentProcessId()));
Jeff Cohend41b30d2006-11-05 19:31:28 +0000177#else
178 sprintf(pathname, "LLVM_%u", GetCurrentProcessId());
179#endif
Jeff Cohenedb9d6b2005-07-08 02:48:42 +0000180 result.appendComponent(pathname);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000181
182 // If there's a directory left over from a previous LLVM execution that
183 // happened to have the same process id, get rid of it.
Reid Spencera229c5c2005-07-08 03:08:58 +0000184 result.eraseFromDisk(true);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000185
186 // And finally (re-)create the empty directory.
Reid Spencera229c5c2005-07-08 03:08:58 +0000187 result.createDirectoryOnDisk(false);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000188 TempDirectory = new Path(result);
189 return *TempDirectory;
Reid Spencerb016a372004-09-15 05:49:50 +0000190}
191
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000192// FIXME: the following set of functions don't map to Windows very well.
Reid Spencerb016a372004-09-15 05:49:50 +0000193Path
194Path::GetRootDirectory() {
195 Path result;
Jeff Cohen966fa412005-07-09 18:42:49 +0000196 result.set("C:/");
Reid Spencerb016a372004-09-15 05:49:50 +0000197 return result;
198}
199
Jeff Cohen85c716f2005-07-08 05:02:13 +0000200void
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000201Path::GetSystemLibraryPaths(std::vector<sys::Path>& Paths) {
Jeff Cohen966fa412005-07-09 18:42:49 +0000202 Paths.push_back(sys::Path("C:/WINDOWS/SYSTEM32"));
203 Paths.push_back(sys::Path("C:/WINDOWS"));
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000204}
205
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000206void
Gabor Greifdb5565a2007-07-06 20:28:40 +0000207Path::GetBitcodeLibraryPaths(std::vector<sys::Path>& Paths) {
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000208 char * env_var = getenv("LLVM_LIB_SEARCH_PATH");
209 if (env_var != 0) {
210 getPathList(env_var,Paths);
211 }
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000212#ifdef LLVM_LIBDIR
213 {
214 Path tmpPath;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000215 if (tmpPath.set(LLVM_LIBDIR))
Reid Spencerc7f08322005-07-07 18:21:42 +0000216 if (tmpPath.canRead())
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000217 Paths.push_back(tmpPath);
218 }
219#endif
220 GetSystemLibraryPaths(Paths);
Reid Spencerb016a372004-09-15 05:49:50 +0000221}
222
223Path
224Path::GetLLVMDefaultConfigDir() {
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000225 // TODO: this isn't going to fly on Windows
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000226 return Path("/etc/llvm");
Reid Spencerb016a372004-09-15 05:49:50 +0000227}
228
229Path
Reid Spencerb016a372004-09-15 05:49:50 +0000230Path::GetUserHomeDirectory() {
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000231 // TODO: Typical Windows setup doesn't define HOME.
Reid Spencerb016a372004-09-15 05:49:50 +0000232 const char* home = getenv("HOME");
233 if (home) {
234 Path result;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000235 if (result.set(home))
Reid Spencerb016a372004-09-15 05:49:50 +0000236 return result;
237 }
238 return GetRootDirectory();
239}
Ted Kremenek79200782007-12-18 22:07:33 +0000240
241Path
242Path::GetCurrentDirectory() {
243 char pathname[MAX_PATH];
Anton Korobeynikov64ddbe42007-12-22 14:26:49 +0000244 ::GetCurrentDirectoryA(MAX_PATH,pathname);
Ted Kremenek79200782007-12-18 22:07:33 +0000245 return Path(pathname);
246}
247
Chris Lattner1a091442008-03-03 02:55:43 +0000248/// GetMainExecutable - Return the path to the main executable, given the
249/// value of argv[0] from program startup.
250Path Path::GetMainExecutable(const char *argv0, void *MainAddr) {
Chris Lattnerc5718d02009-06-15 05:38:04 +0000251 char pathname[MAX_PATH];
252 DWORD ret = ::GetModuleFileNameA(NULL, pathname, MAX_PATH);
253 return ret != MAX_PATH ? Path(pathname) : Path();
Chris Lattner1a091442008-03-03 02:55:43 +0000254}
255
Ted Kremenek79200782007-12-18 22:07:33 +0000256
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000257// FIXME: the above set of functions don't map to Windows very well.
258
Jeff Cohen966fa412005-07-09 18:42:49 +0000259
260bool
261Path::isRootDirectory() const {
262 size_t len = path.size();
263 return len > 0 && path[len-1] == '/';
Reid Spencera229c5c2005-07-08 03:08:58 +0000264}
265
Ted Kremenek9b01cc02008-04-07 22:01:32 +0000266std::string Path::getDirname() const {
Nick Lewyckyfff116f2008-05-11 17:37:40 +0000267 return getDirnameCharSep(path, '/');
Ted Kremenek9b01cc02008-04-07 22:01:32 +0000268}
Ted Kremenekcf55c8e2008-04-07 21:53:57 +0000269
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000270std::string
Reid Spencer07adb282004-11-05 22:15:36 +0000271Path::getBasename() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000272 // Find the last slash
273 size_t slash = path.rfind('/');
274 if (slash == std::string::npos)
275 slash = 0;
276 else
277 slash++;
278
Jeff Cohen966fa412005-07-09 18:42:49 +0000279 size_t dot = path.rfind('.');
280 if (dot == std::string::npos || dot < slash)
281 return path.substr(slash);
282 else
283 return path.substr(slash, dot - slash);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000284}
285
Argyrios Kyrtzidisfc199882008-06-15 15:15:19 +0000286std::string
287Path::getSuffix() const {
288 // Find the last slash
289 size_t slash = path.rfind('/');
290 if (slash == std::string::npos)
291 slash = 0;
292 else
293 slash++;
294
295 size_t dot = path.rfind('.');
296 if (dot == std::string::npos || dot < slash)
297 return std::string();
298 else
299 return path.substr(dot + 1);
300}
301
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000302bool
Reid Spencerb016a372004-09-15 05:49:50 +0000303Path::exists() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000304 DWORD attr = GetFileAttributes(path.c_str());
305 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000306}
307
308bool
Ted Kremenekfd527112007-12-18 19:46:22 +0000309Path::isDirectory() const {
310 DWORD attr = GetFileAttributes(path.c_str());
311 return (attr != INVALID_FILE_ATTRIBUTES) &&
312 (attr & FILE_ATTRIBUTE_DIRECTORY);
313}
314
315bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000316Path::canRead() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000317 // FIXME: take security attributes into account.
318 DWORD attr = GetFileAttributes(path.c_str());
319 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000320}
321
322bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000323Path::canWrite() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000324 // FIXME: take security attributes into account.
325 DWORD attr = GetFileAttributes(path.c_str());
326 return (attr != INVALID_FILE_ATTRIBUTES) && !(attr & FILE_ATTRIBUTE_READONLY);
Reid Spencerb016a372004-09-15 05:49:50 +0000327}
328
329bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000330Path::canExecute() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000331 // FIXME: take security attributes into account.
332 DWORD attr = GetFileAttributes(path.c_str());
333 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000334}
335
336std::string
337Path::getLast() const {
338 // Find the last slash
339 size_t pos = path.rfind('/');
340
341 // Handle the corner cases
342 if (pos == std::string::npos)
343 return path;
344
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000345 // If the last character is a slash, we have a root directory
346 if (pos == path.length()-1)
347 return path;
348
Reid Spencerb016a372004-09-15 05:49:50 +0000349 // Return everything after the last slash
350 return path.substr(pos+1);
351}
352
Reid Spencer8475ec02007-03-29 19:05:44 +0000353const FileStatus *
Reid Spencer2ae9d112007-04-07 18:52:17 +0000354PathWithStatus::getFileStatus(bool update, std::string *ErrStr) const {
355 if (!fsIsValid || update) {
Reid Spencer69cce812007-03-29 16:43:20 +0000356 WIN32_FILE_ATTRIBUTE_DATA fi;
Reid Spencer8475ec02007-03-29 19:05:44 +0000357 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) {
358 MakeErrMsg(ErrStr, "getStatusInfo():" + std::string(path) +
Reid Spencer69cce812007-03-29 16:43:20 +0000359 ": Can't get status: ");
Reid Spencer8475ec02007-03-29 19:05:44 +0000360 return 0;
361 }
Jeff Cohen626e38e2004-12-14 05:26:43 +0000362
Reid Spencer2ae9d112007-04-07 18:52:17 +0000363 status.fileSize = fi.nFileSizeHigh;
364 status.fileSize <<= sizeof(fi.nFileSizeHigh)*8;
365 status.fileSize += fi.nFileSizeLow;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000366
Reid Spencer2ae9d112007-04-07 18:52:17 +0000367 status.mode = fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY ? 0555 : 0777;
368 status.user = 9999; // Not applicable to Windows, so...
369 status.group = 9999; // Not applicable to Windows, so...
Jeff Cohen626e38e2004-12-14 05:26:43 +0000370
Reid Spencer4031bef2007-03-29 17:00:31 +0000371 // FIXME: this is only unique if the file is accessed by the same file path.
372 // How do we do this for C:\dir\file and ..\dir\file ? Unix has inode
373 // numbers, but the concept doesn't exist in Windows.
Reid Spencer2ae9d112007-04-07 18:52:17 +0000374 status.uniqueID = 0;
Reid Spencer4031bef2007-03-29 17:00:31 +0000375 for (unsigned i = 0; i < path.length(); ++i)
Reid Spencer2ae9d112007-04-07 18:52:17 +0000376 status.uniqueID += path[i];
Reid Spencer4031bef2007-03-29 17:00:31 +0000377
Reid Spencer69cce812007-03-29 16:43:20 +0000378 __int64 ft = *reinterpret_cast<__int64*>(&fi.ftLastWriteTime);
Reid Spencer2ae9d112007-04-07 18:52:17 +0000379 status.modTime.fromWin32Time(ft);
Reid Spencer69cce812007-03-29 16:43:20 +0000380
Reid Spencer2ae9d112007-04-07 18:52:17 +0000381 status.isDir = fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY;
382 fsIsValid = true;
Reid Spencer69cce812007-03-29 16:43:20 +0000383 }
Reid Spencer2ae9d112007-04-07 18:52:17 +0000384 return &status;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000385}
386
Reid Spencera34a1572006-08-22 23:54:35 +0000387bool Path::makeReadableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000388 // All files are readable on Windows (ignoring security attributes).
Reid Spencera34a1572006-08-22 23:54:35 +0000389 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000390}
391
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000392bool Path::makeWriteableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000393 DWORD attr = GetFileAttributes(path.c_str());
394
395 // If it doesn't exist, we're done.
396 if (attr == INVALID_FILE_ATTRIBUTES)
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000397 return false;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000398
399 if (attr & FILE_ATTRIBUTE_READONLY) {
Reid Spencera34a1572006-08-22 23:54:35 +0000400 if (!SetFileAttributes(path.c_str(), attr & ~FILE_ATTRIBUTE_READONLY)) {
401 MakeErrMsg(ErrMsg, std::string(path) + ": Can't make file writable: ");
402 return true;
403 }
Jeff Cohen626e38e2004-12-14 05:26:43 +0000404 }
Reid Spencera34a1572006-08-22 23:54:35 +0000405 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000406}
407
Reid Spencera34a1572006-08-22 23:54:35 +0000408bool Path::makeExecutableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000409 // All files are executable on Windows (ignoring security attributes).
Reid Spencera34a1572006-08-22 23:54:35 +0000410 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000411}
412
Reid Spencerb016a372004-09-15 05:49:50 +0000413bool
Reid Spencer142ca8e2006-08-23 06:56:27 +0000414Path::getDirectoryContents(std::set<Path>& result, std::string* ErrMsg) const {
Jeff Cohen31102892007-04-07 20:47:27 +0000415 WIN32_FILE_ATTRIBUTE_DATA fi;
416 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) {
417 MakeErrMsg(ErrMsg, path + ": can't get status of file");
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000418 return true;
Jeff Cohen31102892007-04-07 20:47:27 +0000419 }
420
421 if (!(fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) {
422 if (ErrMsg)
423 *ErrMsg = path + ": not a directory";
Reid Spencer142ca8e2006-08-23 06:56:27 +0000424 return true;
425 }
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000426
427 result.clear();
428 WIN32_FIND_DATA fd;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000429 std::string searchpath = path;
430 if (path.size() == 0 || searchpath[path.size()-1] == '/')
Jeff Cohen85c716f2005-07-08 05:02:13 +0000431 searchpath += "*";
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000432 else
433 searchpath += "/*";
Jeff Cohen85c716f2005-07-08 05:02:13 +0000434
Jeff Cohen9437bb62005-01-27 03:49:03 +0000435 HANDLE h = FindFirstFile(searchpath.c_str(), &fd);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000436 if (h == INVALID_HANDLE_VALUE) {
Jeff Cohen9437bb62005-01-27 03:49:03 +0000437 if (GetLastError() == ERROR_FILE_NOT_FOUND)
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000438 return true; // not really an error, now is it?
Reid Spencer142ca8e2006-08-23 06:56:27 +0000439 MakeErrMsg(ErrMsg, path + ": Can't read directory: ");
440 return true;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000441 }
442
443 do {
Jeff Cohend40a7de2004-12-31 05:07:26 +0000444 if (fd.cFileName[0] == '.')
445 continue;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000446 Path aPath(path);
447 aPath.appendComponent(&fd.cFileName[0]);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000448 result.insert(aPath);
449 } while (FindNextFile(h, &fd));
450
Jeff Cohen51b8d212004-12-31 19:01:08 +0000451 DWORD err = GetLastError();
452 FindClose(h);
453 if (err != ERROR_NO_MORE_FILES) {
454 SetLastError(err);
Reid Spencer142ca8e2006-08-23 06:56:27 +0000455 MakeErrMsg(ErrMsg, path + ": Can't read directory: ");
456 return true;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000457 }
Reid Spencer142ca8e2006-08-23 06:56:27 +0000458 return false;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000459}
460
461bool
Reid Spencer1cf2d042005-07-07 23:35:23 +0000462Path::set(const std::string& a_path) {
Dan Gohman30359592008-01-29 13:02:09 +0000463 if (a_path.empty())
Reid Spencerb016a372004-09-15 05:49:50 +0000464 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000465 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000466 path = a_path;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000467 FlipBackSlashes(path);
Reid Spencer07adb282004-11-05 22:15:36 +0000468 if (!isValid()) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000469 path = save;
Reid Spencerb016a372004-09-15 05:49:50 +0000470 return false;
471 }
472 return true;
473}
474
475bool
Jeff Cohenedb9d6b2005-07-08 02:48:42 +0000476Path::appendComponent(const std::string& name) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000477 if (name.empty())
Reid Spencerb016a372004-09-15 05:49:50 +0000478 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000479 std::string save(path);
480 if (!path.empty()) {
481 size_t last = path.size() - 1;
Jeff Cohen85c716f2005-07-08 05:02:13 +0000482 if (path[last] != '/')
Reid Spencer1cf2d042005-07-07 23:35:23 +0000483 path += '/';
484 }
485 path += name;
Reid Spencer07adb282004-11-05 22:15:36 +0000486 if (!isValid()) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000487 path = save;
Reid Spencerb016a372004-09-15 05:49:50 +0000488 return false;
489 }
490 return true;
491}
492
493bool
Reid Spencer1cf2d042005-07-07 23:35:23 +0000494Path::eraseComponent() {
Reid Spencerb016a372004-09-15 05:49:50 +0000495 size_t slashpos = path.rfind('/',path.size());
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000496 if (slashpos == path.size() - 1 || slashpos == std::string::npos)
Reid Spencerb016a372004-09-15 05:49:50 +0000497 return false;
Jeff Cohen966fa412005-07-09 18:42:49 +0000498 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000499 path.erase(slashpos);
Jeff Cohen966fa412005-07-09 18:42:49 +0000500 if (!isValid()) {
501 path = save;
502 return false;
503 }
Reid Spencerb016a372004-09-15 05:49:50 +0000504 return true;
505}
506
507bool
Reid Spencer07adb282004-11-05 22:15:36 +0000508Path::appendSuffix(const std::string& suffix) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000509 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000510 path.append(".");
511 path.append(suffix);
Reid Spencer07adb282004-11-05 22:15:36 +0000512 if (!isValid()) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000513 path = save;
Reid Spencerb016a372004-09-15 05:49:50 +0000514 return false;
515 }
516 return true;
517}
518
519bool
Reid Spencer1cf2d042005-07-07 23:35:23 +0000520Path::eraseSuffix() {
Reid Spencerb016a372004-09-15 05:49:50 +0000521 size_t dotpos = path.rfind('.',path.size());
522 size_t slashpos = path.rfind('/',path.size());
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000523 if (dotpos != std::string::npos) {
Jeff Cohen966fa412005-07-09 18:42:49 +0000524 if (slashpos == std::string::npos || dotpos > slashpos+1) {
525 std::string save(path);
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000526 path.erase(dotpos, path.size()-dotpos);
Jeff Cohen966fa412005-07-09 18:42:49 +0000527 if (!isValid()) {
528 path = save;
529 return false;
530 }
Jeff Cohen85c716f2005-07-08 05:02:13 +0000531 return true;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000532 }
Reid Spencerb016a372004-09-15 05:49:50 +0000533 }
534 return false;
535}
536
Reid Spencer30300992006-08-24 18:58:37 +0000537inline bool PathMsg(std::string* ErrMsg, const char* pathname, const char*msg) {
538 if (ErrMsg)
539 *ErrMsg = std::string(pathname) + ": " + std::string(msg);
540 return true;
541}
542
Reid Spencerb016a372004-09-15 05:49:50 +0000543bool
Reid Spencer30300992006-08-24 18:58:37 +0000544Path::createDirectoryOnDisk(bool create_parents, std::string* ErrMsg) {
Reid Spencerb016a372004-09-15 05:49:50 +0000545 // Get a writeable copy of the path name
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000546 size_t len = path.length();
547 char *pathname = reinterpret_cast<char *>(_alloca(len+2));
548 path.copy(pathname, len);
549 pathname[len] = 0;
Jeff Cohen85c716f2005-07-08 05:02:13 +0000550
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000551 // Make sure it ends with a slash.
552 if (len == 0 || pathname[len - 1] != '/') {
553 pathname[len] = '/';
554 pathname[++len] = 0;
555 }
Reid Spencerb016a372004-09-15 05:49:50 +0000556
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000557 // Determine starting point for initial / search.
558 char *next = pathname;
559 if (pathname[0] == '/' && pathname[1] == '/') {
560 // Skip host name.
561 next = strchr(pathname+2, '/');
562 if (next == NULL)
Reid Spencer30300992006-08-24 18:58:37 +0000563 return PathMsg(ErrMsg, pathname, "badly formed remote directory");
564
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000565 // Skip share name.
566 next = strchr(next+1, '/');
567 if (next == NULL)
Reid Spencer30300992006-08-24 18:58:37 +0000568 return PathMsg(ErrMsg, pathname,"badly formed remote directory");
569
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000570 next++;
571 if (*next == 0)
Reid Spencer30300992006-08-24 18:58:37 +0000572 return PathMsg(ErrMsg, pathname, "badly formed remote directory");
573
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000574 } else {
575 if (pathname[1] == ':')
576 next += 2; // skip drive letter
577 if (*next == '/')
578 next++; // skip root directory
579 }
Reid Spencerb016a372004-09-15 05:49:50 +0000580
581 // If we're supposed to create intermediate directories
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000582 if (create_parents) {
Reid Spencerb016a372004-09-15 05:49:50 +0000583 // Loop through the directory components until we're done
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000584 while (*next) {
585 next = strchr(next, '/');
Reid Spencerb016a372004-09-15 05:49:50 +0000586 *next = 0;
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000587 if (!CreateDirectory(pathname, NULL))
Reid Spencer30300992006-08-24 18:58:37 +0000588 return MakeErrMsg(ErrMsg,
589 std::string(pathname) + ": Can't create directory: ");
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000590 *next++ = '/';
Reid Spencerb016a372004-09-15 05:49:50 +0000591 }
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000592 } else {
593 // Drop trailing slash.
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000594 pathname[len-1] = 0;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000595 if (!CreateDirectory(pathname, NULL)) {
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000596 return MakeErrMsg(ErrMsg, std::string(pathname) + ": Can't create directory: ");
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000597 }
Reid Spencerb016a372004-09-15 05:49:50 +0000598 }
Reid Spencer30300992006-08-24 18:58:37 +0000599 return false;
Reid Spencerb016a372004-09-15 05:49:50 +0000600}
601
602bool
Reid Spencer30300992006-08-24 18:58:37 +0000603Path::createFileOnDisk(std::string* ErrMsg) {
Reid Spencerb016a372004-09-15 05:49:50 +0000604 // Create the file
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000605 HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW,
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000606 FILE_ATTRIBUTE_NORMAL, NULL);
607 if (h == INVALID_HANDLE_VALUE)
Reid Spencer30300992006-08-24 18:58:37 +0000608 return MakeErrMsg(ErrMsg, path + ": Can't create file: ");
Reid Spencerb016a372004-09-15 05:49:50 +0000609
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000610 CloseHandle(h);
Reid Spencer30300992006-08-24 18:58:37 +0000611 return false;
Reid Spencerb016a372004-09-15 05:49:50 +0000612}
613
614bool
Chris Lattner0c332312006-07-28 22:29:50 +0000615Path::eraseFromDisk(bool remove_contents, std::string *ErrStr) const {
Jeff Cohen31102892007-04-07 20:47:27 +0000616 WIN32_FILE_ATTRIBUTE_DATA fi;
617 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi))
618 return true;
Chris Lattnerc7c453a2006-08-01 17:51:09 +0000619
Jeff Cohen31102892007-04-07 20:47:27 +0000620 if (fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000621 // If it doesn't exist, we're done.
Jeff Cohen85c716f2005-07-08 05:02:13 +0000622 if (!exists())
Chris Lattner0c332312006-07-28 22:29:50 +0000623 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000624
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000625 char *pathname = reinterpret_cast<char *>(_alloca(path.length()+3));
Reid Spencer1cf2d042005-07-07 23:35:23 +0000626 int lastchar = path.length() - 1 ;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000627 path.copy(pathname, lastchar+1);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000628
629 // Make path end with '/*'.
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000630 if (pathname[lastchar] != '/')
631 pathname[++lastchar] = '/';
Reid Spencer1cf2d042005-07-07 23:35:23 +0000632 pathname[lastchar+1] = '*';
633 pathname[lastchar+2] = 0;
634
635 if (remove_contents) {
636 WIN32_FIND_DATA fd;
637 HANDLE h = FindFirstFile(pathname, &fd);
638
639 // It's a bad idea to alter the contents of a directory while enumerating
640 // its contents. So build a list of its contents first, then destroy them.
641
642 if (h != INVALID_HANDLE_VALUE) {
643 std::vector<Path> list;
644
645 do {
646 if (strcmp(fd.cFileName, ".") == 0)
647 continue;
648 if (strcmp(fd.cFileName, "..") == 0)
649 continue;
650
Jeff Cohen85c716f2005-07-08 05:02:13 +0000651 Path aPath(path);
652 aPath.appendComponent(&fd.cFileName[0]);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000653 list.push_back(aPath);
654 } while (FindNextFile(h, &fd));
655
656 DWORD err = GetLastError();
657 FindClose(h);
658 if (err != ERROR_NO_MORE_FILES) {
659 SetLastError(err);
Reid Spencer05545752006-08-25 21:37:17 +0000660 return MakeErrMsg(ErrStr, path + ": Can't read directory: ");
Reid Spencer1cf2d042005-07-07 23:35:23 +0000661 }
662
Jeff Cohen85c716f2005-07-08 05:02:13 +0000663 for (std::vector<Path>::iterator I = list.begin(); I != list.end();
Reid Spencer1cf2d042005-07-07 23:35:23 +0000664 ++I) {
665 Path &aPath = *I;
Reid Spencera229c5c2005-07-08 03:08:58 +0000666 aPath.eraseFromDisk(true);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000667 }
668 } else {
669 if (GetLastError() != ERROR_FILE_NOT_FOUND)
Reid Spencer05545752006-08-25 21:37:17 +0000670 return MakeErrMsg(ErrStr, path + ": Can't read directory: ");
Reid Spencer1cf2d042005-07-07 23:35:23 +0000671 }
672 }
673
674 pathname[lastchar] = 0;
675 if (!RemoveDirectory(pathname))
Reid Spencer05545752006-08-25 21:37:17 +0000676 return MakeErrMsg(ErrStr,
677 std::string(pathname) + ": Can't destroy directory: ");
Chris Lattner0c332312006-07-28 22:29:50 +0000678 return false;
Jeff Cohen31102892007-04-07 20:47:27 +0000679 } else {
680 // Read-only files cannot be deleted on Windows. Must remove the read-only
681 // attribute first.
682 if (fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
683 if (!SetFileAttributes(path.c_str(),
684 fi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY))
685 return MakeErrMsg(ErrStr, path + ": Can't destroy file: ");
686 }
687
688 if (!DeleteFile(path.c_str()))
689 return MakeErrMsg(ErrStr, path + ": Can't destroy file: ");
690 return false;
691 }
Reid Spencerb016a372004-09-15 05:49:50 +0000692}
693
Reid Spencer3b0cc782004-12-14 18:42:13 +0000694bool Path::getMagicNumber(std::string& Magic, unsigned len) const {
Reid Spencer3b0cc782004-12-14 18:42:13 +0000695 assert(len < 1024 && "Request for magic string too long");
696 char* buf = (char*) alloca(1 + len);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000697
698 HANDLE h = CreateFile(path.c_str(),
699 GENERIC_READ,
700 FILE_SHARE_READ,
701 NULL,
702 OPEN_EXISTING,
703 FILE_ATTRIBUTE_NORMAL,
704 NULL);
705 if (h == INVALID_HANDLE_VALUE)
Reid Spencer3b0cc782004-12-14 18:42:13 +0000706 return false;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000707
708 DWORD nRead = 0;
709 BOOL ret = ReadFile(h, buf, len, &nRead, NULL);
710 CloseHandle(h);
711
712 if (!ret || nRead != len)
Reid Spencer3b0cc782004-12-14 18:42:13 +0000713 return false;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000714
Reid Spencer3b0cc782004-12-14 18:42:13 +0000715 buf[len] = '\0';
716 Magic = buf;
717 return true;
718}
719
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000720bool
Reid Spencer5a060772006-08-23 07:30:48 +0000721Path::renamePathOnDisk(const Path& newName, std::string* ErrMsg) {
Jeff Cohene564de22006-05-07 02:51:51 +0000722 if (!MoveFileEx(path.c_str(), newName.c_str(), MOVEFILE_REPLACE_EXISTING))
Reid Spencer5a060772006-08-23 07:30:48 +0000723 return MakeErrMsg(ErrMsg, "Can't move '" + path + "' to '" + newName.path
724 + "': ");
Nick Lewycky5c632e92008-05-06 03:42:21 +0000725 return false;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000726}
727
728bool
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000729Path::setStatusInfoOnDisk(const FileStatus &si, std::string *ErrMsg) const {
Jeff Cohen966fa412005-07-09 18:42:49 +0000730 // FIXME: should work on directories also.
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000731 if (!si.isFile) {
732 return true;
733 }
734
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000735 HANDLE h = CreateFile(path.c_str(),
736 FILE_READ_ATTRIBUTES | FILE_WRITE_ATTRIBUTES,
737 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
Jeff Cohend40a7de2004-12-31 05:07:26 +0000738 NULL,
739 OPEN_EXISTING,
740 FILE_ATTRIBUTE_NORMAL,
741 NULL);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000742 if (h == INVALID_HANDLE_VALUE)
Chris Lattner1bebfb52006-07-28 22:36:17 +0000743 return true;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000744
745 BY_HANDLE_FILE_INFORMATION bhfi;
746 if (!GetFileInformationByHandle(h, &bhfi)) {
Jeff Cohen51b8d212004-12-31 19:01:08 +0000747 DWORD err = GetLastError();
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000748 CloseHandle(h);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000749 SetLastError(err);
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000750 return MakeErrMsg(ErrMsg, path + ": GetFileInformationByHandle: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000751 }
752
753 FILETIME ft;
754 (uint64_t&)ft = si.modTime.toWin32Time();
755 BOOL ret = SetFileTime(h, NULL, &ft, &ft);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000756 DWORD err = GetLastError();
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000757 CloseHandle(h);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000758 if (!ret) {
759 SetLastError(err);
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000760 return MakeErrMsg(ErrMsg, path + ": SetFileTime: ");
Jeff Cohen51b8d212004-12-31 19:01:08 +0000761 }
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000762
763 // Best we can do with Unix permission bits is to interpret the owner
764 // writable bit.
765 if (si.mode & 0200) {
766 if (bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
767 if (!SetFileAttributes(path.c_str(),
Jeff Cohend40a7de2004-12-31 05:07:26 +0000768 bhfi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY))
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000769 return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000770 }
771 } else {
772 if (!(bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY)) {
773 if (!SetFileAttributes(path.c_str(),
Jeff Cohend40a7de2004-12-31 05:07:26 +0000774 bhfi.dwFileAttributes | FILE_ATTRIBUTE_READONLY))
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000775 return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000776 }
777 }
778
Chris Lattner1bebfb52006-07-28 22:36:17 +0000779 return false;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000780}
781
Reid Spencer30300992006-08-24 18:58:37 +0000782bool
783CopyFile(const sys::Path &Dest, const sys::Path &Src, std::string* ErrMsg) {
Jeff Cohencb652552004-12-24 02:38:34 +0000784 // Can't use CopyFile macro defined in Windows.h because it would mess up the
785 // above line. We use the expansion it would have in a non-UNICODE build.
786 if (!::CopyFileA(Src.c_str(), Dest.c_str(), false))
Reid Spencer30300992006-08-24 18:58:37 +0000787 return MakeErrMsg(ErrMsg, "Can't copy '" + Src.toString() +
Jeff Cohend40a7de2004-12-31 05:07:26 +0000788 "' to '" + Dest.toString() + "': ");
Reid Spencer30300992006-08-24 18:58:37 +0000789 return false;
Reid Spencerc29befb2004-12-15 01:50:13 +0000790}
791
Reid Spencer30300992006-08-24 18:58:37 +0000792bool
793Path::makeUnique(bool reuse_current, std::string* ErrMsg) {
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000794 if (reuse_current && !exists())
Reid Spencer30300992006-08-24 18:58:37 +0000795 return false; // File doesn't exist already, just use it!
Reid Spencerc29befb2004-12-15 01:50:13 +0000796
Jeff Cohen9437bb62005-01-27 03:49:03 +0000797 // Reserve space for -XXXXXX at the end.
798 char *FNBuffer = (char*) alloca(path.size()+8);
799 unsigned offset = path.size();
800 path.copy(FNBuffer, offset);
Reid Spencerc29befb2004-12-15 01:50:13 +0000801
Jeff Cohen966fa412005-07-09 18:42:49 +0000802 // Find a numeric suffix that isn't used by an existing file. Assume there
803 // won't be more than 1 million files with the same prefix. Probably a safe
804 // bet.
Jeff Cohen9437bb62005-01-27 03:49:03 +0000805 static unsigned FCounter = 0;
806 do {
807 sprintf(FNBuffer+offset, "-%06u", FCounter);
808 if (++FCounter > 999999)
809 FCounter = 0;
810 path = FNBuffer;
811 } while (exists());
Reid Spencer30300992006-08-24 18:58:37 +0000812 return false;
Reid Spencerc29befb2004-12-15 01:50:13 +0000813}
814
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000815bool
Reid Spencer30300992006-08-24 18:58:37 +0000816Path::createTemporaryFileOnDisk(bool reuse_current, std::string* ErrMsg) {
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000817 // Make this into a unique file name
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000818 makeUnique(reuse_current, ErrMsg);
Jeff Cohen9437bb62005-01-27 03:49:03 +0000819
820 // Now go and create it
821 HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW,
822 FILE_ATTRIBUTE_NORMAL, NULL);
823 if (h == INVALID_HANDLE_VALUE)
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000824 return MakeErrMsg(ErrMsg, path + ": can't create file");
Jeff Cohen9437bb62005-01-27 03:49:03 +0000825
826 CloseHandle(h);
Reid Spencer30300992006-08-24 18:58:37 +0000827 return false;
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000828}
829
Chris Lattner799ed102008-04-01 06:00:12 +0000830/// MapInFilePages - Not yet implemented on win32.
831const char *Path::MapInFilePages(int FD, uint64_t FileSize) {
832 return 0;
833}
834
835/// MapInFilePages - Not yet implemented on win32.
836void Path::UnMapFilePages(const char *Base, uint64_t FileSize) {
837 assert(0 && "NOT IMPLEMENTED");
838}
839
Reid Spencerb016a372004-09-15 05:49:50 +0000840}
Reid Spencercbad7012004-09-11 04:59:30 +0000841}