1 //===-- FileCollector.h -----------------------------------------*- C++ -*-===//
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 #ifndef LLVM_SUPPORT_FILE_COLLECTOR_H
10 #define LLVM_SUPPORT_FILE_COLLECTOR_H
12 #include "llvm/ADT/SmallVector.h"
13 #include "llvm/ADT/StringMap.h"
14 #include "llvm/ADT/StringSet.h"
15 #include "llvm/ADT/Twine.h"
16 #include "llvm/Support/VirtualFileSystem.h"
22 /// Collects files into a directory and generates a mapping that can be used by
26 FileCollector(std::string Root
, std::string OverlayRoot
);
28 void addFile(const Twine
&file
);
30 /// Write the yaml mapping (for the VFS) to the given file.
31 std::error_code
writeMapping(StringRef mapping_file
);
33 /// Copy the files into the root directory.
35 /// When StopOnError is true (the default) we abort as soon as one file
36 /// cannot be copied. This is relatively common, for example when a file was
37 /// removed after it was added to the mapping.
38 std::error_code
copyFiles(bool StopOnError
= true);
40 /// Create a VFS that collects all the paths that might be looked at by the
41 /// file system accesses.
42 static IntrusiveRefCntPtr
<vfs::FileSystem
>
43 createCollectorVFS(IntrusiveRefCntPtr
<vfs::FileSystem
> BaseFS
,
44 std::shared_ptr
<FileCollector
> Collector
);
47 void addFileImpl(StringRef SrcPath
);
49 bool markAsSeen(StringRef Path
) { return Seen
.insert(Path
).second
; }
51 bool getRealPath(StringRef SrcPath
, SmallVectorImpl
<char> &Result
);
53 void addFileToMapping(StringRef VirtualPath
, StringRef RealPath
) {
54 VFSWriter
.addFileMapping(VirtualPath
, RealPath
);
58 /// Synchronizes adding files.
61 /// The root directory where files are copied.
64 /// The root directory where the VFS overlay lives.
65 std::string OverlayRoot
;
67 /// Tracks already seen files so they can be skipped.
70 /// The yaml mapping writer.
71 vfs::YAMLVFSWriter VFSWriter
;
73 /// Caches RealPath calls when resolving symlinks.
74 StringMap
<std::string
> SymlinkMap
;
77 } // end namespace llvm
79 #endif // LLVM_SUPPORT_FILE_COLLECTOR_H