blob: 8c6f3a8894476f60785b9cf707291839e30cc2db [file] [log] [blame]
Reid Spencerb016a372004-09-15 05:49:50 +00001//===- llvm/System/Linux/Path.cpp - Linux Path Implementation ---*- C++ -*-===//
2//
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 {
Reid Spencercbad7012004-09-11 04:59:30 +000047
Reid Spencerb016a372004-09-15 05:49:50 +000048bool
Reid Spencer07adb282004-11-05 22:15:36 +000049Path::isValid() const {
Reid Spencerb016a372004-09-15 05:49:50 +000050 if (path.empty())
51 return false;
Reid Spencerd0c9e0e2004-09-18 19:29:16 +000052
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000053 // If there is a colon, it must be the second character, preceded by a letter
54 // and followed by something.
55 size_t len = path.size();
56 size_t pos = path.rfind(':',len);
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000057 size_t rootslash = 0;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000058 if (pos != std::string::npos) {
59 if (pos != 1 || !isalpha(path[0]) || len < 3)
60 return false;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000061 rootslash = 2;
62 }
Jeff Cohen85c716f2005-07-08 05:02:13 +000063
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000064 // Look for a UNC path, and if found adjust our notion of the root slash.
65 if (len > 3 && path[0] == '/' && path[1] == '/') {
66 rootslash = path.find('/', 2);
67 if (rootslash == std::string::npos)
68 rootslash = 0;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000069 }
Reid Spencerd0c9e0e2004-09-18 19:29:16 +000070
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000071 // Check for illegal characters.
72 if (path.find_first_of("\\<>\"|\001\002\003\004\005\006\007\010\011\012"
73 "\013\014\015\016\017\020\021\022\023\024\025\026"
74 "\027\030\031\032\033\034\035\036\037")
75 != std::string::npos)
76 return false;
Jeff Cohen85c716f2005-07-08 05:02:13 +000077
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000078 // Remove trailing slash, unless it's a root slash.
79 if (len > rootslash+1 && path[len-1] == '/')
80 path.erase(--len);
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000081
Jeff Cohen3bbbcc12005-01-14 04:09:39 +000082 // Check each component for legality.
83 for (pos = 0; pos < len; ++pos) {
84 // A component may not end in a space.
85 if (path[pos] == ' ') {
86 if (path[pos+1] == '/' || path[pos+1] == '\0')
87 return false;
88 }
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000089
Jeff Cohen3bbbcc12005-01-14 04:09:39 +000090 // A component may not end in a period.
91 if (path[pos] == '.') {
92 if (path[pos+1] == '/' || path[pos+1] == '\0') {
93 // Unless it is the pseudo-directory "."...
94 if (pos == 0 || path[pos-1] == '/' || path[pos-1] == ':')
95 return true;
96 // or "..".
97 if (pos > 0 && path[pos-1] == '.') {
98 if (pos == 1 || path[pos-2] == '/' || path[pos-2] == ':')
99 return true;
100 }
101 return false;
102 }
103 }
104 }
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000105
106 return true;
Reid Spencercbad7012004-09-11 04:59:30 +0000107}
108
Reid Spencer69cce812007-03-29 16:43:20 +0000109bool
110Path::isAbsolute() const {
Jeff Cohen84892be2007-03-29 17:27:38 +0000111 switch (path.length()) {
112 case 0:
113 return false;
114 case 1:
115 case 2:
116 return path[0] == '/';
117 default:
118 return path[0] == '/' || (path[1] == ':' && path[2] == '/');
119 }
Reid Spencer69cce812007-03-29 16:43:20 +0000120}
121
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000122static Path *TempDirectory = NULL;
123
Reid Spencerb016a372004-09-15 05:49:50 +0000124Path
Reid Spencercab0e432006-08-22 22:46:39 +0000125Path::GetTemporaryDirectory(std::string* ErrMsg) {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000126 if (TempDirectory)
127 return *TempDirectory;
128
129 char pathname[MAX_PATH];
Reid Spencercab0e432006-08-22 22:46:39 +0000130 if (!GetTempPath(MAX_PATH, pathname)) {
131 if (ErrMsg)
132 *ErrMsg = "Can't determine temporary directory";
133 return Path();
134 }
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000135
Reid Spencerb016a372004-09-15 05:49:50 +0000136 Path result;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000137 result.set(pathname);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000138
139 // Append a subdirectory passed on our process id so multiple LLVMs don't
140 // step on each other's toes.
Jeff Cohend41b30d2006-11-05 19:31:28 +0000141#ifdef __MINGW32__
142 // Mingw's Win32 header files are broken.
Reid Spencerab4d9b02006-06-08 18:08:43 +0000143 sprintf(pathname, "LLVM_%u", unsigned(GetCurrentProcessId()));
Jeff Cohend41b30d2006-11-05 19:31:28 +0000144#else
145 sprintf(pathname, "LLVM_%u", GetCurrentProcessId());
146#endif
Jeff Cohenedb9d6b2005-07-08 02:48:42 +0000147 result.appendComponent(pathname);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000148
149 // If there's a directory left over from a previous LLVM execution that
150 // happened to have the same process id, get rid of it.
Reid Spencera229c5c2005-07-08 03:08:58 +0000151 result.eraseFromDisk(true);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000152
153 // And finally (re-)create the empty directory.
Reid Spencera229c5c2005-07-08 03:08:58 +0000154 result.createDirectoryOnDisk(false);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000155 TempDirectory = new Path(result);
156 return *TempDirectory;
Reid Spencerb016a372004-09-15 05:49:50 +0000157}
158
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000159// FIXME: the following set of functions don't map to Windows very well.
Reid Spencerb016a372004-09-15 05:49:50 +0000160Path
161Path::GetRootDirectory() {
162 Path result;
Jeff Cohen966fa412005-07-09 18:42:49 +0000163 result.set("C:/");
Reid Spencerb016a372004-09-15 05:49:50 +0000164 return result;
165}
166
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000167static void getPathList(const char*path, std::vector<sys::Path>& Paths) {
168 const char* at = path;
169 const char* delim = strchr(at, ';');
170 Path tmpPath;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000171 while (delim != 0) {
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000172 std::string tmp(at, size_t(delim-at));
Reid Spencer1cf2d042005-07-07 23:35:23 +0000173 if (tmpPath.set(tmp))
Reid Spencerc7f08322005-07-07 18:21:42 +0000174 if (tmpPath.canRead())
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000175 Paths.push_back(tmpPath);
176 at = delim + 1;
177 delim = strchr(at, ';');
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000178 }
Jeff Cohen85c716f2005-07-08 05:02:13 +0000179
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000180 if (*at != 0)
Reid Spencer1cf2d042005-07-07 23:35:23 +0000181 if (tmpPath.set(std::string(at)))
Reid Spencerc7f08322005-07-07 18:21:42 +0000182 if (tmpPath.canRead())
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000183 Paths.push_back(tmpPath);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000184}
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
234
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000235// FIXME: the above set of functions don't map to Windows very well.
236
Jeff Cohen966fa412005-07-09 18:42:49 +0000237
238bool
239Path::isRootDirectory() const {
240 size_t len = path.size();
241 return len > 0 && path[len-1] == '/';
Reid Spencera229c5c2005-07-08 03:08:58 +0000242}
243
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000244std::string
Reid Spencer07adb282004-11-05 22:15:36 +0000245Path::getBasename() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000246 // Find the last slash
247 size_t slash = path.rfind('/');
248 if (slash == std::string::npos)
249 slash = 0;
250 else
251 slash++;
252
Jeff Cohen966fa412005-07-09 18:42:49 +0000253 size_t dot = path.rfind('.');
254 if (dot == std::string::npos || dot < slash)
255 return path.substr(slash);
256 else
257 return path.substr(slash, dot - slash);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000258}
259
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000260bool
Reid Spencerb016a372004-09-15 05:49:50 +0000261Path::exists() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000262 DWORD attr = GetFileAttributes(path.c_str());
263 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000264}
265
266bool
Ted Kremenekfd527112007-12-18 19:46:22 +0000267Path::isDirectory() const {
268 DWORD attr = GetFileAttributes(path.c_str());
269 return (attr != INVALID_FILE_ATTRIBUTES) &&
270 (attr & FILE_ATTRIBUTE_DIRECTORY);
271}
272
273bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000274Path::canRead() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000275 // FIXME: take security attributes into account.
276 DWORD attr = GetFileAttributes(path.c_str());
277 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000278}
279
280bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000281Path::canWrite() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000282 // FIXME: take security attributes into account.
283 DWORD attr = GetFileAttributes(path.c_str());
284 return (attr != INVALID_FILE_ATTRIBUTES) && !(attr & FILE_ATTRIBUTE_READONLY);
Reid Spencerb016a372004-09-15 05:49:50 +0000285}
286
287bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000288Path::canExecute() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000289 // FIXME: take security attributes into account.
290 DWORD attr = GetFileAttributes(path.c_str());
291 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000292}
293
294std::string
295Path::getLast() const {
296 // Find the last slash
297 size_t pos = path.rfind('/');
298
299 // Handle the corner cases
300 if (pos == std::string::npos)
301 return path;
302
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000303 // If the last character is a slash, we have a root directory
304 if (pos == path.length()-1)
305 return path;
306
Reid Spencerb016a372004-09-15 05:49:50 +0000307 // Return everything after the last slash
308 return path.substr(pos+1);
309}
310
Reid Spencer8475ec02007-03-29 19:05:44 +0000311const FileStatus *
Reid Spencer2ae9d112007-04-07 18:52:17 +0000312PathWithStatus::getFileStatus(bool update, std::string *ErrStr) const {
313 if (!fsIsValid || update) {
Reid Spencer69cce812007-03-29 16:43:20 +0000314 WIN32_FILE_ATTRIBUTE_DATA fi;
Reid Spencer8475ec02007-03-29 19:05:44 +0000315 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) {
316 MakeErrMsg(ErrStr, "getStatusInfo():" + std::string(path) +
Reid Spencer69cce812007-03-29 16:43:20 +0000317 ": Can't get status: ");
Reid Spencer8475ec02007-03-29 19:05:44 +0000318 return 0;
319 }
Jeff Cohen626e38e2004-12-14 05:26:43 +0000320
Reid Spencer2ae9d112007-04-07 18:52:17 +0000321 status.fileSize = fi.nFileSizeHigh;
322 status.fileSize <<= sizeof(fi.nFileSizeHigh)*8;
323 status.fileSize += fi.nFileSizeLow;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000324
Reid Spencer2ae9d112007-04-07 18:52:17 +0000325 status.mode = fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY ? 0555 : 0777;
326 status.user = 9999; // Not applicable to Windows, so...
327 status.group = 9999; // Not applicable to Windows, so...
Jeff Cohen626e38e2004-12-14 05:26:43 +0000328
Reid Spencer4031bef2007-03-29 17:00:31 +0000329 // FIXME: this is only unique if the file is accessed by the same file path.
330 // How do we do this for C:\dir\file and ..\dir\file ? Unix has inode
331 // numbers, but the concept doesn't exist in Windows.
Reid Spencer2ae9d112007-04-07 18:52:17 +0000332 status.uniqueID = 0;
Reid Spencer4031bef2007-03-29 17:00:31 +0000333 for (unsigned i = 0; i < path.length(); ++i)
Reid Spencer2ae9d112007-04-07 18:52:17 +0000334 status.uniqueID += path[i];
Reid Spencer4031bef2007-03-29 17:00:31 +0000335
Reid Spencer69cce812007-03-29 16:43:20 +0000336 __int64 ft = *reinterpret_cast<__int64*>(&fi.ftLastWriteTime);
Reid Spencer2ae9d112007-04-07 18:52:17 +0000337 status.modTime.fromWin32Time(ft);
Reid Spencer69cce812007-03-29 16:43:20 +0000338
Reid Spencer2ae9d112007-04-07 18:52:17 +0000339 status.isDir = fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY;
340 fsIsValid = true;
Reid Spencer69cce812007-03-29 16:43:20 +0000341 }
Reid Spencer2ae9d112007-04-07 18:52:17 +0000342 return &status;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000343}
344
Reid Spencera34a1572006-08-22 23:54:35 +0000345bool Path::makeReadableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000346 // All files are readable on Windows (ignoring security attributes).
Reid Spencera34a1572006-08-22 23:54:35 +0000347 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000348}
349
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000350bool Path::makeWriteableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000351 DWORD attr = GetFileAttributes(path.c_str());
352
353 // If it doesn't exist, we're done.
354 if (attr == INVALID_FILE_ATTRIBUTES)
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000355 return false;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000356
357 if (attr & FILE_ATTRIBUTE_READONLY) {
Reid Spencera34a1572006-08-22 23:54:35 +0000358 if (!SetFileAttributes(path.c_str(), attr & ~FILE_ATTRIBUTE_READONLY)) {
359 MakeErrMsg(ErrMsg, std::string(path) + ": Can't make file writable: ");
360 return true;
361 }
Jeff Cohen626e38e2004-12-14 05:26:43 +0000362 }
Reid Spencera34a1572006-08-22 23:54:35 +0000363 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000364}
365
Reid Spencera34a1572006-08-22 23:54:35 +0000366bool Path::makeExecutableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000367 // All files are executable on Windows (ignoring security attributes).
Reid Spencera34a1572006-08-22 23:54:35 +0000368 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000369}
370
Reid Spencerb016a372004-09-15 05:49:50 +0000371bool
Reid Spencer142ca8e2006-08-23 06:56:27 +0000372Path::getDirectoryContents(std::set<Path>& result, std::string* ErrMsg) const {
Jeff Cohen31102892007-04-07 20:47:27 +0000373 WIN32_FILE_ATTRIBUTE_DATA fi;
374 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) {
375 MakeErrMsg(ErrMsg, path + ": can't get status of file");
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000376 return true;
Jeff Cohen31102892007-04-07 20:47:27 +0000377 }
378
379 if (!(fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) {
380 if (ErrMsg)
381 *ErrMsg = path + ": not a directory";
Reid Spencer142ca8e2006-08-23 06:56:27 +0000382 return true;
383 }
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000384
385 result.clear();
386 WIN32_FIND_DATA fd;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000387 std::string searchpath = path;
388 if (path.size() == 0 || searchpath[path.size()-1] == '/')
Jeff Cohen85c716f2005-07-08 05:02:13 +0000389 searchpath += "*";
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000390 else
391 searchpath += "/*";
Jeff Cohen85c716f2005-07-08 05:02:13 +0000392
Jeff Cohen9437bb62005-01-27 03:49:03 +0000393 HANDLE h = FindFirstFile(searchpath.c_str(), &fd);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000394 if (h == INVALID_HANDLE_VALUE) {
Jeff Cohen9437bb62005-01-27 03:49:03 +0000395 if (GetLastError() == ERROR_FILE_NOT_FOUND)
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000396 return true; // not really an error, now is it?
Reid Spencer142ca8e2006-08-23 06:56:27 +0000397 MakeErrMsg(ErrMsg, path + ": Can't read directory: ");
398 return true;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000399 }
400
401 do {
Jeff Cohend40a7de2004-12-31 05:07:26 +0000402 if (fd.cFileName[0] == '.')
403 continue;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000404 Path aPath(path);
405 aPath.appendComponent(&fd.cFileName[0]);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000406 result.insert(aPath);
407 } while (FindNextFile(h, &fd));
408
Jeff Cohen51b8d212004-12-31 19:01:08 +0000409 DWORD err = GetLastError();
410 FindClose(h);
411 if (err != ERROR_NO_MORE_FILES) {
412 SetLastError(err);
Reid Spencer142ca8e2006-08-23 06:56:27 +0000413 MakeErrMsg(ErrMsg, path + ": Can't read directory: ");
414 return true;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000415 }
Reid Spencer142ca8e2006-08-23 06:56:27 +0000416 return false;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000417}
418
419bool
Reid Spencer1cf2d042005-07-07 23:35:23 +0000420Path::set(const std::string& a_path) {
Reid Spencerb016a372004-09-15 05:49:50 +0000421 if (a_path.size() == 0)
422 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000423 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000424 path = a_path;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000425 FlipBackSlashes(path);
Reid Spencer07adb282004-11-05 22:15:36 +0000426 if (!isValid()) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000427 path = save;
Reid Spencerb016a372004-09-15 05:49:50 +0000428 return false;
429 }
430 return true;
431}
432
433bool
Jeff Cohenedb9d6b2005-07-08 02:48:42 +0000434Path::appendComponent(const std::string& name) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000435 if (name.empty())
Reid Spencerb016a372004-09-15 05:49:50 +0000436 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000437 std::string save(path);
438 if (!path.empty()) {
439 size_t last = path.size() - 1;
Jeff Cohen85c716f2005-07-08 05:02:13 +0000440 if (path[last] != '/')
Reid Spencer1cf2d042005-07-07 23:35:23 +0000441 path += '/';
442 }
443 path += name;
Reid Spencer07adb282004-11-05 22:15:36 +0000444 if (!isValid()) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000445 path = save;
Reid Spencerb016a372004-09-15 05:49:50 +0000446 return false;
447 }
448 return true;
449}
450
451bool
Reid Spencer1cf2d042005-07-07 23:35:23 +0000452Path::eraseComponent() {
Reid Spencerb016a372004-09-15 05:49:50 +0000453 size_t slashpos = path.rfind('/',path.size());
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000454 if (slashpos == path.size() - 1 || slashpos == std::string::npos)
Reid Spencerb016a372004-09-15 05:49:50 +0000455 return false;
Jeff Cohen966fa412005-07-09 18:42:49 +0000456 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000457 path.erase(slashpos);
Jeff Cohen966fa412005-07-09 18:42:49 +0000458 if (!isValid()) {
459 path = save;
460 return false;
461 }
Reid Spencerb016a372004-09-15 05:49:50 +0000462 return true;
463}
464
465bool
Reid Spencer07adb282004-11-05 22:15:36 +0000466Path::appendSuffix(const std::string& suffix) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000467 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000468 path.append(".");
469 path.append(suffix);
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::eraseSuffix() {
Reid Spencerb016a372004-09-15 05:49:50 +0000479 size_t dotpos = path.rfind('.',path.size());
480 size_t slashpos = path.rfind('/',path.size());
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000481 if (dotpos != std::string::npos) {
Jeff Cohen966fa412005-07-09 18:42:49 +0000482 if (slashpos == std::string::npos || dotpos > slashpos+1) {
483 std::string save(path);
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000484 path.erase(dotpos, path.size()-dotpos);
Jeff Cohen966fa412005-07-09 18:42:49 +0000485 if (!isValid()) {
486 path = save;
487 return false;
488 }
Jeff Cohen85c716f2005-07-08 05:02:13 +0000489 return true;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000490 }
Reid Spencerb016a372004-09-15 05:49:50 +0000491 }
492 return false;
493}
494
Reid Spencer30300992006-08-24 18:58:37 +0000495inline bool PathMsg(std::string* ErrMsg, const char* pathname, const char*msg) {
496 if (ErrMsg)
497 *ErrMsg = std::string(pathname) + ": " + std::string(msg);
498 return true;
499}
500
Reid Spencerb016a372004-09-15 05:49:50 +0000501bool
Reid Spencer30300992006-08-24 18:58:37 +0000502Path::createDirectoryOnDisk(bool create_parents, std::string* ErrMsg) {
Reid Spencerb016a372004-09-15 05:49:50 +0000503 // Get a writeable copy of the path name
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000504 size_t len = path.length();
505 char *pathname = reinterpret_cast<char *>(_alloca(len+2));
506 path.copy(pathname, len);
507 pathname[len] = 0;
Jeff Cohen85c716f2005-07-08 05:02:13 +0000508
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000509 // Make sure it ends with a slash.
510 if (len == 0 || pathname[len - 1] != '/') {
511 pathname[len] = '/';
512 pathname[++len] = 0;
513 }
Reid Spencerb016a372004-09-15 05:49:50 +0000514
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000515 // Determine starting point for initial / search.
516 char *next = pathname;
517 if (pathname[0] == '/' && pathname[1] == '/') {
518 // Skip host name.
519 next = strchr(pathname+2, '/');
520 if (next == NULL)
Reid Spencer30300992006-08-24 18:58:37 +0000521 return PathMsg(ErrMsg, pathname, "badly formed remote directory");
522
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000523 // Skip share name.
524 next = strchr(next+1, '/');
525 if (next == NULL)
Reid Spencer30300992006-08-24 18:58:37 +0000526 return PathMsg(ErrMsg, pathname,"badly formed remote directory");
527
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000528 next++;
529 if (*next == 0)
Reid Spencer30300992006-08-24 18:58:37 +0000530 return PathMsg(ErrMsg, pathname, "badly formed remote directory");
531
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000532 } else {
533 if (pathname[1] == ':')
534 next += 2; // skip drive letter
535 if (*next == '/')
536 next++; // skip root directory
537 }
Reid Spencerb016a372004-09-15 05:49:50 +0000538
539 // If we're supposed to create intermediate directories
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000540 if (create_parents) {
Reid Spencerb016a372004-09-15 05:49:50 +0000541 // Loop through the directory components until we're done
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000542 while (*next) {
543 next = strchr(next, '/');
Reid Spencerb016a372004-09-15 05:49:50 +0000544 *next = 0;
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000545 if (!CreateDirectory(pathname, NULL))
Reid Spencer30300992006-08-24 18:58:37 +0000546 return MakeErrMsg(ErrMsg,
547 std::string(pathname) + ": Can't create directory: ");
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000548 *next++ = '/';
Reid Spencerb016a372004-09-15 05:49:50 +0000549 }
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000550 } else {
551 // Drop trailing slash.
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000552 pathname[len-1] = 0;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000553 if (!CreateDirectory(pathname, NULL)) {
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000554 return MakeErrMsg(ErrMsg, std::string(pathname) + ": Can't create directory: ");
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000555 }
Reid Spencerb016a372004-09-15 05:49:50 +0000556 }
Reid Spencer30300992006-08-24 18:58:37 +0000557 return false;
Reid Spencerb016a372004-09-15 05:49:50 +0000558}
559
560bool
Reid Spencer30300992006-08-24 18:58:37 +0000561Path::createFileOnDisk(std::string* ErrMsg) {
Reid Spencerb016a372004-09-15 05:49:50 +0000562 // Create the file
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000563 HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW,
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000564 FILE_ATTRIBUTE_NORMAL, NULL);
565 if (h == INVALID_HANDLE_VALUE)
Reid Spencer30300992006-08-24 18:58:37 +0000566 return MakeErrMsg(ErrMsg, path + ": Can't create file: ");
Reid Spencerb016a372004-09-15 05:49:50 +0000567
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000568 CloseHandle(h);
Reid Spencer30300992006-08-24 18:58:37 +0000569 return false;
Reid Spencerb016a372004-09-15 05:49:50 +0000570}
571
572bool
Chris Lattner0c332312006-07-28 22:29:50 +0000573Path::eraseFromDisk(bool remove_contents, std::string *ErrStr) const {
Jeff Cohen31102892007-04-07 20:47:27 +0000574 WIN32_FILE_ATTRIBUTE_DATA fi;
575 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi))
576 return true;
Chris Lattnerc7c453a2006-08-01 17:51:09 +0000577
Jeff Cohen31102892007-04-07 20:47:27 +0000578 if (fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000579 // If it doesn't exist, we're done.
Jeff Cohen85c716f2005-07-08 05:02:13 +0000580 if (!exists())
Chris Lattner0c332312006-07-28 22:29:50 +0000581 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000582
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000583 char *pathname = reinterpret_cast<char *>(_alloca(path.length()+3));
Reid Spencer1cf2d042005-07-07 23:35:23 +0000584 int lastchar = path.length() - 1 ;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000585 path.copy(pathname, lastchar+1);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000586
587 // Make path end with '/*'.
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000588 if (pathname[lastchar] != '/')
589 pathname[++lastchar] = '/';
Reid Spencer1cf2d042005-07-07 23:35:23 +0000590 pathname[lastchar+1] = '*';
591 pathname[lastchar+2] = 0;
592
593 if (remove_contents) {
594 WIN32_FIND_DATA fd;
595 HANDLE h = FindFirstFile(pathname, &fd);
596
597 // It's a bad idea to alter the contents of a directory while enumerating
598 // its contents. So build a list of its contents first, then destroy them.
599
600 if (h != INVALID_HANDLE_VALUE) {
601 std::vector<Path> list;
602
603 do {
604 if (strcmp(fd.cFileName, ".") == 0)
605 continue;
606 if (strcmp(fd.cFileName, "..") == 0)
607 continue;
608
Jeff Cohen85c716f2005-07-08 05:02:13 +0000609 Path aPath(path);
610 aPath.appendComponent(&fd.cFileName[0]);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000611 list.push_back(aPath);
612 } while (FindNextFile(h, &fd));
613
614 DWORD err = GetLastError();
615 FindClose(h);
616 if (err != ERROR_NO_MORE_FILES) {
617 SetLastError(err);
Reid Spencer05545752006-08-25 21:37:17 +0000618 return MakeErrMsg(ErrStr, path + ": Can't read directory: ");
Reid Spencer1cf2d042005-07-07 23:35:23 +0000619 }
620
Jeff Cohen85c716f2005-07-08 05:02:13 +0000621 for (std::vector<Path>::iterator I = list.begin(); I != list.end();
Reid Spencer1cf2d042005-07-07 23:35:23 +0000622 ++I) {
623 Path &aPath = *I;
Reid Spencera229c5c2005-07-08 03:08:58 +0000624 aPath.eraseFromDisk(true);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000625 }
626 } else {
627 if (GetLastError() != ERROR_FILE_NOT_FOUND)
Reid Spencer05545752006-08-25 21:37:17 +0000628 return MakeErrMsg(ErrStr, path + ": Can't read directory: ");
Reid Spencer1cf2d042005-07-07 23:35:23 +0000629 }
630 }
631
632 pathname[lastchar] = 0;
633 if (!RemoveDirectory(pathname))
Reid Spencer05545752006-08-25 21:37:17 +0000634 return MakeErrMsg(ErrStr,
635 std::string(pathname) + ": Can't destroy directory: ");
Chris Lattner0c332312006-07-28 22:29:50 +0000636 return false;
Jeff Cohen31102892007-04-07 20:47:27 +0000637 } else {
638 // Read-only files cannot be deleted on Windows. Must remove the read-only
639 // attribute first.
640 if (fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
641 if (!SetFileAttributes(path.c_str(),
642 fi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY))
643 return MakeErrMsg(ErrStr, path + ": Can't destroy file: ");
644 }
645
646 if (!DeleteFile(path.c_str()))
647 return MakeErrMsg(ErrStr, path + ": Can't destroy file: ");
648 return false;
649 }
Reid Spencerb016a372004-09-15 05:49:50 +0000650}
651
Reid Spencer3b0cc782004-12-14 18:42:13 +0000652bool Path::getMagicNumber(std::string& Magic, unsigned len) const {
Reid Spencer3b0cc782004-12-14 18:42:13 +0000653 assert(len < 1024 && "Request for magic string too long");
654 char* buf = (char*) alloca(1 + len);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000655
656 HANDLE h = CreateFile(path.c_str(),
657 GENERIC_READ,
658 FILE_SHARE_READ,
659 NULL,
660 OPEN_EXISTING,
661 FILE_ATTRIBUTE_NORMAL,
662 NULL);
663 if (h == INVALID_HANDLE_VALUE)
Reid Spencer3b0cc782004-12-14 18:42:13 +0000664 return false;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000665
666 DWORD nRead = 0;
667 BOOL ret = ReadFile(h, buf, len, &nRead, NULL);
668 CloseHandle(h);
669
670 if (!ret || nRead != len)
Reid Spencer3b0cc782004-12-14 18:42:13 +0000671 return false;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000672
Reid Spencer3b0cc782004-12-14 18:42:13 +0000673 buf[len] = '\0';
674 Magic = buf;
675 return true;
676}
677
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000678bool
Reid Spencer5a060772006-08-23 07:30:48 +0000679Path::renamePathOnDisk(const Path& newName, std::string* ErrMsg) {
Jeff Cohene564de22006-05-07 02:51:51 +0000680 if (!MoveFileEx(path.c_str(), newName.c_str(), MOVEFILE_REPLACE_EXISTING))
Reid Spencer5a060772006-08-23 07:30:48 +0000681 return MakeErrMsg(ErrMsg, "Can't move '" + path + "' to '" + newName.path
682 + "': ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000683 return true;
684}
685
686bool
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000687Path::setStatusInfoOnDisk(const FileStatus &si, std::string *ErrMsg) const {
Jeff Cohen966fa412005-07-09 18:42:49 +0000688 // FIXME: should work on directories also.
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000689 if (!si.isFile) {
690 return true;
691 }
692
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000693 HANDLE h = CreateFile(path.c_str(),
694 FILE_READ_ATTRIBUTES | FILE_WRITE_ATTRIBUTES,
695 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
Jeff Cohend40a7de2004-12-31 05:07:26 +0000696 NULL,
697 OPEN_EXISTING,
698 FILE_ATTRIBUTE_NORMAL,
699 NULL);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000700 if (h == INVALID_HANDLE_VALUE)
Chris Lattner1bebfb52006-07-28 22:36:17 +0000701 return true;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000702
703 BY_HANDLE_FILE_INFORMATION bhfi;
704 if (!GetFileInformationByHandle(h, &bhfi)) {
Jeff Cohen51b8d212004-12-31 19:01:08 +0000705 DWORD err = GetLastError();
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000706 CloseHandle(h);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000707 SetLastError(err);
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000708 return MakeErrMsg(ErrMsg, path + ": GetFileInformationByHandle: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000709 }
710
711 FILETIME ft;
712 (uint64_t&)ft = si.modTime.toWin32Time();
713 BOOL ret = SetFileTime(h, NULL, &ft, &ft);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000714 DWORD err = GetLastError();
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000715 CloseHandle(h);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000716 if (!ret) {
717 SetLastError(err);
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000718 return MakeErrMsg(ErrMsg, path + ": SetFileTime: ");
Jeff Cohen51b8d212004-12-31 19:01:08 +0000719 }
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000720
721 // Best we can do with Unix permission bits is to interpret the owner
722 // writable bit.
723 if (si.mode & 0200) {
724 if (bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
725 if (!SetFileAttributes(path.c_str(),
Jeff Cohend40a7de2004-12-31 05:07:26 +0000726 bhfi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY))
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000727 return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000728 }
729 } else {
730 if (!(bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY)) {
731 if (!SetFileAttributes(path.c_str(),
Jeff Cohend40a7de2004-12-31 05:07:26 +0000732 bhfi.dwFileAttributes | FILE_ATTRIBUTE_READONLY))
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000733 return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000734 }
735 }
736
Chris Lattner1bebfb52006-07-28 22:36:17 +0000737 return false;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000738}
739
Reid Spencer30300992006-08-24 18:58:37 +0000740bool
741CopyFile(const sys::Path &Dest, const sys::Path &Src, std::string* ErrMsg) {
Jeff Cohencb652552004-12-24 02:38:34 +0000742 // Can't use CopyFile macro defined in Windows.h because it would mess up the
743 // above line. We use the expansion it would have in a non-UNICODE build.
744 if (!::CopyFileA(Src.c_str(), Dest.c_str(), false))
Reid Spencer30300992006-08-24 18:58:37 +0000745 return MakeErrMsg(ErrMsg, "Can't copy '" + Src.toString() +
Jeff Cohend40a7de2004-12-31 05:07:26 +0000746 "' to '" + Dest.toString() + "': ");
Reid Spencer30300992006-08-24 18:58:37 +0000747 return false;
Reid Spencerc29befb2004-12-15 01:50:13 +0000748}
749
Reid Spencer30300992006-08-24 18:58:37 +0000750bool
751Path::makeUnique(bool reuse_current, std::string* ErrMsg) {
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000752 if (reuse_current && !exists())
Reid Spencer30300992006-08-24 18:58:37 +0000753 return false; // File doesn't exist already, just use it!
Reid Spencerc29befb2004-12-15 01:50:13 +0000754
Jeff Cohen9437bb62005-01-27 03:49:03 +0000755 // Reserve space for -XXXXXX at the end.
756 char *FNBuffer = (char*) alloca(path.size()+8);
757 unsigned offset = path.size();
758 path.copy(FNBuffer, offset);
Reid Spencerc29befb2004-12-15 01:50:13 +0000759
Jeff Cohen966fa412005-07-09 18:42:49 +0000760 // Find a numeric suffix that isn't used by an existing file. Assume there
761 // won't be more than 1 million files with the same prefix. Probably a safe
762 // bet.
Jeff Cohen9437bb62005-01-27 03:49:03 +0000763 static unsigned FCounter = 0;
764 do {
765 sprintf(FNBuffer+offset, "-%06u", FCounter);
766 if (++FCounter > 999999)
767 FCounter = 0;
768 path = FNBuffer;
769 } while (exists());
Reid Spencer30300992006-08-24 18:58:37 +0000770 return false;
Reid Spencerc29befb2004-12-15 01:50:13 +0000771}
772
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000773bool
Reid Spencer30300992006-08-24 18:58:37 +0000774Path::createTemporaryFileOnDisk(bool reuse_current, std::string* ErrMsg) {
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000775 // Make this into a unique file name
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000776 makeUnique(reuse_current, ErrMsg);
Jeff Cohen9437bb62005-01-27 03:49:03 +0000777
778 // Now go and create it
779 HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW,
780 FILE_ATTRIBUTE_NORMAL, NULL);
781 if (h == INVALID_HANDLE_VALUE)
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000782 return MakeErrMsg(ErrMsg, path + ": can't create file");
Jeff Cohen9437bb62005-01-27 03:49:03 +0000783
784 CloseHandle(h);
Reid Spencer30300992006-08-24 18:58:37 +0000785 return false;
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000786}
787
Reid Spencerb016a372004-09-15 05:49:50 +0000788}
Reid Spencercbad7012004-09-11 04:59:30 +0000789}