1 //===- VirtualFileSystem.cpp - Virtual File System Layer ------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file implements the VirtualFileSystem interface.
11 //===----------------------------------------------------------------------===//
13 #include "llvm/Support/VirtualFileSystem.h"
14 #include "llvm/ADT/ArrayRef.h"
15 #include "llvm/ADT/DenseMap.h"
16 #include "llvm/ADT/IntrusiveRefCntPtr.h"
17 #include "llvm/ADT/None.h"
18 #include "llvm/ADT/Optional.h"
19 #include "llvm/ADT/STLExtras.h"
20 #include "llvm/ADT/SmallString.h"
21 #include "llvm/ADT/SmallVector.h"
22 #include "llvm/ADT/StringRef.h"
23 #include "llvm/ADT/StringSet.h"
24 #include "llvm/ADT/Twine.h"
25 #include "llvm/ADT/iterator_range.h"
26 #include "llvm/Config/llvm-config.h"
27 #include "llvm/Support/Casting.h"
28 #include "llvm/Support/Chrono.h"
29 #include "llvm/Support/Compiler.h"
30 #include "llvm/Support/Debug.h"
31 #include "llvm/Support/Errc.h"
32 #include "llvm/Support/ErrorHandling.h"
33 #include "llvm/Support/ErrorOr.h"
34 #include "llvm/Support/FileSystem.h"
35 #include "llvm/Support/MemoryBuffer.h"
36 #include "llvm/Support/Path.h"
37 #include "llvm/Support/Process.h"
38 #include "llvm/Support/SMLoc.h"
39 #include "llvm/Support/SourceMgr.h"
40 #include "llvm/Support/YAMLParser.h"
41 #include "llvm/Support/raw_ostream.h"
52 #include <system_error>
57 using namespace llvm::vfs
;
59 using llvm::sys::fs::file_t
;
60 using llvm::sys::fs::file_status
;
61 using llvm::sys::fs::file_type
;
62 using llvm::sys::fs::kInvalidFile
;
63 using llvm::sys::fs::perms
;
64 using llvm::sys::fs::UniqueID
;
66 Status::Status(const file_status
&Status
)
67 : UID(Status
.getUniqueID()), MTime(Status
.getLastModificationTime()),
68 User(Status
.getUser()), Group(Status
.getGroup()), Size(Status
.getSize()),
69 Type(Status
.type()), Perms(Status
.permissions()) {}
71 Status::Status(const Twine
&Name
, UniqueID UID
, sys::TimePoint
<> MTime
,
72 uint32_t User
, uint32_t Group
, uint64_t Size
, file_type Type
,
74 : Name(Name
.str()), UID(UID
), MTime(MTime
), User(User
), Group(Group
),
75 Size(Size
), Type(Type
), Perms(Perms
) {}
77 Status
Status::copyWithNewName(const Status
&In
, const Twine
&NewName
) {
78 return Status(NewName
, In
.getUniqueID(), In
.getLastModificationTime(),
79 In
.getUser(), In
.getGroup(), In
.getSize(), In
.getType(),
83 Status
Status::copyWithNewName(const file_status
&In
, const Twine
&NewName
) {
84 return Status(NewName
, In
.getUniqueID(), In
.getLastModificationTime(),
85 In
.getUser(), In
.getGroup(), In
.getSize(), In
.type(),
89 bool Status::equivalent(const Status
&Other
) const {
90 assert(isStatusKnown() && Other
.isStatusKnown());
91 return getUniqueID() == Other
.getUniqueID();
94 bool Status::isDirectory() const { return Type
== file_type::directory_file
; }
96 bool Status::isRegularFile() const { return Type
== file_type::regular_file
; }
98 bool Status::isOther() const {
99 return exists() && !isRegularFile() && !isDirectory() && !isSymlink();
102 bool Status::isSymlink() const { return Type
== file_type::symlink_file
; }
104 bool Status::isStatusKnown() const { return Type
!= file_type::status_error
; }
106 bool Status::exists() const {
107 return isStatusKnown() && Type
!= file_type::file_not_found
;
110 File::~File() = default;
112 FileSystem::~FileSystem() = default;
114 ErrorOr
<std::unique_ptr
<MemoryBuffer
>>
115 FileSystem::getBufferForFile(const llvm::Twine
&Name
, int64_t FileSize
,
116 bool RequiresNullTerminator
, bool IsVolatile
) {
117 auto F
= openFileForRead(Name
);
121 return (*F
)->getBuffer(Name
, FileSize
, RequiresNullTerminator
, IsVolatile
);
124 std::error_code
FileSystem::makeAbsolute(SmallVectorImpl
<char> &Path
) const {
125 if (llvm::sys::path::is_absolute(Path
))
128 auto WorkingDir
= getCurrentWorkingDirectory();
130 return WorkingDir
.getError();
132 llvm::sys::fs::make_absolute(WorkingDir
.get(), Path
);
136 std::error_code
FileSystem::getRealPath(const Twine
&Path
,
137 SmallVectorImpl
<char> &Output
) const {
138 return errc::operation_not_permitted
;
141 std::error_code
FileSystem::isLocal(const Twine
&Path
, bool &Result
) {
142 return errc::operation_not_permitted
;
145 bool FileSystem::exists(const Twine
&Path
) {
146 auto Status
= status(Path
);
147 return Status
&& Status
->exists();
151 static bool isTraversalComponent(StringRef Component
) {
152 return Component
.equals("..") || Component
.equals(".");
155 static bool pathHasTraversal(StringRef Path
) {
156 using namespace llvm::sys
;
158 for (StringRef Comp
: llvm::make_range(path::begin(Path
), path::end(Path
)))
159 if (isTraversalComponent(Comp
))
165 //===-----------------------------------------------------------------------===/
166 // RealFileSystem implementation
167 //===-----------------------------------------------------------------------===/
171 /// Wrapper around a raw file descriptor.
172 class RealFile
: public File
{
173 friend class RealFileSystem
;
177 std::string RealName
;
179 RealFile(file_t RawFD
, StringRef NewName
, StringRef NewRealPathName
)
180 : FD(RawFD
), S(NewName
, {}, {}, {}, {}, {},
181 llvm::sys::fs::file_type::status_error
, {}),
182 RealName(NewRealPathName
.str()) {
183 assert(FD
!= kInvalidFile
&& "Invalid or inactive file descriptor");
187 ~RealFile() override
;
189 ErrorOr
<Status
> status() override
;
190 ErrorOr
<std::string
> getName() override
;
191 ErrorOr
<std::unique_ptr
<MemoryBuffer
>> getBuffer(const Twine
&Name
,
193 bool RequiresNullTerminator
,
194 bool IsVolatile
) override
;
195 std::error_code
close() override
;
200 RealFile::~RealFile() { close(); }
202 ErrorOr
<Status
> RealFile::status() {
203 assert(FD
!= kInvalidFile
&& "cannot stat closed file");
204 if (!S
.isStatusKnown()) {
205 file_status RealStatus
;
206 if (std::error_code EC
= sys::fs::status(FD
, RealStatus
))
208 S
= Status::copyWithNewName(RealStatus
, S
.getName());
213 ErrorOr
<std::string
> RealFile::getName() {
214 return RealName
.empty() ? S
.getName().str() : RealName
;
217 ErrorOr
<std::unique_ptr
<MemoryBuffer
>>
218 RealFile::getBuffer(const Twine
&Name
, int64_t FileSize
,
219 bool RequiresNullTerminator
, bool IsVolatile
) {
220 assert(FD
!= kInvalidFile
&& "cannot get buffer for closed file");
221 return MemoryBuffer::getOpenFile(FD
, Name
, FileSize
, RequiresNullTerminator
,
225 std::error_code
RealFile::close() {
226 std::error_code EC
= sys::fs::closeFile(FD
);
233 /// A file system according to your operating system.
234 /// This may be linked to the process's working directory, or maintain its own.
236 /// Currently, its own working directory is emulated by storing the path and
237 /// sending absolute paths to llvm::sys::fs:: functions.
238 /// A more principled approach would be to push this down a level, modelling
239 /// the working dir as an llvm::sys::fs::WorkingDir or similar.
240 /// This would enable the use of openat()-style functions on some platforms.
241 class RealFileSystem
: public FileSystem
{
243 explicit RealFileSystem(bool LinkCWDToProcess
) {
244 if (!LinkCWDToProcess
) {
245 SmallString
<128> PWD
, RealPWD
;
246 if (llvm::sys::fs::current_path(PWD
))
247 return; // Awful, but nothing to do here.
248 if (llvm::sys::fs::real_path(PWD
, RealPWD
))
255 ErrorOr
<Status
> status(const Twine
&Path
) override
;
256 ErrorOr
<std::unique_ptr
<File
>> openFileForRead(const Twine
&Path
) override
;
257 directory_iterator
dir_begin(const Twine
&Dir
, std::error_code
&EC
) override
;
259 llvm::ErrorOr
<std::string
> getCurrentWorkingDirectory() const override
;
260 std::error_code
setCurrentWorkingDirectory(const Twine
&Path
) override
;
261 std::error_code
isLocal(const Twine
&Path
, bool &Result
) override
;
262 std::error_code
getRealPath(const Twine
&Path
,
263 SmallVectorImpl
<char> &Output
) const override
;
266 // If this FS has its own working dir, use it to make Path absolute.
267 // The returned twine is safe to use as long as both Storage and Path live.
268 Twine
adjustPath(const Twine
&Path
, SmallVectorImpl
<char> &Storage
) const {
271 Path
.toVector(Storage
);
272 sys::fs::make_absolute(WD
->Resolved
, Storage
);
276 struct WorkingDirectory
{
277 // The current working directory, without symlinks resolved. (echo $PWD).
278 SmallString
<128> Specified
;
279 // The current working directory, with links resolved. (readlink .).
280 SmallString
<128> Resolved
;
282 Optional
<WorkingDirectory
> WD
;
287 ErrorOr
<Status
> RealFileSystem::status(const Twine
&Path
) {
288 SmallString
<256> Storage
;
289 sys::fs::file_status RealStatus
;
290 if (std::error_code EC
=
291 sys::fs::status(adjustPath(Path
, Storage
), RealStatus
))
293 return Status::copyWithNewName(RealStatus
, Path
);
296 ErrorOr
<std::unique_ptr
<File
>>
297 RealFileSystem::openFileForRead(const Twine
&Name
) {
298 SmallString
<256> RealName
, Storage
;
299 Expected
<file_t
> FDOrErr
= sys::fs::openNativeFileForRead(
300 adjustPath(Name
, Storage
), sys::fs::OF_None
, &RealName
);
302 return errorToErrorCode(FDOrErr
.takeError());
303 return std::unique_ptr
<File
>(
304 new RealFile(*FDOrErr
, Name
.str(), RealName
.str()));
307 llvm::ErrorOr
<std::string
> RealFileSystem::getCurrentWorkingDirectory() const {
309 return std::string(WD
->Specified
.str());
311 SmallString
<128> Dir
;
312 if (std::error_code EC
= llvm::sys::fs::current_path(Dir
))
314 return std::string(Dir
.str());
317 std::error_code
RealFileSystem::setCurrentWorkingDirectory(const Twine
&Path
) {
319 return llvm::sys::fs::set_current_path(Path
);
321 SmallString
<128> Absolute
, Resolved
, Storage
;
322 adjustPath(Path
, Storage
).toVector(Absolute
);
324 if (auto Err
= llvm::sys::fs::is_directory(Absolute
, IsDir
))
327 return std::make_error_code(std::errc::not_a_directory
);
328 if (auto Err
= llvm::sys::fs::real_path(Absolute
, Resolved
))
330 WD
= {Absolute
, Resolved
};
331 return std::error_code();
334 std::error_code
RealFileSystem::isLocal(const Twine
&Path
, bool &Result
) {
335 SmallString
<256> Storage
;
336 return llvm::sys::fs::is_local(adjustPath(Path
, Storage
), Result
);
340 RealFileSystem::getRealPath(const Twine
&Path
,
341 SmallVectorImpl
<char> &Output
) const {
342 SmallString
<256> Storage
;
343 return llvm::sys::fs::real_path(adjustPath(Path
, Storage
), Output
);
346 IntrusiveRefCntPtr
<FileSystem
> vfs::getRealFileSystem() {
347 static IntrusiveRefCntPtr
<FileSystem
> FS(new RealFileSystem(true));
351 std::unique_ptr
<FileSystem
> vfs::createPhysicalFileSystem() {
352 return std::make_unique
<RealFileSystem
>(false);
357 class RealFSDirIter
: public llvm::vfs::detail::DirIterImpl
{
358 llvm::sys::fs::directory_iterator Iter
;
361 RealFSDirIter(const Twine
&Path
, std::error_code
&EC
) : Iter(Path
, EC
) {
362 if (Iter
!= llvm::sys::fs::directory_iterator())
363 CurrentEntry
= directory_entry(Iter
->path(), Iter
->type());
366 std::error_code
increment() override
{
369 CurrentEntry
= (Iter
== llvm::sys::fs::directory_iterator())
371 : directory_entry(Iter
->path(), Iter
->type());
378 directory_iterator
RealFileSystem::dir_begin(const Twine
&Dir
,
379 std::error_code
&EC
) {
380 SmallString
<128> Storage
;
381 return directory_iterator(
382 std::make_shared
<RealFSDirIter
>(adjustPath(Dir
, Storage
), EC
));
385 //===-----------------------------------------------------------------------===/
386 // OverlayFileSystem implementation
387 //===-----------------------------------------------------------------------===/
389 OverlayFileSystem::OverlayFileSystem(IntrusiveRefCntPtr
<FileSystem
> BaseFS
) {
390 FSList
.push_back(std::move(BaseFS
));
393 void OverlayFileSystem::pushOverlay(IntrusiveRefCntPtr
<FileSystem
> FS
) {
394 FSList
.push_back(FS
);
395 // Synchronize added file systems by duplicating the working directory from
396 // the first one in the list.
397 FS
->setCurrentWorkingDirectory(getCurrentWorkingDirectory().get());
400 ErrorOr
<Status
> OverlayFileSystem::status(const Twine
&Path
) {
401 // FIXME: handle symlinks that cross file systems
402 for (iterator I
= overlays_begin(), E
= overlays_end(); I
!= E
; ++I
) {
403 ErrorOr
<Status
> Status
= (*I
)->status(Path
);
404 if (Status
|| Status
.getError() != llvm::errc::no_such_file_or_directory
)
407 return make_error_code(llvm::errc::no_such_file_or_directory
);
410 ErrorOr
<std::unique_ptr
<File
>>
411 OverlayFileSystem::openFileForRead(const llvm::Twine
&Path
) {
412 // FIXME: handle symlinks that cross file systems
413 for (iterator I
= overlays_begin(), E
= overlays_end(); I
!= E
; ++I
) {
414 auto Result
= (*I
)->openFileForRead(Path
);
415 if (Result
|| Result
.getError() != llvm::errc::no_such_file_or_directory
)
418 return make_error_code(llvm::errc::no_such_file_or_directory
);
421 llvm::ErrorOr
<std::string
>
422 OverlayFileSystem::getCurrentWorkingDirectory() const {
423 // All file systems are synchronized, just take the first working directory.
424 return FSList
.front()->getCurrentWorkingDirectory();
428 OverlayFileSystem::setCurrentWorkingDirectory(const Twine
&Path
) {
429 for (auto &FS
: FSList
)
430 if (std::error_code EC
= FS
->setCurrentWorkingDirectory(Path
))
435 std::error_code
OverlayFileSystem::isLocal(const Twine
&Path
, bool &Result
) {
436 for (auto &FS
: FSList
)
437 if (FS
->exists(Path
))
438 return FS
->isLocal(Path
, Result
);
439 return errc::no_such_file_or_directory
;
443 OverlayFileSystem::getRealPath(const Twine
&Path
,
444 SmallVectorImpl
<char> &Output
) const {
445 for (auto &FS
: FSList
)
446 if (FS
->exists(Path
))
447 return FS
->getRealPath(Path
, Output
);
448 return errc::no_such_file_or_directory
;
451 llvm::vfs::detail::DirIterImpl::~DirIterImpl() = default;
455 /// Combines and deduplicates directory entries across multiple file systems.
456 class CombiningDirIterImpl
: public llvm::vfs::detail::DirIterImpl
{
457 using FileSystemPtr
= llvm::IntrusiveRefCntPtr
<llvm::vfs::FileSystem
>;
459 /// File systems to check for entries in. Processed in reverse order.
460 SmallVector
<FileSystemPtr
, 8> FSList
;
461 /// The directory iterator for the current filesystem.
462 directory_iterator CurrentDirIter
;
463 /// The path of the directory to iterate the entries of.
465 /// The set of names already returned as entries.
466 llvm::StringSet
<> SeenNames
;
468 /// Sets \c CurrentDirIter to an iterator of \c DirPath in the next file
469 /// system in the list, or leaves it as is (at its end position) if we've
470 /// already gone through them all.
471 std::error_code
incrementFS() {
472 while (!FSList
.empty()) {
474 CurrentDirIter
= FSList
.back()->dir_begin(DirPath
, EC
);
476 if (EC
&& EC
!= errc::no_such_file_or_directory
)
478 if (CurrentDirIter
!= directory_iterator())
484 std::error_code
incrementDirIter(bool IsFirstTime
) {
485 assert((IsFirstTime
|| CurrentDirIter
!= directory_iterator()) &&
486 "incrementing past end");
489 CurrentDirIter
.increment(EC
);
490 if (!EC
&& CurrentDirIter
== directory_iterator())
495 std::error_code
incrementImpl(bool IsFirstTime
) {
497 std::error_code EC
= incrementDirIter(IsFirstTime
);
498 if (EC
|| CurrentDirIter
== directory_iterator()) {
499 CurrentEntry
= directory_entry();
502 CurrentEntry
= *CurrentDirIter
;
503 StringRef Name
= llvm::sys::path::filename(CurrentEntry
.path());
504 if (SeenNames
.insert(Name
).second
)
505 return EC
; // name not seen before
507 llvm_unreachable("returned above");
511 CombiningDirIterImpl(ArrayRef
<FileSystemPtr
> FileSystems
, std::string Dir
,
513 : FSList(FileSystems
.begin(), FileSystems
.end()),
514 DirPath(std::move(Dir
)) {
515 if (!FSList
.empty()) {
516 CurrentDirIter
= FSList
.back()->dir_begin(DirPath
, EC
);
518 if (!EC
|| EC
== errc::no_such_file_or_directory
)
519 EC
= incrementImpl(true);
523 CombiningDirIterImpl(directory_iterator FirstIter
, FileSystemPtr Fallback
,
524 std::string FallbackDir
, std::error_code
&EC
)
525 : FSList({Fallback
}), CurrentDirIter(FirstIter
),
526 DirPath(std::move(FallbackDir
)) {
527 if (!EC
|| EC
== errc::no_such_file_or_directory
)
528 EC
= incrementImpl(true);
531 std::error_code
increment() override
{ return incrementImpl(false); }
536 directory_iterator
OverlayFileSystem::dir_begin(const Twine
&Dir
,
537 std::error_code
&EC
) {
538 return directory_iterator(
539 std::make_shared
<CombiningDirIterImpl
>(FSList
, Dir
.str(), EC
));
542 void ProxyFileSystem::anchor() {}
549 enum InMemoryNodeKind
{ IME_File
, IME_Directory
, IME_HardLink
};
551 /// The in memory file system is a tree of Nodes. Every node can either be a
552 /// file , hardlink or a directory.
554 InMemoryNodeKind Kind
;
555 std::string FileName
;
558 InMemoryNode(llvm::StringRef FileName
, InMemoryNodeKind Kind
)
559 : Kind(Kind
), FileName(std::string(llvm::sys::path::filename(FileName
))) {
561 virtual ~InMemoryNode() = default;
563 /// Get the filename of this node (the name without the directory part).
564 StringRef
getFileName() const { return FileName
; }
565 InMemoryNodeKind
getKind() const { return Kind
; }
566 virtual std::string
toString(unsigned Indent
) const = 0;
569 class InMemoryFile
: public InMemoryNode
{
571 std::unique_ptr
<llvm::MemoryBuffer
> Buffer
;
574 InMemoryFile(Status Stat
, std::unique_ptr
<llvm::MemoryBuffer
> Buffer
)
575 : InMemoryNode(Stat
.getName(), IME_File
), Stat(std::move(Stat
)),
576 Buffer(std::move(Buffer
)) {}
578 /// Return the \p Status for this node. \p RequestedName should be the name
579 /// through which the caller referred to this node. It will override
580 /// \p Status::Name in the return value, to mimic the behavior of \p RealFile.
581 Status
getStatus(const Twine
&RequestedName
) const {
582 return Status::copyWithNewName(Stat
, RequestedName
);
584 llvm::MemoryBuffer
*getBuffer() const { return Buffer
.get(); }
586 std::string
toString(unsigned Indent
) const override
{
587 return (std::string(Indent
, ' ') + Stat
.getName() + "\n").str();
590 static bool classof(const InMemoryNode
*N
) {
591 return N
->getKind() == IME_File
;
597 class InMemoryHardLink
: public InMemoryNode
{
598 const InMemoryFile
&ResolvedFile
;
601 InMemoryHardLink(StringRef Path
, const InMemoryFile
&ResolvedFile
)
602 : InMemoryNode(Path
, IME_HardLink
), ResolvedFile(ResolvedFile
) {}
603 const InMemoryFile
&getResolvedFile() const { return ResolvedFile
; }
605 std::string
toString(unsigned Indent
) const override
{
606 return std::string(Indent
, ' ') + "HardLink to -> " +
607 ResolvedFile
.toString(0);
610 static bool classof(const InMemoryNode
*N
) {
611 return N
->getKind() == IME_HardLink
;
615 /// Adapt a InMemoryFile for VFS' File interface. The goal is to make
616 /// \p InMemoryFileAdaptor mimic as much as possible the behavior of
618 class InMemoryFileAdaptor
: public File
{
619 const InMemoryFile
&Node
;
620 /// The name to use when returning a Status for this file.
621 std::string RequestedName
;
624 explicit InMemoryFileAdaptor(const InMemoryFile
&Node
,
625 std::string RequestedName
)
626 : Node(Node
), RequestedName(std::move(RequestedName
)) {}
628 llvm::ErrorOr
<Status
> status() override
{
629 return Node
.getStatus(RequestedName
);
632 llvm::ErrorOr
<std::unique_ptr
<llvm::MemoryBuffer
>>
633 getBuffer(const Twine
&Name
, int64_t FileSize
, bool RequiresNullTerminator
,
634 bool IsVolatile
) override
{
635 llvm::MemoryBuffer
*Buf
= Node
.getBuffer();
636 return llvm::MemoryBuffer::getMemBuffer(
637 Buf
->getBuffer(), Buf
->getBufferIdentifier(), RequiresNullTerminator
);
640 std::error_code
close() override
{ return {}; }
644 class InMemoryDirectory
: public InMemoryNode
{
646 llvm::StringMap
<std::unique_ptr
<InMemoryNode
>> Entries
;
649 InMemoryDirectory(Status Stat
)
650 : InMemoryNode(Stat
.getName(), IME_Directory
), Stat(std::move(Stat
)) {}
652 /// Return the \p Status for this node. \p RequestedName should be the name
653 /// through which the caller referred to this node. It will override
654 /// \p Status::Name in the return value, to mimic the behavior of \p RealFile.
655 Status
getStatus(const Twine
&RequestedName
) const {
656 return Status::copyWithNewName(Stat
, RequestedName
);
658 InMemoryNode
*getChild(StringRef Name
) {
659 auto I
= Entries
.find(Name
);
660 if (I
!= Entries
.end())
661 return I
->second
.get();
665 InMemoryNode
*addChild(StringRef Name
, std::unique_ptr
<InMemoryNode
> Child
) {
666 return Entries
.insert(make_pair(Name
, std::move(Child
)))
667 .first
->second
.get();
670 using const_iterator
= decltype(Entries
)::const_iterator
;
672 const_iterator
begin() const { return Entries
.begin(); }
673 const_iterator
end() const { return Entries
.end(); }
675 std::string
toString(unsigned Indent
) const override
{
677 (std::string(Indent
, ' ') + Stat
.getName() + "\n").str();
678 for (const auto &Entry
: Entries
)
679 Result
+= Entry
.second
->toString(Indent
+ 2);
683 static bool classof(const InMemoryNode
*N
) {
684 return N
->getKind() == IME_Directory
;
689 Status
getNodeStatus(const InMemoryNode
*Node
, const Twine
&RequestedName
) {
690 if (auto Dir
= dyn_cast
<detail::InMemoryDirectory
>(Node
))
691 return Dir
->getStatus(RequestedName
);
692 if (auto File
= dyn_cast
<detail::InMemoryFile
>(Node
))
693 return File
->getStatus(RequestedName
);
694 if (auto Link
= dyn_cast
<detail::InMemoryHardLink
>(Node
))
695 return Link
->getResolvedFile().getStatus(RequestedName
);
696 llvm_unreachable("Unknown node type");
699 } // namespace detail
701 InMemoryFileSystem::InMemoryFileSystem(bool UseNormalizedPaths
)
702 : Root(new detail::InMemoryDirectory(
703 Status("", getNextVirtualUniqueID(), llvm::sys::TimePoint
<>(), 0, 0,
704 0, llvm::sys::fs::file_type::directory_file
,
705 llvm::sys::fs::perms::all_all
))),
706 UseNormalizedPaths(UseNormalizedPaths
) {}
708 InMemoryFileSystem::~InMemoryFileSystem() = default;
710 std::string
InMemoryFileSystem::toString() const {
711 return Root
->toString(/*Indent=*/0);
714 bool InMemoryFileSystem::addFile(const Twine
&P
, time_t ModificationTime
,
715 std::unique_ptr
<llvm::MemoryBuffer
> Buffer
,
716 Optional
<uint32_t> User
,
717 Optional
<uint32_t> Group
,
718 Optional
<llvm::sys::fs::file_type
> Type
,
719 Optional
<llvm::sys::fs::perms
> Perms
,
720 const detail::InMemoryFile
*HardLinkTarget
) {
721 SmallString
<128> Path
;
724 // Fix up relative paths. This just prepends the current working directory.
725 std::error_code EC
= makeAbsolute(Path
);
729 if (useNormalizedPaths())
730 llvm::sys::path::remove_dots(Path
, /*remove_dot_dot=*/true);
735 detail::InMemoryDirectory
*Dir
= Root
.get();
736 auto I
= llvm::sys::path::begin(Path
), E
= sys::path::end(Path
);
737 const auto ResolvedUser
= User
.getValueOr(0);
738 const auto ResolvedGroup
= Group
.getValueOr(0);
739 const auto ResolvedType
= Type
.getValueOr(sys::fs::file_type::regular_file
);
740 const auto ResolvedPerms
= Perms
.getValueOr(sys::fs::all_all
);
741 assert(!(HardLinkTarget
&& Buffer
) && "HardLink cannot have a buffer");
742 // Any intermediate directories we create should be accessible by
743 // the owner, even if Perms says otherwise for the final path.
744 const auto NewDirectoryPerms
= ResolvedPerms
| sys::fs::owner_all
;
747 detail::InMemoryNode
*Node
= Dir
->getChild(Name
);
752 std::unique_ptr
<detail::InMemoryNode
> Child
;
754 Child
.reset(new detail::InMemoryHardLink(P
.str(), *HardLinkTarget
));
756 // Create a new file or directory.
757 Status
Stat(P
.str(), getNextVirtualUniqueID(),
758 llvm::sys::toTimePoint(ModificationTime
), ResolvedUser
,
759 ResolvedGroup
, Buffer
->getBufferSize(), ResolvedType
,
761 if (ResolvedType
== sys::fs::file_type::directory_file
) {
762 Child
.reset(new detail::InMemoryDirectory(std::move(Stat
)));
765 new detail::InMemoryFile(std::move(Stat
), std::move(Buffer
)));
768 Dir
->addChild(Name
, std::move(Child
));
772 // Create a new directory. Use the path up to here.
774 StringRef(Path
.str().begin(), Name
.end() - Path
.str().begin()),
775 getNextVirtualUniqueID(), llvm::sys::toTimePoint(ModificationTime
),
776 ResolvedUser
, ResolvedGroup
, 0, sys::fs::file_type::directory_file
,
778 Dir
= cast
<detail::InMemoryDirectory
>(Dir
->addChild(
779 Name
, std::make_unique
<detail::InMemoryDirectory
>(std::move(Stat
))));
783 if (auto *NewDir
= dyn_cast
<detail::InMemoryDirectory
>(Node
)) {
786 assert((isa
<detail::InMemoryFile
>(Node
) ||
787 isa
<detail::InMemoryHardLink
>(Node
)) &&
788 "Must be either file, hardlink or directory!");
790 // Trying to insert a directory in place of a file.
794 // Return false only if the new file is different from the existing one.
795 if (auto Link
= dyn_cast
<detail::InMemoryHardLink
>(Node
)) {
796 return Link
->getResolvedFile().getBuffer()->getBuffer() ==
799 return cast
<detail::InMemoryFile
>(Node
)->getBuffer()->getBuffer() ==
805 bool InMemoryFileSystem::addFile(const Twine
&P
, time_t ModificationTime
,
806 std::unique_ptr
<llvm::MemoryBuffer
> Buffer
,
807 Optional
<uint32_t> User
,
808 Optional
<uint32_t> Group
,
809 Optional
<llvm::sys::fs::file_type
> Type
,
810 Optional
<llvm::sys::fs::perms
> Perms
) {
811 return addFile(P
, ModificationTime
, std::move(Buffer
), User
, Group
, Type
,
812 Perms
, /*HardLinkTarget=*/nullptr);
815 bool InMemoryFileSystem::addFileNoOwn(const Twine
&P
, time_t ModificationTime
,
816 const llvm::MemoryBufferRef
&Buffer
,
817 Optional
<uint32_t> User
,
818 Optional
<uint32_t> Group
,
819 Optional
<llvm::sys::fs::file_type
> Type
,
820 Optional
<llvm::sys::fs::perms
> Perms
) {
821 return addFile(P
, ModificationTime
, llvm::MemoryBuffer::getMemBuffer(Buffer
),
822 std::move(User
), std::move(Group
), std::move(Type
),
826 static ErrorOr
<const detail::InMemoryNode
*>
827 lookupInMemoryNode(const InMemoryFileSystem
&FS
, detail::InMemoryDirectory
*Dir
,
829 SmallString
<128> Path
;
832 // Fix up relative paths. This just prepends the current working directory.
833 std::error_code EC
= FS
.makeAbsolute(Path
);
837 if (FS
.useNormalizedPaths())
838 llvm::sys::path::remove_dots(Path
, /*remove_dot_dot=*/true);
843 auto I
= llvm::sys::path::begin(Path
), E
= llvm::sys::path::end(Path
);
845 detail::InMemoryNode
*Node
= Dir
->getChild(*I
);
848 return errc::no_such_file_or_directory
;
850 // Return the file if it's at the end of the path.
851 if (auto File
= dyn_cast
<detail::InMemoryFile
>(Node
)) {
854 return errc::no_such_file_or_directory
;
857 // If Node is HardLink then return the resolved file.
858 if (auto File
= dyn_cast
<detail::InMemoryHardLink
>(Node
)) {
860 return &File
->getResolvedFile();
861 return errc::no_such_file_or_directory
;
863 // Traverse directories.
864 Dir
= cast
<detail::InMemoryDirectory
>(Node
);
870 bool InMemoryFileSystem::addHardLink(const Twine
&FromPath
,
871 const Twine
&ToPath
) {
872 auto FromNode
= lookupInMemoryNode(*this, Root
.get(), FromPath
);
873 auto ToNode
= lookupInMemoryNode(*this, Root
.get(), ToPath
);
874 // FromPath must not have been added before. ToPath must have been added
875 // before. Resolved ToPath must be a File.
876 if (!ToNode
|| FromNode
|| !isa
<detail::InMemoryFile
>(*ToNode
))
878 return this->addFile(FromPath
, 0, nullptr, None
, None
, None
, None
,
879 cast
<detail::InMemoryFile
>(*ToNode
));
882 llvm::ErrorOr
<Status
> InMemoryFileSystem::status(const Twine
&Path
) {
883 auto Node
= lookupInMemoryNode(*this, Root
.get(), Path
);
885 return detail::getNodeStatus(*Node
, Path
);
886 return Node
.getError();
889 llvm::ErrorOr
<std::unique_ptr
<File
>>
890 InMemoryFileSystem::openFileForRead(const Twine
&Path
) {
891 auto Node
= lookupInMemoryNode(*this, Root
.get(), Path
);
893 return Node
.getError();
895 // When we have a file provide a heap-allocated wrapper for the memory buffer
896 // to match the ownership semantics for File.
897 if (auto *F
= dyn_cast
<detail::InMemoryFile
>(*Node
))
898 return std::unique_ptr
<File
>(
899 new detail::InMemoryFileAdaptor(*F
, Path
.str()));
901 // FIXME: errc::not_a_file?
902 return make_error_code(llvm::errc::invalid_argument
);
907 /// Adaptor from InMemoryDir::iterator to directory_iterator.
908 class InMemoryDirIterator
: public llvm::vfs::detail::DirIterImpl
{
909 detail::InMemoryDirectory::const_iterator I
;
910 detail::InMemoryDirectory::const_iterator E
;
911 std::string RequestedDirName
;
913 void setCurrentEntry() {
915 SmallString
<256> Path(RequestedDirName
);
916 llvm::sys::path::append(Path
, I
->second
->getFileName());
917 sys::fs::file_type Type
= sys::fs::file_type::type_unknown
;
918 switch (I
->second
->getKind()) {
919 case detail::IME_File
:
920 case detail::IME_HardLink
:
921 Type
= sys::fs::file_type::regular_file
;
923 case detail::IME_Directory
:
924 Type
= sys::fs::file_type::directory_file
;
927 CurrentEntry
= directory_entry(std::string(Path
.str()), Type
);
929 // When we're at the end, make CurrentEntry invalid and DirIterImpl will
931 CurrentEntry
= directory_entry();
936 InMemoryDirIterator() = default;
938 explicit InMemoryDirIterator(const detail::InMemoryDirectory
&Dir
,
939 std::string RequestedDirName
)
940 : I(Dir
.begin()), E(Dir
.end()),
941 RequestedDirName(std::move(RequestedDirName
)) {
945 std::error_code
increment() override
{
954 directory_iterator
InMemoryFileSystem::dir_begin(const Twine
&Dir
,
955 std::error_code
&EC
) {
956 auto Node
= lookupInMemoryNode(*this, Root
.get(), Dir
);
958 EC
= Node
.getError();
959 return directory_iterator(std::make_shared
<InMemoryDirIterator
>());
962 if (auto *DirNode
= dyn_cast
<detail::InMemoryDirectory
>(*Node
))
963 return directory_iterator(
964 std::make_shared
<InMemoryDirIterator
>(*DirNode
, Dir
.str()));
966 EC
= make_error_code(llvm::errc::not_a_directory
);
967 return directory_iterator(std::make_shared
<InMemoryDirIterator
>());
970 std::error_code
InMemoryFileSystem::setCurrentWorkingDirectory(const Twine
&P
) {
971 SmallString
<128> Path
;
974 // Fix up relative paths. This just prepends the current working directory.
975 std::error_code EC
= makeAbsolute(Path
);
979 if (useNormalizedPaths())
980 llvm::sys::path::remove_dots(Path
, /*remove_dot_dot=*/true);
983 WorkingDirectory
= std::string(Path
.str());
988 InMemoryFileSystem::getRealPath(const Twine
&Path
,
989 SmallVectorImpl
<char> &Output
) const {
990 auto CWD
= getCurrentWorkingDirectory();
991 if (!CWD
|| CWD
->empty())
992 return errc::operation_not_permitted
;
993 Path
.toVector(Output
);
994 if (auto EC
= makeAbsolute(Output
))
996 llvm::sys::path::remove_dots(Output
, /*remove_dot_dot=*/true);
1000 std::error_code
InMemoryFileSystem::isLocal(const Twine
&Path
, bool &Result
) {
1008 //===-----------------------------------------------------------------------===/
1009 // RedirectingFileSystem implementation
1010 //===-----------------------------------------------------------------------===/
1014 static llvm::sys::path::Style
getExistingStyle(llvm::StringRef Path
) {
1015 // Detect the path style in use by checking the first separator.
1016 llvm::sys::path::Style style
= llvm::sys::path::Style::native
;
1017 const size_t n
= Path
.find_first_of("/\\");
1018 if (n
!= static_cast<size_t>(-1))
1019 style
= (Path
[n
] == '/') ? llvm::sys::path::Style::posix
1020 : llvm::sys::path::Style::windows
;
1024 /// Removes leading "./" as well as path components like ".." and ".".
1025 static llvm::SmallString
<256> canonicalize(llvm::StringRef Path
) {
1026 // First detect the path style in use by checking the first separator.
1027 llvm::sys::path::Style style
= getExistingStyle(Path
);
1029 // Now remove the dots. Explicitly specifying the path style prevents the
1030 // direction of the slashes from changing.
1031 llvm::SmallString
<256> result
=
1032 llvm::sys::path::remove_leading_dotslash(Path
, style
);
1033 llvm::sys::path::remove_dots(result
, /*remove_dot_dot=*/true, style
);
1037 } // anonymous namespace
1040 RedirectingFileSystem::RedirectingFileSystem(IntrusiveRefCntPtr
<FileSystem
> FS
)
1041 : ExternalFS(std::move(FS
)) {
1043 if (auto ExternalWorkingDirectory
=
1044 ExternalFS
->getCurrentWorkingDirectory()) {
1045 WorkingDirectory
= *ExternalWorkingDirectory
;
1049 /// Directory iterator implementation for \c RedirectingFileSystem's
1050 /// directory entries.
1051 class llvm::vfs::RedirectingFSDirIterImpl
1052 : public llvm::vfs::detail::DirIterImpl
{
1054 RedirectingFileSystem::DirectoryEntry::iterator Current
, End
;
1056 std::error_code
incrementImpl(bool IsFirstTime
) {
1057 assert((IsFirstTime
|| Current
!= End
) && "cannot iterate past end");
1060 if (Current
!= End
) {
1061 SmallString
<128> PathStr(Dir
);
1062 llvm::sys::path::append(PathStr
, (*Current
)->getName());
1063 sys::fs::file_type Type
= sys::fs::file_type::type_unknown
;
1064 switch ((*Current
)->getKind()) {
1065 case RedirectingFileSystem::EK_Directory
:
1067 case RedirectingFileSystem::EK_DirectoryRemap
:
1068 Type
= sys::fs::file_type::directory_file
;
1070 case RedirectingFileSystem::EK_File
:
1071 Type
= sys::fs::file_type::regular_file
;
1074 CurrentEntry
= directory_entry(std::string(PathStr
.str()), Type
);
1076 CurrentEntry
= directory_entry();
1082 RedirectingFSDirIterImpl(
1083 const Twine
&Path
, RedirectingFileSystem::DirectoryEntry::iterator Begin
,
1084 RedirectingFileSystem::DirectoryEntry::iterator End
, std::error_code
&EC
)
1085 : Dir(Path
.str()), Current(Begin
), End(End
) {
1086 EC
= incrementImpl(/*IsFirstTime=*/true);
1089 std::error_code
increment() override
{
1090 return incrementImpl(/*IsFirstTime=*/false);
1094 /// Directory iterator implementation for \c RedirectingFileSystem's
1095 /// directory remap entries that maps the paths reported by the external
1096 /// file system's directory iterator back to the virtual directory's path.
1097 class RedirectingFSDirRemapIterImpl
: public llvm::vfs::detail::DirIterImpl
{
1099 llvm::sys::path::Style DirStyle
;
1100 llvm::vfs::directory_iterator ExternalIter
;
1103 RedirectingFSDirRemapIterImpl(std::string DirPath
,
1104 llvm::vfs::directory_iterator ExtIter
)
1105 : Dir(std::move(DirPath
)), DirStyle(getExistingStyle(Dir
)),
1106 ExternalIter(ExtIter
) {
1107 if (ExternalIter
!= llvm::vfs::directory_iterator())
1111 void setCurrentEntry() {
1112 StringRef ExternalPath
= ExternalIter
->path();
1113 llvm::sys::path::Style ExternalStyle
= getExistingStyle(ExternalPath
);
1114 StringRef File
= llvm::sys::path::filename(ExternalPath
, ExternalStyle
);
1116 SmallString
<128> NewPath(Dir
);
1117 llvm::sys::path::append(NewPath
, DirStyle
, File
);
1119 CurrentEntry
= directory_entry(std::string(NewPath
), ExternalIter
->type());
1122 std::error_code
increment() override
{
1124 ExternalIter
.increment(EC
);
1125 if (!EC
&& ExternalIter
!= llvm::vfs::directory_iterator())
1128 CurrentEntry
= directory_entry();
1133 llvm::ErrorOr
<std::string
>
1134 RedirectingFileSystem::getCurrentWorkingDirectory() const {
1135 return WorkingDirectory
;
1139 RedirectingFileSystem::setCurrentWorkingDirectory(const Twine
&Path
) {
1140 // Don't change the working directory if the path doesn't exist.
1142 return errc::no_such_file_or_directory
;
1144 SmallString
<128> AbsolutePath
;
1145 Path
.toVector(AbsolutePath
);
1146 if (std::error_code EC
= makeAbsolute(AbsolutePath
))
1148 WorkingDirectory
= std::string(AbsolutePath
.str());
1152 std::error_code
RedirectingFileSystem::isLocal(const Twine
&Path_
,
1154 SmallString
<256> Path
;
1155 Path_
.toVector(Path
);
1157 if (std::error_code EC
= makeCanonical(Path
))
1160 return ExternalFS
->isLocal(Path
, Result
);
1163 std::error_code
RedirectingFileSystem::makeAbsolute(SmallVectorImpl
<char> &Path
) const {
1164 if (llvm::sys::path::is_absolute(Path
, llvm::sys::path::Style::posix
) ||
1165 llvm::sys::path::is_absolute(Path
, llvm::sys::path::Style::windows
))
1168 auto WorkingDir
= getCurrentWorkingDirectory();
1170 return WorkingDir
.getError();
1172 // We can't use sys::fs::make_absolute because that assumes the path style
1173 // is native and there is no way to override that. Since we know WorkingDir
1174 // is absolute, we can use it to determine which style we actually have and
1175 // append Path ourselves.
1176 sys::path::Style style
= sys::path::Style::windows
;
1177 if (sys::path::is_absolute(WorkingDir
.get(), sys::path::Style::posix
)) {
1178 style
= sys::path::Style::posix
;
1181 std::string Result
= WorkingDir
.get();
1182 StringRef
Dir(Result
);
1183 if (!Dir
.endswith(sys::path::get_separator(style
))) {
1184 Result
+= sys::path::get_separator(style
);
1186 Result
.append(Path
.data(), Path
.size());
1187 Path
.assign(Result
.begin(), Result
.end());
1192 directory_iterator
RedirectingFileSystem::dir_begin(const Twine
&Dir
,
1193 std::error_code
&EC
) {
1194 SmallString
<256> Path
;
1197 EC
= makeCanonical(Path
);
1201 ErrorOr
<RedirectingFileSystem::LookupResult
> Result
= lookupPath(Path
);
1203 EC
= Result
.getError();
1204 if (shouldFallBackToExternalFS(EC
))
1205 return ExternalFS
->dir_begin(Path
, EC
);
1209 // Use status to make sure the path exists and refers to a directory.
1210 ErrorOr
<Status
> S
= status(Path
, *Result
);
1212 if (shouldFallBackToExternalFS(S
.getError(), Result
->E
))
1213 return ExternalFS
->dir_begin(Dir
, EC
);
1217 if (!S
->isDirectory()) {
1218 EC
= std::error_code(static_cast<int>(errc::not_a_directory
),
1219 std::system_category());
1223 // Create the appropriate directory iterator based on whether we found a
1224 // DirectoryRemapEntry or DirectoryEntry.
1225 directory_iterator DirIter
;
1226 if (auto ExtRedirect
= Result
->getExternalRedirect()) {
1227 auto RE
= cast
<RedirectingFileSystem::RemapEntry
>(Result
->E
);
1228 DirIter
= ExternalFS
->dir_begin(*ExtRedirect
, EC
);
1230 if (!RE
->useExternalName(UseExternalNames
)) {
1231 // Update the paths in the results to use the virtual directory's path.
1233 directory_iterator(std::make_shared
<RedirectingFSDirRemapIterImpl
>(
1234 std::string(Path
), DirIter
));
1237 auto DE
= cast
<DirectoryEntry
>(Result
->E
);
1238 DirIter
= directory_iterator(std::make_shared
<RedirectingFSDirIterImpl
>(
1239 Path
, DE
->contents_begin(), DE
->contents_end(), EC
));
1242 if (!shouldUseExternalFS())
1244 return directory_iterator(std::make_shared
<CombiningDirIterImpl
>(
1245 DirIter
, ExternalFS
, std::string(Path
), EC
));
1248 void RedirectingFileSystem::setExternalContentsPrefixDir(StringRef PrefixDir
) {
1249 ExternalContentsPrefixDir
= PrefixDir
.str();
1252 StringRef
RedirectingFileSystem::getExternalContentsPrefixDir() const {
1253 return ExternalContentsPrefixDir
;
1256 void RedirectingFileSystem::setFallthrough(bool Fallthrough
) {
1257 IsFallthrough
= Fallthrough
;
1260 std::vector
<StringRef
> RedirectingFileSystem::getRoots() const {
1261 std::vector
<StringRef
> R
;
1262 for (const auto &Root
: Roots
)
1263 R
.push_back(Root
->getName());
1267 void RedirectingFileSystem::dump(raw_ostream
&OS
) const {
1268 for (const auto &Root
: Roots
)
1269 dumpEntry(OS
, Root
.get());
1272 void RedirectingFileSystem::dumpEntry(raw_ostream
&OS
,
1273 RedirectingFileSystem::Entry
*E
,
1274 int NumSpaces
) const {
1275 StringRef Name
= E
->getName();
1276 for (int i
= 0, e
= NumSpaces
; i
< e
; ++i
)
1278 OS
<< "'" << Name
.str().c_str() << "'"
1281 if (E
->getKind() == RedirectingFileSystem::EK_Directory
) {
1282 auto *DE
= dyn_cast
<RedirectingFileSystem::DirectoryEntry
>(E
);
1283 assert(DE
&& "Should be a directory");
1285 for (std::unique_ptr
<Entry
> &SubEntry
:
1286 llvm::make_range(DE
->contents_begin(), DE
->contents_end()))
1287 dumpEntry(OS
, SubEntry
.get(), NumSpaces
+ 2);
1291 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1292 LLVM_DUMP_METHOD
void RedirectingFileSystem::dump() const { dump(dbgs()); }
1295 /// A helper class to hold the common YAML parsing state.
1296 class llvm::vfs::RedirectingFileSystemParser
{
1297 yaml::Stream
&Stream
;
1299 void error(yaml::Node
*N
, const Twine
&Msg
) { Stream
.printError(N
, Msg
); }
1302 bool parseScalarString(yaml::Node
*N
, StringRef
&Result
,
1303 SmallVectorImpl
<char> &Storage
) {
1304 const auto *S
= dyn_cast
<yaml::ScalarNode
>(N
);
1307 error(N
, "expected string");
1310 Result
= S
->getValue(Storage
);
1315 bool parseScalarBool(yaml::Node
*N
, bool &Result
) {
1316 SmallString
<5> Storage
;
1318 if (!parseScalarString(N
, Value
, Storage
))
1321 if (Value
.equals_insensitive("true") || Value
.equals_insensitive("on") ||
1322 Value
.equals_insensitive("yes") || Value
== "1") {
1325 } else if (Value
.equals_insensitive("false") ||
1326 Value
.equals_insensitive("off") ||
1327 Value
.equals_insensitive("no") || Value
== "0") {
1332 error(N
, "expected boolean value");
1340 KeyStatus(bool Required
= false) : Required(Required
) {}
1343 using KeyStatusPair
= std::pair
<StringRef
, KeyStatus
>;
1346 bool checkDuplicateOrUnknownKey(yaml::Node
*KeyNode
, StringRef Key
,
1347 DenseMap
<StringRef
, KeyStatus
> &Keys
) {
1348 if (!Keys
.count(Key
)) {
1349 error(KeyNode
, "unknown key");
1352 KeyStatus
&S
= Keys
[Key
];
1354 error(KeyNode
, Twine("duplicate key '") + Key
+ "'");
1362 bool checkMissingKeys(yaml::Node
*Obj
, DenseMap
<StringRef
, KeyStatus
> &Keys
) {
1363 for (const auto &I
: Keys
) {
1364 if (I
.second
.Required
&& !I
.second
.Seen
) {
1365 error(Obj
, Twine("missing key '") + I
.first
+ "'");
1373 static RedirectingFileSystem::Entry
*
1374 lookupOrCreateEntry(RedirectingFileSystem
*FS
, StringRef Name
,
1375 RedirectingFileSystem::Entry
*ParentEntry
= nullptr) {
1376 if (!ParentEntry
) { // Look for a existent root
1377 for (const auto &Root
: FS
->Roots
) {
1378 if (Name
.equals(Root
->getName())) {
1379 ParentEntry
= Root
.get();
1383 } else { // Advance to the next component
1384 auto *DE
= dyn_cast
<RedirectingFileSystem::DirectoryEntry
>(ParentEntry
);
1385 for (std::unique_ptr
<RedirectingFileSystem::Entry
> &Content
:
1386 llvm::make_range(DE
->contents_begin(), DE
->contents_end())) {
1388 dyn_cast
<RedirectingFileSystem::DirectoryEntry
>(Content
.get());
1389 if (DirContent
&& Name
.equals(Content
->getName()))
1394 // ... or create a new one
1395 std::unique_ptr
<RedirectingFileSystem::Entry
> E
=
1396 std::make_unique
<RedirectingFileSystem::DirectoryEntry
>(
1397 Name
, Status("", getNextVirtualUniqueID(),
1398 std::chrono::system_clock::now(), 0, 0, 0,
1399 file_type::directory_file
, sys::fs::all_all
));
1401 if (!ParentEntry
) { // Add a new root to the overlay
1402 FS
->Roots
.push_back(std::move(E
));
1403 ParentEntry
= FS
->Roots
.back().get();
1407 auto *DE
= cast
<RedirectingFileSystem::DirectoryEntry
>(ParentEntry
);
1408 DE
->addContent(std::move(E
));
1409 return DE
->getLastContent();
1413 void uniqueOverlayTree(RedirectingFileSystem
*FS
,
1414 RedirectingFileSystem::Entry
*SrcE
,
1415 RedirectingFileSystem::Entry
*NewParentE
= nullptr) {
1416 StringRef Name
= SrcE
->getName();
1417 switch (SrcE
->getKind()) {
1418 case RedirectingFileSystem::EK_Directory
: {
1419 auto *DE
= cast
<RedirectingFileSystem::DirectoryEntry
>(SrcE
);
1420 // Empty directories could be present in the YAML as a way to
1421 // describe a file for a current directory after some of its subdir
1422 // is parsed. This only leads to redundant walks, ignore it.
1424 NewParentE
= lookupOrCreateEntry(FS
, Name
, NewParentE
);
1425 for (std::unique_ptr
<RedirectingFileSystem::Entry
> &SubEntry
:
1426 llvm::make_range(DE
->contents_begin(), DE
->contents_end()))
1427 uniqueOverlayTree(FS
, SubEntry
.get(), NewParentE
);
1430 case RedirectingFileSystem::EK_DirectoryRemap
: {
1431 assert(NewParentE
&& "Parent entry must exist");
1432 auto *DR
= cast
<RedirectingFileSystem::DirectoryRemapEntry
>(SrcE
);
1433 auto *DE
= cast
<RedirectingFileSystem::DirectoryEntry
>(NewParentE
);
1435 std::make_unique
<RedirectingFileSystem::DirectoryRemapEntry
>(
1436 Name
, DR
->getExternalContentsPath(), DR
->getUseName()));
1439 case RedirectingFileSystem::EK_File
: {
1440 assert(NewParentE
&& "Parent entry must exist");
1441 auto *FE
= cast
<RedirectingFileSystem::FileEntry
>(SrcE
);
1442 auto *DE
= cast
<RedirectingFileSystem::DirectoryEntry
>(NewParentE
);
1443 DE
->addContent(std::make_unique
<RedirectingFileSystem::FileEntry
>(
1444 Name
, FE
->getExternalContentsPath(), FE
->getUseName()));
1450 std::unique_ptr
<RedirectingFileSystem::Entry
>
1451 parseEntry(yaml::Node
*N
, RedirectingFileSystem
*FS
, bool IsRootEntry
) {
1452 auto *M
= dyn_cast
<yaml::MappingNode
>(N
);
1454 error(N
, "expected mapping node for file or directory entry");
1458 KeyStatusPair Fields
[] = {
1459 KeyStatusPair("name", true),
1460 KeyStatusPair("type", true),
1461 KeyStatusPair("contents", false),
1462 KeyStatusPair("external-contents", false),
1463 KeyStatusPair("use-external-name", false),
1466 DenseMap
<StringRef
, KeyStatus
> Keys(std::begin(Fields
), std::end(Fields
));
1468 enum { CF_NotSet
, CF_List
, CF_External
} ContentsField
= CF_NotSet
;
1469 std::vector
<std::unique_ptr
<RedirectingFileSystem::Entry
>>
1471 SmallString
<256> ExternalContentsPath
;
1472 SmallString
<256> Name
;
1473 yaml::Node
*NameValueNode
= nullptr;
1474 auto UseExternalName
= RedirectingFileSystem::NK_NotSet
;
1475 RedirectingFileSystem::EntryKind Kind
;
1477 for (auto &I
: *M
) {
1479 // Reuse the buffer for key and value, since we don't look at key after
1481 SmallString
<256> Buffer
;
1482 if (!parseScalarString(I
.getKey(), Key
, Buffer
))
1485 if (!checkDuplicateOrUnknownKey(I
.getKey(), Key
, Keys
))
1489 if (Key
== "name") {
1490 if (!parseScalarString(I
.getValue(), Value
, Buffer
))
1493 NameValueNode
= I
.getValue();
1494 // Guarantee that old YAML files containing paths with ".." and "."
1495 // are properly canonicalized before read into the VFS.
1496 Name
= canonicalize(Value
).str();
1497 } else if (Key
== "type") {
1498 if (!parseScalarString(I
.getValue(), Value
, Buffer
))
1500 if (Value
== "file")
1501 Kind
= RedirectingFileSystem::EK_File
;
1502 else if (Value
== "directory")
1503 Kind
= RedirectingFileSystem::EK_Directory
;
1504 else if (Value
== "directory-remap")
1505 Kind
= RedirectingFileSystem::EK_DirectoryRemap
;
1507 error(I
.getValue(), "unknown value for 'type'");
1510 } else if (Key
== "contents") {
1511 if (ContentsField
!= CF_NotSet
) {
1513 "entry already has 'contents' or 'external-contents'");
1516 ContentsField
= CF_List
;
1517 auto *Contents
= dyn_cast
<yaml::SequenceNode
>(I
.getValue());
1519 // FIXME: this is only for directories, what about files?
1520 error(I
.getValue(), "expected array");
1524 for (auto &I
: *Contents
) {
1525 if (std::unique_ptr
<RedirectingFileSystem::Entry
> E
=
1526 parseEntry(&I
, FS
, /*IsRootEntry*/ false))
1527 EntryArrayContents
.push_back(std::move(E
));
1531 } else if (Key
== "external-contents") {
1532 if (ContentsField
!= CF_NotSet
) {
1534 "entry already has 'contents' or 'external-contents'");
1537 ContentsField
= CF_External
;
1538 if (!parseScalarString(I
.getValue(), Value
, Buffer
))
1541 SmallString
<256> FullPath
;
1542 if (FS
->IsRelativeOverlay
) {
1543 FullPath
= FS
->getExternalContentsPrefixDir();
1544 assert(!FullPath
.empty() &&
1545 "External contents prefix directory must exist");
1546 llvm::sys::path::append(FullPath
, Value
);
1551 // Guarantee that old YAML files containing paths with ".." and "."
1552 // are properly canonicalized before read into the VFS.
1553 FullPath
= canonicalize(FullPath
);
1554 ExternalContentsPath
= FullPath
.str();
1555 } else if (Key
== "use-external-name") {
1557 if (!parseScalarBool(I
.getValue(), Val
))
1559 UseExternalName
= Val
? RedirectingFileSystem::NK_External
1560 : RedirectingFileSystem::NK_Virtual
;
1562 llvm_unreachable("key missing from Keys");
1566 if (Stream
.failed())
1569 // check for missing keys
1570 if (ContentsField
== CF_NotSet
) {
1571 error(N
, "missing key 'contents' or 'external-contents'");
1574 if (!checkMissingKeys(N
, Keys
))
1577 // check invalid configuration
1578 if (Kind
== RedirectingFileSystem::EK_Directory
&&
1579 UseExternalName
!= RedirectingFileSystem::NK_NotSet
) {
1580 error(N
, "'use-external-name' is not supported for 'directory' entries");
1584 if (Kind
== RedirectingFileSystem::EK_DirectoryRemap
&&
1585 ContentsField
== CF_List
) {
1586 error(N
, "'contents' is not supported for 'directory-remap' entries");
1590 sys::path::Style path_style
= sys::path::Style::native
;
1592 // VFS root entries may be in either Posix or Windows style. Figure out
1593 // which style we have, and use it consistently.
1594 if (sys::path::is_absolute(Name
, sys::path::Style::posix
)) {
1595 path_style
= sys::path::Style::posix
;
1596 } else if (sys::path::is_absolute(Name
, sys::path::Style::windows
)) {
1597 path_style
= sys::path::Style::windows
;
1599 assert(NameValueNode
&& "Name presence should be checked earlier");
1600 error(NameValueNode
,
1601 "entry with relative path at the root level is not discoverable");
1606 // Remove trailing slash(es), being careful not to remove the root path
1607 StringRef Trimmed
= Name
;
1608 size_t RootPathLen
= sys::path::root_path(Trimmed
, path_style
).size();
1609 while (Trimmed
.size() > RootPathLen
&&
1610 sys::path::is_separator(Trimmed
.back(), path_style
))
1611 Trimmed
= Trimmed
.slice(0, Trimmed
.size() - 1);
1613 // Get the last component
1614 StringRef LastComponent
= sys::path::filename(Trimmed
, path_style
);
1616 std::unique_ptr
<RedirectingFileSystem::Entry
> Result
;
1618 case RedirectingFileSystem::EK_File
:
1619 Result
= std::make_unique
<RedirectingFileSystem::FileEntry
>(
1620 LastComponent
, std::move(ExternalContentsPath
), UseExternalName
);
1622 case RedirectingFileSystem::EK_DirectoryRemap
:
1623 Result
= std::make_unique
<RedirectingFileSystem::DirectoryRemapEntry
>(
1624 LastComponent
, std::move(ExternalContentsPath
), UseExternalName
);
1626 case RedirectingFileSystem::EK_Directory
:
1627 Result
= std::make_unique
<RedirectingFileSystem::DirectoryEntry
>(
1628 LastComponent
, std::move(EntryArrayContents
),
1629 Status("", getNextVirtualUniqueID(), std::chrono::system_clock::now(),
1630 0, 0, 0, file_type::directory_file
, sys::fs::all_all
));
1634 StringRef Parent
= sys::path::parent_path(Trimmed
, path_style
);
1638 // if 'name' contains multiple components, create implicit directory entries
1639 for (sys::path::reverse_iterator I
= sys::path::rbegin(Parent
, path_style
),
1640 E
= sys::path::rend(Parent
);
1642 std::vector
<std::unique_ptr
<RedirectingFileSystem::Entry
>> Entries
;
1643 Entries
.push_back(std::move(Result
));
1644 Result
= std::make_unique
<RedirectingFileSystem::DirectoryEntry
>(
1645 *I
, std::move(Entries
),
1646 Status("", getNextVirtualUniqueID(), std::chrono::system_clock::now(),
1647 0, 0, 0, file_type::directory_file
, sys::fs::all_all
));
1653 RedirectingFileSystemParser(yaml::Stream
&S
) : Stream(S
) {}
1656 bool parse(yaml::Node
*Root
, RedirectingFileSystem
*FS
) {
1657 auto *Top
= dyn_cast
<yaml::MappingNode
>(Root
);
1659 error(Root
, "expected mapping node");
1663 KeyStatusPair Fields
[] = {
1664 KeyStatusPair("version", true),
1665 KeyStatusPair("case-sensitive", false),
1666 KeyStatusPair("use-external-names", false),
1667 KeyStatusPair("overlay-relative", false),
1668 KeyStatusPair("fallthrough", false),
1669 KeyStatusPair("roots", true),
1672 DenseMap
<StringRef
, KeyStatus
> Keys(std::begin(Fields
), std::end(Fields
));
1673 std::vector
<std::unique_ptr
<RedirectingFileSystem::Entry
>> RootEntries
;
1675 // Parse configuration and 'roots'
1676 for (auto &I
: *Top
) {
1677 SmallString
<10> KeyBuffer
;
1679 if (!parseScalarString(I
.getKey(), Key
, KeyBuffer
))
1682 if (!checkDuplicateOrUnknownKey(I
.getKey(), Key
, Keys
))
1685 if (Key
== "roots") {
1686 auto *Roots
= dyn_cast
<yaml::SequenceNode
>(I
.getValue());
1688 error(I
.getValue(), "expected array");
1692 for (auto &I
: *Roots
) {
1693 if (std::unique_ptr
<RedirectingFileSystem::Entry
> E
=
1694 parseEntry(&I
, FS
, /*IsRootEntry*/ true))
1695 RootEntries
.push_back(std::move(E
));
1699 } else if (Key
== "version") {
1700 StringRef VersionString
;
1701 SmallString
<4> Storage
;
1702 if (!parseScalarString(I
.getValue(), VersionString
, Storage
))
1705 if (VersionString
.getAsInteger
<int>(10, Version
)) {
1706 error(I
.getValue(), "expected integer");
1710 error(I
.getValue(), "invalid version number");
1714 error(I
.getValue(), "version mismatch, expected 0");
1717 } else if (Key
== "case-sensitive") {
1718 if (!parseScalarBool(I
.getValue(), FS
->CaseSensitive
))
1720 } else if (Key
== "overlay-relative") {
1721 if (!parseScalarBool(I
.getValue(), FS
->IsRelativeOverlay
))
1723 } else if (Key
== "use-external-names") {
1724 if (!parseScalarBool(I
.getValue(), FS
->UseExternalNames
))
1726 } else if (Key
== "fallthrough") {
1727 if (!parseScalarBool(I
.getValue(), FS
->IsFallthrough
))
1730 llvm_unreachable("key missing from Keys");
1734 if (Stream
.failed())
1737 if (!checkMissingKeys(Top
, Keys
))
1740 // Now that we sucessefully parsed the YAML file, canonicalize the internal
1741 // representation to a proper directory tree so that we can search faster
1743 for (auto &E
: RootEntries
)
1744 uniqueOverlayTree(FS
, E
.get());
1750 std::unique_ptr
<RedirectingFileSystem
>
1751 RedirectingFileSystem::create(std::unique_ptr
<MemoryBuffer
> Buffer
,
1752 SourceMgr::DiagHandlerTy DiagHandler
,
1753 StringRef YAMLFilePath
, void *DiagContext
,
1754 IntrusiveRefCntPtr
<FileSystem
> ExternalFS
) {
1756 yaml::Stream
Stream(Buffer
->getMemBufferRef(), SM
);
1758 SM
.setDiagHandler(DiagHandler
, DiagContext
);
1759 yaml::document_iterator DI
= Stream
.begin();
1760 yaml::Node
*Root
= DI
->getRoot();
1761 if (DI
== Stream
.end() || !Root
) {
1762 SM
.PrintMessage(SMLoc(), SourceMgr::DK_Error
, "expected root node");
1766 RedirectingFileSystemParser
P(Stream
);
1768 std::unique_ptr
<RedirectingFileSystem
> FS(
1769 new RedirectingFileSystem(ExternalFS
));
1771 if (!YAMLFilePath
.empty()) {
1772 // Use the YAML path from -ivfsoverlay to compute the dir to be prefixed
1773 // to each 'external-contents' path.
1776 // -ivfsoverlay dummy.cache/vfs/vfs.yaml
1778 // FS->ExternalContentsPrefixDir => /<absolute_path_to>/dummy.cache/vfs
1780 SmallString
<256> OverlayAbsDir
= sys::path::parent_path(YAMLFilePath
);
1781 std::error_code EC
= llvm::sys::fs::make_absolute(OverlayAbsDir
);
1782 assert(!EC
&& "Overlay dir final path must be absolute");
1784 FS
->setExternalContentsPrefixDir(OverlayAbsDir
);
1787 if (!P
.parse(Root
, FS
.get()))
1793 std::unique_ptr
<RedirectingFileSystem
> RedirectingFileSystem::create(
1794 ArrayRef
<std::pair
<std::string
, std::string
>> RemappedFiles
,
1795 bool UseExternalNames
, FileSystem
&ExternalFS
) {
1796 std::unique_ptr
<RedirectingFileSystem
> FS(
1797 new RedirectingFileSystem(&ExternalFS
));
1798 FS
->UseExternalNames
= UseExternalNames
;
1800 StringMap
<RedirectingFileSystem::Entry
*> Entries
;
1802 for (auto &Mapping
: llvm::reverse(RemappedFiles
)) {
1803 SmallString
<128> From
= StringRef(Mapping
.first
);
1804 SmallString
<128> To
= StringRef(Mapping
.second
);
1806 auto EC
= ExternalFS
.makeAbsolute(From
);
1808 assert(!EC
&& "Could not make absolute path");
1811 // Check if we've already mapped this file. The first one we see (in the
1812 // reverse iteration) wins.
1813 RedirectingFileSystem::Entry
*&ToEntry
= Entries
[From
];
1817 // Add parent directories.
1818 RedirectingFileSystem::Entry
*Parent
= nullptr;
1819 StringRef FromDirectory
= llvm::sys::path::parent_path(From
);
1820 for (auto I
= llvm::sys::path::begin(FromDirectory
),
1821 E
= llvm::sys::path::end(FromDirectory
);
1823 Parent
= RedirectingFileSystemParser::lookupOrCreateEntry(FS
.get(), *I
,
1826 assert(Parent
&& "File without a directory?");
1828 auto EC
= ExternalFS
.makeAbsolute(To
);
1830 assert(!EC
&& "Could not make absolute path");
1834 auto NewFile
= std::make_unique
<RedirectingFileSystem::FileEntry
>(
1835 llvm::sys::path::filename(From
), To
,
1836 UseExternalNames
? RedirectingFileSystem::NK_External
1837 : RedirectingFileSystem::NK_Virtual
);
1838 ToEntry
= NewFile
.get();
1839 cast
<RedirectingFileSystem::DirectoryEntry
>(Parent
)->addContent(
1840 std::move(NewFile
));
1846 RedirectingFileSystem::LookupResult::LookupResult(
1847 Entry
*E
, sys::path::const_iterator Start
, sys::path::const_iterator End
)
1849 assert(E
!= nullptr);
1850 // If the matched entry is a DirectoryRemapEntry, set ExternalRedirect to the
1851 // path of the directory it maps to in the external file system plus any
1852 // remaining path components in the provided iterator.
1853 if (auto *DRE
= dyn_cast
<RedirectingFileSystem::DirectoryRemapEntry
>(E
)) {
1854 SmallString
<256> Redirect(DRE
->getExternalContentsPath());
1855 sys::path::append(Redirect
, Start
, End
,
1856 getExistingStyle(DRE
->getExternalContentsPath()));
1857 ExternalRedirect
= std::string(Redirect
);
1861 bool RedirectingFileSystem::shouldFallBackToExternalFS(
1862 std::error_code EC
, RedirectingFileSystem::Entry
*E
) const {
1863 if (E
&& !isa
<RedirectingFileSystem::DirectoryRemapEntry
>(E
))
1865 return shouldUseExternalFS() && EC
== llvm::errc::no_such_file_or_directory
;
1869 RedirectingFileSystem::makeCanonical(SmallVectorImpl
<char> &Path
) const {
1870 if (std::error_code EC
= makeAbsolute(Path
))
1873 llvm::SmallString
<256> CanonicalPath
=
1874 canonicalize(StringRef(Path
.data(), Path
.size()));
1875 if (CanonicalPath
.empty())
1876 return make_error_code(llvm::errc::invalid_argument
);
1878 Path
.assign(CanonicalPath
.begin(), CanonicalPath
.end());
1882 ErrorOr
<RedirectingFileSystem::LookupResult
>
1883 RedirectingFileSystem::lookupPath(StringRef Path
) const {
1884 sys::path::const_iterator Start
= sys::path::begin(Path
);
1885 sys::path::const_iterator End
= sys::path::end(Path
);
1886 for (const auto &Root
: Roots
) {
1887 ErrorOr
<RedirectingFileSystem::LookupResult
> Result
=
1888 lookupPathImpl(Start
, End
, Root
.get());
1889 if (Result
|| Result
.getError() != llvm::errc::no_such_file_or_directory
)
1892 return make_error_code(llvm::errc::no_such_file_or_directory
);
1895 ErrorOr
<RedirectingFileSystem::LookupResult
>
1896 RedirectingFileSystem::lookupPathImpl(
1897 sys::path::const_iterator Start
, sys::path::const_iterator End
,
1898 RedirectingFileSystem::Entry
*From
) const {
1899 assert(!isTraversalComponent(*Start
) &&
1900 !isTraversalComponent(From
->getName()) &&
1901 "Paths should not contain traversal components");
1903 StringRef FromName
= From
->getName();
1905 // Forward the search to the next component in case this is an empty one.
1906 if (!FromName
.empty()) {
1907 if (!pathComponentMatches(*Start
, FromName
))
1908 return make_error_code(llvm::errc::no_such_file_or_directory
);
1914 return LookupResult(From
, Start
, End
);
1918 if (isa
<RedirectingFileSystem::FileEntry
>(From
))
1919 return make_error_code(llvm::errc::not_a_directory
);
1921 if (isa
<RedirectingFileSystem::DirectoryRemapEntry
>(From
))
1922 return LookupResult(From
, Start
, End
);
1924 auto *DE
= cast
<RedirectingFileSystem::DirectoryEntry
>(From
);
1925 for (const std::unique_ptr
<RedirectingFileSystem::Entry
> &DirEntry
:
1926 llvm::make_range(DE
->contents_begin(), DE
->contents_end())) {
1927 ErrorOr
<RedirectingFileSystem::LookupResult
> Result
=
1928 lookupPathImpl(Start
, End
, DirEntry
.get());
1929 if (Result
|| Result
.getError() != llvm::errc::no_such_file_or_directory
)
1933 return make_error_code(llvm::errc::no_such_file_or_directory
);
1936 static Status
getRedirectedFileStatus(const Twine
&Path
, bool UseExternalNames
,
1937 Status ExternalStatus
) {
1938 Status S
= ExternalStatus
;
1939 if (!UseExternalNames
)
1940 S
= Status::copyWithNewName(S
, Path
);
1941 S
.IsVFSMapped
= true;
1945 ErrorOr
<Status
> RedirectingFileSystem::status(
1946 const Twine
&Path
, const RedirectingFileSystem::LookupResult
&Result
) {
1947 if (Optional
<StringRef
> ExtRedirect
= Result
.getExternalRedirect()) {
1948 ErrorOr
<Status
> S
= ExternalFS
->status(*ExtRedirect
);
1951 auto *RE
= cast
<RedirectingFileSystem::RemapEntry
>(Result
.E
);
1952 return getRedirectedFileStatus(Path
, RE
->useExternalName(UseExternalNames
),
1956 auto *DE
= cast
<RedirectingFileSystem::DirectoryEntry
>(Result
.E
);
1957 return Status::copyWithNewName(DE
->getStatus(), Path
);
1960 ErrorOr
<Status
> RedirectingFileSystem::status(const Twine
&Path_
) {
1961 SmallString
<256> Path
;
1962 Path_
.toVector(Path
);
1964 if (std::error_code EC
= makeCanonical(Path
))
1967 ErrorOr
<RedirectingFileSystem::LookupResult
> Result
= lookupPath(Path
);
1969 if (shouldFallBackToExternalFS(Result
.getError()))
1970 return ExternalFS
->status(Path
);
1971 return Result
.getError();
1974 ErrorOr
<Status
> S
= status(Path
, *Result
);
1975 if (!S
&& shouldFallBackToExternalFS(S
.getError(), Result
->E
))
1976 S
= ExternalFS
->status(Path
);
1982 /// Provide a file wrapper with an overriden status.
1983 class FileWithFixedStatus
: public File
{
1984 std::unique_ptr
<File
> InnerFile
;
1988 FileWithFixedStatus(std::unique_ptr
<File
> InnerFile
, Status S
)
1989 : InnerFile(std::move(InnerFile
)), S(std::move(S
)) {}
1991 ErrorOr
<Status
> status() override
{ return S
; }
1992 ErrorOr
<std::unique_ptr
<llvm::MemoryBuffer
>>
1994 getBuffer(const Twine
&Name
, int64_t FileSize
, bool RequiresNullTerminator
,
1995 bool IsVolatile
) override
{
1996 return InnerFile
->getBuffer(Name
, FileSize
, RequiresNullTerminator
,
2000 std::error_code
close() override
{ return InnerFile
->close(); }
2005 ErrorOr
<std::unique_ptr
<File
>>
2006 RedirectingFileSystem::openFileForRead(const Twine
&Path_
) {
2007 SmallString
<256> Path
;
2008 Path_
.toVector(Path
);
2010 if (std::error_code EC
= makeCanonical(Path
))
2013 ErrorOr
<RedirectingFileSystem::LookupResult
> Result
= lookupPath(Path
);
2015 if (shouldFallBackToExternalFS(Result
.getError()))
2016 return ExternalFS
->openFileForRead(Path
);
2017 return Result
.getError();
2020 if (!Result
->getExternalRedirect()) // FIXME: errc::not_a_file?
2021 return make_error_code(llvm::errc::invalid_argument
);
2023 StringRef ExtRedirect
= *Result
->getExternalRedirect();
2024 auto *RE
= cast
<RedirectingFileSystem::RemapEntry
>(Result
->E
);
2026 auto ExternalFile
= ExternalFS
->openFileForRead(ExtRedirect
);
2027 if (!ExternalFile
) {
2028 if (shouldFallBackToExternalFS(ExternalFile
.getError(), Result
->E
))
2029 return ExternalFS
->openFileForRead(Path
);
2030 return ExternalFile
;
2033 auto ExternalStatus
= (*ExternalFile
)->status();
2034 if (!ExternalStatus
)
2035 return ExternalStatus
.getError();
2037 // FIXME: Update the status with the name and VFSMapped.
2038 Status S
= getRedirectedFileStatus(
2039 Path
, RE
->useExternalName(UseExternalNames
), *ExternalStatus
);
2040 return std::unique_ptr
<File
>(
2041 std::make_unique
<FileWithFixedStatus
>(std::move(*ExternalFile
), S
));
2045 RedirectingFileSystem::getRealPath(const Twine
&Path_
,
2046 SmallVectorImpl
<char> &Output
) const {
2047 SmallString
<256> Path
;
2048 Path_
.toVector(Path
);
2050 if (std::error_code EC
= makeCanonical(Path
))
2053 ErrorOr
<RedirectingFileSystem::LookupResult
> Result
= lookupPath(Path
);
2055 if (shouldFallBackToExternalFS(Result
.getError()))
2056 return ExternalFS
->getRealPath(Path
, Output
);
2057 return Result
.getError();
2060 // If we found FileEntry or DirectoryRemapEntry, look up the mapped
2061 // path in the external file system.
2062 if (auto ExtRedirect
= Result
->getExternalRedirect()) {
2063 auto P
= ExternalFS
->getRealPath(*ExtRedirect
, Output
);
2064 if (!P
&& shouldFallBackToExternalFS(P
, Result
->E
)) {
2065 return ExternalFS
->getRealPath(Path
, Output
);
2070 // If we found a DirectoryEntry, still fall back to ExternalFS if allowed,
2071 // because directories don't have a single external contents path.
2072 return shouldUseExternalFS() ? ExternalFS
->getRealPath(Path
, Output
)
2073 : llvm::errc::invalid_argument
;
2076 std::unique_ptr
<FileSystem
>
2077 vfs::getVFSFromYAML(std::unique_ptr
<MemoryBuffer
> Buffer
,
2078 SourceMgr::DiagHandlerTy DiagHandler
,
2079 StringRef YAMLFilePath
, void *DiagContext
,
2080 IntrusiveRefCntPtr
<FileSystem
> ExternalFS
) {
2081 return RedirectingFileSystem::create(std::move(Buffer
), DiagHandler
,
2082 YAMLFilePath
, DiagContext
,
2083 std::move(ExternalFS
));
2086 static void getVFSEntries(RedirectingFileSystem::Entry
*SrcE
,
2087 SmallVectorImpl
<StringRef
> &Path
,
2088 SmallVectorImpl
<YAMLVFSEntry
> &Entries
) {
2089 auto Kind
= SrcE
->getKind();
2090 if (Kind
== RedirectingFileSystem::EK_Directory
) {
2091 auto *DE
= dyn_cast
<RedirectingFileSystem::DirectoryEntry
>(SrcE
);
2092 assert(DE
&& "Must be a directory");
2093 for (std::unique_ptr
<RedirectingFileSystem::Entry
> &SubEntry
:
2094 llvm::make_range(DE
->contents_begin(), DE
->contents_end())) {
2095 Path
.push_back(SubEntry
->getName());
2096 getVFSEntries(SubEntry
.get(), Path
, Entries
);
2102 if (Kind
== RedirectingFileSystem::EK_DirectoryRemap
) {
2103 auto *DR
= dyn_cast
<RedirectingFileSystem::DirectoryRemapEntry
>(SrcE
);
2104 assert(DR
&& "Must be a directory remap");
2105 SmallString
<128> VPath
;
2106 for (auto &Comp
: Path
)
2107 llvm::sys::path::append(VPath
, Comp
);
2109 YAMLVFSEntry(VPath
.c_str(), DR
->getExternalContentsPath()));
2113 assert(Kind
== RedirectingFileSystem::EK_File
&& "Must be a EK_File");
2114 auto *FE
= dyn_cast
<RedirectingFileSystem::FileEntry
>(SrcE
);
2115 assert(FE
&& "Must be a file");
2116 SmallString
<128> VPath
;
2117 for (auto &Comp
: Path
)
2118 llvm::sys::path::append(VPath
, Comp
);
2119 Entries
.push_back(YAMLVFSEntry(VPath
.c_str(), FE
->getExternalContentsPath()));
2122 void vfs::collectVFSFromYAML(std::unique_ptr
<MemoryBuffer
> Buffer
,
2123 SourceMgr::DiagHandlerTy DiagHandler
,
2124 StringRef YAMLFilePath
,
2125 SmallVectorImpl
<YAMLVFSEntry
> &CollectedEntries
,
2127 IntrusiveRefCntPtr
<FileSystem
> ExternalFS
) {
2128 std::unique_ptr
<RedirectingFileSystem
> VFS
= RedirectingFileSystem::create(
2129 std::move(Buffer
), DiagHandler
, YAMLFilePath
, DiagContext
,
2130 std::move(ExternalFS
));
2133 ErrorOr
<RedirectingFileSystem::LookupResult
> RootResult
=
2134 VFS
->lookupPath("/");
2137 SmallVector
<StringRef
, 8> Components
;
2138 Components
.push_back("/");
2139 getVFSEntries(RootResult
->E
, Components
, CollectedEntries
);
2142 UniqueID
vfs::getNextVirtualUniqueID() {
2143 static std::atomic
<unsigned> UID
;
2144 unsigned ID
= ++UID
;
2145 // The following assumes that uint64_t max will never collide with a real
2146 // dev_t value from the OS.
2147 return UniqueID(std::numeric_limits
<uint64_t>::max(), ID
);
2150 void YAMLVFSWriter::addEntry(StringRef VirtualPath
, StringRef RealPath
,
2152 assert(sys::path::is_absolute(VirtualPath
) && "virtual path not absolute");
2153 assert(sys::path::is_absolute(RealPath
) && "real path not absolute");
2154 assert(!pathHasTraversal(VirtualPath
) && "path traversal is not supported");
2155 Mappings
.emplace_back(VirtualPath
, RealPath
, IsDirectory
);
2158 void YAMLVFSWriter::addFileMapping(StringRef VirtualPath
, StringRef RealPath
) {
2159 addEntry(VirtualPath
, RealPath
, /*IsDirectory=*/false);
2162 void YAMLVFSWriter::addDirectoryMapping(StringRef VirtualPath
,
2163 StringRef RealPath
) {
2164 addEntry(VirtualPath
, RealPath
, /*IsDirectory=*/true);
2170 llvm::raw_ostream
&OS
;
2171 SmallVector
<StringRef
, 16> DirStack
;
2173 unsigned getDirIndent() { return 4 * DirStack
.size(); }
2174 unsigned getFileIndent() { return 4 * (DirStack
.size() + 1); }
2175 bool containedIn(StringRef Parent
, StringRef Path
);
2176 StringRef
containedPart(StringRef Parent
, StringRef Path
);
2177 void startDirectory(StringRef Path
);
2178 void endDirectory();
2179 void writeEntry(StringRef VPath
, StringRef RPath
);
2182 JSONWriter(llvm::raw_ostream
&OS
) : OS(OS
) {}
2184 void write(ArrayRef
<YAMLVFSEntry
> Entries
, Optional
<bool> UseExternalNames
,
2185 Optional
<bool> IsCaseSensitive
, Optional
<bool> IsOverlayRelative
,
2186 StringRef OverlayDir
);
2191 bool JSONWriter::containedIn(StringRef Parent
, StringRef Path
) {
2192 using namespace llvm::sys
;
2194 // Compare each path component.
2195 auto IParent
= path::begin(Parent
), EParent
= path::end(Parent
);
2196 for (auto IChild
= path::begin(Path
), EChild
= path::end(Path
);
2197 IParent
!= EParent
&& IChild
!= EChild
; ++IParent
, ++IChild
) {
2198 if (*IParent
!= *IChild
)
2201 // Have we exhausted the parent path?
2202 return IParent
== EParent
;
2205 StringRef
JSONWriter::containedPart(StringRef Parent
, StringRef Path
) {
2206 assert(!Parent
.empty());
2207 assert(containedIn(Parent
, Path
));
2208 return Path
.slice(Parent
.size() + 1, StringRef::npos
);
2211 void JSONWriter::startDirectory(StringRef Path
) {
2213 DirStack
.empty() ? Path
: containedPart(DirStack
.back(), Path
);
2214 DirStack
.push_back(Path
);
2215 unsigned Indent
= getDirIndent();
2216 OS
.indent(Indent
) << "{\n";
2217 OS
.indent(Indent
+ 2) << "'type': 'directory',\n";
2218 OS
.indent(Indent
+ 2) << "'name': \"" << llvm::yaml::escape(Name
) << "\",\n";
2219 OS
.indent(Indent
+ 2) << "'contents': [\n";
2222 void JSONWriter::endDirectory() {
2223 unsigned Indent
= getDirIndent();
2224 OS
.indent(Indent
+ 2) << "]\n";
2225 OS
.indent(Indent
) << "}";
2227 DirStack
.pop_back();
2230 void JSONWriter::writeEntry(StringRef VPath
, StringRef RPath
) {
2231 unsigned Indent
= getFileIndent();
2232 OS
.indent(Indent
) << "{\n";
2233 OS
.indent(Indent
+ 2) << "'type': 'file',\n";
2234 OS
.indent(Indent
+ 2) << "'name': \"" << llvm::yaml::escape(VPath
) << "\",\n";
2235 OS
.indent(Indent
+ 2) << "'external-contents': \""
2236 << llvm::yaml::escape(RPath
) << "\"\n";
2237 OS
.indent(Indent
) << "}";
2240 void JSONWriter::write(ArrayRef
<YAMLVFSEntry
> Entries
,
2241 Optional
<bool> UseExternalNames
,
2242 Optional
<bool> IsCaseSensitive
,
2243 Optional
<bool> IsOverlayRelative
,
2244 StringRef OverlayDir
) {
2245 using namespace llvm::sys
;
2249 if (IsCaseSensitive
.hasValue())
2250 OS
<< " 'case-sensitive': '"
2251 << (IsCaseSensitive
.getValue() ? "true" : "false") << "',\n";
2252 if (UseExternalNames
.hasValue())
2253 OS
<< " 'use-external-names': '"
2254 << (UseExternalNames
.getValue() ? "true" : "false") << "',\n";
2255 bool UseOverlayRelative
= false;
2256 if (IsOverlayRelative
.hasValue()) {
2257 UseOverlayRelative
= IsOverlayRelative
.getValue();
2258 OS
<< " 'overlay-relative': '" << (UseOverlayRelative
? "true" : "false")
2261 OS
<< " 'roots': [\n";
2263 if (!Entries
.empty()) {
2264 const YAMLVFSEntry
&Entry
= Entries
.front();
2267 Entry
.IsDirectory
? Entry
.VPath
: path::parent_path(Entry
.VPath
)
2270 StringRef RPath
= Entry
.RPath
;
2271 if (UseOverlayRelative
) {
2272 unsigned OverlayDirLen
= OverlayDir
.size();
2273 assert(RPath
.substr(0, OverlayDirLen
) == OverlayDir
&&
2274 "Overlay dir must be contained in RPath");
2275 RPath
= RPath
.slice(OverlayDirLen
, RPath
.size());
2278 bool IsCurrentDirEmpty
= true;
2279 if (!Entry
.IsDirectory
) {
2280 writeEntry(path::filename(Entry
.VPath
), RPath
);
2281 IsCurrentDirEmpty
= false;
2284 for (const auto &Entry
: Entries
.slice(1)) {
2286 Entry
.IsDirectory
? Entry
.VPath
: path::parent_path(Entry
.VPath
);
2287 if (Dir
== DirStack
.back()) {
2288 if (!IsCurrentDirEmpty
) {
2292 bool IsDirPoppedFromStack
= false;
2293 while (!DirStack
.empty() && !containedIn(DirStack
.back(), Dir
)) {
2296 IsDirPoppedFromStack
= true;
2298 if (IsDirPoppedFromStack
|| !IsCurrentDirEmpty
) {
2301 startDirectory(Dir
);
2302 IsCurrentDirEmpty
= true;
2304 StringRef RPath
= Entry
.RPath
;
2305 if (UseOverlayRelative
) {
2306 unsigned OverlayDirLen
= OverlayDir
.size();
2307 assert(RPath
.substr(0, OverlayDirLen
) == OverlayDir
&&
2308 "Overlay dir must be contained in RPath");
2309 RPath
= RPath
.slice(OverlayDirLen
, RPath
.size());
2311 if (!Entry
.IsDirectory
) {
2312 writeEntry(path::filename(Entry
.VPath
), RPath
);
2313 IsCurrentDirEmpty
= false;
2317 while (!DirStack
.empty()) {
2328 void YAMLVFSWriter::write(llvm::raw_ostream
&OS
) {
2329 llvm::sort(Mappings
, [](const YAMLVFSEntry
&LHS
, const YAMLVFSEntry
&RHS
) {
2330 return LHS
.VPath
< RHS
.VPath
;
2333 JSONWriter(OS
).write(Mappings
, UseExternalNames
, IsCaseSensitive
,
2334 IsOverlayRelative
, OverlayDir
);
2337 vfs::recursive_directory_iterator::recursive_directory_iterator(
2338 FileSystem
&FS_
, const Twine
&Path
, std::error_code
&EC
)
2340 directory_iterator I
= FS
->dir_begin(Path
, EC
);
2341 if (I
!= directory_iterator()) {
2342 State
= std::make_shared
<detail::RecDirIterState
>();
2343 State
->Stack
.push(I
);
2347 vfs::recursive_directory_iterator
&
2348 recursive_directory_iterator::increment(std::error_code
&EC
) {
2349 assert(FS
&& State
&& !State
->Stack
.empty() && "incrementing past end");
2350 assert(!State
->Stack
.top()->path().empty() && "non-canonical end iterator");
2351 vfs::directory_iterator End
;
2353 if (State
->HasNoPushRequest
)
2354 State
->HasNoPushRequest
= false;
2356 if (State
->Stack
.top()->type() == sys::fs::file_type::directory_file
) {
2357 vfs::directory_iterator I
= FS
->dir_begin(State
->Stack
.top()->path(), EC
);
2359 State
->Stack
.push(I
);
2365 while (!State
->Stack
.empty() && State
->Stack
.top().increment(EC
) == End
)
2368 if (State
->Stack
.empty())
2369 State
.reset(); // end iterator