1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350
|
//===- DependencyScanningTool.cpp - clang-scan-deps service ---------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "clang/Tooling/DependencyScanning/DependencyScanningTool.h"
#include "CachingActions.h"
#include "clang/CAS/IncludeTree.h"
#include "clang/Frontend/CompilerInstance.h"
#include "clang/Frontend/Utils.h"
#include "clang/Tooling/DependencyScanning/ScanAndUpdateArgs.h"
#include "llvm/CAS/ObjectStore.h"
using namespace clang;
using namespace tooling;
using namespace dependencies;
using llvm::Error;
DependencyScanningTool::DependencyScanningTool(
DependencyScanningService &Service,
llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS)
: Worker(Service, std::move(FS)) {}
namespace {
/// Prints out all of the gathered dependencies into a string.
class MakeDependencyPrinterConsumer : public DependencyConsumer {
public:
void handleBuildCommand(Command) override {}
void
handleDependencyOutputOpts(const DependencyOutputOptions &Opts) override {
this->Opts = std::make_unique<DependencyOutputOptions>(Opts);
}
void handleFileDependency(StringRef File) override {
Dependencies.push_back(std::string(File));
}
// These are ignored for the make format as it can't support the full
// set of deps, and handleFileDependency handles enough for implicitly
// built modules to work.
void handlePrebuiltModuleDependency(PrebuiltModuleDep PMD) override {}
void handleModuleDependency(ModuleDeps MD) override {}
void handleDirectModuleDependency(ModuleID ID) override {}
void handleContextHash(std::string Hash) override {}
void printDependencies(std::string &S) {
assert(Opts && "Handled dependency output options.");
class DependencyPrinter : public DependencyFileGenerator {
public:
DependencyPrinter(DependencyOutputOptions &Opts,
ArrayRef<std::string> Dependencies)
: DependencyFileGenerator(Opts) {
for (const auto &Dep : Dependencies)
addDependency(Dep);
}
void printDependencies(std::string &S) {
llvm::raw_string_ostream OS(S);
outputDependencyFile(OS);
}
};
DependencyPrinter Generator(*Opts, Dependencies);
Generator.printDependencies(S);
}
protected:
std::unique_ptr<DependencyOutputOptions> Opts;
std::vector<std::string> Dependencies;
};
} // anonymous namespace
llvm::Expected<std::string> DependencyScanningTool::getDependencyFile(
const std::vector<std::string> &CommandLine, StringRef CWD) {
MakeDependencyPrinterConsumer Consumer;
CallbackActionController Controller(nullptr);
auto Result =
Worker.computeDependencies(CWD, CommandLine, Consumer, Controller);
if (Result)
return std::move(Result);
std::string Output;
Consumer.printDependencies(Output);
return Output;
}
namespace {
class EmptyDependencyConsumer : public DependencyConsumer {
void
handleDependencyOutputOpts(const DependencyOutputOptions &Opts) override {}
void handleFileDependency(StringRef Filename) override {}
void handlePrebuiltModuleDependency(PrebuiltModuleDep PMD) override {}
void handleModuleDependency(ModuleDeps MD) override {}
void handleDirectModuleDependency(ModuleID ID) override {}
void handleContextHash(std::string Hash) override {}
};
/// Returns a CAS tree containing the dependencies.
class GetDependencyTree : public EmptyDependencyConsumer {
public:
void handleCASFileSystemRootID(std::string ID) override {
CASFileSystemRootID = ID;
}
Expected<llvm::cas::ObjectProxy> getTree() {
if (CASFileSystemRootID) {
auto ID = FS.getCAS().parseID(*CASFileSystemRootID);
if (!ID)
return ID.takeError();
return FS.getCAS().getProxy(*ID);
}
return llvm::createStringError(llvm::inconvertibleErrorCode(),
"failed to get casfs");
}
GetDependencyTree(llvm::cas::CachingOnDiskFileSystem &FS) : FS(FS) {}
private:
llvm::cas::CachingOnDiskFileSystem &FS;
std::optional<std::string> CASFileSystemRootID;
};
/// Returns an IncludeTree containing the dependencies.
class GetIncludeTree : public EmptyDependencyConsumer {
public:
void handleIncludeTreeID(std::string ID) override { IncludeTreeID = ID; }
Expected<cas::IncludeTreeRoot> getIncludeTree() {
if (IncludeTreeID) {
auto ID = DB.parseID(*IncludeTreeID);
if (!ID)
return ID.takeError();
auto Ref = DB.getReference(*ID);
if (!Ref)
return llvm::createStringError(
llvm::inconvertibleErrorCode(),
llvm::Twine("missing expected include-tree ") + ID->toString());
return cas::IncludeTreeRoot::get(DB, *Ref);
}
return llvm::createStringError(llvm::inconvertibleErrorCode(),
"failed to get include-tree");
}
GetIncludeTree(cas::ObjectStore &DB) : DB(DB) {}
private:
cas::ObjectStore &DB;
std::optional<std::string> IncludeTreeID;
};
}
llvm::Expected<llvm::cas::ObjectProxy>
DependencyScanningTool::getDependencyTree(
const std::vector<std::string> &CommandLine, StringRef CWD) {
GetDependencyTree Consumer(*Worker.getCASFS());
auto Controller = createCASFSActionController(nullptr, *Worker.getCASFS());
auto Result =
Worker.computeDependencies(CWD, CommandLine, Consumer, *Controller);
if (Result)
return std::move(Result);
return Consumer.getTree();
}
llvm::Expected<llvm::cas::ObjectProxy>
DependencyScanningTool::getDependencyTreeFromCompilerInvocation(
std::shared_ptr<CompilerInvocation> Invocation, StringRef CWD,
DiagnosticConsumer &DiagsConsumer, raw_ostream *VerboseOS,
bool DiagGenerationAsCompilation) {
GetDependencyTree Consumer(*Worker.getCASFS());
auto Controller = createCASFSActionController(nullptr, *Worker.getCASFS());
Worker.computeDependenciesFromCompilerInvocation(
std::move(Invocation), CWD, Consumer, *Controller, DiagsConsumer,
VerboseOS, DiagGenerationAsCompilation);
return Consumer.getTree();
}
Expected<cas::IncludeTreeRoot> DependencyScanningTool::getIncludeTree(
cas::ObjectStore &DB, const std::vector<std::string> &CommandLine,
StringRef CWD, LookupModuleOutputCallback LookupModuleOutput) {
GetIncludeTree Consumer(DB);
auto Controller = createIncludeTreeActionController(LookupModuleOutput, DB);
llvm::Error Result =
Worker.computeDependencies(CWD, CommandLine, Consumer, *Controller);
if (Result)
return std::move(Result);
return Consumer.getIncludeTree();
}
Expected<cas::IncludeTreeRoot>
DependencyScanningTool::getIncludeTreeFromCompilerInvocation(
cas::ObjectStore &DB, std::shared_ptr<CompilerInvocation> Invocation,
StringRef CWD, LookupModuleOutputCallback LookupModuleOutput,
DiagnosticConsumer &DiagsConsumer, raw_ostream *VerboseOS,
bool DiagGenerationAsCompilation) {
GetIncludeTree Consumer(DB);
auto Controller = createIncludeTreeActionController(LookupModuleOutput, DB);
Worker.computeDependenciesFromCompilerInvocation(
std::move(Invocation), CWD, Consumer, *Controller, DiagsConsumer,
VerboseOS, DiagGenerationAsCompilation);
return Consumer.getIncludeTree();
}
llvm::Expected<P1689Rule> DependencyScanningTool::getP1689ModuleDependencyFile(
const CompileCommand &Command, StringRef CWD, std::string &MakeformatOutput,
std::string &MakeformatOutputPath) {
class P1689ModuleDependencyPrinterConsumer
: public MakeDependencyPrinterConsumer {
public:
P1689ModuleDependencyPrinterConsumer(P1689Rule &Rule,
const CompileCommand &Command)
: Filename(Command.Filename), Rule(Rule) {
Rule.PrimaryOutput = Command.Output;
}
void handleProvidedAndRequiredStdCXXModules(
std::optional<P1689ModuleInfo> Provided,
std::vector<P1689ModuleInfo> Requires) override {
Rule.Provides = Provided;
if (Rule.Provides)
Rule.Provides->SourcePath = Filename.str();
Rule.Requires = Requires;
}
StringRef getMakeFormatDependencyOutputPath() {
if (Opts->OutputFormat != DependencyOutputFormat::Make)
return {};
return Opts->OutputFile;
}
private:
StringRef Filename;
P1689Rule &Rule;
};
class P1689ActionController : public DependencyActionController {
public:
// The lookupModuleOutput is for clang modules. P1689 format don't need it.
std::string lookupModuleOutput(const ModuleID &,
ModuleOutputKind Kind) override {
return "";
}
};
P1689Rule Rule;
P1689ModuleDependencyPrinterConsumer Consumer(Rule, Command);
P1689ActionController Controller;
auto Result = Worker.computeDependencies(CWD, Command.CommandLine, Consumer,
Controller);
if (Result)
return std::move(Result);
MakeformatOutputPath = Consumer.getMakeFormatDependencyOutputPath();
if (!MakeformatOutputPath.empty())
Consumer.printDependencies(MakeformatOutput);
return Rule;
}
llvm::Expected<TranslationUnitDeps>
DependencyScanningTool::getTranslationUnitDependencies(
const std::vector<std::string> &CommandLine, StringRef CWD,
const llvm::DenseSet<ModuleID> &AlreadySeen,
LookupModuleOutputCallback LookupModuleOutput) {
FullDependencyConsumer Consumer(AlreadySeen);
auto Controller = createActionController(LookupModuleOutput);
llvm::Error Result =
Worker.computeDependencies(CWD, CommandLine, Consumer, *Controller);
if (Result)
return std::move(Result);
return Consumer.takeTranslationUnitDeps();
}
llvm::Expected<ModuleDepsGraph> DependencyScanningTool::getModuleDependencies(
StringRef ModuleName, const std::vector<std::string> &CommandLine,
StringRef CWD, const llvm::DenseSet<ModuleID> &AlreadySeen,
LookupModuleOutputCallback LookupModuleOutput) {
FullDependencyConsumer Consumer(AlreadySeen);
auto Controller = createActionController(LookupModuleOutput);
llvm::Error Result = Worker.computeDependencies(CWD, CommandLine, Consumer,
*Controller, ModuleName);
if (Result)
return std::move(Result);
return Consumer.takeModuleGraphDeps();
}
TranslationUnitDeps FullDependencyConsumer::takeTranslationUnitDeps() {
TranslationUnitDeps TU;
TU.ID.ContextHash = std::move(ContextHash);
TU.FileDeps = std::move(Dependencies);
TU.PrebuiltModuleDeps = std::move(PrebuiltModuleDeps);
TU.Commands = std::move(Commands);
TU.CASFileSystemRootID = std::move(CASFileSystemRootID);
TU.IncludeTreeID = std::move(IncludeTreeID);
for (auto &&M : ClangModuleDeps) {
auto &MD = M.second;
// TODO: Avoid handleModuleDependency even being called for modules
// we've already seen.
if (AlreadySeen.count(M.first))
continue;
TU.ModuleGraph.push_back(std::move(MD));
}
TU.ClangModuleDeps = std::move(DirectModuleDeps);
return TU;
}
ModuleDepsGraph FullDependencyConsumer::takeModuleGraphDeps() {
ModuleDepsGraph ModuleGraph;
for (auto &&M : ClangModuleDeps) {
auto &MD = M.second;
// TODO: Avoid handleModuleDependency even being called for modules
// we've already seen.
if (AlreadySeen.count(M.first))
continue;
ModuleGraph.push_back(std::move(MD));
}
return ModuleGraph;
}
CallbackActionController::~CallbackActionController() {}
std::unique_ptr<DependencyActionController>
DependencyScanningTool::createActionController(
DependencyScanningWorker &Worker,
LookupModuleOutputCallback LookupModuleOutput) {
if (Worker.getScanningFormat() == ScanningOutputFormat::FullIncludeTree)
return createIncludeTreeActionController(LookupModuleOutput,
*Worker.getCAS());
if (auto CacheFS = Worker.getCASFS())
return createCASFSActionController(LookupModuleOutput, *CacheFS);
return std::make_unique<CallbackActionController>(LookupModuleOutput);
}
std::unique_ptr<DependencyActionController>
DependencyScanningTool::createActionController(
LookupModuleOutputCallback LookupModuleOutput) {
return createActionController(Worker, std::move(LookupModuleOutput));
}
|