blob: 390614b9a5b95bdfa5b49223a582e675a1f87395 [file] [log] [blame]
Rafael Espindola7a231f52013-06-26 19:33:03 +00001//===-- Path.cpp - Implement OS Path Concept ------------------------------===//
Michael J. Spencerdffde992010-11-29 22:28:51 +00002//
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//
Rafael Espindola7a231f52013-06-26 19:33:03 +000010// This file implements the operating system Path API.
Michael J. Spencerdffde992010-11-29 22:28:51 +000011//
12//===----------------------------------------------------------------------===//
13
Rafael Espindolaa11c3e22013-06-11 22:21:28 +000014#include "llvm/Support/Path.h"
Michael J. Spencer5b082302011-12-13 23:17:12 +000015#include "llvm/Support/Endian.h"
Michael J. Spencerdffde992010-11-29 22:28:51 +000016#include "llvm/Support/ErrorHandling.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000017#include "llvm/Support/FileSystem.h"
Michael J. Spencerdffde992010-11-29 22:28:51 +000018#include <cctype>
Michael J. Spencer628467e2010-12-28 01:49:01 +000019#include <cstdio>
20#include <cstring>
Rafael Espindolac1b49b52013-07-16 19:44:17 +000021#include <fcntl.h>
Rafael Espindola8ee23f02013-06-18 17:01:00 +000022
23#if !defined(_MSC_VER) && !defined(__MINGW32__)
Douglas Gregorb0b5bde2013-03-21 21:46:10 +000024#include <unistd.h>
Rafael Espindola8ee23f02013-06-18 17:01:00 +000025#else
26#include <io.h>
Douglas Gregorb0b5bde2013-03-21 21:46:10 +000027#endif
Michael J. Spencerdffde992010-11-29 22:28:51 +000028
29namespace {
30 using llvm::StringRef;
Zhanyong Wan63cc3a82011-02-11 21:24:40 +000031 using llvm::sys::path::is_separator;
Michael J. Spencerdffde992010-11-29 22:28:51 +000032
33#ifdef LLVM_ON_WIN32
Benjamin Kramer80fd2a12012-02-08 13:13:47 +000034 const char *separators = "\\/";
35 const char prefered_separator = '\\';
Michael J. Spencerdffde992010-11-29 22:28:51 +000036#else
Benjamin Kramer80fd2a12012-02-08 13:13:47 +000037 const char separators = '/';
38 const char prefered_separator = '/';
Michael J. Spencerdffde992010-11-29 22:28:51 +000039#endif
40
Benjamin Kramer7fb86662010-12-17 18:59:09 +000041 StringRef find_first_component(StringRef path) {
Michael J. Spencerdffde992010-11-29 22:28:51 +000042 // Look for this first component in the following order.
43 // * empty (in this case we return an empty string)
44 // * either C: or {//,\\}net.
45 // * {/,\}
46 // * {.,..}
47 // * {file,directory}name
48
49 if (path.empty())
50 return path;
51
Michael J. Spencerca3a3392010-12-07 03:57:48 +000052#ifdef LLVM_ON_WIN32
Michael J. Spencerdffde992010-11-29 22:28:51 +000053 // C:
Guy Benyei87d0b9e2013-02-12 21:21:59 +000054 if (path.size() >= 2 && std::isalpha(static_cast<unsigned char>(path[0])) &&
55 path[1] == ':')
Benjamin Kramer3ce88c92010-12-17 20:27:37 +000056 return path.substr(0, 2);
Michael J. Spencerca3a3392010-12-07 03:57:48 +000057#endif
Michael J. Spencerdffde992010-11-29 22:28:51 +000058
59 // //net
60 if ((path.size() > 2) &&
Michael J. Spencerca3a3392010-12-07 03:57:48 +000061 is_separator(path[0]) &&
62 path[0] == path[1] &&
63 !is_separator(path[2])) {
Michael J. Spencerdffde992010-11-29 22:28:51 +000064 // Find the next directory separator.
Michael J. Spencerca3a3392010-12-07 03:57:48 +000065 size_t end = path.find_first_of(separators, 2);
Benjamin Kramer3ce88c92010-12-17 20:27:37 +000066 return path.substr(0, end);
Michael J. Spencerdffde992010-11-29 22:28:51 +000067 }
68
69 // {/,\}
Michael J. Spencerca3a3392010-12-07 03:57:48 +000070 if (is_separator(path[0]))
Benjamin Kramer3ce88c92010-12-17 20:27:37 +000071 return path.substr(0, 1);
Michael J. Spencerdffde992010-11-29 22:28:51 +000072
73 if (path.startswith(".."))
Benjamin Kramer3ce88c92010-12-17 20:27:37 +000074 return path.substr(0, 2);
Michael J. Spencerdffde992010-11-29 22:28:51 +000075
76 if (path[0] == '.')
Benjamin Kramer3ce88c92010-12-17 20:27:37 +000077 return path.substr(0, 1);
Michael J. Spencerdffde992010-11-29 22:28:51 +000078
79 // * {file,directory}name
Tareq A. Siraj225396c2013-08-12 17:10:49 +000080 size_t end = path.find_first_of(separators);
Benjamin Kramer3ce88c92010-12-17 20:27:37 +000081 return path.substr(0, end);
Michael J. Spencerdffde992010-11-29 22:28:51 +000082 }
Michael J. Spencera42cf732010-11-30 23:28:07 +000083
Benjamin Kramerd53f3c82010-12-17 18:19:06 +000084 size_t filename_pos(StringRef str) {
Michael J. Spencera42cf732010-11-30 23:28:07 +000085 if (str.size() == 2 &&
86 is_separator(str[0]) &&
Michael J. Spencerca3a3392010-12-07 03:57:48 +000087 str[0] == str[1])
Michael J. Spencera42cf732010-11-30 23:28:07 +000088 return 0;
89
90 if (str.size() > 0 && is_separator(str[str.size() - 1]))
91 return str.size() - 1;
92
93 size_t pos = str.find_last_of(separators, str.size() - 1);
94
95#ifdef LLVM_ON_WIN32
96 if (pos == StringRef::npos)
97 pos = str.find_last_of(':', str.size() - 2);
98#endif
99
100 if (pos == StringRef::npos ||
101 (pos == 1 && is_separator(str[0])))
102 return 0;
103
104 return pos + 1;
105 }
106
Benjamin Kramerd53f3c82010-12-17 18:19:06 +0000107 size_t root_dir_start(StringRef str) {
Michael J. Spencera42cf732010-11-30 23:28:07 +0000108 // case "c:/"
109#ifdef LLVM_ON_WIN32
110 if (str.size() > 2 &&
111 str[1] == ':' &&
112 is_separator(str[2]))
113 return 2;
114#endif
115
116 // case "//"
117 if (str.size() == 2 &&
118 is_separator(str[0]) &&
119 str[0] == str[1])
120 return StringRef::npos;
121
122 // case "//net"
123 if (str.size() > 3 &&
124 is_separator(str[0]) &&
125 str[0] == str[1] &&
126 !is_separator(str[2])) {
127 return str.find_first_of(separators, 2);
128 }
129
130 // case "/"
131 if (str.size() > 0 && is_separator(str[0]))
132 return 0;
133
134 return StringRef::npos;
135 }
136
Benjamin Kramerd53f3c82010-12-17 18:19:06 +0000137 size_t parent_path_end(StringRef path) {
Michael J. Spencera42cf732010-11-30 23:28:07 +0000138 size_t end_pos = filename_pos(path);
139
140 bool filename_was_sep = path.size() > 0 && is_separator(path[end_pos]);
141
142 // Skip separators except for root dir.
Benjamin Kramer3ce88c92010-12-17 20:27:37 +0000143 size_t root_dir_pos = root_dir_start(path.substr(0, end_pos));
Michael J. Spencera42cf732010-11-30 23:28:07 +0000144
145 while(end_pos > 0 &&
146 (end_pos - 1) != root_dir_pos &&
147 is_separator(path[end_pos - 1]))
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 }
Zhanyong Wan63cc3a82011-02-11 21:24:40 +0000155} // end unnamed namespace
Michael J. Spencerdffde992010-11-29 22:28:51 +0000156
Rafael Espindola8e7294f2013-06-28 03:48:47 +0000157enum FSEntity {
158 FS_Dir,
159 FS_File,
160 FS_Name
161};
162
163// Implemented in Unix/Path.inc and Windows/Path.inc.
164static llvm::error_code
165createUniqueEntity(const llvm::Twine &Model, int &ResultFD,
166 llvm::SmallVectorImpl<char> &ResultPath,
167 bool MakeAbsolute, unsigned Mode, FSEntity Type);
168
Michael J. Spencerdffde992010-11-29 22:28:51 +0000169namespace llvm {
170namespace sys {
171namespace path {
172
Benjamin Kramerd53f3c82010-12-17 18:19:06 +0000173const_iterator begin(StringRef path) {
Michael J. Spencerdffde992010-11-29 22:28:51 +0000174 const_iterator i;
175 i.Path = path;
176 i.Component = find_first_component(path);
177 i.Position = 0;
178 return i;
179}
180
Benjamin Kramerd53f3c82010-12-17 18:19:06 +0000181const_iterator end(StringRef path) {
Michael J. Spencerdffde992010-11-29 22:28:51 +0000182 const_iterator i;
183 i.Path = path;
184 i.Position = path.size();
185 return i;
186}
187
Michael J. Spencerdffde992010-11-29 22:28:51 +0000188const_iterator &const_iterator::operator++() {
189 assert(Position < Path.size() && "Tried to increment past end!");
190
191 // Increment Position to past the current component
192 Position += Component.size();
193
194 // Check for end.
195 if (Position == Path.size()) {
196 Component = StringRef();
197 return *this;
198 }
199
200 // Both POSIX and Windows treat paths that begin with exactly two separators
201 // specially.
202 bool was_net = Component.size() > 2 &&
203 is_separator(Component[0]) &&
204 Component[1] == Component[0] &&
205 !is_separator(Component[2]);
206
207 // Handle separators.
208 if (is_separator(Path[Position])) {
209 // Root dir.
210 if (was_net
211#ifdef LLVM_ON_WIN32
212 // c:/
213 || Component.endswith(":")
214#endif
215 ) {
Benjamin Kramer3ce88c92010-12-17 20:27:37 +0000216 Component = Path.substr(Position, 1);
Michael J. Spencerdffde992010-11-29 22:28:51 +0000217 return *this;
218 }
219
220 // Skip extra separators.
221 while (Position != Path.size() &&
222 is_separator(Path[Position])) {
223 ++Position;
224 }
225
226 // Treat trailing '/' as a '.'.
227 if (Position == Path.size()) {
228 --Position;
229 Component = ".";
230 return *this;
231 }
232 }
233
234 // Find next component.
235 size_t end_pos = Path.find_first_of(separators, Position);
Benjamin Kramer3ce88c92010-12-17 20:27:37 +0000236 Component = Path.slice(Position, end_pos);
Michael J. Spencerdffde992010-11-29 22:28:51 +0000237
238 return *this;
239}
240
Michael J. Spencera42cf732010-11-30 23:28:07 +0000241const_iterator &const_iterator::operator--() {
242 // If we're at the end and the previous char was a '/', return '.'.
243 if (Position == Path.size() &&
244 Path.size() > 1 &&
245 is_separator(Path[Position - 1])
246#ifdef LLVM_ON_WIN32
247 && Path[Position - 2] != ':'
248#endif
249 ) {
250 --Position;
251 Component = ".";
252 return *this;
253 }
254
255 // Skip separators unless it's the root directory.
256 size_t root_dir_pos = root_dir_start(Path);
257 size_t end_pos = Position;
258
259 while(end_pos > 0 &&
260 (end_pos - 1) != root_dir_pos &&
261 is_separator(Path[end_pos - 1]))
262 --end_pos;
263
264 // Find next separator.
Benjamin Kramer3ce88c92010-12-17 20:27:37 +0000265 size_t start_pos = filename_pos(Path.substr(0, end_pos));
266 Component = Path.slice(start_pos, end_pos);
Michael J. Spencera42cf732010-11-30 23:28:07 +0000267 Position = start_pos;
268 return *this;
269}
270
Michael J. Spencerdffde992010-11-29 22:28:51 +0000271bool const_iterator::operator==(const const_iterator &RHS) const {
272 return Path.begin() == RHS.Path.begin() &&
273 Position == RHS.Position;
274}
275
276bool const_iterator::operator!=(const const_iterator &RHS) const {
277 return !(*this == RHS);
278}
279
Michael J. Spencera42cf732010-11-30 23:28:07 +0000280ptrdiff_t const_iterator::operator-(const const_iterator &RHS) const {
281 return Position - RHS.Position;
282}
283
Benjamin Kramerd53f3c82010-12-17 18:19:06 +0000284const StringRef root_path(StringRef path) {
Michael J. Spencerdffde992010-11-29 22:28:51 +0000285 const_iterator b = begin(path),
286 pos = b,
287 e = end(path);
288 if (b != e) {
289 bool has_net = b->size() > 2 && is_separator((*b)[0]) && (*b)[1] == (*b)[0];
290 bool has_drive =
291#ifdef LLVM_ON_WIN32
292 b->endswith(":");
293#else
294 false;
295#endif
296
297 if (has_net || has_drive) {
298 if ((++pos != e) && is_separator((*pos)[0])) {
299 // {C:/,//net/}, so get the first two components.
Benjamin Kramer3ce88c92010-12-17 20:27:37 +0000300 return path.substr(0, b->size() + pos->size());
Michael J. Spencerdffde992010-11-29 22:28:51 +0000301 } else {
302 // just {C:,//net}, return the first component.
Michael J. Spencer50291592010-12-07 17:04:04 +0000303 return *b;
Michael J. Spencerdffde992010-11-29 22:28:51 +0000304 }
305 }
306
307 // POSIX style root directory.
308 if (is_separator((*b)[0])) {
Michael J. Spencer50291592010-12-07 17:04:04 +0000309 return *b;
Michael J. Spencerdffde992010-11-29 22:28:51 +0000310 }
Michael J. Spencerdffde992010-11-29 22:28:51 +0000311 }
312
Michael J. Spencer50291592010-12-07 17:04:04 +0000313 return StringRef();
Michael J. Spencerdffde992010-11-29 22:28:51 +0000314}
315
Benjamin Kramerd53f3c82010-12-17 18:19:06 +0000316const StringRef root_name(StringRef path) {
Michael J. Spencerdffde992010-11-29 22:28:51 +0000317 const_iterator b = begin(path),
318 e = end(path);
319 if (b != e) {
320 bool has_net = b->size() > 2 && is_separator((*b)[0]) && (*b)[1] == (*b)[0];
321 bool has_drive =
322#ifdef LLVM_ON_WIN32
323 b->endswith(":");
324#else
325 false;
326#endif
327
328 if (has_net || has_drive) {
329 // just {C:,//net}, return the first component.
Michael J. Spencer50291592010-12-07 17:04:04 +0000330 return *b;
Michael J. Spencerdffde992010-11-29 22:28:51 +0000331 }
332 }
333
334 // No path or no name.
Michael J. Spencer50291592010-12-07 17:04:04 +0000335 return StringRef();
Michael J. Spencerdffde992010-11-29 22:28:51 +0000336}
337
Benjamin Kramerd53f3c82010-12-17 18:19:06 +0000338const StringRef root_directory(StringRef path) {
Michael J. Spencerdffde992010-11-29 22:28:51 +0000339 const_iterator b = begin(path),
340 pos = b,
341 e = end(path);
342 if (b != e) {
343 bool has_net = b->size() > 2 && is_separator((*b)[0]) && (*b)[1] == (*b)[0];
344 bool has_drive =
345#ifdef LLVM_ON_WIN32
346 b->endswith(":");
347#else
348 false;
349#endif
350
351 if ((has_net || has_drive) &&
352 // {C:,//net}, skip to the next component.
353 (++pos != e) && is_separator((*pos)[0])) {
Michael J. Spencer50291592010-12-07 17:04:04 +0000354 return *pos;
Michael J. Spencerdffde992010-11-29 22:28:51 +0000355 }
356
357 // POSIX style root directory.
358 if (!has_net && is_separator((*b)[0])) {
Michael J. Spencer50291592010-12-07 17:04:04 +0000359 return *b;
Michael J. Spencerdffde992010-11-29 22:28:51 +0000360 }
361 }
362
363 // No path or no root.
Michael J. Spencer50291592010-12-07 17:04:04 +0000364 return StringRef();
Michael J. Spencerdffde992010-11-29 22:28:51 +0000365}
366
Benjamin Kramerd53f3c82010-12-17 18:19:06 +0000367const StringRef relative_path(StringRef path) {
Michael J. Spencer50291592010-12-07 17:04:04 +0000368 StringRef root = root_path(path);
Michael J. Spencerd0fff182012-02-29 00:06:24 +0000369 return path.substr(root.size());
Michael J. Spencerdffde992010-11-29 22:28:51 +0000370}
371
Michael J. Spencer936671b2010-12-07 03:57:37 +0000372void append(SmallVectorImpl<char> &path, const Twine &a,
373 const Twine &b,
374 const Twine &c,
375 const Twine &d) {
Michael J. Spencerdffde992010-11-29 22:28:51 +0000376 SmallString<32> a_storage;
377 SmallString<32> b_storage;
378 SmallString<32> c_storage;
379 SmallString<32> d_storage;
380
381 SmallVector<StringRef, 4> components;
382 if (!a.isTriviallyEmpty()) components.push_back(a.toStringRef(a_storage));
383 if (!b.isTriviallyEmpty()) components.push_back(b.toStringRef(b_storage));
384 if (!c.isTriviallyEmpty()) components.push_back(c.toStringRef(c_storage));
385 if (!d.isTriviallyEmpty()) components.push_back(d.toStringRef(d_storage));
386
387 for (SmallVectorImpl<StringRef>::const_iterator i = components.begin(),
388 e = components.end();
389 i != e; ++i) {
390 bool path_has_sep = !path.empty() && is_separator(path[path.size() - 1]);
391 bool component_has_sep = !i->empty() && is_separator((*i)[0]);
Michael J. Spencer50291592010-12-07 17:04:04 +0000392 bool is_root_name = has_root_name(*i);
Michael J. Spencerdffde992010-11-29 22:28:51 +0000393
394 if (path_has_sep) {
395 // Strip separators from beginning of component.
396 size_t loc = i->find_first_not_of(separators);
Benjamin Kramer3ce88c92010-12-17 20:27:37 +0000397 StringRef c = i->substr(loc);
Michael J. Spencerdffde992010-11-29 22:28:51 +0000398
399 // Append it.
400 path.append(c.begin(), c.end());
401 continue;
402 }
403
Michael J. Spencerf150e762010-12-06 04:28:23 +0000404 if (!component_has_sep && !(path.empty() || is_root_name)) {
Michael J. Spencerdffde992010-11-29 22:28:51 +0000405 // Add a separator.
406 path.push_back(prefered_separator);
407 }
408
409 path.append(i->begin(), i->end());
410 }
Michael J. Spencerdffde992010-11-29 22:28:51 +0000411}
412
Argyrios Kyrtzidis6e31b9b2011-02-15 17:51:19 +0000413void append(SmallVectorImpl<char> &path,
414 const_iterator begin, const_iterator end) {
415 for (; begin != end; ++begin)
416 path::append(path, *begin);
417}
418
Benjamin Kramerd53f3c82010-12-17 18:19:06 +0000419const StringRef parent_path(StringRef path) {
Michael J. Spencera42cf732010-11-30 23:28:07 +0000420 size_t end_pos = parent_path_end(path);
421 if (end_pos == StringRef::npos)
Michael J. Spencer50291592010-12-07 17:04:04 +0000422 return StringRef();
Michael J. Spencera42cf732010-11-30 23:28:07 +0000423 else
Benjamin Kramer3ce88c92010-12-17 20:27:37 +0000424 return path.substr(0, end_pos);
Michael J. Spencera42cf732010-11-30 23:28:07 +0000425}
426
Michael J. Spencer936671b2010-12-07 03:57:37 +0000427void remove_filename(SmallVectorImpl<char> &path) {
Michael J. Spencerdbfb56b2010-12-01 00:52:28 +0000428 size_t end_pos = parent_path_end(StringRef(path.begin(), path.size()));
Michael J. Spencer936671b2010-12-07 03:57:37 +0000429 if (end_pos != StringRef::npos)
430 path.set_size(end_pos);
Michael J. Spencerdbfb56b2010-12-01 00:52:28 +0000431}
432
Michael J. Spencer50291592010-12-07 17:04:04 +0000433void replace_extension(SmallVectorImpl<char> &path, const Twine &extension) {
Michael J. Spencer52ed8672010-12-01 00:52:55 +0000434 StringRef p(path.begin(), path.size());
435 SmallString<32> ext_storage;
436 StringRef ext = extension.toStringRef(ext_storage);
437
438 // Erase existing extension.
439 size_t pos = p.find_last_of('.');
440 if (pos != StringRef::npos && pos >= filename_pos(p))
441 path.set_size(pos);
442
443 // Append '.' if needed.
444 if (ext.size() > 0 && ext[0] != '.')
445 path.push_back('.');
446
447 // Append extension.
448 path.append(ext.begin(), ext.end());
Michael J. Spencer52ed8672010-12-01 00:52:55 +0000449}
450
Michael J. Spencer936671b2010-12-07 03:57:37 +0000451void native(const Twine &path, SmallVectorImpl<char> &result) {
Benjamin Kramerf37a3242013-09-11 10:45:21 +0000452 assert((!path.isSingleStringRef() ||
453 path.getSingleStringRef().data() != result.data()) &&
454 "path and result are not allowed to overlap!");
Michael J. Spencer722d5ad2010-12-01 02:48:27 +0000455 // Clear result.
Michael J. Spencerfbd1bbd2010-12-07 01:23:19 +0000456 result.clear();
Michael J. Spencer722d5ad2010-12-01 02:48:27 +0000457 path.toVector(result);
Benjamin Kramerf37a3242013-09-11 10:45:21 +0000458 native(result);
459}
460
461void native(SmallVectorImpl<char> &path) {
462#ifdef LLVM_ON_WIN32
463 std::replace(path.begin(), path.end(), '/', '\\');
Michael J. Spencer722d5ad2010-12-01 02:48:27 +0000464#endif
Michael J. Spencer722d5ad2010-12-01 02:48:27 +0000465}
466
Benjamin Kramerd53f3c82010-12-17 18:19:06 +0000467const StringRef filename(StringRef path) {
Michael J. Spencer50291592010-12-07 17:04:04 +0000468 return *(--end(path));
Michael J. Spencera9793552010-12-01 03:18:17 +0000469}
470
Benjamin Kramerd53f3c82010-12-17 18:19:06 +0000471const StringRef stem(StringRef path) {
Michael J. Spencer50291592010-12-07 17:04:04 +0000472 StringRef fname = filename(path);
Michael J. Spencer34ab1f62010-12-01 03:18:33 +0000473 size_t pos = fname.find_last_of('.');
474 if (pos == StringRef::npos)
Michael J. Spencer50291592010-12-07 17:04:04 +0000475 return fname;
Michael J. Spencer34ab1f62010-12-01 03:18:33 +0000476 else
477 if ((fname.size() == 1 && fname == ".") ||
478 (fname.size() == 2 && fname == ".."))
Michael J. Spencer50291592010-12-07 17:04:04 +0000479 return fname;
Michael J. Spencer34ab1f62010-12-01 03:18:33 +0000480 else
Benjamin Kramer3ce88c92010-12-17 20:27:37 +0000481 return fname.substr(0, pos);
Michael J. Spencer34ab1f62010-12-01 03:18:33 +0000482}
483
Benjamin Kramerd53f3c82010-12-17 18:19:06 +0000484const StringRef extension(StringRef path) {
Michael J. Spencer50291592010-12-07 17:04:04 +0000485 StringRef fname = filename(path);
Michael J. Spencer5265f222010-12-01 03:37:41 +0000486 size_t pos = fname.find_last_of('.');
487 if (pos == StringRef::npos)
Michael J. Spencer50291592010-12-07 17:04:04 +0000488 return StringRef();
Michael J. Spencer5265f222010-12-01 03:37:41 +0000489 else
490 if ((fname.size() == 1 && fname == ".") ||
491 (fname.size() == 2 && fname == ".."))
Michael J. Spencer50291592010-12-07 17:04:04 +0000492 return StringRef();
Michael J. Spencer5265f222010-12-01 03:37:41 +0000493 else
Benjamin Kramer3ce88c92010-12-17 20:27:37 +0000494 return fname.substr(pos);
Michael J. Spencer5265f222010-12-01 03:37:41 +0000495}
496
Zhanyong Wan63cc3a82011-02-11 21:24:40 +0000497bool is_separator(char value) {
498 switch(value) {
499#ifdef LLVM_ON_WIN32
500 case '\\': // fall through
501#endif
502 case '/': return true;
503 default: return false;
504 }
505}
506
Douglas Gregor55cf8152011-09-14 20:27:01 +0000507void system_temp_directory(bool erasedOnReboot, SmallVectorImpl<char> &result) {
508 result.clear();
Michael J. Spencerfaebf112011-12-13 23:16:15 +0000509
Douglas Gregorb0b5bde2013-03-21 21:46:10 +0000510#ifdef __APPLE__
511 // On Darwin, use DARWIN_USER_TEMP_DIR or DARWIN_USER_CACHE_DIR.
512 int ConfName = erasedOnReboot? _CS_DARWIN_USER_TEMP_DIR
513 : _CS_DARWIN_USER_CACHE_DIR;
514 size_t ConfLen = confstr(ConfName, 0, 0);
515 if (ConfLen > 0) {
516 do {
517 result.resize(ConfLen);
518 ConfLen = confstr(ConfName, result.data(), result.size());
519 } while (ConfLen > 0 && ConfLen != result.size());
520
521 if (ConfLen > 0) {
522 assert(result.back() == 0);
523 result.pop_back();
524 return;
525 }
526
527 result.clear();
528 }
529#endif
530
Douglas Gregor55cf8152011-09-14 20:27:01 +0000531 // Check whether the temporary directory is specified by an environment
532 // variable.
533 const char *EnvironmentVariable;
534#ifdef LLVM_ON_WIN32
535 EnvironmentVariable = "TEMP";
536#else
537 EnvironmentVariable = "TMPDIR";
538#endif
539 if (char *RequestedDir = getenv(EnvironmentVariable)) {
540 result.append(RequestedDir, RequestedDir + strlen(RequestedDir));
541 return;
542 }
Michael J. Spencerfaebf112011-12-13 23:16:15 +0000543
Douglas Gregor55cf8152011-09-14 20:27:01 +0000544 // Fall back to a system default.
545 const char *DefaultResult;
546#ifdef LLVM_ON_WIN32
547 (void)erasedOnReboot;
Douglas Gregord26d6b62011-09-14 23:21:47 +0000548 DefaultResult = "C:\\TEMP";
Douglas Gregor55cf8152011-09-14 20:27:01 +0000549#else
550 if (erasedOnReboot)
551 DefaultResult = "/tmp";
552 else
553 DefaultResult = "/var/tmp";
554#endif
555 result.append(DefaultResult, DefaultResult + strlen(DefaultResult));
556}
Michael J. Spencerfaebf112011-12-13 23:16:15 +0000557
Michael J. Spencer12ccf672010-12-07 18:12:07 +0000558bool has_root_name(const Twine &path) {
Michael J. Spencerae180082010-12-01 06:03:50 +0000559 SmallString<128> path_storage;
560 StringRef p = path.toStringRef(path_storage);
561
Michael J. Spencer50291592010-12-07 17:04:04 +0000562 return !root_name(p).empty();
Michael J. Spencerae180082010-12-01 06:03:50 +0000563}
564
Michael J. Spencer12ccf672010-12-07 18:12:07 +0000565bool has_root_directory(const Twine &path) {
Michael J. Spencerae180082010-12-01 06:03:50 +0000566 SmallString<128> path_storage;
567 StringRef p = path.toStringRef(path_storage);
568
Michael J. Spencer50291592010-12-07 17:04:04 +0000569 return !root_directory(p).empty();
Michael J. Spencerae180082010-12-01 06:03:50 +0000570}
571
Michael J. Spencer12ccf672010-12-07 18:12:07 +0000572bool has_root_path(const Twine &path) {
Michael J. Spencerae180082010-12-01 06:03:50 +0000573 SmallString<128> path_storage;
574 StringRef p = path.toStringRef(path_storage);
575
Michael J. Spencer50291592010-12-07 17:04:04 +0000576 return !root_path(p).empty();
Michael J. Spencerae180082010-12-01 06:03:50 +0000577}
578
Michael J. Spencer2d484eb2010-12-20 13:30:28 +0000579bool has_relative_path(const Twine &path) {
580 SmallString<128> path_storage;
581 StringRef p = path.toStringRef(path_storage);
582
583 return !relative_path(p).empty();
584}
585
Michael J. Spencer12ccf672010-12-07 18:12:07 +0000586bool has_filename(const Twine &path) {
Michael J. Spencerae180082010-12-01 06:03:50 +0000587 SmallString<128> path_storage;
588 StringRef p = path.toStringRef(path_storage);
589
Michael J. Spencer50291592010-12-07 17:04:04 +0000590 return !filename(p).empty();
Michael J. Spencerae180082010-12-01 06:03:50 +0000591}
592
Michael J. Spencer12ccf672010-12-07 18:12:07 +0000593bool has_parent_path(const Twine &path) {
Michael J. Spencerae180082010-12-01 06:03:50 +0000594 SmallString<128> path_storage;
595 StringRef p = path.toStringRef(path_storage);
596
Michael J. Spencer50291592010-12-07 17:04:04 +0000597 return !parent_path(p).empty();
Michael J. Spencerae180082010-12-01 06:03:50 +0000598}
599
Michael J. Spencer12ccf672010-12-07 18:12:07 +0000600bool has_stem(const Twine &path) {
Michael J. Spencerae180082010-12-01 06:03:50 +0000601 SmallString<128> path_storage;
602 StringRef p = path.toStringRef(path_storage);
603
Michael J. Spencer50291592010-12-07 17:04:04 +0000604 return !stem(p).empty();
Michael J. Spencerae180082010-12-01 06:03:50 +0000605}
606
Michael J. Spencer12ccf672010-12-07 18:12:07 +0000607bool has_extension(const Twine &path) {
Michael J. Spencerae180082010-12-01 06:03:50 +0000608 SmallString<128> path_storage;
609 StringRef p = path.toStringRef(path_storage);
610
Michael J. Spencer50291592010-12-07 17:04:04 +0000611 return !extension(p).empty();
Michael J. Spencerae180082010-12-01 06:03:50 +0000612}
613
Michael J. Spencer12ccf672010-12-07 18:12:07 +0000614bool is_absolute(const Twine &path) {
Michael J. Spencerce2b68f2010-12-01 06:21:53 +0000615 SmallString<128> path_storage;
616 StringRef p = path.toStringRef(path_storage);
617
Michael J. Spencer50291592010-12-07 17:04:04 +0000618 bool rootDir = has_root_directory(p),
Michael J. Spencerce2b68f2010-12-01 06:21:53 +0000619#ifdef LLVM_ON_WIN32
Michael J. Spencer50291592010-12-07 17:04:04 +0000620 rootName = has_root_name(p);
Michael J. Spencerce2b68f2010-12-01 06:21:53 +0000621#else
Michael J. Spencer50291592010-12-07 17:04:04 +0000622 rootName = true;
Michael J. Spencerce2b68f2010-12-01 06:21:53 +0000623#endif
624
Michael J. Spencer50291592010-12-07 17:04:04 +0000625 return rootDir && rootName;
Michael J. Spencerce2b68f2010-12-01 06:21:53 +0000626}
627
Michael J. Spencer12ccf672010-12-07 18:12:07 +0000628bool is_relative(const Twine &path) {
Michael J. Spencer50291592010-12-07 17:04:04 +0000629 return !is_absolute(path);
Michael J. Spencerce2b68f2010-12-01 06:21:53 +0000630}
631
Michael J. Spencerbee0c382010-12-01 19:32:01 +0000632} // end namespace path
633
634namespace fs {
635
Rafael Espindola3ed45fe2013-07-29 21:26:49 +0000636error_code getUniqueID(const Twine Path, UniqueID &Result) {
637 file_status Status;
638 error_code EC = status(Path, Status);
639 if (EC)
640 return EC;
641 Result = Status.getUniqueID();
642 return error_code::success();
643}
644
Rafael Espindola200c7482013-07-05 21:01:08 +0000645error_code createUniqueFile(const Twine &Model, int &ResultFd,
646 SmallVectorImpl<char> &ResultPath, unsigned Mode) {
647 return createUniqueEntity(Model, ResultFd, ResultPath, false, Mode, FS_File);
648}
649
650error_code createUniqueFile(const Twine &Model,
651 SmallVectorImpl<char> &ResultPath) {
652 int Dummy;
653 return createUniqueEntity(Model, Dummy, ResultPath, false, 0, FS_Name);
654}
655
Rafael Espindolae11874f2013-07-05 19:56:49 +0000656static error_code createTemporaryFile(const Twine &Model, int &ResultFD,
657 llvm::SmallVectorImpl<char> &ResultPath,
658 FSEntity Type) {
659 SmallString<128> Storage;
660 StringRef P = Model.toNullTerminatedStringRef(Storage);
661 assert(P.find_first_of(separators) == StringRef::npos &&
662 "Model must be a simple filename.");
663 // Use P.begin() so that createUniqueEntity doesn't need to recreate Storage.
664 return createUniqueEntity(P.begin(), ResultFD, ResultPath,
665 true, owner_read | owner_write, Type);
666}
667
668static error_code
669createTemporaryFile(const Twine &Prefix, StringRef Suffix, int &ResultFD,
670 llvm::SmallVectorImpl<char> &ResultPath,
671 FSEntity Type) {
Rafael Espindola268f4002013-07-25 15:00:17 +0000672 const char *Middle = Suffix.empty() ? "-%%%%%%" : "-%%%%%%.";
673 return createTemporaryFile(Prefix + Middle + Suffix, ResultFD, ResultPath,
Rafael Espindolae11874f2013-07-05 19:56:49 +0000674 Type);
675}
676
677
678error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix,
679 int &ResultFD,
680 SmallVectorImpl<char> &ResultPath) {
681 return createTemporaryFile(Prefix, Suffix, ResultFD, ResultPath, FS_File);
682}
683
684error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix,
685 SmallVectorImpl<char> &ResultPath) {
686 int Dummy;
687 return createTemporaryFile(Prefix, Suffix, Dummy, ResultPath, FS_Name);
688}
689
690
Rafael Espindola8e7294f2013-06-28 03:48:47 +0000691// This is a mkdtemp with a different pattern. We use createUniqueEntity mostly
Rafael Espindola41574662013-06-28 10:55:41 +0000692// for consistency. We should try using mkdtemp.
Rafael Espindola08ddd122013-06-27 03:45:31 +0000693error_code createUniqueDirectory(const Twine &Prefix,
694 SmallVectorImpl<char> &ResultPath) {
Rafael Espindola8e7294f2013-06-28 03:48:47 +0000695 int Dummy;
696 return createUniqueEntity(Prefix + "-%%%%%%", Dummy, ResultPath,
697 true, 0, FS_Dir);
Rafael Espindola08ddd122013-06-27 03:45:31 +0000698}
699
Michael J. Spenceree271d82010-12-07 03:57:17 +0000700error_code make_absolute(SmallVectorImpl<char> &path) {
701 StringRef p(path.data(), path.size());
702
Daniel Dunbard1d72162012-02-29 00:20:37 +0000703 bool rootDirectory = path::has_root_directory(p),
704#ifdef LLVM_ON_WIN32
Daniel Dunbar95fe7b92012-02-29 00:46:46 +0000705 rootName = path::has_root_name(p);
Daniel Dunbard1d72162012-02-29 00:20:37 +0000706#else
707 rootName = true;
708#endif
Michael J. Spenceree271d82010-12-07 03:57:17 +0000709
710 // Already absolute.
711 if (rootName && rootDirectory)
David Blaikie58604cd2012-02-09 19:24:12 +0000712 return error_code::success();
Michael J. Spenceree271d82010-12-07 03:57:17 +0000713
714 // All of the following conditions will need the current directory.
715 SmallString<128> current_dir;
716 if (error_code ec = current_path(current_dir)) return ec;
717
718 // Relative path. Prepend the current directory.
719 if (!rootName && !rootDirectory) {
720 // Append path to the current directory.
Michael J. Spencer936671b2010-12-07 03:57:37 +0000721 path::append(current_dir, p);
Michael J. Spenceree271d82010-12-07 03:57:17 +0000722 // Set path to the result.
723 path.swap(current_dir);
David Blaikie58604cd2012-02-09 19:24:12 +0000724 return error_code::success();
Michael J. Spenceree271d82010-12-07 03:57:17 +0000725 }
726
727 if (!rootName && rootDirectory) {
Michael J. Spencer50291592010-12-07 17:04:04 +0000728 StringRef cdrn = path::root_name(current_dir);
Michael J. Spenceree271d82010-12-07 03:57:17 +0000729 SmallString<128> curDirRootName(cdrn.begin(), cdrn.end());
Michael J. Spencer936671b2010-12-07 03:57:37 +0000730 path::append(curDirRootName, p);
Michael J. Spenceree271d82010-12-07 03:57:17 +0000731 // Set path to the result.
732 path.swap(curDirRootName);
David Blaikie58604cd2012-02-09 19:24:12 +0000733 return error_code::success();
Michael J. Spenceree271d82010-12-07 03:57:17 +0000734 }
735
736 if (rootName && !rootDirectory) {
Michael J. Spencer50291592010-12-07 17:04:04 +0000737 StringRef pRootName = path::root_name(p);
738 StringRef bRootDirectory = path::root_directory(current_dir);
739 StringRef bRelativePath = path::relative_path(current_dir);
740 StringRef pRelativePath = path::relative_path(p);
Michael J. Spenceree271d82010-12-07 03:57:17 +0000741
742 SmallString<128> res;
Michael J. Spencer936671b2010-12-07 03:57:37 +0000743 path::append(res, pRootName, bRootDirectory, bRelativePath, pRelativePath);
Michael J. Spenceree271d82010-12-07 03:57:17 +0000744 path.swap(res);
David Blaikie58604cd2012-02-09 19:24:12 +0000745 return error_code::success();
Michael J. Spenceree271d82010-12-07 03:57:17 +0000746 }
747
748 llvm_unreachable("All rootName and rootDirectory combinations should have "
749 "occurred above!");
750}
751
Michael J. Spencerb83769f2010-12-03 05:42:11 +0000752error_code create_directories(const Twine &path, bool &existed) {
753 SmallString<128> path_storage;
754 StringRef p = path.toStringRef(path_storage);
755
Michael J. Spencer50291592010-12-07 17:04:04 +0000756 StringRef parent = path::parent_path(p);
Michael J. Spencer55f43d62012-03-21 23:09:14 +0000757 if (!parent.empty()) {
758 bool parent_exists;
759 if (error_code ec = fs::exists(parent, parent_exists)) return ec;
Michael J. Spencer50291592010-12-07 17:04:04 +0000760
Michael J. Spencer55f43d62012-03-21 23:09:14 +0000761 if (!parent_exists)
762 if (error_code ec = create_directories(parent, existed)) return ec;
763 }
Michael J. Spencerb83769f2010-12-03 05:42:11 +0000764
765 return create_directory(p, existed);
766}
767
Michael J. Spencer61187dd2010-12-09 17:37:02 +0000768bool exists(file_status status) {
769 return status_known(status) && status.type() != file_type::file_not_found;
770}
771
772bool status_known(file_status s) {
773 return s.type() != file_type::status_error;
774}
775
776bool is_directory(file_status status) {
777 return status.type() == file_type::directory_file;
778}
779
Michael J. Spencer218dc3e2011-01-11 01:21:55 +0000780error_code is_directory(const Twine &path, bool &result) {
781 file_status st;
782 if (error_code ec = status(path, st))
783 return ec;
784 result = is_directory(st);
David Blaikie58604cd2012-02-09 19:24:12 +0000785 return error_code::success();
Michael J. Spencer218dc3e2011-01-11 01:21:55 +0000786}
787
Michael J. Spencer61187dd2010-12-09 17:37:02 +0000788bool is_regular_file(file_status status) {
789 return status.type() == file_type::regular_file;
790}
791
Michael J. Spencer218dc3e2011-01-11 01:21:55 +0000792error_code is_regular_file(const Twine &path, bool &result) {
793 file_status st;
794 if (error_code ec = status(path, st))
795 return ec;
796 result = is_regular_file(st);
David Blaikie58604cd2012-02-09 19:24:12 +0000797 return error_code::success();
Michael J. Spencer218dc3e2011-01-11 01:21:55 +0000798}
799
Michael J. Spencer61187dd2010-12-09 17:37:02 +0000800bool is_symlink(file_status status) {
801 return status.type() == file_type::symlink_file;
802}
803
Michael J. Spencer9df536c2011-01-12 23:55:06 +0000804error_code is_symlink(const Twine &path, bool &result) {
805 file_status st;
806 if (error_code ec = status(path, st))
807 return ec;
808 result = is_symlink(st);
David Blaikie58604cd2012-02-09 19:24:12 +0000809 return error_code::success();
Michael J. Spencer9df536c2011-01-12 23:55:06 +0000810}
811
Michael J. Spencer61187dd2010-12-09 17:37:02 +0000812bool is_other(file_status status) {
813 return exists(status) &&
814 !is_regular_file(status) &&
815 !is_directory(status) &&
816 !is_symlink(status);
817}
818
Benjamin Kramer357b5712011-09-14 01:14:36 +0000819void directory_entry::replace_filename(const Twine &filename, file_status st) {
Michael J. Spencer753cbbb2010-12-06 04:28:42 +0000820 SmallString<128> path(Path.begin(), Path.end());
821 path::remove_filename(path);
822 path::append(path, filename);
823 Path = path.str();
824 Status = st;
Michael J. Spencer753cbbb2010-12-06 04:28:42 +0000825}
826
Michael J. Spencer628467e2010-12-28 01:49:01 +0000827error_code has_magic(const Twine &path, const Twine &magic, bool &result) {
Michael J. Spencer628467e2010-12-28 01:49:01 +0000828 SmallString<32> MagicStorage;
Michael J. Spencerb33594b2011-01-15 18:52:41 +0000829 StringRef Magic = magic.toStringRef(MagicStorage);
830 SmallString<32> Buffer;
Michael J. Spencer628467e2010-12-28 01:49:01 +0000831
Michael J. Spencerb33594b2011-01-15 18:52:41 +0000832 if (error_code ec = get_magic(path, Magic.size(), Buffer)) {
833 if (ec == errc::value_too_large) {
834 // Magic.size() > file_size(Path).
Michael J. Spencer628467e2010-12-28 01:49:01 +0000835 result = false;
David Blaikie58604cd2012-02-09 19:24:12 +0000836 return error_code::success();
Michael J. Spencer628467e2010-12-28 01:49:01 +0000837 }
Michael J. Spencerb33594b2011-01-15 18:52:41 +0000838 return ec;
Michael J. Spencer628467e2010-12-28 01:49:01 +0000839 }
Michael J. Spencer628467e2010-12-28 01:49:01 +0000840
Michael J. Spencerb33594b2011-01-15 18:52:41 +0000841 result = Magic == Buffer;
David Blaikie58604cd2012-02-09 19:24:12 +0000842 return error_code::success();
Michael J. Spencer628467e2010-12-28 01:49:01 +0000843}
844
Michael J. Spencer5b082302011-12-13 23:17:12 +0000845/// @brief Identify the magic in magic.
Rafael Espindola9bd9f8e2013-06-11 17:22:12 +0000846 file_magic identify_magic(StringRef Magic) {
847 if (Magic.size() < 4)
Michael J. Spencerb51c8e92012-06-19 05:29:57 +0000848 return file_magic::unknown;
Rafael Espindola9bd9f8e2013-06-11 17:22:12 +0000849 switch ((unsigned char)Magic[0]) {
Rui Ueyamab32b0372013-10-15 22:45:38 +0000850 case 0x00: {
851 // Windows resource file
852 const char Expected[] = "\0\0\0\0\x20\0\0\0\xff";
853 if (Magic.size() >= sizeof(Expected) &&
854 memcmp(Magic.data(), Expected, sizeof(Expected)) == 0)
855 return file_magic::windows_resource;
856 break;
857 }
Michael J. Spencer5b082302011-12-13 23:17:12 +0000858 case 0xDE: // 0x0B17C0DE = BC wraper
Rafael Espindola9bd9f8e2013-06-11 17:22:12 +0000859 if (Magic[1] == (char)0xC0 && Magic[2] == (char)0x17 &&
860 Magic[3] == (char)0x0B)
Michael J. Spencer5b082302011-12-13 23:17:12 +0000861 return file_magic::bitcode;
862 break;
863 case 'B':
Rafael Espindola9bd9f8e2013-06-11 17:22:12 +0000864 if (Magic[1] == 'C' && Magic[2] == (char)0xC0 && Magic[3] == (char)0xDE)
Michael J. Spencer5b082302011-12-13 23:17:12 +0000865 return file_magic::bitcode;
866 break;
867 case '!':
Rafael Espindola9bd9f8e2013-06-11 17:22:12 +0000868 if (Magic.size() >= 8)
869 if (memcmp(Magic.data(),"!<arch>\n",8) == 0)
Michael J. Spencer5b082302011-12-13 23:17:12 +0000870 return file_magic::archive;
871 break;
872
873 case '\177':
Rafael Espindola01797062013-06-11 17:25:45 +0000874 if (Magic.size() >= 18 && Magic[1] == 'E' && Magic[2] == 'L' &&
875 Magic[3] == 'F') {
Rafael Espindola9bd9f8e2013-06-11 17:22:12 +0000876 bool Data2MSB = Magic[5] == 2;
Michael J. Spencerc0a74e22013-04-05 20:10:04 +0000877 unsigned high = Data2MSB ? 16 : 17;
878 unsigned low = Data2MSB ? 17 : 16;
Rafael Espindola01797062013-06-11 17:25:45 +0000879 if (Magic[high] == 0)
Rafael Espindola9bd9f8e2013-06-11 17:22:12 +0000880 switch (Magic[low]) {
Michael J. Spencer5b082302011-12-13 23:17:12 +0000881 default: break;
882 case 1: return file_magic::elf_relocatable;
883 case 2: return file_magic::elf_executable;
884 case 3: return file_magic::elf_shared_object;
885 case 4: return file_magic::elf_core;
886 }
887 }
888 break;
889
890 case 0xCA:
Rafael Espindola9bd9f8e2013-06-11 17:22:12 +0000891 if (Magic[1] == char(0xFE) && Magic[2] == char(0xBA) &&
892 Magic[3] == char(0xBE)) {
Michael J. Spencer5b082302011-12-13 23:17:12 +0000893 // This is complicated by an overlap with Java class files.
894 // See the Mach-O section in /usr/share/file/magic for details.
Rafael Espindola9bd9f8e2013-06-11 17:22:12 +0000895 if (Magic.size() >= 8 && Magic[7] < 43)
Alexey Samsonov9c22f872013-06-18 15:03:28 +0000896 return file_magic::macho_universal_binary;
Michael J. Spencer5b082302011-12-13 23:17:12 +0000897 }
898 break;
899
900 // The two magic numbers for mach-o are:
901 // 0xfeedface - 32-bit mach-o
902 // 0xfeedfacf - 64-bit mach-o
903 case 0xFE:
904 case 0xCE:
905 case 0xCF: {
906 uint16_t type = 0;
Rafael Espindola9bd9f8e2013-06-11 17:22:12 +0000907 if (Magic[0] == char(0xFE) && Magic[1] == char(0xED) &&
908 Magic[2] == char(0xFA) &&
909 (Magic[3] == char(0xCE) || Magic[3] == char(0xCF))) {
Michael J. Spencer5b082302011-12-13 23:17:12 +0000910 /* Native endian */
Rafael Espindola9bd9f8e2013-06-11 17:22:12 +0000911 if (Magic.size() >= 16) type = Magic[14] << 8 | Magic[15];
912 } else if ((Magic[0] == char(0xCE) || Magic[0] == char(0xCF)) &&
913 Magic[1] == char(0xFA) && Magic[2] == char(0xED) &&
914 Magic[3] == char(0xFE)) {
Michael J. Spencer5b082302011-12-13 23:17:12 +0000915 /* Reverse endian */
Rafael Espindola9bd9f8e2013-06-11 17:22:12 +0000916 if (Magic.size() >= 14) type = Magic[13] << 8 | Magic[12];
Michael J. Spencer5b082302011-12-13 23:17:12 +0000917 }
918 switch (type) {
919 default: break;
920 case 1: return file_magic::macho_object;
921 case 2: return file_magic::macho_executable;
922 case 3: return file_magic::macho_fixed_virtual_memory_shared_lib;
923 case 4: return file_magic::macho_core;
Rafael Espindola6d315c62013-06-10 20:32:27 +0000924 case 5: return file_magic::macho_preload_executable;
Michael J. Spencer5b082302011-12-13 23:17:12 +0000925 case 6: return file_magic::macho_dynamically_linked_shared_lib;
926 case 7: return file_magic::macho_dynamic_linker;
927 case 8: return file_magic::macho_bundle;
928 case 9: return file_magic::macho_dynamic_linker;
929 case 10: return file_magic::macho_dsym_companion;
930 }
931 break;
932 }
933 case 0xF0: // PowerPC Windows
934 case 0x83: // Alpha 32-bit
935 case 0x84: // Alpha 64-bit
936 case 0x66: // MPS R4000 Windows
937 case 0x50: // mc68K
938 case 0x4c: // 80386 Windows
Rafael Espindola9bd9f8e2013-06-11 17:22:12 +0000939 if (Magic[1] == 0x01)
Michael J. Spencer5b082302011-12-13 23:17:12 +0000940 return file_magic::coff_object;
941
942 case 0x90: // PA-RISC Windows
943 case 0x68: // mc68K Windows
Rafael Espindola9bd9f8e2013-06-11 17:22:12 +0000944 if (Magic[1] == 0x02)
Michael J. Spencer5b082302011-12-13 23:17:12 +0000945 return file_magic::coff_object;
946 break;
947
948 case 0x4d: // Possible MS-DOS stub on Windows PE file
Rafael Espindola9bd9f8e2013-06-11 17:22:12 +0000949 if (Magic[1] == 0x5a) {
Michael J. Spencer5b082302011-12-13 23:17:12 +0000950 uint32_t off =
Rafael Espindola9bd9f8e2013-06-11 17:22:12 +0000951 *reinterpret_cast<const support::ulittle32_t*>(Magic.data() + 0x3c);
Michael J. Spencer5b082302011-12-13 23:17:12 +0000952 // PE/COFF file, either EXE or DLL.
Rafael Espindola9bd9f8e2013-06-11 17:22:12 +0000953 if (off < Magic.size() && memcmp(Magic.data() + off, "PE\0\0",4) == 0)
Michael J. Spencer5b082302011-12-13 23:17:12 +0000954 return file_magic::pecoff_executable;
955 }
956 break;
957
958 case 0x64: // x86-64 Windows.
Rafael Espindola9bd9f8e2013-06-11 17:22:12 +0000959 if (Magic[1] == char(0x86))
Michael J. Spencer5b082302011-12-13 23:17:12 +0000960 return file_magic::coff_object;
961 break;
962
963 default:
964 break;
965 }
966 return file_magic::unknown;
967}
968
969error_code identify_magic(const Twine &path, file_magic &result) {
Michael J. Spencer28f0ed52011-01-15 20:39:36 +0000970 SmallString<32> Magic;
971 error_code ec = get_magic(path, Magic.capacity(), Magic);
972 if (ec && ec != errc::value_too_large)
973 return ec;
974
Michael J. Spencer5b082302011-12-13 23:17:12 +0000975 result = identify_magic(Magic);
David Blaikie58604cd2012-02-09 19:24:12 +0000976 return error_code::success();
Michael J. Spencer28f0ed52011-01-15 20:39:36 +0000977}
978
Michael J. Spencer7fd682a2011-01-05 16:39:38 +0000979namespace {
980error_code remove_all_r(StringRef path, file_type ft, uint32_t &count) {
981 if (ft == file_type::directory_file) {
982 // This code would be a lot better with exceptions ;/.
983 error_code ec;
Michael J. Spencer1dd2ee72011-12-12 06:03:33 +0000984 directory_iterator i(path, ec);
985 if (ec) return ec;
986 for (directory_iterator e; i != e; i.increment(ec)) {
Michael J. Spencer7fd682a2011-01-05 16:39:38 +0000987 if (ec) return ec;
988 file_status st;
989 if (error_code ec = i->status(st)) return ec;
990 if (error_code ec = remove_all_r(i->path(), st.type(), count)) return ec;
991 }
992 bool obviously_this_exists;
993 if (error_code ec = remove(path, obviously_this_exists)) return ec;
994 assert(obviously_this_exists);
995 ++count; // Include the directory itself in the items removed.
996 } else {
997 bool obviously_this_exists;
998 if (error_code ec = remove(path, obviously_this_exists)) return ec;
999 assert(obviously_this_exists);
1000 ++count;
1001 }
1002
David Blaikie58604cd2012-02-09 19:24:12 +00001003 return error_code::success();
Michael J. Spencer7fd682a2011-01-05 16:39:38 +00001004}
Zhanyong Wan63cc3a82011-02-11 21:24:40 +00001005} // end unnamed namespace
Michael J. Spencer7fd682a2011-01-05 16:39:38 +00001006
1007error_code remove_all(const Twine &path, uint32_t &num_removed) {
1008 SmallString<128> path_storage;
1009 StringRef p = path.toStringRef(path_storage);
1010
1011 file_status fs;
1012 if (error_code ec = status(path, fs))
1013 return ec;
1014 num_removed = 0;
1015 return remove_all_r(p, fs.type(), num_removed);
1016}
1017
Michael J. Spencer5bcdc7f2011-01-05 16:39:13 +00001018error_code directory_entry::status(file_status &result) const {
1019 return fs::status(Path, result);
1020}
1021
Michael J. Spencerbee0c382010-12-01 19:32:01 +00001022} // end namespace fs
1023} // end namespace sys
1024} // end namespace llvm
Michael J. Spencerdffde992010-11-29 22:28:51 +00001025
1026// Include the truly platform-specific parts.
1027#if defined(LLVM_ON_UNIX)
Rafael Espindola7a231f52013-06-26 19:33:03 +00001028#include "Unix/Path.inc"
Michael J. Spencerdffde992010-11-29 22:28:51 +00001029#endif
1030#if defined(LLVM_ON_WIN32)
Rafael Espindola7a231f52013-06-26 19:33:03 +00001031#include "Windows/Path.inc"
Michael J. Spencerdffde992010-11-29 22:28:51 +00001032#endif