1 //===-- Path.cpp - Implement OS Path Concept --------------------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This header file implements the operating system Path concept. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "llvm/Support/Path.h" 15 #include "llvm/Config/config.h" 16 #include "llvm/Support/Endian.h" 17 #include "llvm/Support/FileSystem.h" 18 #include "llvm/Support/PathV1.h" 19 #include <cassert> 20 #include <cstring> 21 #include <ostream> 22 using namespace llvm; 23 using namespace sys; 24 namespace { 25 using support::ulittle32_t; 26 } 27 28 //===----------------------------------------------------------------------===// 29 //=== WARNING: Implementation here must contain only TRULY operating system 30 //=== independent code. 31 //===----------------------------------------------------------------------===// 32 33 bool Path::operator==(const Path &that) const { 34 return path == that.path; 35 } 36 37 bool Path::operator<(const Path& that) const { 38 return path < that.path; 39 } 40 41 bool 42 Path::isArchive() const { 43 fs::file_magic type; 44 if (fs::identify_magic(str(), type)) 45 return false; 46 return type == fs::file_magic::archive; 47 } 48 49 bool 50 Path::isDynamicLibrary() const { 51 fs::file_magic type; 52 if (fs::identify_magic(str(), type)) 53 return false; 54 switch (type) { 55 default: return false; 56 case fs::file_magic::macho_fixed_virtual_memory_shared_lib: 57 case fs::file_magic::macho_dynamically_linked_shared_lib: 58 case fs::file_magic::macho_dynamically_linked_shared_lib_stub: 59 case fs::file_magic::elf_shared_object: 60 case fs::file_magic::pecoff_executable: return true; 61 } 62 } 63 64 void 65 Path::appendSuffix(StringRef suffix) { 66 if (!suffix.empty()) { 67 path.append("."); 68 path.append(suffix); 69 } 70 } 71 72 // Include the truly platform-specific parts of this class. 73 #if defined(LLVM_ON_UNIX) 74 #include "Unix/Path.inc" 75 #endif 76 #if defined(LLVM_ON_WIN32) 77 #include "Windows/Path.inc" 78 #endif 79