mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-28 10:44:33 +00:00
222 lines
6.9 KiB
C++
222 lines
6.9 KiB
C++
/*
|
|
* Copyright (C) 2018-2020 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 "deploycore.h"
|
|
#include "metafilemanager.h"
|
|
|
|
#include <quasarapp.h>
|
|
#include <QDir>
|
|
#include <configparser.h>
|
|
#include "filemanager.h"
|
|
|
|
#include <assert.h>
|
|
|
|
bool MetaFileManager::createRunScriptWindows(const QString &target) {
|
|
|
|
auto cnf = DeployCore::_config;
|
|
|
|
if (!cnf->targets().contains(target)) {
|
|
return false;
|
|
}
|
|
auto distro = cnf->getDistro(target);
|
|
|
|
if (distro.getBinOutDir() ==
|
|
distro.getLibOutDir() ) {
|
|
return true;
|
|
}
|
|
|
|
QString content =
|
|
"@echo off \n"
|
|
"SET BASE_DIR=%~dp0\n"
|
|
"SET PATH=%BASE_DIR%" + distro.getLibOutDir() + ";%PATH%\n"
|
|
"%2\n"
|
|
"call \"%BASE_DIR%" + distro.getBinOutDir() + "%0\" %1 \n";
|
|
|
|
content = content.arg(QFileInfo(target).fileName()).arg("%*");
|
|
content = content.arg(generateCustoScriptBlok(true));
|
|
|
|
content = QDir::toNativeSeparators(content);
|
|
|
|
QString fname = DeployCore::_config->getTargetDir(target) + QDir::separator() + QFileInfo(target).baseName()+ ".bat";
|
|
|
|
QFile F(fname);
|
|
if (!F.open(QIODevice::WriteOnly)) {
|
|
return false;
|
|
}
|
|
|
|
F.write(content.toUtf8());
|
|
F.flush();
|
|
F.close();
|
|
|
|
_fileManager->addToDeployed(fname);
|
|
|
|
return F.setPermissions(QFileDevice::ExeOther | QFileDevice::WriteOther |
|
|
QFileDevice::ReadOther | QFileDevice::ExeUser |
|
|
QFileDevice::WriteUser | QFileDevice::ReadUser |
|
|
QFileDevice::ExeOwner | QFileDevice::WriteOwner |
|
|
QFileDevice::ReadOwner);
|
|
}
|
|
|
|
bool MetaFileManager::createRunScriptLinux(const QString &target) {
|
|
auto cnf = DeployCore::_config;
|
|
|
|
if (!cnf->targets().contains(target)) {
|
|
return false;
|
|
}
|
|
auto distro = cnf->getDistro(target);
|
|
|
|
QString content =
|
|
"#!/bin/sh\n"
|
|
"BASE_DIR=$(dirname \"$(readlink -f \"$0\")\")\n"
|
|
"export "
|
|
"LD_LIBRARY_PATH=\"$BASE_DIR\"" + distro.getLibOutDir() + ":\"$BASE_DIR\":$LD_LIBRARY_PATH\n"
|
|
"export QML_IMPORT_PATH=\"$BASE_DIR\"" + distro.getQmlOutDir() + ":$QML_IMPORT_PATH\n"
|
|
"export QML2_IMPORT_PATH=\"$BASE_DIR\"" + distro.getQmlOutDir() + ":$QML2_IMPORT_PATH\n"
|
|
"export QT_PLUGIN_PATH=\"$BASE_DIR\"" + distro.getPluginsOutDir() + ":$QT_PLUGIN_PATH\n"
|
|
"export QTWEBENGINEPROCESS_PATH=\"$BASE_DIR\"" + distro.getBinOutDir() + "QtWebEngineProcess\n"
|
|
"export QTDIR=\"$BASE_DIR\"\n"
|
|
"export "
|
|
"QT_QPA_PLATFORM_PLUGIN_PATH=\"$BASE_DIR\"" + distro.getPluginsOutDir() +
|
|
"platforms:$QT_QPA_PLATFORM_PLUGIN_PATH\n"
|
|
"%2"
|
|
"%3\n"
|
|
"\"$BASE_DIR" + distro.getBinOutDir() + "%1\" \"$@\"\n";
|
|
|
|
content = content.arg(QFileInfo(target).fileName());
|
|
int ld_index = DeployCore::find("ld-linux", _fileManager->getDeployedFilesStringList());
|
|
|
|
if (ld_index >= 0 && QuasarAppUtils::Params::isEndable("deploySystem-with-libc")) {
|
|
|
|
content = content.arg(QString("\nexport LD_PRELOAD=\"$BASE_DIR\"" + distro.getLibOutDir() + "%0\n").
|
|
arg(QFileInfo(_fileManager->getDeployedFilesStringList()[ld_index]).fileName()));
|
|
} else {
|
|
content = content.arg("");
|
|
}
|
|
|
|
content = content.arg(generateCustoScriptBlok(false));
|
|
|
|
QString fname = DeployCore::_config->getTargetDir(target) + QDir::separator() + QFileInfo(target).baseName()+ ".sh";
|
|
|
|
QFile F(fname);
|
|
if (!F.open(QIODevice::WriteOnly)) {
|
|
return false;
|
|
}
|
|
|
|
F.write(content.toUtf8());
|
|
F.flush();
|
|
F.close();
|
|
|
|
_fileManager->addToDeployed(fname);
|
|
|
|
return F.setPermissions(QFileDevice::ExeOther | QFileDevice::WriteOther |
|
|
QFileDevice::ReadOther | QFileDevice::ExeUser |
|
|
QFileDevice::WriteUser | QFileDevice::ReadUser |
|
|
QFileDevice::ExeOwner | QFileDevice::WriteOwner |
|
|
QFileDevice::ReadOwner);
|
|
}
|
|
|
|
QString MetaFileManager::generateCustoScriptBlok(bool bat) const {
|
|
QString res = "";
|
|
|
|
QString commentMarker = "# ";
|
|
if (bat) {
|
|
commentMarker = ":: ";
|
|
}
|
|
|
|
auto cstSh = QuasarAppUtils::Params::getStrArg("customScript", "");
|
|
if (cstSh.size()) {
|
|
res = "\n" +
|
|
commentMarker + "Begin Custom Script (generated by customScript flag)\n"
|
|
"%0\n" +
|
|
commentMarker + "End Custom Script\n"
|
|
"\n";
|
|
|
|
res = res.arg(cstSh);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
MetaFileManager::MetaFileManager(FileManager *manager):
|
|
_fileManager(manager)
|
|
{
|
|
assert(_fileManager);
|
|
}
|
|
|
|
bool MetaFileManager::createRunScript(const QString &target) {
|
|
|
|
QFileInfo info(target);
|
|
auto sufix = info.completeSuffix();
|
|
|
|
if (sufix.contains("exe", Qt::CaseSensitive)) {
|
|
return createRunScriptWindows(target);
|
|
}
|
|
|
|
if (sufix.isEmpty()) {
|
|
return createRunScriptLinux(target);
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
bool MetaFileManager::createQConf(const QString &target) {
|
|
auto cnf = DeployCore::_config;
|
|
|
|
if (!cnf->targets().contains(target)) {
|
|
return false;
|
|
}
|
|
auto distro = cnf->getDistro(target);
|
|
|
|
QString content =
|
|
"[Paths]\n"
|
|
"Prefix= ." + distro.getRootDir(distro.getBinOutDir()) + "\n"
|
|
"Libraries= ." + distro.getLibOutDir() + "\n"
|
|
"Plugins= ." + distro.getPluginsOutDir() + "\n"
|
|
"Imports= ." + distro.getQmlOutDir() + "\n"
|
|
"Translations= ." + distro.getTrOutDir() + "\n"
|
|
"Qml2Imports= ." + distro.getQmlOutDir() + "\n";
|
|
|
|
|
|
content.replace("//", "/");
|
|
content = QDir::fromNativeSeparators(content);
|
|
|
|
QString fname = DeployCore::_config->getTargetDir(target) + distro.getBinOutDir() + "qt.conf";
|
|
|
|
QFile F(fname);
|
|
if (!F.open(QIODevice::WriteOnly)) {
|
|
return false;
|
|
}
|
|
|
|
F.write(content.toUtf8());
|
|
F.flush();
|
|
F.close();
|
|
|
|
_fileManager->addToDeployed(fname);
|
|
|
|
return F.setPermissions(QFileDevice::ExeOther | QFileDevice::WriteOther |
|
|
QFileDevice::ReadOther | QFileDevice::ExeUser |
|
|
QFileDevice::WriteUser | QFileDevice::ReadUser |
|
|
QFileDevice::ExeOwner | QFileDevice::WriteOwner |
|
|
QFileDevice::ReadOwner);
|
|
}
|
|
|
|
void MetaFileManager::createRunMetaFiles() {
|
|
|
|
for (auto i = DeployCore::_config->targets().cbegin(); i != DeployCore::_config->targets().cend(); ++i) {
|
|
|
|
if (!createRunScript(i.key())) {
|
|
QuasarAppUtils::Params::log("run script not created!",
|
|
QuasarAppUtils::Error);
|
|
}
|
|
|
|
if (!createQConf(i.key())) {
|
|
QuasarAppUtils::Params::log("create qt.conf failr", QuasarAppUtils::Warning);
|
|
}
|
|
}
|
|
}
|