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
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
|
// Copyright (C) 2020 Alexis Jeandet.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include "mesonprojectparser.h"
#include "mesoninfoparser.h"
#include "mesonprojectmanagertr.h"
#include "mesonprojectnodes.h"
#include "mesontools.h"
#include "projecttree.h"
#include <coreplugin/messagemanager.h>
#include <coreplugin/messagemanager.h>
#include <projectexplorer/projectexplorer.h>
#include <projectexplorer/projectexplorerconstants.h>
#include <projectexplorer/taskhub.h>
#include <utils/async.h>
#include <utils/environment.h>
#include <utils/fileinprojectfinder.h>
#include <utils/stringutils.h>
#include <optional>
#include <coreplugin/progressmanager/processprogress.h>
using namespace Core;
using namespace ProjectExplorer;
using namespace Utils;
namespace MesonProjectManager {
namespace Internal {
static Q_LOGGING_CATEGORY(mesonProcessLog, "qtc.meson.buildsystem", QtWarningMsg);
struct CompilerArgs
{
QStringList args;
QStringList includePaths;
Macros macros;
};
static std::optional<QString> extractValueIfMatches(const QString &arg,
const QStringList &candidates)
{
for (const auto &flag : candidates) {
if (arg.startsWith(flag))
return arg.mid(flag.length());
}
return std::nullopt;
}
static std::optional<QString> extractInclude(const QString &arg)
{
return extractValueIfMatches(arg, {"-I", "/I", "-isystem", "-imsvc", "/imsvc"});
}
static std::optional<Macro> extractMacro(const QString &arg)
{
auto define = extractValueIfMatches(arg, {"-D", "/D"});
if (define)
return Macro::fromKeyValue(define->toLatin1());
auto undef = extractValueIfMatches(arg, {"-U", "/U"});
if (undef)
return Macro(undef->toLatin1(), MacroType::Undefine);
return std::nullopt;
}
static CompilerArgs splitArgs(const QStringList &args)
{
CompilerArgs splited;
for (const QString &arg : args) {
auto inc = extractInclude(arg);
if (inc) {
splited.includePaths << *inc;
} else {
auto macro = extractMacro(arg);
if (macro) {
splited.macros << *macro;
} else {
splited.args << arg;
}
}
}
return splited;
}
static QStringList toAbsolutePath(const FilePath &refPath, QStringList &pathList)
{
QStringList allAbs;
std::transform(std::cbegin(pathList),
std::cend(pathList),
std::back_inserter(allAbs),
[refPath](const QString &path) {
return refPath.resolvePath(path).toString();
});
return allAbs;
}
MesonProjectParser::MesonProjectParser(const Id &meson, const Environment &env, Project *project)
: m_env{env}
, m_meson{meson}
, m_projectName{project->displayName()}
{
// TODO re-think the way all BuildSystem/ProjectParser are tied
// I take project info here, I also take build and src dir later from
// functions args.
auto fileFinder = new FileInProjectFinder;
fileFinder->setProjectDirectory(project->projectDirectory());
fileFinder->setProjectFiles(project->files(Project::AllFiles));
m_outputParser.setFileFinder(fileFinder);
}
bool MesonProjectParser::configure(const FilePath &sourcePath,
const FilePath &buildPath,
const QStringList &args)
{
m_introType = IntroDataType::file;
m_srcDir = sourcePath;
m_buildDir = buildPath;
m_outputParser.setSourceDirectory(sourcePath);
auto cmd = MesonTools::mesonWrapper(m_meson)->configure(sourcePath, buildPath, args);
// see comment near m_pendingCommands declaration
m_pendingCommands.enqueue(
std::make_tuple(MesonTools::mesonWrapper(m_meson)->regenerate(sourcePath, buildPath),
false));
return run(cmd, m_env, m_projectName);
}
bool MesonProjectParser::wipe(const FilePath &sourcePath,
const FilePath &buildPath,
const QStringList &args)
{
return setup(sourcePath, buildPath, args, true);
}
bool MesonProjectParser::setup(const FilePath &sourcePath,
const FilePath &buildPath,
const QStringList &args,
bool forceWipe)
{
m_introType = IntroDataType::file;
m_srcDir = sourcePath;
m_buildDir = buildPath;
m_outputParser.setSourceDirectory(sourcePath);
auto cmdArgs = args;
if (forceWipe || isSetup(buildPath))
cmdArgs << "--wipe";
auto cmd = MesonTools::mesonWrapper(m_meson)->setup(sourcePath, buildPath, cmdArgs);
return run(cmd, m_env, m_projectName);
}
bool MesonProjectParser::parse(const FilePath &sourcePath, const FilePath &buildPath)
{
m_srcDir = sourcePath;
m_buildDir = buildPath;
m_outputParser.setSourceDirectory(sourcePath);
if (!isSetup(buildPath)) {
return parse(sourcePath);
} else {
m_introType = IntroDataType::file;
return startParser();
}
}
bool MesonProjectParser::parse(const FilePath &sourcePath)
{
m_srcDir = sourcePath;
m_introType = IntroDataType::stdo;
m_outputParser.setSourceDirectory(sourcePath);
return run(MesonTools::mesonWrapper(m_meson)->introspect(sourcePath),
m_env,
m_projectName,
true);
}
QList<BuildTargetInfo> MesonProjectParser::appsTargets() const
{
QList<BuildTargetInfo> apps;
for (const Target &target : m_parserResult.targets) {
if (target.type == Target::Type::executable) {
BuildTargetInfo bti;
bti.displayName = target.name;
bti.buildKey = Target::fullName(m_buildDir, target);
bti.displayNameUniquifier = bti.buildKey;
bti.targetFilePath = FilePath::fromString(target.fileName.first());
bti.workingDirectory = FilePath::fromString(target.fileName.first()).absolutePath();
bti.projectFilePath = FilePath::fromString(target.definedIn);
bti.usesTerminal = true;
apps.append(bti);
}
}
return apps;
}
bool MesonProjectParser::startParser()
{
m_parserFutureResult = Utils::asyncRun(
ProjectExplorerPlugin::sharedThreadPool(),
[processOutput = m_stdo, introType = m_introType,
buildDir = m_buildDir, srcDir = m_srcDir] {
if (introType == IntroDataType::file)
return extractParserResults(srcDir, MesonInfoParser::parse(buildDir));
else
return extractParserResults(srcDir, MesonInfoParser::parse(processOutput));
});
Utils::onFinished(m_parserFutureResult, this, &MesonProjectParser::update);
return true;
}
MesonProjectParser::ParserData *MesonProjectParser::extractParserResults(
const FilePath &srcDir, MesonInfoParser::Result &&parserResult)
{
auto rootNode = ProjectTree::buildTree(srcDir,
parserResult.targets,
parserResult.buildSystemFiles);
return new ParserData{std::move(parserResult), std::move(rootNode)};
}
static void addMissingTargets(QStringList &targetList)
{
// Not all targets are listed in introspection data
static const QString additionalTargets[] {
Constants::Targets::all,
Constants::Targets::clean,
Constants::Targets::install,
Constants::Targets::benchmark,
Constants::Targets::scan_build
};
for (const QString &target : additionalTargets) {
if (!targetList.contains(target))
targetList.append(target);
}
}
void MesonProjectParser::update(const QFuture<MesonProjectParser::ParserData *> &data)
{
auto parserData = data.result();
m_parserResult = std::move(parserData->data);
m_rootNode = std::move(parserData->rootNode);
m_targetsNames.clear();
for (const Target &target : m_parserResult.targets) {
m_targetsNames.push_back(Target::fullName(m_buildDir, target));
}
addMissingTargets(m_targetsNames);
m_targetsNames.sort();
delete parserData;
emit parsingCompleted(true);
}
RawProjectPart MesonProjectParser::buildRawPart(
const Target &target,
const Target::SourceGroup &sources,
const Toolchain *cxxToolchain,
const Toolchain *cToolchain)
{
RawProjectPart part;
part.setDisplayName(target.name);
part.setBuildSystemTarget(Target::fullName(m_buildDir, target));
part.setFiles(sources.sources + sources.generatedSources);
CompilerArgs flags = splitArgs(sources.parameters);
part.setMacros(flags.macros);
part.setIncludePaths(toAbsolutePath(m_buildDir, flags.includePaths));
part.setProjectFileLocation(target.definedIn);
if (sources.language == "cpp")
part.setFlagsForCxx({cxxToolchain, flags.args, {}});
else if (sources.language == "c")
part.setFlagsForC({cToolchain, flags.args, {}});
part.setQtVersion(m_qtVersion);
return part;
}
RawProjectParts MesonProjectParser::buildProjectParts(
const Toolchain *cxxToolchain, const Toolchain *cToolchain)
{
RawProjectParts parts;
for_each_source_group(m_parserResult.targets,
[&parts,
&cxxToolchain,
&cToolchain,
this](const Target &target, const Target::SourceGroup &sourceList) {
parts.push_back(
buildRawPart(target, sourceList, cxxToolchain, cToolchain));
});
return parts;
}
bool sourceGroupMatchesKit(const KitData &kit, const Target::SourceGroup &group)
{
if (group.language == "c")
return kit.cCompilerPath == group.compiler[0];
if (group.language == "cpp")
return kit.cxxCompilerPath == group.compiler[0];
return true;
}
bool MesonProjectParser::matchesKit(const KitData &kit)
{
bool matches = true;
for_each_source_group(m_parserResult.targets,
[&matches, &kit](const Target &, const Target::SourceGroup &sourceGroup) {
matches = matches && sourceGroupMatchesKit(kit, sourceGroup);
});
return matches;
}
bool MesonProjectParser::usesSameMesonVersion(const FilePath &buildPath)
{
auto info = MesonInfoParser::mesonInfo(buildPath);
auto meson = MesonTools::mesonWrapper(m_meson);
return info && meson && info->mesonVersion == meson->version();
}
bool MesonProjectParser::run(const Command &command,
const Environment &env,
const QString &projectName,
bool captureStdo)
{
if (!sanityCheck(command))
return false;
m_stdo.clear();
TaskHub::clearTasks(ProjectExplorer::Constants::TASK_CATEGORY_BUILDSYSTEM);
setupProcess(command, env, projectName, captureStdo);
m_elapsed.start();
m_process->start();
qCDebug(mesonProcessLog()) << "Starting:" << command.toUserOutput();
return true;
}
void MesonProjectParser::handleProcessDone()
{
if (m_process->result() != ProcessResult::FinishedWithSuccess)
TaskHub::addTask(BuildSystemTask{Task::TaskType::Error, m_process->exitMessage()});
m_stdo = m_process->readAllRawStandardOutput();
m_stderr = m_process->readAllRawStandardError();
const QString elapsedTime = formatElapsedTime(m_elapsed.elapsed());
MessageManager::writeSilently(elapsedTime);
if (m_process->exitCode() == 0 && m_process->exitStatus() == QProcess::NormalExit) {
if (m_pendingCommands.isEmpty())
startParser();
else {
// see comment near m_pendingCommands declaration
std::tuple<Command, bool> args = m_pendingCommands.dequeue();
run(std::get<0>(args), m_env, m_projectName, std::get<1>(args));
}
} else {
if (m_introType == IntroDataType::stdo) {
MessageManager::writeSilently(QString::fromLocal8Bit(m_stderr));
m_outputParser.readStdo(m_stderr);
}
emit parsingCompleted(false);
}
}
void MesonProjectParser::setupProcess(const Command &command, const Environment &env,
const QString &projectName, bool captureStdo)
{
if (m_process)
m_process.release()->deleteLater();
m_process.reset(new Process);
connect(m_process.get(), &Process::done, this, &MesonProjectParser::handleProcessDone);
if (!captureStdo) {
connect(m_process.get(), &Process::readyReadStandardOutput,
this, &MesonProjectParser::processStandardOutput);
connect(m_process.get(), &Process::readyReadStandardError,
this, &MesonProjectParser::processStandardError);
}
m_process->setWorkingDirectory(command.workDir());
m_process->setEnvironment(env);
MessageManager::writeFlashing(Tr::tr("Running %1 in %2.")
.arg(command.toUserOutput(), command.workDir().toUserOutput()));
m_process->setCommand(command.cmdLine());
ProcessProgress *progress = new ProcessProgress(m_process.get());
progress->setDisplayName(Tr::tr("Configuring \"%1\".").arg(projectName));
}
bool MesonProjectParser::sanityCheck(const Command &command) const
{
const auto &exe = command.cmdLine().executable();
if (!exe.exists()) {
//Should only reach this point if Meson exe is removed while a Meson project is opened
TaskHub::addTask(
BuildSystemTask{Task::TaskType::Error,
Tr::tr("Executable does not exist: %1").arg(exe.toUserOutput())});
return false;
}
if (!exe.toFileInfo().isExecutable()) {
TaskHub::addTask(
BuildSystemTask{Task::TaskType::Error,
Tr::tr("Command is not executable: %1").arg(exe.toUserOutput())});
return false;
}
return true;
}
void MesonProjectParser::processStandardOutput()
{
const auto data = m_process->readAllRawStandardOutput();
MessageManager::writeSilently(QString::fromLocal8Bit(data));
m_outputParser.readStdo(data);
}
void MesonProjectParser::processStandardError()
{
MessageManager::writeSilently(QString::fromLocal8Bit(m_process->readAllRawStandardError()));
}
} // namespace Internal
} // namespace MesonProjectManager
|