diff options
author | Ben Langmuir <blangmuir@apple.com> | 2014-02-27 23:27:54 +0000 |
---|---|---|
committer | Ben Langmuir <blangmuir@apple.com> | 2014-02-27 23:27:54 +0000 |
commit | 09e0d5c1bb206571b28c280632ca1476ae800570 (patch) | |
tree | 801b9afbefc0f609d45c0daf919d617d4f2c1a4d /clang/lib/Basic/VirtualFileSystem.cpp | |
parent | d6f9b83ae1a196df4090a10e7b1e9ef5e01f61c6 (diff) | |
download | bcm5719-llvm-09e0d5c1bb206571b28c280632ca1476ae800570.tar.gz bcm5719-llvm-09e0d5c1bb206571b28c280632ca1476ae800570.zip |
Honour 'use-external-names' in FileManager
Pass through the externally-visible names that we got from the VFS down
to FileManager, and test that this is the name showing up in __FILE__,
diagnostics, and debug information.
llvm-svn: 202442
Diffstat (limited to 'clang/lib/Basic/VirtualFileSystem.cpp')
-rw-r--r-- | clang/lib/Basic/VirtualFileSystem.cpp | 37 |
1 files changed, 29 insertions, 8 deletions
diff --git a/clang/lib/Basic/VirtualFileSystem.cpp b/clang/lib/Basic/VirtualFileSystem.cpp index f6d88c1860d..d4845e6f363 100644 --- a/clang/lib/Basic/VirtualFileSystem.cpp +++ b/clang/lib/Basic/VirtualFileSystem.cpp @@ -83,6 +83,7 @@ error_code FileSystem::getBufferForFile(const llvm::Twine &Name, /// \brief Wrapper around a raw file descriptor. class RealFile : public File { int FD; + Status S; friend class RealFileSystem; RealFile(int FD) : FD(FD) { assert(FD >= 0 && "Invalid or inactive file descriptor"); @@ -95,15 +96,21 @@ public: int64_t FileSize = -1, bool RequiresNullTerminator = true) LLVM_OVERRIDE; error_code close() LLVM_OVERRIDE; + void setName(StringRef Name) LLVM_OVERRIDE; }; RealFile::~RealFile() { close(); } ErrorOr<Status> RealFile::status() { assert(FD != -1 && "cannot stat closed file"); - file_status RealStatus; - if (error_code EC = sys::fs::status(FD, RealStatus)) - return EC; - return Status(RealStatus); + if (!S.isStatusKnown()) { + file_status RealStatus; + if (error_code EC = sys::fs::status(FD, RealStatus)) + return EC; + Status NewS(RealStatus); + NewS.setName(S.getName()); + S = llvm_move(NewS); + } + return S; } error_code RealFile::getBuffer(const Twine &Name, @@ -131,6 +138,10 @@ error_code RealFile::close() { return error_code::success(); } +void RealFile::setName(StringRef Name) { + S.setName(Name); +} + /// \brief The file system according to your operating system. class RealFileSystem : public FileSystem { public: @@ -154,6 +165,7 @@ error_code RealFileSystem::openFileForRead(const Twine &Name, if (error_code EC = sys::fs::openFileForRead(Name, FD)) return EC; Result.reset(new RealFile(FD)); + Result->setName(Name.str()); return error_code::success(); } @@ -267,7 +279,10 @@ public: UseName(UseName) {} StringRef getExternalContentsPath() const { return ExternalContentsPath; } /// \brief whether to use the external path as the name for this file. - NameKind useName() const { return UseName; } + bool useExternalName(bool GlobalUseExternalName) const { + return UseName == NK_NotSet ? GlobalUseExternalName + : (UseName == NK_External); + } static bool classof(const Entry *E) { return E->getKind() == EK_File; } }; @@ -770,8 +785,7 @@ ErrorOr<Status> VFSFromYAML::status(const Twine &Path) { if (FileEntry *F = dyn_cast<FileEntry>(*Result)) { ErrorOr<Status> S = ExternalFS->status(F->getExternalContentsPath()); assert(!S || S->getName() == F->getExternalContentsPath()); - if (S && (F->useName() == FileEntry::NK_Virtual || - (F->useName() == FileEntry::NK_NotSet && !UseExternalNames))) + if (S && !F->useExternalName(UseExternalNames)) S->setName(PathStr); return S; } else { // directory @@ -792,7 +806,14 @@ error_code VFSFromYAML::openFileForRead(const Twine &Path, if (!F) // FIXME: errc::not_a_file? return error_code(errc::invalid_argument, system_category()); - return ExternalFS->openFileForRead(F->getExternalContentsPath(), Result); + if (error_code EC = ExternalFS->openFileForRead(F->getExternalContentsPath(), + Result)) + return EC; + + if (!F->useExternalName(UseExternalNames)) + Result->setName(Path.str()); + + return error_code::success(); } IntrusiveRefCntPtr<FileSystem> |