/**************************************************************************** ** ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. ** ** 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 Digia. For licensing terms and ** conditions see http://www.qt.io/licensing. 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. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ****************************************************************************/ #include "remotelinuxpackageinstaller.h" #include #include using namespace ProjectExplorer; using namespace QSsh; namespace RemoteLinux { namespace Internal { class AbstractRemoteLinuxPackageInstallerPrivate { public: AbstractRemoteLinuxPackageInstallerPrivate() : isRunning(false), installer(0), killProcess(0) {} bool isRunning; IDevice::ConstPtr deviceConfig; QSsh::SshRemoteProcessRunner *installer; QSsh::SshRemoteProcessRunner *killProcess; }; } // namespace Internal AbstractRemoteLinuxPackageInstaller::AbstractRemoteLinuxPackageInstaller(QObject *parent) : QObject(parent), d(new Internal::AbstractRemoteLinuxPackageInstallerPrivate) { } AbstractRemoteLinuxPackageInstaller::~AbstractRemoteLinuxPackageInstaller() { delete d; } void AbstractRemoteLinuxPackageInstaller::installPackage(const IDevice::ConstPtr &deviceConfig, const QString &packageFilePath, bool removePackageFile) { QTC_ASSERT(!d->isRunning, return); d->deviceConfig = deviceConfig; prepareInstallation(); if (!d->installer) d->installer = new SshRemoteProcessRunner(this); connect(d->installer, SIGNAL(connectionError()), SLOT(handleConnectionError())); connect(d->installer, SIGNAL(readyReadStandardOutput()), SLOT(handleInstallerOutput())); connect(d->installer, SIGNAL(readyReadStandardError()), SLOT(handleInstallerErrorOutput())); connect(d->installer, SIGNAL(processClosed(int)), SLOT(handleInstallationFinished(int))); QString cmdLine = installCommandLine(packageFilePath); if (removePackageFile) cmdLine += QLatin1String(" && (rm ") + packageFilePath + QLatin1String(" || :)"); d->installer->run(cmdLine.toUtf8(), deviceConfig->sshParameters()); d->isRunning = true; } void AbstractRemoteLinuxPackageInstaller::cancelInstallation() { QTC_ASSERT(d->installer && d->isRunning, return); if (!d->killProcess) d->killProcess = new SshRemoteProcessRunner(this); d->killProcess->run(cancelInstallationCommandLine().toUtf8(), d->deviceConfig->sshParameters()); setFinished(); } void AbstractRemoteLinuxPackageInstaller::handleConnectionError() { if (!d->isRunning) return; emit finished(tr("Connection failure: %1").arg(d->installer->lastConnectionErrorString())); setFinished(); } void AbstractRemoteLinuxPackageInstaller::handleInstallationFinished(int exitStatus) { if (!d->isRunning) return; if (exitStatus != SshRemoteProcess::NormalExit || d->installer->processExitCode() != 0) emit finished(tr("Installing package failed.")); else if (!errorString().isEmpty()) emit finished(errorString()); else emit finished(); setFinished(); } void AbstractRemoteLinuxPackageInstaller::handleInstallerOutput() { emit stdoutData(QString::fromUtf8(d->installer->readAllStandardOutput())); } void AbstractRemoteLinuxPackageInstaller::handleInstallerErrorOutput() { emit stderrData(QString::fromUtf8(d->installer->readAllStandardError())); } void AbstractRemoteLinuxPackageInstaller::setFinished() { disconnect(d->installer, 0, this, 0); d->isRunning = false; } RemoteLinuxTarPackageInstaller::RemoteLinuxTarPackageInstaller(QObject *parent) : AbstractRemoteLinuxPackageInstaller(parent) { } QString RemoteLinuxTarPackageInstaller::installCommandLine(const QString &packageFilePath) const { return QLatin1String("cd / && tar xvf ") + packageFilePath; } QString RemoteLinuxTarPackageInstaller::cancelInstallationCommandLine() const { return QLatin1String("pkill tar"); } } // namespace RemoteLinux