2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2011-07-15 16:57:25 +02:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
|
** Contact: http://www.qt.io/licensing
|
2011-07-15 16:57:25 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2011-07-15 16:57:25 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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
|
2015-01-14 18:07:15 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms and
|
|
|
|
|
** conditions see http://www.qt.io/terms-conditions. For further information
|
2014-10-01 13:21:18 +02:00
|
|
|
** use the contact form at http://www.qt.io/contact-us.
|
2011-07-15 16:57:25 +02:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-10-01 13:21:18 +02:00
|
|
|
** 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.
|
2012-10-02 09:12:39 +02:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** In addition, as a special exception, The Qt Company gives you certain additional
|
|
|
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
2011-07-15 16:57:25 +02:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2011-07-15 16:57:25 +02:00
|
|
|
#include "tarpackagecreationstep.h"
|
|
|
|
|
|
2012-08-22 16:52:38 +02:00
|
|
|
#include <projectexplorer/deploymentdata.h>
|
2011-07-15 16:57:25 +02:00
|
|
|
#include <projectexplorer/project.h>
|
|
|
|
|
#include <projectexplorer/target.h>
|
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QDateTime>
|
|
|
|
|
#include <QDir>
|
|
|
|
|
#include <QFile>
|
|
|
|
|
#include <QFileInfo>
|
2011-07-15 16:57:25 +02:00
|
|
|
|
2013-09-16 15:52:25 +02:00
|
|
|
#include <QCheckBox>
|
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
|
|
2012-09-20 14:25:01 +02:00
|
|
|
#include <cstring>
|
|
|
|
|
|
2011-07-15 16:57:25 +02:00
|
|
|
using namespace ProjectExplorer;
|
|
|
|
|
|
|
|
|
|
namespace RemoteLinux {
|
|
|
|
|
namespace {
|
2013-09-16 15:52:25 +02:00
|
|
|
const char IgnoreMissingFilesKey[] = "RemoteLinux.TarPackageCreationStep.IgnoreMissingFiles";
|
2011-07-15 16:57:25 +02:00
|
|
|
|
2012-01-09 16:23:40 +01:00
|
|
|
class CreateTarStepWidget : public SimpleBuildStepConfigWidget
|
2011-07-15 16:57:25 +02:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
2012-01-09 16:23:40 +01:00
|
|
|
CreateTarStepWidget(TarPackageCreationStep *step) : SimpleBuildStepConfigWidget(step)
|
2011-07-15 16:57:25 +02:00
|
|
|
{
|
2013-09-16 15:52:25 +02:00
|
|
|
m_ignoreMissingFilesCheckBox.setText(tr("Ignore missing files"));
|
|
|
|
|
QVBoxLayout *mainLayout = new QVBoxLayout(this);
|
|
|
|
|
mainLayout->setMargin(0);
|
|
|
|
|
mainLayout->addWidget(&m_ignoreMissingFilesCheckBox);
|
|
|
|
|
m_ignoreMissingFilesCheckBox.setChecked(step->ignoreMissingFiles());
|
|
|
|
|
connect(&m_ignoreMissingFilesCheckBox, SIGNAL(toggled(bool)),
|
|
|
|
|
SLOT(handleIgnoreMissingFilesChanged(bool)));
|
|
|
|
|
|
2012-01-09 16:23:40 +01:00
|
|
|
connect(step, SIGNAL(packageFilePathChanged()), SIGNAL(updateSummary()));
|
2011-07-15 16:57:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString summaryText() const
|
|
|
|
|
{
|
2012-12-06 15:42:12 +01:00
|
|
|
TarPackageCreationStep * const step = static_cast<TarPackageCreationStep *>(this->step());
|
2012-01-09 16:23:40 +01:00
|
|
|
if (step->packageFilePath().isEmpty()) {
|
2011-07-15 16:57:25 +02:00
|
|
|
return QLatin1String("<font color=\"red\">")
|
|
|
|
|
+ tr("Tarball creation not possible.") + QLatin1String("</font>");
|
|
|
|
|
}
|
|
|
|
|
return QLatin1String("<b>") + tr("Create tarball:") + QLatin1String("</b> ")
|
2012-01-09 16:23:40 +01:00
|
|
|
+ step->packageFilePath();
|
2011-07-15 16:57:25 +02:00
|
|
|
}
|
2013-09-16 15:52:25 +02:00
|
|
|
|
|
|
|
|
bool showWidget() const { return true; }
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Q_SLOT void handleIgnoreMissingFilesChanged(bool ignoreMissingFiles) {
|
|
|
|
|
TarPackageCreationStep *step = qobject_cast<TarPackageCreationStep *>(this->step());
|
|
|
|
|
step->setIgnoreMissingFiles(ignoreMissingFiles);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QCheckBox m_ignoreMissingFilesCheckBox;
|
2011-07-15 16:57:25 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const int TarBlockSize = 512;
|
|
|
|
|
struct TarFileHeader {
|
|
|
|
|
char fileName[100];
|
|
|
|
|
char fileMode[8];
|
|
|
|
|
char uid[8];
|
|
|
|
|
char gid[8];
|
|
|
|
|
char length[12];
|
|
|
|
|
char mtime[12];
|
|
|
|
|
char chksum[8];
|
|
|
|
|
char typeflag;
|
|
|
|
|
char linkname[100];
|
|
|
|
|
char magic[6];
|
|
|
|
|
char version[2];
|
|
|
|
|
char uname[32];
|
|
|
|
|
char gname[32];
|
|
|
|
|
char devmajor[8];
|
|
|
|
|
char devminor[8];
|
|
|
|
|
char fileNamePrefix[155];
|
|
|
|
|
char padding[12];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // Anonymous namespace.
|
|
|
|
|
|
|
|
|
|
TarPackageCreationStep::TarPackageCreationStep(BuildStepList *bsl)
|
|
|
|
|
: AbstractPackagingStep(bsl, stepId())
|
|
|
|
|
{
|
|
|
|
|
ctor();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TarPackageCreationStep::TarPackageCreationStep(BuildStepList *bsl, TarPackageCreationStep *other)
|
|
|
|
|
: AbstractPackagingStep(bsl, other)
|
|
|
|
|
{
|
|
|
|
|
ctor();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TarPackageCreationStep::ctor()
|
|
|
|
|
{
|
|
|
|
|
setDefaultDisplayName(displayName());
|
2013-09-16 15:52:25 +02:00
|
|
|
m_ignoreMissingFiles = false;
|
2011-07-15 16:57:25 +02:00
|
|
|
}
|
|
|
|
|
|
2011-10-13 18:53:49 +02:00
|
|
|
bool TarPackageCreationStep::init()
|
|
|
|
|
{
|
|
|
|
|
if (!AbstractPackagingStep::init())
|
|
|
|
|
return false;
|
|
|
|
|
m_packagingNeeded = isPackagingNeeded();
|
2012-08-22 16:52:38 +02:00
|
|
|
if (m_packagingNeeded)
|
|
|
|
|
m_files = target()->deploymentData().allFiles();
|
2011-10-13 18:53:49 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-15 16:57:25 +02:00
|
|
|
void TarPackageCreationStep::run(QFutureInterface<bool> &fi)
|
|
|
|
|
{
|
|
|
|
|
setPackagingStarted();
|
|
|
|
|
const bool success = doPackage(fi);
|
|
|
|
|
setPackagingFinished(success);
|
|
|
|
|
if (success)
|
|
|
|
|
emit addOutput(tr("Packaging finished successfully."), MessageOutput);
|
|
|
|
|
else
|
|
|
|
|
emit addOutput(tr("Packaging failed."), ErrorMessageOutput);
|
|
|
|
|
fi.reportResult(success);
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-16 15:52:25 +02:00
|
|
|
void TarPackageCreationStep::setIgnoreMissingFiles(bool ignoreMissingFiles)
|
|
|
|
|
{
|
|
|
|
|
m_ignoreMissingFiles = ignoreMissingFiles;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool TarPackageCreationStep::ignoreMissingFiles() const
|
|
|
|
|
{
|
|
|
|
|
return m_ignoreMissingFiles;
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-15 16:57:25 +02:00
|
|
|
bool TarPackageCreationStep::doPackage(QFutureInterface<bool> &fi)
|
|
|
|
|
{
|
|
|
|
|
emit addOutput(tr("Creating tarball..."), MessageOutput);
|
2011-10-13 18:53:49 +02:00
|
|
|
if (!m_packagingNeeded) {
|
2011-07-15 16:57:25 +02:00
|
|
|
emit addOutput(tr("Tarball up to date, skipping packaging."), MessageOutput);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TODO: Optimization: Only package changed files
|
2011-10-13 18:53:49 +02:00
|
|
|
QFile tarFile(cachedPackageFilePath());
|
2011-07-15 16:57:25 +02:00
|
|
|
|
|
|
|
|
if (!tarFile.open(QIODevice::WriteOnly | QIODevice::Truncate)) {
|
|
|
|
|
raiseError(tr("Error: tar file %1 cannot be opened (%2).")
|
2011-10-13 18:53:49 +02:00
|
|
|
.arg(QDir::toNativeSeparators(cachedPackageFilePath()), tarFile.errorString()));
|
2011-07-15 16:57:25 +02:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2011-10-13 18:53:49 +02:00
|
|
|
foreach (const DeployableFile &d, m_files) {
|
2012-08-22 16:52:38 +02:00
|
|
|
if (d.remoteDirectory().isEmpty()) {
|
2014-04-17 14:09:47 +02:00
|
|
|
emit addOutput(tr("No remote path specified for file \"%1\", skipping.")
|
2012-08-22 16:52:38 +02:00
|
|
|
.arg(d.localFilePath().toUserOutput()), ErrorMessageOutput);
|
2011-10-24 17:58:53 +02:00
|
|
|
continue;
|
|
|
|
|
}
|
2012-08-22 16:52:38 +02:00
|
|
|
QFileInfo fileInfo = d.localFilePath().toFileInfo();
|
|
|
|
|
if (!appendFile(tarFile, fileInfo, d.remoteDirectory() + QLatin1Char('/')
|
2011-07-15 16:57:25 +02:00
|
|
|
+ fileInfo.fileName(), fi)) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QByteArray eofIndicator(2*sizeof(TarFileHeader), 0);
|
|
|
|
|
if (tarFile.write(eofIndicator) != eofIndicator.length()) {
|
2014-04-17 14:09:47 +02:00
|
|
|
raiseError(tr("Error writing tar file \"%1\": %2.")
|
2011-07-15 16:57:25 +02:00
|
|
|
.arg(QDir::toNativeSeparators(tarFile.fileName()), tarFile.errorString()));
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool TarPackageCreationStep::appendFile(QFile &tarFile, const QFileInfo &fileInfo,
|
|
|
|
|
const QString &remoteFilePath, const QFutureInterface<bool> &fi)
|
|
|
|
|
{
|
|
|
|
|
if (!writeHeader(tarFile, fileInfo, remoteFilePath))
|
|
|
|
|
return false;
|
|
|
|
|
if (fileInfo.isDir()) {
|
|
|
|
|
QDir dir(fileInfo.absoluteFilePath());
|
|
|
|
|
foreach (const QString &fileName,
|
|
|
|
|
dir.entryList(QDir::Dirs | QDir::Files | QDir::NoDotAndDotDot)) {
|
|
|
|
|
const QString thisLocalFilePath = dir.path() + QLatin1Char('/') + fileName;
|
|
|
|
|
const QString thisRemoteFilePath = remoteFilePath + QLatin1Char('/') + fileName;
|
|
|
|
|
if (!appendFile(tarFile, QFileInfo(thisLocalFilePath), thisRemoteFilePath, fi))
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QString nativePath = QDir::toNativeSeparators(fileInfo.filePath());
|
|
|
|
|
QFile file(fileInfo.filePath());
|
|
|
|
|
if (!file.open(QIODevice::ReadOnly)) {
|
2014-04-17 14:09:47 +02:00
|
|
|
const QString message = tr("Error reading file \"%1\": %2.")
|
2013-09-16 15:52:25 +02:00
|
|
|
.arg(nativePath, file.errorString());
|
|
|
|
|
if (m_ignoreMissingFiles) {
|
|
|
|
|
raiseWarning(message);
|
|
|
|
|
return true;
|
|
|
|
|
} else {
|
|
|
|
|
raiseError(message);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2011-07-15 16:57:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const int chunkSize = 1024*1024;
|
|
|
|
|
|
2014-04-17 14:09:47 +02:00
|
|
|
emit addOutput(tr("Adding file \"%1\" to tarball...").arg(nativePath), MessageOutput);
|
2011-07-15 16:57:25 +02:00
|
|
|
|
|
|
|
|
// TODO: Wasteful. Work with fixed-size buffer.
|
2013-08-09 14:05:13 +02:00
|
|
|
while (!file.atEnd() && file.error() == QFile::NoError && tarFile.error() == QFile::NoError) {
|
2011-07-15 16:57:25 +02:00
|
|
|
const QByteArray data = file.read(chunkSize);
|
|
|
|
|
tarFile.write(data);
|
|
|
|
|
if (fi.isCanceled())
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
if (file.error() != QFile::NoError) {
|
2014-04-17 14:09:47 +02:00
|
|
|
raiseError(tr("Error reading file \"%1\": %2.").arg(nativePath, file.errorString()));
|
2011-07-15 16:57:25 +02:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const int blockModulo = file.size() % TarBlockSize;
|
|
|
|
|
if (blockModulo != 0)
|
|
|
|
|
tarFile.write(QByteArray(TarBlockSize - blockModulo, 0));
|
|
|
|
|
|
|
|
|
|
if (tarFile.error() != QFile::NoError) {
|
2014-04-17 14:09:47 +02:00
|
|
|
raiseError(tr("Error writing tar file \"%1\": %2.")
|
2011-07-15 16:57:25 +02:00
|
|
|
.arg(QDir::toNativeSeparators(tarFile.fileName()), tarFile.errorString()));
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool TarPackageCreationStep::writeHeader(QFile &tarFile, const QFileInfo &fileInfo,
|
|
|
|
|
const QString &remoteFilePath)
|
|
|
|
|
{
|
|
|
|
|
TarFileHeader header;
|
2012-09-20 14:25:01 +02:00
|
|
|
std::memset(&header, '\0', sizeof header);
|
2011-07-15 16:57:25 +02:00
|
|
|
const QByteArray &filePath = remoteFilePath.toUtf8();
|
|
|
|
|
const int maxFilePathLength = sizeof header.fileNamePrefix + sizeof header.fileName;
|
|
|
|
|
if (filePath.count() > maxFilePathLength) {
|
2014-04-17 14:09:47 +02:00
|
|
|
raiseError(tr("Cannot add file \"%1\" to tar-archive: path too long.")
|
2012-11-26 14:41:39 +02:00
|
|
|
.arg(QDir::toNativeSeparators(remoteFilePath)));
|
2011-07-15 16:57:25 +02:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const int fileNameBytesToWrite = qMin<int>(filePath.length(), sizeof header.fileName);
|
|
|
|
|
const int fileNameOffset = filePath.length() - fileNameBytesToWrite;
|
2012-09-20 14:25:01 +02:00
|
|
|
std::memcpy(&header.fileName, filePath.data() + fileNameOffset, fileNameBytesToWrite);
|
2011-07-15 16:57:25 +02:00
|
|
|
if (fileNameOffset > 0)
|
2012-09-20 14:25:01 +02:00
|
|
|
std::memcpy(&header.fileNamePrefix, filePath.data(), fileNameOffset);
|
2011-07-15 16:57:25 +02:00
|
|
|
int permissions = (0400 * fileInfo.permission(QFile::ReadOwner))
|
|
|
|
|
| (0200 * fileInfo.permission(QFile::WriteOwner))
|
|
|
|
|
| (0100 * fileInfo.permission(QFile::ExeOwner))
|
|
|
|
|
| (040 * fileInfo.permission(QFile::ReadGroup))
|
|
|
|
|
| (020 * fileInfo.permission(QFile::WriteGroup))
|
|
|
|
|
| (010 * fileInfo.permission(QFile::ExeGroup))
|
|
|
|
|
| (04 * fileInfo.permission(QFile::ReadOther))
|
|
|
|
|
| (02 * fileInfo.permission(QFile::WriteOther))
|
|
|
|
|
| (01 * fileInfo.permission(QFile::ExeOther));
|
2012-11-26 14:41:39 +02:00
|
|
|
const QByteArray permissionString = QString::fromLatin1("%1").arg(permissions,
|
2012-09-21 13:54:38 +02:00
|
|
|
sizeof header.fileMode - 1, 8, QLatin1Char('0')).toLatin1();
|
2012-09-20 14:25:01 +02:00
|
|
|
std::memcpy(&header.fileMode, permissionString.data(), permissionString.length());
|
2012-11-26 14:41:39 +02:00
|
|
|
const QByteArray uidString = QString::fromLatin1("%1").arg(fileInfo.ownerId(),
|
2012-09-21 13:54:38 +02:00
|
|
|
sizeof header.uid - 1, 8, QLatin1Char('0')).toLatin1();
|
2012-09-20 14:25:01 +02:00
|
|
|
std::memcpy(&header.uid, uidString.data(), uidString.length());
|
2012-11-26 14:41:39 +02:00
|
|
|
const QByteArray gidString = QString::fromLatin1("%1").arg(fileInfo.groupId(),
|
2012-09-21 13:54:38 +02:00
|
|
|
sizeof header.gid - 1, 8, QLatin1Char('0')).toLatin1();
|
2012-09-20 14:25:01 +02:00
|
|
|
std::memcpy(&header.gid, gidString.data(), gidString.length());
|
2012-11-26 14:41:39 +02:00
|
|
|
const QByteArray sizeString = QString::fromLatin1("%1").arg(fileInfo.size(),
|
2012-09-21 13:54:38 +02:00
|
|
|
sizeof header.length - 1, 8, QLatin1Char('0')).toLatin1();
|
2012-09-20 14:25:01 +02:00
|
|
|
std::memcpy(&header.length, sizeString.data(), sizeString.length());
|
2012-11-26 14:41:39 +02:00
|
|
|
const QByteArray mtimeString = QString::fromLatin1("%1").arg(fileInfo.lastModified().toTime_t(),
|
2012-09-21 13:54:38 +02:00
|
|
|
sizeof header.mtime - 1, 8, QLatin1Char('0')).toLatin1();
|
2012-09-20 14:25:01 +02:00
|
|
|
std::memcpy(&header.mtime, mtimeString.data(), mtimeString.length());
|
2011-07-15 16:57:25 +02:00
|
|
|
if (fileInfo.isDir())
|
|
|
|
|
header.typeflag = '5';
|
2012-09-20 14:25:01 +02:00
|
|
|
std::memcpy(&header.magic, "ustar", sizeof "ustar");
|
|
|
|
|
std::memcpy(&header.version, "00", 2);
|
2011-07-15 16:57:25 +02:00
|
|
|
const QByteArray &owner = fileInfo.owner().toUtf8();
|
2012-09-20 14:25:01 +02:00
|
|
|
std::memcpy(&header.uname, owner.data(), qMin<int>(owner.length(), sizeof header.uname - 1));
|
2011-07-15 16:57:25 +02:00
|
|
|
const QByteArray &group = fileInfo.group().toUtf8();
|
2012-09-20 14:25:01 +02:00
|
|
|
std::memcpy(&header.gname, group.data(), qMin<int>(group.length(), sizeof header.gname - 1));
|
|
|
|
|
std::memset(&header.chksum, ' ', sizeof header.chksum);
|
2011-07-15 16:57:25 +02:00
|
|
|
quint64 checksum = 0;
|
|
|
|
|
for (size_t i = 0; i < sizeof header; ++i)
|
|
|
|
|
checksum += reinterpret_cast<char *>(&header)[i];
|
2012-11-26 14:41:39 +02:00
|
|
|
const QByteArray checksumString = QString::fromLatin1("%1").arg(checksum,
|
2012-09-21 13:54:38 +02:00
|
|
|
sizeof header.chksum - 1, 8, QLatin1Char('0')).toLatin1();
|
2012-09-20 14:25:01 +02:00
|
|
|
std::memcpy(&header.chksum, checksumString.data(), checksumString.length());
|
2011-07-15 16:57:25 +02:00
|
|
|
header.chksum[sizeof header.chksum-1] = 0;
|
|
|
|
|
if (!tarFile.write(reinterpret_cast<char *>(&header), sizeof header)) {
|
2014-04-17 14:09:47 +02:00
|
|
|
raiseError(tr("Error writing tar file \"%1\": %2")
|
2011-10-13 18:53:49 +02:00
|
|
|
.arg(QDir::toNativeSeparators(cachedPackageFilePath()), tarFile.errorString()));
|
2011-07-15 16:57:25 +02:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString TarPackageCreationStep::packageFileName() const
|
|
|
|
|
{
|
2011-10-21 13:06:26 +00:00
|
|
|
return project()->displayName() + QLatin1String(".tar");
|
2011-07-15 16:57:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BuildStepConfigWidget *TarPackageCreationStep::createConfigWidget()
|
|
|
|
|
{
|
|
|
|
|
return new CreateTarStepWidget(this);
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-16 15:52:25 +02:00
|
|
|
bool TarPackageCreationStep::fromMap(const QVariantMap &map)
|
|
|
|
|
{
|
|
|
|
|
if (!AbstractPackagingStep::fromMap(map))
|
|
|
|
|
return false;
|
|
|
|
|
setIgnoreMissingFiles(map.value(QLatin1String(IgnoreMissingFilesKey), false).toBool());
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QVariantMap TarPackageCreationStep::toMap() const
|
|
|
|
|
{
|
|
|
|
|
QVariantMap map = AbstractPackagingStep::toMap();
|
|
|
|
|
map.insert(QLatin1String(IgnoreMissingFilesKey), ignoreMissingFiles());
|
|
|
|
|
return map;
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-15 17:17:40 +01:00
|
|
|
Core::Id TarPackageCreationStep::stepId()
|
2011-07-15 16:57:25 +02:00
|
|
|
{
|
2013-09-03 11:42:35 +02:00
|
|
|
return "MaemoTarPackageCreationStep";
|
2011-07-15 16:57:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString TarPackageCreationStep::displayName()
|
|
|
|
|
{
|
|
|
|
|
return tr("Create tarball");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace RemoteLinux
|
|
|
|
|
|
|
|
|
|
#include "tarpackagecreationstep.moc"
|