Skip to content

Latest commit

 

History

History
420 lines (345 loc) · 14.3 KB

ssukickstarter.cpp

File metadata and controls

420 lines (345 loc) · 14.3 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
/**
* @file ssukickstarter.cpp
* @copyright 2013 Jolla Ltd.
* @author Bernd Wachter <bwachter@lart.info>
* @date 2013
*/
#include <QStringList>
#include <QRegExp>
#include <QDirIterator>
#include "ssukickstarter.h"
May 24, 2013
May 24, 2013
13
#include "libssu/sandbox_p.h"
Apr 5, 2013
Apr 5, 2013
14
#include "libssu/ssurepomanager.h"
Aug 21, 2015
Aug 21, 2015
15
#include "libssu/ssuvariables_p.h"
16
17
18
19
20
21
22
23
24
#include "../constants.h"
/* TODO:
* - commands from the command section should be verified
* - allow overriding brand key
*/
Oct 10, 2016
Oct 10, 2016
25
26
27
28
29
30
31
32
33
SsuKickstarter::SsuKickstarter()
{
SsuDeviceInfo deviceInfo;
deviceModel = deviceInfo.deviceModel();
if ((ssu.deviceMode() & Ssu::RndMode) == Ssu::RndMode)
rndMode = true;
else
rndMode = false;
34
35
}
Oct 10, 2016
Oct 10, 2016
36
37
38
39
QStringList SsuKickstarter::commands()
{
SsuDeviceInfo deviceInfo(deviceModel);
QStringList result;
Oct 10, 2016
Oct 10, 2016
41
QHash<QString, QString> h;
Apr 5, 2013
Apr 5, 2013
42
Oct 10, 2016
Oct 10, 2016
43
deviceInfo.variableSection("kickstart-commands", &h);
Oct 10, 2016
Oct 10, 2016
45
// read commands from variable, ...
Oct 10, 2016
Oct 10, 2016
47
48
49
50
51
QHash<QString, QString>::const_iterator it = h.constBegin();
while (it != h.constEnd()) {
result.append(it.key() + " " + it.value());
it++;
}
Oct 10, 2016
Oct 10, 2016
53
return result;
54
55
}
Oct 10, 2016
Oct 10, 2016
56
57
58
59
60
61
62
63
64
65
66
QStringList SsuKickstarter::commandSection(const QString &section, const QString &description)
{
QStringList result;
SsuDeviceInfo deviceInfo(deviceModel);
QString commandFile;
QFile part;
QDir dir(Sandbox::map(QString("/%1/kickstart/%2/")
.arg(SSU_DATA_DIR)
.arg(section)));
May 24, 2017
May 24, 2017
67
if (dir.exists(replaceSpaces(deviceModel.toLower()))) {
Oct 10, 2016
Oct 10, 2016
68
commandFile = replaceSpaces(deviceModel.toLower());
May 24, 2017
May 24, 2017
69
} else if (dir.exists(replaceSpaces(deviceInfo.deviceVariant(true).toLower()))) {
Oct 10, 2016
Oct 10, 2016
70
commandFile = replaceSpaces(deviceInfo.deviceVariant(true).toLower());
May 24, 2017
May 24, 2017
71
} else if (dir.exists("default")) {
Oct 10, 2016
Oct 10, 2016
72
commandFile = "default";
May 24, 2017
May 24, 2017
73
} else {
Oct 10, 2016
Oct 10, 2016
74
75
76
77
78
79
if (description.isEmpty())
result.append("## No suitable configuration found in " + dir.path());
else
result.append("## No configuration for " + description + " found.");
return result;
}
Jun 13, 2013
Jun 13, 2013
80
Oct 10, 2016
Oct 10, 2016
81
QFile file(dir.path() + "/" + commandFile);
Jun 13, 2013
Jun 13, 2013
82
Oct 10, 2016
Oct 10, 2016
83
84
85
86
if (description.isEmpty())
result.append("### Commands from " + dir.path() + "/" + commandFile);
else
result.append("### " + description + " from " + commandFile);
Jun 13, 2013
Jun 13, 2013
87
Oct 10, 2016
Oct 10, 2016
88
89
90
91
92
if (file.open(QIODevice::ReadOnly | QIODevice::Text)) {
QTextStream in(&file);
while (!in.atEnd())
result.append(in.readLine());
}
Jun 13, 2013
Jun 13, 2013
93
Oct 10, 2016
Oct 10, 2016
94
return result;
Jun 13, 2013
Jun 13, 2013
95
96
}
Oct 10, 2016
Oct 10, 2016
97
98
99
100
QString SsuKickstarter::replaceSpaces(const QString &value)
{
QString retval = value;
return retval.replace(" ", "_");
Jun 13, 2013
Jun 13, 2013
101
102
}
Oct 10, 2016
Oct 10, 2016
103
104
105
106
107
108
109
110
111
112
113
114
QStringList SsuKickstarter::repos()
{
QStringList result;
SsuDeviceInfo deviceInfo(deviceModel);
SsuRepoManager repoManager;
QTextStream qerr(stderr);
QStringList repos = repoManager.repos(rndMode, deviceInfo, Ssu::BoardFilter);
foreach (const QString &repo, repos) {
QString repoUrl = ssu.repoUrl(repo, rndMode, QHash<QString, QString>(), repoOverride);
May 24, 2017
May 24, 2017
115
if (repoUrl.isEmpty()) {
Oct 10, 2016
Oct 10, 2016
116
117
118
119
120
121
122
123
124
125
126
qerr << "Repository " << repo << " does not have an URL, ignoring" << endl;
continue;
}
// Adaptation repos need to have separate naming so that when images are done
// the repository caches will not be mixed with each other.
if (repo.startsWith("adaptation")) {
result.append(QString("repo --name=%1-%2-%3%4 --baseurl=%5")
.arg(repo)
.arg(replaceSpaces(deviceModel))
.arg((rndMode ? repoOverride.value("rndRelease")
May 24, 2017
May 24, 2017
127
: repoOverride.value("release")))
Oct 10, 2016
Oct 10, 2016
128
.arg((rndMode ? "-" + repoOverride.value("flavourName")
May 24, 2017
May 24, 2017
129
: QString()))
Oct 10, 2016
Oct 10, 2016
130
131
.arg(repoUrl)
);
May 24, 2017
May 24, 2017
132
} else {
Oct 10, 2016
Oct 10, 2016
133
134
135
result.append(QString("repo --name=%1-%2%3 --baseurl=%4")
.arg(repo)
.arg((rndMode ? repoOverride.value("rndRelease")
May 24, 2017
May 24, 2017
136
: repoOverride.value("release")))
Oct 10, 2016
Oct 10, 2016
137
.arg((rndMode ? "-" + repoOverride.value("flavourName")
May 24, 2017
May 24, 2017
138
: QString()))
Oct 10, 2016
Oct 10, 2016
139
140
.arg(repoUrl)
);
May 24, 2017
May 24, 2017
141
}
Oct 10, 2016
Oct 10, 2016
142
}
143
Oct 10, 2016
Oct 10, 2016
144
145
return result;
}
146
May 24, 2017
May 24, 2017
147
QStringList SsuKickstarter::packagesSection(const QString &name)
Oct 10, 2016
Oct 10, 2016
148
149
{
QStringList result;
Oct 6, 2013
Oct 6, 2013
150
Oct 10, 2016
Oct 10, 2016
151
152
153
154
155
156
if (name == "packages") {
// insert @vendor configuration device
QString configuration = QString("@%1 Configuration %2")
.arg(repoOverride.value("brand"))
.arg(deviceModel);
result.append(configuration);
Oct 6, 2013
Oct 6, 2013
157
Oct 10, 2016
Oct 10, 2016
158
159
160
161
result.sort();
result.removeDuplicates();
} else {
result = commandSection(name);
Jun 12, 2013
Jun 12, 2013
162
}
163
Oct 10, 2016
Oct 10, 2016
164
165
166
result.prepend("%" + name);
result.append("%end");
return result;
167
168
169
}
// we intentionally don't support device-specific post scriptlets
May 24, 2017
May 24, 2017
170
QStringList SsuKickstarter::scriptletSection(const QString &name, int flags)
Oct 10, 2016
Oct 10, 2016
171
172
173
174
175
176
177
178
179
{
QStringList result;
QString path;
QDir dir;
if ((flags & NoChroot) == NoChroot)
path = Sandbox::map(QString("/%1/kickstart/%2_nochroot/")
.arg(SSU_DATA_DIR)
.arg(name));
Aug 30, 2013
Aug 30, 2013
180
else
Oct 10, 2016
Oct 10, 2016
181
182
183
184
185
186
187
188
189
path = Sandbox::map(QString("/%1/kickstart/%2/")
.arg(SSU_DATA_DIR)
.arg(name));
if ((flags & DeviceSpecific) == DeviceSpecific) {
if (dir.exists(path + "/" + replaceSpaces(deviceModel.toLower())))
path = path + "/" + replaceSpaces(deviceModel.toLower());
else
path = path + "/default";
190
191
}
Oct 10, 2016
Oct 10, 2016
192
193
194
195
196
197
198
199
200
201
202
203
204
205
dir.setPath(path);
QStringList scriptlets = dir.entryList(QDir::AllEntries | QDir::NoDot | QDir::NoDotDot,
QDir::Name);
foreach (const QString &scriptlet, scriptlets) {
QFile file(dir.filePath(scriptlet));
result.append("### begin " + scriptlet);
if (file.open(QIODevice::ReadOnly | QIODevice::Text)) {
QTextStream in(&file);
while (!in.atEnd())
result.append(in.readLine());
}
result.append("### end " + scriptlet);
}
Apr 2, 2013
Apr 2, 2013
206
Oct 10, 2016
Oct 10, 2016
207
208
209
if (!result.isEmpty()) {
result.prepend(QString("export SSU_RELEASE_TYPE=%1")
.arg(rndMode ? "rnd" : "release"));
Aug 30, 2013
Aug 30, 2013
210
Oct 10, 2016
Oct 10, 2016
211
212
213
214
215
216
217
if ((flags & NoChroot) == NoChroot)
result.prepend("%" + name + " --nochroot");
else
result.prepend("%" + name);
result.append("%end");
}
218
Oct 10, 2016
Oct 10, 2016
219
return result;
220
221
}
Oct 10, 2016
Oct 10, 2016
222
223
224
void SsuKickstarter::setRepoParameters(QHash<QString, QString> parameters)
{
repoOverride = parameters;
225
Oct 10, 2016
Oct 10, 2016
226
227
if (repoOverride.contains("model"))
deviceModel = repoOverride.value("model");
228
229
}
May 24, 2017
May 24, 2017
230
bool SsuKickstarter::write(const QString &kickstart)
Oct 10, 2016
Oct 10, 2016
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
{
QTextStream qerr(stderr);
QStringList commandSections;
// initialize with default 'part' for compatibility, as partitions
// used to work without configuration. It'll get replaced with
// configuration values, if found
commandSections.append("part");
// rnd mode should not come from the defaults
if (repoOverride.contains("rnd")) {
if (repoOverride.value("rnd") == "true")
rndMode = true;
else if (repoOverride.value("rnd") == "false")
rndMode = false;
Apr 5, 2013
Apr 5, 2013
246
}
Oct 10, 2016
Oct 10, 2016
247
248
249
250
QHash<QString, QString> defaults;
// get generic repo variables; domain and adaptation specific bits are not interesting
// in the kickstart
May 24, 2017
May 24, 2017
251
SsuRepoManager repoManager;
Oct 10, 2016
Oct 10, 2016
252
253
254
repoManager.repoVariables(&defaults, rndMode);
// overwrite with kickstart defaults
May 24, 2017
May 24, 2017
255
SsuDeviceInfo deviceInfo(deviceModel);
Oct 10, 2016
Oct 10, 2016
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
deviceInfo.variableSection("kickstart-defaults", &defaults);
if (deviceInfo.variable("kickstart-defaults", "commandSections")
.canConvert(QMetaType::QStringList)) {
commandSections =
deviceInfo.variable("kickstart-defaults", "commandSections").toStringList();
}
QHash<QString, QString>::const_iterator it = defaults.constBegin();
while (it != defaults.constEnd()) {
if (!repoOverride.contains(it.key()))
repoOverride.insert(it.key(), it.value());
it++;
}
// in rnd mode both rndRelease an release should be the same,
// as the variable name used is %(release)
if (rndMode && repoOverride.contains("rndRelease"))
repoOverride.insert("release", repoOverride.value("rndRelease"));
// release mode variables should not contain flavourName
if (!rndMode && repoOverride.contains("flavourName"))
repoOverride.remove("flavourName");
//TODO: check for mandatory keys, brand, ..
if (!repoOverride.contains("deviceModel"))
repoOverride.insert("deviceModel", deviceInfo.deviceModel());
// do sanity checking on the model
if (deviceInfo.contains() == false) {
qerr << "Device model '" << deviceInfo.deviceModel() << "' does not exist" << endl;
if (repoOverride.value("force") != "true")
return false;
}
QRegExp regex(" {2,}", Qt::CaseSensitive, QRegExp::RegExp2);
if (regex.indexIn(deviceInfo.deviceModel(), 0) != -1) {
qerr << "Device model '" << deviceInfo.deviceModel()
<< "' contains multiple consecutive spaces." << endl;
if (deviceInfo.contains())
qerr << "Since the model exists it looks like your configuration is broken." << endl;
return false;
Jan 1, 2015
Jan 1, 2015
298
}
Oct 10, 2016
Oct 10, 2016
299
300
301
302
303
304
305
306
307
308
if (!repoOverride.contains("brand")) {
qerr << "No brand set. Check your configuration." << endl;
return false;
}
bool opened = false;
QString outputDir = repoOverride.value("outputdir");
if (!outputDir.isEmpty()) outputDir.append("/");
May 24, 2017
May 24, 2017
309
310
QFile ks;
Oct 10, 2016
Oct 10, 2016
311
if (kickstart.isEmpty()) {
May 24, 2017
May 24, 2017
312
313
SsuVariables var;
Oct 10, 2016
Oct 10, 2016
314
315
316
317
318
319
320
321
322
323
324
325
if (repoOverride.contains("filename")) {
QString fileName = QString("%1%2")
.arg(outputDir)
.arg(replaceSpaces(var.resolveString(repoOverride.value("filename"),
&repoOverride)));
ks.setFileName(fileName);
opened = ks.open(QIODevice::WriteOnly);
} else {
qerr << "No filename specified, and no default filename configured" << endl;
return false;
}
May 24, 2017
May 24, 2017
326
} else if (kickstart == "-") {
Oct 10, 2016
Oct 10, 2016
327
opened = ks.open(stdout, QIODevice::WriteOnly);
May 24, 2017
May 24, 2017
328
} else {
Oct 10, 2016
Oct 10, 2016
329
330
331
332
333
334
335
ks.setFileName(outputDir + kickstart);
opened = ks.open(QIODevice::WriteOnly);
}
if (!opened) {
qerr << "Unable to write output file " << ks.fileName() << ": " << ks.errorString() << endl;
return false;
May 24, 2017
May 24, 2017
336
} else if (!ks.fileName().isEmpty()) {
Oct 10, 2016
Oct 10, 2016
337
qerr << "Writing kickstart to " << ks.fileName() << endl;
May 24, 2017
May 24, 2017
338
}
Oct 10, 2016
Oct 10, 2016
339
340
341
342
343
344
345
346
347
348
349
QString displayName = QString("# DisplayName: %1 %2/%3 (%4) %5")
.arg(repoOverride.value("brand"))
.arg(deviceInfo.deviceModel())
.arg(repoOverride.value("arch"))
.arg((rndMode ? "rnd"
: "release"))
.arg(repoOverride.value("version"));
QStringList featuresList = deviceInfo.value("img-features").toStringList();
Sep 30, 2017
Sep 30, 2017
350
351
352
353
// Add developer-mode feature to rnd images by default
if (rndMode)
featuresList << "developer-mode";
Oct 10, 2016
Oct 10, 2016
354
355
356
357
358
QString suggestedFeatures;
// work around some idiotic JS list parsing on our side by terminating one-element list by comma
if (featuresList.count() == 1)
suggestedFeatures = QString("# SuggestedFeatures: %1,")
Sep 30, 2017
Sep 30, 2017
359
.arg(featuresList.join(", "));
Oct 10, 2016
Oct 10, 2016
360
361
else if (featuresList.count() > 1)
suggestedFeatures = QString("# SuggestedFeatures: %1")
Sep 30, 2017
Sep 30, 2017
362
.arg(featuresList.join(", "));
Oct 10, 2016
Oct 10, 2016
363
364
365
366
367
368
369
370
371
372
373
374
QString imageType = "fs";
if (!deviceInfo.value("img-type").toString().isEmpty())
imageType = deviceInfo.value("img-type").toString();
QString imageArchitecture = "armv7hl";
if (!deviceInfo.value("img-arch").toString().isEmpty())
imageArchitecture = deviceInfo.value("img-arch").toString();
QString kickstartType = QString("# KickstartType: %1")
.arg((rndMode ? "rnd" : "release"));
May 24, 2017
May 24, 2017
375
QTextStream kout;
Oct 10, 2016
Oct 10, 2016
376
377
378
kout.setDevice(&ks);
kout << displayName << endl;
kout << kickstartType << endl;
Sep 6, 2017
Sep 6, 2017
379
kout << "# DeviceModel: " << deviceInfo.deviceModel() << endl;
Sep 7, 2017
Sep 7, 2017
380
kout << "# DeviceVariant: " << deviceInfo.deviceVariant(true) << endl;
Oct 10, 2016
Oct 10, 2016
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
417
418
419
if (!suggestedFeatures.isEmpty())
kout << suggestedFeatures << endl;
kout << "# SuggestedImageType: " << imageType << endl;
kout << "# SuggestedArchitecture: " << imageArchitecture << endl << endl;
kout << commands().join("\n") << endl << endl;
foreach (const QString &section, commandSections) {
kout << commandSection(section).join("\n") << endl << endl;
}
// this allows simple search and replace postprocessing of the repos section
// to overcome shortcomings of the "keep image creation simple token based"
// approach
// TODO: QHash looks messy in the config, provide tool to edit it
QString repoSection = repos().join("\n");
if (deviceInfo.variable("kickstart-defaults", "urlPostprocess")
.canConvert(QMetaType::QVariantHash)) {
QHash<QString, QVariant> postproc =
deviceInfo.variable("kickstart-defaults", "urlPostprocess").toHash();
QHash<QString, QVariant>::const_iterator it = postproc.constBegin();
while (it != postproc.constEnd()) {
QRegExp regex(it.key(), Qt::CaseSensitive, QRegExp::RegExp2);
repoSection.replace(regex, it.value().toString());
it++;
}
}
kout << repoSection << endl << endl;
kout << packagesSection("packages").join("\n") << endl << endl;
kout << packagesSection("attachment").join("\n") << endl << endl;
// TODO: now that extending scriptlet section is might make sense to make it configurable
kout << scriptletSection("pre", Chroot).join("\n") << endl << endl;
kout << scriptletSection("post", Chroot).join("\n") << endl << endl;
kout << scriptletSection("post", NoChroot).join("\n") << endl << endl;
kout << scriptletSection("pack", DeviceSpecific).join("\n") << endl << endl;
// POST, die-on-error
return true;
420
}