installer-framework/src/sdk/installerbase.cpp

304 lines
12 KiB
C++
Raw Normal View History

2011-02-21 16:30:31 +01:00
/**************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing/
2011-02-21 16:30:31 +01:00
**
** This file is part of the Qt Installer Framework.
2011-02-21 16:30:31 +01:00
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see http://qt.io/terms-conditions. For further
** information use the contact form at http://www.qt.io/contact-us.
2011-02-21 16:30:31 +01:00
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 or version 3 as published by the Free
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
** following information to ensure the GNU Lesser General Public License
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** As a special exception, The Qt Company gives you certain additional
** rights. These rights are described in The Qt Company LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
2011-02-21 16:30:31 +01:00
**
** $QT_END_LICENSE$
2011-02-21 16:30:31 +01:00
**
**************************************************************************/
#include "constants.h"
#include "commandlineparser.h"
#include "installerbase.h"
#include "installerbasecommons.h"
#include "tabcontroller.h"
2011-02-21 16:30:31 +01:00
#include <binaryformatenginehandler.h>
#include <copydirectoryoperation.h>
#include <errors.h>
#include <init.h>
#include <kdupdaterupdateoperations.h>
#include <messageboxhandler.h>
#include <packagemanagercore.h>
#include <packagemanagerproxyfactory.h>
#include <qprocesswrapper.h>
#include <protocol.h>
#include <productkeycheck.h>
#include <settings.h>
#include <utils.h>
2011-03-10 15:50:33 +01:00
#include <kdrunoncechecker.h>
#include <kdupdaterfiledownloaderfactory.h>
2011-02-21 16:30:31 +01:00
#include <QDirIterator>
#include <QTemporaryFile>
#include <QTranslator>
#include <QUuid>
2011-02-21 16:30:31 +01:00
InstallerBase::InstallerBase(int &argc, char *argv[])
: SDKApp<QApplication>(argc, argv)
, m_core(0)
{
QInstaller::init(); // register custom operations
}
InstallerBase::~InstallerBase()
2011-02-21 16:30:31 +01:00
{
delete m_core;
}
int InstallerBase::run()
{
KDRunOnceChecker runCheck(qApp->applicationDirPath() + QLatin1String("/lockmyApp1234865.lock"));
if (runCheck.isRunning(KDRunOnceChecker::ConditionFlag::Lockfile)) {
// It is possible to install an application and thus the maintenance tool into a
// directory that requires elevated permission to create a lock file. Since this
// cannot be done without requesting credentials from the user, we silently ignore
// the fact that we could not create the lock file and check the running processes.
if (runCheck.isRunning(KDRunOnceChecker::ConditionFlag::ProcessList)) {
QInstaller::MessageBoxHandler::information(0, QLatin1String("AlreadyRunning"),
QString::fromLatin1("Waiting for %1").arg(qAppName()),
QString::fromLatin1("Another %1 instance is already running. Wait "
"until it finishes, close it, or restart your system.").arg(qAppName()));
return EXIT_FAILURE;
}
}
2011-02-21 16:30:31 +01:00
QString fileName = datFile(binaryFile());
quint64 cookie = QInstaller::BinaryContent::MagicCookieDat;
if (fileName.isEmpty()) {
fileName = binaryFile();
cookie = QInstaller::BinaryContent::MagicCookie;
}
2011-02-21 16:30:31 +01:00
QFile binary(fileName);
QInstaller::openForRead(&binary);
qint64 magicMarker;
QInstaller::ResourceCollectionManager manager;
QList<QInstaller::OperationBlob> oldOperations;
QInstaller::BinaryContent::readBinaryContent(&binary, &oldOperations, &manager, &magicMarker,
cookie);
if (QInstaller::isVerbose()) {
qDebug() << "Language:" << QLocale().uiLanguages().value(0,
QLatin1String("No UI language set")).toUtf8().constData();
qDebug() << "Arguments: " << arguments().join(QLatin1String(", ")).toUtf8().constData();
}
CommandLineParser parser;
parser.parse(arguments());
SDKApp::registerMetaResources(manager.collectionByName("QResources"));
if (parser.isSet(QLatin1String(CommandLineOptions::StartClient))) {
const QStringList arguments = parser.value(QLatin1String(CommandLineOptions::StartClient))
.split(QLatin1Char(','), QString::SkipEmptyParts);
m_core = new QInstaller::PackageManagerCore(
magicMarker, oldOperations,
arguments.value(0, QLatin1String(QInstaller::Protocol::DefaultSocket)),
arguments.value(1, QLatin1String(QInstaller::Protocol::DefaultAuthorizationKey)),
QInstaller::Protocol::Mode::Debug);
} else {
m_core = new QInstaller::PackageManagerCore(magicMarker, oldOperations,
QUuid::createUuid().toString(), QUuid::createUuid().toString());
}
{
using namespace QInstaller;
ProductKeyCheck::instance()->init(m_core);
ProductKeyCheck::instance()->addPackagesFromXml(QLatin1String(":/metadata/Updates.xml"));
BinaryFormatEngineHandler::instance()->registerResources(manager.collections());
}
if (QInstaller::isVerbose())
dumpResourceTree();
QString controlScript;
if (parser.isSet(QLatin1String(CommandLineOptions::Script))) {
controlScript = parser.value(QLatin1String(CommandLineOptions::Script));
if (!QFileInfo(controlScript).exists())
throw QInstaller::Error(QLatin1String("Script file does not exist."));
} else if (!m_core->settings().controlScript().isEmpty()) {
controlScript = QLatin1String(":/metadata/installer-config/")
+ m_core->settings().controlScript();
}
2011-02-21 16:30:31 +01:00
if (parser.isSet(QLatin1String(CommandLineOptions::Proxy))) {
m_core->settings().setProxyType(QInstaller::Settings::SystemProxy);
KDUpdater::FileDownloaderFactory::instance().setProxyFactory(m_core->proxyFactory());
}
2011-02-21 16:30:31 +01:00
if (parser.isSet(QLatin1String(CommandLineOptions::ShowVirtualComponents))) {
QFont f;
f.setItalic(true);
QInstaller::PackageManagerCore::setVirtualComponentsFont(f);
QInstaller::PackageManagerCore::setVirtualComponentsVisible(true);
}
2011-02-21 16:30:31 +01:00
if (parser.isSet(QLatin1String(CommandLineOptions::Updater))) {
if (m_core->isInstaller())
throw QInstaller::Error(QLatin1String("Cannot start installer binary as updater."));
m_core->setUpdater();
}
if (parser.isSet(QLatin1String(CommandLineOptions::ManagePackages))) {
if (m_core->isInstaller())
throw QInstaller::Error(QLatin1String("Cannot start installer binary as package manager."));
m_core->setPackageManager();
}
if (parser.isSet(QLatin1String(CommandLineOptions::AddRepository))) {
const QStringList repoList = repositories(parser
.value(QLatin1String(CommandLineOptions::AddRepository)));
if (repoList.isEmpty())
throw QInstaller::Error(QLatin1String("Empty repository list for option 'addRepository'."));
m_core->addUserRepositories(repoList);
}
if (parser.isSet(QLatin1String(CommandLineOptions::AddTmpRepository))) {
const QStringList repoList = repositories(parser
.value(QLatin1String(CommandLineOptions::AddTmpRepository)));
if (repoList.isEmpty())
throw QInstaller::Error(QLatin1String("Empty repository list for option 'addTempRepository'."));
m_core->setTemporaryRepositories(repoList, false);
}
if (parser.isSet(QLatin1String(CommandLineOptions::SetTmpRepository))) {
const QStringList repoList = repositories(parser
.value(QLatin1String(CommandLineOptions::SetTmpRepository)));
if (repoList.isEmpty())
throw QInstaller::Error(QLatin1String("Empty repository list for option 'setTempRepository'."));
m_core->setTemporaryRepositories(repoList, true);
}
2011-02-21 16:30:31 +01:00
QInstaller::PackageManagerCore::setNoForceInstallation(parser
.isSet(QLatin1String(CommandLineOptions::NoForceInstallation)));
QInstaller::PackageManagerCore::setCreateLocalRepositoryFromBinary(parser
.isSet(QLatin1String(CommandLineOptions::CreateLocalRepository))
|| m_core->settings().createLocalRepository());
QHash<QString, QString> params;
const QStringList positionalArguments = parser.positionalArguments();
foreach (const QString &argument, positionalArguments) {
if (argument.contains(QLatin1Char('='))) {
const QString name = argument.section(QLatin1Char('='), 0, 0);
const QString value = argument.section(QLatin1Char('='), 1, 1);
params.insert(name, value);
m_core->setValue(name, value);
}
}
const QString directory = QLatin1String(":/translations");
const QStringList translations = m_core->settings().translations();
if (translations.isEmpty()) {
foreach (const QLocale locale, QLocale().uiLanguages()) {
QScopedPointer<QTranslator> qtTranslator(new QTranslator(QCoreApplication::instance()));
const bool qtLoaded = qtTranslator->load(locale, QLatin1String("qt"),
QLatin1String("_"), directory);
if (qtLoaded || locale.language() == QLocale::English) {
if (qtLoaded)
QCoreApplication::instance()->installTranslator(qtTranslator.take());
QScopedPointer<QTranslator> ifwTranslator(new QTranslator(QCoreApplication::instance()));
if (ifwTranslator->load(locale, QString(), QString(), directory))
QCoreApplication::instance()->installTranslator(ifwTranslator.take());
// To stop loading other translations it's sufficient that
// qt was loaded successfully or we hit English as system language
break;
2011-02-21 16:30:31 +01:00
}
}
} else {
foreach (const QString &translation, translations) {
QScopedPointer<QTranslator> translator(new QTranslator(QCoreApplication::instance()));
if (translator->load(translation, QLatin1String(":/translations")))
QCoreApplication::instance()->installTranslator(translator.take());
}
}
//create the wizard GUI
TabController controller(0);
controller.setManager(m_core);
controller.setManagerParams(params);
controller.setControlScript(controlScript);
if (m_core->isInstaller())
controller.setGui(new InstallerGui(m_core));
else
controller.setGui(new MaintenanceGui(m_core));
QInstaller::PackageManagerCore::Status status =
QInstaller::PackageManagerCore::Status(controller.init());
if (status != QInstaller::PackageManagerCore::Success)
return status;
const int result = QCoreApplication::instance()->exec();
if (result != 0)
return result;
2011-02-21 16:30:31 +01:00
if (m_core->finishedWithSuccess())
return QInstaller::PackageManagerCore::Success;
2011-02-21 16:30:31 +01:00
status = m_core->status();
switch (status) {
case QInstaller::PackageManagerCore::Success:
return status;
2011-02-21 16:30:31 +01:00
case QInstaller::PackageManagerCore::Canceled:
return status;
2011-02-21 16:30:31 +01:00
default:
break;
}
return QInstaller::PackageManagerCore::Failure;
}
2011-02-21 16:30:31 +01:00
// -- private
2011-02-21 16:30:31 +01:00
void InstallerBase::dumpResourceTree() const
{
qDebug() << "Resource tree:";
QDirIterator it(QLatin1String(":/"), QDir::NoDotAndDotDot | QDir::AllEntries | QDir::Hidden,
QDirIterator::Subdirectories);
while (it.hasNext()) {
if (it.next().startsWith(QLatin1String(":/qt-project.org")))
continue;
qDebug() << " " << it.filePath().toUtf8().constData();
2011-02-21 16:30:31 +01:00
}
}
2011-02-21 16:30:31 +01:00
QStringList InstallerBase::repositories(const QString &list) const
{
const QStringList items = list.split(QLatin1Char(','), QString::SkipEmptyParts);
foreach (const QString &item, items)
qDebug() << "Adding custom repository:" << item.toUtf8().constData();
return items;
2011-02-21 16:30:31 +01:00
}