Kai Koehne 99996591e0 Update Copyright
Change-Id: I8dde6629cfd461104364d5cdc255cb54b58283fa
Reviewed-by: Niels Weber <niels.weber@theqtcompany.com>
2015-02-18 10:33:48 +00:00

143 lines
5.8 KiB
C++

/**************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing/
**
** This file is part of the Qt Installer Framework.
**
** $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.
**
** 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.
**
**
** $QT_END_LICENSE$
**
**************************************************************************/
#include "binarydump.h"
#include <copydirectoryoperation.h>
#include <errors.h>
#include <fileio.h>
#include <QDirIterator>
#include <QDomDocument>
#include <iostream>
int BinaryDump::dump(const QInstaller::ResourceCollectionManager &manager, const QString &target)
{
QDir targetDir(QFileInfo(target).absoluteFilePath());
if (targetDir.exists()) {
if (!targetDir.entryList(QDir::NoDotAndDotDot | QDir::AllEntries).isEmpty()) {
std::cerr << qPrintable(QString::fromLatin1("Target directory '%1' already exists and "
"is not empty.").arg(targetDir.path())) << std::endl;
return EXIT_FAILURE;
}
} else {
if (!QDir().mkpath(targetDir.path())) {
std::cerr << qPrintable(QString::fromLatin1("Could not create '%1'.").arg(targetDir
.path())) << std::endl;
return EXIT_FAILURE;
}
}
QInstaller::CopyDirectoryOperation copyMetadata;
copyMetadata.setArguments(QStringList() << QLatin1String(":/")
<< (targetDir.path() + QLatin1Char('/'))); // Add "/" at the end to make operation work.
if (!copyMetadata.performOperation()) {
std::cerr << qPrintable(copyMetadata.errorString()) << std::endl;
return EXIT_FAILURE;
}
if (!targetDir.cd(QLatin1String("metadata"))) {
std::cerr << qPrintable(QString::fromLatin1("Could not switch to '%1/metadata'.")
.arg(targetDir.path())) << std::endl;
return EXIT_FAILURE;
}
int result = EXIT_FAILURE;
try {
QFile updatesXml(targetDir.filePath(QLatin1String("Updates.xml")));
QInstaller::openForRead(&updatesXml);
QString error;
QDomDocument doc;
if (!doc.setContent(&updatesXml, &error)) {
throw QInstaller::Error(QString::fromLatin1("Could not read: '%1'. %2").arg(updatesXml
.fileName(), error));
}
QHash<QString, QString> versionMap;
const QDomElement root = doc.documentElement();
const QDomNodeList rootChildNodes = root.childNodes();
for (int i = 0; i < rootChildNodes.count(); ++i) {
const QDomElement element = rootChildNodes.at(i).toElement();
if (element.isNull())
continue;
QString name, version;
if (element.tagName() == QLatin1String("PackageUpdate")) {
const QDomNodeList elementChildNodes = element.childNodes();
for (int j = 0; j < elementChildNodes.count(); ++j) {
const QDomElement e = elementChildNodes.at(j).toElement();
if (e.tagName() == QLatin1String("Name"))
name = e.text();
else if (e.tagName() == QLatin1String("Version"))
version = e.text();
}
versionMap.insert(name, version);
}
}
foreach (const QString &name, versionMap.keys()) {
const QInstaller::ResourceCollection c = manager.collectionByName(name.toUtf8());
if (c.resources().count() <= 0)
continue;
if (!targetDir.mkpath(name)) {
throw QInstaller::Error(QString::fromLatin1("Could not create target dir: %1.")
.arg(targetDir.filePath(name)));
}
foreach (const QSharedPointer<QInstaller::Resource> &resource, c.resources()) {
const bool isOpen = resource->isOpen();
if ((!isOpen) && (!resource->open()))
continue; // TODO: should we throw here?
QFile target(targetDir.filePath(name) + QDir::separator()
+ QString::fromUtf8(resource->name()));
QInstaller::openForWrite(&target);
resource->copyData(&target); // copy the 7z files into the target directory
if (!isOpen) // If we reach that point, either the resource was opened already...
resource->close(); // or we did open it and have to close it again.
}
}
result = EXIT_SUCCESS;
} catch (const QInstaller::Error &error) {
std::cerr << qPrintable(error.message()) << std::endl;
} catch (...) {
std::cerr << "Unknown exception caught." << std::endl;
}
return result;
}