blob: 144959755efb83f92ae31890536810043feddb89 [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>
Chris Lattnerc67dc452006-07-07 18:11:32 +000017#include <ostream>
18using namespace llvm;
Reid Spencer8e665952004-08-29 05:24:01 +000019using namespace sys;
Reid Spencerb89a2232004-08-25 06:20:07 +000020
21//===----------------------------------------------------------------------===//
22//=== WARNING: Implementation here must contain only TRULY operating system
Misha Brukmanf976c852005-04-21 22:55:34 +000023//=== independent code.
Reid Spencerb89a2232004-08-25 06:20:07 +000024//===----------------------------------------------------------------------===//
25
Chris Lattnerc67dc452006-07-07 18:11:32 +000026std::ostream& llvm::operator<<(std::ostream &strm, const sys::Path &aPath) {
27 strm << aPath.toString();
28 return strm;
29}
30
Reid Spencerc29befb2004-12-15 01:50:13 +000031Path
32Path::GetLLVMConfigDir() {
33 Path result;
Jeff Cohenab68df02004-12-15 04:08:15 +000034#ifdef LLVM_ETCDIR
Reid Spencerdd04df02005-07-07 23:21:43 +000035 if (result.set(LLVM_ETCDIR))
Reid Spencerc29befb2004-12-15 01:50:13 +000036 return result;
Jeff Cohenab68df02004-12-15 04:08:15 +000037#endif
Reid Spencerc29befb2004-12-15 01:50:13 +000038 return GetLLVMDefaultConfigDir();
39}
40
Misha Brukmanf976c852005-04-21 22:55:34 +000041LLVMFileType
Reid Spencera2a62212004-11-14 23:26:18 +000042sys::IdentifyFileType(const char*magic, unsigned length) {
Reid Spencerf37ce992004-11-14 22:05:32 +000043 assert(magic && "Invalid magic number string");
44 assert(length >=4 && "Invalid magic number length");
45 switch (magic[0]) {
Chris Lattnerf283a5e2007-05-06 05:32:21 +000046 case 'B':
47 if (magic[1] == 'C' && magic[2] == (char)0xC0 && magic[3] == (char)0xDE)
48 return Bitcode_FileType;
49 break;
Reid Spencer8bb5fd12007-04-04 06:30:26 +000050 case '!':
51 if (length >= 8)
52 if (memcmp(magic,"!<arch>\n",8) == 0)
53 return Archive_FileType;
54 break;
55
56 case '\177':
Chris Lattner24eac6c2007-05-03 18:15:56 +000057 if (magic[1] == 'E' && magic[2] == 'L' && magic[3] == 'F') {
Reid Spencer947aa7d2007-04-11 02:02:09 +000058 if (length >= 18 && magic[17] == 0)
59 switch (magic[16]) {
60 default: break;
61 case 1: return ELF_Relocatable_FileType;
62 case 2: return ELF_Executable_FileType;
63 case 3: return ELF_SharedObject_FileType;
64 case 4: return ELF_Core_FileType;
65 }
Chris Lattner24eac6c2007-05-03 18:15:56 +000066 }
Reid Spencerf37ce992004-11-14 22:05:32 +000067 break;
68
Chris Lattnerade75922007-04-11 03:15:35 +000069 case 0xCA:
Reid Spencer8bb5fd12007-04-04 06:30:26 +000070 // This is complicated by an overlap with Java class files.
71 // See the Mach-O section in /usr/share/file/magic for details.
Chris Lattnerade75922007-04-11 03:15:35 +000072 if (magic[1] == char(0xFE) && magic[2] == char(0xBA) &&
73 magic[3] == char(0xBE)) {
74 return Mach_O_DynamicallyLinkedSharedLib_FileType;
75
76 // FIXME: How does this work?
Reid Spencer947aa7d2007-04-11 02:02:09 +000077 if (length >= 14 && magic[13] == 0)
78 switch (magic[12]) {
79 default: break;
80 case 1: return Mach_O_Object_FileType;
81 case 2: return Mach_O_Executable_FileType;
82 case 3: return Mach_O_FixedVirtualMemorySharedLib_FileType;
83 case 4: return Mach_O_Core_FileType;
84 case 5: return Mach_O_PreloadExectuable_FileType;
85 case 6: return Mach_O_DynamicallyLinkedSharedLib_FileType;
86 case 7: return Mach_O_DynamicLinker_FileType;
87 case 8: return Mach_O_Bundle_FileType;
88 case 9: return Mach_O_DynamicallyLinkedSharedLibStub_FileType;
89 }
Chris Lattnerade75922007-04-11 03:15:35 +000090 }
Reid Spencer8bb5fd12007-04-04 06:30:26 +000091 break;
92
93 case 0xF0: // PowerPC Windows
94 case 0x83: // Alpha 32-bit
95 case 0x84: // Alpha 64-bit
96 case 0x66: // MPS R4000 Windows
97 case 0x50: // mc68K
98 case 0x4c: // 80386 Windows
99 if (magic[1] == 0x01)
100 return COFF_FileType;
101
102 case 0x90: // PA-RISC Windows
103 case 0x68: // mc68K Windows
104 if (magic[1] == 0x02)
105 return COFF_FileType;
Reid Spencerf37ce992004-11-14 22:05:32 +0000106 break;
107
108 default:
109 break;
110 }
Reid Spencer8bb5fd12007-04-04 06:30:26 +0000111 return Unknown_FileType;
Reid Spencerf37ce992004-11-14 22:05:32 +0000112}
113
Reid Spencerccb23a12004-12-13 03:00:39 +0000114bool
115Path::isArchive() const {
Reid Spencerc7f08322005-07-07 18:21:42 +0000116 if (canRead())
Reid Spencerccb23a12004-12-13 03:00:39 +0000117 return hasMagicNumber("!<arch>\012");
118 return false;
119}
120
121bool
122Path::isDynamicLibrary() const {
Reid Spencer410aa022007-04-11 00:49:39 +0000123 if (canRead()) {
124 std::string Magic;
125 if (getMagicNumber(Magic, 64))
126 switch (IdentifyFileType(Magic.c_str(), Magic.length())) {
127 default: return false;
Reid Spencer947aa7d2007-04-11 02:02:09 +0000128 case Mach_O_FixedVirtualMemorySharedLib_FileType:
129 case Mach_O_DynamicallyLinkedSharedLib_FileType:
130 case Mach_O_DynamicallyLinkedSharedLibStub_FileType:
131 case ELF_SharedObject_FileType:
Reid Spencer410aa022007-04-11 00:49:39 +0000132 case COFF_FileType: return true;
133 }
134 }
Reid Spencerccb23a12004-12-13 03:00:39 +0000135 return false;
136}
137
138Path
139Path::FindLibrary(std::string& name) {
140 std::vector<sys::Path> LibPaths;
141 GetSystemLibraryPaths(LibPaths);
142 for (unsigned i = 0; i < LibPaths.size(); ++i) {
143 sys::Path FullPath(LibPaths[i]);
Reid Spencerdd04df02005-07-07 23:21:43 +0000144 FullPath.appendComponent("lib" + name + LTDL_SHLIB_EXT);
Reid Spencerccb23a12004-12-13 03:00:39 +0000145 if (FullPath.isDynamicLibrary())
146 return FullPath;
Reid Spencerdd04df02005-07-07 23:21:43 +0000147 FullPath.eraseSuffix();
Reid Spencerccb23a12004-12-13 03:00:39 +0000148 FullPath.appendSuffix("a");
149 if (FullPath.isArchive())
150 return FullPath;
151 }
152 return sys::Path();
153}
154
Chris Lattnerc67dc452006-07-07 18:11:32 +0000155std::string Path::GetDLLSuffix() {
Reid Spencer79fc9242004-12-13 18:41:28 +0000156 return LTDL_SHLIB_EXT;
157}
158
Chris Lattnerf283a5e2007-05-06 05:32:21 +0000159bool
Chris Lattnerf283a5e2007-05-06 05:32:21 +0000160Path::isBitcodeFile() const {
161 std::string actualMagic;
162 if (!getMagicNumber(actualMagic, 4))
163 return false;
164 return actualMagic == "BC\xC0\xDE";
165}
166
167bool Path::hasMagicNumber(const std::string &Magic) const {
168 std::string actualMagic;
169 if (getMagicNumber(actualMagic, Magic.size()))
170 return Magic == actualMagic;
171 return false;
172}
173
174
175
Reid Spencerb89a2232004-08-25 06:20:07 +0000176// Include the truly platform-specific parts of this class.
Reid Spencerdafe55f2004-12-24 06:29:17 +0000177#if defined(LLVM_ON_UNIX)
Reid Spencerbccc8ab2005-01-09 23:29:00 +0000178#include "Unix/Path.inc"
Reid Spencerdafe55f2004-12-24 06:29:17 +0000179#endif
180#if defined(LLVM_ON_WIN32)
Reid Spencerbccc8ab2005-01-09 23:29:00 +0000181#include "Win32/Path.inc"
Reid Spencerdafe55f2004-12-24 06:29:17 +0000182#endif
Reid Spencer23dd3322006-07-26 16:55:39 +0000183