1 //===- llvm/System/Win32/Path.cpp - Win32 Path Implementation ---*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 // Modified by Henrik Bach to comply with at least MinGW.
9 // Ported to Win32 by Jeff Cohen.
11 //===----------------------------------------------------------------------===//
13 // This file provides the Win32 specific implementation of the Path class.
15 //===----------------------------------------------------------------------===//
17 //===----------------------------------------------------------------------===//
18 //=== WARNING: Implementation here must contain only generic Win32 code that
19 //=== is guaranteed to work on *all* Win32 variants.
20 //===----------------------------------------------------------------------===//
26 // We need to undo a macro defined in Windows.h, otherwise we won't compile:
28 #undef GetCurrentDirectory
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.
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.
40 static void FlipBackSlashes(std::string& s) {
41 for (size_t i = 0; i < s.size(); i++)
48 const char PathSeparator = ';';
50 Path::Path(const std::string& p)
52 FlipBackSlashes(path);
55 Path::Path(const char *StrStart, unsigned StrLen)
56 : path(StrStart, StrLen) {
57 FlipBackSlashes(path);
61 Path::operator=(const std::string &that) {
63 FlipBackSlashes(path);
68 Path::isValid() const {
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);
77 if (pos != std::string::npos) {
78 if (pos != 1 || !isalpha(path[0]) || len < 3)
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)
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")
97 // Remove trailing slash, unless it's a root slash.
98 if (len > rootslash+1 && path[len-1] == '/')
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')
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] == ':')
116 if (pos > 0 && path[pos-1] == '.') {
117 if (pos == 1 || path[pos-2] == '/' || path[pos-2] == ':')
128 void Path::makeAbsolute() {
129 TCHAR FullPath[MAX_PATH + 1] = {0};
130 LPTSTR FilePart = NULL;
132 DWORD RetLength = ::GetFullPathNameA(path.c_str(),
133 sizeof(FullPath)/sizeof(FullPath[0]),
134 FullPath, &FilePart);
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!");
148 Path::isAbsolute(const char *NameStart, unsigned NameLen) {
150 // FIXME: This does not handle correctly an absolute path starting from
151 // a drive letter or in UNC format.
157 return NameStart[0] == '/';
159 return (NameStart[0] == '/' || (NameStart[1] == ':' && NameStart[2] == '/')) ||
160 (NameStart[0] == '\\' || (NameStart[1] == ':' && NameStart[2] == '\\'));
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()) {
173 return path[0] == '/';
175 return path[0] == '/' || (path[1] == ':' && path[2] == '/');
179 static Path *TempDirectory = NULL;
182 Path::GetTemporaryDirectory(std::string* ErrMsg) {
184 return *TempDirectory;
186 char pathname[MAX_PATH];
187 if (!GetTempPath(MAX_PATH, pathname)) {
189 *ErrMsg = "Can't determine temporary directory";
194 result.set(pathname);
196 // Append a subdirectory passed on our process id so multiple LLVMs don't
197 // step on each other's toes.
199 // Mingw's Win32 header files are broken.
200 sprintf(pathname, "LLVM_%u", unsigned(GetCurrentProcessId()));
202 sprintf(pathname, "LLVM_%u", GetCurrentProcessId());
204 result.appendComponent(pathname);
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);
210 // And finally (re-)create the empty directory.
211 result.createDirectoryOnDisk(false);
212 TempDirectory = new Path(result);
213 return *TempDirectory;
216 // FIXME: the following set of functions don't map to Windows very well.
218 Path::GetRootDirectory() {
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"));
231 Path::GetBitcodeLibraryPaths(std::vector<sys::Path>& Paths) {
232 char * env_var = getenv("LLVM_LIB_SEARCH_PATH");
234 getPathList(env_var,Paths);
239 if (tmpPath.set(LLVM_LIBDIR))
240 if (tmpPath.canRead())
241 Paths.push_back(tmpPath);
244 GetSystemLibraryPaths(Paths);
248 Path::GetLLVMDefaultConfigDir() {
249 // TODO: this isn't going to fly on Windows
250 return Path("/etc/llvm");
254 Path::GetUserHomeDirectory() {
255 // TODO: Typical Windows setup doesn't define HOME.
256 const char* home = getenv("HOME");
259 if (result.set(home))
262 return GetRootDirectory();
266 Path::GetCurrentDirectory() {
267 char pathname[MAX_PATH];
268 ::GetCurrentDirectoryA(MAX_PATH,pathname);
269 return Path(pathname);
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();
281 // FIXME: the above set of functions don't map to Windows very well.
285 Path::isRootDirectory() const {
286 size_t len = path.size();
287 return len > 0 && path[len-1] == '/';
290 std::string Path::getDirname() const {
291 return getDirnameCharSep(path, '/');
295 Path::getBasename() const {
296 // Find the last slash
297 size_t slash = path.rfind('/');
298 if (slash == std::string::npos)
303 size_t dot = path.rfind('.');
304 if (dot == std::string::npos || dot < slash)
305 return path.substr(slash);
307 return path.substr(slash, dot - slash);
311 Path::getSuffix() const {
312 // Find the last slash
313 size_t slash = path.rfind('/');
314 if (slash == std::string::npos)
319 size_t dot = path.rfind('.');
320 if (dot == std::string::npos || dot < slash)
321 return std::string();
323 return path.substr(dot + 1);
327 Path::exists() const {
328 DWORD attr = GetFileAttributes(path.c_str());
329 return attr != INVALID_FILE_ATTRIBUTES;
333 Path::isDirectory() const {
334 DWORD attr = GetFileAttributes(path.c_str());
335 return (attr != INVALID_FILE_ATTRIBUTES) &&
336 (attr & FILE_ATTRIBUTE_DIRECTORY);
340 Path::canRead() const {
341 // FIXME: take security attributes into account.
342 DWORD attr = GetFileAttributes(path.c_str());
343 return attr != INVALID_FILE_ATTRIBUTES;
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);
354 Path::canExecute() const {
355 // FIXME: take security attributes into account.
356 DWORD attr = GetFileAttributes(path.c_str());
357 return attr != INVALID_FILE_ATTRIBUTES;
361 Path::getLast() const {
362 // Find the last slash
363 size_t pos = path.rfind('/');
365 // Handle the corner cases
366 if (pos == std::string::npos)
369 // If the last character is a slash, we have a root directory
370 if (pos == path.length()-1)
373 // Return everything after the last slash
374 return path.substr(pos+1);
378 PathWithStatus::getFileStatus(bool update, std::string *ErrStr) const {
379 if (!fsIsValid || update) {
380 WIN32_FILE_ATTRIBUTE_DATA fi;
381 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) {
382 MakeErrMsg(ErrStr, "getStatusInfo():" + std::string(path) +
383 ": Can't get status: ");
387 status.fileSize = fi.nFileSizeHigh;
388 status.fileSize <<= sizeof(fi.nFileSizeHigh)*8;
389 status.fileSize += fi.nFileSizeLow;
391 status.mode = fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY ? 0555 : 0777;
392 status.user = 9999; // Not applicable to Windows, so...
393 status.group = 9999; // Not applicable to Windows, so...
395 // FIXME: this is only unique if the file is accessed by the same file path.
396 // How do we do this for C:\dir\file and ..\dir\file ? Unix has inode
397 // numbers, but the concept doesn't exist in Windows.
399 for (unsigned i = 0; i < path.length(); ++i)
400 status.uniqueID += path[i];
402 __int64 ft = *reinterpret_cast<__int64*>(&fi.ftLastWriteTime);
403 status.modTime.fromWin32Time(ft);
405 status.isDir = fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY;
411 bool Path::makeReadableOnDisk(std::string* ErrMsg) {
412 // All files are readable on Windows (ignoring security attributes).
416 bool Path::makeWriteableOnDisk(std::string* ErrMsg) {
417 DWORD attr = GetFileAttributes(path.c_str());
419 // If it doesn't exist, we're done.
420 if (attr == INVALID_FILE_ATTRIBUTES)
423 if (attr & FILE_ATTRIBUTE_READONLY) {
424 if (!SetFileAttributes(path.c_str(), attr & ~FILE_ATTRIBUTE_READONLY)) {
425 MakeErrMsg(ErrMsg, std::string(path) + ": Can't make file writable: ");
432 bool Path::makeExecutableOnDisk(std::string* ErrMsg) {
433 // All files are executable on Windows (ignoring security attributes).
438 Path::getDirectoryContents(std::set<Path>& result, std::string* ErrMsg) const {
439 WIN32_FILE_ATTRIBUTE_DATA fi;
440 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) {
441 MakeErrMsg(ErrMsg, path + ": can't get status of file");
445 if (!(fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) {
447 *ErrMsg = path + ": not a directory";
453 std::string searchpath = path;
454 if (path.size() == 0 || searchpath[path.size()-1] == '/')
459 HANDLE h = FindFirstFile(searchpath.c_str(), &fd);
460 if (h == INVALID_HANDLE_VALUE) {
461 if (GetLastError() == ERROR_FILE_NOT_FOUND)
462 return true; // not really an error, now is it?
463 MakeErrMsg(ErrMsg, path + ": Can't read directory: ");
468 if (fd.cFileName[0] == '.')
471 aPath.appendComponent(&fd.cFileName[0]);
472 result.insert(aPath);
473 } while (FindNextFile(h, &fd));
475 DWORD err = GetLastError();
477 if (err != ERROR_NO_MORE_FILES) {
479 MakeErrMsg(ErrMsg, path + ": Can't read directory: ");
486 Path::set(const std::string& a_path) {
489 std::string save(path);
491 FlipBackSlashes(path);
500 Path::appendComponent(const std::string& name) {
503 std::string save(path);
505 size_t last = path.size() - 1;
506 if (path[last] != '/')
518 Path::eraseComponent() {
519 size_t slashpos = path.rfind('/',path.size());
520 if (slashpos == path.size() - 1 || slashpos == std::string::npos)
522 std::string save(path);
523 path.erase(slashpos);
532 Path::appendSuffix(const std::string& suffix) {
533 std::string save(path);
544 Path::eraseSuffix() {
545 size_t dotpos = path.rfind('.',path.size());
546 size_t slashpos = path.rfind('/',path.size());
547 if (dotpos != std::string::npos) {
548 if (slashpos == std::string::npos || dotpos > slashpos+1) {
549 std::string save(path);
550 path.erase(dotpos, path.size()-dotpos);
561 inline bool PathMsg(std::string* ErrMsg, const char* pathname, const char*msg) {
563 *ErrMsg = std::string(pathname) + ": " + std::string(msg);
568 Path::createDirectoryOnDisk(bool create_parents, std::string* ErrMsg) {
569 // Get a writeable copy of the path name
570 size_t len = path.length();
571 char *pathname = reinterpret_cast<char *>(_alloca(len+2));
572 path.copy(pathname, len);
575 // Make sure it ends with a slash.
576 if (len == 0 || pathname[len - 1] != '/') {
581 // Determine starting point for initial / search.
582 char *next = pathname;
583 if (pathname[0] == '/' && pathname[1] == '/') {
585 next = strchr(pathname+2, '/');
587 return PathMsg(ErrMsg, pathname, "badly formed remote directory");
590 next = strchr(next+1, '/');
592 return PathMsg(ErrMsg, pathname,"badly formed remote directory");
596 return PathMsg(ErrMsg, pathname, "badly formed remote directory");
599 if (pathname[1] == ':')
600 next += 2; // skip drive letter
602 next++; // skip root directory
605 // If we're supposed to create intermediate directories
606 if (create_parents) {
607 // Loop through the directory components until we're done
609 next = strchr(next, '/');
611 if (!CreateDirectory(pathname, NULL))
612 return MakeErrMsg(ErrMsg,
613 std::string(pathname) + ": Can't create directory: ");
617 // Drop trailing slash.
619 if (!CreateDirectory(pathname, NULL)) {
620 return MakeErrMsg(ErrMsg, std::string(pathname) + ": Can't create directory: ");
627 Path::createFileOnDisk(std::string* ErrMsg) {
629 HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW,
630 FILE_ATTRIBUTE_NORMAL, NULL);
631 if (h == INVALID_HANDLE_VALUE)
632 return MakeErrMsg(ErrMsg, path + ": Can't create file: ");
639 Path::eraseFromDisk(bool remove_contents, std::string *ErrStr) const {
640 WIN32_FILE_ATTRIBUTE_DATA fi;
641 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi))
644 if (fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
645 // If it doesn't exist, we're done.
649 char *pathname = reinterpret_cast<char *>(_alloca(path.length()+3));
650 int lastchar = path.length() - 1 ;
651 path.copy(pathname, lastchar+1);
653 // Make path end with '/*'.
654 if (pathname[lastchar] != '/')
655 pathname[++lastchar] = '/';
656 pathname[lastchar+1] = '*';
657 pathname[lastchar+2] = 0;
659 if (remove_contents) {
661 HANDLE h = FindFirstFile(pathname, &fd);
663 // It's a bad idea to alter the contents of a directory while enumerating
664 // its contents. So build a list of its contents first, then destroy them.
666 if (h != INVALID_HANDLE_VALUE) {
667 std::vector<Path> list;
670 if (strcmp(fd.cFileName, ".") == 0)
672 if (strcmp(fd.cFileName, "..") == 0)
676 aPath.appendComponent(&fd.cFileName[0]);
677 list.push_back(aPath);
678 } while (FindNextFile(h, &fd));
680 DWORD err = GetLastError();
682 if (err != ERROR_NO_MORE_FILES) {
684 return MakeErrMsg(ErrStr, path + ": Can't read directory: ");
687 for (std::vector<Path>::iterator I = list.begin(); I != list.end();
690 aPath.eraseFromDisk(true);
693 if (GetLastError() != ERROR_FILE_NOT_FOUND)
694 return MakeErrMsg(ErrStr, path + ": Can't read directory: ");
698 pathname[lastchar] = 0;
699 if (!RemoveDirectory(pathname))
700 return MakeErrMsg(ErrStr,
701 std::string(pathname) + ": Can't destroy directory: ");
704 // Read-only files cannot be deleted on Windows. Must remove the read-only
706 if (fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
707 if (!SetFileAttributes(path.c_str(),
708 fi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY))
709 return MakeErrMsg(ErrStr, path + ": Can't destroy file: ");
712 if (!DeleteFile(path.c_str()))
713 return MakeErrMsg(ErrStr, path + ": Can't destroy file: ");
718 bool Path::getMagicNumber(std::string& Magic, unsigned len) const {
719 assert(len < 1024 && "Request for magic string too long");
720 char* buf = (char*) alloca(1 + len);
722 HANDLE h = CreateFile(path.c_str(),
727 FILE_ATTRIBUTE_NORMAL,
729 if (h == INVALID_HANDLE_VALUE)
733 BOOL ret = ReadFile(h, buf, len, &nRead, NULL);
736 if (!ret || nRead != len)
745 Path::renamePathOnDisk(const Path& newName, std::string* ErrMsg) {
746 if (!MoveFileEx(path.c_str(), newName.c_str(), MOVEFILE_REPLACE_EXISTING))
747 return MakeErrMsg(ErrMsg, "Can't move '" + path + "' to '" + newName.path
753 Path::setStatusInfoOnDisk(const FileStatus &si, std::string *ErrMsg) const {
754 // FIXME: should work on directories also.
759 HANDLE h = CreateFile(path.c_str(),
760 FILE_READ_ATTRIBUTES | FILE_WRITE_ATTRIBUTES,
761 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
764 FILE_ATTRIBUTE_NORMAL,
766 if (h == INVALID_HANDLE_VALUE)
769 BY_HANDLE_FILE_INFORMATION bhfi;
770 if (!GetFileInformationByHandle(h, &bhfi)) {
771 DWORD err = GetLastError();
774 return MakeErrMsg(ErrMsg, path + ": GetFileInformationByHandle: ");
778 (uint64_t&)ft = si.modTime.toWin32Time();
779 BOOL ret = SetFileTime(h, NULL, &ft, &ft);
780 DWORD err = GetLastError();
784 return MakeErrMsg(ErrMsg, path + ": SetFileTime: ");
787 // Best we can do with Unix permission bits is to interpret the owner
789 if (si.mode & 0200) {
790 if (bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
791 if (!SetFileAttributes(path.c_str(),
792 bhfi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY))
793 return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: ");
796 if (!(bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY)) {
797 if (!SetFileAttributes(path.c_str(),
798 bhfi.dwFileAttributes | FILE_ATTRIBUTE_READONLY))
799 return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: ");
807 CopyFile(const sys::Path &Dest, const sys::Path &Src, std::string* ErrMsg) {
808 // Can't use CopyFile macro defined in Windows.h because it would mess up the
809 // above line. We use the expansion it would have in a non-UNICODE build.
810 if (!::CopyFileA(Src.c_str(), Dest.c_str(), false))
811 return MakeErrMsg(ErrMsg, "Can't copy '" + Src.str() +
812 "' to '" + Dest.str() + "': ");
817 Path::makeUnique(bool reuse_current, std::string* ErrMsg) {
818 if (reuse_current && !exists())
819 return false; // File doesn't exist already, just use it!
821 // Reserve space for -XXXXXX at the end.
822 char *FNBuffer = (char*) alloca(path.size()+8);
823 unsigned offset = path.size();
824 path.copy(FNBuffer, offset);
826 // Find a numeric suffix that isn't used by an existing file. Assume there
827 // won't be more than 1 million files with the same prefix. Probably a safe
829 static unsigned FCounter = 0;
831 sprintf(FNBuffer+offset, "-%06u", FCounter);
832 if (++FCounter > 999999)
840 Path::createTemporaryFileOnDisk(bool reuse_current, std::string* ErrMsg) {
841 // Make this into a unique file name
842 makeUnique(reuse_current, ErrMsg);
844 // Now go and create it
845 HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW,
846 FILE_ATTRIBUTE_NORMAL, NULL);
847 if (h == INVALID_HANDLE_VALUE)
848 return MakeErrMsg(ErrMsg, path + ": can't create file");
854 /// MapInFilePages - Not yet implemented on win32.
855 const char *Path::MapInFilePages(int FD, uint64_t FileSize) {
859 /// MapInFilePages - Not yet implemented on win32.
860 void Path::UnMapFilePages(const char *Base, uint64_t FileSize) {
861 assert(0 && "NOT IMPLEMENTED");