[InstCombine] Signed saturation patterns
[llvm-core.git] / include / llvm / Support / FileCollector.h
blob19429bd3e9b471d6a41b281beed242cd83baf88c
1 //===-- FileCollector.h -----------------------------------------*- C++ -*-===//
2 //
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
6 //
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"
18 #include <mutex>
20 namespace llvm {
22 /// Collects files into a directory and generates a mapping that can be used by
23 /// the VFS.
24 class FileCollector {
25 public:
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.
34 ///
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);
46 private:
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);
57 protected:
58 /// Synchronizes adding files.
59 std::mutex Mutex;
61 /// The root directory where files are copied.
62 std::string Root;
64 /// The root directory where the VFS overlay lives.
65 std::string OverlayRoot;
67 /// Tracks already seen files so they can be skipped.
68 StringSet<> Seen;
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