blob: b5f63743c9c97691f5a56b09f4bccaccfe5818ef [file] [log] [blame]
Argiris Kirtzidisfb155472008-06-16 10:14:09 +00001//===- llvm/System/Win32/Path.cpp - Win32 Path Implementation ---*- C++ -*-===//
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8// Modified by Henrik Bach to comply with at least MinGW.
9// Ported to Win32 by Jeff Cohen.
10//
11//===----------------------------------------------------------------------===//
12//
13// This file provides the Win32 specific implementation of the Path class.
14//
15//===----------------------------------------------------------------------===//
16
17//===----------------------------------------------------------------------===//
18//=== WARNING: Implementation here must contain only generic Win32 code that
19//=== is guaranteed to work on *all* Win32 variants.
20//===----------------------------------------------------------------------===//
21
22#include "Win32.h"
23#include <malloc.h>
Chris Lattner4b1f1e42009-04-01 02:03:38 +000024#include <cstdio>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000025
26// We need to undo a macro defined in Windows.h, otherwise we won't compile:
27#undef CopyFile
Anton Korobeynikove41a4bd2007-12-22 14:26:49 +000028#undef GetCurrentDirectory
Dan Gohmanf17a25c2007-07-18 16:29:46 +000029
30// 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
40static void FlipBackSlashes(std::string& s) {
41 for (size_t i = 0; i < s.size(); i++)
42 if (s[i] == '\\')
43 s[i] = '/';
44}
45
46namespace llvm {
47namespace sys {
Chris Lattner510190e2008-03-13 05:17:59 +000048const char PathSeparator = ';';
Chris Lattner4b8f1c62008-02-27 06:17:10 +000049
Daniel Dunbar0c740ba2009-12-18 19:59:48 +000050Path::Path(llvm::StringRef p)
Nick Lewycky4fd4b462008-05-11 17:37:40 +000051 : path(p) {
52 FlipBackSlashes(path);
53}
54
55Path::Path(const char *StrStart, unsigned StrLen)
56 : path(StrStart, StrLen) {
57 FlipBackSlashes(path);
58}
59
Chris Lattner43ac42b2008-08-11 23:39:47 +000060Path&
Jeffrey Yasskinb36523a2009-12-17 21:02:39 +000061Path::operator=(StringRef that) {
62 path.assign(that.data(), that.size());
Chris Lattner43ac42b2008-08-11 23:39:47 +000063 FlipBackSlashes(path);
64 return *this;
65}
66
Dan Gohmanf17a25c2007-07-18 16:29:46 +000067bool
68Path::isValid() const {
69 if (path.empty())
70 return false;
71
72 // 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);
76 size_t rootslash = 0;
77 if (pos != std::string::npos) {
78 if (pos != 1 || !isalpha(path[0]) || len < 3)
79 return false;
80 rootslash = 2;
81 }
82
83 // 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;
88 }
89
90 // 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;
96
97 // Remove trailing slash, unless it's a root slash.
98 if (len > rootslash+1 && path[len-1] == '/')
99 path.erase(--len);
100
101 // 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 }
108
109 // 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 }
124
125 return true;
126}
127
Daniel Dunbarbf8e8712009-07-12 20:23:56 +0000128void Path::makeAbsolute() {
129 TCHAR FullPath[MAX_PATH + 1] = {0};
130 LPTSTR FilePart = NULL;
131
132 DWORD RetLength = ::GetFullPathNameA(path.c_str(),
133 sizeof(FullPath)/sizeof(FullPath[0]),
134 FullPath, &FilePart);
135
136 if (0 == RetLength) {
137 // FIXME: Report the error GetLastError()
Daniel Dunbar79d92a12009-07-26 21:16:42 +0000138 assert(0 && "Unable to make absolute path!");
Daniel Dunbarbf8e8712009-07-12 20:23:56 +0000139 } else if (RetLength > MAX_PATH) {
140 // FIXME: Report too small buffer (needed RetLength bytes).
Daniel Dunbar79d92a12009-07-26 21:16:42 +0000141 assert(0 && "Unable to make absolute path!");
Daniel Dunbarbf8e8712009-07-12 20:23:56 +0000142 } else {
143 path = FullPath;
144 }
145}
146
Chris Lattnerd024d8d2009-06-15 04:17:07 +0000147bool
148Path::isAbsolute(const char *NameStart, unsigned NameLen) {
149 assert(NameStart);
Daniel Dunbarbf8e8712009-07-12 20:23:56 +0000150 // FIXME: This does not handle correctly an absolute path starting from
151 // a drive letter or in UNC format.
Chris Lattnerd024d8d2009-06-15 04:17:07 +0000152 switch (NameLen) {
153 case 0:
154 return false;
155 case 1:
156 case 2:
157 return NameStart[0] == '/';
158 default:
Chris Lattner3209a3e2009-08-12 17:47:06 +0000159 return (NameStart[0] == '/' || (NameStart[1] == ':' && NameStart[2] == '/')) ||
160 (NameStart[0] == '\\' || (NameStart[1] == ':' && NameStart[2] == '\\'));
Chris Lattnerd024d8d2009-06-15 04:17:07 +0000161 }
162}
163
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000164bool
165Path::isAbsolute() const {
Daniel Dunbarbf8e8712009-07-12 20:23:56 +0000166 // FIXME: This does not handle correctly an absolute path starting from
167 // a drive letter or in UNC format.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000168 switch (path.length()) {
169 case 0:
170 return false;
171 case 1:
172 case 2:
173 return path[0] == '/';
174 default:
175 return path[0] == '/' || (path[1] == ':' && path[2] == '/');
176 }
177}
178
179static Path *TempDirectory = NULL;
180
181Path
182Path::GetTemporaryDirectory(std::string* ErrMsg) {
183 if (TempDirectory)
184 return *TempDirectory;
185
186 char pathname[MAX_PATH];
187 if (!GetTempPath(MAX_PATH, pathname)) {
188 if (ErrMsg)
189 *ErrMsg = "Can't determine temporary directory";
190 return Path();
191 }
192
193 Path result;
194 result.set(pathname);
195
196 // Append a subdirectory passed on our process id so multiple LLVMs don't
197 // step on each other's toes.
198#ifdef __MINGW32__
199 // Mingw's Win32 header files are broken.
200 sprintf(pathname, "LLVM_%u", unsigned(GetCurrentProcessId()));
201#else
202 sprintf(pathname, "LLVM_%u", GetCurrentProcessId());
203#endif
204 result.appendComponent(pathname);
205
206 // If there's a directory left over from a previous LLVM execution that
207 // happened to have the same process id, get rid of it.
208 result.eraseFromDisk(true);
209
210 // And finally (re-)create the empty directory.
211 result.createDirectoryOnDisk(false);
212 TempDirectory = new Path(result);
213 return *TempDirectory;
214}
215
216// FIXME: the following set of functions don't map to Windows very well.
217Path
218Path::GetRootDirectory() {
219 Path result;
220 result.set("C:/");
221 return result;
222}
223
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000224void
225Path::GetSystemLibraryPaths(std::vector<sys::Path>& Paths) {
226 Paths.push_back(sys::Path("C:/WINDOWS/SYSTEM32"));
227 Paths.push_back(sys::Path("C:/WINDOWS"));
228}
229
230void
231Path::GetBitcodeLibraryPaths(std::vector<sys::Path>& Paths) {
232 char * env_var = getenv("LLVM_LIB_SEARCH_PATH");
233 if (env_var != 0) {
234 getPathList(env_var,Paths);
235 }
236#ifdef LLVM_LIBDIR
237 {
238 Path tmpPath;
239 if (tmpPath.set(LLVM_LIBDIR))
240 if (tmpPath.canRead())
241 Paths.push_back(tmpPath);
242 }
243#endif
244 GetSystemLibraryPaths(Paths);
245}
246
247Path
248Path::GetLLVMDefaultConfigDir() {
249 // TODO: this isn't going to fly on Windows
250 return Path("/etc/llvm");
251}
252
253Path
254Path::GetUserHomeDirectory() {
255 // TODO: Typical Windows setup doesn't define HOME.
256 const char* home = getenv("HOME");
257 if (home) {
258 Path result;
259 if (result.set(home))
260 return result;
261 }
262 return GetRootDirectory();
263}
Ted Kremenekb05c9352007-12-18 22:07:33 +0000264
265Path
266Path::GetCurrentDirectory() {
267 char pathname[MAX_PATH];
Anton Korobeynikove41a4bd2007-12-22 14:26:49 +0000268 ::GetCurrentDirectoryA(MAX_PATH,pathname);
Ted Kremenekb05c9352007-12-18 22:07:33 +0000269 return Path(pathname);
270}
271
Chris Lattner365f2202008-03-03 02:55:43 +0000272/// GetMainExecutable - Return the path to the main executable, given the
273/// value of argv[0] from program startup.
274Path Path::GetMainExecutable(const char *argv0, void *MainAddr) {
Chris Lattner36e1e2d2009-06-15 05:38:04 +0000275 char pathname[MAX_PATH];
276 DWORD ret = ::GetModuleFileNameA(NULL, pathname, MAX_PATH);
277 return ret != MAX_PATH ? Path(pathname) : Path();
Chris Lattner365f2202008-03-03 02:55:43 +0000278}
279
Ted Kremenekb05c9352007-12-18 22:07:33 +0000280
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000281// FIXME: the above set of functions don't map to Windows very well.
282
283
284bool
285Path::isRootDirectory() const {
286 size_t len = path.size();
287 return len > 0 && path[len-1] == '/';
288}
289
Jeffrey Yasskinb36523a2009-12-17 21:02:39 +0000290StringRef Path::getDirname() const {
291 return getDirnameCharSep(path, "/");
Ted Kremenekb169dfa2008-04-07 22:01:32 +0000292}
Ted Kremenek4a4f5ed2008-04-07 21:53:57 +0000293
Jeffrey Yasskinb36523a2009-12-17 21:02:39 +0000294StringRef
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000295Path::getBasename() const {
296 // Find the last slash
297 size_t slash = path.rfind('/');
298 if (slash == std::string::npos)
299 slash = 0;
300 else
301 slash++;
302
303 size_t dot = path.rfind('.');
304 if (dot == std::string::npos || dot < slash)
Jeffrey Yasskinb36523a2009-12-17 21:02:39 +0000305 return StringRef(path).substr(slash);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000306 else
Jeffrey Yasskinb36523a2009-12-17 21:02:39 +0000307 return StringRef(path).substr(slash, dot - slash);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000308}
309
Jeffrey Yasskinb36523a2009-12-17 21:02:39 +0000310StringRef
Argiris Kirtzidisc8f4a3a2008-06-15 15:15:19 +0000311Path::getSuffix() const {
312 // Find the last slash
313 size_t slash = path.rfind('/');
314 if (slash == std::string::npos)
315 slash = 0;
316 else
317 slash++;
318
319 size_t dot = path.rfind('.');
320 if (dot == std::string::npos || dot < slash)
Jeffrey Yasskinb36523a2009-12-17 21:02:39 +0000321 return StringRef("");
Argiris Kirtzidisc8f4a3a2008-06-15 15:15:19 +0000322 else
Jeffrey Yasskinb36523a2009-12-17 21:02:39 +0000323 return StringRef(path).substr(dot + 1);
Argiris Kirtzidisc8f4a3a2008-06-15 15:15:19 +0000324}
325
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000326bool
327Path::exists() const {
328 DWORD attr = GetFileAttributes(path.c_str());
329 return attr != INVALID_FILE_ATTRIBUTES;
330}
331
332bool
Ted Kremenek65149be2007-12-18 19:46:22 +0000333Path::isDirectory() const {
334 DWORD attr = GetFileAttributes(path.c_str());
335 return (attr != INVALID_FILE_ATTRIBUTES) &&
336 (attr & FILE_ATTRIBUTE_DIRECTORY);
337}
338
339bool
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000340Path::canRead() const {
341 // FIXME: take security attributes into account.
342 DWORD attr = GetFileAttributes(path.c_str());
343 return attr != INVALID_FILE_ATTRIBUTES;
344}
345
346bool
347Path::canWrite() const {
348 // FIXME: take security attributes into account.
349 DWORD attr = GetFileAttributes(path.c_str());
350 return (attr != INVALID_FILE_ATTRIBUTES) && !(attr & FILE_ATTRIBUTE_READONLY);
351}
352
353bool
354Path::canExecute() const {
355 // FIXME: take security attributes into account.
356 DWORD attr = GetFileAttributes(path.c_str());
357 return attr != INVALID_FILE_ATTRIBUTES;
358}
359
Edward O'Callaghanf21c0e12009-11-24 15:19:10 +0000360bool
Edward O'Callaghandf580132009-11-25 06:32:19 +0000361Path::isRegularFile() const {
362 if (isDirectory())
363 return false;
364 return true;
Edward O'Callaghanf21c0e12009-11-24 15:19:10 +0000365}
366
Jeffrey Yasskinb36523a2009-12-17 21:02:39 +0000367StringRef
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000368Path::getLast() const {
369 // Find the last slash
370 size_t pos = path.rfind('/');
371
372 // Handle the corner cases
373 if (pos == std::string::npos)
374 return path;
375
376 // If the last character is a slash, we have a root directory
377 if (pos == path.length()-1)
378 return path;
379
380 // Return everything after the last slash
Jeffrey Yasskinb36523a2009-12-17 21:02:39 +0000381 return StringRef(path).substr(pos+1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000382}
383
384const FileStatus *
385PathWithStatus::getFileStatus(bool update, std::string *ErrStr) const {
386 if (!fsIsValid || update) {
387 WIN32_FILE_ATTRIBUTE_DATA fi;
388 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) {
389 MakeErrMsg(ErrStr, "getStatusInfo():" + std::string(path) +
390 ": Can't get status: ");
391 return 0;
392 }
393
394 status.fileSize = fi.nFileSizeHigh;
395 status.fileSize <<= sizeof(fi.nFileSizeHigh)*8;
396 status.fileSize += fi.nFileSizeLow;
397
398 status.mode = fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY ? 0555 : 0777;
399 status.user = 9999; // Not applicable to Windows, so...
400 status.group = 9999; // Not applicable to Windows, so...
401
402 // FIXME: this is only unique if the file is accessed by the same file path.
403 // How do we do this for C:\dir\file and ..\dir\file ? Unix has inode
404 // numbers, but the concept doesn't exist in Windows.
405 status.uniqueID = 0;
406 for (unsigned i = 0; i < path.length(); ++i)
407 status.uniqueID += path[i];
408
409 __int64 ft = *reinterpret_cast<__int64*>(&fi.ftLastWriteTime);
410 status.modTime.fromWin32Time(ft);
411
412 status.isDir = fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY;
413 fsIsValid = true;
414 }
415 return &status;
416}
417
418bool Path::makeReadableOnDisk(std::string* ErrMsg) {
419 // All files are readable on Windows (ignoring security attributes).
420 return false;
421}
422
423bool Path::makeWriteableOnDisk(std::string* ErrMsg) {
424 DWORD attr = GetFileAttributes(path.c_str());
425
426 // If it doesn't exist, we're done.
427 if (attr == INVALID_FILE_ATTRIBUTES)
428 return false;
429
430 if (attr & FILE_ATTRIBUTE_READONLY) {
431 if (!SetFileAttributes(path.c_str(), attr & ~FILE_ATTRIBUTE_READONLY)) {
432 MakeErrMsg(ErrMsg, std::string(path) + ": Can't make file writable: ");
433 return true;
434 }
435 }
436 return false;
437}
438
439bool Path::makeExecutableOnDisk(std::string* ErrMsg) {
440 // All files are executable on Windows (ignoring security attributes).
441 return false;
442}
443
444bool
445Path::getDirectoryContents(std::set<Path>& result, std::string* ErrMsg) const {
446 WIN32_FILE_ATTRIBUTE_DATA fi;
447 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) {
448 MakeErrMsg(ErrMsg, path + ": can't get status of file");
449 return true;
450 }
451
452 if (!(fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) {
453 if (ErrMsg)
454 *ErrMsg = path + ": not a directory";
455 return true;
456 }
457
458 result.clear();
459 WIN32_FIND_DATA fd;
460 std::string searchpath = path;
461 if (path.size() == 0 || searchpath[path.size()-1] == '/')
462 searchpath += "*";
463 else
464 searchpath += "/*";
465
466 HANDLE h = FindFirstFile(searchpath.c_str(), &fd);
467 if (h == INVALID_HANDLE_VALUE) {
468 if (GetLastError() == ERROR_FILE_NOT_FOUND)
469 return true; // not really an error, now is it?
470 MakeErrMsg(ErrMsg, path + ": Can't read directory: ");
471 return true;
472 }
473
474 do {
475 if (fd.cFileName[0] == '.')
476 continue;
477 Path aPath(path);
478 aPath.appendComponent(&fd.cFileName[0]);
479 result.insert(aPath);
480 } while (FindNextFile(h, &fd));
481
482 DWORD err = GetLastError();
483 FindClose(h);
484 if (err != ERROR_NO_MORE_FILES) {
485 SetLastError(err);
486 MakeErrMsg(ErrMsg, path + ": Can't read directory: ");
487 return true;
488 }
489 return false;
490}
491
492bool
Jeffrey Yasskinb36523a2009-12-17 21:02:39 +0000493Path::set(StringRef a_path) {
Dan Gohman301f4052008-01-29 13:02:09 +0000494 if (a_path.empty())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000495 return false;
496 std::string save(path);
497 path = a_path;
498 FlipBackSlashes(path);
499 if (!isValid()) {
500 path = save;
501 return false;
502 }
503 return true;
504}
505
506bool
Jeffrey Yasskinb36523a2009-12-17 21:02:39 +0000507Path::appendComponent(StringRef name) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000508 if (name.empty())
509 return false;
510 std::string save(path);
511 if (!path.empty()) {
512 size_t last = path.size() - 1;
513 if (path[last] != '/')
514 path += '/';
515 }
516 path += name;
517 if (!isValid()) {
518 path = save;
519 return false;
520 }
521 return true;
522}
523
524bool
525Path::eraseComponent() {
526 size_t slashpos = path.rfind('/',path.size());
527 if (slashpos == path.size() - 1 || slashpos == std::string::npos)
528 return false;
529 std::string save(path);
530 path.erase(slashpos);
531 if (!isValid()) {
532 path = save;
533 return false;
534 }
535 return true;
536}
537
538bool
Jeffrey Yasskinb36523a2009-12-17 21:02:39 +0000539Path::appendSuffix(StringRef suffix) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000540 std::string save(path);
541 path.append(".");
542 path.append(suffix);
543 if (!isValid()) {
544 path = save;
545 return false;
546 }
547 return true;
548}
549
550bool
551Path::eraseSuffix() {
552 size_t dotpos = path.rfind('.',path.size());
553 size_t slashpos = path.rfind('/',path.size());
554 if (dotpos != std::string::npos) {
555 if (slashpos == std::string::npos || dotpos > slashpos+1) {
556 std::string save(path);
557 path.erase(dotpos, path.size()-dotpos);
558 if (!isValid()) {
559 path = save;
560 return false;
561 }
562 return true;
563 }
564 }
565 return false;
566}
567
568inline bool PathMsg(std::string* ErrMsg, const char* pathname, const char*msg) {
569 if (ErrMsg)
570 *ErrMsg = std::string(pathname) + ": " + std::string(msg);
571 return true;
572}
573
574bool
575Path::createDirectoryOnDisk(bool create_parents, std::string* ErrMsg) {
576 // Get a writeable copy of the path name
577 size_t len = path.length();
578 char *pathname = reinterpret_cast<char *>(_alloca(len+2));
579 path.copy(pathname, len);
580 pathname[len] = 0;
581
582 // Make sure it ends with a slash.
583 if (len == 0 || pathname[len - 1] != '/') {
584 pathname[len] = '/';
585 pathname[++len] = 0;
586 }
587
588 // Determine starting point for initial / search.
589 char *next = pathname;
590 if (pathname[0] == '/' && pathname[1] == '/') {
591 // Skip host name.
592 next = strchr(pathname+2, '/');
593 if (next == NULL)
594 return PathMsg(ErrMsg, pathname, "badly formed remote directory");
595
596 // Skip share name.
597 next = strchr(next+1, '/');
598 if (next == NULL)
599 return PathMsg(ErrMsg, pathname,"badly formed remote directory");
600
601 next++;
602 if (*next == 0)
603 return PathMsg(ErrMsg, pathname, "badly formed remote directory");
604
605 } else {
606 if (pathname[1] == ':')
607 next += 2; // skip drive letter
608 if (*next == '/')
609 next++; // skip root directory
610 }
611
612 // If we're supposed to create intermediate directories
613 if (create_parents) {
614 // Loop through the directory components until we're done
615 while (*next) {
616 next = strchr(next, '/');
617 *next = 0;
Benjamin Kramerbf0e40c2009-11-05 14:32:40 +0000618 if (!CreateDirectory(pathname, NULL) &&
619 GetLastError() != ERROR_ALREADY_EXISTS)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000620 return MakeErrMsg(ErrMsg,
621 std::string(pathname) + ": Can't create directory: ");
622 *next++ = '/';
623 }
624 } else {
625 // Drop trailing slash.
626 pathname[len-1] = 0;
Benjamin Kramerbf0e40c2009-11-05 14:32:40 +0000627 if (!CreateDirectory(pathname, NULL) &&
628 GetLastError() != ERROR_ALREADY_EXISTS) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000629 return MakeErrMsg(ErrMsg, std::string(pathname) + ": Can't create directory: ");
630 }
631 }
632 return false;
633}
634
635bool
636Path::createFileOnDisk(std::string* ErrMsg) {
637 // Create the file
638 HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW,
639 FILE_ATTRIBUTE_NORMAL, NULL);
640 if (h == INVALID_HANDLE_VALUE)
641 return MakeErrMsg(ErrMsg, path + ": Can't create file: ");
642
643 CloseHandle(h);
644 return false;
645}
646
647bool
648Path::eraseFromDisk(bool remove_contents, std::string *ErrStr) const {
649 WIN32_FILE_ATTRIBUTE_DATA fi;
650 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi))
651 return true;
652
653 if (fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
654 // If it doesn't exist, we're done.
655 if (!exists())
656 return false;
657
658 char *pathname = reinterpret_cast<char *>(_alloca(path.length()+3));
659 int lastchar = path.length() - 1 ;
660 path.copy(pathname, lastchar+1);
661
662 // Make path end with '/*'.
663 if (pathname[lastchar] != '/')
664 pathname[++lastchar] = '/';
665 pathname[lastchar+1] = '*';
666 pathname[lastchar+2] = 0;
667
668 if (remove_contents) {
669 WIN32_FIND_DATA fd;
670 HANDLE h = FindFirstFile(pathname, &fd);
671
672 // It's a bad idea to alter the contents of a directory while enumerating
673 // its contents. So build a list of its contents first, then destroy them.
674
675 if (h != INVALID_HANDLE_VALUE) {
676 std::vector<Path> list;
677
678 do {
679 if (strcmp(fd.cFileName, ".") == 0)
680 continue;
681 if (strcmp(fd.cFileName, "..") == 0)
682 continue;
683
684 Path aPath(path);
685 aPath.appendComponent(&fd.cFileName[0]);
686 list.push_back(aPath);
687 } while (FindNextFile(h, &fd));
688
689 DWORD err = GetLastError();
690 FindClose(h);
691 if (err != ERROR_NO_MORE_FILES) {
692 SetLastError(err);
693 return MakeErrMsg(ErrStr, path + ": Can't read directory: ");
694 }
695
696 for (std::vector<Path>::iterator I = list.begin(); I != list.end();
697 ++I) {
698 Path &aPath = *I;
699 aPath.eraseFromDisk(true);
700 }
701 } else {
702 if (GetLastError() != ERROR_FILE_NOT_FOUND)
703 return MakeErrMsg(ErrStr, path + ": Can't read directory: ");
704 }
705 }
706
707 pathname[lastchar] = 0;
708 if (!RemoveDirectory(pathname))
709 return MakeErrMsg(ErrStr,
710 std::string(pathname) + ": Can't destroy directory: ");
711 return false;
712 } else {
713 // Read-only files cannot be deleted on Windows. Must remove the read-only
714 // attribute first.
715 if (fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
716 if (!SetFileAttributes(path.c_str(),
717 fi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY))
718 return MakeErrMsg(ErrStr, path + ": Can't destroy file: ");
719 }
720
721 if (!DeleteFile(path.c_str()))
722 return MakeErrMsg(ErrStr, path + ": Can't destroy file: ");
723 return false;
724 }
725}
726
727bool Path::getMagicNumber(std::string& Magic, unsigned len) const {
728 assert(len < 1024 && "Request for magic string too long");
729 char* buf = (char*) alloca(1 + len);
730
731 HANDLE h = CreateFile(path.c_str(),
732 GENERIC_READ,
733 FILE_SHARE_READ,
734 NULL,
735 OPEN_EXISTING,
736 FILE_ATTRIBUTE_NORMAL,
737 NULL);
738 if (h == INVALID_HANDLE_VALUE)
739 return false;
740
741 DWORD nRead = 0;
742 BOOL ret = ReadFile(h, buf, len, &nRead, NULL);
743 CloseHandle(h);
744
745 if (!ret || nRead != len)
746 return false;
747
748 buf[len] = '\0';
749 Magic = buf;
750 return true;
751}
752
753bool
754Path::renamePathOnDisk(const Path& newName, std::string* ErrMsg) {
755 if (!MoveFileEx(path.c_str(), newName.c_str(), MOVEFILE_REPLACE_EXISTING))
756 return MakeErrMsg(ErrMsg, "Can't move '" + path + "' to '" + newName.path
757 + "': ");
Nick Lewyckyc74d8f92008-05-06 03:42:21 +0000758 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000759}
760
761bool
762Path::setStatusInfoOnDisk(const FileStatus &si, std::string *ErrMsg) const {
763 // FIXME: should work on directories also.
764 if (!si.isFile) {
765 return true;
766 }
767
768 HANDLE h = CreateFile(path.c_str(),
769 FILE_READ_ATTRIBUTES | FILE_WRITE_ATTRIBUTES,
770 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
771 NULL,
772 OPEN_EXISTING,
773 FILE_ATTRIBUTE_NORMAL,
774 NULL);
775 if (h == INVALID_HANDLE_VALUE)
776 return true;
777
778 BY_HANDLE_FILE_INFORMATION bhfi;
779 if (!GetFileInformationByHandle(h, &bhfi)) {
780 DWORD err = GetLastError();
781 CloseHandle(h);
782 SetLastError(err);
783 return MakeErrMsg(ErrMsg, path + ": GetFileInformationByHandle: ");
784 }
785
786 FILETIME ft;
787 (uint64_t&)ft = si.modTime.toWin32Time();
788 BOOL ret = SetFileTime(h, NULL, &ft, &ft);
789 DWORD err = GetLastError();
790 CloseHandle(h);
791 if (!ret) {
792 SetLastError(err);
793 return MakeErrMsg(ErrMsg, path + ": SetFileTime: ");
794 }
795
796 // Best we can do with Unix permission bits is to interpret the owner
797 // writable bit.
798 if (si.mode & 0200) {
799 if (bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
800 if (!SetFileAttributes(path.c_str(),
801 bhfi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY))
802 return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: ");
803 }
804 } else {
805 if (!(bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY)) {
806 if (!SetFileAttributes(path.c_str(),
807 bhfi.dwFileAttributes | FILE_ATTRIBUTE_READONLY))
808 return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: ");
809 }
810 }
811
812 return false;
813}
814
815bool
816CopyFile(const sys::Path &Dest, const sys::Path &Src, std::string* ErrMsg) {
817 // Can't use CopyFile macro defined in Windows.h because it would mess up the
818 // above line. We use the expansion it would have in a non-UNICODE build.
819 if (!::CopyFileA(Src.c_str(), Dest.c_str(), false))
Chris Lattnerb1aa85b2009-08-23 22:45:37 +0000820 return MakeErrMsg(ErrMsg, "Can't copy '" + Src.str() +
821 "' to '" + Dest.str() + "': ");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000822 return false;
823}
824
825bool
826Path::makeUnique(bool reuse_current, std::string* ErrMsg) {
827 if (reuse_current && !exists())
828 return false; // File doesn't exist already, just use it!
829
830 // Reserve space for -XXXXXX at the end.
831 char *FNBuffer = (char*) alloca(path.size()+8);
832 unsigned offset = path.size();
833 path.copy(FNBuffer, offset);
834
835 // Find a numeric suffix that isn't used by an existing file. Assume there
836 // won't be more than 1 million files with the same prefix. Probably a safe
837 // bet.
838 static unsigned FCounter = 0;
839 do {
840 sprintf(FNBuffer+offset, "-%06u", FCounter);
841 if (++FCounter > 999999)
842 FCounter = 0;
843 path = FNBuffer;
844 } while (exists());
845 return false;
846}
847
848bool
849Path::createTemporaryFileOnDisk(bool reuse_current, std::string* ErrMsg) {
850 // Make this into a unique file name
851 makeUnique(reuse_current, ErrMsg);
852
853 // Now go and create it
854 HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW,
855 FILE_ATTRIBUTE_NORMAL, NULL);
856 if (h == INVALID_HANDLE_VALUE)
857 return MakeErrMsg(ErrMsg, path + ": can't create file");
858
859 CloseHandle(h);
860 return false;
861}
862
Chris Lattner157d70a2008-04-01 06:00:12 +0000863/// MapInFilePages - Not yet implemented on win32.
864const char *Path::MapInFilePages(int FD, uint64_t FileSize) {
865 return 0;
866}
867
868/// MapInFilePages - Not yet implemented on win32.
869void Path::UnMapFilePages(const char *Base, uint64_t FileSize) {
870 assert(0 && "NOT IMPLEMENTED");
871}
872
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000873}
874}