mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-27 10:14:32 +00:00
142 lines
3.4 KiB
C++
142 lines
3.4 KiB
C++
/*
|
|
* Copyright (C) 2018-2021 QuasarApp.
|
|
* 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.
|
|
*/
|
|
|
|
#include "deployconfig.h"
|
|
#include "quasarapp.h"
|
|
|
|
void DeployConfig::reset() {
|
|
*this = DeployConfig{};
|
|
}
|
|
|
|
QHash<QString, TargetInfo*>
|
|
DeployConfig::getTargetsListByFilter(const QString &filter) {
|
|
QHash<QString, TargetInfo*> result;
|
|
|
|
for( auto it = _targets.begin(); it != _targets.end(); ++it) {
|
|
if (it.key().contains(filter, Qt::CaseInsensitive)) {
|
|
result.insert(it.key(), &(*it));
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
QString DeployConfig::getTargetDir(const QString &target) const {
|
|
if (_targets.contains(target))
|
|
return targetDir + "/" + _targets.value(target).getPackage();
|
|
return targetDir;
|
|
}
|
|
|
|
QString DeployConfig::getPackageTargetDir(const QString &package) const {
|
|
if (!_packages.contains(package)) {
|
|
#ifdef QT_DEBUG
|
|
abort();
|
|
#endif
|
|
return "";
|
|
}
|
|
|
|
return targetDir + "/" + package;
|
|
|
|
}
|
|
|
|
void DeployConfig::setTargetDir(const QString &target) {
|
|
targetDir = target;
|
|
|
|
if (targetDir.right(1) != "/" ) {
|
|
ignoreList.addRule(targetDir + "/");
|
|
}
|
|
else {
|
|
ignoreList.addRule(targetDir);
|
|
}
|
|
|
|
}
|
|
|
|
DistroModule DeployConfig::getDistro(const QString &target) const {
|
|
auto key = _targets.value(target).getPackage();
|
|
return _packages.value(key, DistroModule{key});
|
|
}
|
|
|
|
DistroModule DeployConfig::getDistroFromPackage(const QString &package) const {
|
|
return _packages.value(package, DistroModule{package});
|
|
}
|
|
|
|
QHash<QString, TargetInfo> &DeployConfig::targetsEdit() {
|
|
return _targets;
|
|
}
|
|
|
|
QHash<QString, DistroModule> &DeployConfig::packagesEdit() {
|
|
return _packages;
|
|
}
|
|
|
|
Platform DeployConfig::getPlatform(const QString& package) const {
|
|
Platform result = Platform::UnknownPlatform;
|
|
|
|
if (_packages.contains(package)) {
|
|
auto disto = getDistroFromPackage(package);
|
|
|
|
for( auto it = disto.targets().cbegin(); it != disto.targets().cend(); ++it) {
|
|
result = result | _targets.value(*it).getPlatform();
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
Platform DeployConfig::getPlatformOfAll() const {
|
|
Platform result = Platform::UnknownPlatform;
|
|
|
|
for( auto it = _targets.cbegin(); it != _targets.cend(); ++it) {
|
|
result = result | it.value().getPlatform();
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
QString DeployConfig::getDefaultPackage() const {
|
|
return defaultPackage;
|
|
}
|
|
|
|
void DeployConfig::setDefaultPackage(const QString &value) {
|
|
defaultPackage = value;
|
|
}
|
|
|
|
QtMajorVersion DeployConfig::isNeededQt() const {
|
|
|
|
auto Qt = QtMajorVersion::NoQt;
|
|
for (const auto &i: targets()) {
|
|
if (i.isValid()) {
|
|
Qt = Qt | i.isDependetOfQt();
|
|
}
|
|
}
|
|
|
|
return Qt;
|
|
}
|
|
|
|
QtMajorVersion DeployConfig::isNeededQt(const QString &pacakge) const {
|
|
const auto targetsKeys = packages().value(pacakge, DistroModule{""}).targets();
|
|
|
|
auto Qt = QtMajorVersion::NoQt;
|
|
for (const auto &i: targetsKeys) {
|
|
auto target = targets().value(i);
|
|
if (target.isValid()) {
|
|
Qt = Qt | target.isDependetOfQt();
|
|
}
|
|
}
|
|
|
|
return Qt;
|
|
}
|
|
|
|
const QHash<QString, TargetInfo> &DeployConfig::targets() const {
|
|
return _targets;
|
|
}
|
|
|
|
const QHash<QString, DistroModule> &DeployConfig::packages() const {
|
|
return _packages;
|
|
}
|
|
|
|
|