blob: 383fb1a98e1794d7be771dddd48cd2ce2ae3c116 [file] [log] [blame]
Manuel Klimekcb971c62012-04-04 12:07:46 +00001//===--- CompilationDatabase.cpp - ----------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Daniel Jasper7fd90b02012-08-24 05:50:27 +000010// This file contains implementations of the CompilationDatabase base class
11// and the FixedCompilationDatabase.
Manuel Klimekcb971c62012-04-04 12:07:46 +000012//
13//===----------------------------------------------------------------------===//
14
15#include "clang/Tooling/CompilationDatabase.h"
Edwin Vanec8f03422013-11-17 16:08:04 +000016#include "clang/Basic/Diagnostic.h"
Stephen Hines6bcf27b2014-05-29 04:14:42 -070017#include "clang/Basic/DiagnosticOptions.h"
Edwin Vanec8f03422013-11-17 16:08:04 +000018#include "clang/Driver/Action.h"
Stephen Hines651f13c2014-04-23 16:59:28 -070019#include "clang/Driver/Compilation.h"
Edwin Vanec8f03422013-11-17 16:08:04 +000020#include "clang/Driver/Driver.h"
21#include "clang/Driver/DriverDiagnostic.h"
22#include "clang/Driver/Job.h"
Edwin Vanec8f03422013-11-17 16:08:04 +000023#include "clang/Frontend/TextDiagnosticPrinter.h"
Stephen Hines651f13c2014-04-23 16:59:28 -070024#include "clang/Tooling/CompilationDatabasePluginRegistry.h"
25#include "clang/Tooling/Tooling.h"
26#include "llvm/ADT/SmallString.h"
Edwin Vanec8f03422013-11-17 16:08:04 +000027#include "llvm/Option/Arg.h"
Stephen Hines651f13c2014-04-23 16:59:28 -070028#include "llvm/Support/Host.h"
29#include "llvm/Support/Path.h"
Stephen Hines651f13c2014-04-23 16:59:28 -070030#include <sstream>
Stephen Hinesc568f1e2014-07-21 00:47:37 -070031#include <system_error>
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070032using namespace clang;
33using namespace tooling;
Manuel Klimekcb971c62012-04-04 12:07:46 +000034
Manuel Klimekcb971c62012-04-04 12:07:46 +000035CompilationDatabase::~CompilationDatabase() {}
36
Stephen Hines176edba2014-12-01 14:53:08 -080037std::unique_ptr<CompilationDatabase>
Manuel Klimekcb971c62012-04-04 12:07:46 +000038CompilationDatabase::loadFromDirectory(StringRef BuildDirectory,
39 std::string &ErrorMessage) {
Daniel Jasper7fd90b02012-08-24 05:50:27 +000040 std::stringstream ErrorStream;
41 for (CompilationDatabasePluginRegistry::iterator
42 It = CompilationDatabasePluginRegistry::begin(),
43 Ie = CompilationDatabasePluginRegistry::end();
44 It != Ie; ++It) {
45 std::string DatabaseErrorMessage;
Stephen Hines651f13c2014-04-23 16:59:28 -070046 std::unique_ptr<CompilationDatabasePlugin> Plugin(It->instantiate());
Stephen Hines176edba2014-12-01 14:53:08 -080047 if (std::unique_ptr<CompilationDatabase> DB =
48 Plugin->loadFromDirectory(BuildDirectory, DatabaseErrorMessage))
Daniel Jasper7fd90b02012-08-24 05:50:27 +000049 return DB;
Stephen Hines176edba2014-12-01 14:53:08 -080050 ErrorStream << It->getName() << ": " << DatabaseErrorMessage << "\n";
Manuel Klimekcb971c62012-04-04 12:07:46 +000051 }
Daniel Jasper7fd90b02012-08-24 05:50:27 +000052 ErrorMessage = ErrorStream.str();
Stephen Hines6bcf27b2014-05-29 04:14:42 -070053 return nullptr;
Manuel Klimekcb971c62012-04-04 12:07:46 +000054}
55
Stephen Hines176edba2014-12-01 14:53:08 -080056static std::unique_ptr<CompilationDatabase>
Daniel Jasper7fd90b02012-08-24 05:50:27 +000057findCompilationDatabaseFromDirectory(StringRef Directory,
58 std::string &ErrorMessage) {
59 std::stringstream ErrorStream;
Daniel Jasper3d210782012-10-15 13:12:24 +000060 bool HasErrorMessage = false;
Arnaud A. de Grandmaison4187df52012-07-10 16:56:35 +000061 while (!Directory.empty()) {
62 std::string LoadErrorMessage;
63
Stephen Hines176edba2014-12-01 14:53:08 -080064 if (std::unique_ptr<CompilationDatabase> DB =
65 CompilationDatabase::loadFromDirectory(Directory, LoadErrorMessage))
Arnaud A. de Grandmaison4187df52012-07-10 16:56:35 +000066 return DB;
Daniel Jasper3d210782012-10-15 13:12:24 +000067
68 if (!HasErrorMessage) {
69 ErrorStream << "No compilation database found in " << Directory.str()
70 << " or any parent directory\n" << LoadErrorMessage;
71 HasErrorMessage = true;
72 }
Arnaud A. de Grandmaison4187df52012-07-10 16:56:35 +000073
74 Directory = llvm::sys::path::parent_path(Directory);
75 }
Daniel Jasper7fd90b02012-08-24 05:50:27 +000076 ErrorMessage = ErrorStream.str();
Stephen Hines6bcf27b2014-05-29 04:14:42 -070077 return nullptr;
Arnaud A. de Grandmaison4187df52012-07-10 16:56:35 +000078}
79
Stephen Hines176edba2014-12-01 14:53:08 -080080std::unique_ptr<CompilationDatabase>
Manuel Klimek8fa2fb82012-07-10 13:10:51 +000081CompilationDatabase::autoDetectFromSource(StringRef SourceFile,
82 std::string &ErrorMessage) {
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +000083 SmallString<1024> AbsolutePath(getAbsolutePath(SourceFile));
Manuel Klimek8fa2fb82012-07-10 13:10:51 +000084 StringRef Directory = llvm::sys::path::parent_path(AbsolutePath);
Arnaud A. de Grandmaison4187df52012-07-10 16:56:35 +000085
Stephen Hines176edba2014-12-01 14:53:08 -080086 std::unique_ptr<CompilationDatabase> DB =
87 findCompilationDatabaseFromDirectory(Directory, ErrorMessage);
Arnaud A. de Grandmaison4187df52012-07-10 16:56:35 +000088
89 if (!DB)
90 ErrorMessage = ("Could not auto-detect compilation database for file \"" +
Daniel Jasper7fd90b02012-08-24 05:50:27 +000091 SourceFile + "\"\n" + ErrorMessage).str();
Arnaud A. de Grandmaison4187df52012-07-10 16:56:35 +000092 return DB;
93}
94
Stephen Hines176edba2014-12-01 14:53:08 -080095std::unique_ptr<CompilationDatabase>
Arnaud A. de Grandmaison4187df52012-07-10 16:56:35 +000096CompilationDatabase::autoDetectFromDirectory(StringRef SourceDir,
97 std::string &ErrorMessage) {
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +000098 SmallString<1024> AbsolutePath(getAbsolutePath(SourceDir));
Arnaud A. de Grandmaison4187df52012-07-10 16:56:35 +000099
Stephen Hines176edba2014-12-01 14:53:08 -0800100 std::unique_ptr<CompilationDatabase> DB =
101 findCompilationDatabaseFromDirectory(AbsolutePath, ErrorMessage);
Arnaud A. de Grandmaison4187df52012-07-10 16:56:35 +0000102
103 if (!DB)
104 ErrorMessage = ("Could not auto-detect compilation database from directory \"" +
Daniel Jasper7fd90b02012-08-24 05:50:27 +0000105 SourceDir + "\"\n" + ErrorMessage).str();
Arnaud A. de Grandmaison4187df52012-07-10 16:56:35 +0000106 return DB;
Manuel Klimek8fa2fb82012-07-10 13:10:51 +0000107}
108
Daniel Jasper7fd90b02012-08-24 05:50:27 +0000109CompilationDatabasePlugin::~CompilationDatabasePlugin() {}
110
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -0700111namespace {
Edwin Vanec8f03422013-11-17 16:08:04 +0000112// Helper for recursively searching through a chain of actions and collecting
113// all inputs, direct and indirect, of compile jobs.
114struct CompileJobAnalyzer {
115 void run(const driver::Action *A) {
116 runImpl(A, false);
117 }
118
119 SmallVector<std::string, 2> Inputs;
120
121private:
122
123 void runImpl(const driver::Action *A, bool Collect) {
124 bool CollectChildren = Collect;
125 switch (A->getKind()) {
126 case driver::Action::CompileJobClass:
127 CollectChildren = true;
128 break;
129
130 case driver::Action::InputClass: {
131 if (Collect) {
132 const driver::InputAction *IA = cast<driver::InputAction>(A);
133 Inputs.push_back(IA->getInputArg().getSpelling());
134 }
135 } break;
136
137 default:
138 // Don't care about others
139 ;
140 }
141
142 for (driver::ActionList::const_iterator I = A->begin(), E = A->end();
143 I != E; ++I)
144 runImpl(*I, CollectChildren);
145 }
146};
147
148// Special DiagnosticConsumer that looks for warn_drv_input_file_unused
149// diagnostics from the driver and collects the option strings for those unused
150// options.
151class UnusedInputDiagConsumer : public DiagnosticConsumer {
152public:
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700153 UnusedInputDiagConsumer() : Other(nullptr) {}
Edwin Vanec8f03422013-11-17 16:08:04 +0000154
155 // Useful for debugging, chain diagnostics to another consumer after
156 // recording for our own purposes.
157 UnusedInputDiagConsumer(DiagnosticConsumer *Other) : Other(Other) {}
158
159 virtual void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel,
Stephen Hines651f13c2014-04-23 16:59:28 -0700160 const Diagnostic &Info) override {
Edwin Vanec8f03422013-11-17 16:08:04 +0000161 if (Info.getID() == clang::diag::warn_drv_input_file_unused) {
162 // Arg 1 for this diagnostic is the option that didn't get used.
163 UnusedInputs.push_back(Info.getArgStdStr(0));
164 }
165 if (Other)
166 Other->HandleDiagnostic(DiagLevel, Info);
167 }
168
169 DiagnosticConsumer *Other;
170 SmallVector<std::string, 2> UnusedInputs;
171};
172
173// Unary functor for asking "Given a StringRef S1, does there exist a string
174// S2 in Arr where S1 == S2?"
175struct MatchesAny {
176 MatchesAny(ArrayRef<std::string> Arr) : Arr(Arr) {}
177 bool operator() (StringRef S) {
178 for (const std::string *I = Arr.begin(), *E = Arr.end(); I != E; ++I)
179 if (*I == S)
180 return true;
181 return false;
182 }
183private:
184 ArrayRef<std::string> Arr;
185};
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -0700186} // namespace
Edwin Vanec8f03422013-11-17 16:08:04 +0000187
188/// \brief Strips any positional args and possible argv[0] from a command-line
189/// provided by the user to construct a FixedCompilationDatabase.
190///
191/// FixedCompilationDatabase requires a command line to be in this format as it
192/// constructs the command line for each file by appending the name of the file
193/// to be compiled. FixedCompilationDatabase also adds its own argv[0] to the
194/// start of the command line although its value is not important as it's just
195/// ignored by the Driver invoked by the ClangTool using the
196/// FixedCompilationDatabase.
197///
198/// FIXME: This functionality should probably be made available by
199/// clang::driver::Driver although what the interface should look like is not
200/// clear.
201///
202/// \param[in] Args Args as provided by the user.
NAKAMURA Takumif2e479e2013-11-17 18:05:49 +0000203/// \return Resulting stripped command line.
204/// \li true if successful.
Edwin Vanec8f03422013-11-17 16:08:04 +0000205/// \li false if \c Args cannot be used for compilation jobs (e.g.
206/// contains an option like -E or -version).
Stephen Hines651f13c2014-04-23 16:59:28 -0700207static bool stripPositionalArgs(std::vector<const char *> Args,
208 std::vector<std::string> &Result) {
Edwin Vanec8f03422013-11-17 16:08:04 +0000209 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions();
210 UnusedInputDiagConsumer DiagClient;
211 DiagnosticsEngine Diagnostics(
212 IntrusiveRefCntPtr<clang::DiagnosticIDs>(new DiagnosticIDs()),
213 &*DiagOpts, &DiagClient, false);
214
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700215 // The clang executable path isn't required since the jobs the driver builds
216 // will not be executed.
Stephen Hines651f13c2014-04-23 16:59:28 -0700217 std::unique_ptr<driver::Driver> NewDriver(new driver::Driver(
Edwin Vanec8f03422013-11-17 16:08:04 +0000218 /* ClangExecutable= */ "", llvm::sys::getDefaultTargetTriple(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700219 Diagnostics));
Edwin Vanec8f03422013-11-17 16:08:04 +0000220 NewDriver->setCheckInputsExist(false);
221
222 // This becomes the new argv[0]. The value is actually not important as it
223 // isn't used for invoking Tools.
224 Args.insert(Args.begin(), "clang-tool");
225
226 // By adding -c, we force the driver to treat compilation as the last phase.
227 // It will then issue warnings via Diagnostics about un-used options that
228 // would have been used for linking. If the user provided a compiler name as
229 // the original argv[0], this will be treated as a linker input thanks to
230 // insertng a new argv[0] above. All un-used options get collected by
231 // UnusedInputdiagConsumer and get stripped out later.
232 Args.push_back("-c");
233
234 // Put a dummy C++ file on to ensure there's at least one compile job for the
235 // driver to construct. If the user specified some other argument that
236 // prevents compilation, e.g. -E or something like -version, we may still end
237 // up with no jobs but then this is the user's fault.
238 Args.push_back("placeholder.cpp");
239
Stephen Hines651f13c2014-04-23 16:59:28 -0700240 // Remove -no-integrated-as; it's not used for syntax checking,
241 // and it confuses targets which don't support this option.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700242 Args.erase(std::remove_if(Args.begin(), Args.end(),
243 MatchesAny(std::string("-no-integrated-as"))),
244 Args.end());
Stephen Hines651f13c2014-04-23 16:59:28 -0700245
246 const std::unique_ptr<driver::Compilation> Compilation(
Edwin Vanec8f03422013-11-17 16:08:04 +0000247 NewDriver->BuildCompilation(Args));
248
249 const driver::JobList &Jobs = Compilation->getJobs();
250
251 CompileJobAnalyzer CompileAnalyzer;
252
Stephen Hines176edba2014-12-01 14:53:08 -0800253 for (const auto &Job : Jobs) {
254 if (Job.getKind() == driver::Job::CommandClass) {
255 const driver::Command &Cmd = cast<driver::Command>(Job);
Edwin Vanec8f03422013-11-17 16:08:04 +0000256 // Collect only for Assemble jobs. If we do all jobs we get duplicates
257 // since Link jobs point to Assemble jobs as inputs.
Stephen Hines176edba2014-12-01 14:53:08 -0800258 if (Cmd.getSource().getKind() == driver::Action::AssembleJobClass)
259 CompileAnalyzer.run(&Cmd.getSource());
Edwin Vanec8f03422013-11-17 16:08:04 +0000260 }
261 }
262
263 if (CompileAnalyzer.Inputs.empty()) {
264 // No compile jobs found.
265 // FIXME: Emit a warning of some kind?
266 return false;
267 }
268
269 // Remove all compilation input files from the command line. This is
270 // necessary so that getCompileCommands() can construct a command line for
271 // each file.
272 std::vector<const char *>::iterator End = std::remove_if(
273 Args.begin(), Args.end(), MatchesAny(CompileAnalyzer.Inputs));
274
275 // Remove all inputs deemed unused for compilation.
276 End = std::remove_if(Args.begin(), End, MatchesAny(DiagClient.UnusedInputs));
277
278 // Remove the -c add above as well. It will be at the end right now.
Stephen Hines651f13c2014-04-23 16:59:28 -0700279 assert(strcmp(*(End - 1), "-c") == 0);
Edwin Vanec8f03422013-11-17 16:08:04 +0000280 --End;
281
282 Result = std::vector<std::string>(Args.begin() + 1, End);
283 return true;
284}
285
Manuel Klimek30318e62012-04-18 07:41:50 +0000286FixedCompilationDatabase *
287FixedCompilationDatabase::loadFromCommandLine(int &Argc,
288 const char **Argv,
289 Twine Directory) {
290 const char **DoubleDash = std::find(Argv, Argv + Argc, StringRef("--"));
291 if (DoubleDash == Argv + Argc)
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700292 return nullptr;
Edwin Vanec8f03422013-11-17 16:08:04 +0000293 std::vector<const char *> CommandLine(DoubleDash + 1, Argv + Argc);
Manuel Klimek30318e62012-04-18 07:41:50 +0000294 Argc = DoubleDash - Argv;
Edwin Vanec8f03422013-11-17 16:08:04 +0000295
296 std::vector<std::string> StrippedArgs;
297 if (!stripPositionalArgs(CommandLine, StrippedArgs))
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700298 return nullptr;
Edwin Vanec8f03422013-11-17 16:08:04 +0000299 return new FixedCompilationDatabase(Directory, StrippedArgs);
Manuel Klimek30318e62012-04-18 07:41:50 +0000300}
301
302FixedCompilationDatabase::
303FixedCompilationDatabase(Twine Directory, ArrayRef<std::string> CommandLine) {
304 std::vector<std::string> ToolCommandLine(1, "clang-tool");
305 ToolCommandLine.insert(ToolCommandLine.end(),
306 CommandLine.begin(), CommandLine.end());
Stephen Hines651f13c2014-04-23 16:59:28 -0700307 CompileCommands.push_back(
308 CompileCommand(Directory, std::move(ToolCommandLine)));
Manuel Klimek30318e62012-04-18 07:41:50 +0000309}
310
311std::vector<CompileCommand>
312FixedCompilationDatabase::getCompileCommands(StringRef FilePath) const {
313 std::vector<CompileCommand> Result(CompileCommands);
314 Result[0].CommandLine.push_back(FilePath);
315 return Result;
316}
317
Manuel Klimeka3c70962012-07-13 12:31:45 +0000318std::vector<std::string>
319FixedCompilationDatabase::getAllFiles() const {
320 return std::vector<std::string>();
321}
322
Argyrios Kyrtzidis7e96bfb2012-12-04 07:26:44 +0000323std::vector<CompileCommand>
324FixedCompilationDatabase::getAllCompileCommands() const {
325 return std::vector<CompileCommand>();
326}
327
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -0700328namespace clang {
329namespace tooling {
330
Daniel Jasper7fd90b02012-08-24 05:50:27 +0000331// This anchor is used to force the linker to link in the generated object file
332// and thus register the JSONCompilationDatabasePlugin.
333extern volatile int JSONAnchorSource;
334static int JSONAnchorDest = JSONAnchorSource;
Manuel Klimekcb971c62012-04-04 12:07:46 +0000335
336} // end namespace tooling
337} // end namespace clang