2013-08-08 14:05:11 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
|
** Contact: http://www.qt.io/licensing
|
2013-08-08 14:05:11 +02:00
|
|
|
**
|
|
|
|
|
** 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
|
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.
|
2013-08-08 14:05:11 +02:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
** 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.
|
2013-08-08 14:05:11 +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
|
2013-08-08 14:05:11 +02:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "sshdeviceprocess.h"
|
|
|
|
|
|
|
|
|
|
#include "idevice.h"
|
|
|
|
|
|
|
|
|
|
#include <ssh/sshconnection.h>
|
|
|
|
|
#include <ssh/sshconnectionmanager.h>
|
|
|
|
|
#include <ssh/sshremoteprocess.h>
|
|
|
|
|
#include <utils/environment.h>
|
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
|
|
|
|
#include <QString>
|
2013-10-16 12:03:46 +02:00
|
|
|
#include <QTimer>
|
2013-08-08 14:05:11 +02:00
|
|
|
|
|
|
|
|
namespace ProjectExplorer {
|
|
|
|
|
|
|
|
|
|
class SshDeviceProcess::SshDeviceProcessPrivate
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
SshDeviceProcessPrivate(SshDeviceProcess *q) : q(q) {}
|
|
|
|
|
|
|
|
|
|
SshDeviceProcess * const q;
|
|
|
|
|
bool serverSupportsSignals;
|
|
|
|
|
QSsh::SshConnection *connection;
|
|
|
|
|
QSsh::SshRemoteProcess::Ptr process;
|
|
|
|
|
QString executable;
|
|
|
|
|
QStringList arguments;
|
|
|
|
|
QString errorMessage;
|
|
|
|
|
QSsh::SshRemoteProcess::ExitStatus exitStatus;
|
2013-10-16 12:03:46 +02:00
|
|
|
DeviceProcessSignalOperation::Ptr killOperation;
|
|
|
|
|
QTimer killTimer;
|
2013-08-08 14:05:11 +02:00
|
|
|
QByteArray stdOut;
|
|
|
|
|
QByteArray stdErr;
|
|
|
|
|
int exitCode;
|
|
|
|
|
enum State { Inactive, Connecting, Connected, ProcessRunning } state;
|
|
|
|
|
Utils::Environment environment;
|
|
|
|
|
|
|
|
|
|
void setState(State newState);
|
|
|
|
|
void doSignal(QSsh::SshRemoteProcess::Signal signal);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
SshDeviceProcess::SshDeviceProcess(const IDevice::ConstPtr &device, QObject *parent)
|
|
|
|
|
: DeviceProcess(device, parent), d(new SshDeviceProcessPrivate(this))
|
|
|
|
|
{
|
|
|
|
|
d->connection = 0;
|
|
|
|
|
d->state = SshDeviceProcessPrivate::Inactive;
|
|
|
|
|
setSshServerSupportsSignals(false);
|
2013-10-16 12:03:46 +02:00
|
|
|
connect(&d->killTimer, SIGNAL(timeout()), SLOT(handleKillOperationTimeout()));
|
2013-08-08 14:05:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SshDeviceProcess::~SshDeviceProcess()
|
|
|
|
|
{
|
|
|
|
|
d->setState(SshDeviceProcessPrivate::Inactive);
|
|
|
|
|
delete d;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SshDeviceProcess::start(const QString &executable, const QStringList &arguments)
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(d->state == SshDeviceProcessPrivate::Inactive, return);
|
|
|
|
|
d->setState(SshDeviceProcessPrivate::Connecting);
|
|
|
|
|
|
|
|
|
|
d->errorMessage.clear();
|
|
|
|
|
d->exitCode = -1;
|
|
|
|
|
d->executable = executable;
|
|
|
|
|
d->arguments = arguments;
|
2013-09-10 18:52:17 +02:00
|
|
|
d->connection = QSsh::acquireConnection(device()->sshParameters());
|
2013-08-08 14:05:11 +02:00
|
|
|
connect(d->connection, SIGNAL(error(QSsh::SshError)), SLOT(handleConnectionError()));
|
|
|
|
|
connect(d->connection, SIGNAL(disconnected()), SLOT(handleDisconnected()));
|
|
|
|
|
if (d->connection->state() == QSsh::SshConnection::Connected) {
|
|
|
|
|
handleConnected();
|
|
|
|
|
} else {
|
|
|
|
|
connect(d->connection, SIGNAL(connected()), SLOT(handleConnected()));
|
|
|
|
|
if (d->connection->state() == QSsh::SshConnection::Unconnected)
|
|
|
|
|
d->connection->connectToHost();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SshDeviceProcess::interrupt()
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(d->state == SshDeviceProcessPrivate::ProcessRunning, return);
|
|
|
|
|
d->doSignal(QSsh::SshRemoteProcess::IntSignal);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SshDeviceProcess::terminate()
|
|
|
|
|
{
|
|
|
|
|
d->doSignal(QSsh::SshRemoteProcess::TermSignal);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SshDeviceProcess::kill()
|
|
|
|
|
{
|
|
|
|
|
d->doSignal(QSsh::SshRemoteProcess::KillSignal);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString SshDeviceProcess::executable() const
|
|
|
|
|
{
|
|
|
|
|
return d->executable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStringList SshDeviceProcess::arguments() const
|
|
|
|
|
{
|
|
|
|
|
return d->arguments;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QProcess::ProcessState SshDeviceProcess::state() const
|
|
|
|
|
{
|
|
|
|
|
switch (d->state) {
|
|
|
|
|
case SshDeviceProcessPrivate::Inactive:
|
|
|
|
|
return QProcess::NotRunning;
|
|
|
|
|
case SshDeviceProcessPrivate::Connecting:
|
|
|
|
|
case SshDeviceProcessPrivate::Connected:
|
|
|
|
|
return QProcess::Starting;
|
|
|
|
|
case SshDeviceProcessPrivate::ProcessRunning:
|
|
|
|
|
return QProcess::Running;
|
|
|
|
|
default:
|
|
|
|
|
QTC_CHECK(false);
|
|
|
|
|
return QProcess::NotRunning;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QProcess::ExitStatus SshDeviceProcess::exitStatus() const
|
|
|
|
|
{
|
|
|
|
|
return d->exitStatus == QSsh::SshRemoteProcess::NormalExit
|
|
|
|
|
? QProcess::NormalExit : QProcess::CrashExit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int SshDeviceProcess::exitCode() const
|
|
|
|
|
{
|
|
|
|
|
return d->exitCode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString SshDeviceProcess::errorString() const
|
|
|
|
|
{
|
|
|
|
|
return d->errorMessage;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Utils::Environment SshDeviceProcess::environment() const
|
|
|
|
|
{
|
|
|
|
|
return d->environment;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SshDeviceProcess::setEnvironment(const Utils::Environment &env)
|
|
|
|
|
{
|
|
|
|
|
d->environment = env;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QByteArray SshDeviceProcess::readAllStandardOutput()
|
|
|
|
|
{
|
|
|
|
|
const QByteArray data = d->stdOut;
|
|
|
|
|
d->stdOut.clear();
|
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QByteArray SshDeviceProcess::readAllStandardError()
|
|
|
|
|
{
|
|
|
|
|
const QByteArray data = d->stdErr;
|
|
|
|
|
d->stdErr.clear();
|
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SshDeviceProcess::setSshServerSupportsSignals(bool signalsSupported)
|
|
|
|
|
{
|
|
|
|
|
d->serverSupportsSignals = signalsSupported;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SshDeviceProcess::handleConnected()
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(d->state == SshDeviceProcessPrivate::Connecting, return);
|
|
|
|
|
d->setState(SshDeviceProcessPrivate::Connected);
|
|
|
|
|
|
|
|
|
|
d->process = d->connection->createRemoteProcess(fullCommandLine().toUtf8());
|
|
|
|
|
connect(d->process.data(), SIGNAL(started()), SLOT(handleProcessStarted()));
|
|
|
|
|
connect(d->process.data(), SIGNAL(closed(int)), SLOT(handleProcessFinished(int)));
|
|
|
|
|
connect(d->process.data(), SIGNAL(readyReadStandardOutput()), SLOT(handleStdout()));
|
|
|
|
|
connect(d->process.data(), SIGNAL(readyReadStandardError()), SLOT(handleStderr()));
|
|
|
|
|
|
|
|
|
|
d->process->clearEnvironment();
|
|
|
|
|
const Utils::Environment env = environment();
|
|
|
|
|
for (Utils::Environment::const_iterator it = env.constBegin(); it != env.constEnd(); ++it)
|
|
|
|
|
d->process->addToEnvironment(env.key(it).toUtf8(), env.value(it).toUtf8());
|
|
|
|
|
d->process->start();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SshDeviceProcess::handleConnectionError()
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(d->state != SshDeviceProcessPrivate::Inactive, return);
|
|
|
|
|
|
|
|
|
|
d->errorMessage = d->connection->errorString();
|
|
|
|
|
handleDisconnected();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SshDeviceProcess::handleDisconnected()
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(d->state != SshDeviceProcessPrivate::Inactive, return);
|
|
|
|
|
const SshDeviceProcessPrivate::State oldState = d->state;
|
|
|
|
|
d->setState(SshDeviceProcessPrivate::Inactive);
|
|
|
|
|
switch (oldState) {
|
|
|
|
|
case SshDeviceProcessPrivate::Connecting:
|
|
|
|
|
case SshDeviceProcessPrivate::Connected:
|
|
|
|
|
emit error(QProcess::FailedToStart);
|
|
|
|
|
break;
|
|
|
|
|
case SshDeviceProcessPrivate::ProcessRunning:
|
2013-10-16 12:03:46 +02:00
|
|
|
d->exitStatus = QSsh::SshRemoteProcess::CrashExit;
|
2013-08-08 14:05:11 +02:00
|
|
|
emit finished();
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SshDeviceProcess::handleProcessStarted()
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(d->state == SshDeviceProcessPrivate::Connected, return);
|
|
|
|
|
|
|
|
|
|
d->setState(SshDeviceProcessPrivate::ProcessRunning);
|
|
|
|
|
emit started();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SshDeviceProcess::handleProcessFinished(int exitStatus)
|
|
|
|
|
{
|
|
|
|
|
d->exitStatus = static_cast<QSsh::SshRemoteProcess::ExitStatus>(exitStatus);
|
|
|
|
|
switch (d->exitStatus) {
|
|
|
|
|
case QSsh::SshRemoteProcess::FailedToStart:
|
|
|
|
|
QTC_ASSERT(d->state == SshDeviceProcessPrivate::Connected, return);
|
|
|
|
|
break;
|
|
|
|
|
case QSsh::SshRemoteProcess::CrashExit:
|
|
|
|
|
QTC_ASSERT(d->state == SshDeviceProcessPrivate::ProcessRunning, return);
|
|
|
|
|
break;
|
|
|
|
|
case QSsh::SshRemoteProcess::NormalExit:
|
|
|
|
|
QTC_ASSERT(d->state == SshDeviceProcessPrivate::ProcessRunning, return);
|
|
|
|
|
d->exitCode = d->process->exitCode();
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
QTC_ASSERT(false, return);
|
|
|
|
|
}
|
|
|
|
|
d->errorMessage = d->process->errorString();
|
|
|
|
|
d->setState(SshDeviceProcessPrivate::Inactive);
|
|
|
|
|
emit finished();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SshDeviceProcess::handleStdout()
|
|
|
|
|
{
|
|
|
|
|
d->stdOut += d->process->readAllStandardOutput();
|
|
|
|
|
emit readyReadStandardOutput();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SshDeviceProcess::handleStderr()
|
|
|
|
|
{
|
|
|
|
|
d->stdErr += d->process->readAllStandardError();
|
|
|
|
|
emit readyReadStandardError();
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-16 12:03:46 +02:00
|
|
|
void SshDeviceProcess::handleKillOperationFinished(const QString &errorMessage)
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(d->state == SshDeviceProcessPrivate::ProcessRunning, return);
|
|
|
|
|
if (errorMessage.isEmpty()) // Process will finish as expected; nothing to do here.
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
d->exitStatus = QSsh::SshRemoteProcess::CrashExit; // Not entirely true, but it will get the message across.
|
|
|
|
|
d->errorMessage = tr("Failed to kill remote process: %1").arg(errorMessage);
|
|
|
|
|
d->setState(SshDeviceProcessPrivate::Inactive);
|
|
|
|
|
emit finished();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SshDeviceProcess::handleKillOperationTimeout()
|
|
|
|
|
{
|
|
|
|
|
d->exitStatus = QSsh::SshRemoteProcess::CrashExit; // Not entirely true, but it will get the message across.
|
|
|
|
|
d->errorMessage = tr("Timeout waiting for remote process to finish.");
|
|
|
|
|
d->setState(SshDeviceProcessPrivate::Inactive);
|
|
|
|
|
emit finished();
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-08 14:05:11 +02:00
|
|
|
QString SshDeviceProcess::fullCommandLine() const
|
|
|
|
|
{
|
|
|
|
|
QString cmdLine = executable();
|
|
|
|
|
if (!arguments().isEmpty())
|
2014-08-23 01:19:53 +02:00
|
|
|
cmdLine.append(QLatin1Char(' ')).append(arguments().join(QLatin1Char(' ')));
|
2013-08-08 14:05:11 +02:00
|
|
|
return cmdLine;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SshDeviceProcess::SshDeviceProcessPrivate::doSignal(QSsh::SshRemoteProcess::Signal signal)
|
|
|
|
|
{
|
|
|
|
|
switch (state) {
|
|
|
|
|
case SshDeviceProcessPrivate::Inactive:
|
|
|
|
|
QTC_ASSERT(false, return);
|
|
|
|
|
break;
|
|
|
|
|
case SshDeviceProcessPrivate::Connecting:
|
|
|
|
|
errorMessage = tr("Terminated by request.");
|
|
|
|
|
setState(SshDeviceProcessPrivate::Inactive);
|
|
|
|
|
emit q->error(QProcess::FailedToStart);
|
|
|
|
|
break;
|
|
|
|
|
case SshDeviceProcessPrivate::Connected:
|
|
|
|
|
case SshDeviceProcessPrivate::ProcessRunning:
|
|
|
|
|
if (serverSupportsSignals) {
|
|
|
|
|
process->sendSignal(signal);
|
|
|
|
|
} else {
|
2013-09-16 15:30:30 +02:00
|
|
|
DeviceProcessSignalOperation::Ptr signalOperation = q->device()->signalOperation();
|
2013-10-16 12:03:46 +02:00
|
|
|
if (signal == QSsh::SshRemoteProcess::IntSignal) {
|
2013-09-16 15:30:30 +02:00
|
|
|
signalOperation->interruptProcess(executable);
|
2013-10-16 12:03:46 +02:00
|
|
|
} else {
|
|
|
|
|
if (killOperation) // We are already in the process of killing the app.
|
|
|
|
|
return;
|
|
|
|
|
killOperation = signalOperation;
|
|
|
|
|
connect(signalOperation.data(), SIGNAL(finished(QString)), q,
|
|
|
|
|
SLOT(handleKillOperationFinished(QString)));
|
|
|
|
|
killTimer.start(5000);
|
2013-09-16 15:30:30 +02:00
|
|
|
signalOperation->killProcess(executable);
|
2013-10-16 12:03:46 +02:00
|
|
|
}
|
2013-08-08 14:05:11 +02:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SshDeviceProcess::SshDeviceProcessPrivate::setState(SshDeviceProcess::SshDeviceProcessPrivate::State newState)
|
|
|
|
|
{
|
|
|
|
|
if (state == newState)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
state = newState;
|
|
|
|
|
if (state != Inactive)
|
|
|
|
|
return;
|
|
|
|
|
|
2013-10-16 12:03:46 +02:00
|
|
|
if (killOperation) {
|
|
|
|
|
killOperation->disconnect(q);
|
|
|
|
|
killOperation.clear();
|
|
|
|
|
}
|
|
|
|
|
killTimer.stop();
|
2013-08-08 14:05:11 +02:00
|
|
|
if (process)
|
|
|
|
|
process->disconnect(q);
|
|
|
|
|
if (connection) {
|
|
|
|
|
connection->disconnect(q);
|
2013-09-10 18:52:17 +02:00
|
|
|
QSsh::releaseConnection(connection);
|
2013-08-08 14:05:11 +02:00
|
|
|
connection = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-09 17:32:21 +02:00
|
|
|
qint64 SshDeviceProcess::write(const QByteArray &data)
|
|
|
|
|
{
|
|
|
|
|
return d->process->write(data);
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-08 14:05:11 +02:00
|
|
|
} // namespace ProjectExplorer
|