clang  3.9.0
Public Member Functions | List of all members
clang::vfs::InMemoryFileSystem Class Reference

An in-memory file system. More...

#include <VirtualFileSystem.h>

Inheritance diagram for clang::vfs::InMemoryFileSystem:
[legend]
Collaboration diagram for clang::vfs::InMemoryFileSystem:
[legend]

Public Member Functions

 InMemoryFileSystem (bool UseNormalizedPaths=true)
 
 ~InMemoryFileSystem () override
 
bool addFile (const Twine &Path, time_t ModificationTime, std::unique_ptr< llvm::MemoryBuffer > Buffer)
 Add a buffer to the VFS with a path. More...
 
bool addFileNoOwn (const Twine &Path, time_t ModificationTime, llvm::MemoryBuffer *Buffer)
 Add a buffer to the VFS with a path. More...
 
std::string toString () const
 
bool useNormalizedPaths () const
 Return true if this file system normalizes . and .. in paths. More...
 
llvm::ErrorOr< Statusstatus (const Twine &Path) override
 Get the status of the entry at Path, if one exists. More...
 
llvm::ErrorOr< std::unique_ptr
< File > > 
openFileForRead (const Twine &Path) override
 Get a File object for the file at Path, if one exists. More...
 
directory_iterator dir_begin (const Twine &Dir, std::error_code &EC) override
 Get a directory_iterator for Dir. More...
 
llvm::ErrorOr< std::string > getCurrentWorkingDirectory () const override
 Get the working directory of this file system. More...
 
std::error_code setCurrentWorkingDirectory (const Twine &Path) override
 Set the working directory. More...
 
- Public Member Functions inherited from clang::vfs::FileSystem
virtual ~FileSystem ()
 
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...
 
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...
 

Detailed Description

An in-memory file system.

Definition at line 287 of file VirtualFileSystem.h.

Constructor & Destructor Documentation

clang::vfs::InMemoryFileSystem::InMemoryFileSystem ( bool  UseNormalizedPaths = true)
explicit

Definition at line 495 of file VirtualFileSystem.cpp.

clang::vfs::InMemoryFileSystem::~InMemoryFileSystem ( )
override

Definition at line 502 of file VirtualFileSystem.cpp.

Member Function Documentation

bool clang::vfs::InMemoryFileSystem::addFile ( const Twine &  Path,
time_t  ModificationTime,
std::unique_ptr< llvm::MemoryBuffer >  Buffer 
)

Add a buffer to the VFS with a path.

The VFS owns the buffer.

Returns
true if the file was successfully added, false if the file already exists in the file system with different contents.

Definition at line 508 of file VirtualFileSystem.cpp.

References clang::vfs::detail::InMemoryDirectory::addChild(), clang::begin(), E, clang::end(), clang::vfs::detail::InMemoryDirectory::getChild(), clang::vfs::getNextVirtualUniqueID(), I, clang::vfs::FileSystem::makeAbsolute(), Node, and useNormalizedPaths().

Referenced by addFileNoOwn().

bool clang::vfs::InMemoryFileSystem::addFileNoOwn ( const Twine &  Path,
time_t  ModificationTime,
llvm::MemoryBuffer *  Buffer 
)

Add a buffer to the VFS with a path.

The VFS does not own the buffer.

Returns
true if the file was successfully added, false if the file already exists in the file system with different contents.

Definition at line 573 of file VirtualFileSystem.cpp.

References addFile().

directory_iterator clang::vfs::InMemoryFileSystem::dir_begin ( const Twine &  Dir,
std::error_code &  EC 
)
overridevirtual

Get a directory_iterator for Dir.

Note
The 'end' iterator is directory_iterator().

Implements clang::vfs::FileSystem.

Definition at line 664 of file VirtualFileSystem.cpp.

References clang::vfs::lookupInMemoryNode(), clang::format::make_error_code(), and Node.

llvm::ErrorOr<std::string> clang::vfs::InMemoryFileSystem::getCurrentWorkingDirectory ( ) const
inlineoverridevirtual

Get the working directory of this file system.

Implements clang::vfs::FileSystem.

Definition at line 313 of file VirtualFileSystem.h.

llvm::ErrorOr< std::unique_ptr< File > > clang::vfs::InMemoryFileSystem::openFileForRead ( const Twine &  Path)
overridevirtual

Get a File object for the file at Path, if one exists.

Implements clang::vfs::FileSystem.

Definition at line 626 of file VirtualFileSystem.cpp.

References clang::vfs::lookupInMemoryNode(), clang::format::make_error_code(), and Node.

std::error_code clang::vfs::InMemoryFileSystem::setCurrentWorkingDirectory ( const Twine &  Path)
overridevirtual

Set the working directory.

This will affect all following operations on this file system and may propagate down for nested file systems.

Implements clang::vfs::FileSystem.

Definition at line 679 of file VirtualFileSystem.cpp.

References clang::vfs::FileSystem::makeAbsolute(), and useNormalizedPaths().

llvm::ErrorOr< Status > clang::vfs::InMemoryFileSystem::status ( const Twine &  Path)
overridevirtual

Get the status of the entry at Path, if one exists.

Implements clang::vfs::FileSystem.

Definition at line 618 of file VirtualFileSystem.cpp.

References clang::vfs::lookupInMemoryNode(), and Node.

std::string clang::vfs::InMemoryFileSystem::toString ( ) const

Definition at line 504 of file VirtualFileSystem.cpp.

bool clang::vfs::InMemoryFileSystem::useNormalizedPaths ( ) const
inline

Return true if this file system normalizes . and .. in paths.

Definition at line 307 of file VirtualFileSystem.h.

Referenced by addFile(), clang::vfs::lookupInMemoryNode(), and setCurrentWorkingDirectory().


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