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
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include "jsonkitspage.h"
#include "jsonwizard.h"
#include "../kit.h"
#include "../project.h"
#include "../projectexplorertr.h"
#include "../projectmanager.h"
#include <coreplugin/featureprovider.h>
#include <utils/algorithm.h>
#include <utils/macroexpander.h>
#include <utils/mimeutils.h>
#include <utils/qtcassert.h>
using namespace Core;
using namespace Utils;
namespace ProjectExplorer {
const char KEY_FEATURE[] = "feature";
const char KEY_CONDITION[] = "condition";
JsonKitsPage::JsonKitsPage(QWidget *parent) : TargetSetupPage(parent)
{ }
void JsonKitsPage::initializePage()
{
auto wiz = qobject_cast<JsonWizard *>(wizard());
QTC_ASSERT(wiz, return);
connect(wiz, &JsonWizard::filesPolished, this, &JsonKitsPage::setupProjectFiles);
const Id platform = Id::fromString(wiz->stringValue(QLatin1String("Platform")));
const QSet<Id> preferred
= evaluate(m_preferredFeatures, wiz->value(QLatin1String("PreferredFeatures")), wiz);
const QSet<Id> required = evaluate(m_requiredFeatures,
wiz->value(QLatin1String("RequiredFeatures")),
wiz);
const FilePath projectFilePath = wiz->expander()->expand(
Utils::FilePath::fromString(unexpandedProjectPath()));
setTasksGenerator([required, preferred, platform, projectFilePath](const Kit *k) -> Tasks {
if (!k->hasFeatures(required))
return {CompileTask(Task::Error, Tr::tr("At least one required feature is not present."))};
if (platform.isValid() && !k->supportedPlatforms().contains(platform))
return {CompileTask(Task::Unknown, Tr::tr("Platform is not supported."))};
if (!k->hasFeatures(preferred))
return {
CompileTask(Task::Unknown, Tr::tr("At least one preferred feature is not present."))};
if (const Task t = Project::checkBuildDevice(k, projectFilePath); !t.isNull())
return {t};
if (const auto issuesGenerator = ProjectManager::getIssuesGenerator(projectFilePath))
return issuesGenerator(k);
return {};
});
setProjectAndPath(nullptr, projectFilePath);
TargetSetupPage::initializePage();
}
void JsonKitsPage::cleanupPage()
{
auto wiz = qobject_cast<JsonWizard *>(wizard());
QTC_ASSERT(wiz, return);
disconnect(wiz, &JsonWizard::allDone, this, nullptr);
TargetSetupPage::cleanupPage();
}
void JsonKitsPage::setUnexpandedProjectPath(const QString &path)
{
m_unexpandedProjectPath = path;
}
QString JsonKitsPage::unexpandedProjectPath() const
{
return m_unexpandedProjectPath;
}
void JsonKitsPage::setRequiredFeatures(const QVariant &data)
{
m_requiredFeatures = parseFeatures(data);
}
void JsonKitsPage::setPreferredFeatures(const QVariant &data)
{
m_preferredFeatures = parseFeatures(data);
}
void JsonKitsPage::setupProjectFiles(const JsonWizard::GeneratorFiles &files)
{
for (const JsonWizard::GeneratorFile &f : files) {
if (f.file.attributes() & GeneratedFile::OpenProjectAttribute) {
Project *project = ProjectManager::openProject(Utils::mimeTypeForFile(f.file.filePath()),
f.file.filePath().absoluteFilePath());
if (project) {
setupProject(project);
project->saveSettings();
delete project;
}
}
}
}
QSet<Id> JsonKitsPage::evaluate(const QList<JsonKitsPage::ConditionalFeature> &list,
const QVariant &defaultSet, JsonWizard *wiz)
{
if (list.isEmpty())
return Id::fromStringList(defaultSet.toStringList());
QSet<Id> features;
for (const ConditionalFeature &f : list) {
if (JsonWizard::boolFromVariant(f.condition, wiz->expander()))
features.insert(Id::fromString(wiz->expander()->expand(f.feature)));
}
return features;
}
QList<JsonKitsPage::ConditionalFeature> JsonKitsPage::parseFeatures(const QVariant &data,
QString *errorMessage)
{
QList<ConditionalFeature> result;
if (errorMessage)
errorMessage->clear();
if (data.isNull())
return result;
if (data.typeId() != QMetaType::QVariantList) {
if (errorMessage)
*errorMessage = Tr::tr("Feature list is set and not of type list.");
return result;
}
const QList<QVariant> elements = data.toList();
for (const QVariant &element : elements) {
if (element.typeId() == QMetaType::QString) {
result.append({ element.toString(), QVariant(true) });
} else if (element.typeId() == QMetaType::QVariantMap) {
const QVariantMap obj = element.toMap();
const QString feature = obj.value(QLatin1String(KEY_FEATURE)).toString();
if (feature.isEmpty()) {
if (errorMessage) {
*errorMessage = Tr::tr("No \"%1\" key found in feature list object.")
.arg(QLatin1String(KEY_FEATURE));
}
return QList<ConditionalFeature>();
}
result.append({ feature, obj.value(QLatin1String(KEY_CONDITION), true) });
} else {
if (errorMessage)
*errorMessage = Tr::tr("Feature list element is not a string or object.");
return QList<ConditionalFeature>();
}
}
return result;
}
} // namespace ProjectExplorer
|