CQtDeployer/Deploy/pluginsparser.cpp

173 lines
6.4 KiB
C++
Raw Normal View History

2019-09-23 16:46:57 +03:00
/*
2019-12-08 13:57:20 +03:00
* Copyright (C) 2018-2020 QuasarApp.
2019-09-23 16:46:57 +03:00
* Distributed under the lgplv3 software license, see the accompanying
* Everyone is permitted to copy and distribute verbatim copies
* of this license document, but changing it is not allowed.
*/
2020-07-02 16:00:34 +03:00
#include "deployconfig.h"
2019-08-31 22:22:26 +03:00
#include "pluginsparser.h"
#include <QDir>
#include <dependenciesscanner.h>
2019-09-04 15:44:45 +03:00
#include <quasarapp.h>
2019-08-31 22:22:26 +03:00
2019-09-14 15:51:23 +03:00
PluginsParser::PluginsParser(){
2019-08-31 22:22:26 +03:00
}
static const PluginModuleMapping pluginModuleMappings[] =
{
2019-09-03 18:15:05 +03:00
{"qml1tooling", DeployCore::QtModule::QtDeclarativeModule},
{"gamepads", DeployCore::QtModule::QtGamePadModule},
{"accessible", DeployCore::QtModule::QtGuiModule},
{"iconengines", DeployCore::QtModule::QtGuiModule},
{"imageformats", DeployCore::QtModule::QtGuiModule},
{"platforms", DeployCore::QtModule::QtGuiModule},
2020-03-28 13:06:12 +03:00
{"platformthemes", DeployCore::QtModule::QtGuiModule},
2019-09-03 18:15:05 +03:00
{"platforminputcontexts", DeployCore::QtModule::QtGuiModule},
{"virtualkeyboard", DeployCore::QtModule::QtGuiModule},
{"geoservices", DeployCore::QtModule::QtLocationModule},
{"audio", DeployCore::QtModule::QtMultimediaModule},
{"mediaservice", DeployCore::QtModule::QtMultimediaModule},
{"playlistformats", DeployCore::QtModule::QtMultimediaModule},
{"bearer", DeployCore::QtModule::QtNetworkModule},
{"position", DeployCore::QtModule::QtPositioningModule},
{"printsupport", DeployCore::QtModule::QtPrintSupportModule},
{"scenegraph", DeployCore::QtModule::QtQuickModule},
2019-09-14 15:51:23 +03:00
{"qmltooling", DeployCore::QtModule::QtQmlToolingModule},
2019-09-03 18:15:05 +03:00
{"sensors", DeployCore::QtModule::QtSensorsModule},
{"sensorgestures", DeployCore::QtModule::QtSensorsModule},
{"canbus", DeployCore::QtModule::QtSerialBusModule},
{"sqldrivers", DeployCore::QtModule::QtSqlModule},
{"texttospeech", DeployCore::QtModule::QtTextToSpeechModule},
{"qtwebengine", DeployCore::QtModule::QtWebEngineModule | DeployCore::QtModule::QtWebEngineCoreModule | DeployCore::QtModule::QtWebEngineWidgetsModule},
{"styles", DeployCore::QtModule::QtWidgetsModule},
{"sceneparsers", DeployCore::QtModule::Qt3DRendererModule},
{"renderplugins", DeployCore::QtModule::Qt3DRendererModule},
{"geometryloaders", DeployCore::QtModule::Qt3DRendererModule},
{"webview", DeployCore::QtModule::QtWebViewModule},
{"xcbglintegrations", DeployCore::QtModule::QtGuiModule},
{"wayland-decoration-client", DeployCore::QtModule::QtGuiModule},
{"wayland-graphics-integration-client", DeployCore::QtModule::QtGuiModule},
{"wayland-graphics-integration-server", DeployCore::QtModule::QtGuiModule},
{"wayland-shell-integration", DeployCore::QtModule::QtGuiModule},
2019-09-02 16:36:46 +03:00
2019-08-31 22:22:26 +03:00
};
2020-07-02 16:00:34 +03:00
static const PlatformMapping platformMappings[] =
{
{"qminimal", Unix | Win },
{"minimalegl", Unix | Win },
{"qandroid", UnknownPlatform },
{"qbsdfb", UnknownPlatform },
{"qcocoa", UnknownPlatform },
{"qdirect2d", Win },
{"qdirectfb", UnknownPlatform },
{"qeglfs", Unix_ARM },
{"qhaiku", UnknownPlatform },
{"qios", UnknownPlatform },
{"qlinuxfb", Unix_ARM },
{"qmirclient", Unix },
{"qopenwf", Unix },
{"qqnx", UnknownPlatform },
{"qvnc", Unix_x86_64 },
{"qwasm", UnknownPlatform },
{"qwindows", Win },
{"qwinrt", Win },
{"qxcb", Unix },
{"webgl", WebGl },
{"qwayland-xcomposite-glx", Unix_x86_64},
{"qwayland-xcomposite-egl", Unix_x86_64},
{"qwayland-generic", Unix_x86_64},
{"qwayland-egl", Unix_x86_64}
};
2019-08-31 22:22:26 +03:00
quint64 PluginsParser::qtModuleForPlugin(const QString &subDirName) {
const auto end = std::end(pluginModuleMappings);
const auto result =
std::find_if(std::begin(pluginModuleMappings), end,
[&subDirName] (const PluginModuleMapping &m) {
return subDirName == QLatin1String(m.directoryName);
});
return result != end ? result->module : 0; // "designer"
}
2020-07-02 16:00:34 +03:00
Platform PluginsParser::platformForPlugin(const QString &name) {
const auto end = std::end(platformMappings);
const auto result =
std::find_if(std::begin(platformMappings), end,
[&name] (const PlatformMapping &m) {
return name == QLatin1String(m._pluginName);
});
return (result != end) ? result->_platform : Platform::UnknownPlatform; // "designer"
}
QString PluginsParser::getPluginNameFromFile(const QString &baseNaem) const {
if (baseNaem.left(3) == "lib") {
return baseNaem.right(baseNaem.size() - 3);
}
return baseNaem;
}
2019-08-31 22:22:26 +03:00
bool PluginsParser::scan(const QString& pluginPath,
2019-09-14 15:51:23 +03:00
QStringList &resDependencies,
DeployCore::QtModule qtModules) {
2019-08-31 22:22:26 +03:00
2019-09-04 15:44:45 +03:00
auto plugins = QDir(pluginPath).entryInfoList(QDir::Dirs | QDir::NoDotAndDotDot);
2020-04-04 15:43:46 +03:00
QuasarAppUtils::Params::log("Modules Number :" + QString::number(qtModules), QuasarAppUtils::Info);
2019-08-31 22:22:26 +03:00
2020-01-12 16:43:03 +03:00
for (const auto &plugin: plugins) {
2019-09-04 15:44:45 +03:00
auto module = qtModuleForPlugin(plugin.fileName());
2019-09-14 15:51:23 +03:00
if (qtModules & module) {
2019-09-04 15:44:45 +03:00
2020-04-04 15:43:46 +03:00
QuasarAppUtils::Params::log("deploye plugin : " + plugin.absoluteFilePath(), QuasarAppUtils::Info);
2019-09-04 15:44:45 +03:00
2019-08-31 22:22:26 +03:00
resDependencies.append(plugin.absoluteFilePath());
}
}
return true;
}
2020-07-02 16:00:34 +03:00
void PluginsParser::scanPlatforms(Platform platform, QStringList &resDependencies) {
const DeployConfig* cnf = DeployCore::_config;
QString platformPluginPath = cnf->qtDir.getPlugins() + "/platforms/";
auto plugins = QDir(platformPluginPath).entryInfoList(QDir::Files | QDir::NoDotAndDotDot);
for (const auto &plugin: plugins) {
QStringList ignoreList = {{".so.debug"}, {"d.dll"}, {".pdb"}};
bool ignore = false;
for (const auto& i: ignoreList) {
if (plugin.fileName().contains(i, ONLY_WIN_CASE_INSENSIATIVE)) {
ignore = true;
break;
}
}
if (ignore) {
continue;
}
auto pluginPlatform = platformForPlugin(getPluginNameFromFile(plugin.baseName()));
if (platform & pluginPlatform) {
QuasarAppUtils::Params::log("get platform : " + plugin.absoluteFilePath(), QuasarAppUtils::Info);
resDependencies.append(plugin.absoluteFilePath());
}
}
}