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 Done = true; 776 // Always try to close and remove. 777 std::error_code RemoveEC; 778 if (!TmpName.empty()) { 779 RemoveEC = fs::remove(TmpName); 780 sys::DontRemoveFileOnSignal(TmpName); 781 } 782 if (FD != -1 && close(FD) == -1) { 783 std::error_code EC = std::error_code(errno, std::generic_category()); 784 return errorCodeToError(EC); 785 } 786 return errorCodeToError(RemoveEC); 787 } 788 789 Error TempFile::keep(const Twine &Name) { 790 assert(!Done); 791 Done = true; 792 // Always try to close and rename. 793 std::error_code RenameEC = fs::rename(TmpName, Name); 794 sys::DontRemoveFileOnSignal(TmpName); 795 796 if (!RenameEC) 797 TmpName = ""; 798 799 if (close(FD) == -1) { 800 std::error_code EC(errno, std::generic_category()); 801 return errorCodeToError(EC); 802 } 803 FD = -1; 804 805 return errorCodeToError(RenameEC); 806 } 807 808 Error TempFile::keep() { 809 assert(!Done); 810 Done = true; 811 812 sys::DontRemoveFileOnSignal(TmpName); 813 TmpName = ""; 814 815 if (close(FD) == -1) { 816 std::error_code EC(errno, std::generic_category()); 817 return errorCodeToError(EC); 818 } 819 FD = -1; 820 821 return Error::success(); 822 } 823 824 Expected<TempFile> TempFile::create(const Twine &Model, unsigned Mode) { 825 int FD; 826 SmallString<128> ResultPath; 827 if (std::error_code EC = createUniqueFile(Model, FD, ResultPath, Mode)) 828 return errorCodeToError(EC); 829 830 // Make sure we delete the file when RemoveFileOnSignal fails. 831 TempFile Ret(ResultPath, FD); 832 if (sys::RemoveFileOnSignal(ResultPath)) { 833 consumeError(Ret.discard()); 834 std::error_code EC(errc::operation_not_permitted); 835 return errorCodeToError(EC); 836 } 837 return std::move(Ret); 838 } 839 840 static std::error_code 841 createTemporaryFile(const Twine &Model, int &ResultFD, 842 llvm::SmallVectorImpl<char> &ResultPath, FSEntity Type) { 843 SmallString<128> Storage; 844 StringRef P = Model.toNullTerminatedStringRef(Storage); 845 assert(P.find_first_of(separators(Style::native)) == StringRef::npos && 846 "Model must be a simple filename."); 847 // Use P.begin() so that createUniqueEntity doesn't need to recreate Storage. 848 return createUniqueEntity(P.begin(), ResultFD, ResultPath, 849 true, owner_read | owner_write, Type); 850 } 851 852 static std::error_code 853 createTemporaryFile(const Twine &Prefix, StringRef Suffix, int &ResultFD, 854 llvm::SmallVectorImpl<char> &ResultPath, FSEntity Type) { 855 const char *Middle = Suffix.empty() ? "-%%%%%%" : "-%%%%%%."; 856 return createTemporaryFile(Prefix + Middle + Suffix, ResultFD, ResultPath, 857 Type); 858 } 859 860 std::error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix, 861 int &ResultFD, 862 SmallVectorImpl<char> &ResultPath) { 863 return createTemporaryFile(Prefix, Suffix, ResultFD, ResultPath, FS_File); 864 } 865 866 std::error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix, 867 SmallVectorImpl<char> &ResultPath) { 868 int Dummy; 869 return createTemporaryFile(Prefix, Suffix, Dummy, ResultPath, FS_Name); 870 } 871 872 873 // This is a mkdtemp with a different pattern. We use createUniqueEntity mostly 874 // for consistency. We should try using mkdtemp. 875 std::error_code createUniqueDirectory(const Twine &Prefix, 876 SmallVectorImpl<char> &ResultPath) { 877 int Dummy; 878 return createUniqueEntity(Prefix + "-%%%%%%", Dummy, ResultPath, 879 true, 0, FS_Dir); 880 } 881 882 static std::error_code make_absolute(const Twine ¤t_directory, 883 SmallVectorImpl<char> &path, 884 bool use_current_directory) { 885 StringRef p(path.data(), path.size()); 886 887 bool rootDirectory = path::has_root_directory(p); 888 bool rootName = 889 (real_style(Style::native) != Style::windows) || path::has_root_name(p); 890 891 // Already absolute. 892 if (rootName && rootDirectory) 893 return std::error_code(); 894 895 // All of the following conditions will need the current directory. 896 SmallString<128> current_dir; 897 if (use_current_directory) 898 current_directory.toVector(current_dir); 899 else if (std::error_code ec = current_path(current_dir)) 900 return ec; 901 902 // Relative path. Prepend the current directory. 903 if (!rootName && !rootDirectory) { 904 // Append path to the current directory. 905 path::append(current_dir, p); 906 // Set path to the result. 907 path.swap(current_dir); 908 return std::error_code(); 909 } 910 911 if (!rootName && rootDirectory) { 912 StringRef cdrn = path::root_name(current_dir); 913 SmallString<128> curDirRootName(cdrn.begin(), cdrn.end()); 914 path::append(curDirRootName, p); 915 // Set path to the result. 916 path.swap(curDirRootName); 917 return std::error_code(); 918 } 919 920 if (rootName && !rootDirectory) { 921 StringRef pRootName = path::root_name(p); 922 StringRef bRootDirectory = path::root_directory(current_dir); 923 StringRef bRelativePath = path::relative_path(current_dir); 924 StringRef pRelativePath = path::relative_path(p); 925 926 SmallString<128> res; 927 path::append(res, pRootName, bRootDirectory, bRelativePath, pRelativePath); 928 path.swap(res); 929 return std::error_code(); 930 } 931 932 llvm_unreachable("All rootName and rootDirectory combinations should have " 933 "occurred above!"); 934 } 935 936 std::error_code make_absolute(const Twine ¤t_directory, 937 SmallVectorImpl<char> &path) { 938 return make_absolute(current_directory, path, true); 939 } 940 941 std::error_code make_absolute(SmallVectorImpl<char> &path) { 942 return make_absolute(Twine(), path, false); 943 } 944 945 std::error_code create_directories(const Twine &Path, bool IgnoreExisting, 946 perms Perms) { 947 SmallString<128> PathStorage; 948 StringRef P = Path.toStringRef(PathStorage); 949 950 // Be optimistic and try to create the directory 951 std::error_code EC = create_directory(P, IgnoreExisting, Perms); 952 // If we succeeded, or had any error other than the parent not existing, just 953 // return it. 954 if (EC != errc::no_such_file_or_directory) 955 return EC; 956 957 // We failed because of a no_such_file_or_directory, try to create the 958 // parent. 959 StringRef Parent = path::parent_path(P); 960 if (Parent.empty()) 961 return EC; 962 963 if ((EC = create_directories(Parent, IgnoreExisting, Perms))) 964 return EC; 965 966 return create_directory(P, IgnoreExisting, Perms); 967 } 968 969 std::error_code copy_file(const Twine &From, const Twine &To) { 970 int ReadFD, WriteFD; 971 if (std::error_code EC = openFileForRead(From, ReadFD)) 972 return EC; 973 if (std::error_code EC = openFileForWrite(To, WriteFD, F_None)) { 974 close(ReadFD); 975 return EC; 976 } 977 978 const size_t BufSize = 4096; 979 char *Buf = new char[BufSize]; 980 int BytesRead = 0, BytesWritten = 0; 981 for (;;) { 982 BytesRead = read(ReadFD, Buf, BufSize); 983 if (BytesRead <= 0) 984 break; 985 while (BytesRead) { 986 BytesWritten = write(WriteFD, Buf, BytesRead); 987 if (BytesWritten < 0) 988 break; 989 BytesRead -= BytesWritten; 990 } 991 if (BytesWritten < 0) 992 break; 993 } 994 close(ReadFD); 995 close(WriteFD); 996 delete[] Buf; 997 998 if (BytesRead < 0 || BytesWritten < 0) 999 return std::error_code(errno, std::generic_category()); 1000 return std::error_code(); 1001 } 1002 1003 ErrorOr<MD5::MD5Result> md5_contents(int FD) { 1004 MD5 Hash; 1005 1006 constexpr size_t BufSize = 4096; 1007 std::vector<uint8_t> Buf(BufSize); 1008 int BytesRead = 0; 1009 for (;;) { 1010 BytesRead = read(FD, Buf.data(), BufSize); 1011 if (BytesRead <= 0) 1012 break; 1013 Hash.update(makeArrayRef(Buf.data(), BytesRead)); 1014 } 1015 1016 if (BytesRead < 0) 1017 return std::error_code(errno, std::generic_category()); 1018 MD5::MD5Result Result; 1019 Hash.final(Result); 1020 return Result; 1021 } 1022 1023 ErrorOr<MD5::MD5Result> md5_contents(const Twine &Path) { 1024 int FD; 1025 if (auto EC = openFileForRead(Path, FD)) 1026 return EC; 1027 1028 auto Result = md5_contents(FD); 1029 close(FD); 1030 return Result; 1031 } 1032 1033 bool exists(const basic_file_status &status) { 1034 return status_known(status) && status.type() != file_type::file_not_found; 1035 } 1036 1037 bool status_known(const basic_file_status &s) { 1038 return s.type() != file_type::status_error; 1039 } 1040 1041 file_type get_file_type(const Twine &Path, bool Follow) { 1042 file_status st; 1043 if (status(Path, st, Follow)) 1044 return file_type::status_error; 1045 return st.type(); 1046 } 1047 1048 bool is_directory(const basic_file_status &status) { 1049 return status.type() == file_type::directory_file; 1050 } 1051 1052 std::error_code is_directory(const Twine &path, bool &result) { 1053 file_status st; 1054 if (std::error_code ec = status(path, st)) 1055 return ec; 1056 result = is_directory(st); 1057 return std::error_code(); 1058 } 1059 1060 bool is_regular_file(const basic_file_status &status) { 1061 return status.type() == file_type::regular_file; 1062 } 1063 1064 std::error_code is_regular_file(const Twine &path, bool &result) { 1065 file_status st; 1066 if (std::error_code ec = status(path, st)) 1067 return ec; 1068 result = is_regular_file(st); 1069 return std::error_code(); 1070 } 1071 1072 bool is_symlink_file(const basic_file_status &status) { 1073 return status.type() == file_type::symlink_file; 1074 } 1075 1076 std::error_code is_symlink_file(const Twine &path, bool &result) { 1077 file_status st; 1078 if (std::error_code ec = status(path, st, false)) 1079 return ec; 1080 result = is_symlink_file(st); 1081 return std::error_code(); 1082 } 1083 1084 bool is_other(const basic_file_status &status) { 1085 return exists(status) && 1086 !is_regular_file(status) && 1087 !is_directory(status); 1088 } 1089 1090 std::error_code is_other(const Twine &Path, bool &Result) { 1091 file_status FileStatus; 1092 if (std::error_code EC = status(Path, FileStatus)) 1093 return EC; 1094 Result = is_other(FileStatus); 1095 return std::error_code(); 1096 } 1097 1098 void directory_entry::replace_filename(const Twine &filename, 1099 basic_file_status st) { 1100 SmallString<128> path = path::parent_path(Path); 1101 path::append(path, filename); 1102 Path = path.str(); 1103 Status = st; 1104 } 1105 1106 ErrorOr<perms> getPermissions(const Twine &Path) { 1107 file_status Status; 1108 if (std::error_code EC = status(Path, Status)) 1109 return EC; 1110 1111 return Status.permissions(); 1112 } 1113 1114 } // end namespace fs 1115 } // end namespace sys 1116 } // end namespace llvm 1117 1118 // Include the truly platform-specific parts. 1119 #if defined(LLVM_ON_UNIX) 1120 #include "Unix/Path.inc" 1121 #endif 1122 #if defined(LLVM_ON_WIN32) 1123 #include "Windows/Path.inc" 1124 #endif 1125 1126 namespace llvm { 1127 namespace sys { 1128 namespace path { 1129 1130 bool user_cache_directory(SmallVectorImpl<char> &Result, const Twine &Path1, 1131 const Twine &Path2, const Twine &Path3) { 1132 if (getUserCacheDir(Result)) { 1133 append(Result, Path1, Path2, Path3); 1134 return true; 1135 } 1136 return false; 1137 } 1138 1139 } // end namespace path 1140 } // end namsspace sys 1141 } // end namespace llvm 1142