blob: fbb6b6629ce831c4a8fe8f41d170e14eb17797e0 [file] [log] [blame]
Reid Spencerb89a2232004-08-25 06:20:07 +00001//===-- Path.cpp - Implement OS Path Concept --------------------*- C++ -*-===//
Misha Brukmanf976c852005-04-21 22:55:34 +00002//
Reid Spencerb89a2232004-08-25 06:20:07 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanf976c852005-04-21 22:55:34 +00007//
Reid Spencerb89a2232004-08-25 06:20:07 +00008//===----------------------------------------------------------------------===//
9//
10// This header file implements the operating system Path concept.
11//
12//===----------------------------------------------------------------------===//
Reid Spencer8e665952004-08-29 05:24:01 +000013
Reid Spencerb89a2232004-08-25 06:20:07 +000014#include "llvm/System/Path.h"
Reid Spencer79fc9242004-12-13 18:41:28 +000015#include "llvm/Config/config.h"
Alkis Evlogimenos98bc8ed2004-11-14 22:37:42 +000016#include <cassert>
Duncan Sandsf52e32a2008-01-09 19:42:09 +000017#include <cstring>
Chris Lattnerc67dc452006-07-07 18:11:32 +000018#include <ostream>
19using namespace llvm;
Reid Spencer8e665952004-08-29 05:24:01 +000020using namespace sys;
Reid Spencerb89a2232004-08-25 06:20:07 +000021
22//===----------------------------------------------------------------------===//
23//=== WARNING: Implementation here must contain only TRULY operating system
Misha Brukmanf976c852005-04-21 22:55:34 +000024//=== independent code.
Reid Spencerb89a2232004-08-25 06:20:07 +000025//===----------------------------------------------------------------------===//
26
Bill Wendling40db5d42008-05-21 21:20:07 +000027bool Path::operator==(const Path &that) const {
28 return path == that.path;
29}
30
31bool Path::operator!=(const Path &that) const {
32 return path != that.path;
33}
34
35bool Path::operator<(const Path& that) const {
36 return path < that.path;
37}
38
Chris Lattnerc67dc452006-07-07 18:11:32 +000039std::ostream& llvm::operator<<(std::ostream &strm, const sys::Path &aPath) {
40 strm << aPath.toString();
41 return strm;
42}
43
Reid Spencerc29befb2004-12-15 01:50:13 +000044Path
45Path::GetLLVMConfigDir() {
46 Path result;
Jeff Cohenab68df02004-12-15 04:08:15 +000047#ifdef LLVM_ETCDIR
Reid Spencerdd04df02005-07-07 23:21:43 +000048 if (result.set(LLVM_ETCDIR))
Reid Spencerc29befb2004-12-15 01:50:13 +000049 return result;
Jeff Cohenab68df02004-12-15 04:08:15 +000050#endif
Reid Spencerc29befb2004-12-15 01:50:13 +000051 return GetLLVMDefaultConfigDir();
52}
53
Misha Brukmanf976c852005-04-21 22:55:34 +000054LLVMFileType
Reid Spencera2a62212004-11-14 23:26:18 +000055sys::IdentifyFileType(const char*magic, unsigned length) {
Reid Spencerf37ce992004-11-14 22:05:32 +000056 assert(magic && "Invalid magic number string");
57 assert(length >=4 && "Invalid magic number length");
58 switch (magic[0]) {
Chris Lattnerf283a5e2007-05-06 05:32:21 +000059 case 'B':
60 if (magic[1] == 'C' && magic[2] == (char)0xC0 && magic[3] == (char)0xDE)
61 return Bitcode_FileType;
62 break;
Reid Spencer8bb5fd12007-04-04 06:30:26 +000063 case '!':
64 if (length >= 8)
65 if (memcmp(magic,"!<arch>\n",8) == 0)
66 return Archive_FileType;
67 break;
68
69 case '\177':
Chris Lattner24eac6c2007-05-03 18:15:56 +000070 if (magic[1] == 'E' && magic[2] == 'L' && magic[3] == 'F') {
Reid Spencer947aa7d2007-04-11 02:02:09 +000071 if (length >= 18 && magic[17] == 0)
72 switch (magic[16]) {
73 default: break;
74 case 1: return ELF_Relocatable_FileType;
75 case 2: return ELF_Executable_FileType;
76 case 3: return ELF_SharedObject_FileType;
77 case 4: return ELF_Core_FileType;
78 }
Chris Lattner24eac6c2007-05-03 18:15:56 +000079 }
Reid Spencerf37ce992004-11-14 22:05:32 +000080 break;
81
Chris Lattnerade75922007-04-11 03:15:35 +000082 case 0xCA:
Chris Lattnerade75922007-04-11 03:15:35 +000083 if (magic[1] == char(0xFE) && magic[2] == char(0xBA) &&
84 magic[3] == char(0xBE)) {
Chris Lattner65215492008-06-26 05:17:18 +000085 // This is complicated by an overlap with Java class files.
86 // See the Mach-O section in /usr/share/file/magic for details.
87 if (length >= 8 && magic[7] < 43)
88 // FIXME: Universal Binary of any type.
89 return Mach_O_DynamicallyLinkedSharedLib_FileType;
90 }
91 break;
92
93 case 0xFE:
Bill Wendlingfc1fd542008-06-26 08:32:05 +000094 case 0xCE: {
95 uint16_t type = 0;
Chris Lattner65215492008-06-26 05:17:18 +000096 if (magic[0] == char(0xFE) && magic[1] == char(0xED) &&
97 magic[2] == char(0xFA) && magic[3] == char(0xCE)) {
98 /* Native endian */
99 if (length >= 16) type = magic[14] << 8 | magic[15];
100 } else if (magic[0] == char(0xCE) && magic[1] == char(0xFA) &&
101 magic[2] == char(0xED) && magic[3] == char(0xFE)) {
102 /* Reverse endian */
103 if (length >= 14) type = magic[13] << 8 | magic[12];
Bill Wendlingfc1fd542008-06-26 08:32:05 +0000104 }
Chris Lattner65215492008-06-26 05:17:18 +0000105 switch (type) {
106 default: break;
107 case 1: return Mach_O_Object_FileType;
108 case 2: return Mach_O_Executable_FileType;
109 case 3: return Mach_O_FixedVirtualMemorySharedLib_FileType;
110 case 4: return Mach_O_Core_FileType;
111 case 5: return Mach_O_PreloadExectuable_FileType;
112 case 6: return Mach_O_DynamicallyLinkedSharedLib_FileType;
113 case 7: return Mach_O_DynamicLinker_FileType;
114 case 8: return Mach_O_Bundle_FileType;
115 case 9: return Mach_O_DynamicallyLinkedSharedLibStub_FileType;
116 case 10: break; // FIXME: MH_DSYM companion file with only debug.
Chris Lattnerade75922007-04-11 03:15:35 +0000117 }
Reid Spencer8bb5fd12007-04-04 06:30:26 +0000118 break;
Bill Wendlingfc1fd542008-06-26 08:32:05 +0000119 }
Reid Spencer8bb5fd12007-04-04 06:30:26 +0000120 case 0xF0: // PowerPC Windows
121 case 0x83: // Alpha 32-bit
122 case 0x84: // Alpha 64-bit
123 case 0x66: // MPS R4000 Windows
124 case 0x50: // mc68K
125 case 0x4c: // 80386 Windows
126 if (magic[1] == 0x01)
127 return COFF_FileType;
128
129 case 0x90: // PA-RISC Windows
130 case 0x68: // mc68K Windows
131 if (magic[1] == 0x02)
132 return COFF_FileType;
Reid Spencerf37ce992004-11-14 22:05:32 +0000133 break;
134
135 default:
136 break;
137 }
Reid Spencer8bb5fd12007-04-04 06:30:26 +0000138 return Unknown_FileType;
Reid Spencerf37ce992004-11-14 22:05:32 +0000139}
140
Reid Spencerccb23a12004-12-13 03:00:39 +0000141bool
142Path::isArchive() const {
Reid Spencerc7f08322005-07-07 18:21:42 +0000143 if (canRead())
Reid Spencerccb23a12004-12-13 03:00:39 +0000144 return hasMagicNumber("!<arch>\012");
145 return false;
146}
147
148bool
149Path::isDynamicLibrary() const {
Reid Spencer410aa022007-04-11 00:49:39 +0000150 if (canRead()) {
151 std::string Magic;
152 if (getMagicNumber(Magic, 64))
Evan Cheng34cd4a42008-05-05 18:30:58 +0000153 switch (IdentifyFileType(Magic.c_str(),
154 static_cast<unsigned>(Magic.length()))) {
Reid Spencer410aa022007-04-11 00:49:39 +0000155 default: return false;
Reid Spencer947aa7d2007-04-11 02:02:09 +0000156 case Mach_O_FixedVirtualMemorySharedLib_FileType:
157 case Mach_O_DynamicallyLinkedSharedLib_FileType:
158 case Mach_O_DynamicallyLinkedSharedLibStub_FileType:
159 case ELF_SharedObject_FileType:
Reid Spencer410aa022007-04-11 00:49:39 +0000160 case COFF_FileType: return true;
161 }
162 }
Reid Spencerccb23a12004-12-13 03:00:39 +0000163 return false;
164}
165
166Path
167Path::FindLibrary(std::string& name) {
168 std::vector<sys::Path> LibPaths;
169 GetSystemLibraryPaths(LibPaths);
170 for (unsigned i = 0; i < LibPaths.size(); ++i) {
171 sys::Path FullPath(LibPaths[i]);
Reid Spencerdd04df02005-07-07 23:21:43 +0000172 FullPath.appendComponent("lib" + name + LTDL_SHLIB_EXT);
Reid Spencerccb23a12004-12-13 03:00:39 +0000173 if (FullPath.isDynamicLibrary())
174 return FullPath;
Reid Spencerdd04df02005-07-07 23:21:43 +0000175 FullPath.eraseSuffix();
Reid Spencerccb23a12004-12-13 03:00:39 +0000176 FullPath.appendSuffix("a");
177 if (FullPath.isArchive())
178 return FullPath;
179 }
180 return sys::Path();
181}
182
Chris Lattnerc67dc452006-07-07 18:11:32 +0000183std::string Path::GetDLLSuffix() {
Reid Spencer79fc9242004-12-13 18:41:28 +0000184 return LTDL_SHLIB_EXT;
185}
186
Chris Lattnerf283a5e2007-05-06 05:32:21 +0000187bool
Chris Lattnerf283a5e2007-05-06 05:32:21 +0000188Path::isBitcodeFile() const {
189 std::string actualMagic;
190 if (!getMagicNumber(actualMagic, 4))
191 return false;
192 return actualMagic == "BC\xC0\xDE";
193}
194
195bool Path::hasMagicNumber(const std::string &Magic) const {
196 std::string actualMagic;
Evan Cheng34cd4a42008-05-05 18:30:58 +0000197 if (getMagicNumber(actualMagic, static_cast<unsigned>(Magic.size())))
Chris Lattnerf283a5e2007-05-06 05:32:21 +0000198 return Magic == actualMagic;
199 return false;
200}
201
Chris Lattnere1b332a2008-02-27 06:17:10 +0000202static void getPathList(const char*path, std::vector<Path>& Paths) {
203 const char* at = path;
204 const char* delim = strchr(at, PathSeparator);
205 Path tmpPath;
206 while (delim != 0) {
207 std::string tmp(at, size_t(delim-at));
208 if (tmpPath.set(tmp))
209 if (tmpPath.canRead())
210 Paths.push_back(tmpPath);
211 at = delim + 1;
212 delim = strchr(at, PathSeparator);
213 }
214
215 if (*at != 0)
216 if (tmpPath.set(std::string(at)))
217 if (tmpPath.canRead())
218 Paths.push_back(tmpPath);
219}
220
Ted Kremenek9b01cc02008-04-07 22:01:32 +0000221static std::string getDirnameCharSep(const std::string& path, char Sep) {
Ted Kremenekcf55c8e2008-04-07 21:53:57 +0000222
223 if (path.empty())
224 return ".";
225
226 // If the path is all slashes, return a single slash.
227 // Otherwise, remove all trailing slashes.
228
Evan Cheng34cd4a42008-05-05 18:30:58 +0000229 signed pos = static_cast<signed>(path.size()) - 1;
Ted Kremenekcf55c8e2008-04-07 21:53:57 +0000230
231 while (pos >= 0 && path[pos] == Sep)
232 --pos;
233
234 if (pos < 0)
235 return path[0] == Sep ? std::string(1, Sep) : std::string(".");
236
237 // Any slashes left?
238 signed i = 0;
239
240 while (i < pos && path[i] != Sep)
241 ++i;
242
243 if (i == pos) // No slashes? Return "."
244 return ".";
245
246 // There is at least one slash left. Remove all trailing non-slashes.
247 while (pos >= 0 && path[pos] != Sep)
248 --pos;
249
250 // Remove any trailing slashes.
251 while (pos >= 0 && path[pos] == Sep)
252 --pos;
253
254 if (pos < 0)
255 return path[0] == Sep ? std::string(1, Sep) : std::string(".");
256
257 return path.substr(0, pos+1);
258}
259
Reid Spencerb89a2232004-08-25 06:20:07 +0000260// Include the truly platform-specific parts of this class.
Reid Spencerdafe55f2004-12-24 06:29:17 +0000261#if defined(LLVM_ON_UNIX)
Reid Spencerbccc8ab2005-01-09 23:29:00 +0000262#include "Unix/Path.inc"
Reid Spencerdafe55f2004-12-24 06:29:17 +0000263#endif
264#if defined(LLVM_ON_WIN32)
Reid Spencerbccc8ab2005-01-09 23:29:00 +0000265#include "Win32/Path.inc"
Reid Spencerdafe55f2004-12-24 06:29:17 +0000266#endif
Reid Spencer23dd3322006-07-26 16:55:39 +0000267