forked from qt-creator/qt-creator
RemoteLinux: Rename rscyncdeploystep.* to genericdeploystep.*
Change-Id: Ia1a3a18690fb1f3301e97a628ebe3d20568871eb Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
208
src/plugins/remotelinux/genericdeploystep.cpp
Normal file
208
src/plugins/remotelinux/genericdeploystep.cpp
Normal file
@@ -0,0 +1,208 @@
|
||||
// Copyright (C) 2018 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
|
||||
#include "genericdeploystep.h"
|
||||
|
||||
#include "abstractremotelinuxdeploystep.h"
|
||||
#include "remotelinux_constants.h"
|
||||
#include "remotelinuxtr.h"
|
||||
|
||||
#include <projectexplorer/buildsystem.h>
|
||||
#include <projectexplorer/deploymentdata.h>
|
||||
#include <projectexplorer/devicesupport/devicemanager.h>
|
||||
#include <projectexplorer/devicesupport/filetransfer.h>
|
||||
#include <projectexplorer/devicesupport/idevice.h>
|
||||
#include <projectexplorer/kitaspects.h>
|
||||
#include <projectexplorer/projectexplorerconstants.h>
|
||||
#include <projectexplorer/runconfigurationaspects.h>
|
||||
#include <projectexplorer/target.h>
|
||||
|
||||
#include <utils/algorithm.h>
|
||||
#include <utils/async.h>
|
||||
#include <utils/process.h>
|
||||
#include <utils/processinterface.h>
|
||||
|
||||
using namespace ProjectExplorer;
|
||||
using namespace Tasking;
|
||||
using namespace Utils;
|
||||
|
||||
namespace RemoteLinux::Internal {
|
||||
|
||||
// RsyncDeployStep
|
||||
|
||||
class GenericDeployStep : public AbstractRemoteLinuxDeployStep
|
||||
{
|
||||
public:
|
||||
GenericDeployStep(BuildStepList *bsl, Id id)
|
||||
: AbstractRemoteLinuxDeployStep(bsl, id)
|
||||
{
|
||||
flags.setDisplayStyle(StringAspect::LineEditDisplay);
|
||||
flags.setSettingsKey("RemoteLinux.RsyncDeployStep.Flags");
|
||||
flags.setLabelText(Tr::tr("Flags for rsync:"));
|
||||
flags.setValue(FileTransferSetupData::defaultRsyncFlags());
|
||||
|
||||
ignoreMissingFiles.setSettingsKey("RemoteLinux.RsyncDeployStep.IgnoreMissingFiles");
|
||||
ignoreMissingFiles.setLabelText(Tr::tr("Ignore missing files:"));
|
||||
ignoreMissingFiles.setLabelPlacement(BoolAspect::LabelPlacement::InExtraLabel);
|
||||
|
||||
method.setDisplayStyle(SelectionAspect::DisplayStyle::ComboBox);
|
||||
method.setDisplayName(Tr::tr("Transfer method:"));
|
||||
method.addOption(Tr::tr("Use rsync if available. Otherwise use default transfer."));
|
||||
method.addOption(Tr::tr("Use sftp if available. Otherwise use default transfer."));
|
||||
method.addOption(Tr::tr("Use default transfer. This might be slow."));
|
||||
|
||||
setInternalInitializer([this]() -> expected_str<void> {
|
||||
if (BuildDeviceKitAspect::device(kit()) == DeviceKitAspect::device(kit())) {
|
||||
// rsync transfer on the same device currently not implemented
|
||||
// and typically not wanted.
|
||||
return make_unexpected(
|
||||
Tr::tr("rsync is only supported for transfers between different devices."));
|
||||
}
|
||||
return isDeploymentPossible();
|
||||
});
|
||||
}
|
||||
|
||||
private:
|
||||
bool isDeploymentNecessary() const final;
|
||||
GroupItem deployRecipe() final;
|
||||
GroupItem mkdirTask();
|
||||
GroupItem transferTask();
|
||||
|
||||
StringAspect flags{this};
|
||||
BoolAspect ignoreMissingFiles{this};
|
||||
SelectionAspect method{this};
|
||||
|
||||
mutable FilesToTransfer m_files;
|
||||
};
|
||||
|
||||
bool GenericDeployStep::isDeploymentNecessary() const
|
||||
{
|
||||
const QList<DeployableFile> files = target()->deploymentData().allFiles();
|
||||
m_files.clear();
|
||||
for (const DeployableFile &f : files)
|
||||
m_files.append({f.localFilePath(), deviceConfiguration()->filePath(f.remoteFilePath())});
|
||||
if (ignoreMissingFiles())
|
||||
Utils::erase(m_files, [](const FileToTransfer &file) { return !file.m_source.exists(); });
|
||||
return !m_files.empty();
|
||||
}
|
||||
|
||||
GroupItem GenericDeployStep::mkdirTask()
|
||||
{
|
||||
using ResultType = expected_str<void>;
|
||||
|
||||
const auto onSetup = [files = m_files](Async<ResultType> &async) {
|
||||
FilePaths remoteDirs;
|
||||
for (const FileToTransfer &file : std::as_const(files))
|
||||
remoteDirs << file.m_target.parentDir();
|
||||
|
||||
FilePath::sort(remoteDirs);
|
||||
FilePath::removeDuplicates(remoteDirs);
|
||||
|
||||
async.setConcurrentCallData([remoteDirs](QPromise<ResultType> &promise) {
|
||||
for (auto dir : remoteDirs) {
|
||||
const expected_str<void> result = dir.ensureWritableDir();
|
||||
promise.addResult(result);
|
||||
if (!result)
|
||||
promise.future().cancel();
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
const auto onError = [this](const Async<ResultType> &async) {
|
||||
const int numResults = async.future().resultCount();
|
||||
if (numResults == 0) {
|
||||
addErrorMessage(
|
||||
Tr::tr("Unknown error occurred while trying to create remote directories") + '\n');
|
||||
return;
|
||||
}
|
||||
|
||||
for (int i = 0; i < numResults; ++i) {
|
||||
const auto result = async.future().resultAt(i);
|
||||
if (!result.has_value())
|
||||
addErrorMessage(result.error());
|
||||
}
|
||||
};
|
||||
|
||||
return AsyncTask<ResultType>(onSetup, {}, onError);
|
||||
}
|
||||
|
||||
static FileTransferMethod supportedTransferMethodFor(const FileToTransfer &fileToTransfer)
|
||||
{
|
||||
auto sourceDevice = ProjectExplorer::DeviceManager::deviceForPath(fileToTransfer.m_source);
|
||||
auto targetDevice = ProjectExplorer::DeviceManager::deviceForPath(fileToTransfer.m_target);
|
||||
|
||||
if (sourceDevice && targetDevice) {
|
||||
// TODO: Check if the devices can reach each other via their ip
|
||||
if (sourceDevice->extraData(ProjectExplorer::Constants::SUPPORTS_RSYNC).toBool()
|
||||
&& targetDevice->extraData(ProjectExplorer::Constants::SUPPORTS_RSYNC).toBool()) {
|
||||
return FileTransferMethod::Rsync;
|
||||
}
|
||||
|
||||
if (sourceDevice->extraData(ProjectExplorer::Constants::SUPPORTS_SFTP).toBool()
|
||||
&& targetDevice->extraData(ProjectExplorer::Constants::SUPPORTS_SFTP).toBool()) {
|
||||
return FileTransferMethod::Sftp;
|
||||
}
|
||||
}
|
||||
|
||||
return FileTransferMethod::GenericCopy;
|
||||
}
|
||||
|
||||
GroupItem GenericDeployStep::transferTask()
|
||||
{
|
||||
const auto setupHandler = [this](FileTransfer &transfer) {
|
||||
FileTransferMethod preferredTransferMethod = FileTransferMethod::Rsync;
|
||||
if (method() == 0)
|
||||
preferredTransferMethod = FileTransferMethod::Rsync;
|
||||
else if (method() == 1)
|
||||
preferredTransferMethod = FileTransferMethod::Sftp;
|
||||
else
|
||||
preferredTransferMethod = FileTransferMethod::GenericCopy;
|
||||
|
||||
FileTransferMethod transferMethod = preferredTransferMethod;
|
||||
|
||||
if (transferMethod != FileTransferMethod::GenericCopy) {
|
||||
for (const FileToTransfer &fileToTransfer : m_files) {
|
||||
const FileTransferMethod supportedMethod = supportedTransferMethodFor(
|
||||
fileToTransfer);
|
||||
|
||||
if (supportedMethod != preferredTransferMethod) {
|
||||
transferMethod = FileTransferMethod::GenericCopy;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
transfer.setTransferMethod(transferMethod);
|
||||
|
||||
transfer.setRsyncFlags(flags());
|
||||
transfer.setFilesToTransfer(m_files);
|
||||
connect(&transfer, &FileTransfer::progress, this, &GenericDeployStep::handleStdOutData);
|
||||
};
|
||||
const auto errorHandler = [this](const FileTransfer &transfer) {
|
||||
const ProcessResultData result = transfer.resultData();
|
||||
if (result.m_error == QProcess::FailedToStart) {
|
||||
addErrorMessage(Tr::tr("rsync failed to start: %1").arg(result.m_errorString));
|
||||
} else if (result.m_exitStatus == QProcess::CrashExit) {
|
||||
addErrorMessage(Tr::tr("rsync crashed."));
|
||||
} else if (result.m_exitCode != 0) {
|
||||
addErrorMessage(Tr::tr("rsync failed with exit code %1.").arg(result.m_exitCode)
|
||||
+ "\n" + result.m_errorString);
|
||||
}
|
||||
};
|
||||
return FileTransferTask(setupHandler, {}, errorHandler);
|
||||
}
|
||||
|
||||
GroupItem GenericDeployStep::deployRecipe()
|
||||
{
|
||||
return Group { mkdirTask(), transferTask() };
|
||||
}
|
||||
|
||||
// Factory
|
||||
|
||||
GenericDeployStepFactory::GenericDeployStepFactory()
|
||||
{
|
||||
registerStep<GenericDeployStep>(Constants::GenericDeployStepId);
|
||||
setDisplayName(Tr::tr("Deploy files"));
|
||||
}
|
||||
|
||||
} // RemoteLinux::Internal
|
||||
Reference in New Issue
Block a user