Provide Path::isSpecialFile interface for PR5568.
[oota-llvm.git] / lib / System / Win32 / 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 // 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>
24 #include <cstdio>
25
26 // We need to undo a macro defined in Windows.h, otherwise we won't compile:
27 #undef CopyFile
28 #undef GetCurrentDirectory
29
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
40 static void FlipBackSlashes(std::string& s) {
41   for (size_t i = 0; i < s.size(); i++)
42     if (s[i] == '\\')
43       s[i] = '/';
44 }
45
46 namespace llvm {
47 namespace sys {
48 const char PathSeparator = ';';
49
50 Path::Path(const std::string& p)
51   : path(p) {
52   FlipBackSlashes(path);
53 }
54
55 Path::Path(const char *StrStart, unsigned StrLen)
56   : path(StrStart, StrLen) {
57   FlipBackSlashes(path);
58 }
59
60 Path&
61 Path::operator=(const std::string &that) {
62   path = that;
63   FlipBackSlashes(path);
64   return *this;
65 }
66
67 bool
68 Path::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
128 void 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()
138     assert(0 && "Unable to make absolute path!");
139   } else if (RetLength > MAX_PATH) {
140     // FIXME: Report too small buffer (needed RetLength bytes).
141     assert(0 && "Unable to make absolute path!");
142   } else {
143     path = FullPath;
144   }
145 }
146
147 bool
148 Path::isAbsolute(const char *NameStart, unsigned NameLen) {
149   assert(NameStart);
150   // FIXME: This does not handle correctly an absolute path starting from
151   // a drive letter or in UNC format.
152   switch (NameLen) {
153   case 0:
154     return false;
155   case 1:
156   case 2:
157     return NameStart[0] == '/';
158   default:
159     return (NameStart[0] == '/' || (NameStart[1] == ':' && NameStart[2] == '/')) ||
160            (NameStart[0] == '\\' || (NameStart[1] == ':' && NameStart[2] == '\\'));
161   }
162 }
163
164 bool 
165 Path::isAbsolute() const {
166   // FIXME: This does not handle correctly an absolute path starting from
167   // a drive letter or in UNC format.
168   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
179 static Path *TempDirectory = NULL;
180
181 Path
182 Path::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.
217 Path
218 Path::GetRootDirectory() {
219   Path result;
220   result.set("C:/");
221   return result;
222 }
223
224 void
225 Path::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
230 void
231 Path::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
247 Path
248 Path::GetLLVMDefaultConfigDir() {
249   // TODO: this isn't going to fly on Windows
250   return Path("/etc/llvm");
251 }
252
253 Path
254 Path::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 }
264
265 Path
266 Path::GetCurrentDirectory() {
267   char pathname[MAX_PATH];
268   ::GetCurrentDirectoryA(MAX_PATH,pathname);
269   return Path(pathname);  
270 }
271
272 /// GetMainExecutable - Return the path to the main executable, given the
273 /// value of argv[0] from program startup.
274 Path Path::GetMainExecutable(const char *argv0, void *MainAddr) {
275   char pathname[MAX_PATH];
276   DWORD ret = ::GetModuleFileNameA(NULL, pathname, MAX_PATH);
277   return ret != MAX_PATH ? Path(pathname) : Path();
278 }
279
280
281 // FIXME: the above set of functions don't map to Windows very well.
282
283
284 bool
285 Path::isRootDirectory() const {
286   size_t len = path.size();
287   return len > 0 && path[len-1] == '/';
288 }
289
290 std::string Path::getDirname() const {
291   return getDirnameCharSep(path, '/');
292 }
293
294 std::string
295 Path::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)
305     return path.substr(slash);
306   else
307     return path.substr(slash, dot - slash);
308 }
309
310 std::string
311 Path::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)
321     return std::string();
322   else
323     return path.substr(dot + 1);
324 }
325
326 bool
327 Path::exists() const {
328   DWORD attr = GetFileAttributes(path.c_str());
329   return attr != INVALID_FILE_ATTRIBUTES;
330 }
331
332 bool
333 Path::isDirectory() const {
334   DWORD attr = GetFileAttributes(path.c_str());
335   return (attr != INVALID_FILE_ATTRIBUTES) &&
336          (attr & FILE_ATTRIBUTE_DIRECTORY);
337 }
338
339 bool
340 Path::canRead() const {
341   // FIXME: take security attributes into account.
342   DWORD attr = GetFileAttributes(path.c_str());
343   return attr != INVALID_FILE_ATTRIBUTES;
344 }
345
346 bool
347 Path::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
353 bool
354 Path::canExecute() const {
355   // FIXME: take security attributes into account.
356   DWORD attr = GetFileAttributes(path.c_str());
357   return attr != INVALID_FILE_ATTRIBUTES;
358 }
359
360 bool
361 Path::isSpecialFile() const {
362   return false;
363 }
364
365 std::string
366 Path::getLast() const {
367   // Find the last slash
368   size_t pos = path.rfind('/');
369
370   // Handle the corner cases
371   if (pos == std::string::npos)
372     return path;
373
374   // If the last character is a slash, we have a root directory
375   if (pos == path.length()-1)
376     return path;
377
378   // Return everything after the last slash
379   return path.substr(pos+1);
380 }
381
382 const FileStatus *
383 PathWithStatus::getFileStatus(bool update, std::string *ErrStr) const {
384   if (!fsIsValid || update) {
385     WIN32_FILE_ATTRIBUTE_DATA fi;
386     if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) {
387       MakeErrMsg(ErrStr, "getStatusInfo():" + std::string(path) +
388                       ": Can't get status: ");
389       return 0;
390     }
391
392     status.fileSize = fi.nFileSizeHigh;
393     status.fileSize <<= sizeof(fi.nFileSizeHigh)*8;
394     status.fileSize += fi.nFileSizeLow;
395
396     status.mode = fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY ? 0555 : 0777;
397     status.user = 9999;    // Not applicable to Windows, so...
398     status.group = 9999;   // Not applicable to Windows, so...
399
400     // FIXME: this is only unique if the file is accessed by the same file path.
401     // How do we do this for C:\dir\file and ..\dir\file ? Unix has inode
402     // numbers, but the concept doesn't exist in Windows.
403     status.uniqueID = 0;
404     for (unsigned i = 0; i < path.length(); ++i)
405       status.uniqueID += path[i];
406
407     __int64 ft = *reinterpret_cast<__int64*>(&fi.ftLastWriteTime);
408     status.modTime.fromWin32Time(ft);
409
410     status.isDir = fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY;
411     fsIsValid = true;
412   }
413   return &status;
414 }
415
416 bool Path::makeReadableOnDisk(std::string* ErrMsg) {
417   // All files are readable on Windows (ignoring security attributes).
418   return false;
419 }
420
421 bool Path::makeWriteableOnDisk(std::string* ErrMsg) {
422   DWORD attr = GetFileAttributes(path.c_str());
423
424   // If it doesn't exist, we're done.
425   if (attr == INVALID_FILE_ATTRIBUTES)
426     return false;
427
428   if (attr & FILE_ATTRIBUTE_READONLY) {
429     if (!SetFileAttributes(path.c_str(), attr & ~FILE_ATTRIBUTE_READONLY)) {
430       MakeErrMsg(ErrMsg, std::string(path) + ": Can't make file writable: ");
431       return true;
432     }
433   }
434   return false;
435 }
436
437 bool Path::makeExecutableOnDisk(std::string* ErrMsg) {
438   // All files are executable on Windows (ignoring security attributes).
439   return false;
440 }
441
442 bool
443 Path::getDirectoryContents(std::set<Path>& result, std::string* ErrMsg) const {
444   WIN32_FILE_ATTRIBUTE_DATA fi;
445   if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) {
446     MakeErrMsg(ErrMsg, path + ": can't get status of file");
447     return true;
448   }
449     
450   if (!(fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) {
451     if (ErrMsg)
452       *ErrMsg = path + ": not a directory";
453     return true;
454   }
455
456   result.clear();
457   WIN32_FIND_DATA fd;
458   std::string searchpath = path;
459   if (path.size() == 0 || searchpath[path.size()-1] == '/')
460     searchpath += "*";
461   else
462     searchpath += "/*";
463
464   HANDLE h = FindFirstFile(searchpath.c_str(), &fd);
465   if (h == INVALID_HANDLE_VALUE) {
466     if (GetLastError() == ERROR_FILE_NOT_FOUND)
467       return true; // not really an error, now is it?
468     MakeErrMsg(ErrMsg, path + ": Can't read directory: ");
469     return true;
470   }
471
472   do {
473     if (fd.cFileName[0] == '.')
474       continue;
475     Path aPath(path);
476     aPath.appendComponent(&fd.cFileName[0]);
477     result.insert(aPath);
478   } while (FindNextFile(h, &fd));
479
480   DWORD err = GetLastError();
481   FindClose(h);
482   if (err != ERROR_NO_MORE_FILES) {
483     SetLastError(err);
484     MakeErrMsg(ErrMsg, path + ": Can't read directory: ");
485     return true;
486   }
487   return false;
488 }
489
490 bool
491 Path::set(const std::string& a_path) {
492   if (a_path.empty())
493     return false;
494   std::string save(path);
495   path = a_path;
496   FlipBackSlashes(path);
497   if (!isValid()) {
498     path = save;
499     return false;
500   }
501   return true;
502 }
503
504 bool
505 Path::appendComponent(const std::string& name) {
506   if (name.empty())
507     return false;
508   std::string save(path);
509   if (!path.empty()) {
510     size_t last = path.size() - 1;
511     if (path[last] != '/')
512       path += '/';
513   }
514   path += name;
515   if (!isValid()) {
516     path = save;
517     return false;
518   }
519   return true;
520 }
521
522 bool
523 Path::eraseComponent() {
524   size_t slashpos = path.rfind('/',path.size());
525   if (slashpos == path.size() - 1 || slashpos == std::string::npos)
526     return false;
527   std::string save(path);
528   path.erase(slashpos);
529   if (!isValid()) {
530     path = save;
531     return false;
532   }
533   return true;
534 }
535
536 bool
537 Path::appendSuffix(const std::string& suffix) {
538   std::string save(path);
539   path.append(".");
540   path.append(suffix);
541   if (!isValid()) {
542     path = save;
543     return false;
544   }
545   return true;
546 }
547
548 bool
549 Path::eraseSuffix() {
550   size_t dotpos = path.rfind('.',path.size());
551   size_t slashpos = path.rfind('/',path.size());
552   if (dotpos != std::string::npos) {
553     if (slashpos == std::string::npos || dotpos > slashpos+1) {
554       std::string save(path);
555       path.erase(dotpos, path.size()-dotpos);
556       if (!isValid()) {
557         path = save;
558         return false;
559       }
560       return true;
561     }
562   }
563   return false;
564 }
565
566 inline bool PathMsg(std::string* ErrMsg, const char* pathname, const char*msg) {
567   if (ErrMsg)
568     *ErrMsg = std::string(pathname) + ": " + std::string(msg);
569   return true;
570 }
571
572 bool
573 Path::createDirectoryOnDisk(bool create_parents, std::string* ErrMsg) {
574   // Get a writeable copy of the path name
575   size_t len = path.length();
576   char *pathname = reinterpret_cast<char *>(_alloca(len+2));
577   path.copy(pathname, len);
578   pathname[len] = 0;
579
580   // Make sure it ends with a slash.
581   if (len == 0 || pathname[len - 1] != '/') {
582     pathname[len] = '/';
583     pathname[++len] = 0;
584   }
585
586   // Determine starting point for initial / search.
587   char *next = pathname;
588   if (pathname[0] == '/' && pathname[1] == '/') {
589     // Skip host name.
590     next = strchr(pathname+2, '/');
591     if (next == NULL)
592       return PathMsg(ErrMsg, pathname, "badly formed remote directory");
593
594     // Skip share name.
595     next = strchr(next+1, '/');
596     if (next == NULL)
597       return PathMsg(ErrMsg, pathname,"badly formed remote directory");
598
599     next++;
600     if (*next == 0)
601       return PathMsg(ErrMsg, pathname, "badly formed remote directory");
602
603   } else {
604     if (pathname[1] == ':')
605       next += 2;    // skip drive letter
606     if (*next == '/')
607       next++;       // skip root directory
608   }
609
610   // If we're supposed to create intermediate directories
611   if (create_parents) {
612     // Loop through the directory components until we're done
613     while (*next) {
614       next = strchr(next, '/');
615       *next = 0;
616       if (!CreateDirectory(pathname, NULL) &&
617           GetLastError() != ERROR_ALREADY_EXISTS)
618           return MakeErrMsg(ErrMsg, 
619             std::string(pathname) + ": Can't create directory: ");
620       *next++ = '/';
621     }
622   } else {
623     // Drop trailing slash.
624     pathname[len-1] = 0;
625     if (!CreateDirectory(pathname, NULL) &&
626         GetLastError() != ERROR_ALREADY_EXISTS) {
627       return MakeErrMsg(ErrMsg, std::string(pathname) + ": Can't create directory: ");
628     }
629   }
630   return false;
631 }
632
633 bool
634 Path::createFileOnDisk(std::string* ErrMsg) {
635   // Create the file
636   HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW,
637                         FILE_ATTRIBUTE_NORMAL, NULL);
638   if (h == INVALID_HANDLE_VALUE)
639     return MakeErrMsg(ErrMsg, path + ": Can't create file: ");
640
641   CloseHandle(h);
642   return false;
643 }
644
645 bool
646 Path::eraseFromDisk(bool remove_contents, std::string *ErrStr) const {
647   WIN32_FILE_ATTRIBUTE_DATA fi;
648   if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi))
649     return true;
650     
651   if (fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
652     // If it doesn't exist, we're done.
653     if (!exists())
654       return false;
655
656     char *pathname = reinterpret_cast<char *>(_alloca(path.length()+3));
657     int lastchar = path.length() - 1 ;
658     path.copy(pathname, lastchar+1);
659
660     // Make path end with '/*'.
661     if (pathname[lastchar] != '/')
662       pathname[++lastchar] = '/';
663     pathname[lastchar+1] = '*';
664     pathname[lastchar+2] = 0;
665
666     if (remove_contents) {
667       WIN32_FIND_DATA fd;
668       HANDLE h = FindFirstFile(pathname, &fd);
669
670       // It's a bad idea to alter the contents of a directory while enumerating
671       // its contents. So build a list of its contents first, then destroy them.
672
673       if (h != INVALID_HANDLE_VALUE) {
674         std::vector<Path> list;
675
676         do {
677           if (strcmp(fd.cFileName, ".") == 0)
678             continue;
679           if (strcmp(fd.cFileName, "..") == 0)
680             continue;
681
682           Path aPath(path);
683           aPath.appendComponent(&fd.cFileName[0]);
684           list.push_back(aPath);
685         } while (FindNextFile(h, &fd));
686
687         DWORD err = GetLastError();
688         FindClose(h);
689         if (err != ERROR_NO_MORE_FILES) {
690           SetLastError(err);
691           return MakeErrMsg(ErrStr, path + ": Can't read directory: ");
692         }
693
694         for (std::vector<Path>::iterator I = list.begin(); I != list.end();
695              ++I) {
696           Path &aPath = *I;
697           aPath.eraseFromDisk(true);
698         }
699       } else {
700         if (GetLastError() != ERROR_FILE_NOT_FOUND)
701           return MakeErrMsg(ErrStr, path + ": Can't read directory: ");
702       }
703     }
704
705     pathname[lastchar] = 0;
706     if (!RemoveDirectory(pathname))
707       return MakeErrMsg(ErrStr, 
708         std::string(pathname) + ": Can't destroy directory: ");
709     return false;
710   } else {
711     // Read-only files cannot be deleted on Windows.  Must remove the read-only
712     // attribute first.
713     if (fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
714       if (!SetFileAttributes(path.c_str(),
715                              fi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY))
716         return MakeErrMsg(ErrStr, path + ": Can't destroy file: ");
717     }
718
719     if (!DeleteFile(path.c_str()))
720       return MakeErrMsg(ErrStr, path + ": Can't destroy file: ");
721     return false;
722   }
723 }
724
725 bool Path::getMagicNumber(std::string& Magic, unsigned len) const {
726   assert(len < 1024 && "Request for magic string too long");
727   char* buf = (char*) alloca(1 + len);
728
729   HANDLE h = CreateFile(path.c_str(),
730                         GENERIC_READ,
731                         FILE_SHARE_READ,
732                         NULL,
733                         OPEN_EXISTING,
734                         FILE_ATTRIBUTE_NORMAL,
735                         NULL);
736   if (h == INVALID_HANDLE_VALUE)
737     return false;
738
739   DWORD nRead = 0;
740   BOOL ret = ReadFile(h, buf, len, &nRead, NULL);
741   CloseHandle(h);
742
743   if (!ret || nRead != len)
744     return false;
745
746   buf[len] = '\0';
747   Magic = buf;
748   return true;
749 }
750
751 bool
752 Path::renamePathOnDisk(const Path& newName, std::string* ErrMsg) {
753   if (!MoveFileEx(path.c_str(), newName.c_str(), MOVEFILE_REPLACE_EXISTING))
754     return MakeErrMsg(ErrMsg, "Can't move '" + path + "' to '" + newName.path 
755         + "': ");
756   return false;
757 }
758
759 bool
760 Path::setStatusInfoOnDisk(const FileStatus &si, std::string *ErrMsg) const {
761   // FIXME: should work on directories also.
762   if (!si.isFile) {
763     return true;
764   }
765   
766   HANDLE h = CreateFile(path.c_str(),
767                         FILE_READ_ATTRIBUTES | FILE_WRITE_ATTRIBUTES,
768                         FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
769                         NULL,
770                         OPEN_EXISTING,
771                         FILE_ATTRIBUTE_NORMAL,
772                         NULL);
773   if (h == INVALID_HANDLE_VALUE)
774     return true;
775
776   BY_HANDLE_FILE_INFORMATION bhfi;
777   if (!GetFileInformationByHandle(h, &bhfi)) {
778     DWORD err = GetLastError();
779     CloseHandle(h);
780     SetLastError(err);
781     return MakeErrMsg(ErrMsg, path + ": GetFileInformationByHandle: ");
782   }
783
784   FILETIME ft;
785   (uint64_t&)ft = si.modTime.toWin32Time();
786   BOOL ret = SetFileTime(h, NULL, &ft, &ft);
787   DWORD err = GetLastError();
788   CloseHandle(h);
789   if (!ret) {
790     SetLastError(err);
791     return MakeErrMsg(ErrMsg, path + ": SetFileTime: ");
792   }
793
794   // Best we can do with Unix permission bits is to interpret the owner
795   // writable bit.
796   if (si.mode & 0200) {
797     if (bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
798       if (!SetFileAttributes(path.c_str(),
799               bhfi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY))
800         return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: ");
801     }
802   } else {
803     if (!(bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY)) {
804       if (!SetFileAttributes(path.c_str(),
805               bhfi.dwFileAttributes | FILE_ATTRIBUTE_READONLY))
806         return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: ");
807     }
808   }
809
810   return false;
811 }
812
813 bool
814 CopyFile(const sys::Path &Dest, const sys::Path &Src, std::string* ErrMsg) {
815   // Can't use CopyFile macro defined in Windows.h because it would mess up the
816   // above line.  We use the expansion it would have in a non-UNICODE build.
817   if (!::CopyFileA(Src.c_str(), Dest.c_str(), false))
818     return MakeErrMsg(ErrMsg, "Can't copy '" + Src.str() +
819                "' to '" + Dest.str() + "': ");
820   return false;
821 }
822
823 bool
824 Path::makeUnique(bool reuse_current, std::string* ErrMsg) {
825   if (reuse_current && !exists())
826     return false; // File doesn't exist already, just use it!
827
828   // Reserve space for -XXXXXX at the end.
829   char *FNBuffer = (char*) alloca(path.size()+8);
830   unsigned offset = path.size();
831   path.copy(FNBuffer, offset);
832
833   // Find a numeric suffix that isn't used by an existing file.  Assume there
834   // won't be more than 1 million files with the same prefix.  Probably a safe
835   // bet.
836   static unsigned FCounter = 0;
837   do {
838     sprintf(FNBuffer+offset, "-%06u", FCounter);
839     if (++FCounter > 999999)
840       FCounter = 0;
841     path = FNBuffer;
842   } while (exists());
843   return false;
844 }
845
846 bool
847 Path::createTemporaryFileOnDisk(bool reuse_current, std::string* ErrMsg) {
848   // Make this into a unique file name
849   makeUnique(reuse_current, ErrMsg);
850
851   // Now go and create it
852   HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW,
853                         FILE_ATTRIBUTE_NORMAL, NULL);
854   if (h == INVALID_HANDLE_VALUE)
855     return MakeErrMsg(ErrMsg, path + ": can't create file");
856
857   CloseHandle(h);
858   return false;
859 }
860
861 /// MapInFilePages - Not yet implemented on win32.
862 const char *Path::MapInFilePages(int FD, uint64_t FileSize) {
863   return 0;
864 }
865
866 /// MapInFilePages - Not yet implemented on win32.
867 void Path::UnMapFilePages(const char *Base, uint64_t FileSize) {
868   assert(0 && "NOT IMPLEMENTED");
869 }
870
871 }
872 }