clang 20.0.0git
DependencyScanningTool.h
Go to the documentation of this file.
1//===- DependencyScanningTool.h - clang-scan-deps service -----------------===//
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//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_CLANG_TOOLING_DEPENDENCYSCANNING_DEPENDENCYSCANNINGTOOL_H
10#define LLVM_CLANG_TOOLING_DEPENDENCYSCANNING_DEPENDENCYSCANNINGTOOL_H
11
16#include "llvm/ADT/DenseSet.h"
17#include "llvm/ADT/MapVector.h"
18#include <functional>
19#include <optional>
20#include <string>
21#include <vector>
22
23namespace clang {
24namespace tooling {
25namespace dependencies {
26
27/// A callback to lookup module outputs for "-fmodule-file=", "-o" etc.
29 std::function<std::string(const ModuleID &, ModuleOutputKind)>;
30
31/// Graph of modular dependencies.
32using ModuleDepsGraph = std::vector<ModuleDeps>;
33
34/// The full dependencies and module graph for a specific input.
36 /// The graph of direct and transitive modular dependencies.
38
39 /// The identifier of the C++20 module this translation unit exports.
40 ///
41 /// If the translation unit is not a module then \c ID.ModuleName is empty.
43
44 /// A collection of absolute paths to files that this translation unit
45 /// directly depends on, not including transitive dependencies.
46 std::vector<std::string> FileDeps;
47
48 /// A collection of prebuilt modules this translation unit directly depends
49 /// on, not including transitive dependencies.
50 std::vector<PrebuiltModuleDep> PrebuiltModuleDeps;
51
52 /// A list of modules this translation unit directly depends on, not including
53 /// transitive dependencies.
54 ///
55 /// This may include modules with a different context hash when it can be
56 /// determined that the differences are benign for this compilation.
57 std::vector<ModuleID> ClangModuleDeps;
58
59 /// The sequence of commands required to build the translation unit. Commands
60 /// should be executed in order.
61 ///
62 /// FIXME: If we add support for multi-arch builds in clang-scan-deps, we
63 /// should make the dependencies between commands explicit to enable parallel
64 /// builds of each architecture.
65 std::vector<Command> Commands;
66
67 /// Deprecated driver command-line. This will be removed in a future version.
68 std::vector<std::string> DriverCommandLine;
69};
70
71struct P1689Rule {
72 std::string PrimaryOutput;
73 std::optional<P1689ModuleInfo> Provides;
74 std::vector<P1689ModuleInfo> Requires;
75};
76
77/// The high-level implementation of the dependency discovery tool that runs on
78/// an individual worker thread.
80public:
81 /// Construct a dependency scanning tool.
84 llvm::vfs::createPhysicalFileSystem());
85
86 /// Print out the dependency information into a string using the dependency
87 /// file format that is specified in the options (-MD is the default) and
88 /// return it.
89 ///
90 /// \returns A \c StringError with the diagnostic output if clang errors
91 /// occurred, dependency file contents otherwise.
93 getDependencyFile(const std::vector<std::string> &CommandLine, StringRef CWD);
94
95 /// Collect the module dependency in P1689 format for C++20 named modules.
96 ///
97 /// \param MakeformatOutput The output parameter for dependency information
98 /// in make format if the command line requires to generate make-format
99 /// dependency information by `-MD -MF <dep_file>`.
100 ///
101 /// \param MakeformatOutputPath The output parameter for the path to
102 /// \param MakeformatOutput.
103 ///
104 /// \returns A \c StringError with the diagnostic output if clang errors
105 /// occurred, P1689 dependency format rules otherwise.
108 StringRef CWD, std::string &MakeformatOutput,
109 std::string &MakeformatOutputPath);
112 StringRef CWD) {
113 std::string MakeformatOutput;
114 std::string MakeformatOutputPath;
115
116 return getP1689ModuleDependencyFile(Command, CWD, MakeformatOutput,
117 MakeformatOutputPath);
118 }
119
120 /// Given a Clang driver command-line for a translation unit, gather the
121 /// modular dependencies and return the information needed for explicit build.
122 ///
123 /// \param AlreadySeen This stores modules which have previously been
124 /// reported. Use the same instance for all calls to this
125 /// function for a single \c DependencyScanningTool in a
126 /// single build. Use a different one for different tools,
127 /// and clear it between builds.
128 /// \param LookupModuleOutput This function is called to fill in
129 /// "-fmodule-file=", "-o" and other output
130 /// arguments for dependencies.
131 ///
132 /// \returns a \c StringError with the diagnostic output if clang errors
133 /// occurred, \c TranslationUnitDeps otherwise.
135 getTranslationUnitDependencies(const std::vector<std::string> &CommandLine,
136 StringRef CWD,
137 const llvm::DenseSet<ModuleID> &AlreadySeen,
138 LookupModuleOutputCallback LookupModuleOutput);
139
140 /// Given a compilation context specified via the Clang driver command-line,
141 /// gather modular dependencies of module with the given name, and return the
142 /// information needed for explicit build.
144 StringRef ModuleName, const std::vector<std::string> &CommandLine,
145 StringRef CWD, const llvm::DenseSet<ModuleID> &AlreadySeen,
146 LookupModuleOutputCallback LookupModuleOutput);
147
148 llvm::vfs::FileSystem &getWorkerVFS() const { return Worker.getVFS(); }
149
150private:
152};
153
155public:
156 FullDependencyConsumer(const llvm::DenseSet<ModuleID> &AlreadySeen)
157 : AlreadySeen(AlreadySeen) {}
158
160 Commands.push_back(std::move(Cmd));
161 }
162
164
165 void handleFileDependency(StringRef File) override {
166 Dependencies.push_back(std::string(File));
167 }
168
170 PrebuiltModuleDeps.emplace_back(std::move(PMD));
171 }
172
174 ClangModuleDeps[MD.ID] = std::move(MD);
175 }
176
178 DirectModuleDeps.push_back(ID);
179 }
180
181 void handleContextHash(std::string Hash) override {
182 ContextHash = std::move(Hash);
183 }
184
187
188private:
189 std::vector<std::string> Dependencies;
190 std::vector<PrebuiltModuleDep> PrebuiltModuleDeps;
191 llvm::MapVector<ModuleID, ModuleDeps> ClangModuleDeps;
192 std::vector<ModuleID> DirectModuleDeps;
193 std::vector<Command> Commands;
194 std::string ContextHash;
195 std::vector<std::string> OutputPaths;
196 const llvm::DenseSet<ModuleID> &AlreadySeen;
197};
198
199/// A simple dependency action controller that uses a callback. If no callback
200/// is provided, it is assumed that looking up module outputs is unreachable.
202public:
204
206 : LookupModuleOutput(std::move(LMO)) {
207 if (!LookupModuleOutput) {
208 LookupModuleOutput = [](const ModuleID &,
209 ModuleOutputKind) -> std::string {
210 llvm::report_fatal_error("unexpected call to lookupModuleOutput");
211 };
212 }
213 }
214
215 std::string lookupModuleOutput(const ModuleID &ID,
216 ModuleOutputKind Kind) override {
217 return LookupModuleOutput(ID, Kind);
218 }
219
220private:
221 LookupModuleOutputCallback LookupModuleOutput;
222};
223
224} // end namespace dependencies
225} // end namespace tooling
226} // end namespace clang
227
228#endif // LLVM_CLANG_TOOLING_DEPENDENCYSCANNING_DEPENDENCYSCANNINGTOOL_H
static char ID
Definition: Arena.cpp:183
enum clang::sema::@1724::IndirectLocalPathEntry::EntryKind Kind
CompileCommand Cmd
DependencyOutputOptions - Options for controlling the compiler dependency file generation.
A simple dependency action controller that uses a callback.
std::string lookupModuleOutput(const ModuleID &ID, ModuleOutputKind Kind) override
Dependency scanner callbacks that are used during scanning to influence the behaviour of the scan - f...
The dependency scanning service contains shared configuration and state that is used by the individua...
The high-level implementation of the dependency discovery tool that runs on an individual worker thre...
llvm::Expected< P1689Rule > getP1689ModuleDependencyFile(const clang::tooling::CompileCommand &Command, StringRef CWD, std::string &MakeformatOutput, std::string &MakeformatOutputPath)
Collect the module dependency in P1689 format for C++20 named modules.
llvm::Expected< std::string > getDependencyFile(const std::vector< std::string > &CommandLine, StringRef CWD)
Print out the dependency information into a string using the dependency file format that is specified...
llvm::Expected< ModuleDepsGraph > getModuleDependencies(StringRef ModuleName, const std::vector< std::string > &CommandLine, StringRef CWD, const llvm::DenseSet< ModuleID > &AlreadySeen, LookupModuleOutputCallback LookupModuleOutput)
Given a compilation context specified via the Clang driver command-line, gather modular dependencies ...
llvm::Expected< TranslationUnitDeps > getTranslationUnitDependencies(const std::vector< std::string > &CommandLine, StringRef CWD, const llvm::DenseSet< ModuleID > &AlreadySeen, LookupModuleOutputCallback LookupModuleOutput)
Given a Clang driver command-line for a translation unit, gather the modular dependencies and return ...
llvm::Expected< P1689Rule > getP1689ModuleDependencyFile(const clang::tooling::CompileCommand &Command, StringRef CWD)
An individual dependency scanning worker that is able to run on its own thread.
FullDependencyConsumer(const llvm::DenseSet< ModuleID > &AlreadySeen)
void handleDependencyOutputOpts(const DependencyOutputOptions &) override
void handlePrebuiltModuleDependency(PrebuiltModuleDep PMD) override
ModuleOutputKind
An output from a module compilation, such as the path of the module file.
std::vector< ModuleDeps > ModuleDepsGraph
Graph of modular dependencies.
std::function< std::string(const ModuleID &, ModuleOutputKind)> LookupModuleOutputCallback
A callback to lookup module outputs for "-fmodule-file=", "-o" etc.
The JSON file list parser is used to communicate input to InstallAPI.
Specifies the working directory and command of a compilation.
A command-line tool invocation that is part of building a TU.
ModuleID ID
The identifier of the module.
This is used to identify a specific module.
std::vector< P1689ModuleInfo > Requires
std::optional< P1689ModuleInfo > Provides
Modular dependency that has already been built prior to the dependency scan.
The full dependencies and module graph for a specific input.
std::vector< PrebuiltModuleDep > PrebuiltModuleDeps
A collection of prebuilt modules this translation unit directly depends on, not including transitive ...
std::vector< Command > Commands
The sequence of commands required to build the translation unit.
std::vector< std::string > FileDeps
A collection of absolute paths to files that this translation unit directly depends on,...
ModuleDepsGraph ModuleGraph
The graph of direct and transitive modular dependencies.
ModuleID ID
The identifier of the C++20 module this translation unit exports.
std::vector< ModuleID > ClangModuleDeps
A list of modules this translation unit directly depends on, not including transitive dependencies.
std::vector< std::string > DriverCommandLine
Deprecated driver command-line. This will be removed in a future version.