mirror of
https://github.com/QuasarApp/installer-framework.git
synced 2025-05-03 16:59:33 +00:00
- and creation of the exception shouldn't write the warning - this should be happen in the catch block Change-Id: I574c77fab42845079bda7c0d57c4a4a0bdbe1e7f Reviewed-by: Karsten Heimrich <karsten.heimrich@digia.com> Reviewed-by: Tim Jenssen <tim.jenssen@digia.com>
249 lines
9.3 KiB
C++
249 lines
9.3 KiB
C++
/**************************************************************************
|
|
**
|
|
** This file is part of Installer Framework
|
|
**
|
|
** Copyright (c) 2011-2012 Nokia Corporation and/or its subsidiary(-ies).
|
|
**
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
**
|
|
**
|
|
** GNU Lesser General Public License Usage
|
|
**
|
|
** This file may be used under the terms of the GNU Lesser General Public
|
|
** License version 2.1 as published by the Free Software Foundation and
|
|
** appearing in the file LICENSE.LGPL included in the packaging of this file.
|
|
** Please review the following information to ensure the GNU Lesser General
|
|
** Public License version 2.1 requirements will be met:
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
**
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
**
|
|
** Other Usage
|
|
**
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
**
|
|
** If you have questions regarding the use of this file, please contact
|
|
** Nokia at qt-info@nokia.com.
|
|
**
|
|
**************************************************************************/
|
|
#include "init.h"
|
|
|
|
#include "createshortcutoperation.h"
|
|
#include "createdesktopentryoperation.h"
|
|
#include "createlocalrepositoryoperation.h"
|
|
#include "extractarchiveoperation.h"
|
|
#include "globalsettingsoperation.h"
|
|
#include "environmentvariablesoperation.h"
|
|
#include "registerfiletypeoperation.h"
|
|
#include "selfrestartoperation.h"
|
|
#include "installiconsoperation.h"
|
|
#include "elevatedexecuteoperation.h"
|
|
#include "fakestopprocessforupdateoperation.h"
|
|
|
|
//added for NDK
|
|
#include "copydirectoryoperation.h"
|
|
#include "qtpatchoperation.h"
|
|
#include "setdemospathonqtoperation.h"
|
|
#include "setexamplespathonqtoperation.h"
|
|
#include "setpluginpathonqtcoreoperation.h"
|
|
#include "setimportspathonqtcoreoperation.h"
|
|
#include "setpathonqtcoreoperation.h"
|
|
#include "replaceoperation.h"
|
|
#include "licenseoperation.h"
|
|
#include "linereplaceoperation.h"
|
|
#include "registerqtoperation.h"
|
|
#include "registerqtv2operation.h"
|
|
#include "registerqtv23operation.h"
|
|
#include "registerqtvqnxoperation.h"
|
|
#include "setqtcreatorvalueoperation.h"
|
|
#include "addqtcreatorarrayvalueoperation.h"
|
|
#include "simplemovefileoperation.h"
|
|
#include "registertoolchainoperation.h"
|
|
#include "registerdefaultdebuggeroperation.h"
|
|
#include "updatecreatorsettingsfrom21to22operation.h"
|
|
#include "createlinkoperation.h"
|
|
|
|
#include "minimumprogressoperation.h"
|
|
|
|
#ifdef Q_OS_MAC
|
|
# include "macreplaceinstallnamesoperation.h"
|
|
#endif // Q_OS_MAC
|
|
|
|
#include "utils.h"
|
|
|
|
#include "kdupdaterupdateoperation.h"
|
|
#include "kdupdaterupdateoperationfactory.h"
|
|
#include "kdupdaterfiledownloader.h"
|
|
#include "kdupdaterfiledownloaderfactory.h"
|
|
|
|
#include <QtPlugin>
|
|
#include <QtNetwork/QNetworkProxyFactory>
|
|
|
|
#include <unix/C/7zCrc.h>
|
|
|
|
#include <iostream>
|
|
|
|
namespace NArchive {
|
|
namespace NBz2 { void registerArcBZip2(); }
|
|
namespace NGz { void registerArcGZip(); }
|
|
namespace NLzma { namespace NLzmaAr { void registerArcLzma(); } }
|
|
namespace NLzma { namespace NLzma86Ar { void registerArcLzma86(); } }
|
|
namespace NSplit { void registerArcSplit(); }
|
|
namespace NXz { void registerArcxz(); }
|
|
namespace NZ { void registerArcZ(); }
|
|
}
|
|
|
|
void registerArc7z();
|
|
void registerArcCab();
|
|
void registerArcTar();
|
|
void registerArcZip();
|
|
|
|
void registerCodecBCJ2();
|
|
void registerCodecBCJ();
|
|
void registerCodecBCJ();
|
|
void registerCodecByteSwap();
|
|
void registerCodecBZip2();
|
|
void registerCodecCopy();
|
|
void registerCodecDeflate64();
|
|
void registerCodecDeflate();
|
|
void registerCodecDelta();
|
|
void registerCodecLZMA2();
|
|
void registerCodecLZMA();
|
|
void registerCodecPPMD();
|
|
void registerCodec7zAES();
|
|
|
|
using namespace NArchive;
|
|
using namespace KDUpdater;
|
|
using namespace QInstaller;
|
|
|
|
static void initArchives()
|
|
{
|
|
NBz2::registerArcBZip2();
|
|
NGz::registerArcGZip();
|
|
NLzma::NLzmaAr::registerArcLzma();
|
|
NLzma::NLzma86Ar::registerArcLzma86();
|
|
NSplit::registerArcSplit();
|
|
NXz::registerArcxz();
|
|
NZ::registerArcZ();
|
|
registerArc7z();
|
|
registerArcCab();
|
|
registerArcTar();
|
|
registerArcZip();
|
|
|
|
registerCodecBCJ2();
|
|
registerCodecBCJ();
|
|
registerCodecBCJ();
|
|
registerCodecByteSwap();
|
|
registerCodecBZip2();
|
|
registerCodecCopy();
|
|
registerCodecDeflate64();
|
|
registerCodecDeflate();
|
|
registerCodecDelta();
|
|
registerCodecLZMA2();
|
|
registerCodecLZMA();
|
|
registerCodecPPMD();
|
|
registerCodec7zAES();
|
|
|
|
CrcGenerateTable();
|
|
}
|
|
|
|
static void initResources()
|
|
{
|
|
Q_INIT_RESOURCE(patch_file_lists);
|
|
}
|
|
|
|
static void messageHandler(QtMsgType type, const char *msg)
|
|
{
|
|
QByteArray ba(msg);
|
|
// last character is a space from qDebug
|
|
if (ba.endsWith(' '))
|
|
ba.chop(1);
|
|
|
|
// remove quotes if the whole message is surrounded with them
|
|
if (ba.startsWith('"') && ba.endsWith('"'))
|
|
ba = ba.mid(1, ba.length()-2);
|
|
|
|
// prepend the message type, skip QtDebugMsg
|
|
switch (type) {
|
|
case QtWarningMsg: {
|
|
ba.prepend("Warning: ");
|
|
} break;
|
|
case QtCriticalMsg: {
|
|
ba.prepend("Critical: ");
|
|
} break;
|
|
case QtFatalMsg: {
|
|
ba.prepend("Fatal: ");
|
|
} break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
verbose() << ba.constData() << std::endl;
|
|
if (!isVerbose() && type != QtDebugMsg)
|
|
std::cout << ba.constData() << std::endl << std::endl;
|
|
|
|
if (type == QtFatalMsg) {
|
|
QtMsgHandler oldMsgHandler = qInstallMsgHandler(0);
|
|
qt_message_output(type, msg);
|
|
qInstallMsgHandler(oldMsgHandler);
|
|
}
|
|
}
|
|
|
|
void QInstaller::init()
|
|
{
|
|
::initResources();
|
|
|
|
UpdateOperationFactory &factory = UpdateOperationFactory::instance();
|
|
factory.registerUpdateOperation<CreateShortcutOperation>(QLatin1String("CreateShortcut"));
|
|
factory.registerUpdateOperation<CreateDesktopEntryOperation>(QLatin1String("CreateDesktopEntry"));
|
|
factory.registerUpdateOperation<CreateLocalRepositoryOperation>(QLatin1String("CreateLocalRepository"));
|
|
factory.registerUpdateOperation<ExtractArchiveOperation>(QLatin1String("Extract"));
|
|
factory.registerUpdateOperation<GlobalSettingsOperation>(QLatin1String("GlobalConfig"));
|
|
factory.registerUpdateOperation<EnvironmentVariableOperation>(QLatin1String( "EnvironmentVariable"));
|
|
factory.registerUpdateOperation<RegisterFileTypeOperation>(QLatin1String("RegisterFileType"));
|
|
factory.registerUpdateOperation<SelfRestartOperation>(QLatin1String("SelfRestart"));
|
|
factory.registerUpdateOperation<InstallIconsOperation>(QLatin1String("InstallIcons"));
|
|
factory.registerUpdateOperation<ElevatedExecuteOperation>(QLatin1String("Execute"));
|
|
factory.registerUpdateOperation<FakeStopProcessForUpdateOperation>(QLatin1String("FakeStopProcessForUpdate"));
|
|
|
|
// added for NDK
|
|
factory.registerUpdateOperation<SimpleMoveFileOperation>(QLatin1String("SimpleMoveFile"));
|
|
factory.registerUpdateOperation<CopyDirectoryOperation>(QLatin1String("CopyDirectory"));
|
|
factory.registerUpdateOperation<RegisterQtInCreatorOperation>(QLatin1String("RegisterQtInCreator"));
|
|
factory.registerUpdateOperation<RegisterQtInCreatorV2Operation>(QLatin1String("RegisterQtInCreatorV2"));
|
|
factory.registerUpdateOperation<RegisterQtInCreatorV23Operation>(QLatin1String("RegisterQtInCreatorV23"));
|
|
factory.registerUpdateOperation<RegisterQtInCreatorQNXOperation>(QLatin1String("RegisterQtInCreatorQNX"));
|
|
factory.registerUpdateOperation<RegisterToolChainOperation>(QLatin1String("RegisterToolChain") );
|
|
factory.registerUpdateOperation<RegisterDefaultDebuggerOperation>(QLatin1String( "RegisterDefaultDebugger"));
|
|
factory.registerUpdateOperation<SetDemosPathOnQtOperation>(QLatin1String("SetDemosPathOnQt"));
|
|
factory.registerUpdateOperation<SetExamplesPathOnQtOperation>(QLatin1String("SetExamplesPathOnQt"));
|
|
factory.registerUpdateOperation<SetPluginPathOnQtCoreOperation>(QLatin1String("SetPluginPathOnQtCore"));
|
|
factory.registerUpdateOperation<SetImportsPathOnQtCoreOperation>(QLatin1String("SetImportsPathOnQtCore"));
|
|
factory.registerUpdateOperation<SetPathOnQtCoreOperation>(QLatin1String("SetPathOnQtCore"));
|
|
factory.registerUpdateOperation<SetQtCreatorValueOperation>(QLatin1String("SetQtCreatorValue"));
|
|
factory.registerUpdateOperation<AddQtCreatorArrayValueOperation>(QLatin1String("AddQtCreatorArrayValue"));
|
|
factory.registerUpdateOperation<QtPatchOperation>(QLatin1String("QtPatch"));
|
|
factory.registerUpdateOperation<ReplaceOperation>(QLatin1String("Replace"));
|
|
factory.registerUpdateOperation<LineReplaceOperation>(QLatin1String( "LineReplace" ) );
|
|
factory.registerUpdateOperation<UpdateCreatorSettingsFrom21To22Operation>(QLatin1String("UpdateCreatorSettingsFrom21To22"));
|
|
factory.registerUpdateOperation<CreateLinkOperation>(QLatin1String("CreateLink"));
|
|
|
|
factory.registerUpdateOperation<MinimumProgressOperation>(QLatin1String("MinimumProgress"));
|
|
factory.registerUpdateOperation<LicenseOperation>(QLatin1String("License"));
|
|
|
|
FileDownloaderFactory::setFollowRedirects(true);
|
|
|
|
#ifdef Q_OS_MAC
|
|
factory.registerUpdateOperation<MacReplaceInstallNamesOperation>(QLatin1String("ReplaceInstallNames"));
|
|
#endif // Q_OS_MAC
|
|
|
|
// load 7z stuff, if we're a static lib
|
|
::initArchives();
|
|
|
|
// qDebug -> verbose()
|
|
qInstallMsgHandler(messageHandler);
|
|
}
|