e517eece7379a9561d90a4047281b4c7b5b4e9c7
[oota-llvm.git] / lib / Support / Windows / Path.inc
1 //===- llvm/System/Win32/Path.cpp - Win32 Path Implementation ---*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file provides the Win32 specific implementation of the Path class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 //===----------------------------------------------------------------------===//
15 //=== WARNING: Implementation here must contain only generic Win32 code that
16 //===          is guaranteed to work on *all* Win32 variants.
17 //===----------------------------------------------------------------------===//
18
19 #include "Windows.h"
20 #include <malloc.h>
21 #include <cstdio>
22
23 // We need to undo a macro defined in Windows.h, otherwise we won't compile:
24 #undef CopyFile
25 #undef GetCurrentDirectory
26
27 // Windows happily accepts either forward or backward slashes, though any path
28 // returned by a Win32 API will have backward slashes.  As LLVM code basically
29 // assumes forward slashes are used, backward slashs are converted where they
30 // can be introduced into a path.
31 //
32 // Another invariant is that a path ends with a slash if and only if the path
33 // is a root directory.  Any other use of a trailing slash is stripped.  Unlike
34 // in Unix, Windows has a rather complicated notion of a root path and this
35 // invariant helps simply the code.
36
37 static void FlipBackSlashes(std::string& s) {
38   for (size_t i = 0; i < s.size(); i++)
39     if (s[i] == '\\')
40       s[i] = '/';
41 }
42
43 namespace llvm {
44 namespace sys {
45
46 const char PathSeparator = ';';
47
48 StringRef Path::GetEXESuffix() {
49   return "exe";
50 }
51
52 Path::Path(llvm::StringRef p)
53   : path(p) {
54   FlipBackSlashes(path);
55 }
56
57 Path::Path(const char *StrStart, unsigned StrLen)
58   : path(StrStart, StrLen) {
59   FlipBackSlashes(path);
60 }
61
62 Path&
63 Path::operator=(StringRef that) {
64   path.assign(that.data(), that.size());
65   FlipBackSlashes(path);
66   return *this;
67 }
68
69 // push_back 0 on create, and pop_back on delete.
70 struct ScopedNullTerminator {
71   std::string &str;
72   ScopedNullTerminator(std::string &s) : str(s) { str.push_back(0); }
73   ~ScopedNullTerminator() {
74     // str.pop_back(); But wait, C++03 doesn't have this...
75     assert(!str.empty() && str[str.size() - 1] == 0
76       && "Null char not present!");
77     str.resize(str.size() - 1);
78   }
79 };
80
81 bool
82 Path::isValid() const {
83   if (path.empty())
84     return false;
85
86   // If there is a colon, it must be the second character, preceded by a letter
87   // and followed by something.
88   size_t len = path.size();
89   // This code assumes that path is null terminated, so make sure it is.
90   ScopedNullTerminator snt(path);
91   size_t pos = path.rfind(':',len);
92   size_t rootslash = 0;
93   if (pos != std::string::npos) {
94     if (pos != 1 || !isalpha(path[0]) || len < 3)
95       return false;
96       rootslash = 2;
97   }
98
99   // Look for a UNC path, and if found adjust our notion of the root slash.
100   if (len > 3 && path[0] == '/' && path[1] == '/') {
101     rootslash = path.find('/', 2);
102     if (rootslash == std::string::npos)
103       rootslash = 0;
104   }
105
106   // Check for illegal characters.
107   if (path.find_first_of("\\<>\"|\001\002\003\004\005\006\007\010\011\012"
108                          "\013\014\015\016\017\020\021\022\023\024\025\026"
109                          "\027\030\031\032\033\034\035\036\037")
110       != std::string::npos)
111     return false;
112
113   // Remove trailing slash, unless it's a root slash.
114   if (len > rootslash+1 && path[len-1] == '/')
115     path.erase(--len);
116
117   // Check each component for legality.
118   for (pos = 0; pos < len; ++pos) {
119     // A component may not end in a space.
120     if (path[pos] == ' ') {
121       if (path[pos+1] == '/' || path[pos+1] == '\0')
122         return false;
123     }
124
125     // A component may not end in a period.
126     if (path[pos] == '.') {
127       if (path[pos+1] == '/' || path[pos+1] == '\0') {
128         // Unless it is the pseudo-directory "."...
129         if (pos == 0 || path[pos-1] == '/' || path[pos-1] == ':')
130           return true;
131         // or "..".
132         if (pos > 0 && path[pos-1] == '.') {
133           if (pos == 1 || path[pos-2] == '/' || path[pos-2] == ':')
134             return true;
135         }
136         return false;
137       }
138     }
139   }
140
141   return true;
142 }
143
144 void Path::makeAbsolute() {
145   TCHAR  FullPath[MAX_PATH + 1] = {0};
146   LPTSTR FilePart = NULL;
147
148   DWORD RetLength = ::GetFullPathNameA(path.c_str(),
149                         sizeof(FullPath)/sizeof(FullPath[0]),
150                         FullPath, &FilePart);
151
152   if (0 == RetLength) {
153     // FIXME: Report the error GetLastError()
154     assert(0 && "Unable to make absolute path!");
155   } else if (RetLength > MAX_PATH) {
156     // FIXME: Report too small buffer (needed RetLength bytes).
157     assert(0 && "Unable to make absolute path!");
158   } else {
159     path = FullPath;
160   }
161 }
162
163 bool
164 Path::isAbsolute(const char *NameStart, unsigned NameLen) {
165   assert(NameStart);
166   // FIXME: This does not handle correctly an absolute path starting from
167   // a drive letter or in UNC format.
168   switch (NameLen) {
169   case 0:
170     return false;
171   case 1:
172   case 2:
173     return NameStart[0] == '/';
174   default:
175     return
176       (NameStart[0] == '/' || (NameStart[1] == ':' && NameStart[2] == '/')) ||
177       (NameStart[0] == '\\' || (NameStart[1] == ':' && NameStart[2] == '\\'));
178   }
179 }
180
181 bool
182 Path::isAbsolute() const {
183   // FIXME: This does not handle correctly an absolute path starting from
184   // a drive letter or in UNC format.
185   switch (path.length()) {
186     case 0:
187       return false;
188     case 1:
189     case 2:
190       return path[0] == '/';
191     default:
192       return path[0] == '/' || (path[1] == ':' && path[2] == '/');
193   }
194 }
195
196 static Path *TempDirectory;
197
198 Path
199 Path::GetTemporaryDirectory(std::string* ErrMsg) {
200   if (TempDirectory)
201     return *TempDirectory;
202
203   char pathname[MAX_PATH];
204   if (!GetTempPath(MAX_PATH, pathname)) {
205     if (ErrMsg)
206       *ErrMsg = "Can't determine temporary directory";
207     return Path();
208   }
209
210   Path result;
211   result.set(pathname);
212
213   // Append a subdirectory passed on our process id so multiple LLVMs don't
214   // step on each other's toes.
215 #ifdef __MINGW32__
216   // Mingw's Win32 header files are broken.
217   sprintf(pathname, "LLVM_%u", unsigned(GetCurrentProcessId()));
218 #else
219   sprintf(pathname, "LLVM_%u", GetCurrentProcessId());
220 #endif
221   result.appendComponent(pathname);
222
223   // If there's a directory left over from a previous LLVM execution that
224   // happened to have the same process id, get rid of it.
225   result.eraseFromDisk(true);
226
227   // And finally (re-)create the empty directory.
228   result.createDirectoryOnDisk(false);
229   TempDirectory = new Path(result);
230   return *TempDirectory;
231 }
232
233 // FIXME: the following set of functions don't map to Windows very well.
234 Path
235 Path::GetRootDirectory() {
236   // This is the only notion that that Windows has of a root directory. Nothing
237   // is here except for drives.
238   return Path("file:///");
239 }
240
241 void
242 Path::GetSystemLibraryPaths(std::vector<sys::Path>& Paths) {
243   char buff[MAX_PATH];
244   // Generic form of C:\Windows\System32
245   HRESULT res =  SHGetFolderPathA(NULL,
246                                   CSIDL_FLAG_CREATE | CSIDL_SYSTEM,
247                                   NULL,
248                                   SHGFP_TYPE_CURRENT,
249                                   buff);
250   if (res != S_OK) {
251     assert(0 && "Failed to get system directory");
252     return;
253   }
254   Paths.push_back(sys::Path(buff));
255
256   // Reset buff.
257   buff[0] = 0;
258   // Generic form of C:\Windows
259   res =  SHGetFolderPathA(NULL,
260                           CSIDL_FLAG_CREATE | CSIDL_WINDOWS,
261                           NULL,
262                           SHGFP_TYPE_CURRENT,
263                           buff);
264   if (res != S_OK) {
265     assert(0 && "Failed to get windows directory");
266     return;
267   }
268   Paths.push_back(sys::Path(buff));
269 }
270
271 void
272 Path::GetBitcodeLibraryPaths(std::vector<sys::Path>& Paths) {
273   char * env_var = getenv("LLVM_LIB_SEARCH_PATH");
274   if (env_var != 0) {
275     getPathList(env_var,Paths);
276   }
277 #ifdef LLVM_LIBDIR
278   {
279     Path tmpPath;
280     if (tmpPath.set(LLVM_LIBDIR))
281       if (tmpPath.canRead())
282         Paths.push_back(tmpPath);
283   }
284 #endif
285   GetSystemLibraryPaths(Paths);
286 }
287
288 Path
289 Path::GetLLVMDefaultConfigDir() {
290   Path ret = GetUserHomeDirectory();
291   if (!ret.appendComponent(".llvm"))
292     assert(0 && "Failed to append .llvm");
293   return ret;
294 }
295
296 Path
297 Path::GetUserHomeDirectory() {
298   char buff[MAX_PATH];
299   HRESULT res = SHGetFolderPathA(NULL,
300                                  CSIDL_FLAG_CREATE | CSIDL_APPDATA,
301                                  NULL,
302                                  SHGFP_TYPE_CURRENT,
303                                  buff);
304   if (res != S_OK)
305     assert(0 && "Failed to get user home directory");
306   return Path(buff);
307 }
308
309 Path
310 Path::GetCurrentDirectory() {
311   char pathname[MAX_PATH];
312   ::GetCurrentDirectoryA(MAX_PATH,pathname);
313   return Path(pathname);
314 }
315
316 /// GetMainExecutable - Return the path to the main executable, given the
317 /// value of argv[0] from program startup.
318 Path Path::GetMainExecutable(const char *argv0, void *MainAddr) {
319   char pathname[MAX_PATH];
320   DWORD ret = ::GetModuleFileNameA(NULL, pathname, MAX_PATH);
321   return ret != MAX_PATH ? Path(pathname) : Path();
322 }
323
324
325 // FIXME: the above set of functions don't map to Windows very well.
326
327
328 StringRef Path::getDirname() const {
329   return getDirnameCharSep(path, "/");
330 }
331
332 StringRef
333 Path::getBasename() const {
334   // Find the last slash
335   size_t slash = path.rfind('/');
336   if (slash == std::string::npos)
337     slash = 0;
338   else
339     slash++;
340
341   size_t dot = path.rfind('.');
342   if (dot == std::string::npos || dot < slash)
343     return StringRef(path).substr(slash);
344   else
345     return StringRef(path).substr(slash, dot - slash);
346 }
347
348 StringRef
349 Path::getSuffix() const {
350   // Find the last slash
351   size_t slash = path.rfind('/');
352   if (slash == std::string::npos)
353     slash = 0;
354   else
355     slash++;
356
357   size_t dot = path.rfind('.');
358   if (dot == std::string::npos || dot < slash)
359     return StringRef("");
360   else
361     return StringRef(path).substr(dot + 1);
362 }
363
364 bool
365 Path::exists() const {
366   DWORD attr = GetFileAttributes(path.c_str());
367   return attr != INVALID_FILE_ATTRIBUTES;
368 }
369
370 bool
371 Path::isDirectory() const {
372   DWORD attr = GetFileAttributes(path.c_str());
373   return (attr != INVALID_FILE_ATTRIBUTES) &&
374          (attr & FILE_ATTRIBUTE_DIRECTORY);
375 }
376
377 bool
378 Path::isSymLink() const {
379   DWORD attributes = GetFileAttributes(path.c_str());
380
381   if (attributes == INVALID_FILE_ATTRIBUTES)
382     // There's no sane way to report this :(.
383     assert(0 && "GetFileAttributes returned INVALID_FILE_ATTRIBUTES");
384
385   // This isn't exactly what defines a NTFS symlink, but it is only true for
386   // paths that act like a symlink.
387   return attributes & FILE_ATTRIBUTE_REPARSE_POINT;
388 }
389
390 bool
391 Path::canRead() const {
392   // FIXME: take security attributes into account.
393   DWORD attr = GetFileAttributes(path.c_str());
394   return attr != INVALID_FILE_ATTRIBUTES;
395 }
396
397 bool
398 Path::canWrite() const {
399   // FIXME: take security attributes into account.
400   DWORD attr = GetFileAttributes(path.c_str());
401   return (attr != INVALID_FILE_ATTRIBUTES) && !(attr & FILE_ATTRIBUTE_READONLY);
402 }
403
404 bool
405 Path::canExecute() const {
406   // FIXME: take security attributes into account.
407   DWORD attr = GetFileAttributes(path.c_str());
408   return attr != INVALID_FILE_ATTRIBUTES;
409 }
410
411 bool
412 Path::isRegularFile() const {
413   if (isDirectory())
414     return false;
415   return true;
416 }
417
418 StringRef
419 Path::getLast() const {
420   // Find the last slash
421   size_t pos = path.rfind('/');
422
423   // Handle the corner cases
424   if (pos == std::string::npos)
425     return path;
426
427   // If the last character is a slash, we have a root directory
428   if (pos == path.length()-1)
429     return path;
430
431   // Return everything after the last slash
432   return StringRef(path).substr(pos+1);
433 }
434
435 const FileStatus *
436 PathWithStatus::getFileStatus(bool update, std::string *ErrStr) const {
437   if (!fsIsValid || update) {
438     WIN32_FILE_ATTRIBUTE_DATA fi;
439     if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) {
440       MakeErrMsg(ErrStr, "getStatusInfo():" + std::string(path) +
441                       ": Can't get status: ");
442       return 0;
443     }
444
445     status.fileSize = fi.nFileSizeHigh;
446     status.fileSize <<= sizeof(fi.nFileSizeHigh)*8;
447     status.fileSize += fi.nFileSizeLow;
448
449     status.mode = fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY ? 0555 : 0777;
450     status.user = 9999;    // Not applicable to Windows, so...
451     status.group = 9999;   // Not applicable to Windows, so...
452
453     // FIXME: this is only unique if the file is accessed by the same file path.
454     // How do we do this for C:\dir\file and ..\dir\file ? Unix has inode
455     // numbers, but the concept doesn't exist in Windows.
456     status.uniqueID = 0;
457     for (unsigned i = 0; i < path.length(); ++i)
458       status.uniqueID += path[i];
459
460     ULARGE_INTEGER ui;
461     ui.LowPart = fi.ftLastWriteTime.dwLowDateTime;
462     ui.HighPart = fi.ftLastWriteTime.dwHighDateTime;
463     status.modTime.fromWin32Time(ui.QuadPart);
464
465     status.isDir = fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY;
466     fsIsValid = true;
467   }
468   return &status;
469 }
470
471 bool Path::makeReadableOnDisk(std::string* ErrMsg) {
472   // All files are readable on Windows (ignoring security attributes).
473   return false;
474 }
475
476 bool Path::makeWriteableOnDisk(std::string* ErrMsg) {
477   DWORD attr = GetFileAttributes(path.c_str());
478
479   // If it doesn't exist, we're done.
480   if (attr == INVALID_FILE_ATTRIBUTES)
481     return false;
482
483   if (attr & FILE_ATTRIBUTE_READONLY) {
484     if (!SetFileAttributes(path.c_str(), attr & ~FILE_ATTRIBUTE_READONLY)) {
485       MakeErrMsg(ErrMsg, std::string(path) + ": Can't make file writable: ");
486       return true;
487     }
488   }
489   return false;
490 }
491
492 bool Path::makeExecutableOnDisk(std::string* ErrMsg) {
493   // All files are executable on Windows (ignoring security attributes).
494   return false;
495 }
496
497 bool
498 Path::getDirectoryContents(std::set<Path>& result, std::string* ErrMsg) const {
499   WIN32_FILE_ATTRIBUTE_DATA fi;
500   if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) {
501     MakeErrMsg(ErrMsg, path + ": can't get status of file");
502     return true;
503   }
504
505   if (!(fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) {
506     if (ErrMsg)
507       *ErrMsg = path + ": not a directory";
508     return true;
509   }
510
511   result.clear();
512   WIN32_FIND_DATA fd;
513   std::string searchpath = path;
514   if (path.size() == 0 || searchpath[path.size()-1] == '/')
515     searchpath += "*";
516   else
517     searchpath += "/*";
518
519   HANDLE h = FindFirstFile(searchpath.c_str(), &fd);
520   if (h == INVALID_HANDLE_VALUE) {
521     if (GetLastError() == ERROR_FILE_NOT_FOUND)
522       return true; // not really an error, now is it?
523     MakeErrMsg(ErrMsg, path + ": Can't read directory: ");
524     return true;
525   }
526
527   do {
528     if (fd.cFileName[0] == '.')
529       continue;
530     Path aPath(path);
531     aPath.appendComponent(&fd.cFileName[0]);
532     result.insert(aPath);
533   } while (FindNextFile(h, &fd));
534
535   DWORD err = GetLastError();
536   FindClose(h);
537   if (err != ERROR_NO_MORE_FILES) {
538     SetLastError(err);
539     MakeErrMsg(ErrMsg, path + ": Can't read directory: ");
540     return true;
541   }
542   return false;
543 }
544
545 bool
546 Path::set(StringRef a_path) {
547   if (a_path.empty())
548     return false;
549   std::string save(path);
550   path = a_path;
551   FlipBackSlashes(path);
552   if (!isValid()) {
553     path = save;
554     return false;
555   }
556   return true;
557 }
558
559 bool
560 Path::appendComponent(StringRef name) {
561   if (name.empty())
562     return false;
563   std::string save(path);
564   if (!path.empty()) {
565     size_t last = path.size() - 1;
566     if (path[last] != '/')
567       path += '/';
568   }
569   path += name;
570   if (!isValid()) {
571     path = save;
572     return false;
573   }
574   return true;
575 }
576
577 bool
578 Path::eraseComponent() {
579   size_t slashpos = path.rfind('/',path.size());
580   if (slashpos == path.size() - 1 || slashpos == std::string::npos)
581     return false;
582   std::string save(path);
583   path.erase(slashpos);
584   if (!isValid()) {
585     path = save;
586     return false;
587   }
588   return true;
589 }
590
591 bool
592 Path::eraseSuffix() {
593   size_t dotpos = path.rfind('.',path.size());
594   size_t slashpos = path.rfind('/',path.size());
595   if (dotpos != std::string::npos) {
596     if (slashpos == std::string::npos || dotpos > slashpos+1) {
597       std::string save(path);
598       path.erase(dotpos, path.size()-dotpos);
599       if (!isValid()) {
600         path = save;
601         return false;
602       }
603       return true;
604     }
605   }
606   return false;
607 }
608
609 inline bool PathMsg(std::string* ErrMsg, const char* pathname, const char*msg) {
610   if (ErrMsg)
611     *ErrMsg = std::string(pathname) + ": " + std::string(msg);
612   return true;
613 }
614
615 bool
616 Path::createDirectoryOnDisk(bool create_parents, std::string* ErrMsg) {
617   // Get a writeable copy of the path name
618   size_t len = path.length();
619   char *pathname = reinterpret_cast<char *>(_alloca(len+2));
620   path.copy(pathname, len);
621   pathname[len] = 0;
622
623   // Make sure it ends with a slash.
624   if (len == 0 || pathname[len - 1] != '/') {
625     pathname[len] = '/';
626     pathname[++len] = 0;
627   }
628
629   // Determine starting point for initial / search.
630   char *next = pathname;
631   if (pathname[0] == '/' && pathname[1] == '/') {
632     // Skip host name.
633     next = strchr(pathname+2, '/');
634     if (next == NULL)
635       return PathMsg(ErrMsg, pathname, "badly formed remote directory");
636
637     // Skip share name.
638     next = strchr(next+1, '/');
639     if (next == NULL)
640       return PathMsg(ErrMsg, pathname,"badly formed remote directory");
641
642     next++;
643     if (*next == 0)
644       return PathMsg(ErrMsg, pathname, "badly formed remote directory");
645
646   } else {
647     if (pathname[1] == ':')
648       next += 2;    // skip drive letter
649     if (*next == '/')
650       next++;       // skip root directory
651   }
652
653   // If we're supposed to create intermediate directories
654   if (create_parents) {
655     // Loop through the directory components until we're done
656     while (*next) {
657       next = strchr(next, '/');
658       *next = 0;
659       if (!CreateDirectory(pathname, NULL) &&
660           GetLastError() != ERROR_ALREADY_EXISTS)
661           return MakeErrMsg(ErrMsg,
662             std::string(pathname) + ": Can't create directory: ");
663       *next++ = '/';
664     }
665   } else {
666     // Drop trailing slash.
667     pathname[len-1] = 0;
668     if (!CreateDirectory(pathname, NULL) &&
669         GetLastError() != ERROR_ALREADY_EXISTS) {
670       return MakeErrMsg(ErrMsg, std::string(pathname) +
671                         ": Can't create directory: ");
672     }
673   }
674   return false;
675 }
676
677 bool
678 Path::createFileOnDisk(std::string* ErrMsg) {
679   // Create the file
680   HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW,
681                         FILE_ATTRIBUTE_NORMAL, NULL);
682   if (h == INVALID_HANDLE_VALUE)
683     return MakeErrMsg(ErrMsg, path + ": Can't create file: ");
684
685   CloseHandle(h);
686   return false;
687 }
688
689 bool
690 Path::eraseFromDisk(bool remove_contents, std::string *ErrStr) const {
691   WIN32_FILE_ATTRIBUTE_DATA fi;
692   if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi))
693     return true;
694
695   if (fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
696     // If it doesn't exist, we're done.
697     if (!exists())
698       return false;
699
700     char *pathname = reinterpret_cast<char *>(_alloca(path.length()+3));
701     int lastchar = path.length() - 1 ;
702     path.copy(pathname, lastchar+1);
703
704     // Make path end with '/*'.
705     if (pathname[lastchar] != '/')
706       pathname[++lastchar] = '/';
707     pathname[lastchar+1] = '*';
708     pathname[lastchar+2] = 0;
709
710     if (remove_contents) {
711       WIN32_FIND_DATA fd;
712       HANDLE h = FindFirstFile(pathname, &fd);
713
714       // It's a bad idea to alter the contents of a directory while enumerating
715       // its contents. So build a list of its contents first, then destroy them.
716
717       if (h != INVALID_HANDLE_VALUE) {
718         std::vector<Path> list;
719
720         do {
721           if (strcmp(fd.cFileName, ".") == 0)
722             continue;
723           if (strcmp(fd.cFileName, "..") == 0)
724             continue;
725
726           Path aPath(path);
727           aPath.appendComponent(&fd.cFileName[0]);
728           list.push_back(aPath);
729         } while (FindNextFile(h, &fd));
730
731         DWORD err = GetLastError();
732         FindClose(h);
733         if (err != ERROR_NO_MORE_FILES) {
734           SetLastError(err);
735           return MakeErrMsg(ErrStr, path + ": Can't read directory: ");
736         }
737
738         for (std::vector<Path>::iterator I = list.begin(); I != list.end();
739              ++I) {
740           Path &aPath = *I;
741           aPath.eraseFromDisk(true);
742         }
743       } else {
744         if (GetLastError() != ERROR_FILE_NOT_FOUND)
745           return MakeErrMsg(ErrStr, path + ": Can't read directory: ");
746       }
747     }
748
749     pathname[lastchar] = 0;
750     if (!RemoveDirectory(pathname))
751       return MakeErrMsg(ErrStr,
752         std::string(pathname) + ": Can't destroy directory: ");
753     return false;
754   } else {
755     // Read-only files cannot be deleted on Windows.  Must remove the read-only
756     // attribute first.
757     if (fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
758       if (!SetFileAttributes(path.c_str(),
759                              fi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY))
760         return MakeErrMsg(ErrStr, path + ": Can't destroy file: ");
761     }
762
763     if (!DeleteFile(path.c_str()))
764       return MakeErrMsg(ErrStr, path + ": Can't destroy file: ");
765     return false;
766   }
767 }
768
769 bool Path::getMagicNumber(std::string& Magic, unsigned len) const {
770   assert(len < 1024 && "Request for magic string too long");
771   char* buf = reinterpret_cast<char*>(alloca(len));
772
773   HANDLE h = CreateFile(path.c_str(),
774                         GENERIC_READ,
775                         FILE_SHARE_READ,
776                         NULL,
777                         OPEN_EXISTING,
778                         FILE_ATTRIBUTE_NORMAL,
779                         NULL);
780   if (h == INVALID_HANDLE_VALUE)
781     return false;
782
783   DWORD nRead = 0;
784   BOOL ret = ReadFile(h, buf, len, &nRead, NULL);
785   CloseHandle(h);
786
787   if (!ret || nRead != len)
788     return false;
789
790   Magic = std::string(buf, len);
791   return true;
792 }
793
794 bool
795 Path::renamePathOnDisk(const Path& newName, std::string* ErrMsg) {
796   if (!MoveFileEx(path.c_str(), newName.c_str(), MOVEFILE_REPLACE_EXISTING))
797     return MakeErrMsg(ErrMsg, "Can't move '" + path + "' to '" + newName.path
798         + "': ");
799   return false;
800 }
801
802 bool
803 Path::setStatusInfoOnDisk(const FileStatus &si, std::string *ErrMsg) const {
804   // FIXME: should work on directories also.
805   if (!si.isFile) {
806     return true;
807   }
808
809   HANDLE h = CreateFile(path.c_str(),
810                         FILE_READ_ATTRIBUTES | FILE_WRITE_ATTRIBUTES,
811                         FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
812                         NULL,
813                         OPEN_EXISTING,
814                         FILE_ATTRIBUTE_NORMAL,
815                         NULL);
816   if (h == INVALID_HANDLE_VALUE)
817     return true;
818
819   BY_HANDLE_FILE_INFORMATION bhfi;
820   if (!GetFileInformationByHandle(h, &bhfi)) {
821     DWORD err = GetLastError();
822     CloseHandle(h);
823     SetLastError(err);
824     return MakeErrMsg(ErrMsg, path + ": GetFileInformationByHandle: ");
825   }
826
827   ULARGE_INTEGER ui;
828   ui.QuadPart = si.modTime.toWin32Time();
829   FILETIME ft;
830   ft.dwLowDateTime = ui.LowPart;
831   ft.dwHighDateTime = ui.HighPart;
832   BOOL ret = SetFileTime(h, NULL, &ft, &ft);
833   DWORD err = GetLastError();
834   CloseHandle(h);
835   if (!ret) {
836     SetLastError(err);
837     return MakeErrMsg(ErrMsg, path + ": SetFileTime: ");
838   }
839
840   // Best we can do with Unix permission bits is to interpret the owner
841   // writable bit.
842   if (si.mode & 0200) {
843     if (bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
844       if (!SetFileAttributes(path.c_str(),
845               bhfi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY))
846         return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: ");
847     }
848   } else {
849     if (!(bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY)) {
850       if (!SetFileAttributes(path.c_str(),
851               bhfi.dwFileAttributes | FILE_ATTRIBUTE_READONLY))
852         return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: ");
853     }
854   }
855
856   return false;
857 }
858
859 bool
860 CopyFile(const sys::Path &Dest, const sys::Path &Src, std::string* ErrMsg) {
861   // Can't use CopyFile macro defined in Windows.h because it would mess up the
862   // above line.  We use the expansion it would have in a non-UNICODE build.
863   if (!::CopyFileA(Src.c_str(), Dest.c_str(), false))
864     return MakeErrMsg(ErrMsg, "Can't copy '" + Src.str() +
865                "' to '" + Dest.str() + "': ");
866   return false;
867 }
868
869 bool
870 Path::makeUnique(bool reuse_current, std::string* ErrMsg) {
871   if (reuse_current && !exists())
872     return false; // File doesn't exist already, just use it!
873
874   // Reserve space for -XXXXXX at the end.
875   char *FNBuffer = (char*) alloca(path.size()+8);
876   unsigned offset = path.size();
877   path.copy(FNBuffer, offset);
878
879   // Find a numeric suffix that isn't used by an existing file.  Assume there
880   // won't be more than 1 million files with the same prefix.  Probably a safe
881   // bet.
882   static unsigned FCounter = 0;
883   do {
884     sprintf(FNBuffer+offset, "-%06u", FCounter);
885     if (++FCounter > 999999)
886       FCounter = 0;
887     path = FNBuffer;
888   } while (exists());
889   return false;
890 }
891
892 bool
893 Path::createTemporaryFileOnDisk(bool reuse_current, std::string* ErrMsg) {
894   // Make this into a unique file name
895   makeUnique(reuse_current, ErrMsg);
896
897   // Now go and create it
898   HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW,
899                         FILE_ATTRIBUTE_NORMAL, NULL);
900   if (h == INVALID_HANDLE_VALUE)
901     return MakeErrMsg(ErrMsg, path + ": can't create file");
902
903   CloseHandle(h);
904   return false;
905 }
906
907 /// MapInFilePages - Not yet implemented on win32.
908 const char *Path::MapInFilePages(int FD, uint64_t FileSize) {
909   return 0;
910 }
911
912 /// MapInFilePages - Not yet implemented on win32.
913 void Path::UnMapFilePages(const char *Base, uint64_t FileSize) {
914   assert(0 && "NOT IMPLEMENTED");
915 }
916
917 }
918 }