1 //===-- Path.cpp - Implement OS Path Concept ------------------------------===// 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 implements the operating system Path API. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "llvm/Support/Path.h" 15 #include "llvm/ADT/ArrayRef.h" 16 #include "llvm/Support/Endian.h" 17 #include "llvm/Support/Errc.h" 18 #include "llvm/Support/ErrorHandling.h" 19 #include "llvm/Support/FileSystem.h" 20 #include "llvm/Support/Process.h" 21 #include "llvm/Support/Signals.h" 22 #include <cctype> 23 #include <cstring> 24 25 #if !defined(_MSC_VER) && !defined(__MINGW32__) 26 #include <unistd.h> 27 #else 28 #include <io.h> 29 #endif 30 31 using namespace llvm; 32 using namespace llvm::support::endian; 33 34 namespace { 35 using llvm::StringRef; 36 using llvm::sys::path::is_separator; 37 using llvm::sys::path::Style; 38 39 inline Style real_style(Style style) { 40 #ifdef LLVM_ON_WIN32 41 return (style == Style::posix) ? Style::posix : Style::windows; 42 #else 43 return (style == Style::windows) ? Style::windows : Style::posix; 44 #endif 45 } 46 47 inline const char *separators(Style style) { 48 if (real_style(style) == Style::windows) 49 return "\\/"; 50 return "/"; 51 } 52 53 inline char preferred_separator(Style style) { 54 if (real_style(style) == Style::windows) 55 return '\\'; 56 return '/'; 57 } 58 59 StringRef find_first_component(StringRef path, Style style) { 60 // Look for this first component in the following order. 61 // * empty (in this case we return an empty string) 62 // * either C: or {//,\\}net. 63 // * {/,\} 64 // * {file,directory}name 65 66 if (path.empty()) 67 return path; 68 69 if (real_style(style) == Style::windows) { 70 // C: 71 if (path.size() >= 2 && 72 std::isalpha(static_cast<unsigned char>(path[0])) && path[1] == ':') 73 return path.substr(0, 2); 74 } 75 76 // //net 77 if ((path.size() > 2) && is_separator(path[0], style) && 78 path[0] == path[1] && !is_separator(path[2], style)) { 79 // Find the next directory separator. 80 size_t end = path.find_first_of(separators(style), 2); 81 return path.substr(0, end); 82 } 83 84 // {/,\} 85 if (is_separator(path[0], style)) 86 return path.substr(0, 1); 87 88 // * {file,directory}name 89 size_t end = path.find_first_of(separators(style)); 90 return path.substr(0, end); 91 } 92 93 size_t filename_pos(StringRef str, Style style) { 94 if (str.size() == 2 && is_separator(str[0], style) && str[0] == str[1]) 95 return 0; 96 97 if (str.size() > 0 && is_separator(str[str.size() - 1], style)) 98 return str.size() - 1; 99 100 size_t pos = str.find_last_of(separators(style), str.size() - 1); 101 102 if (real_style(style) == Style::windows) { 103 if (pos == StringRef::npos) 104 pos = str.find_last_of(':', str.size() - 2); 105 } 106 107 if (pos == StringRef::npos || (pos == 1 && is_separator(str[0], style))) 108 return 0; 109 110 return pos + 1; 111 } 112 113 size_t root_dir_start(StringRef str, Style style) { 114 // case "c:/" 115 if (real_style(style) == Style::windows) { 116 if (str.size() > 2 && str[1] == ':' && is_separator(str[2], style)) 117 return 2; 118 } 119 120 // case "//" 121 if (str.size() == 2 && is_separator(str[0], style) && str[0] == str[1]) 122 return StringRef::npos; 123 124 // case "//net" 125 if (str.size() > 3 && is_separator(str[0], style) && str[0] == str[1] && 126 !is_separator(str[2], style)) { 127 return str.find_first_of(separators(style), 2); 128 } 129 130 // case "/" 131 if (str.size() > 0 && is_separator(str[0], style)) 132 return 0; 133 134 return StringRef::npos; 135 } 136 137 size_t parent_path_end(StringRef path, Style style) { 138 size_t end_pos = filename_pos(path, style); 139 140 bool filename_was_sep = 141 path.size() > 0 && is_separator(path[end_pos], style); 142 143 // Skip separators except for root dir. 144 size_t root_dir_pos = root_dir_start(path.substr(0, end_pos), style); 145 146 while (end_pos > 0 && (end_pos - 1) != root_dir_pos && 147 is_separator(path[end_pos - 1], style)) 148 --end_pos; 149 150 if (end_pos == 1 && root_dir_pos == 0 && filename_was_sep) 151 return StringRef::npos; 152 153 return end_pos; 154 } 155 } // end unnamed namespace 156 157 enum FSEntity { 158 FS_Dir, 159 FS_File, 160 FS_Name 161 }; 162 163 static std::error_code createUniqueEntity(const Twine &Model, int &ResultFD, 164 SmallVectorImpl<char> &ResultPath, 165 bool MakeAbsolute, unsigned Mode, 166 FSEntity Type) { 167 SmallString<128> ModelStorage; 168 Model.toVector(ModelStorage); 169 170 if (MakeAbsolute) { 171 // Make model absolute by prepending a temp directory if it's not already. 172 if (!sys::path::is_absolute(Twine(ModelStorage))) { 173 SmallString<128> TDir; 174 sys::path::system_temp_directory(true, TDir); 175 sys::path::append(TDir, Twine(ModelStorage)); 176 ModelStorage.swap(TDir); 177 } 178 } 179 180 // From here on, DO NOT modify model. It may be needed if the randomly chosen 181 // path already exists. 182 ResultPath = ModelStorage; 183 // Null terminate. 184 ResultPath.push_back(0); 185 ResultPath.pop_back(); 186 187 retry_random_path: 188 // Replace '%' with random chars. 189 for (unsigned i = 0, e = ModelStorage.size(); i != e; ++i) { 190 if (ModelStorage[i] == '%') 191 ResultPath[i] = "0123456789abcdef"[sys::Process::GetRandomNumber() & 15]; 192 } 193 194 // Try to open + create the file. 195 switch (Type) { 196 case FS_File: { 197 if (std::error_code EC = 198 sys::fs::openFileForWrite(Twine(ResultPath.begin()), ResultFD, 199 sys::fs::F_RW | sys::fs::F_Excl, Mode)) { 200 if (EC == errc::file_exists) 201 goto retry_random_path; 202 return EC; 203 } 204 205 return std::error_code(); 206 } 207 208 case FS_Name: { 209 std::error_code EC = 210 sys::fs::access(ResultPath.begin(), sys::fs::AccessMode::Exist); 211 if (EC == errc::no_such_file_or_directory) 212 return std::error_code(); 213 if (EC) 214 return EC; 215 goto retry_random_path; 216 } 217 218 case FS_Dir: { 219 if (std::error_code EC = 220 sys::fs::create_directory(ResultPath.begin(), false)) { 221 if (EC == errc::file_exists) 222 goto retry_random_path; 223 return EC; 224 } 225 return std::error_code(); 226 } 227 } 228 llvm_unreachable("Invalid Type"); 229 } 230 231 namespace llvm { 232 namespace sys { 233 namespace path { 234 235 const_iterator begin(StringRef path, Style style) { 236 const_iterator i; 237 i.Path = path; 238 i.Component = find_first_component(path, style); 239 i.Position = 0; 240 i.S = style; 241 return i; 242 } 243 244 const_iterator end(StringRef path) { 245 const_iterator i; 246 i.Path = path; 247 i.Position = path.size(); 248 return i; 249 } 250 251 const_iterator &const_iterator::operator++() { 252 assert(Position < Path.size() && "Tried to increment past end!"); 253 254 // Increment Position to past the current component 255 Position += Component.size(); 256 257 // Check for end. 258 if (Position == Path.size()) { 259 Component = StringRef(); 260 return *this; 261 } 262 263 // Both POSIX and Windows treat paths that begin with exactly two separators 264 // specially. 265 bool was_net = Component.size() > 2 && is_separator(Component[0], S) && 266 Component[1] == Component[0] && !is_separator(Component[2], S); 267 268 // Handle separators. 269 if (is_separator(Path[Position], S)) { 270 // Root dir. 271 if (was_net || 272 // c:/ 273 (real_style(S) == Style::windows && Component.endswith(":"))) { 274 Component = Path.substr(Position, 1); 275 return *this; 276 } 277 278 // Skip extra separators. 279 while (Position != Path.size() && is_separator(Path[Position], S)) { 280 ++Position; 281 } 282 283 // Treat trailing '/' as a '.'. 284 if (Position == Path.size()) { 285 --Position; 286 Component = "."; 287 return *this; 288 } 289 } 290 291 // Find next component. 292 size_t end_pos = Path.find_first_of(separators(S), Position); 293 Component = Path.slice(Position, end_pos); 294 295 return *this; 296 } 297 298 bool const_iterator::operator==(const const_iterator &RHS) const { 299 return Path.begin() == RHS.Path.begin() && Position == RHS.Position; 300 } 301 302 ptrdiff_t const_iterator::operator-(const const_iterator &RHS) const { 303 return Position - RHS.Position; 304 } 305 306 reverse_iterator rbegin(StringRef Path, Style style) { 307 reverse_iterator I; 308 I.Path = Path; 309 I.Position = Path.size(); 310 I.S = style; 311 return ++I; 312 } 313 314 reverse_iterator rend(StringRef Path) { 315 reverse_iterator I; 316 I.Path = Path; 317 I.Component = Path.substr(0, 0); 318 I.Position = 0; 319 return I; 320 } 321 322 reverse_iterator &reverse_iterator::operator++() { 323 // If we're at the end and the previous char was a '/', return '.' unless 324 // we are the root path. 325 size_t root_dir_pos = root_dir_start(Path, S); 326 if (Position == Path.size() && Path.size() > root_dir_pos + 1 && 327 is_separator(Path[Position - 1], S)) { 328 --Position; 329 Component = "."; 330 return *this; 331 } 332 333 // Skip separators unless it's the root directory. 334 size_t end_pos = Position; 335 336 while (end_pos > 0 && (end_pos - 1) != root_dir_pos && 337 is_separator(Path[end_pos - 1], S)) 338 --end_pos; 339 340 // Find next separator. 341 size_t start_pos = filename_pos(Path.substr(0, end_pos), S); 342 Component = Path.slice(start_pos, end_pos); 343 Position = start_pos; 344 return *this; 345 } 346 347 bool reverse_iterator::operator==(const reverse_iterator &RHS) const { 348 return Path.begin() == RHS.Path.begin() && Component == RHS.Component && 349 Position == RHS.Position; 350 } 351 352 ptrdiff_t reverse_iterator::operator-(const reverse_iterator &RHS) const { 353 return Position - RHS.Position; 354 } 355 356 StringRef root_path(StringRef path, Style style) { 357 const_iterator b = begin(path, style), pos = b, e = end(path); 358 if (b != e) { 359 bool has_net = 360 b->size() > 2 && is_separator((*b)[0], style) && (*b)[1] == (*b)[0]; 361 bool has_drive = (real_style(style) == Style::windows) && b->endswith(":"); 362 363 if (has_net || has_drive) { 364 if ((++pos != e) && is_separator((*pos)[0], style)) { 365 // {C:/,//net/}, so get the first two components. 366 return path.substr(0, b->size() + pos->size()); 367 } else { 368 // just {C:,//net}, return the first component. 369 return *b; 370 } 371 } 372 373 // POSIX style root directory. 374 if (is_separator((*b)[0], style)) { 375 return *b; 376 } 377 } 378 379 return StringRef(); 380 } 381 382 StringRef root_name(StringRef path, Style style) { 383 const_iterator b = begin(path, style), e = end(path); 384 if (b != e) { 385 bool has_net = 386 b->size() > 2 && is_separator((*b)[0], style) && (*b)[1] == (*b)[0]; 387 bool has_drive = (real_style(style) == Style::windows) && b->endswith(":"); 388 389 if (has_net || has_drive) { 390 // just {C:,//net}, return the first component. 391 return *b; 392 } 393 } 394 395 // No path or no name. 396 return StringRef(); 397 } 398 399 StringRef root_directory(StringRef path, Style style) { 400 const_iterator b = begin(path, style), pos = b, e = end(path); 401 if (b != e) { 402 bool has_net = 403 b->size() > 2 && is_separator((*b)[0], style) && (*b)[1] == (*b)[0]; 404 bool has_drive = (real_style(style) == Style::windows) && b->endswith(":"); 405 406 if ((has_net || has_drive) && 407 // {C:,//net}, skip to the next component. 408 (++pos != e) && is_separator((*pos)[0], style)) { 409 return *pos; 410 } 411 412 // POSIX style root directory. 413 if (!has_net && is_separator((*b)[0], style)) { 414 return *b; 415 } 416 } 417 418 // No path or no root. 419 return StringRef(); 420 } 421 422 StringRef relative_path(StringRef path, Style style) { 423 StringRef root = root_path(path, style); 424 return path.substr(root.size()); 425 } 426 427 void append(SmallVectorImpl<char> &path, Style style, const Twine &a, 428 const Twine &b, const Twine &c, const Twine &d) { 429 SmallString<32> a_storage; 430 SmallString<32> b_storage; 431 SmallString<32> c_storage; 432 SmallString<32> d_storage; 433 434 SmallVector<StringRef, 4> components; 435 if (!a.isTriviallyEmpty()) components.push_back(a.toStringRef(a_storage)); 436 if (!b.isTriviallyEmpty()) components.push_back(b.toStringRef(b_storage)); 437 if (!c.isTriviallyEmpty()) components.push_back(c.toStringRef(c_storage)); 438 if (!d.isTriviallyEmpty()) components.push_back(d.toStringRef(d_storage)); 439 440 for (auto &component : components) { 441 bool path_has_sep = 442 !path.empty() && is_separator(path[path.size() - 1], style); 443 if (path_has_sep) { 444 // Strip separators from beginning of component. 445 size_t loc = component.find_first_not_of(separators(style)); 446 StringRef c = component.substr(loc); 447 448 // Append it. 449 path.append(c.begin(), c.end()); 450 continue; 451 } 452 453 bool component_has_sep = 454 !component.empty() && is_separator(component[0], style); 455 if (!component_has_sep && 456 !(path.empty() || has_root_name(component, style))) { 457 // Add a separator. 458 path.push_back(preferred_separator(style)); 459 } 460 461 path.append(component.begin(), component.end()); 462 } 463 } 464 465 void append(SmallVectorImpl<char> &path, const Twine &a, const Twine &b, 466 const Twine &c, const Twine &d) { 467 append(path, Style::native, a, b, c, d); 468 } 469 470 void append(SmallVectorImpl<char> &path, const_iterator begin, 471 const_iterator end, Style style) { 472 for (; begin != end; ++begin) 473 path::append(path, style, *begin); 474 } 475 476 StringRef parent_path(StringRef path, Style style) { 477 size_t end_pos = parent_path_end(path, style); 478 if (end_pos == StringRef::npos) 479 return StringRef(); 480 else 481 return path.substr(0, end_pos); 482 } 483 484 void remove_filename(SmallVectorImpl<char> &path, Style style) { 485 size_t end_pos = parent_path_end(StringRef(path.begin(), path.size()), style); 486 if (end_pos != StringRef::npos) 487 path.set_size(end_pos); 488 } 489 490 void replace_extension(SmallVectorImpl<char> &path, const Twine &extension, 491 Style style) { 492 StringRef p(path.begin(), path.size()); 493 SmallString<32> ext_storage; 494 StringRef ext = extension.toStringRef(ext_storage); 495 496 // Erase existing extension. 497 size_t pos = p.find_last_of('.'); 498 if (pos != StringRef::npos && pos >= filename_pos(p, style)) 499 path.set_size(pos); 500 501 // Append '.' if needed. 502 if (ext.size() > 0 && ext[0] != '.') 503 path.push_back('.'); 504 505 // Append extension. 506 path.append(ext.begin(), ext.end()); 507 } 508 509 void replace_path_prefix(SmallVectorImpl<char> &Path, 510 const StringRef &OldPrefix, const StringRef &NewPrefix, 511 Style style) { 512 if (OldPrefix.empty() && NewPrefix.empty()) 513 return; 514 515 StringRef OrigPath(Path.begin(), Path.size()); 516 if (!OrigPath.startswith(OldPrefix)) 517 return; 518 519 // If prefixes have the same size we can simply copy the new one over. 520 if (OldPrefix.size() == NewPrefix.size()) { 521 std::copy(NewPrefix.begin(), NewPrefix.end(), Path.begin()); 522 return; 523 } 524 525 StringRef RelPath = OrigPath.substr(OldPrefix.size()); 526 SmallString<256> NewPath; 527 path::append(NewPath, style, NewPrefix); 528 path::append(NewPath, style, RelPath); 529 Path.swap(NewPath); 530 } 531 532 void native(const Twine &path, SmallVectorImpl<char> &result, Style style) { 533 assert((!path.isSingleStringRef() || 534 path.getSingleStringRef().data() != result.data()) && 535 "path and result are not allowed to overlap!"); 536 // Clear result. 537 result.clear(); 538 path.toVector(result); 539 native(result, style); 540 } 541 542 void native(SmallVectorImpl<char> &Path, Style style) { 543 if (Path.empty()) 544 return; 545 if (real_style(style) == Style::windows) { 546 std::replace(Path.begin(), Path.end(), '/', '\\'); 547 if (Path[0] == '~' && (Path.size() == 1 || is_separator(Path[1], style))) { 548 SmallString<128> PathHome; 549 home_directory(PathHome); 550 PathHome.append(Path.begin() + 1, Path.end()); 551 Path = PathHome; 552 } 553 } else { 554 for (auto PI = Path.begin(), PE = Path.end(); PI < PE; ++PI) { 555 if (*PI == '\\') { 556 auto PN = PI + 1; 557 if (PN < PE && *PN == '\\') 558 ++PI; // increment once, the for loop will move over the escaped slash 559 else 560 *PI = '/'; 561 } 562 } 563 } 564 } 565 566 std::string convert_to_slash(StringRef path, Style style) { 567 if (real_style(style) != Style::windows) 568 return path; 569 570 std::string s = path.str(); 571 std::replace(s.begin(), s.end(), '\\', '/'); 572 return s; 573 } 574 575 StringRef filename(StringRef path, Style style) { return *rbegin(path, style); } 576 577 StringRef stem(StringRef path, Style style) { 578 StringRef fname = filename(path, style); 579 size_t pos = fname.find_last_of('.'); 580 if (pos == StringRef::npos) 581 return fname; 582 else 583 if ((fname.size() == 1 && fname == ".") || 584 (fname.size() == 2 && fname == "..")) 585 return fname; 586 else 587 return fname.substr(0, pos); 588 } 589 590 StringRef extension(StringRef path, Style style) { 591 StringRef fname = filename(path, style); 592 size_t pos = fname.find_last_of('.'); 593 if (pos == StringRef::npos) 594 return StringRef(); 595 else 596 if ((fname.size() == 1 && fname == ".") || 597 (fname.size() == 2 && fname == "..")) 598 return StringRef(); 599 else 600 return fname.substr(pos); 601 } 602 603 bool is_separator(char value, Style style) { 604 if (value == '/') 605 return true; 606 if (real_style(style) == Style::windows) 607 return value == '\\'; 608 return false; 609 } 610 611 StringRef get_separator(Style style) { 612 if (real_style(style) == Style::windows) 613 return "\\"; 614 return "/"; 615 } 616 617 bool has_root_name(const Twine &path, Style style) { 618 SmallString<128> path_storage; 619 StringRef p = path.toStringRef(path_storage); 620 621 return !root_name(p, style).empty(); 622 } 623 624 bool has_root_directory(const Twine &path, Style style) { 625 SmallString<128> path_storage; 626 StringRef p = path.toStringRef(path_storage); 627 628 return !root_directory(p, style).empty(); 629 } 630 631 bool has_root_path(const Twine &path, Style style) { 632 SmallString<128> path_storage; 633 StringRef p = path.toStringRef(path_storage); 634 635 return !root_path(p, style).empty(); 636 } 637 638 bool has_relative_path(const Twine &path, Style style) { 639 SmallString<128> path_storage; 640 StringRef p = path.toStringRef(path_storage); 641 642 return !relative_path(p, style).empty(); 643 } 644 645 bool has_filename(const Twine &path, Style style) { 646 SmallString<128> path_storage; 647 StringRef p = path.toStringRef(path_storage); 648 649 return !filename(p, style).empty(); 650 } 651 652 bool has_parent_path(const Twine &path, Style style) { 653 SmallString<128> path_storage; 654 StringRef p = path.toStringRef(path_storage); 655 656 return !parent_path(p, style).empty(); 657 } 658 659 bool has_stem(const Twine &path, Style style) { 660 SmallString<128> path_storage; 661 StringRef p = path.toStringRef(path_storage); 662 663 return !stem(p, style).empty(); 664 } 665 666 bool has_extension(const Twine &path, Style style) { 667 SmallString<128> path_storage; 668 StringRef p = path.toStringRef(path_storage); 669 670 return !extension(p, style).empty(); 671 } 672 673 bool is_absolute(const Twine &path, Style style) { 674 SmallString<128> path_storage; 675 StringRef p = path.toStringRef(path_storage); 676 677 bool rootDir = has_root_directory(p, style); 678 bool rootName = 679 (real_style(style) != Style::windows) || has_root_name(p, style); 680 681 return rootDir && rootName; 682 } 683 684 bool is_relative(const Twine &path, Style style) { 685 return !is_absolute(path, style); 686 } 687 688 StringRef remove_leading_dotslash(StringRef Path, Style style) { 689 // Remove leading "./" (or ".//" or "././" etc.) 690 while (Path.size() > 2 && Path[0] == '.' && is_separator(Path[1], style)) { 691 Path = Path.substr(2); 692 while (Path.size() > 0 && is_separator(Path[0], style)) 693 Path = Path.substr(1); 694 } 695 return Path; 696 } 697 698 static SmallString<256> remove_dots(StringRef path, bool remove_dot_dot, 699 Style style) { 700 SmallVector<StringRef, 16> components; 701 702 // Skip the root path, then look for traversal in the components. 703 StringRef rel = path::relative_path(path, style); 704 for (StringRef C : 705 llvm::make_range(path::begin(rel, style), path::end(rel))) { 706 if (C == ".") 707 continue; 708 // Leading ".." will remain in the path unless it's at the root. 709 if (remove_dot_dot && C == "..") { 710 if (!components.empty() && components.back() != "..") { 711 components.pop_back(); 712 continue; 713 } 714 if (path::is_absolute(path, style)) 715 continue; 716 } 717 components.push_back(C); 718 } 719 720 SmallString<256> buffer = path::root_path(path, style); 721 for (StringRef C : components) 722 path::append(buffer, style, C); 723 return buffer; 724 } 725 726 bool remove_dots(SmallVectorImpl<char> &path, bool remove_dot_dot, 727 Style style) { 728 StringRef p(path.data(), path.size()); 729 730 SmallString<256> result = remove_dots(p, remove_dot_dot, style); 731 if (result == path) 732 return false; 733 734 path.swap(result); 735 return true; 736 } 737 738 } // end namespace path 739 740 namespace fs { 741 742 std::error_code getUniqueID(const Twine Path, UniqueID &Result) { 743 file_status Status; 744 std::error_code EC = status(Path, Status); 745 if (EC) 746 return EC; 747 Result = Status.getUniqueID(); 748 return std::error_code(); 749 } 750 751 std::error_code createUniqueFile(const Twine &Model, int &ResultFd, 752 SmallVectorImpl<char> &ResultPath, 753 unsigned Mode) { 754 return createUniqueEntity(Model, ResultFd, ResultPath, false, Mode, FS_File); 755 } 756 757 std::error_code createUniqueFile(const Twine &Model, 758 SmallVectorImpl<char> &ResultPath) { 759 int Dummy; 760 return createUniqueEntity(Model, Dummy, ResultPath, false, 0, FS_Name); 761 } 762 763 TempFile::TempFile(StringRef Name, int FD) : TmpName(Name), FD(FD) {} 764 TempFile::TempFile(TempFile &&Other) { *this = std::move(Other); } 765 TempFile &TempFile::operator=(TempFile &&Other) { 766 TmpName = std::move(Other.TmpName); 767 FD = Other.FD; 768 Other.Done = true; 769 return *this; 770 } 771 772 TempFile::~TempFile() { assert(Done); } 773 774 Error TempFile::discard() { 775 if (Done) 776 return Error::success(); 777 Done = true; 778 // Always try to close and remove. 779 std::error_code RemoveEC = fs::remove(TmpName); 780 sys::DontRemoveFileOnSignal(TmpName); 781 if (close(FD) == -1) { 782 std::error_code EC = std::error_code(errno, std::generic_category()); 783 return errorCodeToError(EC); 784 } 785 return errorCodeToError(RemoveEC); 786 } 787 788 Error TempFile::keep(const Twine &Name) { 789 assert(!Done); 790 Done = true; 791 // Always try to close and rename. 792 std::error_code RenameEC = fs::rename(TmpName, Name); 793 sys::DontRemoveFileOnSignal(TmpName); 794 if (close(FD) == -1) { 795 std::error_code EC(errno, std::generic_category()); 796 return errorCodeToError(EC); 797 } 798 return errorCodeToError(RenameEC); 799 } 800 801 Expected<TempFile> TempFile::create(const Twine &Model, unsigned Mode) { 802 int FD; 803 SmallString<128> ResultPath; 804 if (std::error_code EC = createUniqueFile(Model, FD, ResultPath, Mode)) 805 return errorCodeToError(EC); 806 807 // Make sure we delete the file when RemoveFileOnSignal fails. 808 TempFile Ret(ResultPath, FD); 809 if (sys::RemoveFileOnSignal(ResultPath)) { 810 consumeError(Ret.discard()); 811 std::error_code EC(errc::operation_not_permitted); 812 return errorCodeToError(EC); 813 } 814 return std::move(Ret); 815 } 816 817 static std::error_code 818 createTemporaryFile(const Twine &Model, int &ResultFD, 819 llvm::SmallVectorImpl<char> &ResultPath, FSEntity Type) { 820 SmallString<128> Storage; 821 StringRef P = Model.toNullTerminatedStringRef(Storage); 822 assert(P.find_first_of(separators(Style::native)) == StringRef::npos && 823 "Model must be a simple filename."); 824 // Use P.begin() so that createUniqueEntity doesn't need to recreate Storage. 825 return createUniqueEntity(P.begin(), ResultFD, ResultPath, 826 true, owner_read | owner_write, Type); 827 } 828 829 static std::error_code 830 createTemporaryFile(const Twine &Prefix, StringRef Suffix, int &ResultFD, 831 llvm::SmallVectorImpl<char> &ResultPath, FSEntity Type) { 832 const char *Middle = Suffix.empty() ? "-%%%%%%" : "-%%%%%%."; 833 return createTemporaryFile(Prefix + Middle + Suffix, ResultFD, ResultPath, 834 Type); 835 } 836 837 std::error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix, 838 int &ResultFD, 839 SmallVectorImpl<char> &ResultPath) { 840 return createTemporaryFile(Prefix, Suffix, ResultFD, ResultPath, FS_File); 841 } 842 843 std::error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix, 844 SmallVectorImpl<char> &ResultPath) { 845 int Dummy; 846 return createTemporaryFile(Prefix, Suffix, Dummy, ResultPath, FS_Name); 847 } 848 849 850 // This is a mkdtemp with a different pattern. We use createUniqueEntity mostly 851 // for consistency. We should try using mkdtemp. 852 std::error_code createUniqueDirectory(const Twine &Prefix, 853 SmallVectorImpl<char> &ResultPath) { 854 int Dummy; 855 return createUniqueEntity(Prefix + "-%%%%%%", Dummy, ResultPath, 856 true, 0, FS_Dir); 857 } 858 859 static std::error_code make_absolute(const Twine ¤t_directory, 860 SmallVectorImpl<char> &path, 861 bool use_current_directory) { 862 StringRef p(path.data(), path.size()); 863 864 bool rootDirectory = path::has_root_directory(p); 865 bool rootName = 866 (real_style(Style::native) != Style::windows) || path::has_root_name(p); 867 868 // Already absolute. 869 if (rootName && rootDirectory) 870 return std::error_code(); 871 872 // All of the following conditions will need the current directory. 873 SmallString<128> current_dir; 874 if (use_current_directory) 875 current_directory.toVector(current_dir); 876 else if (std::error_code ec = current_path(current_dir)) 877 return ec; 878 879 // Relative path. Prepend the current directory. 880 if (!rootName && !rootDirectory) { 881 // Append path to the current directory. 882 path::append(current_dir, p); 883 // Set path to the result. 884 path.swap(current_dir); 885 return std::error_code(); 886 } 887 888 if (!rootName && rootDirectory) { 889 StringRef cdrn = path::root_name(current_dir); 890 SmallString<128> curDirRootName(cdrn.begin(), cdrn.end()); 891 path::append(curDirRootName, p); 892 // Set path to the result. 893 path.swap(curDirRootName); 894 return std::error_code(); 895 } 896 897 if (rootName && !rootDirectory) { 898 StringRef pRootName = path::root_name(p); 899 StringRef bRootDirectory = path::root_directory(current_dir); 900 StringRef bRelativePath = path::relative_path(current_dir); 901 StringRef pRelativePath = path::relative_path(p); 902 903 SmallString<128> res; 904 path::append(res, pRootName, bRootDirectory, bRelativePath, pRelativePath); 905 path.swap(res); 906 return std::error_code(); 907 } 908 909 llvm_unreachable("All rootName and rootDirectory combinations should have " 910 "occurred above!"); 911 } 912 913 std::error_code make_absolute(const Twine ¤t_directory, 914 SmallVectorImpl<char> &path) { 915 return make_absolute(current_directory, path, true); 916 } 917 918 std::error_code make_absolute(SmallVectorImpl<char> &path) { 919 return make_absolute(Twine(), path, false); 920 } 921 922 std::error_code create_directories(const Twine &Path, bool IgnoreExisting, 923 perms Perms) { 924 SmallString<128> PathStorage; 925 StringRef P = Path.toStringRef(PathStorage); 926 927 // Be optimistic and try to create the directory 928 std::error_code EC = create_directory(P, IgnoreExisting, Perms); 929 // If we succeeded, or had any error other than the parent not existing, just 930 // return it. 931 if (EC != errc::no_such_file_or_directory) 932 return EC; 933 934 // We failed because of a no_such_file_or_directory, try to create the 935 // parent. 936 StringRef Parent = path::parent_path(P); 937 if (Parent.empty()) 938 return EC; 939 940 if ((EC = create_directories(Parent, IgnoreExisting, Perms))) 941 return EC; 942 943 return create_directory(P, IgnoreExisting, Perms); 944 } 945 946 std::error_code copy_file(const Twine &From, const Twine &To) { 947 int ReadFD, WriteFD; 948 if (std::error_code EC = openFileForRead(From, ReadFD)) 949 return EC; 950 if (std::error_code EC = openFileForWrite(To, WriteFD, F_None)) { 951 close(ReadFD); 952 return EC; 953 } 954 955 const size_t BufSize = 4096; 956 char *Buf = new char[BufSize]; 957 int BytesRead = 0, BytesWritten = 0; 958 for (;;) { 959 BytesRead = read(ReadFD, Buf, BufSize); 960 if (BytesRead <= 0) 961 break; 962 while (BytesRead) { 963 BytesWritten = write(WriteFD, Buf, BytesRead); 964 if (BytesWritten < 0) 965 break; 966 BytesRead -= BytesWritten; 967 } 968 if (BytesWritten < 0) 969 break; 970 } 971 close(ReadFD); 972 close(WriteFD); 973 delete[] Buf; 974 975 if (BytesRead < 0 || BytesWritten < 0) 976 return std::error_code(errno, std::generic_category()); 977 return std::error_code(); 978 } 979 980 ErrorOr<MD5::MD5Result> md5_contents(int FD) { 981 MD5 Hash; 982 983 constexpr size_t BufSize = 4096; 984 std::vector<uint8_t> Buf(BufSize); 985 int BytesRead = 0; 986 for (;;) { 987 BytesRead = read(FD, Buf.data(), BufSize); 988 if (BytesRead <= 0) 989 break; 990 Hash.update(makeArrayRef(Buf.data(), BytesRead)); 991 } 992 993 if (BytesRead < 0) 994 return std::error_code(errno, std::generic_category()); 995 MD5::MD5Result Result; 996 Hash.final(Result); 997 return Result; 998 } 999 1000 ErrorOr<MD5::MD5Result> md5_contents(const Twine &Path) { 1001 int FD; 1002 if (auto EC = openFileForRead(Path, FD)) 1003 return EC; 1004 1005 auto Result = md5_contents(FD); 1006 close(FD); 1007 return Result; 1008 } 1009 1010 bool exists(const basic_file_status &status) { 1011 return status_known(status) && status.type() != file_type::file_not_found; 1012 } 1013 1014 bool status_known(const basic_file_status &s) { 1015 return s.type() != file_type::status_error; 1016 } 1017 1018 file_type get_file_type(const Twine &Path, bool Follow) { 1019 file_status st; 1020 if (status(Path, st, Follow)) 1021 return file_type::status_error; 1022 return st.type(); 1023 } 1024 1025 bool is_directory(const basic_file_status &status) { 1026 return status.type() == file_type::directory_file; 1027 } 1028 1029 std::error_code is_directory(const Twine &path, bool &result) { 1030 file_status st; 1031 if (std::error_code ec = status(path, st)) 1032 return ec; 1033 result = is_directory(st); 1034 return std::error_code(); 1035 } 1036 1037 bool is_regular_file(const basic_file_status &status) { 1038 return status.type() == file_type::regular_file; 1039 } 1040 1041 std::error_code is_regular_file(const Twine &path, bool &result) { 1042 file_status st; 1043 if (std::error_code ec = status(path, st)) 1044 return ec; 1045 result = is_regular_file(st); 1046 return std::error_code(); 1047 } 1048 1049 bool is_symlink_file(const basic_file_status &status) { 1050 return status.type() == file_type::symlink_file; 1051 } 1052 1053 std::error_code is_symlink_file(const Twine &path, bool &result) { 1054 file_status st; 1055 if (std::error_code ec = status(path, st, false)) 1056 return ec; 1057 result = is_symlink_file(st); 1058 return std::error_code(); 1059 } 1060 1061 bool is_other(const basic_file_status &status) { 1062 return exists(status) && 1063 !is_regular_file(status) && 1064 !is_directory(status); 1065 } 1066 1067 std::error_code is_other(const Twine &Path, bool &Result) { 1068 file_status FileStatus; 1069 if (std::error_code EC = status(Path, FileStatus)) 1070 return EC; 1071 Result = is_other(FileStatus); 1072 return std::error_code(); 1073 } 1074 1075 void directory_entry::replace_filename(const Twine &filename, 1076 basic_file_status st) { 1077 SmallString<128> path = path::parent_path(Path); 1078 path::append(path, filename); 1079 Path = path.str(); 1080 Status = st; 1081 } 1082 1083 ErrorOr<perms> getPermissions(const Twine &Path) { 1084 file_status Status; 1085 if (std::error_code EC = status(Path, Status)) 1086 return EC; 1087 1088 return Status.permissions(); 1089 } 1090 1091 } // end namespace fs 1092 } // end namespace sys 1093 } // end namespace llvm 1094 1095 // Include the truly platform-specific parts. 1096 #if defined(LLVM_ON_UNIX) 1097 #include "Unix/Path.inc" 1098 #endif 1099 #if defined(LLVM_ON_WIN32) 1100 #include "Windows/Path.inc" 1101 #endif 1102 1103 namespace llvm { 1104 namespace sys { 1105 namespace path { 1106 1107 bool user_cache_directory(SmallVectorImpl<char> &Result, const Twine &Path1, 1108 const Twine &Path2, const Twine &Path3) { 1109 if (getUserCacheDir(Result)) { 1110 append(Result, Path1, Path2, Path3); 1111 return true; 1112 } 1113 return false; 1114 } 1115 1116 } // end namespace path 1117 } // end namsspace sys 1118 } // end namespace llvm 1119