clang  3.7.0
Public Member Functions | Static Public Member Functions | List of all members
clang::FileManager Class Reference

Implements support for file system lookup, file system caching, and directory search management. More...

#include <FileManager.h>

Inheritance diagram for clang::FileManager:
[legend]
Collaboration diagram for clang::FileManager:
[legend]

Public Member Functions

 FileManager (const FileSystemOptions &FileSystemOpts, IntrusiveRefCntPtr< vfs::FileSystem > FS=nullptr)
 
 ~FileManager ()
 
void addStatCache (std::unique_ptr< FileSystemStatCache > statCache, bool AtBeginning=false)
 Installs the provided FileSystemStatCache object within the FileManager. More...
 
void removeStatCache (FileSystemStatCache *statCache)
 Removes the specified FileSystemStatCache object from the manager. More...
 
void clearStatCaches ()
 Removes all FileSystemStatCache objects from the manager. More...
 
const DirectoryEntrygetDirectory (StringRef DirName, bool CacheFailure=true)
 Lookup, cache, and verify the specified directory (real or virtual). More...
 
const FileEntrygetFile (StringRef Filename, bool OpenFile=false, bool CacheFailure=true)
 Lookup, cache, and verify the specified file (real or virtual). More...
 
const FileSystemOptionsgetFileSystemOptions ()
 Returns the current file system options. More...
 
IntrusiveRefCntPtr
< vfs::FileSystem
getVirtualFileSystem () const
 
const FileEntrygetVirtualFile (StringRef Filename, off_t Size, time_t ModificationTime)
 Retrieve a file entry for a "virtual" file that acts as if there were a file with the given name on disk. More...
 
llvm::ErrorOr< std::unique_ptr
< llvm::MemoryBuffer > > 
getBufferForFile (const FileEntry *Entry, bool isVolatile=false, bool ShouldCloseOpenFile=true)
 Open the specified file as a MemoryBuffer, returning a new MemoryBuffer if successful, otherwise returning null. More...
 
llvm::ErrorOr< std::unique_ptr
< llvm::MemoryBuffer > > 
getBufferForFile (StringRef Filename)
 
bool getNoncachedStatValue (StringRef Path, vfs::Status &Result)
 Get the 'stat' information for the given Path. More...
 
void invalidateCache (const FileEntry *Entry)
 Remove the real file Entry from the cache. More...
 
void FixupRelativePath (SmallVectorImpl< char > &path) const
 If path is not absolute and FileSystemOptions set the working directory, the path is modified to be relative to the given working directory. More...
 
void GetUniqueIDMapping (SmallVectorImpl< const FileEntry * > &UIDToFiles) const
 Produce an array mapping from the unique IDs assigned to each file to the corresponding FileEntry pointer. More...
 
StringRef getCanonicalName (const DirectoryEntry *Dir)
 Retrieve the canonical name for a given directory. More...
 
void PrintStats () const
 

Static Public Member Functions

static void modifyFileEntry (FileEntry *File, off_t Size, time_t ModificationTime)
 Modifies the size and modification time of a previously created FileEntry. Use with caution. More...
 
static bool removeDotPaths (SmallVectorImpl< char > &Path)
 Remove any './' components from a path. More...
 

Detailed Description

Implements support for file system lookup, file system caching, and directory search management.

This also handles more advanced properties, such as uniquing files based on "inode", so that a file with two names (e.g. symlinked) will be treated as a single file.

Definition at line 115 of file FileManager.h.

Constructor & Destructor Documentation

FileManager::FileManager ( const FileSystemOptions FileSystemOpts,
IntrusiveRefCntPtr< vfs::FileSystem FS = nullptr 
)

Definition at line 48 of file FileManager.cpp.

References clang::vfs::getRealFileSystem().

FileManager::~FileManager ( )

Definition at line 61 of file FileManager.cpp.

Member Function Documentation

void FileManager::addStatCache ( std::unique_ptr< FileSystemStatCache statCache,
bool  AtBeginning = false 
)

Installs the provided FileSystemStatCache object within the FileManager.

Ownership of this object is transferred to the FileManager.

Parameters
statCachethe new stat cache to install. Ownership of this object is transferred to the FileManager.
AtBeginningwhether this new stat cache must be installed at the beginning of the chain of stat caches. Otherwise, it will be added to the end of the chain.

Definition at line 68 of file FileManager.cpp.

References clang::FileSystemStatCache::getNextStatCache(), and clang::FileSystemStatCache::setNextStatCache().

Referenced by clang::CacheTokens(), and clang::Preprocessor::setPTHManager().

void FileManager::clearStatCaches ( )

Removes all FileSystemStatCache objects from the manager.

Definition at line 103 of file FileManager.cpp.

Referenced by clang::tooling::FrontendActionFactory::runInvocation().

void FileManager::FixupRelativePath ( SmallVectorImpl< char > &  path) const

If path is not absolute and FileSystemOptions set the working directory, the path is modified to be relative to the given working directory.

Definition at line 392 of file FileManager.cpp.

References clang::FileSystemOptions::WorkingDir.

Referenced by getBufferForFile(), and getNoncachedStatValue().

llvm::ErrorOr< std::unique_ptr< llvm::MemoryBuffer > > FileManager::getBufferForFile ( const FileEntry Entry,
bool  isVolatile = false,
bool  ShouldCloseOpenFile = true 
)
llvm::ErrorOr< std::unique_ptr< llvm::MemoryBuffer > > FileManager::getBufferForFile ( StringRef  Filename)

Definition at line 439 of file FileManager.cpp.

References FixupRelativePath(), and clang::FileSystemOptions::WorkingDir.

StringRef FileManager::getCanonicalName ( const DirectoryEntry Dir)

Retrieve the canonical name for a given directory.

This is a very expensive operation, despite its results being cached, and should only be used when the physical layout of the file system is required, which is (almost) never.

Definition at line 548 of file FileManager.cpp.

References clang::DirectoryEntry::getName(), and removeDotPaths().

Referenced by clang::HeaderSearch::getModuleFileName(), and getTopFrameworkDir().

const DirectoryEntry * FileManager::getDirectory ( StringRef  DirName,
bool  CacheFailure = true 
)
const FileEntry * FileManager::getFile ( StringRef  Filename,
bool  OpenFile = false,
bool  CacheFailure = true 
)

Lookup, cache, and verify the specified file (real or virtual).

This returns NULL if the file doesn't exist.

Parameters
OpenFileif true and the file exists, it will be opened.
CacheFailureIf true and the file does not exist, we'll cache the failure to find this file.

Definition at line 217 of file FileManager.cpp.

References getDirectoryFromFile(), clang::FileData::InPCH, clang::FileData::IsNamedPipe, clang::FileEntry::isValid(), clang::FileData::IsVFSMapped, clang::FileData::ModTime, clang::FileData::Name, NON_EXISTENT_FILE, clang::FileData::Size, and clang::FileData::UniqueID.

Referenced by clang::tooling::Replacement::apply(), clang::FrontendAction::BeginSourceFile(), clang::GenerateModuleAction::BeginSourceFileAction(), collectModuleHeaderIncludes(), clang::BackendConsumer::EmitOptimizationMessage(), EnableCodeCompletion(), clang::serialization::reader::HeaderFileInfoTrait::EqualKey(), getFileAndSuggestModule(), getPrivateModuleMap(), clang::Module::getTopHeaders(), clang::Preprocessor::HandleEndOfFile(), clang::ASTImporter::Import(), inferFrameworkLink(), InitializeFileRemapping(), clang::CompilerInstance::InitializeSourceManager(), clang::CompilerInstance::loadModuleFile(), clang::serialization::ModuleManager::lookup(), clang::serialization::ModuleManager::lookupBuffer(), clang::HeaderMap::LookupFile(), clang::DirectoryLookup::LookupFile(), clang::HeaderSearch::LookupFile(), clang::serialization::ModuleManager::lookupModuleFile(), clang::HeaderSearch::lookupModuleMapFile(), clang::HeaderSearch::LookupSubframeworkHeader(), clang::serialization::reader::HeaderFileInfoTrait::ReadData(), and clang::GlobalModuleIndex::writeIndex().

const FileSystemOptions& clang::FileManager::getFileSystemOptions ( )
inline

Returns the current file system options.

Definition at line 221 of file FileManager.h.

bool FileManager::getNoncachedStatValue ( StringRef  Path,
vfs::Status Result 
)

Get the 'stat' information for the given Path.

If the path is relative, it will be resolved against the WorkingDir of the FileManager's FileSystemOptions.

Returns
false on success, true on error.

Definition at line 467 of file FileManager.cpp.

References FixupRelativePath(), and S.

Referenced by clang::serialization::ModuleManager::addModule().

void FileManager::GetUniqueIDMapping ( SmallVectorImpl< const FileEntry * > &  UIDToFiles) const

Produce an array mapping from the unique IDs assigned to each file to the corresponding FileEntry pointer.

Definition at line 491 of file FileManager.cpp.

References NON_EXISTENT_FILE.

const FileEntry * FileManager::getVirtualFile ( StringRef  Filename,
off_t  Size,
time_t  ModificationTime 
)
IntrusiveRefCntPtr<vfs::FileSystem> clang::FileManager::getVirtualFileSystem ( ) const
inline
void FileManager::invalidateCache ( const FileEntry Entry)

Remove the real file Entry from the cache.

Definition at line 479 of file FileManager.cpp.

References clang::FileEntry::getName(), and clang::FileEntry::getUniqueID().

Referenced by clang::serialization::ModuleManager::removeModules().

void FileManager::modifyFileEntry ( FileEntry File,
off_t  Size,
time_t  ModificationTime 
)
static

Modifies the size and modification time of a previously created FileEntry. Use with caution.

Definition at line 511 of file FileManager.cpp.

void FileManager::PrintStats ( ) const

Definition at line 576 of file FileManager.cpp.

Referenced by clang::CompilerInstance::ExecuteAction().

bool FileManager::removeDotPaths ( SmallVectorImpl< char > &  Path)
static

Remove any './' components from a path.

Remove '.' path components from the given absolute path.

Returns
true if any changes were made.

Definition at line 520 of file FileManager.cpp.

References AttributeLangSupport::C, and P.

Referenced by cleanPathForOutput(), and getCanonicalName().

void FileManager::removeStatCache ( FileSystemStatCache statCache)

The documentation for this class was generated from the following files: