blob: b5897053b3c228ea5bb964694aa36068a07d646a [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 {
Chris Lattnera17fa282008-03-13 05:17:59 +000047const char PathSeparator = ';';
Chris Lattnere1b332a2008-02-27 06:17:10 +000048
Nick Lewyckyfff116f2008-05-11 17:37:40 +000049Path::Path(const std::string& p)
50 : path(p) {
51 FlipBackSlashes(path);
52}
53
54Path::Path(const char *StrStart, unsigned StrLen)
55 : path(StrStart, StrLen) {
56 FlipBackSlashes(path);
57}
58
Reid Spencerb016a372004-09-15 05:49:50 +000059bool
Reid Spencer07adb282004-11-05 22:15:36 +000060Path::isValid() const {
Reid Spencerb016a372004-09-15 05:49:50 +000061 if (path.empty())
62 return false;
Reid Spencerd0c9e0e2004-09-18 19:29:16 +000063
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000064 // If there is a colon, it must be the second character, preceded by a letter
65 // and followed by something.
66 size_t len = path.size();
67 size_t pos = path.rfind(':',len);
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000068 size_t rootslash = 0;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000069 if (pos != std::string::npos) {
70 if (pos != 1 || !isalpha(path[0]) || len < 3)
71 return false;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000072 rootslash = 2;
73 }
Jeff Cohen85c716f2005-07-08 05:02:13 +000074
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000075 // Look for a UNC path, and if found adjust our notion of the root slash.
76 if (len > 3 && path[0] == '/' && path[1] == '/') {
77 rootslash = path.find('/', 2);
78 if (rootslash == std::string::npos)
79 rootslash = 0;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000080 }
Reid Spencerd0c9e0e2004-09-18 19:29:16 +000081
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000082 // Check for illegal characters.
83 if (path.find_first_of("\\<>\"|\001\002\003\004\005\006\007\010\011\012"
84 "\013\014\015\016\017\020\021\022\023\024\025\026"
85 "\027\030\031\032\033\034\035\036\037")
86 != std::string::npos)
87 return false;
Jeff Cohen85c716f2005-07-08 05:02:13 +000088
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000089 // Remove trailing slash, unless it's a root slash.
90 if (len > rootslash+1 && path[len-1] == '/')
91 path.erase(--len);
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000092
Jeff Cohen3bbbcc12005-01-14 04:09:39 +000093 // Check each component for legality.
94 for (pos = 0; pos < len; ++pos) {
95 // A component may not end in a space.
96 if (path[pos] == ' ') {
97 if (path[pos+1] == '/' || path[pos+1] == '\0')
98 return false;
99 }
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000100
Jeff Cohen3bbbcc12005-01-14 04:09:39 +0000101 // A component may not end in a period.
102 if (path[pos] == '.') {
103 if (path[pos+1] == '/' || path[pos+1] == '\0') {
104 // Unless it is the pseudo-directory "."...
105 if (pos == 0 || path[pos-1] == '/' || path[pos-1] == ':')
106 return true;
107 // or "..".
108 if (pos > 0 && path[pos-1] == '.') {
109 if (pos == 1 || path[pos-2] == '/' || path[pos-2] == ':')
110 return true;
111 }
112 return false;
113 }
114 }
115 }
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000116
117 return true;
Reid Spencercbad7012004-09-11 04:59:30 +0000118}
119
Reid Spencer69cce812007-03-29 16:43:20 +0000120bool
121Path::isAbsolute() const {
Jeff Cohen84892be2007-03-29 17:27:38 +0000122 switch (path.length()) {
123 case 0:
124 return false;
125 case 1:
126 case 2:
127 return path[0] == '/';
128 default:
129 return path[0] == '/' || (path[1] == ':' && path[2] == '/');
130 }
Reid Spencer69cce812007-03-29 16:43:20 +0000131}
132
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000133static Path *TempDirectory = NULL;
134
Reid Spencerb016a372004-09-15 05:49:50 +0000135Path
Reid Spencercab0e432006-08-22 22:46:39 +0000136Path::GetTemporaryDirectory(std::string* ErrMsg) {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000137 if (TempDirectory)
138 return *TempDirectory;
139
140 char pathname[MAX_PATH];
Reid Spencercab0e432006-08-22 22:46:39 +0000141 if (!GetTempPath(MAX_PATH, pathname)) {
142 if (ErrMsg)
143 *ErrMsg = "Can't determine temporary directory";
144 return Path();
145 }
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000146
Reid Spencerb016a372004-09-15 05:49:50 +0000147 Path result;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000148 result.set(pathname);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000149
150 // Append a subdirectory passed on our process id so multiple LLVMs don't
151 // step on each other's toes.
Jeff Cohend41b30d2006-11-05 19:31:28 +0000152#ifdef __MINGW32__
153 // Mingw's Win32 header files are broken.
Reid Spencerab4d9b02006-06-08 18:08:43 +0000154 sprintf(pathname, "LLVM_%u", unsigned(GetCurrentProcessId()));
Jeff Cohend41b30d2006-11-05 19:31:28 +0000155#else
156 sprintf(pathname, "LLVM_%u", GetCurrentProcessId());
157#endif
Jeff Cohenedb9d6b2005-07-08 02:48:42 +0000158 result.appendComponent(pathname);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000159
160 // If there's a directory left over from a previous LLVM execution that
161 // happened to have the same process id, get rid of it.
Reid Spencera229c5c2005-07-08 03:08:58 +0000162 result.eraseFromDisk(true);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000163
164 // And finally (re-)create the empty directory.
Reid Spencera229c5c2005-07-08 03:08:58 +0000165 result.createDirectoryOnDisk(false);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000166 TempDirectory = new Path(result);
167 return *TempDirectory;
Reid Spencerb016a372004-09-15 05:49:50 +0000168}
169
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000170// FIXME: the following set of functions don't map to Windows very well.
Reid Spencerb016a372004-09-15 05:49:50 +0000171Path
172Path::GetRootDirectory() {
173 Path result;
Jeff Cohen966fa412005-07-09 18:42:49 +0000174 result.set("C:/");
Reid Spencerb016a372004-09-15 05:49:50 +0000175 return result;
176}
177
Jeff Cohen85c716f2005-07-08 05:02:13 +0000178void
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000179Path::GetSystemLibraryPaths(std::vector<sys::Path>& Paths) {
Jeff Cohen966fa412005-07-09 18:42:49 +0000180 Paths.push_back(sys::Path("C:/WINDOWS/SYSTEM32"));
181 Paths.push_back(sys::Path("C:/WINDOWS"));
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000182}
183
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000184void
Gabor Greifdb5565a2007-07-06 20:28:40 +0000185Path::GetBitcodeLibraryPaths(std::vector<sys::Path>& Paths) {
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000186 char * env_var = getenv("LLVM_LIB_SEARCH_PATH");
187 if (env_var != 0) {
188 getPathList(env_var,Paths);
189 }
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000190#ifdef LLVM_LIBDIR
191 {
192 Path tmpPath;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000193 if (tmpPath.set(LLVM_LIBDIR))
Reid Spencerc7f08322005-07-07 18:21:42 +0000194 if (tmpPath.canRead())
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000195 Paths.push_back(tmpPath);
196 }
197#endif
198 GetSystemLibraryPaths(Paths);
Reid Spencerb016a372004-09-15 05:49:50 +0000199}
200
201Path
202Path::GetLLVMDefaultConfigDir() {
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000203 // TODO: this isn't going to fly on Windows
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000204 return Path("/etc/llvm");
Reid Spencerb016a372004-09-15 05:49:50 +0000205}
206
207Path
Reid Spencerb016a372004-09-15 05:49:50 +0000208Path::GetUserHomeDirectory() {
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000209 // TODO: Typical Windows setup doesn't define HOME.
Reid Spencerb016a372004-09-15 05:49:50 +0000210 const char* home = getenv("HOME");
211 if (home) {
212 Path result;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000213 if (result.set(home))
Reid Spencerb016a372004-09-15 05:49:50 +0000214 return result;
215 }
216 return GetRootDirectory();
217}
Ted Kremenek79200782007-12-18 22:07:33 +0000218
219Path
220Path::GetCurrentDirectory() {
221 char pathname[MAX_PATH];
Anton Korobeynikov64ddbe42007-12-22 14:26:49 +0000222 ::GetCurrentDirectoryA(MAX_PATH,pathname);
Ted Kremenek79200782007-12-18 22:07:33 +0000223 return Path(pathname);
224}
225
Chris Lattner1a091442008-03-03 02:55:43 +0000226/// GetMainExecutable - Return the path to the main executable, given the
227/// value of argv[0] from program startup.
228Path Path::GetMainExecutable(const char *argv0, void *MainAddr) {
229 return Path();
230}
231
Ted Kremenek79200782007-12-18 22:07:33 +0000232
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000233// FIXME: the above set of functions don't map to Windows very well.
234
Jeff Cohen966fa412005-07-09 18:42:49 +0000235
236bool
237Path::isRootDirectory() const {
238 size_t len = path.size();
239 return len > 0 && path[len-1] == '/';
Reid Spencera229c5c2005-07-08 03:08:58 +0000240}
241
Ted Kremenek9b01cc02008-04-07 22:01:32 +0000242std::string Path::getDirname() const {
Nick Lewyckyfff116f2008-05-11 17:37:40 +0000243 return getDirnameCharSep(path, '/');
Ted Kremenek9b01cc02008-04-07 22:01:32 +0000244}
Ted Kremenekcf55c8e2008-04-07 21:53:57 +0000245
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000246std::string
Reid Spencer07adb282004-11-05 22:15:36 +0000247Path::getBasename() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000248 // Find the last slash
249 size_t slash = path.rfind('/');
250 if (slash == std::string::npos)
251 slash = 0;
252 else
253 slash++;
254
Jeff Cohen966fa412005-07-09 18:42:49 +0000255 size_t dot = path.rfind('.');
256 if (dot == std::string::npos || dot < slash)
257 return path.substr(slash);
258 else
259 return path.substr(slash, dot - slash);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000260}
261
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000262bool
Reid Spencerb016a372004-09-15 05:49:50 +0000263Path::exists() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000264 DWORD attr = GetFileAttributes(path.c_str());
265 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000266}
267
268bool
Ted Kremenekfd527112007-12-18 19:46:22 +0000269Path::isDirectory() const {
270 DWORD attr = GetFileAttributes(path.c_str());
271 return (attr != INVALID_FILE_ATTRIBUTES) &&
272 (attr & FILE_ATTRIBUTE_DIRECTORY);
273}
274
275bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000276Path::canRead() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000277 // FIXME: take security attributes into account.
278 DWORD attr = GetFileAttributes(path.c_str());
279 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000280}
281
282bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000283Path::canWrite() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000284 // FIXME: take security attributes into account.
285 DWORD attr = GetFileAttributes(path.c_str());
286 return (attr != INVALID_FILE_ATTRIBUTES) && !(attr & FILE_ATTRIBUTE_READONLY);
Reid Spencerb016a372004-09-15 05:49:50 +0000287}
288
289bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000290Path::canExecute() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000291 // FIXME: take security attributes into account.
292 DWORD attr = GetFileAttributes(path.c_str());
293 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000294}
295
296std::string
297Path::getLast() const {
298 // Find the last slash
299 size_t pos = path.rfind('/');
300
301 // Handle the corner cases
302 if (pos == std::string::npos)
303 return path;
304
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000305 // If the last character is a slash, we have a root directory
306 if (pos == path.length()-1)
307 return path;
308
Reid Spencerb016a372004-09-15 05:49:50 +0000309 // Return everything after the last slash
310 return path.substr(pos+1);
311}
312
Reid Spencer8475ec02007-03-29 19:05:44 +0000313const FileStatus *
Reid Spencer2ae9d112007-04-07 18:52:17 +0000314PathWithStatus::getFileStatus(bool update, std::string *ErrStr) const {
315 if (!fsIsValid || update) {
Reid Spencer69cce812007-03-29 16:43:20 +0000316 WIN32_FILE_ATTRIBUTE_DATA fi;
Reid Spencer8475ec02007-03-29 19:05:44 +0000317 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) {
318 MakeErrMsg(ErrStr, "getStatusInfo():" + std::string(path) +
Reid Spencer69cce812007-03-29 16:43:20 +0000319 ": Can't get status: ");
Reid Spencer8475ec02007-03-29 19:05:44 +0000320 return 0;
321 }
Jeff Cohen626e38e2004-12-14 05:26:43 +0000322
Reid Spencer2ae9d112007-04-07 18:52:17 +0000323 status.fileSize = fi.nFileSizeHigh;
324 status.fileSize <<= sizeof(fi.nFileSizeHigh)*8;
325 status.fileSize += fi.nFileSizeLow;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000326
Reid Spencer2ae9d112007-04-07 18:52:17 +0000327 status.mode = fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY ? 0555 : 0777;
328 status.user = 9999; // Not applicable to Windows, so...
329 status.group = 9999; // Not applicable to Windows, so...
Jeff Cohen626e38e2004-12-14 05:26:43 +0000330
Reid Spencer4031bef2007-03-29 17:00:31 +0000331 // FIXME: this is only unique if the file is accessed by the same file path.
332 // How do we do this for C:\dir\file and ..\dir\file ? Unix has inode
333 // numbers, but the concept doesn't exist in Windows.
Reid Spencer2ae9d112007-04-07 18:52:17 +0000334 status.uniqueID = 0;
Reid Spencer4031bef2007-03-29 17:00:31 +0000335 for (unsigned i = 0; i < path.length(); ++i)
Reid Spencer2ae9d112007-04-07 18:52:17 +0000336 status.uniqueID += path[i];
Reid Spencer4031bef2007-03-29 17:00:31 +0000337
Reid Spencer69cce812007-03-29 16:43:20 +0000338 __int64 ft = *reinterpret_cast<__int64*>(&fi.ftLastWriteTime);
Reid Spencer2ae9d112007-04-07 18:52:17 +0000339 status.modTime.fromWin32Time(ft);
Reid Spencer69cce812007-03-29 16:43:20 +0000340
Reid Spencer2ae9d112007-04-07 18:52:17 +0000341 status.isDir = fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY;
342 fsIsValid = true;
Reid Spencer69cce812007-03-29 16:43:20 +0000343 }
Reid Spencer2ae9d112007-04-07 18:52:17 +0000344 return &status;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000345}
346
Reid Spencera34a1572006-08-22 23:54:35 +0000347bool Path::makeReadableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000348 // All files are readable on Windows (ignoring security attributes).
Reid Spencera34a1572006-08-22 23:54:35 +0000349 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000350}
351
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000352bool Path::makeWriteableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000353 DWORD attr = GetFileAttributes(path.c_str());
354
355 // If it doesn't exist, we're done.
356 if (attr == INVALID_FILE_ATTRIBUTES)
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000357 return false;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000358
359 if (attr & FILE_ATTRIBUTE_READONLY) {
Reid Spencera34a1572006-08-22 23:54:35 +0000360 if (!SetFileAttributes(path.c_str(), attr & ~FILE_ATTRIBUTE_READONLY)) {
361 MakeErrMsg(ErrMsg, std::string(path) + ": Can't make file writable: ");
362 return true;
363 }
Jeff Cohen626e38e2004-12-14 05:26:43 +0000364 }
Reid Spencera34a1572006-08-22 23:54:35 +0000365 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000366}
367
Reid Spencera34a1572006-08-22 23:54:35 +0000368bool Path::makeExecutableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000369 // All files are executable on Windows (ignoring security attributes).
Reid Spencera34a1572006-08-22 23:54:35 +0000370 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000371}
372
Reid Spencerb016a372004-09-15 05:49:50 +0000373bool
Reid Spencer142ca8e2006-08-23 06:56:27 +0000374Path::getDirectoryContents(std::set<Path>& result, std::string* ErrMsg) const {
Jeff Cohen31102892007-04-07 20:47:27 +0000375 WIN32_FILE_ATTRIBUTE_DATA fi;
376 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) {
377 MakeErrMsg(ErrMsg, path + ": can't get status of file");
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000378 return true;
Jeff Cohen31102892007-04-07 20:47:27 +0000379 }
380
381 if (!(fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) {
382 if (ErrMsg)
383 *ErrMsg = path + ": not a directory";
Reid Spencer142ca8e2006-08-23 06:56:27 +0000384 return true;
385 }
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000386
387 result.clear();
388 WIN32_FIND_DATA fd;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000389 std::string searchpath = path;
390 if (path.size() == 0 || searchpath[path.size()-1] == '/')
Jeff Cohen85c716f2005-07-08 05:02:13 +0000391 searchpath += "*";
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000392 else
393 searchpath += "/*";
Jeff Cohen85c716f2005-07-08 05:02:13 +0000394
Jeff Cohen9437bb62005-01-27 03:49:03 +0000395 HANDLE h = FindFirstFile(searchpath.c_str(), &fd);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000396 if (h == INVALID_HANDLE_VALUE) {
Jeff Cohen9437bb62005-01-27 03:49:03 +0000397 if (GetLastError() == ERROR_FILE_NOT_FOUND)
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000398 return true; // not really an error, now is it?
Reid Spencer142ca8e2006-08-23 06:56:27 +0000399 MakeErrMsg(ErrMsg, path + ": Can't read directory: ");
400 return true;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000401 }
402
403 do {
Jeff Cohend40a7de2004-12-31 05:07:26 +0000404 if (fd.cFileName[0] == '.')
405 continue;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000406 Path aPath(path);
407 aPath.appendComponent(&fd.cFileName[0]);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000408 result.insert(aPath);
409 } while (FindNextFile(h, &fd));
410
Jeff Cohen51b8d212004-12-31 19:01:08 +0000411 DWORD err = GetLastError();
412 FindClose(h);
413 if (err != ERROR_NO_MORE_FILES) {
414 SetLastError(err);
Reid Spencer142ca8e2006-08-23 06:56:27 +0000415 MakeErrMsg(ErrMsg, path + ": Can't read directory: ");
416 return true;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000417 }
Reid Spencer142ca8e2006-08-23 06:56:27 +0000418 return false;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000419}
420
421bool
Reid Spencer1cf2d042005-07-07 23:35:23 +0000422Path::set(const std::string& a_path) {
Dan Gohman30359592008-01-29 13:02:09 +0000423 if (a_path.empty())
Reid Spencerb016a372004-09-15 05:49:50 +0000424 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000425 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000426 path = a_path;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000427 FlipBackSlashes(path);
Reid Spencer07adb282004-11-05 22:15:36 +0000428 if (!isValid()) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000429 path = save;
Reid Spencerb016a372004-09-15 05:49:50 +0000430 return false;
431 }
432 return true;
433}
434
435bool
Jeff Cohenedb9d6b2005-07-08 02:48:42 +0000436Path::appendComponent(const std::string& name) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000437 if (name.empty())
Reid Spencerb016a372004-09-15 05:49:50 +0000438 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000439 std::string save(path);
440 if (!path.empty()) {
441 size_t last = path.size() - 1;
Jeff Cohen85c716f2005-07-08 05:02:13 +0000442 if (path[last] != '/')
Reid Spencer1cf2d042005-07-07 23:35:23 +0000443 path += '/';
444 }
445 path += name;
Reid Spencer07adb282004-11-05 22:15:36 +0000446 if (!isValid()) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000447 path = save;
Reid Spencerb016a372004-09-15 05:49:50 +0000448 return false;
449 }
450 return true;
451}
452
453bool
Reid Spencer1cf2d042005-07-07 23:35:23 +0000454Path::eraseComponent() {
Reid Spencerb016a372004-09-15 05:49:50 +0000455 size_t slashpos = path.rfind('/',path.size());
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000456 if (slashpos == path.size() - 1 || slashpos == std::string::npos)
Reid Spencerb016a372004-09-15 05:49:50 +0000457 return false;
Jeff Cohen966fa412005-07-09 18:42:49 +0000458 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000459 path.erase(slashpos);
Jeff Cohen966fa412005-07-09 18:42:49 +0000460 if (!isValid()) {
461 path = save;
462 return false;
463 }
Reid Spencerb016a372004-09-15 05:49:50 +0000464 return true;
465}
466
467bool
Reid Spencer07adb282004-11-05 22:15:36 +0000468Path::appendSuffix(const std::string& suffix) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000469 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000470 path.append(".");
471 path.append(suffix);
Reid Spencer07adb282004-11-05 22:15:36 +0000472 if (!isValid()) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000473 path = save;
Reid Spencerb016a372004-09-15 05:49:50 +0000474 return false;
475 }
476 return true;
477}
478
479bool
Reid Spencer1cf2d042005-07-07 23:35:23 +0000480Path::eraseSuffix() {
Reid Spencerb016a372004-09-15 05:49:50 +0000481 size_t dotpos = path.rfind('.',path.size());
482 size_t slashpos = path.rfind('/',path.size());
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000483 if (dotpos != std::string::npos) {
Jeff Cohen966fa412005-07-09 18:42:49 +0000484 if (slashpos == std::string::npos || dotpos > slashpos+1) {
485 std::string save(path);
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000486 path.erase(dotpos, path.size()-dotpos);
Jeff Cohen966fa412005-07-09 18:42:49 +0000487 if (!isValid()) {
488 path = save;
489 return false;
490 }
Jeff Cohen85c716f2005-07-08 05:02:13 +0000491 return true;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000492 }
Reid Spencerb016a372004-09-15 05:49:50 +0000493 }
494 return false;
495}
496
Reid Spencer30300992006-08-24 18:58:37 +0000497inline bool PathMsg(std::string* ErrMsg, const char* pathname, const char*msg) {
498 if (ErrMsg)
499 *ErrMsg = std::string(pathname) + ": " + std::string(msg);
500 return true;
501}
502
Reid Spencerb016a372004-09-15 05:49:50 +0000503bool
Reid Spencer30300992006-08-24 18:58:37 +0000504Path::createDirectoryOnDisk(bool create_parents, std::string* ErrMsg) {
Reid Spencerb016a372004-09-15 05:49:50 +0000505 // Get a writeable copy of the path name
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000506 size_t len = path.length();
507 char *pathname = reinterpret_cast<char *>(_alloca(len+2));
508 path.copy(pathname, len);
509 pathname[len] = 0;
Jeff Cohen85c716f2005-07-08 05:02:13 +0000510
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000511 // Make sure it ends with a slash.
512 if (len == 0 || pathname[len - 1] != '/') {
513 pathname[len] = '/';
514 pathname[++len] = 0;
515 }
Reid Spencerb016a372004-09-15 05:49:50 +0000516
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000517 // Determine starting point for initial / search.
518 char *next = pathname;
519 if (pathname[0] == '/' && pathname[1] == '/') {
520 // Skip host name.
521 next = strchr(pathname+2, '/');
522 if (next == NULL)
Reid Spencer30300992006-08-24 18:58:37 +0000523 return PathMsg(ErrMsg, pathname, "badly formed remote directory");
524
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000525 // Skip share name.
526 next = strchr(next+1, '/');
527 if (next == NULL)
Reid Spencer30300992006-08-24 18:58:37 +0000528 return PathMsg(ErrMsg, pathname,"badly formed remote directory");
529
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000530 next++;
531 if (*next == 0)
Reid Spencer30300992006-08-24 18:58:37 +0000532 return PathMsg(ErrMsg, pathname, "badly formed remote directory");
533
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000534 } else {
535 if (pathname[1] == ':')
536 next += 2; // skip drive letter
537 if (*next == '/')
538 next++; // skip root directory
539 }
Reid Spencerb016a372004-09-15 05:49:50 +0000540
541 // If we're supposed to create intermediate directories
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000542 if (create_parents) {
Reid Spencerb016a372004-09-15 05:49:50 +0000543 // Loop through the directory components until we're done
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000544 while (*next) {
545 next = strchr(next, '/');
Reid Spencerb016a372004-09-15 05:49:50 +0000546 *next = 0;
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000547 if (!CreateDirectory(pathname, NULL))
Reid Spencer30300992006-08-24 18:58:37 +0000548 return MakeErrMsg(ErrMsg,
549 std::string(pathname) + ": Can't create directory: ");
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000550 *next++ = '/';
Reid Spencerb016a372004-09-15 05:49:50 +0000551 }
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000552 } else {
553 // Drop trailing slash.
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000554 pathname[len-1] = 0;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000555 if (!CreateDirectory(pathname, NULL)) {
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000556 return MakeErrMsg(ErrMsg, std::string(pathname) + ": Can't create directory: ");
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000557 }
Reid Spencerb016a372004-09-15 05:49:50 +0000558 }
Reid Spencer30300992006-08-24 18:58:37 +0000559 return false;
Reid Spencerb016a372004-09-15 05:49:50 +0000560}
561
562bool
Reid Spencer30300992006-08-24 18:58:37 +0000563Path::createFileOnDisk(std::string* ErrMsg) {
Reid Spencerb016a372004-09-15 05:49:50 +0000564 // Create the file
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000565 HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW,
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000566 FILE_ATTRIBUTE_NORMAL, NULL);
567 if (h == INVALID_HANDLE_VALUE)
Reid Spencer30300992006-08-24 18:58:37 +0000568 return MakeErrMsg(ErrMsg, path + ": Can't create file: ");
Reid Spencerb016a372004-09-15 05:49:50 +0000569
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000570 CloseHandle(h);
Reid Spencer30300992006-08-24 18:58:37 +0000571 return false;
Reid Spencerb016a372004-09-15 05:49:50 +0000572}
573
574bool
Chris Lattner0c332312006-07-28 22:29:50 +0000575Path::eraseFromDisk(bool remove_contents, std::string *ErrStr) const {
Jeff Cohen31102892007-04-07 20:47:27 +0000576 WIN32_FILE_ATTRIBUTE_DATA fi;
577 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi))
578 return true;
Chris Lattnerc7c453a2006-08-01 17:51:09 +0000579
Jeff Cohen31102892007-04-07 20:47:27 +0000580 if (fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000581 // If it doesn't exist, we're done.
Jeff Cohen85c716f2005-07-08 05:02:13 +0000582 if (!exists())
Chris Lattner0c332312006-07-28 22:29:50 +0000583 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000584
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000585 char *pathname = reinterpret_cast<char *>(_alloca(path.length()+3));
Reid Spencer1cf2d042005-07-07 23:35:23 +0000586 int lastchar = path.length() - 1 ;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000587 path.copy(pathname, lastchar+1);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000588
589 // Make path end with '/*'.
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000590 if (pathname[lastchar] != '/')
591 pathname[++lastchar] = '/';
Reid Spencer1cf2d042005-07-07 23:35:23 +0000592 pathname[lastchar+1] = '*';
593 pathname[lastchar+2] = 0;
594
595 if (remove_contents) {
596 WIN32_FIND_DATA fd;
597 HANDLE h = FindFirstFile(pathname, &fd);
598
599 // It's a bad idea to alter the contents of a directory while enumerating
600 // its contents. So build a list of its contents first, then destroy them.
601
602 if (h != INVALID_HANDLE_VALUE) {
603 std::vector<Path> list;
604
605 do {
606 if (strcmp(fd.cFileName, ".") == 0)
607 continue;
608 if (strcmp(fd.cFileName, "..") == 0)
609 continue;
610
Jeff Cohen85c716f2005-07-08 05:02:13 +0000611 Path aPath(path);
612 aPath.appendComponent(&fd.cFileName[0]);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000613 list.push_back(aPath);
614 } while (FindNextFile(h, &fd));
615
616 DWORD err = GetLastError();
617 FindClose(h);
618 if (err != ERROR_NO_MORE_FILES) {
619 SetLastError(err);
Reid Spencer05545752006-08-25 21:37:17 +0000620 return MakeErrMsg(ErrStr, path + ": Can't read directory: ");
Reid Spencer1cf2d042005-07-07 23:35:23 +0000621 }
622
Jeff Cohen85c716f2005-07-08 05:02:13 +0000623 for (std::vector<Path>::iterator I = list.begin(); I != list.end();
Reid Spencer1cf2d042005-07-07 23:35:23 +0000624 ++I) {
625 Path &aPath = *I;
Reid Spencera229c5c2005-07-08 03:08:58 +0000626 aPath.eraseFromDisk(true);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000627 }
628 } else {
629 if (GetLastError() != ERROR_FILE_NOT_FOUND)
Reid Spencer05545752006-08-25 21:37:17 +0000630 return MakeErrMsg(ErrStr, path + ": Can't read directory: ");
Reid Spencer1cf2d042005-07-07 23:35:23 +0000631 }
632 }
633
634 pathname[lastchar] = 0;
635 if (!RemoveDirectory(pathname))
Reid Spencer05545752006-08-25 21:37:17 +0000636 return MakeErrMsg(ErrStr,
637 std::string(pathname) + ": Can't destroy directory: ");
Chris Lattner0c332312006-07-28 22:29:50 +0000638 return false;
Jeff Cohen31102892007-04-07 20:47:27 +0000639 } else {
640 // Read-only files cannot be deleted on Windows. Must remove the read-only
641 // attribute first.
642 if (fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
643 if (!SetFileAttributes(path.c_str(),
644 fi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY))
645 return MakeErrMsg(ErrStr, path + ": Can't destroy file: ");
646 }
647
648 if (!DeleteFile(path.c_str()))
649 return MakeErrMsg(ErrStr, path + ": Can't destroy file: ");
650 return false;
651 }
Reid Spencerb016a372004-09-15 05:49:50 +0000652}
653
Reid Spencer3b0cc782004-12-14 18:42:13 +0000654bool Path::getMagicNumber(std::string& Magic, unsigned len) const {
Reid Spencer3b0cc782004-12-14 18:42:13 +0000655 assert(len < 1024 && "Request for magic string too long");
656 char* buf = (char*) alloca(1 + len);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000657
658 HANDLE h = CreateFile(path.c_str(),
659 GENERIC_READ,
660 FILE_SHARE_READ,
661 NULL,
662 OPEN_EXISTING,
663 FILE_ATTRIBUTE_NORMAL,
664 NULL);
665 if (h == INVALID_HANDLE_VALUE)
Reid Spencer3b0cc782004-12-14 18:42:13 +0000666 return false;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000667
668 DWORD nRead = 0;
669 BOOL ret = ReadFile(h, buf, len, &nRead, NULL);
670 CloseHandle(h);
671
672 if (!ret || nRead != len)
Reid Spencer3b0cc782004-12-14 18:42:13 +0000673 return false;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000674
Reid Spencer3b0cc782004-12-14 18:42:13 +0000675 buf[len] = '\0';
676 Magic = buf;
677 return true;
678}
679
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000680bool
Reid Spencer5a060772006-08-23 07:30:48 +0000681Path::renamePathOnDisk(const Path& newName, std::string* ErrMsg) {
Jeff Cohene564de22006-05-07 02:51:51 +0000682 if (!MoveFileEx(path.c_str(), newName.c_str(), MOVEFILE_REPLACE_EXISTING))
Reid Spencer5a060772006-08-23 07:30:48 +0000683 return MakeErrMsg(ErrMsg, "Can't move '" + path + "' to '" + newName.path
684 + "': ");
Nick Lewycky5c632e92008-05-06 03:42:21 +0000685 return false;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000686}
687
688bool
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000689Path::setStatusInfoOnDisk(const FileStatus &si, std::string *ErrMsg) const {
Jeff Cohen966fa412005-07-09 18:42:49 +0000690 // FIXME: should work on directories also.
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000691 if (!si.isFile) {
692 return true;
693 }
694
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000695 HANDLE h = CreateFile(path.c_str(),
696 FILE_READ_ATTRIBUTES | FILE_WRITE_ATTRIBUTES,
697 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
Jeff Cohend40a7de2004-12-31 05:07:26 +0000698 NULL,
699 OPEN_EXISTING,
700 FILE_ATTRIBUTE_NORMAL,
701 NULL);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000702 if (h == INVALID_HANDLE_VALUE)
Chris Lattner1bebfb52006-07-28 22:36:17 +0000703 return true;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000704
705 BY_HANDLE_FILE_INFORMATION bhfi;
706 if (!GetFileInformationByHandle(h, &bhfi)) {
Jeff Cohen51b8d212004-12-31 19:01:08 +0000707 DWORD err = GetLastError();
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000708 CloseHandle(h);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000709 SetLastError(err);
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000710 return MakeErrMsg(ErrMsg, path + ": GetFileInformationByHandle: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000711 }
712
713 FILETIME ft;
714 (uint64_t&)ft = si.modTime.toWin32Time();
715 BOOL ret = SetFileTime(h, NULL, &ft, &ft);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000716 DWORD err = GetLastError();
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000717 CloseHandle(h);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000718 if (!ret) {
719 SetLastError(err);
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000720 return MakeErrMsg(ErrMsg, path + ": SetFileTime: ");
Jeff Cohen51b8d212004-12-31 19:01:08 +0000721 }
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000722
723 // Best we can do with Unix permission bits is to interpret the owner
724 // writable bit.
725 if (si.mode & 0200) {
726 if (bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
727 if (!SetFileAttributes(path.c_str(),
Jeff Cohend40a7de2004-12-31 05:07:26 +0000728 bhfi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY))
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000729 return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000730 }
731 } else {
732 if (!(bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY)) {
733 if (!SetFileAttributes(path.c_str(),
Jeff Cohend40a7de2004-12-31 05:07:26 +0000734 bhfi.dwFileAttributes | FILE_ATTRIBUTE_READONLY))
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000735 return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000736 }
737 }
738
Chris Lattner1bebfb52006-07-28 22:36:17 +0000739 return false;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000740}
741
Reid Spencer30300992006-08-24 18:58:37 +0000742bool
743CopyFile(const sys::Path &Dest, const sys::Path &Src, std::string* ErrMsg) {
Jeff Cohencb652552004-12-24 02:38:34 +0000744 // Can't use CopyFile macro defined in Windows.h because it would mess up the
745 // above line. We use the expansion it would have in a non-UNICODE build.
746 if (!::CopyFileA(Src.c_str(), Dest.c_str(), false))
Reid Spencer30300992006-08-24 18:58:37 +0000747 return MakeErrMsg(ErrMsg, "Can't copy '" + Src.toString() +
Jeff Cohend40a7de2004-12-31 05:07:26 +0000748 "' to '" + Dest.toString() + "': ");
Reid Spencer30300992006-08-24 18:58:37 +0000749 return false;
Reid Spencerc29befb2004-12-15 01:50:13 +0000750}
751
Reid Spencer30300992006-08-24 18:58:37 +0000752bool
753Path::makeUnique(bool reuse_current, std::string* ErrMsg) {
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000754 if (reuse_current && !exists())
Reid Spencer30300992006-08-24 18:58:37 +0000755 return false; // File doesn't exist already, just use it!
Reid Spencerc29befb2004-12-15 01:50:13 +0000756
Jeff Cohen9437bb62005-01-27 03:49:03 +0000757 // Reserve space for -XXXXXX at the end.
758 char *FNBuffer = (char*) alloca(path.size()+8);
759 unsigned offset = path.size();
760 path.copy(FNBuffer, offset);
Reid Spencerc29befb2004-12-15 01:50:13 +0000761
Jeff Cohen966fa412005-07-09 18:42:49 +0000762 // Find a numeric suffix that isn't used by an existing file. Assume there
763 // won't be more than 1 million files with the same prefix. Probably a safe
764 // bet.
Jeff Cohen9437bb62005-01-27 03:49:03 +0000765 static unsigned FCounter = 0;
766 do {
767 sprintf(FNBuffer+offset, "-%06u", FCounter);
768 if (++FCounter > 999999)
769 FCounter = 0;
770 path = FNBuffer;
771 } while (exists());
Reid Spencer30300992006-08-24 18:58:37 +0000772 return false;
Reid Spencerc29befb2004-12-15 01:50:13 +0000773}
774
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000775bool
Reid Spencer30300992006-08-24 18:58:37 +0000776Path::createTemporaryFileOnDisk(bool reuse_current, std::string* ErrMsg) {
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000777 // Make this into a unique file name
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000778 makeUnique(reuse_current, ErrMsg);
Jeff Cohen9437bb62005-01-27 03:49:03 +0000779
780 // Now go and create it
781 HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW,
782 FILE_ATTRIBUTE_NORMAL, NULL);
783 if (h == INVALID_HANDLE_VALUE)
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000784 return MakeErrMsg(ErrMsg, path + ": can't create file");
Jeff Cohen9437bb62005-01-27 03:49:03 +0000785
786 CloseHandle(h);
Reid Spencer30300992006-08-24 18:58:37 +0000787 return false;
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000788}
789
Chris Lattner799ed102008-04-01 06:00:12 +0000790/// MapInFilePages - Not yet implemented on win32.
791const char *Path::MapInFilePages(int FD, uint64_t FileSize) {
792 return 0;
793}
794
795/// MapInFilePages - Not yet implemented on win32.
796void Path::UnMapFilePages(const char *Base, uint64_t FileSize) {
797 assert(0 && "NOT IMPLEMENTED");
798}
799
Reid Spencerb016a372004-09-15 05:49:50 +0000800}
Reid Spencercbad7012004-09-11 04:59:30 +0000801}