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]) {
|
|
|
|
case 'l':
|
|
|
|
if (magic[1] == 'l' && magic[2] == 'v') {
|
|
|
|
if (magic[3] == 'c')
|
|
|
|
return CompressedBytecodeFileType;
|
|
|
|
else if (magic[3] == 'm')
|
|
|
|
return BytecodeFileType;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '!':
|
|
|
|
if (length >= 8) {
|
|
|
|
if (memcmp(magic,"!<arch>\n",8) == 0)
|
|
|
|
return ArchiveFileType;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return UnknownFileType;
|
|
|
|
}
|
|
|
|
|
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 {
|
2005-07-07 18:21:42 +00:00
|
|
|
if (canRead())
|
2004-12-13 03:00:39 +00:00
|
|
|
return hasMagicNumber("\177ELF");
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
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
|