-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathmain.cpp
319 lines (261 loc) · 11.9 KB
/
main.cpp
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
// system includes
#include <filesystem>
#include <iostream>
#include <set>
#include <sstream>
#include <tuple>
#include <vector>
// library includes
#include <linuxdeploy/core/appdir.h>
#include <linuxdeploy/core/elf_file.h>
#include <linuxdeploy/core/log.h>
#include <linuxdeploy/util/util.h>
// local includes
#include "qt-modules.h"
#include "util.h"
#include "deployment.h"
#include "deployers/PluginsDeployerFactory.h"
namespace fs = std::filesystem;
using namespace linuxdeploy::core;
using namespace linuxdeploy::util::misc;
using namespace linuxdeploy::core::log;
using namespace linuxdeploy::plugin::qt;
int main(const int argc, const char *const *const argv) {
// set up verbose logging if $DEBUG is set
if (getenv("DEBUG"))
ldLog::setVerbosity(LD_DEBUG);
args::ArgumentParser parser("linuxdeploy Qt plugin",
"Bundles Qt resources. For use with an existing AppDir, created by linuxdeploy.");
args::HelpFlag help(parser, "help", "Display this help text", {'h', "help"});
args::ValueFlag<fs::path> appDirPath(parser, "appdir path", "Path to an existing AppDir", {"appdir"});
args::ValueFlagList<std::string> excludeLibraryPatterns(parser, "pattern",
"Shared library to exclude from deployment (glob pattern)",
{"exclude-library"});
args::ValueFlagList<std::string> extraModules(parser, "module",
"Extra Qt module to deploy (specified by name, filename or path)",
{'m', "extra-module"});
args::Flag pluginType(parser, "", "Print plugin type and exit", {"plugin-type"});
args::Flag pluginApiVersion(parser, "", "Print plugin API version and exit", {"plugin-api-version"});
args::Flag printVersion(parser, "", "Print plugin version and exit", {"plugin-version"});
try {
parser.ParseCLI(argc, argv);
} catch (const args::Help &) {
std::cerr << parser;
return 0;
} catch (const args::ParseError &) {
std::cerr << parser;
return 1;
}
if (pluginType) {
std::cout << "input" << std::endl;
return 0;
}
if (pluginApiVersion) {
std::cout << "0" << std::endl;
return 0;
}
// always show version statement
std::cerr << "linuxdeploy-plugin-qt version " << LD_VERSION
<< " (git commit ID " << LD_GIT_COMMIT << "), "
<< LD_BUILD_NUMBER << " built on " << LD_BUILD_DATE << std::endl;
if (printVersion) {
return 0;
}
if (!appDirPath) {
ldLog() << LD_ERROR << "--appdir parameter required" << std::endl;
std::cout << std::endl << parser;
return 1;
}
if (!fs::is_directory(appDirPath.Get())) {
ldLog() << LD_ERROR << "No such directory:" << appDirPath.Get() << std::endl;
return 1;
}
auto qmakePath = findQmake();
if (qmakePath.empty()) {
ldLog() << LD_ERROR << "Could not find qmake, please install or provide path using $QMAKE" << std::endl;
return 1;
}
if (!fs::exists(qmakePath)) {
ldLog() << LD_ERROR << "No such file or directory:" << qmakePath << std::endl;
return 1;
}
ldLog() << "Using qmake:" << qmakePath << std::endl;
auto qmakeVars = queryQmake(qmakePath);
if (qmakeVars.empty()) {
ldLog() << LD_ERROR << "Failed to query Qt paths using qmake -query" << std::endl;
return 1;
}
const fs::path qtPluginsPath = qmakeVars["QT_INSTALL_PLUGINS"];
const fs::path qtLibexecsPath = qmakeVars["QT_INSTALL_LIBEXECS"];
const fs::path qtDataPath = qmakeVars["QT_INSTALL_DATA"];
const fs::path qtTranslationsPath = qmakeVars["QT_INSTALL_TRANSLATIONS"];
const fs::path qtBinsPath = qmakeVars["QT_INSTALL_BINS"];
const fs::path qtLibsPath = qmakeVars["QT_INSTALL_LIBS"];
const fs::path qtInstallQmlPath = qmakeVars["QT_INSTALL_QML"];
const std::string qtVersion = qmakeVars["QT_VERSION"];
if (qtVersion.length() < 2) {
ldLog() << LD_ERROR << "Failed to query QT_VERSION using qmake -query" << std::endl;
return 1;
}
int qtMajorVersion = std::stoi(qtVersion, nullptr, 10);
int qtMinorVersion = std::stoi(qtVersion.substr(2), nullptr, 10);
if (qtMajorVersion < 5) {
ldLog() << std::endl << LD_WARNING << "Minimum Qt version supported is 5" << std::endl;
qtMajorVersion = 5;
}
else if (qtMajorVersion > 6) {
ldLog() << std::endl << LD_WARNING << "Maximum Qt version supported is 6" << std::endl;
qtMajorVersion = 6;
}
ldLog() << std::endl << "Using Qt version: " << qtVersion << " (" << qtMajorVersion << ")" << std::endl;
appdir::AppDir appDir(appDirPath.Get());
if (const auto patterns = excludeLibraryPatterns.Get(); !patterns.empty()) {
appDir.setExcludeLibraryPatterns(patterns);
}
// allow disabling copyright files deployment via environment variable
if (getenv("DISABLE_COPYRIGHT_FILES_DEPLOYMENT") != nullptr) {
ldLog() << std::endl << LD_WARNING << "Copyright files deployment disabled" << std::endl;
appDir.setDisableCopyrightFilesDeployment(true);
}
// check which libraries and plugins the binaries and libraries depend on
std::set<std::string> libraryNames;
for (const auto &path : appDir.listSharedLibraries()) {
libraryNames.insert(path.filename().string());
try {
for (const auto &dependency : elf_file::ElfFile(path).traceDynamicDependencies()) {
libraryNames.insert(dependency.filename().string());
}
} catch (const elf_file::ElfFileParseError &e) {
ldLog() << LD_DEBUG << "Failed to parse file as ELF file:" << path << std::endl;
}
}
{
ldLog() << LD_DEBUG << "Libraries to consider: ";
for (const auto &libraryName : libraryNames)
ldLog() << " " << libraryName;
ldLog() << std::endl;
}
// check for Qt modules
std::vector<QtModule> foundQtModules;
std::vector<QtModule> extraQtModules;
auto matchesQtModule = [](std::string libraryName, const QtModule &module) {
// extract filename if argument is path
if (fs::is_regular_file(libraryName))
libraryName = fs::path(libraryName).filename().string();
// adding the trailing dot makes sure e.g., libQt5WebEngineCore won't be matched as webengine and webenginecore
const auto &libraryPrefix = module.libraryFilePrefix + ".";
// match plugin filename
if (strncmp(libraryName.c_str(), libraryPrefix.c_str(), libraryPrefix.size()) == 0) {
ldLog() << LD_DEBUG << "-> matches library filename, found module:" << module.name << std::endl;
return true;
}
// match plugin name
if (strcmp(libraryName.c_str(), module.name.c_str()) == 0) {
ldLog() << LD_DEBUG << "-> matches module name, found module:" << module.name << std::endl;
return true;
}
return false;
};
const std::vector<QtModule>& qtModules = getQtModules(qtMajorVersion);
std::copy_if(qtModules.begin(), qtModules.end(), std::back_inserter(foundQtModules),
[&matchesQtModule, &libraryNames](const QtModule &module) {
return std::find_if(libraryNames.begin(), libraryNames.end(),
[&matchesQtModule, &module](const std::string &libraryName) {
return matchesQtModule(libraryName, module);
}) != libraryNames.end();
});
std::vector<std::string> extraModulesFromEnv;
const auto* const extraModulesFromEnvData = []() -> char* {
auto* ret = getenv("EXTRA_QT_MODULES");
if (ret == nullptr) {
ret = getenv("EXTRA_QT_PLUGINS");
if (ret) {
ldLog() << std::endl << LD_WARNING << "Using deprecated EXTRA_QT_PLUGINS env var" << std::endl;
}
}
return ret;
}();
if (extraModulesFromEnvData != nullptr)
extraModulesFromEnv = linuxdeploy::util::split(std::string(extraModulesFromEnvData), ';');
for (const auto& modulesList : {static_cast<std::vector<std::string>>(extraModules.Get()), extraModulesFromEnv}) {
std::copy_if(qtModules.begin(), qtModules.end(), std::back_inserter(extraQtModules),
[&matchesQtModule, &libraryNames, &modulesList](const QtModule &module) {
return std::find_if(modulesList.begin(), modulesList.end(),
[&matchesQtModule, &module](const std::string &libraryName) {
return matchesQtModule(libraryName, module);
}) != modulesList.end();
}
);
}
{
std::set<std::string> moduleNames;
std::for_each(foundQtModules.begin(), foundQtModules.end(), [&moduleNames](const QtModule &module) {
moduleNames.insert(module.name);
});
ldLog() << "Found Qt modules:" << join(moduleNames) << std::endl;
}
{
std::set<std::string> moduleNames;
std::for_each(extraQtModules.begin(), extraQtModules.end(), [&moduleNames](const QtModule &module) {
moduleNames.insert(module.name);
});
ldLog() << "Extra Qt modules:" << join(moduleNames) << std::endl;
}
if (foundQtModules.empty() && extraQtModules.empty()) {
ldLog() << LD_ERROR << "Could not find Qt modules to deploy" << std::endl;
return 1;
}
ldLog() << std::endl;
ldLog() << "QT_INSTALL_LIBS:" << qtLibsPath << std::endl;
std::ostringstream newLibraryPath;
newLibraryPath << qtLibsPath.string() << ":" << getenv("LD_LIBRARY_PATH");
setenv("LD_LIBRARY_PATH", newLibraryPath.str().c_str(), true);
ldLog() << "Prepending QT_INSTALL_LIBS path to $LD_LIBRARY_PATH, new $LD_LIBRARY_PATH:" << newLibraryPath.str()
<< std::endl;
std::ostringstream newPath;
newPath << qtBinsPath.string() << ":" << qtLibexecsPath.string() << ":" << getenv("PATH");
setenv("PATH", newPath.str().c_str(), true);
ldLog() << "Prepending QT_INSTALL_BINS and QT_INSTALL_LIBEXECS paths to $PATH, new $PATH:" << newPath.str() << std::endl;
auto qtModulesToDeploy = foundQtModules;
qtModulesToDeploy.reserve(extraQtModules.size());
std::copy(extraQtModules.begin(), extraQtModules.end(), std::back_inserter(qtModulesToDeploy));
PluginsDeployerFactory deployerFactory(
appDir,
qtPluginsPath,
qtLibexecsPath,
qtInstallQmlPath,
qtTranslationsPath,
qtDataPath,
qtMajorVersion,
qtMinorVersion
);
for (const auto& module : qtModulesToDeploy) {
ldLog() << std::endl << "-- Deploying module:" << module.name << "--" << std::endl;
auto deployers = deployerFactory.getDeployers(module.name);
for (const auto& deployer : deployers)
if (!deployer->deploy())
return 1;
}
ldLog() << std::endl << "-- Deploying translations --" << std::endl;
if (!deployTranslations(appDir, qtTranslationsPath, qtModulesToDeploy)) {
ldLog() << LD_ERROR << "Failed to deploy translations" << std::endl;
return 1;
}
ldLog() << std::endl << "-- Executing deferred operations --" << std::endl;
if (!appDir.executeDeferredOperations()) {
ldLog() << LD_ERROR << "Failed to execute deferred operations" << std::endl;
return 1;
}
ldLog() << std::endl << "-- Creating qt.conf in AppDir --" << std::endl;
if (!createQtConf(appDir)) {
ldLog() << LD_ERROR << "Failed to create qt.conf in AppDir" << std::endl;
return 1;
}
ldLog() << std::endl << "-- Creating AppRun hook --" << std::endl;
if (!createAppRunHook(appDir)) {
ldLog() << LD_ERROR << "Failed to create AppRun hook in AppDir" << std::endl;
return 1;
}
ldLog() << std::endl << "Done!" << std::endl;
return 0;
}