2004-08-25 06:20:07 +00:00
|
|
|
//===-- Path.cpp - Implement OS Path Concept --------------------*- C++ -*-===//
|
2005-04-21 22:55:34 +00:00
|
|
|
//
|
2004-08-25 06:20:07 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2005-04-21 22:55:34 +00:00
|
|
|
// This file was developed by Reid Spencer and is distributed under the
|
2004-08-25 06:20:07 +00:00
|
|
|
// University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-04-21 22:55:34 +00:00
|
|
|
//
|
2004-08-25 06:20:07 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This header file implements the operating system Path concept.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2004-08-29 05:24:01 +00:00
|
|
|
|
2004-08-25 06:20:07 +00:00
|
|
|
#include "llvm/System/Path.h"
|
2004-12-13 18:41:28 +00:00
|
|
|
#include "llvm/Config/config.h"
|
2004-11-14 22:37:42 +00:00
|
|
|
#include <cassert>
|
2006-07-07 18:11:32 +00:00
|
|
|
#include <ostream>
|
|
|
|
using namespace llvm;
|
2004-08-29 05:24:01 +00:00
|
|
|
using namespace sys;
|
2004-08-25 06:20:07 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//=== WARNING: Implementation here must contain only TRULY operating system
|
2005-04-21 22:55:34 +00:00
|
|
|
//=== independent code.
|
2004-08-25 06:20:07 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-07-07 18:11:32 +00:00
|
|
|
std::ostream& llvm::operator<<(std::ostream &strm, const sys::Path &aPath) {
|
|
|
|
strm << aPath.toString();
|
|
|
|
return strm;
|
|
|
|
}
|
|
|
|
|
2004-12-15 01:50:13 +00:00
|
|
|
Path
|
|
|
|
Path::GetLLVMConfigDir() {
|
|
|
|
Path result;
|
2004-12-15 04:08:15 +00:00
|
|
|
#ifdef LLVM_ETCDIR
|
2005-07-07 23:21:43 +00:00
|
|
|
if (result.set(LLVM_ETCDIR))
|
2004-12-15 01:50:13 +00:00
|
|
|
return result;
|
2004-12-15 04:08:15 +00:00
|
|
|
#endif
|
2004-12-15 01:50:13 +00:00
|
|
|
return GetLLVMDefaultConfigDir();
|
|
|
|
}
|
|
|
|
|
2005-04-21 22:55:34 +00:00
|
|
|
LLVMFileType
|
2004-11-14 23:26:18 +00:00
|
|
|
sys::IdentifyFileType(const char*magic, unsigned length) {
|
2004-11-14 22:05:32 +00:00
|
|
|
assert(magic && "Invalid magic number string");
|
|
|
|
assert(length >=4 && "Invalid magic number length");
|
|
|
|
switch (magic[0]) {
|
2007-05-06 05:32:21 +00:00
|
|
|
case 'B':
|
|
|
|
if (magic[1] == 'C' && magic[2] == (char)0xC0 && magic[3] == (char)0xDE)
|
|
|
|
return Bitcode_FileType;
|
|
|
|
break;
|
2004-11-14 22:05:32 +00:00
|
|
|
case '!':
|
2007-04-04 06:30:26 +00:00
|
|
|
if (length >= 8)
|
2004-11-14 22:05:32 +00:00
|
|
|
if (memcmp(magic,"!<arch>\n",8) == 0)
|
2007-04-04 06:30:26 +00:00
|
|
|
return Archive_FileType;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '\177':
|
2007-05-03 18:15:56 +00:00
|
|
|
if (magic[1] == 'E' && magic[2] == 'L' && magic[3] == 'F') {
|
2007-04-11 02:02:09 +00:00
|
|
|
if (length >= 18 && magic[17] == 0)
|
|
|
|
switch (magic[16]) {
|
|
|
|
default: break;
|
|
|
|
case 1: return ELF_Relocatable_FileType;
|
|
|
|
case 2: return ELF_Executable_FileType;
|
|
|
|
case 3: return ELF_SharedObject_FileType;
|
|
|
|
case 4: return ELF_Core_FileType;
|
|
|
|
}
|
2007-05-03 18:15:56 +00:00
|
|
|
}
|
2007-04-04 06:30:26 +00:00
|
|
|
break;
|
|
|
|
|
2007-04-11 03:15:35 +00:00
|
|
|
case 0xCA:
|
2007-04-04 06:30:26 +00:00
|
|
|
// This is complicated by an overlap with Java class files.
|
|
|
|
// See the Mach-O section in /usr/share/file/magic for details.
|
2007-04-11 03:15:35 +00:00
|
|
|
if (magic[1] == char(0xFE) && magic[2] == char(0xBA) &&
|
|
|
|
magic[3] == char(0xBE)) {
|
|
|
|
return Mach_O_DynamicallyLinkedSharedLib_FileType;
|
|
|
|
|
|
|
|
// FIXME: How does this work?
|
2007-04-11 02:02:09 +00:00
|
|
|
if (length >= 14 && magic[13] == 0)
|
|
|
|
switch (magic[12]) {
|
|
|
|
default: break;
|
|
|
|
case 1: return Mach_O_Object_FileType;
|
|
|
|
case 2: return Mach_O_Executable_FileType;
|
|
|
|
case 3: return Mach_O_FixedVirtualMemorySharedLib_FileType;
|
|
|
|
case 4: return Mach_O_Core_FileType;
|
|
|
|
case 5: return Mach_O_PreloadExectuable_FileType;
|
|
|
|
case 6: return Mach_O_DynamicallyLinkedSharedLib_FileType;
|
|
|
|
case 7: return Mach_O_DynamicLinker_FileType;
|
|
|
|
case 8: return Mach_O_Bundle_FileType;
|
|
|
|
case 9: return Mach_O_DynamicallyLinkedSharedLibStub_FileType;
|
|
|
|
}
|
2007-04-11 03:15:35 +00:00
|
|
|
}
|
2007-04-04 06:30:26 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 0xF0: // PowerPC Windows
|
|
|
|
case 0x83: // Alpha 32-bit
|
|
|
|
case 0x84: // Alpha 64-bit
|
|
|
|
case 0x66: // MPS R4000 Windows
|
|
|
|
case 0x50: // mc68K
|
|
|
|
case 0x4c: // 80386 Windows
|
|
|
|
if (magic[1] == 0x01)
|
|
|
|
return COFF_FileType;
|
|
|
|
|
|
|
|
case 0x90: // PA-RISC Windows
|
|
|
|
case 0x68: // mc68K Windows
|
|
|
|
if (magic[1] == 0x02)
|
|
|
|
return COFF_FileType;
|
2004-11-14 22:05:32 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2007-04-04 06:30:26 +00:00
|
|
|
return Unknown_FileType;
|
2004-11-14 22:05:32 +00:00
|
|
|
}
|
|
|
|
|
2004-12-13 03:00:39 +00:00
|
|
|
bool
|
|
|
|
Path::isArchive() const {
|
2005-07-07 18:21:42 +00:00
|
|
|
if (canRead())
|
2004-12-13 03:00:39 +00:00
|
|
|
return hasMagicNumber("!<arch>\012");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
Path::isDynamicLibrary() const {
|
2007-04-11 00:49:39 +00:00
|
|
|
if (canRead()) {
|
|
|
|
std::string Magic;
|
|
|
|
if (getMagicNumber(Magic, 64))
|
|
|
|
switch (IdentifyFileType(Magic.c_str(), Magic.length())) {
|
|
|
|
default: return false;
|
2007-04-11 02:02:09 +00:00
|
|
|
case Mach_O_FixedVirtualMemorySharedLib_FileType:
|
|
|
|
case Mach_O_DynamicallyLinkedSharedLib_FileType:
|
|
|
|
case Mach_O_DynamicallyLinkedSharedLibStub_FileType:
|
|
|
|
case ELF_SharedObject_FileType:
|
2007-04-11 00:49:39 +00:00
|
|
|
case COFF_FileType: return true;
|
|
|
|
}
|
|
|
|
}
|
2004-12-13 03:00:39 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Path
|
|
|
|
Path::FindLibrary(std::string& name) {
|
|
|
|
std::vector<sys::Path> LibPaths;
|
|
|
|
GetSystemLibraryPaths(LibPaths);
|
|
|
|
for (unsigned i = 0; i < LibPaths.size(); ++i) {
|
|
|
|
sys::Path FullPath(LibPaths[i]);
|
2005-07-07 23:21:43 +00:00
|
|
|
FullPath.appendComponent("lib" + name + LTDL_SHLIB_EXT);
|
2004-12-13 03:00:39 +00:00
|
|
|
if (FullPath.isDynamicLibrary())
|
|
|
|
return FullPath;
|
2005-07-07 23:21:43 +00:00
|
|
|
FullPath.eraseSuffix();
|
2004-12-13 03:00:39 +00:00
|
|
|
FullPath.appendSuffix("a");
|
|
|
|
if (FullPath.isArchive())
|
|
|
|
return FullPath;
|
|
|
|
}
|
|
|
|
return sys::Path();
|
|
|
|
}
|
|
|
|
|
2006-07-07 18:11:32 +00:00
|
|
|
std::string Path::GetDLLSuffix() {
|
2004-12-13 18:41:28 +00:00
|
|
|
return LTDL_SHLIB_EXT;
|
|
|
|
}
|
|
|
|
|
2007-05-06 05:32:21 +00:00
|
|
|
bool
|
|
|
|
Path::isBitcodeFile() const {
|
|
|
|
std::string actualMagic;
|
|
|
|
if (!getMagicNumber(actualMagic, 4))
|
|
|
|
return false;
|
|
|
|
return actualMagic == "BC\xC0\xDE";
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Path::hasMagicNumber(const std::string &Magic) const {
|
|
|
|
std::string actualMagic;
|
|
|
|
if (getMagicNumber(actualMagic, Magic.size()))
|
|
|
|
return Magic == actualMagic;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2004-08-25 06:20:07 +00:00
|
|
|
// Include the truly platform-specific parts of this class.
|
2004-12-24 06:29:17 +00:00
|
|
|
#if defined(LLVM_ON_UNIX)
|
2005-01-09 23:29:00 +00:00
|
|
|
#include "Unix/Path.inc"
|
2004-12-24 06:29:17 +00:00
|
|
|
#endif
|
|
|
|
#if defined(LLVM_ON_WIN32)
|
2005-01-09 23:29:00 +00:00
|
|
|
#include "Win32/Path.inc"
|
2004-12-24 06:29:17 +00:00
|
|
|
#endif
|
2006-07-26 16:55:39 +00:00
|
|
|
|
|
|
|
DEFINING_FILE_FOR(SystemPath)
|