Add a convenience createUniqueDirectory function.
[oota-llvm.git] / lib / Support / Path.cpp
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/Support/Endian.h"
16 #include "llvm/Support/ErrorHandling.h"
17 #include "llvm/Support/FileSystem.h"
18 #include <cctype>
19 #include <cstdio>
20 #include <cstring>
21
22 #if !defined(_MSC_VER) && !defined(__MINGW32__)
23 #include <unistd.h>
24 #else
25 #include <io.h>
26 #endif
27
28 namespace {
29   using llvm::StringRef;
30   using llvm::sys::path::is_separator;
31
32 #ifdef LLVM_ON_WIN32
33   const char *separators = "\\/";
34   const char  prefered_separator = '\\';
35 #else
36   const char  separators = '/';
37   const char  prefered_separator = '/';
38 #endif
39
40   StringRef find_first_component(StringRef path) {
41     // Look for this first component in the following order.
42     // * empty (in this case we return an empty string)
43     // * either C: or {//,\\}net.
44     // * {/,\}
45     // * {.,..}
46     // * {file,directory}name
47
48     if (path.empty())
49       return path;
50
51 #ifdef LLVM_ON_WIN32
52     // C:
53     if (path.size() >= 2 && std::isalpha(static_cast<unsigned char>(path[0])) &&
54         path[1] == ':')
55       return path.substr(0, 2);
56 #endif
57
58     // //net
59     if ((path.size() > 2) &&
60         is_separator(path[0]) &&
61         path[0] == path[1] &&
62         !is_separator(path[2])) {
63       // Find the next directory separator.
64       size_t end = path.find_first_of(separators, 2);
65       return path.substr(0, end);
66     }
67
68     // {/,\}
69     if (is_separator(path[0]))
70       return path.substr(0, 1);
71
72     if (path.startswith(".."))
73       return path.substr(0, 2);
74
75     if (path[0] == '.')
76       return path.substr(0, 1);
77
78     // * {file,directory}name
79     size_t end = path.find_first_of(separators, 2);
80     return path.substr(0, end);
81   }
82
83   size_t filename_pos(StringRef str) {
84     if (str.size() == 2 &&
85         is_separator(str[0]) &&
86         str[0] == str[1])
87       return 0;
88
89     if (str.size() > 0 && is_separator(str[str.size() - 1]))
90       return str.size() - 1;
91
92     size_t pos = str.find_last_of(separators, str.size() - 1);
93
94 #ifdef LLVM_ON_WIN32
95     if (pos == StringRef::npos)
96       pos = str.find_last_of(':', str.size() - 2);
97 #endif
98
99     if (pos == StringRef::npos ||
100         (pos == 1 && is_separator(str[0])))
101       return 0;
102
103     return pos + 1;
104   }
105
106   size_t root_dir_start(StringRef str) {
107     // case "c:/"
108 #ifdef LLVM_ON_WIN32
109     if (str.size() > 2 &&
110         str[1] == ':' &&
111         is_separator(str[2]))
112       return 2;
113 #endif
114
115     // case "//"
116     if (str.size() == 2 &&
117         is_separator(str[0]) &&
118         str[0] == str[1])
119       return StringRef::npos;
120
121     // case "//net"
122     if (str.size() > 3 &&
123         is_separator(str[0]) &&
124         str[0] == str[1] &&
125         !is_separator(str[2])) {
126       return str.find_first_of(separators, 2);
127     }
128
129     // case "/"
130     if (str.size() > 0 && is_separator(str[0]))
131       return 0;
132
133     return StringRef::npos;
134   }
135
136   size_t parent_path_end(StringRef path) {
137     size_t end_pos = filename_pos(path);
138
139     bool filename_was_sep = path.size() > 0 && is_separator(path[end_pos]);
140
141     // Skip separators except for root dir.
142     size_t root_dir_pos = root_dir_start(path.substr(0, end_pos));
143
144     while(end_pos > 0 &&
145           (end_pos - 1) != root_dir_pos &&
146           is_separator(path[end_pos - 1]))
147       --end_pos;
148
149     if (end_pos == 1 && root_dir_pos == 0 && filename_was_sep)
150       return StringRef::npos;
151
152     return end_pos;
153   }
154 } // end unnamed namespace
155
156 namespace llvm {
157 namespace sys  {
158 namespace path {
159
160 const_iterator begin(StringRef path) {
161   const_iterator i;
162   i.Path      = path;
163   i.Component = find_first_component(path);
164   i.Position  = 0;
165   return i;
166 }
167
168 const_iterator end(StringRef path) {
169   const_iterator i;
170   i.Path      = path;
171   i.Position  = path.size();
172   return i;
173 }
174
175 const_iterator &const_iterator::operator++() {
176   assert(Position < Path.size() && "Tried to increment past end!");
177
178   // Increment Position to past the current component
179   Position += Component.size();
180
181   // Check for end.
182   if (Position == Path.size()) {
183     Component = StringRef();
184     return *this;
185   }
186
187   // Both POSIX and Windows treat paths that begin with exactly two separators
188   // specially.
189   bool was_net = Component.size() > 2 &&
190     is_separator(Component[0]) &&
191     Component[1] == Component[0] &&
192     !is_separator(Component[2]);
193
194   // Handle separators.
195   if (is_separator(Path[Position])) {
196     // Root dir.
197     if (was_net
198 #ifdef LLVM_ON_WIN32
199         // c:/
200         || Component.endswith(":")
201 #endif
202         ) {
203       Component = Path.substr(Position, 1);
204       return *this;
205     }
206
207     // Skip extra separators.
208     while (Position != Path.size() &&
209            is_separator(Path[Position])) {
210       ++Position;
211     }
212
213     // Treat trailing '/' as a '.'.
214     if (Position == Path.size()) {
215       --Position;
216       Component = ".";
217       return *this;
218     }
219   }
220
221   // Find next component.
222   size_t end_pos = Path.find_first_of(separators, Position);
223   Component = Path.slice(Position, end_pos);
224
225   return *this;
226 }
227
228 const_iterator &const_iterator::operator--() {
229   // If we're at the end and the previous char was a '/', return '.'.
230   if (Position == Path.size() &&
231       Path.size() > 1 &&
232       is_separator(Path[Position - 1])
233 #ifdef LLVM_ON_WIN32
234       && Path[Position - 2] != ':'
235 #endif
236       ) {
237     --Position;
238     Component = ".";
239     return *this;
240   }
241
242   // Skip separators unless it's the root directory.
243   size_t root_dir_pos = root_dir_start(Path);
244   size_t end_pos = Position;
245
246   while(end_pos > 0 &&
247         (end_pos - 1) != root_dir_pos &&
248         is_separator(Path[end_pos - 1]))
249     --end_pos;
250
251   // Find next separator.
252   size_t start_pos = filename_pos(Path.substr(0, end_pos));
253   Component = Path.slice(start_pos, end_pos);
254   Position = start_pos;
255   return *this;
256 }
257
258 bool const_iterator::operator==(const const_iterator &RHS) const {
259   return Path.begin() == RHS.Path.begin() &&
260          Position == RHS.Position;
261 }
262
263 bool const_iterator::operator!=(const const_iterator &RHS) const {
264   return !(*this == RHS);
265 }
266
267 ptrdiff_t const_iterator::operator-(const const_iterator &RHS) const {
268   return Position - RHS.Position;
269 }
270
271 const StringRef root_path(StringRef path) {
272   const_iterator b = begin(path),
273                  pos = b,
274                  e = end(path);
275   if (b != e) {
276     bool has_net = b->size() > 2 && is_separator((*b)[0]) && (*b)[1] == (*b)[0];
277     bool has_drive =
278 #ifdef LLVM_ON_WIN32
279       b->endswith(":");
280 #else
281       false;
282 #endif
283
284     if (has_net || has_drive) {
285       if ((++pos != e) && is_separator((*pos)[0])) {
286         // {C:/,//net/}, so get the first two components.
287         return path.substr(0, b->size() + pos->size());
288       } else {
289         // just {C:,//net}, return the first component.
290         return *b;
291       }
292     }
293
294     // POSIX style root directory.
295     if (is_separator((*b)[0])) {
296       return *b;
297     }
298   }
299
300   return StringRef();
301 }
302
303 const StringRef root_name(StringRef path) {
304   const_iterator b = begin(path),
305                  e = end(path);
306   if (b != e) {
307     bool has_net = b->size() > 2 && is_separator((*b)[0]) && (*b)[1] == (*b)[0];
308     bool has_drive =
309 #ifdef LLVM_ON_WIN32
310       b->endswith(":");
311 #else
312       false;
313 #endif
314
315     if (has_net || has_drive) {
316       // just {C:,//net}, return the first component.
317       return *b;
318     }
319   }
320
321   // No path or no name.
322   return StringRef();
323 }
324
325 const StringRef root_directory(StringRef path) {
326   const_iterator b = begin(path),
327                  pos = b,
328                  e = end(path);
329   if (b != e) {
330     bool has_net = b->size() > 2 && is_separator((*b)[0]) && (*b)[1] == (*b)[0];
331     bool has_drive =
332 #ifdef LLVM_ON_WIN32
333       b->endswith(":");
334 #else
335       false;
336 #endif
337
338     if ((has_net || has_drive) &&
339         // {C:,//net}, skip to the next component.
340         (++pos != e) && is_separator((*pos)[0])) {
341       return *pos;
342     }
343
344     // POSIX style root directory.
345     if (!has_net && is_separator((*b)[0])) {
346       return *b;
347     }
348   }
349
350   // No path or no root.
351   return StringRef();
352 }
353
354 const StringRef relative_path(StringRef path) {
355   StringRef root = root_path(path);
356   return path.substr(root.size());
357 }
358
359 void append(SmallVectorImpl<char> &path, const Twine &a,
360                                          const Twine &b,
361                                          const Twine &c,
362                                          const Twine &d) {
363   SmallString<32> a_storage;
364   SmallString<32> b_storage;
365   SmallString<32> c_storage;
366   SmallString<32> d_storage;
367
368   SmallVector<StringRef, 4> components;
369   if (!a.isTriviallyEmpty()) components.push_back(a.toStringRef(a_storage));
370   if (!b.isTriviallyEmpty()) components.push_back(b.toStringRef(b_storage));
371   if (!c.isTriviallyEmpty()) components.push_back(c.toStringRef(c_storage));
372   if (!d.isTriviallyEmpty()) components.push_back(d.toStringRef(d_storage));
373
374   for (SmallVectorImpl<StringRef>::const_iterator i = components.begin(),
375                                                   e = components.end();
376                                                   i != e; ++i) {
377     bool path_has_sep = !path.empty() && is_separator(path[path.size() - 1]);
378     bool component_has_sep = !i->empty() && is_separator((*i)[0]);
379     bool is_root_name = has_root_name(*i);
380
381     if (path_has_sep) {
382       // Strip separators from beginning of component.
383       size_t loc = i->find_first_not_of(separators);
384       StringRef c = i->substr(loc);
385
386       // Append it.
387       path.append(c.begin(), c.end());
388       continue;
389     }
390
391     if (!component_has_sep && !(path.empty() || is_root_name)) {
392       // Add a separator.
393       path.push_back(prefered_separator);
394     }
395
396     path.append(i->begin(), i->end());
397   }
398 }
399
400 void append(SmallVectorImpl<char> &path,
401             const_iterator begin, const_iterator end) {
402   for (; begin != end; ++begin)
403     path::append(path, *begin);
404 }
405
406 const StringRef parent_path(StringRef path) {
407   size_t end_pos = parent_path_end(path);
408   if (end_pos == StringRef::npos)
409     return StringRef();
410   else
411     return path.substr(0, end_pos);
412 }
413
414 void remove_filename(SmallVectorImpl<char> &path) {
415   size_t end_pos = parent_path_end(StringRef(path.begin(), path.size()));
416   if (end_pos != StringRef::npos)
417     path.set_size(end_pos);
418 }
419
420 void replace_extension(SmallVectorImpl<char> &path, const Twine &extension) {
421   StringRef p(path.begin(), path.size());
422   SmallString<32> ext_storage;
423   StringRef ext = extension.toStringRef(ext_storage);
424
425   // Erase existing extension.
426   size_t pos = p.find_last_of('.');
427   if (pos != StringRef::npos && pos >= filename_pos(p))
428     path.set_size(pos);
429
430   // Append '.' if needed.
431   if (ext.size() > 0 && ext[0] != '.')
432     path.push_back('.');
433
434   // Append extension.
435   path.append(ext.begin(), ext.end());
436 }
437
438 void native(const Twine &path, SmallVectorImpl<char> &result) {
439   // Clear result.
440   result.clear();
441 #ifdef LLVM_ON_WIN32
442   SmallString<128> path_storage;
443   StringRef p = path.toStringRef(path_storage);
444   result.reserve(p.size());
445   for (StringRef::const_iterator i = p.begin(),
446                                  e = p.end();
447                                  i != e;
448                                  ++i) {
449     if (*i == '/')
450       result.push_back('\\');
451     else
452       result.push_back(*i);
453   }
454 #else
455   path.toVector(result);
456 #endif
457 }
458
459 const StringRef filename(StringRef path) {
460   return *(--end(path));
461 }
462
463 const StringRef stem(StringRef path) {
464   StringRef fname = filename(path);
465   size_t pos = fname.find_last_of('.');
466   if (pos == StringRef::npos)
467     return fname;
468   else
469     if ((fname.size() == 1 && fname == ".") ||
470         (fname.size() == 2 && fname == ".."))
471       return fname;
472     else
473       return fname.substr(0, pos);
474 }
475
476 const StringRef extension(StringRef path) {
477   StringRef fname = filename(path);
478   size_t pos = fname.find_last_of('.');
479   if (pos == StringRef::npos)
480     return StringRef();
481   else
482     if ((fname.size() == 1 && fname == ".") ||
483         (fname.size() == 2 && fname == ".."))
484       return StringRef();
485     else
486       return fname.substr(pos);
487 }
488
489 bool is_separator(char value) {
490   switch(value) {
491 #ifdef LLVM_ON_WIN32
492     case '\\': // fall through
493 #endif
494     case '/': return true;
495     default: return false;
496   }
497 }
498
499 void system_temp_directory(bool erasedOnReboot, SmallVectorImpl<char> &result) {
500   result.clear();
501
502 #ifdef __APPLE__
503   // On Darwin, use DARWIN_USER_TEMP_DIR or DARWIN_USER_CACHE_DIR.
504   int ConfName = erasedOnReboot? _CS_DARWIN_USER_TEMP_DIR
505                                : _CS_DARWIN_USER_CACHE_DIR;
506   size_t ConfLen = confstr(ConfName, 0, 0);
507   if (ConfLen > 0) {
508     do {
509       result.resize(ConfLen);
510       ConfLen = confstr(ConfName, result.data(), result.size());
511     } while (ConfLen > 0 && ConfLen != result.size());
512
513     if (ConfLen > 0) {
514       assert(result.back() == 0);
515       result.pop_back();
516       return;
517     }
518
519     result.clear();
520   }
521 #endif
522
523   // Check whether the temporary directory is specified by an environment
524   // variable.
525   const char *EnvironmentVariable;
526 #ifdef LLVM_ON_WIN32
527   EnvironmentVariable = "TEMP";
528 #else
529   EnvironmentVariable = "TMPDIR";
530 #endif
531   if (char *RequestedDir = getenv(EnvironmentVariable)) {
532     result.append(RequestedDir, RequestedDir + strlen(RequestedDir));
533     return;
534   }
535
536   // Fall back to a system default.
537   const char *DefaultResult;
538 #ifdef LLVM_ON_WIN32
539   (void)erasedOnReboot;
540   DefaultResult = "C:\\TEMP";
541 #else
542   if (erasedOnReboot)
543     DefaultResult = "/tmp";
544   else
545     DefaultResult = "/var/tmp";
546 #endif
547   result.append(DefaultResult, DefaultResult + strlen(DefaultResult));
548 }
549
550 bool has_root_name(const Twine &path) {
551   SmallString<128> path_storage;
552   StringRef p = path.toStringRef(path_storage);
553
554   return !root_name(p).empty();
555 }
556
557 bool has_root_directory(const Twine &path) {
558   SmallString<128> path_storage;
559   StringRef p = path.toStringRef(path_storage);
560
561   return !root_directory(p).empty();
562 }
563
564 bool has_root_path(const Twine &path) {
565   SmallString<128> path_storage;
566   StringRef p = path.toStringRef(path_storage);
567
568   return !root_path(p).empty();
569 }
570
571 bool has_relative_path(const Twine &path) {
572   SmallString<128> path_storage;
573   StringRef p = path.toStringRef(path_storage);
574
575   return !relative_path(p).empty();
576 }
577
578 bool has_filename(const Twine &path) {
579   SmallString<128> path_storage;
580   StringRef p = path.toStringRef(path_storage);
581
582   return !filename(p).empty();
583 }
584
585 bool has_parent_path(const Twine &path) {
586   SmallString<128> path_storage;
587   StringRef p = path.toStringRef(path_storage);
588
589   return !parent_path(p).empty();
590 }
591
592 bool has_stem(const Twine &path) {
593   SmallString<128> path_storage;
594   StringRef p = path.toStringRef(path_storage);
595
596   return !stem(p).empty();
597 }
598
599 bool has_extension(const Twine &path) {
600   SmallString<128> path_storage;
601   StringRef p = path.toStringRef(path_storage);
602
603   return !extension(p).empty();
604 }
605
606 bool is_absolute(const Twine &path) {
607   SmallString<128> path_storage;
608   StringRef p = path.toStringRef(path_storage);
609
610   bool rootDir = has_root_directory(p),
611 #ifdef LLVM_ON_WIN32
612        rootName = has_root_name(p);
613 #else
614        rootName = true;
615 #endif
616
617   return rootDir && rootName;
618 }
619
620 bool is_relative(const Twine &path) {
621   return !is_absolute(path);
622 }
623
624 } // end namespace path
625
626 namespace fs {
627
628 error_code unique_file(const Twine &Model, SmallVectorImpl<char> &ResultPath,
629                        bool MakeAbsolute, unsigned Mode) {
630   // FIXME: This is really inefficient. unique_path creates a path an tries to
631   // open it. We should factor the code so that we just don't create/open the
632   // file when we don't need it.
633   int FD;
634   error_code Ret = unique_file(Model, FD, ResultPath, MakeAbsolute, Mode);
635   if (Ret)
636     return Ret;
637
638   if (close(FD))
639     return error_code(errno, system_category());
640
641   StringRef P(ResultPath.begin(), ResultPath.size());
642   return fs::remove(P);
643 }
644
645 error_code createUniqueDirectory(const Twine &Prefix,
646                                  SmallVectorImpl<char> &ResultPath) {
647   // FIXME: This is double inefficient. We compute a unique file name, created
648   // it, delete it and keep only the directory.
649   error_code EC = unique_file(Prefix + "-%%%%%%/dummy", ResultPath);
650   if (EC)
651     return EC;
652   path::remove_filename(ResultPath);
653   return error_code::success();
654 }
655
656 error_code make_absolute(SmallVectorImpl<char> &path) {
657   StringRef p(path.data(), path.size());
658
659   bool rootDirectory = path::has_root_directory(p),
660 #ifdef LLVM_ON_WIN32
661        rootName = path::has_root_name(p);
662 #else
663        rootName = true;
664 #endif
665
666   // Already absolute.
667   if (rootName && rootDirectory)
668     return error_code::success();
669
670   // All of the following conditions will need the current directory.
671   SmallString<128> current_dir;
672   if (error_code ec = current_path(current_dir)) return ec;
673
674   // Relative path. Prepend the current directory.
675   if (!rootName && !rootDirectory) {
676     // Append path to the current directory.
677     path::append(current_dir, p);
678     // Set path to the result.
679     path.swap(current_dir);
680     return error_code::success();
681   }
682
683   if (!rootName && rootDirectory) {
684     StringRef cdrn = path::root_name(current_dir);
685     SmallString<128> curDirRootName(cdrn.begin(), cdrn.end());
686     path::append(curDirRootName, p);
687     // Set path to the result.
688     path.swap(curDirRootName);
689     return error_code::success();
690   }
691
692   if (rootName && !rootDirectory) {
693     StringRef pRootName      = path::root_name(p);
694     StringRef bRootDirectory = path::root_directory(current_dir);
695     StringRef bRelativePath  = path::relative_path(current_dir);
696     StringRef pRelativePath  = path::relative_path(p);
697
698     SmallString<128> res;
699     path::append(res, pRootName, bRootDirectory, bRelativePath, pRelativePath);
700     path.swap(res);
701     return error_code::success();
702   }
703
704   llvm_unreachable("All rootName and rootDirectory combinations should have "
705                    "occurred above!");
706 }
707
708 error_code create_directories(const Twine &path, bool &existed) {
709   SmallString<128> path_storage;
710   StringRef p = path.toStringRef(path_storage);
711
712   StringRef parent = path::parent_path(p);
713   if (!parent.empty()) {
714     bool parent_exists;
715     if (error_code ec = fs::exists(parent, parent_exists)) return ec;
716
717     if (!parent_exists)
718       if (error_code ec = create_directories(parent, existed)) return ec;
719   }
720
721   return create_directory(p, existed);
722 }
723
724 bool exists(file_status status) {
725   return status_known(status) && status.type() != file_type::file_not_found;
726 }
727
728 bool status_known(file_status s) {
729   return s.type() != file_type::status_error;
730 }
731
732 bool is_directory(file_status status) {
733   return status.type() == file_type::directory_file;
734 }
735
736 error_code is_directory(const Twine &path, bool &result) {
737   file_status st;
738   if (error_code ec = status(path, st))
739     return ec;
740   result = is_directory(st);
741   return error_code::success();
742 }
743
744 bool is_regular_file(file_status status) {
745   return status.type() == file_type::regular_file;
746 }
747
748 error_code is_regular_file(const Twine &path, bool &result) {
749   file_status st;
750   if (error_code ec = status(path, st))
751     return ec;
752   result = is_regular_file(st);
753   return error_code::success();
754 }
755
756 bool is_symlink(file_status status) {
757   return status.type() == file_type::symlink_file;
758 }
759
760 error_code is_symlink(const Twine &path, bool &result) {
761   file_status st;
762   if (error_code ec = status(path, st))
763     return ec;
764   result = is_symlink(st);
765   return error_code::success();
766 }
767
768 bool is_other(file_status status) {
769   return exists(status) &&
770          !is_regular_file(status) &&
771          !is_directory(status) &&
772          !is_symlink(status);
773 }
774
775 void directory_entry::replace_filename(const Twine &filename, file_status st) {
776   SmallString<128> path(Path.begin(), Path.end());
777   path::remove_filename(path);
778   path::append(path, filename);
779   Path = path.str();
780   Status = st;
781 }
782
783 error_code has_magic(const Twine &path, const Twine &magic, bool &result) {
784   SmallString<32>  MagicStorage;
785   StringRef Magic = magic.toStringRef(MagicStorage);
786   SmallString<32> Buffer;
787
788   if (error_code ec = get_magic(path, Magic.size(), Buffer)) {
789     if (ec == errc::value_too_large) {
790       // Magic.size() > file_size(Path).
791       result = false;
792       return error_code::success();
793     }
794     return ec;
795   }
796
797   result = Magic == Buffer;
798   return error_code::success();
799 }
800
801 /// @brief Identify the magic in magic.
802   file_magic identify_magic(StringRef Magic) {
803   if (Magic.size() < 4)
804     return file_magic::unknown;
805   switch ((unsigned char)Magic[0]) {
806     case 0xDE:  // 0x0B17C0DE = BC wraper
807       if (Magic[1] == (char)0xC0 && Magic[2] == (char)0x17 &&
808           Magic[3] == (char)0x0B)
809         return file_magic::bitcode;
810       break;
811     case 'B':
812       if (Magic[1] == 'C' && Magic[2] == (char)0xC0 && Magic[3] == (char)0xDE)
813         return file_magic::bitcode;
814       break;
815     case '!':
816       if (Magic.size() >= 8)
817         if (memcmp(Magic.data(),"!<arch>\n",8) == 0)
818           return file_magic::archive;
819       break;
820
821     case '\177':
822       if (Magic.size() >= 18 && Magic[1] == 'E' && Magic[2] == 'L' &&
823           Magic[3] == 'F') {
824         bool Data2MSB = Magic[5] == 2;
825         unsigned high = Data2MSB ? 16 : 17;
826         unsigned low  = Data2MSB ? 17 : 16;
827         if (Magic[high] == 0)
828           switch (Magic[low]) {
829             default: break;
830             case 1: return file_magic::elf_relocatable;
831             case 2: return file_magic::elf_executable;
832             case 3: return file_magic::elf_shared_object;
833             case 4: return file_magic::elf_core;
834           }
835       }
836       break;
837
838     case 0xCA:
839       if (Magic[1] == char(0xFE) && Magic[2] == char(0xBA) &&
840           Magic[3] == char(0xBE)) {
841         // This is complicated by an overlap with Java class files.
842         // See the Mach-O section in /usr/share/file/magic for details.
843         if (Magic.size() >= 8 && Magic[7] < 43)
844           return file_magic::macho_universal_binary;
845       }
846       break;
847
848       // The two magic numbers for mach-o are:
849       // 0xfeedface - 32-bit mach-o
850       // 0xfeedfacf - 64-bit mach-o
851     case 0xFE:
852     case 0xCE:
853     case 0xCF: {
854       uint16_t type = 0;
855       if (Magic[0] == char(0xFE) && Magic[1] == char(0xED) &&
856           Magic[2] == char(0xFA) &&
857           (Magic[3] == char(0xCE) || Magic[3] == char(0xCF))) {
858         /* Native endian */
859         if (Magic.size() >= 16) type = Magic[14] << 8 | Magic[15];
860       } else if ((Magic[0] == char(0xCE) || Magic[0] == char(0xCF)) &&
861                  Magic[1] == char(0xFA) && Magic[2] == char(0xED) &&
862                  Magic[3] == char(0xFE)) {
863         /* Reverse endian */
864         if (Magic.size() >= 14) type = Magic[13] << 8 | Magic[12];
865       }
866       switch (type) {
867         default: break;
868         case 1: return file_magic::macho_object;
869         case 2: return file_magic::macho_executable;
870         case 3: return file_magic::macho_fixed_virtual_memory_shared_lib;
871         case 4: return file_magic::macho_core;
872         case 5: return file_magic::macho_preload_executable;
873         case 6: return file_magic::macho_dynamically_linked_shared_lib;
874         case 7: return file_magic::macho_dynamic_linker;
875         case 8: return file_magic::macho_bundle;
876         case 9: return file_magic::macho_dynamic_linker;
877         case 10: return file_magic::macho_dsym_companion;
878       }
879       break;
880     }
881     case 0xF0: // PowerPC Windows
882     case 0x83: // Alpha 32-bit
883     case 0x84: // Alpha 64-bit
884     case 0x66: // MPS R4000 Windows
885     case 0x50: // mc68K
886     case 0x4c: // 80386 Windows
887       if (Magic[1] == 0x01)
888         return file_magic::coff_object;
889
890     case 0x90: // PA-RISC Windows
891     case 0x68: // mc68K Windows
892       if (Magic[1] == 0x02)
893         return file_magic::coff_object;
894       break;
895
896     case 0x4d: // Possible MS-DOS stub on Windows PE file
897       if (Magic[1] == 0x5a) {
898         uint32_t off =
899           *reinterpret_cast<const support::ulittle32_t*>(Magic.data() + 0x3c);
900         // PE/COFF file, either EXE or DLL.
901         if (off < Magic.size() && memcmp(Magic.data() + off, "PE\0\0",4) == 0)
902           return file_magic::pecoff_executable;
903       }
904       break;
905
906     case 0x64: // x86-64 Windows.
907       if (Magic[1] == char(0x86))
908         return file_magic::coff_object;
909       break;
910
911     default:
912       break;
913   }
914   return file_magic::unknown;
915 }
916
917 error_code identify_magic(const Twine &path, file_magic &result) {
918   SmallString<32> Magic;
919   error_code ec = get_magic(path, Magic.capacity(), Magic);
920   if (ec && ec != errc::value_too_large)
921     return ec;
922
923   result = identify_magic(Magic);
924   return error_code::success();
925 }
926
927 namespace {
928 error_code remove_all_r(StringRef path, file_type ft, uint32_t &count) {
929   if (ft == file_type::directory_file) {
930     // This code would be a lot better with exceptions ;/.
931     error_code ec;
932     directory_iterator i(path, ec);
933     if (ec) return ec;
934     for (directory_iterator e; i != e; i.increment(ec)) {
935       if (ec) return ec;
936       file_status st;
937       if (error_code ec = i->status(st)) return ec;
938       if (error_code ec = remove_all_r(i->path(), st.type(), count)) return ec;
939     }
940     bool obviously_this_exists;
941     if (error_code ec = remove(path, obviously_this_exists)) return ec;
942     assert(obviously_this_exists);
943     ++count; // Include the directory itself in the items removed.
944   } else {
945     bool obviously_this_exists;
946     if (error_code ec = remove(path, obviously_this_exists)) return ec;
947     assert(obviously_this_exists);
948     ++count;
949   }
950
951   return error_code::success();
952 }
953 } // end unnamed namespace
954
955 error_code remove_all(const Twine &path, uint32_t &num_removed) {
956   SmallString<128> path_storage;
957   StringRef p = path.toStringRef(path_storage);
958
959   file_status fs;
960   if (error_code ec = status(path, fs))
961     return ec;
962   num_removed = 0;
963   return remove_all_r(p, fs.type(), num_removed);
964 }
965
966 error_code directory_entry::status(file_status &result) const {
967   return fs::status(Path, result);
968 }
969
970 } // end namespace fs
971 } // end namespace sys
972 } // end namespace llvm
973
974 // Include the truly platform-specific parts.
975 #if defined(LLVM_ON_UNIX)
976 #include "Unix/Path.inc"
977 #endif
978 #if defined(LLVM_ON_WIN32)
979 #include "Windows/Path.inc"
980 #endif