blob: 66436ae0e5268d09c134a065b76ddb7e63580934 [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//
Misha Brukmanf976c852005-04-21 22:55:34 +00005// This file was developed by Reid Spencer and is distributed under the
Reid Spencerb89a2232004-08-25 06:20:07 +00006// University of Illinois Open Source 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]) {
46 case 'l':
Reid Spencer8bb5fd12007-04-04 06:30:26 +000047 if (magic[1] == 'l' && magic[2] == 'v')
Reid Spencerf37ce992004-11-14 22:05:32 +000048 if (magic[3] == 'c')
Reid Spencer8bb5fd12007-04-04 06:30:26 +000049 return CompressedBytecode_FileType;
Reid Spencerf37ce992004-11-14 22:05:32 +000050 else if (magic[3] == 'm')
Reid Spencer8bb5fd12007-04-04 06:30:26 +000051 return Bytecode_FileType;
52 break;
53 case '!':
54 if (length >= 8)
55 if (memcmp(magic,"!<arch>\n",8) == 0)
56 return Archive_FileType;
57 break;
58
59 case '\177':
60 if (magic[1] == 'E' && magic[2] == 'L' && magic[3] == 'F')
Reid Spencer947aa7d2007-04-11 02:02:09 +000061 if (length >= 18 && magic[17] == 0)
62 switch (magic[16]) {
63 default: break;
64 case 1: return ELF_Relocatable_FileType;
65 case 2: return ELF_Executable_FileType;
66 case 3: return ELF_SharedObject_FileType;
67 case 4: return ELF_Core_FileType;
68 }
Reid Spencerf37ce992004-11-14 22:05:32 +000069 break;
70
Chris Lattnerade75922007-04-11 03:15:35 +000071 case 0xCA:
Reid Spencer8bb5fd12007-04-04 06:30:26 +000072 // This is complicated by an overlap with Java class files.
73 // See the Mach-O section in /usr/share/file/magic for details.
Chris Lattnerade75922007-04-11 03:15:35 +000074 if (magic[1] == char(0xFE) && magic[2] == char(0xBA) &&
75 magic[3] == char(0xBE)) {
76 return Mach_O_DynamicallyLinkedSharedLib_FileType;
77
78 // FIXME: How does this work?
Reid Spencer947aa7d2007-04-11 02:02:09 +000079 if (length >= 14 && magic[13] == 0)
80 switch (magic[12]) {
81 default: break;
82 case 1: return Mach_O_Object_FileType;
83 case 2: return Mach_O_Executable_FileType;
84 case 3: return Mach_O_FixedVirtualMemorySharedLib_FileType;
85 case 4: return Mach_O_Core_FileType;
86 case 5: return Mach_O_PreloadExectuable_FileType;
87 case 6: return Mach_O_DynamicallyLinkedSharedLib_FileType;
88 case 7: return Mach_O_DynamicLinker_FileType;
89 case 8: return Mach_O_Bundle_FileType;
90 case 9: return Mach_O_DynamicallyLinkedSharedLibStub_FileType;
91 }
Chris Lattnerade75922007-04-11 03:15:35 +000092 }
Reid Spencer8bb5fd12007-04-04 06:30:26 +000093 break;
94
95 case 0xF0: // PowerPC Windows
96 case 0x83: // Alpha 32-bit
97 case 0x84: // Alpha 64-bit
98 case 0x66: // MPS R4000 Windows
99 case 0x50: // mc68K
100 case 0x4c: // 80386 Windows
101 if (magic[1] == 0x01)
102 return COFF_FileType;
103
104 case 0x90: // PA-RISC Windows
105 case 0x68: // mc68K Windows
106 if (magic[1] == 0x02)
107 return COFF_FileType;
Reid Spencerf37ce992004-11-14 22:05:32 +0000108 break;
109
110 default:
111 break;
112 }
Reid Spencer8bb5fd12007-04-04 06:30:26 +0000113 return Unknown_FileType;
Reid Spencerf37ce992004-11-14 22:05:32 +0000114}
115
Reid Spencerccb23a12004-12-13 03:00:39 +0000116bool
117Path::isArchive() const {
Reid Spencerc7f08322005-07-07 18:21:42 +0000118 if (canRead())
Reid Spencerccb23a12004-12-13 03:00:39 +0000119 return hasMagicNumber("!<arch>\012");
120 return false;
121}
122
123bool
124Path::isDynamicLibrary() const {
Reid Spencer410aa022007-04-11 00:49:39 +0000125 if (canRead()) {
126 std::string Magic;
127 if (getMagicNumber(Magic, 64))
128 switch (IdentifyFileType(Magic.c_str(), Magic.length())) {
129 default: return false;
Reid Spencer947aa7d2007-04-11 02:02:09 +0000130 case Mach_O_FixedVirtualMemorySharedLib_FileType:
131 case Mach_O_DynamicallyLinkedSharedLib_FileType:
132 case Mach_O_DynamicallyLinkedSharedLibStub_FileType:
133 case ELF_SharedObject_FileType:
Reid Spencer410aa022007-04-11 00:49:39 +0000134 case COFF_FileType: return true;
135 }
136 }
Reid Spencerccb23a12004-12-13 03:00:39 +0000137 return false;
138}
139
140Path
141Path::FindLibrary(std::string& name) {
142 std::vector<sys::Path> LibPaths;
143 GetSystemLibraryPaths(LibPaths);
144 for (unsigned i = 0; i < LibPaths.size(); ++i) {
145 sys::Path FullPath(LibPaths[i]);
Reid Spencerdd04df02005-07-07 23:21:43 +0000146 FullPath.appendComponent("lib" + name + LTDL_SHLIB_EXT);
Reid Spencerccb23a12004-12-13 03:00:39 +0000147 if (FullPath.isDynamicLibrary())
148 return FullPath;
Reid Spencerdd04df02005-07-07 23:21:43 +0000149 FullPath.eraseSuffix();
Reid Spencerccb23a12004-12-13 03:00:39 +0000150 FullPath.appendSuffix("a");
151 if (FullPath.isArchive())
152 return FullPath;
153 }
154 return sys::Path();
155}
156
Chris Lattnerc67dc452006-07-07 18:11:32 +0000157std::string Path::GetDLLSuffix() {
Reid Spencer79fc9242004-12-13 18:41:28 +0000158 return LTDL_SHLIB_EXT;
159}
160
Reid Spencerb89a2232004-08-25 06:20:07 +0000161// Include the truly platform-specific parts of this class.
Reid Spencerdafe55f2004-12-24 06:29:17 +0000162#if defined(LLVM_ON_UNIX)
Reid Spencerbccc8ab2005-01-09 23:29:00 +0000163#include "Unix/Path.inc"
Reid Spencerdafe55f2004-12-24 06:29:17 +0000164#endif
165#if defined(LLVM_ON_WIN32)
Reid Spencerbccc8ab2005-01-09 23:29:00 +0000166#include "Win32/Path.inc"
Reid Spencerdafe55f2004-12-24 06:29:17 +0000167#endif
Reid Spencer23dd3322006-07-26 16:55:39 +0000168
169DEFINING_FILE_FOR(SystemPath)