clang
7.0.0
|
The virtual file system interface. More...
#include "clang/Basic/VirtualFileSystem.h"
Public Member Functions | |
virtual | ~FileSystem () |
virtual llvm::ErrorOr< Status > | status (const Twine &Path)=0 |
Get the status of the entry at Path , if one exists. More... | |
virtual llvm::ErrorOr< std::unique_ptr< File > > | openFileForRead (const Twine &Path)=0 |
Get a File object for the file at Path , if one exists. More... | |
llvm::ErrorOr< std::unique_ptr< llvm::MemoryBuffer > > | getBufferForFile (const Twine &Name, int64_t FileSize=-1, bool RequiresNullTerminator=true, bool IsVolatile=false) |
This is a convenience method that opens a file, gets its content and then closes the file. More... | |
virtual directory_iterator | dir_begin (const Twine &Dir, std::error_code &EC)=0 |
Get a directory_iterator for Dir . More... | |
virtual std::error_code | setCurrentWorkingDirectory (const Twine &Path)=0 |
Set the working directory. More... | |
virtual llvm::ErrorOr< std::string > | getCurrentWorkingDirectory () const =0 |
Get the working directory of this file system. More... | |
virtual std::error_code | getRealPath (const Twine &Path, SmallVectorImpl< char > &Output) const |
Gets real path of Path e.g. More... | |
bool | exists (const Twine &Path) |
Check whether a file exists. Provided for convenience. More... | |
std::error_code | makeAbsolute (SmallVectorImpl< char > &Path) const |
Make Path an absolute path. More... | |
The virtual file system interface.
Definition at line 222 of file VirtualFileSystem.h.
|
virtualdefault |
|
pure virtual |
Get a directory_iterator for Dir
.
Implemented in clang::vfs::InMemoryFileSystem, and clang::vfs::OverlayFileSystem.
Referenced by clang::FrontendAction::BeginSourceFile(), clang::HeaderSearch::collectAllModules(), and clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::getBiarchSibling().
bool FileSystem::exists | ( | const Twine & | Path | ) |
Check whether a file exists. Provided for convenience.
Definition at line 147 of file VirtualFileSystem.cpp.
References clang::vfs::Status::exists().
Referenced by clang::driver::toolchains::DarwinClang::AddCXXStdlibLibArgs(), clang::driver::toolchains::Linux::addLibCxxIncludePaths(), clang::driver::toolchains::Generic_GCC::addLibStdCXXIncludePaths(), clang::driver::toolchains::Linux::computeSysRoot(), clang::driver::tools::gnutools::Assembler::ConstructJob(), clang::driver::CudaInstallationDetector::CudaInstallationDetector(), DetectDistro(), findMipsAndroidMultilibs(), clang::driver::toolchains::FreeBSD::FreeBSD(), clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::getBiarchSibling(), clang::driver::ToolChain::getCompilerRT(), getMultiarchTriple(), clang::driver::toolchains::HexagonToolChain::HexagonToolChain(), clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::init(), clang::driver::tools::isUseSeparateSections(), and clang::driver::ToolChain::ToolChain().
ErrorOr< std::unique_ptr< MemoryBuffer > > FileSystem::getBufferForFile | ( | const Twine & | Name, |
int64_t | FileSize = -1 , |
||
bool | RequiresNullTerminator = true , |
||
bool | IsVolatile = false |
||
) |
This is a convenience method that opens a file, gets its content and then closes the file.
Definition at line 122 of file VirtualFileSystem.cpp.
Referenced by clang::driver::CudaInstallationDetector::CudaInstallationDetector(), DetectDistro(), and clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::getBiarchSibling().
|
pure virtual |
Get the working directory of this file system.
Implemented in clang::vfs::InMemoryFileSystem, and clang::vfs::OverlayFileSystem.
|
virtual |
Gets real path of Path
e.g.
collapse all . and .. patterns, resolve symlinks. For real file system, this uses llvm::sys::fs::real_path
. This returns errc::operation_not_permitted if not implemented by subclass.
Reimplemented in clang::vfs::InMemoryFileSystem, and clang::vfs::OverlayFileSystem.
Definition at line 142 of file VirtualFileSystem.cpp.
std::error_code FileSystem::makeAbsolute | ( | SmallVectorImpl< char > & | Path | ) | const |
Make Path an absolute path.
Makes Path absolute using the current directory if it is not already. An empty Path will result in the current directory.
/absolute/path => /absolute/path relative/../path => <current-directory>/relative/../path
Path | A path that is modified to be an absolute path. |
Definition at line 131 of file VirtualFileSystem.cpp.
Referenced by clang::vfs::InMemoryFileSystem::getRealPath(), clang::format::getStyle(), clang::vfs::lookupInMemoryNode(), and clang::vfs::InMemoryFileSystem::setCurrentWorkingDirectory().
|
pure virtual |
Get a File
object for the file at Path
, if one exists.
Implemented in clang::vfs::InMemoryFileSystem, and clang::vfs::OverlayFileSystem.
|
pure virtual |
Set the working directory.
This will affect all following operations on this file system and may propagate down for nested file systems.
Implemented in clang::vfs::InMemoryFileSystem, and clang::vfs::OverlayFileSystem.
|
pure virtual |
Get the status of the entry at Path
, if one exists.
Implemented in clang::vfs::InMemoryFileSystem, and clang::vfs::OverlayFileSystem.